@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Poppins&family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&family=Zen+Old+Mincho:wght@400;500;600;700;900&display=swap');
@import url("https://fonts.googleapis.com/css2?family=Inter&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap');


:root {
  /* カラー */
  --c-white: #fff;
  --c-black: #1e1e1e;
  --c-base: #52bcb1;
  --c-green: #009944;
  --c-light-green:#23ac38;
  --c-yellow-green:#90c31f;
  --c-yellow: #f6ff00;
  --c-orange:#ff7e01;
  --c-navy:#123b7c;
  --c-tealblue:#006e7d;
  --c-gray: #e9e9e9;

  /* フォント */
  --font-mincho: "Zen Old Mincho", serif;
  --font-notosans: "Noto Sans JP", sans-serif;
  --font-gothic:"Zen Kaku Gothic New", sans-serif;
  --font-en: "Josefin Sans", sans-serif;

}

/*
------------------------------------------------------------
reset
------------------------------------------------------------
*/

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  border: 0;
  font-size: 100%;
  font-weight: normal;
  margin: 0;
  outline: 0;
  padding: 0;
  vertical-align: baseline;
}


article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

a {
  background-color: transparent;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  text-decoration: none;
}

ins {
  text-decoration: none;
}

mark {
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  border: 0;
  border-top: 1px solid var(--c-black);
  display: block;
  height: 1px;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

img {
  font-size: 0;
  line-height: 0;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

* {
  box-sizing: border-box !important;
}


html.is-open {
  overflow: hidden;
}


body {
  width: 100%;
  background-color: var(--c-navy);
  -webkit-text-size-adjust: none;
  line-height: 1.6;
  letter-spacing: .02em;
  font-size: 1rem;
  font-family: var(--font-gothic);
  color: var(--c-black);
  -ms-overflow-style: none;
  scrollbar-width: none;
}

body::-webkit-scrollbar {
  display: none;
}

.block{
  display: block !important;
}

.inline-block{
  display: inline-block !important;
}

a:hover{
  opacity: .8;
}

/*
------------------------------------------------------------
header
------------------------------------------------------------
*/

header {
  width: 100%;
  background: var(--c-white);
  box-shadow: 0px 3px 4px 0px rgba(26, 26, 26, 0.15);
  height: 64px;
  padding: 10px 4%;
  z-index: 100;
  position: fixed;
}

.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.header__logo {
  width: 120px;
}


.hamburger::after {
  height: 100%;
  display: inline-block;
  vertical-align: middle;
}

.hamburger-button {
  width: 44px;
  height: 44px;
  background: none;
  z-index: 200;
  vertical-align: middle;
  font-weight: bold;
  cursor: pointer;
  outline: none;
  border: 0;
  font-size: 1.5em;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 12px;
  background-color: var(--c-green);
  border-radius: 100%;
}

.hamburger-button span {
  width: 20px;
  height: 3px;
  border-radius: 1.5px;
  background-color: var(--c-white);
  position: relative;
  transition: ease 0.4s;
  display: block;
}

.hamburger-cancel-button {
  width: 46px;
  height: 46px;
  background: none;
  padding: 0;
  color: var(--red);
  z-index: 200;
  vertical-align: middle;
  font-weight: bold;
  cursor: pointer;
  outline: none;
  border: 0;
  font-size: 1.5em;
  position: absolute;
  top:8px;
  right: 12px;
}

.hamburger-cancel-button span {
  width: 20px;
  height: 3px;
  margin: 16.5px 0;
  border-radius: 1.5px;
  background-color: var(--c-white);
  position: relative;
  display: block;
}

.hamburger-cancel-button span:nth-child(1) {
  top: 5.5px;
  left: 13px;
  transform: rotate(45deg);
}

.hamburger-cancel-button span:nth-child(2) {
  top: -14px;
  left: 13px;
  transform: rotate(-45deg);
}

.hamburger-menu {
  z-index: 200;
  width: 280px;
  /* position: absolute; */
  position: fixed;
  top: 20px;
  left: calc(100% + 6px);
  transform: translateX(0%);
  background-color: var(--c-green);
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.25);
  transition: ease 0.4s;
  border-radius: 24px;
  /* padding: 20px; */
  float: right;
}

.hamburger-menu-container {
  margin: 0;
  padding: 0;
  list-style-type: none;
  list-style-image: none;
}

/* .hamburger-cancel-container {
  height: 46px;
} */

.hamburger-menu-items {
  display: block;
  color: var(--c-white);
  background: var(--c-green);
  width: 100%;
  font-size: 16px;
  font-weight: 700;
  padding: .8em 0;
  border-width:0px;
}

.hamburger-menu-items:hover {
  opacity: 0.7;
}

.hamburger-menu.active {
  transform: translateX(calc(-100% - 12px));
}

.hamburger-menu-book {
  line-height: 50px;
  margin: 16px 20px;
}

.hamburger-menu-book {
  color: white;
}

.hamburger__menu__warp{
  margin: 48px 0 24px;
}


/*
------------------------------------------------------------
 layout
------------------------------------------------------------
*/

.container {
  /* padding-top: 50px; */
  /* padding-top: 80px; */
  display:none;
}

.top-frame {
  z-index: -100;
  width: 100%;
  position: absolute;
}

.top-frame-image {
  height: 10vw;
  background: url("../images/bg_wave_green.svg");
  background-size: 100%;
}





.first-view-image {
  z-index: -1;
  padding-top: 10vw;
  position: relative;
  overflow: hidden;
}

.first-view-image img {
  display: block;
}

.first-view-image-title {
  z-index: -3;
  padding-top: 20vw;
  position: absolute;
}

.first-view-image-horn {
  top: 28%;
  left: 5.6%;
  position: absolute;
  width: 90.6667%;
}



.first-view-date {
  overflow: hidden;
  width: 100%;
  position: relative;
  z-index: 1;
  text-align: center;
}



.SP {
  /* z-index: -1; */
  /* margin-top: -6.4vw; */
  width: 100%;
  position: absolute;
  background-color: white;
}


/*
------------------------------------------------------------
 common
------------------------------------------------------------
*/


.content-wrap {
  padding-left: 4%;
  padding-right: 4%;
}

.ttl{
  margin-bottom: 24px;
}


.txt {
  font-size: calc(14 / 375 * 100vw);
  line-height: 1.4;
  margin-bottom: 1em;
}

.txt:last-child {
  margin-bottom: 0;
}

@media screen and (min-width: 960px) {
  .txt {
    font-size: 16px;
  }
}

.common-ttl{
  font-size: calc(18 / 375 * 100vw);
  background-color: var(--c-base);
  color:var(--c-white);
  text-align: center;
  font-weight: 500;
}

@media screen and (min-width: 960px) {
  .common-ttl {
    font-size: 18px;
  }
}

.common-catch{
  text-align: center;
  line-height: 1.4;
  margin-bottom: 18px;
}

.common-catch strong{
  font-size: calc(26 / 375 * 100vw);
  color: var(--c-base);
  font-weight: 700;
}

@media screen and (min-width: 960px) {
  .common-catch strong{
    font-size: 26px;
  }
}

.maker{
  background: linear-gradient(transparent 70%, var(--c-yellow) 70%);
}

.c-white{
  color: var(--c-white) !important;
}


.cta-btn span{
  font-size: calc(15 / 375 * 100vw);
  color: var(--c-black);
  font-weight: 500;
  text-align: center;
  display: block;
  margin-bottom: 4px;
}

@media screen and (min-width: 960px) {
  .cta-btn span{
    font-size: 15px;
  }
}

.mb8{
  margin-bottom: 8px;
}

.mb16{
  margin-bottom: 16px;
}

.mb24{
  margin-bottom: 24px;
}

.mb40{
  margin-bottom: 40px;
}

.mb60{
  margin-bottom: 60px;
}

.mb80{
  margin-bottom: 80px;
}

/*
------------------------------------------------------------
mv
------------------------------------------------------------
*/

.mv{
}

.mv__top {
  background-image: url(../images/bg_mv.jpg);
  background-size: cover;
  background-position: center center;
  width: 100%;
  overflow: hidden;
  padding-top: 100px;
  border-radius: 0 0 100% 100% / 0 0 12% 12%;
}


.mv__catch-top{
  font-size: calc(16 / 375 * 100vw);
  text-align: center;
  line-height: 1.4;
  color: var(--c-black);
  margin-bottom: 12px;
}

@media screen and (min-width: 960px) {
  .mv__catch-top{
    font-size: 16px;
    font-weight: 500;
  }
}

.mv__ttl{
  text-align: center;
  margin-bottom: 12px;
}

.mv__ttl img{
  width: 320px;
  height: auto;
}

.mv__catch-bottom{
  font-size: calc(22 / 375 * 100vw);
  text-align: center;
  color: var(--c-white);
  line-height: 1.4;
  margin-bottom: 12px;
}

@media screen and (min-width: 960px) {
  .mv__catch-bottom{
    font-size: 22px;
  }
}

.mv__img{
  position: relative;
  overflow: hidden;
}

.mv__img img:nth-of-type(1){
  position: relative;
  z-index: 1;
  display: inline-block;
  width: 100%;
  /* padding: 0 2%; */

}

.mv__img img:nth-of-type(2){
  position: absolute;
  bottom: -40px;
  left: -20px;
  width: 120px;
}

.mv__img img:nth-of-type(3){
  position: absolute;
  bottom: -10px;
  right: -20px;
  width: 120px;
}


.mv__bottom{
  background-image: url(../images/bg_grey.jpg);
  background-repeat: repeat-y;
  margin-top: -40px;
  padding-top: 48px;
  padding-bottom: 80px;
}

.mv__list{
  margin-bottom: 24px;
}

.mv__item{
  background-color: var(--c-white);
  font-size: calc(18 / 375 * 100vw);
  font-weight: 500;
  padding: .4em 0 .4em 1.8em;  
  margin-bottom: .8em;
  box-shadow: 0px 0px 12px -8px var(--c-black);
  letter-spacing: -.01em;
  position: relative;
}

@media screen and (min-width: 960px) {
  .mv__item{
    font-size: 18px;
  }  
}

.mv__item::before{
  content: "";
  display: inline-block;
  background-image: url(../images/check.svg);
  width: 1em;
  height:1em;
  position: absolute;
  top: 50%;
  left: .4em;
  transform: translateY(-50%);
}

.mv__item span{
  font-weight: 500;
}


/*
------------------------------------------------------------
お悩み
------------------------------------------------------------
*/

.worries{
  background-image:url(../images/bg_worries.jpg);
  background-size: cover;
  padding-top: 60px;
}

.worries__ttl{
  font-size: calc(18 / 375 * 100vw);
  font-weight: 500;
  color: var(--c-white);
  margin-bottom: 24px;
}

@media screen and (min-width: 960px) {
  .worries__ttl{
    font-size: 18px;
  }  
}

.worries__ttl-large{
  font-size:1.4em;
}

.worries__ttl-yellow{
  color: var(--c-yellow);
}

.worries__list{
  position: relative;
}
.worries__list::before{
  content: "";
  background-image: url(../images/worries__person.png);
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  width: 110px;
  height: 200px;
  position: absolute;
  top: -172px;
  right: 0;
}

.worries__item{
  font-size: calc(14 / 375 * 100vw);
  font-weight: 500;
  background-color: var(--c-white);
  padding: 0.6em 1em;
  margin-bottom: 16px;
}

@media screen and (min-width: 960px) {
  .worries__item{
    font-size: 14px;
  }  
}

/*
------------------------------------------------------------
診断サービス
------------------------------------------------------------
*/


.service{
background-color: var(--c-base);
padding-bottom: 80px;
}

.service__ttl{
  font-size: calc(24 / 375 * 100vw);
  color: var(--c-base);
  text-align: center;
  letter-spacing: 0;
}

@media screen and (min-width: 960px) {
  .service__ttl{
    font-size: 24px;
  }  
}

.service__ttl span{
  background-color: var(--c-white);
  font-weight: 500;
  display: inline-block;
  padding: 0 .15em;
  margin-bottom: .4em;
}

.service__img{
  margin-bottom: 16px;
}

.service__logo{
  width: 90%;
  margin: 24px auto;
}

.service__features{
  background-color: var(--c-white);
  padding: 48px 16px;
  margin-bottom: 40px;
}

.service__features__item{
  margin-bottom: 48px;
}

.service__features__item:last-child{
  margin-bottom: 0;
}


.service__features__decoration{
  background-color: var(--c-orange);
  color: var(--c-white);
  border-radius: 100vh;
  text-align: center;
  font-weight: 500;
  font-size: 16px;
  padding: .2em 0;
  margin-bottom: 16px;
}

.service__features__ttl{
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  color: var(--c-orange);
  margin-bottom: 16px;
}

.service__features__img{
  margin-bottom: 16px;
}




/*
------------------------------------------------------------
相談事例
------------------------------------------------------------
*/

.case{
  background-color: #f2f9ff;
  padding: 80px 0;
}

.case__voice{

}

.case__voice__profile{
  display: flex;
  align-items: center;
}

.case__voice__profile.reverse-layout{
  display: flex;
  flex-direction: row-reverse;
}


.case__voice__profile img{
width: 80px;
margin-right: 18px;
}

.case__voice__profile.reverse-layout img{
  margin-left: 18px;
  margin-right: 0;
}
  
.case__voice__profile p{
  font-size: 16px;
  font-weight: 500;
  color: var(--c-navy);
}

.case__voice__box{
  background-color: var(--c-white);
  padding: 24px;
  box-shadow: 0px 0px 12px -8px var(--c-black);
  border-top-right-radius: 24px;
  border-bottom-right-radius: 24px;
  border-bottom-left-radius: 24px;
  margin-bottom: 40px;
}
.case__voice .case__voice__box:last-child{
  margin-bottom: 40px;
}

.case__voice__box.reverse-layout{
  border-top-left-radius: 24px;
  border-top-right-radius: 0px;
}

.case__voice__ttl{
  font-size: calc(18 / 375 * 100vw);
  font-weight: 700;
  color: var(--c-navy);
  margin-bottom: .8em;
}

@media screen and (min-width: 960px) {
  .case__voice__ttl{
    font-size: 18px;
  }  
}

.case__voice__ttl span{
  font-weight: 700;
}



/*
------------------------------------------------------------
診断者の紹介
------------------------------------------------------------
*/

.profile{
  background-color: #dbeff6;
  padding: 80px 0;
}

.profile__img{
  margin-bottom: 16px;
}

.profile__name{
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  color: var(--c-navy);
  margin-bottom: 8px;
}


/*
------------------------------------------------------------
フロー
------------------------------------------------------------
*/

.flow{
  background-color: var(--c-white);
  padding: 80px 0;
}

.flow__list{
  margin-bottom: 40px;
}

.flow__item{
  padding: 24px 5% 0;
}
.flow__item:nth-of-type(1){
  background-color: #dbeff6;
}

.flow__item:nth-of-type(2){
  background-color: #b5e1e8;
}

.flow__item:nth-of-type(3){
  background-color: #8fd3db;
  padding-bottom: 24px;
}

.flow__item__ttl{
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  padding: 16px 0;
  position: relative;
}

.flow__item__ttl::before{
  font-size: 100px;
  line-height: 1;
  font-weight: 900;
  position: absolute;
  top: -30px;
  left: 0;
}

.flow__item__ttl1::before{
  content:"1";
  color:  #8fd3db;
}

.flow__item__ttl2::before{
  content:"2";
  color:  #dbeff6;
}

.flow__item__ttl3::before{
  content:"3";
  color:  #e2f7fa;
}

.flow__item__img{
  margin-bottom: 16px;
}

.flow__decoration{
  width: 111%;
  margin-left: -5.5%;
}



/*
------------------------------------------------------------
よくあるご質問
------------------------------------------------------------
*/

.faq{
  background-color: #f2f9ff;
  padding: 80px 0;
}

.faq__box{
  width: 100%;
  background-color: var(--c-white);
  box-shadow: 0px 0px 12px -8px var(--c-black);
  margin-bottom: 24px;
}

.faq__box:last-child{
  margin-bottom: 0;
}


.faq__question{
  font-size: calc(14 / 375 * 100vw);
  line-height: 1.2;
  font-weight: 500;
  padding: 1.6em .4em 1.6em 2.2em;
  position: relative;
}

.faq__question::before{
  content: "";
  display: inline-block;
  background-image: url(../images/faq__question.svg);
  background-repeat: no-repeat;
  width: 1.2em;
  height: 1.2em;
  position: absolute;
  left: .6em;
  top: 52%;
  transform: translateY(-50%);

}


@media screen and (min-width: 960px) {
  .faq__question {
    font-size: 16px;
  }
}

.faq_answer{
  display: none;
  padding: 1em .6em;
  border-top: solid 1px var(--c-gray);
  line-height: 1.2;
}


/*
------------------------------------------------------------
クロージング
------------------------------------------------------------
*/
.closing{
  background-image: url(../images/bg_mv.jpg);
  background-size: cover;
  background-position: center center;
  width: 100%;
  padding: 60px 0;
}



.closing__ttl{
  font-size: calc(24 / 375 * 100vw);
  color: var(--c-base);
  text-align: center;
  letter-spacing: 0;
}

@media screen and (min-width: 960px) {
  .closing__ttl{
    font-size: 24px;
  }  
}

.closing__ttl span{
  background-color: var(--c-white);
  font-weight: 500;
  display: inline-block;
  padding: 0 .15em;
  margin-bottom: .4em;
}

.closing__box{
  margin-top: -42px;
}

.closing__img{
  width: 85%;
  margin: 0 auto;
}





/*
------------------------------------------------------------
foooter
------------------------------------------------------------
*/


.footer {
  background-color: var(--c-navy);
  padding: 40px 0 40px;
}

.footer__wrap{
  text-align: center;
  color: var(--c-white);
}

.footer__service{
  font-size: 16px;
  color: var(--c-white);
  margin-bottom: 24px;
}

.footer__tel{
  font-size: calc(30 / 375 * 100vw);
  margin-bottom: 40px;

}

@media screen and (min-width: 960px) {
  .footer__tel{
    font-size: 30px;
  }  
}


.footer__tel a{
  color: var(--c-white);
  padding: .24em .6em .24em 1.8em;
  border: solid 2px var(--c-white);
  line-height: 1;
  position: relative;
}

.footer__tel a::before{
  content: "";
  display: inline-block;
  background-image: url(../images/icon__tel.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 1em;
  height: 1em;
  position: absolute;
  top: 53%;
  left: .4em;

  transform: translateY(-50%);

}


.footer__info{
  display: flex;
  justify-content: center;
  gap: 1.8em;
  margin-bottom: 24px;
}

.footer__item a{
  color: var(--c-white);
}

.footer__item:first-child{
border-right: solid 1px var(--c-white);
padding-right: 1.5em;
}

.footer__copy {
  font-size: 12px;
  color: var(--c-white);
}




/*
------------------------------------------------------------
other
------------------------------------------------------------
*/

.progress {
  display: none;
}

.fadeUpTrigger {
  opacity: 0;
}

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: .8s;
  animation-delay: 0.2s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0.2;
    transform: translateY(80px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

