@charset "utf-8";

/*-------------------------------------------------------------------------------------
LP基本設定
----------------------------------------------------------------------------------------*/

html {
  font-size: calc((100vw / 37.5));
}
@media screen and (min-width:751px) and ( max-width:1280px)  {
  html {
    font-size: calc((100vw / 128));
  }
}
@media screen and (min-width: 1281px) {
  html {
    font-size: 62.5%;
  }
}


body{
  line-height: 1.8;
  /* font-family: "yu-mincho-pr6n", sans-serif;
  font-weight: 400;
  font-style: normal; */
  font-family: "Zen Old Mincho", serif;
  font-style: normal;
  font-size: 16px;
  font-feature-settings: "palt";
  color: var(--text-color);
  letter-spacing: 0.06em;
}
  @media screen and  (min-width:751px)  {
    body{
      line-height: 1.8;
    }
  }


/* 見出し */
h1{
  line-height: 1;
}
h2,h3,h4,h5,h6{
  line-height: 1.45;
  color: var(--text-color);
  letter-spacing: 0.1em;
  font-weight: 600;
}

/* table */
table th,
table td{
  line-height: 1.5;
}
table th{
  vertical-align: middle;
}

/* li */
li{
  line-height: 1.5;
}

/* dl */
dt,dd{
  line-height: 1.6;
}

/* 段落 */
p{
  line-height: 1.5;
  text-align: justify;
  letter-spacing: 0.06em;
}

/* anchor link */
a{
  color: var(--main-color);
}
/* ホバー */
a img:hover{
  opacity: 0.85;
  transition: all 0.3s;
}


.yellowLine{
  background: linear-gradient(
    transparent 60%,
    #FDF759 60%
  );
  font-weight: 700;
}


@media screen and  (min-width:751px)  {
  p{
    line-height: 1.8;
  }
  dt,dd{
    line-height: 1.8;
  }
}

/*-------------------------------------------------------------------------------------
layout
----------------------------------------------------------------------------------------*/
.secIn{
  width: 100%;
  width: min(100%,1080px);
  margin: 0 auto;
  padding: 48px 24px;
  position: relative;
}
  @media screen and  (min-width:751px)  {
    .secIn{
      padding: 72px 40px;
    }
  }






/*-------------------------------------------------------------------------------------
main
----------------------------------------------------------------------------------------*/

/*
.secTtl
--------------------------------------------------------*/
.secTtl{
  position: relative;
  margin-bottom: 40px;
  padding-bottom: 20px;
  text-align: center;
  font-size: 28px;
  letter-spacing: 0.14em;
}
.secTtl::before{
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  width: 120px;
  height: 1px;
  background: var(--main-color);
}
.secTtl::after{
  content: "";
  position: absolute;
  bottom: -4px;
  left: calc(50% - 4px);
  width: 8px;
  height: 8px;
  background: var(--main-color);
  transform:rotate(45deg);
}
@media screen and  (min-width:751px)  {
  .secTtl{
    margin-bottom: 48px;
    padding-bottom: 24px;
    font-size: 32px;
  }
}





/*
fv
--------------------------------------------------------*/
 .fv{
  min-height: 36rem;
  margin-bottom: 32rem;
  position: relative;
  background: url(../img/sp-bg-fv.jpg) no-repeat center top;
  background-size: cover;
 }
 .fv::before{
  position: absolute;
  top: 18rem;
  right: 0;
  content:"";
  width: 60%;
  height: 100%;
  background: #F3FAF4;
  z-index: -1;
}
.fv .secIn{
  width: min(100%,1180px);
  display: flex;
  padding: 12.7rem 0 0 1.2rem;
}
 .fvImg{
  width: min(100%,72rem);
  margin: 0 0 32.8rem auto;
 }
 .fvTxt{
  width: min(96%, 52rem);
  margin-bottom: -16rem;
 }
 .fvTxt::before{
  content: "";
  position: absolute;
  top: -9.3rem;
  left: -0.8rem;
  width: 8rem;
  height: 8rem;
  background: url(../img/fv-before.png) no-repeat;
  background-size: contain;
}
.youtube-img{
  position: absolute;
    bottom: -38rem;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 72%;
  background: var(--white-color);
  }
.youtube-img img{
  transition: all 0.3s;

}
.youtube-img:hover{
  cursor: pointer;
}

.youtube-img:hover img{
  opacity: 0.9;
}

/* popup */
.popup {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.8);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.popup-content {
  position: relative;
  width: 88%;
  max-width: 960px;
  aspect-ratio: 16 / 9;
}
.popup-in{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.popup-content iframe {
  width: 100%;
  height: 100%;
}

.popup-close {
  position: absolute;
  top: -50px;
  right: 0;
  font-size: 20px;
  width: 40px;
  height: 40px;
  background: var(--main-color);
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

@media screen and  (min-width:751px)  {
 .fv{
  min-height: 54rem;
  margin-bottom: 18rem;
  position: relative;
  background: url(../img/bg-fv.jpg) no-repeat center center;
  background-size: cover;
 }
 .fv::before{
  position: absolute;
  top: 18rem;
  right: 0;
  content:"";
  width: 60%;
  height: 100%;
  background: #F3FAF4;
  z-index: -1;
}
.fv .secIn{
  width: min(100%,1180px);
  display: flex;
  padding: 20.4rem 0 0 7.2rem;
}
 .fvImg{
  width: min(100%,72rem);
  margin: 0 0 32.8rem auto;
 }
 .fvTxt{
  width: min(92%, 52rem);
  margin-bottom: -16rem;
 }
 .fvTxt::before{
  content: "";
  position: absolute;
  top: -10.4rem;
  left: -6.6rem;
  width: 12rem;
  height: 12rem;
  background: url(../img/fv-before.png) no-repeat;
  background-size: contain;
}
.youtube-img{
  position: absolute;
  right: auto;
    left: 64rem;
    bottom: -4rem;
    width: 28.2rem;
    margin: 0;
  background: var(--white-color);
  }
.youtube-img img{
  transition: all 0.3s;

}
.youtube-img:hover{
  cursor: pointer;
}

.youtube-img:hover img{
  opacity: 0.9;
}

/* popup */
.popup {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.8);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.popup-content {
  position: relative;
  width: 88%;
  max-width: 960px;
  aspect-ratio: 16 / 9;
}
.popup-in{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.popup-content iframe {
  width: 100%;
  height: 100%;
}

.popup-close {
  position: absolute;
  top: -50px;
  right: 0;
  font-size: 20px;
  width: 40px;
  height: 40px;
  background: var(--main-color);
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}
}

/*
cta
--------------------------------------------------------*/
.cta{
  background: var(--main-color);
}
.cta .secIn{
  padding: 32px 24px 32px;
}
.cta .secTtl{
  margin-bottom: 6px;
  padding-bottom: 0;
  color: var(--white-color);
  font-size: 24px;
}
.cta .secTtl::before,
.cta .secTtl::after{
  display: none;
}
.ctaContents{
  width: min(100%,760px);
  margin: 0 auto;
  border-radius: 16px;
}
.ctaContents .m-copy{
  display: block;
  margin-bottom: 16px;
  text-align: center;
  color: var(--white-color);
}
.cta .txt{
  text-align: center;
  color: var(--white-color);
}
.cta_btnArea{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  flex-direction: column;
  gap: 10px;
}
.cta_btnArea .btn{
  position: relative;
  width: 100%;
}
.cta_btnArea .tel{
  width: 220px;
  margin: 0 auto;
}
.cta_btnArea .tel:hover img{
  opacity: 1;
}


.cta .mail_btn a{
  background: var(--cv-mail-color);
}
.cta .line_btn a{
  background: var(--cv-line-color);
}
.cta .btn{
  max-width: 480px;
  margin: auto;
}
.cta .btn a{
  display: block;
  padding: 16px 20px;
  text-align: center;
  line-height: 1;
  font-size: 20px;
  color: var(--white-color);
  transition: all 0.3s;
}
.cta .btn a:hover{
  opacity: 0.8;
  transition: all 0.3s;
}
.cta_btnArea .tel a{
  display: block;
}


.cta .btn a span{
  position: relative;
  left: 12px;
}
.cta .mail_btn a span::before,
.cta .line_btn a span::before,
.cta .tel_btn a span::before{
  position: absolute;
  top: 52%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  content: "";
  left: -32px;
}
.cta .mail_btn a span::before{
  width: 23px;
  height: 17px;
  background: url(../img/icon-mail.svg) no-repeat;
  background-size: contain;
}
.cta .line_btn a span::before{
  width: 23px;
  height: 22px;
  background: url(../img/icon-line.svg) no-repeat;
  background-size: contain;
}

.tel_btn{
  background: #423A81;
}

.tel_btn a span::before{
  width: 23px;
  height: 22px;
  background: url(../img/icon-tel2.svg) no-repeat;
  background-size: contain;
}

@keyframes btn_animation {
  0% {
      transform: translate(4px, 0px);
  }
  5% {
      transform: translate(-4px, 0px);
  }
  10% {
      transform: translate(4px, 0px);
  }
  15% {
      transform: translate(-4px, 0px);
  }
  20% {
      transform: translate(4px, 0px);
  }
  25% {
      transform: translate(-4px, 0px);
  }
  30% {
      transform: translate(0px, 0px);
  }
}


@media screen and  (min-width:751px)  {
  .cta .secIn{
    padding: 48px 40px 32px;
  }
  .cta .secTtl{
    margin: 0 auto 4px;
    font-size: 24px;
  }
  .ctaContents .m-copy{
    margin-bottom: 16px;
  }
  .cta_btnArea{
    flex-direction: row;
    gap: 12px;
  }
  .cta_btnArea .btn{
    width: calc((100% - 12px) / 2);
  }
  .cta_btnArea .btn + .btn{
    margin-top: 0;
  }
  .cta_btnArea .tel{
    width: 100%;
    animation: none;
  }
  .cta .btn a{
    padding: 20px 40px;
  }
}



/*
siteLink
--------------------------------------------------------*/
.siteLink{
    background: var(--main-color);
}
.siteLink .secIn{
  padding: 32px 20px;
}
.siteLink .list{
  width: min(100%,960px);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.siteLink .item{
  background: var(--white-color);
  width: calc((100% - 12px) / 2);
}
.siteLink .item a{
  position: relative;
  display: block;
  padding: 10px 24px;
  text-align: center;
  transition: all 0.3s;
}
.siteLink .item a:hover{
  background: #2fa38f;
  color: var(--white-color);
}
.siteLink .item a::before{
  content: "";
  position: absolute;
    top: calc(50% - 3px);
    right: 1rem;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
	width: 6px;
	height: 6px;
	border-top: 1px solid var(--main-color);
	border-right: 1px solid var(--main-color);
	-webkit-transform: rotate(45deg);
	transform: rotate(135deg);
  transition: all 0.3s;
}
.siteLink .item a:hover::before {
  border-top: 1px solid var(--white-color);
  border-right: 1px solid var(--white-color);
}

@media screen and  (min-width:751px) {
  .siteLink .list{
    gap: 16px;
  }
  .siteLink .item{
    width: calc((100% - 32px) / 3);
  }
  .siteLink .item a{
    padding: 12px 40px;
  }
  .siteLink .item a::before{
      top: calc(50% - 4px);
      right: 20px;
  }

}


/*
onayami
--------------------------------------------------------*/
.onayami{
  background: var(--bg-gray-color);
}
.onayami .secTtl{
  margin-bottom: 40px;
}
.onayami_contents .list{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  width: min(100%,920px);
  margin: 0 auto;
}
.onayami_contents .item{
  width: 100%;
  position: relative;
  background: var(--white-color);
  padding: 12px 12px 12px 32px;
  font-weight: 700;
  border: 1px solid var(--gray-color);
}
.onayami_contents .item::before{
  position: absolute;
  top: 16px;
  left: 12px;
  content: "";
  width: 14px;
  height: 12px;
  background: url(../img/check.svg) no-repeat;
  background-size: contain;
}


@media screen and  (min-width:751px)  {
  .onayami_contents .item{
    width: calc((100% - 12px) / 2);
  }
  .onayami_contents .item::before{
    top: 16px;
    left: 14px;
  }
}


/*
reason
--------------------------------------------------------*/
.reason .secTtl{
  margin-bottom: 24px;
}
.reason_contents{
  width: 100%;
  min-height: 100px;
  padding-bottom: 40px;
  overflow-x: scroll;
}
/* スクロールバー全体を対象にする */
.reason_contents::-webkit-scrollbar {
  width: 8px; /* スクロールバーの幅 */
  height: 8px; /* スクロールバーの高さ */
}

/* スクロールバーの背景部分をカスタマイズ */
.reason_contents::-webkit-scrollbar-track {
  background: var(--green-color); /* スクロールバーの背景色 */
  border-radius: 4px;
}
.reason_contents::-webkit-scrollbar-thumb {
  background: var(--main-color); /* スクロールバーの操作部分の背景色 */
  border-radius: 4px;
}

.reason_contents .list{
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
  width: 910px;
}
.reason_contents .item{
  width: 290px;
  background: var(--white-color);
}
.reason_contents .item:last-of-type{
  border-bottom: none;
  padding-bottom: 0;
}
.reason_contents .img{
  width: 100%;
  margin-bottom: 16px;
}
.reason_contents .detail{
  width: 100%;
}
.reason_contents .ttl{
  margin-bottom: 8px;
  text-align: center;
  font-size: 24px;
  color: var(--main-color);
}

@media screen and  (min-width:751px)  {
  .reason_contents{
    max-width: 880px;
    margin: auto;
    overflow: auto;
  }
  .reason_contents .list{
    flex-wrap: wrap;
    width: 100%;
  }
  .reason_contents .item{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 40px 0;
    gap: 40px;
    border-bottom: 1px solid var(--gray-color);
  }
  .reason_contents .item:nth-of-type(even){
    flex-direction: row-reverse;
  }
  .reason_contents .img{
    width: 38%;
  }
  .reason_contents .detail{
    width: calc(62% - 40px);
  }
  .reason_contents .ttl{
    margin-bottom: 16px;
    text-align: left;
  }
}




/*
price
--------------------------------------------------------*/
.price .secTtl{
  margin: 0 auto 32px;
}
.price_contents{
  max-width: 480px;
  margin: 0 auto;
}
.price_contents .list{
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.price_contents .item{
  width: 100%;
}
.price_contents .img{
  margin-bottom: 0;
}
.price_contents .ttl{
  margin-bottom: 6px;
  text-align: center;
  font-size: 24px;
  color: var(--main-color);
}
.price_contents .txt{
  margin-bottom: 16px;
  margin-bottom: 24px;
}
.price_contents .tag{
  display: inline-block;
  margin-right: 8px;
  padding: 3px;
  background: var(--main-color);
  line-height: 1;
  color: var(--white-color)!important;
  font-weight: 400!important;
}
.price_contents .price_txt{
  text-align: right;
  font-size: 16px;
}
.price_contents .price_txt span.num{
  line-height: 1;
  font-size: 140%;
}
.price_contents .price_txt span{
  color: #CB0D10;
  font-weight: 700;
}




@media screen and  (min-width:751px)  {
  .price .secTtl{
    margin: 0 auto 48px;
  }
  .price_contents{
    max-width: 100%;
  }
  .price_contents .txt{
    min-height: 60px;
  }
  .price_contents .list{
    gap: 24px 24px;
  }
  .price_contents .item{
    width: calc((100% - 48px) / 3);
  }
  .price_contents .ttl{
    margin-bottom: 6px;
  }
  /* .price_contents .price_txt{
    font-size: 14px;
  } */
}




/*
voice
--------------------------------------------------------*/
.voice{
  background: var(--white-color);
}
.voice_contents{
  width: min(100%,880px);
  margin: 0 auto;
}
.voice_contents .box{
  /* background: var(--white-color); */
  background: var(--bg-green-color);
  padding: 24px;
  border: 1px solid var(--main-color);
}
.voice_contents .box + .box{
  margin-top: 24px;
}
.voice_contents .ttl{
  margin-bottom: 10px;
  text-align: center;
  font-size: 22px;
  color: var(--main-color);
}
.voice_contents .name{
  margin-bottom: 8px;
}
.voice_contents .tag{
  display: inline-block;
  margin-right: 8px;
  padding: 3px;
  background: var(--main-color);
  line-height: 1;
  color: var(--white-color);
}


@media screen and  (min-width:751px)  {
  .voice_contents .ttl{
    margin-bottom: 12px;
    text-align: left;
  }
  .voice_contents .box{
    padding: 40px;
  }
  .voice_contents .name{
    margin-bottom: 16px;
  }
}








/*
よくある質問
--------------------------------------------------------*/
.faq .secTtl{
  margin: 0 auto 32px;
}
.faq_contents{
  width: min(100%,880px);
  margin: 0 auto;
}
.faqList{
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gray-color);
}
.faqList:last-of-type{
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

/* 質問 */
.faqList dt{
  position: relative;
  margin-bottom: 10px;
  padding-left: 40px;
  font-weight: 700;
  line-height: 1.35;
  font-size: 22px;
  color: var(--main-color);
  font-weight: 700;
  font-style: normal;
  border-radius: 12px;
}

/* 回答 */
.faqList dd{
  position: relative;
  padding-left: 40px;
  text-align: justify;
}

/* QA__アイコン */
.faqList dt::before,
.faqList dd::before{
  width: 30px;
  height: 30px;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  line-height: 29px;
  text-align: center;
  font-style: normal;
  color: #fff;
  font-size: 18px;
}
.faqList dt::before{
  content: "Q";
  background: var(--main-color);
}
.faqList dd::before{
  content: "A";
  background: var(--cv-mail-color);
}

/*  アコーディオ開閉 */
.faqToggle {
  position: absolute;
  width: 36px;
  height: 36px;
  background: var(--main-color);
  border-radius: 100%;
  top: 50%;
  transform: translateY(-50%);
  right: 16px;
}
.faqToggle:before, 
.faqToggle:after {
  content: "";
  position: absolute;
  display: block;
  background: #fff;
  width: 20px;
  height: 3px;
  bottom: 44%;
  right: 8px;
}
.faqToggle:before {
  transform: rotate(90deg);
  transition: transform 0.3s;
}
.faqToggle:after {
  transform: rotate(0deg);
}
.faqList dt.open .faqToggle:before {
  transform: rotate(180deg);
}


@media screen and  (min-width:751px)  {
  .faq .secTtl{
    margin: 0 auto 48px;
  }
  .faqList{
    margin-bottom: 24px;
    padding-bottom: 24px;
  }
  .faqList dt{
    margin-bottom: 16px;
    font-size: 22px;
  }
}

/*
access
--------------------------------------------------------*/
.access{
  background: var(--bg-green-color);
}
.access .secTtl{
  margin: 0 auto 48px;
}
.access_contents{
  max-width: 480px;
  width: 100%;
  margin: 0 auto;
}
.hole{
  padding-bottom: 40px;
  border-bottom: 1px solid var(--gray-color);
  margin-bottom: 40px;
}
.hole:last-of-type{
  margin-bottom: 0;
  border-bottom: none;
}
.hole_info .img{
  width: 100%;
  margin-bottom: 12px;
}
.hole_info .ttl{
  margin-bottom: 8px;
  text-align: center;
  font-size: 24px;
  color: var(--main-color);
}
.hole_info .address{
  background: url(../img/icon-map.svg) no-repeat top 2px left;
  background-size: 15px 20px;
  margin-bottom: 8px;
  padding-left: 18px;
  font-size: 15px;
  letter-spacing: 0;
}
.hole_info .txt{
  margin-bottom: 12px;
  line-height: 1.6;
  font-size: 15px;
  letter-spacing: 0.02em;
}
.hole_info .detail{
  margin-bottom: 24px;
}
.hole .map{
  width: 100%;
  margin: auto;
}
.hole .map iframe{
  width: 100%;
  height: 280px;
}
.hole_tel{
  position: relative;
  line-height: 1;
  padding-left: 24px;
  font-family: "Crimson Text", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 24px;
}
.hole_tel::before{
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  content: "";
  width: 18px;
  height: 18px;
  background: url(../img/icon-tel.svg) no-repeat left center;
  background-size: contain;
}
.map_btn{
  width: 100%;
  margin: 0 auto;
  padding: 16px 10px;
  line-height: 1;
  text-align: center;
  background: transparent;
  border: 2px solid var(--main-color);
  transition: all 0.3s;
}
.map_btn:hover{
  background: var(--main-color);
  color: var(--white-color);
}

/* google map popup */
.map_popup{
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}
.map_popup_inner{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map_popup_inner iframe{
  display: block;
  width: 100%;
  height: 400px;
  margin: auto;
}
.map_popup_content{
  position: relative;
  width:min(95%,1000px);
}
.map_popup_content .map_popup_close{
  position: absolute;
  top: -50px;
  right: 0;
  font-size: 20px;
  width: 40px;
  height: 40px;
  background: var(--main-color);
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}


@media screen and  (min-width:751px) {
  .access_contents{
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
  }
  .access_contents .hole{
    width: calc((100% - 48px) / 3);
  }
  .hole{
    margin-bottom:24px;
    padding-bottom: 0;
    border-bottom: none;
  }
  .hole .map{
    display: none;
  }
  .hole_info .img{
    width: 100%;
    margin-bottom: 10px;
  }
  .hole_info .detail{
    width: 100%;
  }
  .hole_info .ttl{
    margin-bottom: 12px;
    text-align: left;
  }
  .hole_info .txt{
    min-height: 77px;
  }
  .map_popup_inner iframe{
    height: 600px;
  }


}





/*
フォーム
--------------------------------------------------------*/
#form{
  background: var(--main-color);
}
#form .secTtl{
  margin-bottom: 24px;
  color: var(--white-color);
}
#form .secTtl::before,
#form .secTtl::after{
  background: var(--white-color);
}
.formContents{
  padding: 24px 12px;
  background: var(--white-color);
}


@media screen and  (min-width:751px)  {
  #form .secTtl{
    margin-bottom: 40px;
  }
  .formContents{
    padding: 32px 20px;
  }
}

@media screen and  (min-width:960px)  {
  .formContents{
    padding: 48px 40px;
  }
}

/*
CM位置移動 20251128
--------------------------------------------------------*/
.pc-only {
  display: block;
}
.sp-only {
  display: none;
}
.cta-margin {
   margin-bottom: 15px;
}

@media screen and  (max-width:751px)  {
  .fv {
   margin-bottom: 90px; 
  }
 .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }
 #main .youtube-img .sp-only {
    text-align: center;
    margin: 30px auto 20px auto;
  }
  #main .youtube-img {
position: inherit;
text-align: center;
background: #007b60;
}


  #main .youtube-img  {
    margin: 70px auto 20px auto;
  }
}
