@charset "UTF-8";

img{
    margin-top: 0%;
    width: 100%;
}

.wrapper{
    margin: 0 auto;
    text-align: center;
  margin: 0 auto; 
}


body {
  font-family: "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN",
               "メイリオ", Meiryo, sans-serif;
  margin:0;           
}

h2{
  margin: 5% auto;
}

@media screen and (min-width: 768px){
  h2{
    margin: 2% auto 1%;
  }
}

/*レスポンシブ-----------------------------------------------------*/

.pc{
  display: none !important;
}
.sp{
  display: block !important;
}
.sp-cta{
  display: block;
}

@media screen and (min-width:768px){
  .sp-cta{
      display: none;
  }
  .spbr{
    display: none;
  }
}

@media screen and (min-width:768px){
  .pc{
      display: block !important;
  }
  .sp{
    display: none !important;
  }
}


/*@media screen and (min-width:768px){
  .pc{
      display: block !important;
  }
  .sp{
      display: none !important;
  }
}

/*header-----------------------------------------------------*/

.site-header {
  width: 100%;
  background: #fff;
  position: relative;
  z-index: 999;
}

.header-inner {
  margin: 0 auto;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-inner .txt{
  text-align: left;
}
.header-logo {
  display: block;
  width: 180px;
}

.header-logo img {
  width: 100%;
  height: auto;
  display: block;
}


/* SP */
@media screen and (max-width: 768px) {

  .header-inner {
    padding: 8px 12px;
  }

  .header-logo {
    width: 140px;
  }
  .header-inner .txt{
    font-size: 10px;
  }

}

/*mv-----------------------------------------------------*/
.mv_con{
background-image: url(../img/mv_back_pc.jpg);
background-size: cover;
}
.mv_con img{
  margin: 0 auto;
  padding: 2% 2% 0;
  width: 1300px;
}

/*tuiju-----------------------------------------------------*/
.fixed-button {
  position: fixed;
  bottom: 0;
  width: 100%;
  background:#fff;
  padding: 10px 10px 10px 10px;
  justify-content: center;
  gap: 5px;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.25);
  transition: opacity 0.3s ease;
  z-index: 1000;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}

@media screen and (min-width: 768px){
.fixed-button {
  background: none;
  backdrop-filter: none;
  left:37%;
}}

.fixed-button img {
transition: transform 0.2s ease;
}

.fixed-button img:hover {
transform: scale(1.1);
cursor: pointer;
}

.hidden {
opacity: 0;
pointer-events: none;
}

@media screen and (min-width:768px){
   .fixed-button {
      text-align: center;
      margin: 0 auto;
      gap: 23px;
      padding: 12px 43px;
   }
   .fixed-button img {
   }
}

.image{
  width: 90%;
  display: block;
  margin: 0 auto;
}

@media screen and (min-width:768px){
.image{
  width: 24%;
  margin: 0 auto;
}}



/*tuiju-----------------------------------------------------*/
.fixed-button {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
  padding: 8px 10px;
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 3px;
  z-index: 9999;
  box-sizing: border-box;
}

.fixed-button .cta-btn {
  display: flex;
  align-items: stretch;
  height: 45px; /* ←3つの高さを統一 */
  flex-shrink: 0;
}

.fixed-button .cta-btn img {
  height: 100%;
  width: auto; /* ←縦横比維持 */
  display: block;
}

/* hover拡大を完全無効化 */
.fixed-button .cta-btn:hover {
  transform: none !important;
}

.fixed-button .cta-btn img:hover {
  transform: none !important;
  filter: none !important;
}

/* =========================
PC
========================= */
@media screen and (min-width: 769px) {

  .fixed-button {
    padding: 10px 20px;
    gap: 15px;
  }

  .fixed-button .cta-btn {
    height: 65px; 
  }

}


/*case-----------------------------------------------------*/
.case {
  background: url(../img/case_back_sp.jpg);
  padding: 40px 15px;
  overflow: hidden;
}
.case h2 {
  width: 45%;
}
img.late{
  width: 80%;
  margin: 0 auto 30px;
}
.case-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.case-track {
  display: flex;
  transition: transform 0.5s ease;
}

.slide {
  min-width: 100%;
  box-sizing: border-box;
  padding: 0 20px;
  position: relative;
}


/* 矢印 */
.case-slider::before,
.case-slider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 18px;
  height: 18px;
  border-top: 4px solid #222;
  border-right: 4px solid #222;
  z-index: 10;
  transform: translateY(-50%) rotate(225deg);
  cursor: pointer;
}

.case-slider::before {
  left: 10px;
}

.case-slider::after {
  right: 10px;
  transform: translateY(-50%) rotate(45deg);
}

/* ドット */
.case-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
}

.case-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #9bb8d6;
  transition: 0.3s;
}

.case-dots span.active {
  background: #005bac;
}


@media screen and (min-width: 768px){
  .case {
    background: url(../img/case_back_pc.jpg);
    background-size: cover;
  }
  .case h2 {
    width: 250px;
  }
  img.late{
    width: 500px;
    margin: 0 auto 30px;
  }
  .case-slider{
    width: 1300px;
    margin: 0 auto;
    overflow: hidden;
  }

  .case-track .slide{
    min-width: 33.333%;
  }
  .case-slider::before {
    left: 33%;
  }
  
  .case-slider::after {
    right: 33%;
  }
  .slide{
    opacity: .4;
    transition: opacity .5s ease;
  }
  
  .slide.is-center{
    opacity: 1;
  }
}

/*worries-----------------------------------------------------*/
@media screen and (min-width: 768px){
  .worries01_con {
    background: url(../img/worries01_back_pc.jpg);
    background-size: cover;
    padding: 40px 15px;
  }
  .worries01_con h2 {
    max-width: 650px;
    margin: 2% auto 1.5%;
  }
  .worries01_con .con {
    max-width: 1200px;
    margin: 0 auto 2%;
  }
  .worries02_con {
    background: url(../img/worries02_back_pc.jpg);
    background-size: cover;
    padding: 40px 15px;
    position: relative;
  }
  .worries02_con h2 {
    max-width: 850px;
    margin: -60px auto 1.5%;
  }
  .worries02_con .con {
    max-width: 750px;
    margin: 0 auto -10px;
  }
  .worries02_con::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -69px;
    width: 100%;
    height: 70px;
    background: #fff;
    clip-path: polygon(0 0, 50% 100%, 100% 0);
  }
}

/*reason-----------------------------------------------------*/
@media screen and (min-width: 768px){
  .reason {
    background: #0058a0;
    background-size: cover;
    padding: 100px 15px 40px;
  }
  .reason h2 {
    width: 550px;
    margin: 2% auto 1.5%;
  }
  .reason .con {
    max-width: 750px;
    margin: 0 auto 2%;
  }
}

/*medal-----------------------------------------------------*/
@media screen and (min-width: 768px){
  .medal {
    background: url(../img/medal_back_pc.jpg);
    background-size: cover;
    padding: 0 70px 60px 15px;
  }
  .medal .pc {
    max-width: 800px;
    margin: 0 auto;
  }
}

/*cta-----------------------------------------------------*/
.cta{
  padding: 50px 15px;
}
.cta_content{
  display: flex;
  margin: 30px auto 0;
  gap: 20px;
  width: 90%;
}
.cta .txt{
  width: 85%;
  margin: 0 auto;
}
@media screen and (min-width: 768px){
  .cta{
    padding: 70px 15px;
  }
  .cta .txt{
    max-width: 650px;
    margin: 0 auto;
  }
  .cta_content{
    display: flex;
    margin: 30px auto 0;
    max-width: 650px;
    gap: 20px;
  }
}

/*step-----------------------------------------------------*/
@media screen and (min-width: 768px){
  .step{
    background: url(../img/step_back_pc.jpg);
    background-size: cover;
    padding: 40px 15px 70px;
  }
  .step .pc h2 {
    max-width: 500px;
    margin: 2% auto 1.5%;
  }
  .step .con {
    max-width: 1000px;
    margin: 0 auto 10px;
  }
}

/*voice-----------------------------------------------------*/
.voice{
  background: url(../img/voice_back_sp.jpg);
  padding: 50px 0;
  overflow: hidden;
  position: relative;
}

.voice h2{
  width: 50%;
  margin: 0 auto 25px;
}

.voice h2 img{
  width: 100%;
  display: block;
}

.voice-slider{
  width: 100%;
  overflow: hidden;
  position: relative;
}

.voice-track{
  display: flex;
  transition: transform .5s ease;
}

.voice .slide{
  min-width: 100%;
  padding: 0 20px;
  box-sizing: border-box;
}

.voice .slide img{
  width: 100%;
  display: block;
}

/* 矢印 */
.voice-slider::before,
.voice-slider::after{
  content: "";
  position: absolute;
  top: 45%;
  width: 16px;
  height: 16px;
  border-top: 4px solid #222;
  border-right: 4px solid #222;
  z-index: 10;
  cursor: pointer;
}

.voice-slider::before{
  left: 12px;
  transform: rotate(-135deg);
}

.voice-slider::after{
  right: 12px;
  transform: rotate(45deg);
}

/* ドット */
.voice-dots{
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.voice-dots span{
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ffffff;
}

.voice .slider-dots span.active{
  background: #ffffff;
}

.slider-dots{
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
  position: relative;
  z-index: 20;
}

.slider-dots span{
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #9bb8d6;
  display: block;
}

.slider-dots span.active{
  background: #005bac;
}

@media screen and (min-width: 768px){
  .voice {
    background: url(../img/voice_back_pc.jpg);
    background-size: cover;
    padding: 40px 15px 70px;
  }
  .voice h2 {
    width: 300px;
    margin: 2% auto 1.5%;
  }
  .voice-slider{
    width: 1300px;
    margin: 0 auto;
    overflow: hidden;
  }
  .voice-track .slide{
    min-width: 33.333%;
  }
  .voice-slider::before {
    left: 33%;
  }
  
  .voice-slider::after {
    right: 33%;
  }
  .slide{
    opacity: .4;
    transition: opacity .5s ease;
  }
  
  .slide.is-center{
    opacity: 1;
  }
}

/*qa-----------------------------------------------------*/
.qa{
  background: #005bac;
  padding: 50px 0;
}
.qa h2{
  width: 65%;
  margin: 0 auto 30px;
}
.qa h2 img{
  width: 100%;
  display: block;
}
.qa_wrap{
  width: 90%;
  margin: 0 auto;
  text-align: left;
}

@media screen and (min-width: 768px){
  .qa{
    padding: 40px 15px 70px;
  }
  .qa h2{
    width: 350px;
    margin: 2% auto 1.5%;
  }
  .qa_wrap{
    max-width: 800px;
  }
}

/* =========================
item
========================= */
.qa_item{
  background: #fff;
  margin-bottom: 14px;
  overflow: hidden;
}

/* =========================
question
========================= */
.qa_q{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 20px;
  cursor: pointer;
}

.qa_q p{
  width: calc(100% - 40px);
  color: #005bac;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
}

.qa_q p,
.qa_a p{
  position: relative;
  padding-left: 25px;
}

/* Q */
.qa_q p span{
  position: absolute;
  left: 0;
  top: 0;
  color: #005bac;
}

/* =========================
icon
========================= */
.qa_icon{
  width: 24px;
  height: 24px;
  position: relative;
  flex-shrink: 0;
}

.qa_icon::before,
.qa_icon::after{
  content: "";
  position: absolute;
  background: #222;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: .3s;
}

.qa_icon::before{
  width: 24px;
  height: 2px;
}

.qa_icon::after{
  width: 2px;
  height: 24px;
}

/* 開いてる時 */
.qa_item.active .qa_icon::after{
  opacity: 0;
}

/* =========================
answer
========================= */
.qa_a{
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: .4s;
}

.qa_item.active .qa_a{
  max-height: 500px;
}

.qa_a p{
  position: relative;
  padding: 0 20px 24px 25px;
  color: #444;
  font-size: 18px;
  line-height: 1.8;
}

/* A */
.qa_a p span{
  position: absolute;
  left: 0;
  top: 0;
  color: #e60012;
  font-weight: bold;
}





/* form */
#wrapper2 {
  width: 100%;
  padding: 5% 4%;
  overflow: hidden;
  color: #222;
}
#wrapper2 .txt{
  margin: 30px auto 0;
  width: 70%;
}
#content {
  margin: 1% auto;
  max-width: 1050px;
  text-align: left;
  background-color: #e2f2ff;
  padding: 1% 0 4%;
}
#content .sec {
  max-width: 980px;
  margin: 0 3%;
  padding: 18px 0 0;
}


img.pics {
  max-width: 100%;
}
.form-ttl {
  display: block;
  width: 70%;
  margin: 0 auto 5%;
}

.form-ttl02 {
  display: block;
  width: 60%;
  max-width: 550px;
  margin: 0 auto 5%;
}

.privacy-row td {
  text-align: left;
  padding-top: 12px;
}

.privacy-check {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  margin-top: 10px;
  padding-left: 10px;
  white-space: nowrap;
}

.privacy-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 0;
  flex-shrink: 0;
}

.privacy-check span {
  font-size: 16px;
  line-height: 1;
}

.privacy-link {
  padding-left: 10px;
  text-align: left;
}

.privacy-link a {
  font-size: 16px;
  font-weight: normal;
  color: #000;
  text-decoration: underline;
  line-height: 1.5;
}

/* SP */
@media screen and (max-width: 768px) {
  #content {
    padding: 5% 0 4%;
  }

  .form-ttl {
    display: block;
    width: 60%;
    margin: 0 auto 5%;
  }
  
  .form-ttl02 {
    display: block;
    width: 75%;
    max-width: 550px;
    margin: 0 auto 5%;
  }

  .privacy-row td {
    padding-top: 14px;
  }

  .privacy-check {
    gap: 6px;
    margin-top: 12px;
    padding-left: 0;
  }

  .privacy-check span {
    font-size: 14px;
  }

  .privacy-link {
    margin-top: 12px;
    padding-left: 0;
  }

  .privacy-link a {
    font-size: 14px;
    text-align: left !important;
  }
}

@media screen and (min-width: 768px){
  #wrapper2 .txt{
    margin: 0 auto;
    width: 400px;
  }
  h2 .form-ttl {
    width: 600px;
    margin: 0 auto 2%;
  }
}

.flow {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.flow__bg {
  display: block;
  width: 100%;
  height: auto;
}

.flow__movie {
  position: absolute;
  left: 50%;
  top: 63%;
  transform: translate(-50%, -50%);
  width: 78%;
  height: auto;
  z-index: 2;
  display: block;
}
@media screen and (min-width: 768px) {
  .flow__movie {
    position: absolute;
    left: 50%;
    top: 63%;
    transform: translate(-50%, -50%);
    width: 23%;
    height: auto;
    z-index: 2;
    display: block;
  }
}


.footer {
  background: #004a85;
  padding: 28px 0 30px;
  text-align: center;
}

.footer__nav {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer__nav li:last-child {
  margin-bottom: 0;
}

.footer__nav a {
  color: #fff;
  font-size: 14px;
  text-decoration: none;
}

.footer__nav a:hover {
  text-decoration: underline;
}