@charset "UTF-8";


body {
  font-family: 'Zen Maru Gothic', sans-serif;
  width: 100%;
}
.forpc {
  display: block;
}
.forsp {
  display: none;
}
img {
  width: 100%;
}
a {
  text-decoration: none;
  color: #003033;
}
p{
  color: #005D63;
}

a:hover {
  opacity: 0.6;
}
.en_text {
  font-family: 'Quicksand', sans-serif;
}

.blue {
  color: #00A3AF;
}

/*****************************************
  2023.11.28追加
******************************************/
.position-relative{
  position: relative;
}
.position-absolute{
  position: absolute;
}

/*****************************************
******************************************
ヘッダー
******************************************
******************************************/
.subcontent {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4vw 0 0;
}
.header {
  max-height: 96px;
  height: 100%;
}
.headerWrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  left: 0;
  top: 0;
  height: 9vw;
  max-height: 96px;
  background: #ffffff;
  width: 100%;
  padding: 0 4vw;
}
.logo {
  width: 220px;
}
.logo_subtext {
  font-size: .7rem;
}
.header_menuBtn {
  display: none;
}
.menuBtn_box {
  position: relative;
  display: block;
  margin: 8px auto 16px;
}
.menuBtn_1 , .menuBtn_2  {
  content: '';
  background: #ffffff;
  width: 28px;
  height: 2px;
  position: absolute;
  top: -8px;
  left: calc(50% - 14px);
  transition: 0.3s;
}
.menuBtn_2 {
  top: 0;
}
.header_menuBtn p {
  color: #ffffff;
  font-size: 0.8rem;
}
.pc_header {
  display: flex;
  align-items: center;
}
.cta_btn {
  text-align: center;
}
.cta_btn a {
  color: #ffffff;
  background: #00A3AF;
  border-radius: 50vw;
  padding: 16px 20px;
  max-width: 200px;
  line-height: 1.25;
}


@media (max-width: 1280px) {
  .headerWrap {
    padding: 0 0 0 4vw;
    }
  .header_menuBtn {
    display: block;
    background: #00A3AF;
    width: 8vw;
    height: 9vw;
    min-width: 64px;
    min-height: 64px;
    padding: 3vw 2vw;
    position: fixed;
    z-index: 99;
    right: 0;
    max-width: 96px;
    max-height: 96px;
  }
}


@media (max-width: 750px) {
  .headerWrap {
    max-height: 64px;
    height: 100%;
  }
  .logo {
    width: 24vw;
    min-width: 180px;
  }
  .logo_subtext {
    margin-top: 6px;
  }
  .header_menuBtn {
    padding: 16px;
  }
}

/* ヘッダーメニューOPEN */
.header_menuBtn.open .menuBtn_1 {
  transform: translateY(0) rotate(-45deg);
  transition: 0.3s;
}
.header_menuBtn.open .menuBtn_2 {
  transform: translateY(-8px) rotate(45deg);
  transition: 0.3s;
}
.header_menuBtn.open .menuBtn_box {
  margin: 12px auto 16px;
}

/* ドロワーメニュー */
.drawer_menu {
  width: 84%;
  height: 100vh;
  top: -120%;
  right: 0;
  position: fixed;
  display: block;
  overflow: auto;
  background: #F2F7F7;
  padding: 8vw 0;
  z-index: 10;
  box-shadow: -4px 4px 6px 0px rgba(0, 48, 51, 0.16);
}
.drawer_menu.sp_open {
  top: 0;
}
.menuList  {
  padding: 4vw;
}
.menuList li a {
  color: #003033;
}
.menuList li {
  padding: 16px 8px;
  position: relative;
}
.menuList li::after {
  background: url(img/icon_arrow.svg) no-repeat center;
  position: absolute;
  right: 8px;
  content: '';
  width: 18px;
  height: 12px;
  top: 22px;
}
.menuList li.menuItem::after{
  background: none;
}
.menuList li.menuItem ul{
  display: none;
  margin-bottom: -16px;
  padding-top: 12px;
}
.menuList li.menuItem ul li:last-child{
  border-bottom: none;
}

.drawer_menu.sp_open .cta_btn {
  text-align: center;
  margin: 40px auto 0;
}

.bottomBtn {
  display: none;
}


/* PCヘッダーメニュー */
@media (max-width: 1280px) {
  .pc_header {
    display: none; }
  }
.navList {
  display: flex;
  margin-right: 20px;
}
.navList li {
  margin: 0px;
  padding: 0 10px;
}
.navList a {
  color: #003033;
}
.navList a:hover {
  border-bottom: 1px solid #003033;
}

/* 2023.11.28追加 第2階層用 */
.navList li:hover {
  cursor: pointer;
}
.navList li ul {
  top: 24px;
  left: 0;
  width: 100%;
  padding-top: 8px;
  background: rgba(255, 255, 255, 0.8);
}
.navList li ul li{
  width: 80%;
  margin: auto;
  padding: 8px 0;
  border-right: none;
}
.navList li ul li a{
  display: block;
  text-align: center;
}

@media (min-width: 1281px) and (max-width: 1400px) {
  .navList li {
    font-size: 12px;
  }
}

@media (max-width: 750px) {
  .drawer_menu {
    padding: 80px 0;
  }
}

/* 追従CTA SP用*/
@media (max-width: 1280px) {
  .bottomBtn {
    bottom: 0!important;
    width: 100%;
    max-width: 100vw;
    background: #ffffff;
    position: fixed;
    z-index: 99;
    border-top: 1px solid #bdc1c1;
    display: block;
  }
  .bottomBtn.active{
    bottom: 0;
    opacity: 1;
    margin-bottom: 0;
    max-width: 100vw;
  }
  .bottomBtn.active.hidden{
    bottom: -80px;
    opacity: 0;
  }
  .bottomBtn.active.down{
    bottom: -80px;
    opacity: 0;
  }
  .bottomBtn.active.hidden.down{
    bottom: -80px;
    opacity: 0;
  }
  .bottomBtn .flex {
    align-items: center;
    flex-wrap: nowrap;
    justify-content: space-evenly;
  }
  .bottomBtn_1 , .bottomBtn_2 {
    margin: 12px 4px;
    writing-mode: horizontal-tb;
    -webkit-writing-mode: horizontal-tb;
    -ms-writing-mode: horizontal-tb;
  }
  .bottomBtn_1.telWrap p {
    font-size: 12px;
  }
  .bottomBtn_1.telWrap .tel {
    margin-left: 16px;
    line-height: 1;
    font-size: 24px;
  }
  .bottomBtn_1.telWrap .tel::before {
    top: -2px;
    left: -16%;
    width: 24px;
    background-size: contain;
  }
}

@media (max-width: 480px) {
  .bottomBtn_1 , .bottomBtn_2 {
    margin: 4px 0 2px;
    padding: 2vw 1vw;
  }
}




/*****************************************
******************************************
ファーストビジュアル
******************************************
******************************************/
.fv {
  position: relative;
  margin-top: 60px;
}

.fv_img {
  position: relative;
}

.fv_text {
  position: absolute;
  width: 600px;
  bottom: 18%;
}

.fv_infoWrap {
  width: 100%;
  flex-wrap: nowrap;
  align-items: flex-end;
  position: absolute;
  bottom: 0;
}

h3 {
  font-size: 24px;
}

.fv_news {
  align-items: center;
  flex-wrap: nowrap;
  background: #F2F7F7;
  padding: 20px 0 20px 80px;
  width: 100%;
}

.fv_news h3 {
  color: #00A3AF;
  border-right: 1px solid #bdc1c1;
  padding-right: 20px;
  margin-right: 20px;
}

.fv_news a {
  width: inherit;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.news_list {
  align-items: center;
  flex-wrap: nowrap;
  margin-bottom: 3px;
}

.news_list .day {
  color: #bdc1c1;
  font-size: 0.9rem;
  margin-right: 20px;
}

.news_list .title {
  font-size: 0.9rem;
  max-width: 32vw;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-right: 20px;
}

.fv_times {
  background: #ffffff;
  padding: 3vw 5vw 2vw 4vw;
  max-width: 550px;
}

.fv_times table {
  margin-bottom: 12px;
}

.fv_times table tr {
  border-bottom: 1px solid #F2F7F7;
  height: 48px;
  line-height: 48px;
}

.fv_times table tr td {
  padding: 0 16px;
}

.fv_times table tr td.title {
  width: 80px;
  margin: 0 20px 0 0;
  display: block;
  padding: 0;
}

.telWrap {
  align-items: center;
}

.telWrap .tel {
  font-size: 32px;
  position: relative;
  margin-left: 40px;
}

.is-clear-style-tel {
  font-size: 24px!important;
}

.telWrap .tel::before {
  position: absolute;
  content: '';
  background: url(img/icon_tel.svg) no-repeat center;
  width: 20px;
  height: 30px;
  top: 12px;
  left: -14%;
}

.telWrap .is-clear-style-tel::before {
  top: 8px;
  left: -17%;
}




@media (max-width: 1200px) {
  .fv_infoWrap {
    position: inherit;
  }
  .fv_news {
    padding: 16px 0 16px 4vw;
  }
  .news_list .title {
    max-width: 100%;
  }
  .fv_times {
    display: none;
  }
  .fv_text {
    position: absolute;
    width: 300px;
    bottom: 18%;
  }
}

@media (max-width: 750px) {
  h3 {
    font-size: 18px;
  }

  .fv_news h3 {
    font-size: 18px;
    padding-right: 12px;
    margin-right: 12px;
  }
  .news_list .day {
    margin-right: 12px;
  }
}



/*****************************************
******************************************
カウンセリングルームをお探しの方へ
******************************************
******************************************/
#about {
  padding: 80px 0 0;
}

h2 {
  font-size: 32px;
  position: relative;
  z-index: 1;
  overflow-x: clip;
  margin: 0 calc(50% - 50vw) 56px;
  width: 100vw;
}

h2 .decoration {
  font-size: 160px;
  color: #F2F7F7;
  position: absolute;
  top: -290%;
  right: 35vw;
  z-index: -3;
}

h2 .text-white {
  color: white !important;
}

h2 .decoration_right {
  font-size: 160px;
  color: #F2F7F7;
  position: absolute;
  top: -290%;
  right: inherit;
  left: 35vw;
  z-index: -1;
  overflow: hidden;
}

.contentBox {
  align-items: center;
  flex-wrap: nowrap;
  justify-content: space-evenly;
}

.contentBox--is-clear-style {
  flex-wrap: wrap;
  align-items: unset;
}

.contentBox img  {
  width: 50%;
  max-width: 500px;
}

.contentBox .textBox {
  width: 50%;
  max-width: 500px;
}

.contentBox .textBox p {
  margin-bottom: 40px;
  line-height: 2;
}

.cbt-button {
  position: relative;
  display: inline-block;
  height: 80px;
  line-height: 80px;
}

.cbt-button::after {
  position: absolute;
  content: '';
  background: url(img/icon_arrow.svg) no-repeat center;
  width: 8px;
  height: 12px;
  border: 1px solid #00A3AF;
  border-radius: 50vw;
  padding: 20px 22px;
  top: 13px;
  right: -70px;
}

.cbt-button:hover {
  position: relative;
  text-decoration: underline;
}

.cbt-button-white-wrap {
  margin: auto;
  width: 100%;
  text-align: center;
  max-width: 300px;
}
.cbt-button-white {
  background-color: #00A3AF;
  color: white;
  padding: 20px;
  display: block;
}

.cbt-button-white:hover {
  opacity: 0.5;
}

@media (max-width: 750px) {
  #about {
    padding: 40px 0 0;
  }

  h2 {
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 40px;
  }

  h2 .decoration {
    font-size: 70px;
    top: -170%;
    right: inherit;
    left: 32px;
  }

  h2 .decoration_right {
    font-size: 70px;
    left: 16%;
  }

  h2 .decoration_right_2 {
    font-size: 70px;
    right: -8px;
    left: inherit;
  }

  #about h2 .decoration_2 {
    font-size: 70px;
    top: -170%;
    right: 32px;
  }

  .contentBox {
    display: block;
  }

  .contentBox img {
    max-width: inherit;
    margin: 0 calc(40% - 50vw) 24px;
    width: 100vw;
  }

  .contentBox .textBox{
    width: 90%;
    margin: 0 auto;
  }

  .contentBox .textBox p {
    margin-bottom: 16px;
  }

  .cbt-button::after {
    right: -65px;
  }

  .cbt-button::after {
    position: absolute;
    content: '';
    background: url(img/icon_arrow.svg) no-repeat center;
    width: 8px;
    height: 12px;
    border: 1px solid #00A3AF;
    border-radius: 50vw;
    padding: 18px 20px;
    top: 15px;
  }
}

/*****************************************
******************************************
認知行動療法カウンセリングセンターの特徴
******************************************
******************************************/

.feature_box {
  width: 30%;
  margin-bottom: 100px;
  position: relative;
}

.feature_box p{
  font-size: 18px;
  width: 300px;
  position: absolute;
  bottom: -74px;
  left: -44px;
  letter-spacing: 5px;
}

.feature_box p span{
  font-size: 40px;
  color: #00A3AF;
}

.feature_box img{
  width: 300px;
  height: auto;
  opacity: .4;
}

@media (max-width: 750px) {
  .feature_box {
    width: 90%;
    margin-bottom: 50px;
  }

  .feature_box p{
    font-size: 16px;
    width: 300px;
    position: absolute;
    bottom: -32px;
    left: -24px;
    letter-spacing: 5px;
  }

  .feature_box p span{
    font-size: 32px;
    color: #00A3AF;
  }

}


/*****************************************
******************************************
ご挨拶
******************************************
******************************************/
#greeting .wrap {
  justify-content: space-evenly;
}

#greeting .textBox {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  margin-bottom: 24px;
}

#greeting h3 {
  margin-left: 40px;
  font-size: 32px;
}

#greeting p {
  line-height: 2.5;
}

#greeting .name {
  text-align: end;
  margin-right: 24px;
  color: #005D63;
}

#greeting img {
  width: 50%;
  height: auto;
  max-width: 485px;
}

@media (max-width: 750px) {
  #greeting .wrap {
    display: block;
  }

  #greeting .textBox {
    margin: 0 auto 24px;
  }

  #greeting h3 {
    font-size: 24px;
  }

  #greeting p {
    font-size: 14px;
  }

  #greeting p .name {
    font-size: 16px;
  }

  #greeting img {
    width: 100%;
    margin: 0 auto;
  }
}


@media (max-width: 450px) {
  #greeting img {
    margin: 0 calc(50% - 50vw);
    width: 100vw;
  }
}


/*****************************************
******************************************
認知行動療法とは
******************************************
******************************************/
#cbt-flow {
}

.cbt-flow_text_wrap {
  text-align: center;
}

.cbt-flow_text_wrap p{
  background-color: #F2F7F7;
  text-align: center;
  padding: 20px;
  margin-bottom: 0 !important;
}




/*****************************************
******************************************
ご相談の流れ
******************************************
******************************************/
#flow {
  padding: 80px 0;
}

#flow img.forsp {
  width: 40vw;
  margin: 0 auto;
}

@media (max-width: 750px) {
  #flow {
    padding: 40px 0 0;
  }
}

@media (max-width: 450px) {
  #flow img.forsp {
    width: 80%;
  }
}




/*****************************************
******************************************
カウンセリングのご案内
******************************************
******************************************/

#counseling {
  padding-top: 100px;
  padding-bottom: 150px;
}

#counseling .wrap h2 .decoration {
  color: #ffffff;
}

.counseling_box {
  width: 300px;
  height: 300px;
  padding: 50px;
  margin-bottom: 100px;
  background-color: white;
  box-shadow: -4px -4px 12px 0px rgba(0, 48, 51, 0.08) inset;
  border-radius: 8px;
}

.counseling_box h4 {
  text-align: center;
  color: #00A3AF;
  font-size: 24px;
  margin-bottom: 20px;
}

.counseling_box p {
  margin-bottom: 40px;
}


.counseling_box a {
  color: #00A3AF;
}

.counseling_text {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 50px;
}

/*****************************************
******************************************
よくあるご質問
******************************************
******************************************/
.faq_list {
  max-width: 800px;
  margin: 0 auto;
}

.faq_list li {
  border-top: 1px dotted #00A3AF;
  padding: 24px 16px;
}

.faq_list li:last-child {
  border-bottom: 1px dotted #00A3AF;
}

.faq_list .q {
  align-items: center;
  margin-bottom: 8px;
  flex-wrap: nowrap;
}

.faq_list .q .en_text {
  font-size: 24px;
  margin-right: 24px;
}

.faq_list .a {
  margin-left: 40px;
  font-size: 16px;
}


@media (max-width: 750px) {
  .faq_list li {
    padding: 16px 8px;
  }

  .faq_list .q {
    margin-bottom: 16px;
  }

  .faq_list .q .en_text {
    font-size: 18px;
    margin-right: 16px;
  }
}

/*****************************************
******************************************
おしらせ
******************************************
******************************************/

#news {
  padding: 100px 0 150px 0;
}

/*****************************************
******************************************
パートナー
******************************************
******************************************/
.partner_img {
  width: 80%;
  height: auto;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.partner_img ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  width: 100%;
  height: auto;
}

.partner_img ul li{
  width: 30%;
  height: auto;
  text-align: center;
  margin-bottom: 50px;
}

.partner_img ul li a img{
  width: 80%;
  height: auto;
  margin-bottom: 20px;
}


/*****************************************
******************************************
アクセス
******************************************
******************************************/
.access {
  margin: 0 auto;
  padding: 0 1vw 20px;
}

.accessWrap {
}

.access_text {
  margin-bottom: 8px;
}

.access_times {
  padding: 24px 0;
}

@media (max-width: 1200px) {
  .access_times {
    display: block;
  }
}

@media (max-width: 750px) {
  .accessWrap {
    max-width: 350px;
    width: 90%;
  }

  .access_times {
    padding: 16px 0 40px;
    max-width: 340px;
  }

  .access_text {
    font-size: 14px;
  }

  .access_times table tr td.title {
    margin: 0;
  }

  .access_times table tr td {
    padding: 0 10px;
  }
}

@media (max-width: 600px) {
  .access {
    padding: 0;
  }

  .mapWrap {
    width: 100%;
  }

  iframe {
    width: 100%;
    max-height: 224px;
  }
}


/*****************************************
******************************************
フッター
******************************************
******************************************/
.sliderWrap {
  overflow: hidden;
  width: 100%;
  flex-wrap: nowrap;
}

.slider_1 , .slider_2 {
  display: inline-flex;
  flex: none;
  animation: slider 60s 1s linear infinite;
}

.slider_img {
  flex: none;
  padding: 0 2px;
}

.slider_img img {
  max-width: 398px;
}

@keyframes slider {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

.link_list {
  margin-bottom: 24px;
}

.link_list li img {
  max-width: 350px;
  margin: 0 20px;
}

.sns_list {
  align-items: center;
}

.sns_list li {
  margin-right: 8px;
}

.sns_list li:last-child {
  margin-right: 0;
}

.footer_menu {
  font-size: 13px;
}

.footer_menu ul li {
  margin: 0 20px;
}


@media (max-width: 750px) {
  .slider_img img {
    max-width: 180px;
  }

  .link_list li img {
    margin: 4px 10px;
    max-width: 295px;
  }

  .sns_list {
    margin-bottom: 32px;
  }

  .footer_menu {
    display: block;
  }

  .footer_menu ul {
    justify-content: space-evenly;
    margin-bottom: 16px;
  }

  .footer_menu ul li {
    margin: 0;
  }

  .footer_menu p {
    text-align: center;
  }
}
@media (max-width: 750px) {
  .partner_img {
    width: 80%;
    height: auto;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }

  .partner_img ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: baseline;
    width: 100%;
    height: auto;
  }

  .partner_img ul li{
    width: 100%;
    height: auto;
    text-align: center;
    margin-bottom: 50px;
  }

  .partner_img ul li a img{
    width: 80%;
    height: auto;
    margin: 20px auto;
  }

}
