

@charset "UTF-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
/* Reset CSS */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, menu, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, main, nav, output, ruby, section, summary, time, mark, audio, video, button {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  font-weight: 100;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section {
  display: block;
  margin: 0px;
}
body {
  line-height: 1;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  background-size: cover;
  background-position: fixed;
	background: #eeeeee;
}

menu, ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote::before, blockquote::after, q::before, q::after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
/* ← ヘッダー */

header {
  width: 100%;
}
header .inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  padding: 15px 0px;
  justify-content: space-between;
  align-items: center;
  /* ← これで上下中央に配置 */
}
header.sticky {
  position: fixed;
  top: 0;
  display: block;
  width: 100%;
  z-index: 999;
  background: rgba(255, 255, 255, 1);
  /* 背景色を入れてください（透明だと後ろが透ける） */
  transition: all 0.3s ease;
}
header .inner .left {
  float: left;
}
header img.logo {
  width: 215px;
  margin-left: 20px;
}
header img.contact {
  width: 160px;
}
.top {
  max-width:1280px;
  margin: 0 auto;
  padding: 0px;
  width: 100%;
  position: relative;
  overflow: hidden;
}

img.iphone{
  width: 100%;
  position: absolute;
  max-width: 500px;
  bottom:0px; right:5%;
  margin: 0 auto;
  margin-top: 40px;
}
div.center img{
  width: 40px;
  vertical-align: middle;
  float: left;
  margin-top: 3px;
}
div.center, about .center{
  background: #06c755;
  width: 300px;
  margin: 0 auto;
  margin-top: 80px;
  border-radius: 20px;
  padding: 10px 10px;
  display: block;
  margin-bottom:40px;
  box-shadow: 5px 7px 3px rgba(0, 0, 0, 0.1);

}
.center a, div.center a, about .center a{
  text-decoration: none;
  color: whitesmoke;
  font-size: 20px;
  font-weight: bold;
  padding-top:20px;
  
}


.pc {
  display: block;
}
.sp {
  display: none;
}
@media screen and (max-width: 768px) {
  img.iphone{
    width: 80%;
    position: absolute;
    max-width: 500px;
    bottom:0px; right:5%;
    margin: 0 auto;
    margin-top: 20px;
    z-index: 0;
  }
  header .inner .left {
    margin: 0px;
    text-align: left;
    pdding-left: 20px;
  }
  header img.logo {
    width: 60%;
    max-width: 180px;
    margin-left: 40px;
  }
  header img.contact {
    width: 100%;
    max-width: 140px;
    margin-right: 20px;
  }
  
  header {
    display: none;
  }
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  .top .right {
    width: 100%;
    min-height: 250px;
  }
  .top .left {
    width: 100%;
  }
  .top .right img.img1 {
    width: 100%;
    position: absolute;
    top: 0px;
    right: 20px;
    max-width: 180px;
    margin-top: 40px;
    transform: rotate(10deg);
  }
  .top .right img.img2 {
    width: 100%;
    position: absolute;
    top: 80px;
    left: 20px;
    max-width: 200px;
    margin-right: 5%;
  }
  .top .left img.txt2 {
    width: 100%;
    max-width: 300px;
    margin-top: 10px;
    margin-left: 30px;
  }
  .top .left p.txt1 {
    margin-top: 0px;
	  margin-left:0px;
  }
  .top .left img.txt1 {
    width: 100%;
    max-width: 300px;
    margin: 0px !important;
  }
	.top .center{margin-top:40px;}
}
/* ↑↑↑ ヘッダー */
.img-wrap {
  display: inline-block;
  text-align: left;
  -webkit-mask-image: linear-gradient(to right, black 0%, black 100%);
  mask-image: linear-gradient(to right, black 0%, black 100%);
  -webkit-mask-size: 0% 100%;
  mask-size: 0% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  animation: revealMask 1s ease-out forwards;
}
.img-wrap.txt1 {
  animation-delay: 0s;
}
.img-wrap.txt2 {
  animation-delay: 0.5s;
}
.img-wrap.txt3 {
  animation-delay: 1s;
}
@keyframes revealMask {
  to {
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
  }
}
section {
  width: 100%;
  text-align: center;
  padding: 60px 0px 80px;
  position: relative;
}
section h2 {
  font-size: 48px;
  margin: 0px;
  padding: 0px;
  font-weight: bold;
  color: #01003a;
}
p.navy {
  color: #01003a;
  margin-top: 20px;
}
.about {
background:white;  text-align: center;
}
.about .list{
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content:center;
  margin: 0 auto;
  margin-top: 40px;
}
.about .list p{
  width: 32%;
  max-width: 300px;
  list-style: none;
  font-size:1.5em;
  font-weight: bold;;
  color:#d63638;


}
.about p img {
  width: 100%;
  margin-top: 0px;
  text-align: center;
}
.about img.contact {
  width: 40%;
  max-width: 300px;
  margin-top: 40px;
}
.strong {
  color: #01003a;
}
.flex{display:flex;
text-align:center;
justify-content: center;
gap:20px;
}
.strong img {
  width: 100%;
  max-width: 450px;
  vertical-align: middle;
}

.strong p.img{
  text-align: right;
  width:50%;
  }
.strong p.txt{
  width:50%;
  margin-top:60px !important;
  padding-top:60px;
  line-height: 1.6;
  margin: 0px;
  margin-top: 40px;
  font-size: 24px;
  text-align: left;
}
.strong p.txt2{
  text-align: center;
  margin-top:40px !important;
  line-height: 1.6;
  font-weight: bold;
  font-size: 1.5em;
}
 .strong .center{
  background: #06c755;
  width: 300px;
  margin: 0 auto;
  margin-top: 80px;
  border-radius: 20px;
  padding: 10px 10px;
  display: block;
  margin-bottom:40px;
  box-shadow: 5px 7px 3px rgba(0, 0, 0, 0.1);

}
.strong .center a{
  text-decoration: none;
  color: whitesmoke;
  font-size: 20px;
  font-weight: bold;
  padding-top:20px;
  
}

ul.three {
  display: flex;
  text-align: center;
  flex-wrap: wrap;
  justify-content: space-around;
  margin: 0 auto;
  margin-top: 40px;
  margin-bottom: 40px;
  width: 80%;
  max-width: 800px;
}
ul.three li {
  width: 30%;
  list-style: none;
}
ul.three li img {
  width: 100%;
  display: block;
  margin: 0 auto;
}

section.support, section.build{
  pdding:40px 0px;
  background: white;

   
}
section.build img{width:100%; max-width: 600px; margin: 0 auto; margin-top: 40px; margin-bottom: 40px;}
.support .three{
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  margin-top: 40px;
  margin-bottom: 40px;
  text-align: left;
}

img.support_txt, img.tech_txt {
  position: absolute;
  width: 20%;
  max-width: 100px;
}
img.support_txt {
  top: 0px;
  left: -5px;
}

.support p, .technology p, .build p {
  margin-top: 20px;
  font-weight: bold;
}
ul.supports {
  width: 80%;
  max-width: 600px;
  margin: 0 auto;
  margin-top: 40px;
  margin-bottom: 40px;
}
ul.supports li {
  margin-top: 20px;
  width: 80%;
  list-style: none;
}
ul.supports li img {
  width: 100%;
  margin: 0 auto;
}
.banner img.banner_img {
  width: 80%;
  margin: 0 auto;
  max-width: 600px;
  margin-top: 60px;
}
.banner ul.three li {
  margin-top: 40px;
}
.how {
  padding: 40px 0 60px;
  position: relative;
}

.how p.txt {
  position: relative;
  text-align: center;
  margin-top:40px;
  font-size:2em;
  font-weight: bold;
  color:#01003a;
}
img.banner_img {
  width: 100%;
  margin: 0 auto;
  max-width: 700px;
  margin-top: 60px !important;
}

.faq {
  background: white;
  padding: 60px 0px;
  text-align: center;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;

  background-attachment: fixed;
}
.faq ul {
  list-style: none;
  padding: 0;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  margin-top: 60px;
}
.faq ul li {
  max-width: 700px;
  width: 100%;
  position: relative;
  text-align: center;
}
.faq .question {
  background-color: #01003a;
  cursor: pointer;
  font-weight: bold;
  height: 60px;
  max-width: 700px;
  width: 100%;
  line-height: 60px;
  color: #14017f;
  font-size: 16px;
  border-radius: 10px;
  z-index: 1;
  position: relative;
  color: white;
  font-weight: bold;
}
.faq .question span {
  float: left;
  font-weight: bold;
  margin-left: 20px;
}
.faq .question p::after {
  content: "+";
  float: right;
  transition: transform 0.3s ease;
  margin-right: 15px;
  font-size: 18px;
  font-weight: bold;
}
.faq .question p {
  font-weight: bold;
}
.faq .question.active p::after {
  transform: rotate(45deg);
  /* ＋ → × に回転 */
}
.faq .inner {
  height: 70px;
  margin-top: 20px;
}

.footer p.txt3{
  font-size: 3em;
  font-weight: bold;
  color:#01003a;
  margin-top: 40px;
  line-height: 1.2;
}
.footer p.txt3 span{
  color:#d63638;
  font-weight: bold;
}





@media screen and (max-width: 768px) {
  section {
    padding: 40px 0px;
  }
  section p {
    font-size: 15px;
  }
  section h2 {
    font-size: 30px;
    margin: 0px;
    padding: 0px;
    margin-top: 20px;
    font-weight: bold;
    color: #01003a;
  }
  .about .list{
    
    margin-top: 20px;
  }
  .about .list p{
    width: 80%;
    max-width: 300px;
    list-style: none;
    font-size:1.5em;
    font-weight: bold;;
    color:#d63638;
    margin-top: 40px;
  
  
  }
  
  ul.three {
    margin-top: 10px;
    width: 98%;
  }
  ul.three li {
    width: 95%;
    list-style: none;
    margin-top: 30px;
  }
  ul.three li img {
    width: 100%;
    list-style: none;
    margin-top: 30px;
  }
  ul.three.two_sp {
    width: 100%;
  }
  ul.three.two_sp li {
    width: 48%;
    list-style: none;
    margin-top: 20px;
  }
  ul.three.two_sp img {
    width: 95%;
    display: block;
    margin: 0 auto;
    margin-top: 20px;
  }
  ul.supports {
    width: 95%;
  }
  ul.supports li {
    margin-top: 10px;
  }
  .faq ul {
    width: 90%;
  }
  .faq .question {
    font-size: 13px;
    font-weight: 300;
  }
  .faq .question img, .answer img {
    vertical-align: middle;
    margin-right: -20px;
    margin-left: 5px;
  }
  .faq .question p {
    width: 100%;
  }
  .faq .question span {
    display: block;
  }
  img.banner_img {
    width: 95%;
    margin-top: 0px;
  }
  .strong p.txt2{
    background:#01003a;
    width: 80%;
    margin: 0 auto;
    margin-top: 40px;
    padding: 10px 10px;
    border-radius: 10px;
    color: white;
    font-weight: bold;
    font-size: 1.5em;
  }
}
.answer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  display: none;
}
.answer p {
  position: relative;
  text-align: left;
  width: 80%;
  display: block;
  margin: 0 auto;
  font-weight: bold;
}
.faq .answer p::before {
  content: "A";
  position: absolute;
  top: 0px;
  left: -30px;
  transition: transform 0.3s ease;
  font-size: 24px;
  font-weight: bold;
}
.answer.open {
  max-height: 200px;
  /* 十分な高さに設定 */
  display: block;
  max-width: 700px;
  width: 100%;
  opacity: 1;
  margin-top: 0px;
  background-color: #ffffff;
  cursor: pointer;
  font-weight: bold;
  width: 100%;
  color: #14017f;
  font-size: 16px;
  padding: 20px 0px;
  line-height: 1.3;
  border-radius: 10px;
  border: solid 2px #14017f;
  border-radius: 10px;
}
.access .inner{  display: flex;
  text-align: center;
  flex-wrap: wrap;
  justify-content: center;
	margin-top:60px;
	gap: 30px;
	overflow: hidden;
	
}
.access .inner .left, .access .inner .right{width:35%;}
.access .inner .right{text-align: left; }
.access .inner .right p{line-height: 1.6;font-weight: 300;}
.access .inner .right p span{font-weight: 500;}
.access .inner .right dl {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
	margin:0px; 
padding:0px;
	margin-top:0px;
}
.access .inner .right dt {
  width: 20%;
  padding-bottom: 10px;
  margin-bottom: 0px;
	font-weight: 500;
	
}

.access .inner .right dd {
  width: 70%;
  padding-bottom: 10px;
  margin-bottom: 0px;
	line-height: 1.6;
}
	.access .inner .right iframe{width:80%; height: 80%;}

.access .inner .right .slide{width:40%;}
.slide img{display: block; }
.slick-arrow:before{
	content:""!important;
}
footer {
  padding: 80px;
  font-size: 10px;
  text-align: center;
  color: #14017f;
}
img.line_stick{position:fixed;left:8%;width:18%; max-width:100px; bottom:10px; z-index:11;}
@media screen and (max-width: 768px) {
	img.line_stick{position:fixed;left:3%;width:18%; max-width:100px; bottom:10px; z-index:11;}
  .strong .flex{display: block;}
	.strong .flex p{width:80% !important;margin: 0 auto; }
  .strong .flex p.txt{width:80% !important; padding:0px; margin:0 auto; margin-top:0px !important; margin-top:20px !important; font-weight: bold;}
	.how ul.three li{width:31%;}
  section.build img{width:80%; max-width: 600px; margin: 0 auto; margin-top: 40px; margin-bottom: 40px;}

}


