/* - - - - - - - - - - - - - - - - 









- - - - - - - - - - - - - - - - */


/* - - - - - - - - - - - - - - - - 

◾ BASE

- - - - - - - - - - - - - - - - */

html{
  font-size: 62.5%;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  color: #333;
  font-weight: 400;
  font-style: normal;
}
:root {
    --orange--color:#EE5714;
    --yellow--color:#FFCB21;
    --pink--color:#FE9797;
}


.container__content{
    width: 1200px;
    margin: 0 auto;
}
.container__inner{
    width: 1000px;
    margin: 0 auto;
}
main{
     background: #FFFBF0;
}
.bg__orange{
    background: var(--orange--color);
}
.bg__yellow{
    background: var(--yellow--color);
}
.bg__pink{
    background: var(--pink--color);
}
.bg__white{
    background: white;
}
.bg__wrapper{
    padding: 5rem !important;
}
.red{
    color: #EE5714;
}
.blue {
    color: #2647A2;
}
.pink{
    color: var(--pink--color);
}
h2{
    padding-top: 5rem;
    margin-bottom: 5rem;
    font-size: 3.2em;
    text-align: center;
    position: relative;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}

h2::before {
  background-color: var(--orange--color);
  border-radius: 5px; 
  bottom: -10px; 
  content: "";
  height: 5px; 
  left: 50%; 
  position: absolute;
  transform: translateX(-50%); 
  width: 50px; 
}

h3 {
    font-size: 2.8em;
    text-align: center;
    margin: 0 auto;
    padding: 3rem 0;
    font-weight: 600;
}

h3 img {
    display: block; 
    margin: auto;
}
h4 {
    font-size: 2em;
    font-weight: bold;
}


@media screen and (min-width: 768px){
.sp{
    display: none;
}
}
@media screen and (max-width: 1199px) {
  .container__content {
    width: 100%;
    padding: 0 2rem;
  }

  .container__inner {
    width: 100%;
    padding: 0 2rem;
  }
}
@media screen and (max-width: 767px){
.pc{
    display: none;
}
    .header__content{
        justify-content: center;
    }
    .container__content {
    width: 100%;
}
.container__inner{
    width: 100%;
    padding: 0 2rem;
}
.bg__wrapper {
    padding: 3rem !important;
}
}
/* - - - - - - - - - - - - - - - - 

◾ PARTS

- - - - - - - - - - - - - - - - */

.img--center {
    display: block;
    margin: auto;
}

.btn{
    text-align: center;
    padding: 1rem 3rem;
    vertical-align: middle;
    font-size: 16px;
    transition: all 1s ease 0s;
    border-radius: 5px;
}
.btn--line{
    background: #06C755;
    color: white;
    border: 1px solid transparent;
}
.btn--line:hover{
    background: white;
    color: #06C755;
    border: 1px solid #06C755;
}
.btn--line .icon {
  width: 2rem;
  height: 2rem;
  margin-right: 1rem;
  vertical-align: middle;
  /*fill: currentColor; */
  fill: white;
  pointer-events: none;
  transition: fill 0.3s ease;

}
.btn--plan{
    background: var(--orange--color);
    color: white;
    display: block;
    max-width: 250px;
    margin: 2rem auto;
    border: 1px solid transparent;

}
.btn--plan:hover{
    color:  var(--orange--color);
    border: 1px solid var(--orange--color);
    background: white; 
}
.btn--recruit-mv {
    background: var(--orange--color);
    color: white;
    display: block;
    max-width: 250px;
    margin: 2rem 0 1.5rem auto;
    border: 1px solid transparent;
}
.btn--recruit-mv:hover {
    color:  var(--orange--color);
    border: 1px solid var(--orange--color);
    background: white;
}

.btn--recruit-cta{
    background: var(--pink--color);
    color: white;
}

.btn--recruit-cta:hover{
    color: var(--pink--color);
    background: white;
    border: 1px solid var(--pink--color);
}

@media screen and (max-width: 767px){
    .btn--recruit-mv{
        margin: 2rem auto 0.5rem;
    }

}


/* - - - - - - - - - - - - - - - - 

◾ MV

- - - - - - - - - - - - - - - - */

.wrapper__header{
    background: rgba(255, 255, 255, 0.7);
    padding: 1rem 0;
}

.wrapper__mv{
    position: relative;
    background: url(../img/mv_pc.jpg);
    background-size: cover;
    height: 780px;
}

.header__content{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mv__copy , .mv__ticket{
    display: block;
    border-radius: 10px;
    margin: 2rem 0 1.5rem auto;
    max-width: 500px;
}
.mv__read{
    display: block;
    font-size: 2em;
    font-weight: bold;
    margin: 2rem 0 1.5rem auto;
        max-width: 500px;
}
.mv__stats{
    text-align: right;
    font-size: 1.5em;
}

.cta--tel {
    font-size: 2.5em;
    font-weight: 500;
    vertical-align: middle;
    margin-right: 2rem;
}
.cta--tel::before{
    display: inline-block;
    content: "" ;
     background-image: url("../img/cta_parts_tel.svg");
    background-size: contain;
    width: 2.5rem; 
    height: 2.5rem;
    vertical-align: middle;
    margin-right: 1rem; 
}

@media screen and (max-width: 767px){
.wrapper__mv{
    height: 100%;
}
.header__content{
    justify-content:center;
}
.header__cta{
    display: none;
}

.mv__copy, .mv__ticket{
    margin: auto;
    width: 100%;
}
.mv__sp{
    background: url("../img/mv_sp.jpg") no-repeat center center;
    background-size: cover;
    /*width: 100%;*/
    display: flex;
    align-items: flex-start;
    justify-content: center;
    height: 400px;
    margin: 2.5rem -2rem;
}
.mv__read {
    font-size: 1.8rem;
    padding: 3rem 0;
  border-radius: 10px;
  font-weight: bold;
  max-width: 90%;
  line-height: 1.5;
}

.mv__stats{
    text-align: center;
}
.wrapper__mv{
    background: initial;
}



}
/* - - - - - - - - - - - - - - - - 

◾ サービスの強み

- - - - - - - - - - - - - - - - */

.strengths .strengths__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: 50px;
    font-size: 2em;
    margin-bottom: 3rem;
}
.strengths__list--subject img{
    width: 150px;
}
.strengths__list p {
    text-align: center;
    line-height: 1.8;
    margin: 0.5rem auto;
    font-weight: bold;
}
.insurance__icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding-bottom: 5rem;
}

.strengths__support{
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
}
.strengths__support p{
    font-size: 1.6em;
    margin-top: 2rem;
    line-height: 1.8;
}
.support__list {
    display: flex;
    gap: 3rem;
    font-size: 1.8em;
    text-align: center;
    font-weight: bold;
    margin: 3rem auto 5rem;
}
.strengths__txt{
    font-size: 2.3em;
    line-height: 2.3;
    font-weight: bold;
    text-align: center;
    margin: 3rem auto 5rem;
}
.strengths__txt span{
    color: var(--orange--color);
}
.strengths__reason{
    display: flex;
    justify-content: center;
    gap: 8rem;
    margin-bottom: 6rem;
}
.strengths__reason h4{
    text-align: center;
    font-size: 2.3em;
    margin: 2.5rem auto;
}
.reason__content{
    max-width: 550px;
}
.reason__content p{
    font-size: 1.6em;
    margin-top: 2rem;
    line-height: 1.8;
}
.reason__content span{
    color: var(--orange--color);
}

@media screen and (max-width: 767px){
.strengths .strengths__list{
    flex-direction: column;
    align-items: center;
    gap: 20px;
    }
.strengths__list--subject{
    flex-direction: row !important;
    margin-bottom: 3.5rem;
    }
.strengths__list--subject img {
    display: block;
    width: 150px;
    margin: auto;
    }
.strengths__support{
    flex-direction: column;
}
.strengths__reason{
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 50px;
}
.insurance__icons{
    flex-direction: column;
}
.insurance__icons img {
    width: 180px;
    margin: auto;
}
.strengths__reason h4{
    font-size: 2.2em;
}
.strengths__txt{
    font-size: 2em;
    line-height: 1.8;
}


.support__list{
    flex-direction: column;
}
}

/* - - - - - - - - - - - - - - - - 

◾ サービス紹介

- - - - - - - - - - - - - - - - */

.service__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding-bottom: 5rem;
}
.service__list li {
    max-width: 300px;
}
.service__list p{
    font-size: 1.8rem;
    margin: 1rem auto;
    font-weight: bold;
    letter-spacing: 1px;
}
.service__ttl {
    background: var(--orange--color);
    color: white;
    font-size: 2rem;
    text-align: center;
    padding: 0.5rem;
    margin: 1.5rem auto;
    border-radius: 20px;
    max-width: 200px;
}
.slider__content{
    margin: 2rem auto 5rem;
}
.slick-slide img{
    padding: 0 1rem;

}


@media screen and (max-width: 767px){
.service__list li{
    margin-bottom: 2rem;
}

}


/* - - - - - - - - - - - - - - - - 

◾ CTA

- - - - - - - - - - - - - - - - */

/* 追従用CTA */

.cta-fixed{
    position: fixed;
  top: 15rem;
  right: 0;
  background: #fff;
  border: 1px solid var(--orange--color);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 2rem 1rem;
  z-index: 9999;
  text-align: center;
  font-size: 14px;
  max-width: 350px;
}
.cta-fixed p {
    font-size: 1.5rem;
    font-weight: 500;
    margin: 1rem auto 2rem;
}
.cta-fixed .btn {
    padding: 1rem 2.6rem;
    font-size: 12px;
}
.cta-fixed .cta--tel{
    font-size: 1.5em;
    display: block;
    margin: 1rem auto;
}

.cta__content {
    border: 2px solid var(--orange--color);
    margin: 6rem auto;
    padding: 3rem;
    text-align: center;
}

.cta__content img {
    margin: 1.5rem auto;
}

.cta__info {
    display: flex;
    justify-content: center;
    align-items: center;
}

.info__call {
    font-size: 3.5em;
    font-weight: bold;
    display: block;
}

@media screen and (max-width: 767px){
    .cta-fixed {
    top: initial;
    bottom: 0;
    left: 0;
    right: 0;
    max-width: 100%;
    border: none;
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
}
.cta-fixed p{
    display: none;
}
.cta-fixed .cta .cta--tel{
    width:150px;
    background: #333;
    color: white;

}

    .cta__content{
        padding: 1rem;
    }
    .cta__info{
        flex-direction: column;
    }

}


/* - - - - - - - - - - - - - - - - 

◾ 利用シーン

- - - - - - - - - - - - - - - - */

.plan-tabs__menu {
  display: flex;
  padding: 0;
  gap: 10px;
  align-items: stretch;
}

.plan-tabs__menu-item {
  cursor: pointer;
  padding: 1rem;
  color: white;
  transition: all 0.3s;
  width: 50%;
  text-align: center;
  font-size: 16px;
  height: 70px;
  
}
    .plan-tabs__menu-item{
    display: flex;
    justify-content: center;
    align-items: center;
    }

.plan-tabs__menu-item--shot {
  background-color: var(--yellow--color);
  color: #000;
}

.plan-tabs__menu-item--subscription {
  background-color: var(--orange--color);
  color: #fff;
}
.plan-tabs__menu-item--active {
  font-weight: bold;
  /*transform: scale(1.03);*/
}
.plan-tabs__content {
  display: none;
}
.plan-tabs__content--active {
  display: block;
}

.plan-tabs__shot {
    padding: 5rem;
    margin: 0 3rem;
}
.plan-tabs__shot .img--center{
    margin: 3rem auto;
}
.shot__notes{
    text-align: right;
}
.plan__txt{
    max-width: 700px;
    text-align: right;
    font-size: 1.2em;
}
.plan__notes {
    display: flex;
    max-width: 635px;
    background: #FFFBF0;
    padding: 2rem;
    margin: 3rem auto;
    border-radius: 5px;
    align-items: center;
    gap: 1rem;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.8;
}
.plan__notes span{
    color: #1FA99D;
    font-weight: 600;
}

.sub__notes{
    font-size: 16px;
    text-align: center;
}
.sub__plan{
    font-size: 1.85em;
    font-weight: 600;
    margin-bottom: 1.5rem;
}
.sub__plan span{
    color: var(--orange--color);
}

@media screen and (max-width: 767px){
    .plan-tabs__menu{
        align-items: center;
    }
    .plan-tabs__shot{
        padding: 1rem;
        margin: 0;
    }
    .plan__notes{
        flex-direction: column;
        text-align: center;
        font-size: 1.5em;
    }
    .sub__plan{
        font-size: 1.5em;
    }
}

/* - - - - - - - - - - - - - - - - 

◾ サービス範囲

- - - - - - - - - - - - - - - - */
.area__content img{
    display: block;
    margin: 0 auto;
    padding: 5rem 0 0;
}
.area__content h2 {
    margin: 0;
    padding: 5rem 0 0 0;
}

.area__content p {
    font-weight: bold;
    font-size: 2.1em;
    text-align: center;
    padding: 3rem 0;
}
@media screen and (max-width: 767px){
    .area__content h2{
        padding: 2.5rem 0 0 0;
    }
    .area__content p{
        font-size: 1.8em;
    }
}

/* - - - - - - - - - - - - - - - - 

◾ よくある質問

- - - - - - - - - - - - - - - - */
.faq__content{
    font-size: 16px;
}

.faq__head {
  width: 100%;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: none;
  cursor: pointer;
  text-align: left;
  font-weight: 500;
}
.icon {
    color: var(--orange--color);
  font-size: 20px;
  transition: transform 0.3s;
}
.faq__head.active .icon {
  transform: rotate(45deg);
}

.faq__body {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease-out;
}
.faq__txt {
  padding: 20px;
  border-top: 1px solid #C5C5C5;
}

@media screen and (max-width: 767px){
.faq__head{
    padding: 1.5rem 0;
}
.faq__txt {
    padding: 20px 0;
    font-size: 90%;
    line-height: 1.6;
}
}


/* - - - - - - - - - - - - - - - - 

◾ 採用情報

- - - - - - - - - - - - - - - - */
.recruit__ttl {
    display: block;
    text-align: center;
    padding: 3rem 0;
}
.recruit__ttl-sub{
    font-weight: 600;
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 2.5rem;
}

.recruit__list {
    display: flex;
    justify-content: space-evenly;
    margin-bottom: 3.5rem;
    
}
.recruit__list p {
    margin-top: 1rem;
    font-size: 18px;
    text-align: center;
    font-weight: 500;

}

.recruit__content img {
    max-width: 450px;
}
.recruit__content {
    max-width: 925px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
}
.recruit__content p{
    font-size: 16px;
    line-height: 1.8;
}

.recruit___cta{
    padding: 3rem 0;
    text-align: center;
    padding-bottom: 5rem;
}
.recruit___cta p {
    position: relative;
    top: 1.5rem;
}




@media screen and (max-width: 767px){
.recruit__content{
    flex-direction: column;
    align-items: center;
}
.recruit__list{
    flex-direction: column;
}
.recruit__list li{
    margin-bottom: 2rem;
    display: flex;
}
.recruit__list li img {
    width: 40px;
}
.recruit__list p{
    text-align: left;
    margin-left: 1rem;
}
.recruit__content img{
    width: 100%;
}
.recruit__ttl {
    padding: 2rem 0;
}
.recruit__ttl-sub {
    background: var(--pink--color);
    color: white;
    font-size: 1.5em;
    font-weight: 500;
    text-align: center;
    margin: 0 auto 2rem;
    padding: 1rem;
    border-radius: 5px;
}
}

/* - - - - - - - - - - - - - - - - 

◾ 採用情報

- - - - - - - - - - - - - - - - */

footer {
    padding: 3rem 0;
    background: #FFFBF0;
}

.footer__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
}
footer .info__call.cta--tel {
    font-size: 1.5em;
}

.footer__sns ul {
    display: flex;
    align-items: center;
}

.footer__sns ul li {
    background: white;
    margin: 1rem;
    padding: 1.5rem;
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 1s ease 0s;
    border: 1px solid white;
}
.footer__sns ul li:hover{
    background: #FFFBF0;
    border: 1px solid var(--orange--color);
}

copy {
    background: #333;
    color: white;
    width: 100%;
    display: block;
    text-align: center;
    padding: 1rem;
}


@media screen and (max-width: 767px){
.footer__content{
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
}
.footer__sns ul{
    display: flex;
}

}
