@charset "UTF-8";
/* ━━━━━━━━━━━━━━━━

 ■Base

━━━━━━━━━━━━━━━━ */
/* ━━━━━━━━━━━━━━━━

 ■ユーティリティ

━━━━━━━━━━━━━━━━ */
/**
 * Display
 */
/*==================================
* media
==================================*/
@media screen and (max-width: 639px) {
  .u-hidden-sp {
    display: none !important;
  }
}
@media screen and (min-width: 640px) {
  .u-hidden-pc {
    display: none !important;
  }
}
/* ━━━━━━━━━━━━━━━━

 ■コンポーネント

━━━━━━━━━━━━━━━━ */
/*
　コンタクト-02
================================*/
.contact-02 {
  position: relative;
  background: url(https://nihongo-kotonoha.net/wp-content/uploads/2025/08/contact-bg-01.jpg) no-repeat center center/cover;
  width: 100%;
  height: clamp(900px, 164.0625vw, 1050px);
}

.contact-02::before {
  position: absolute;
  content: "";
  width: 100%;
  height: clamp(900px, 164.0625vw, 1050px);
  background-color: rgba(63, 64, 66, 0.7);
}

.contact-02__inner {
  padding-top: 100px;
}

.contact-02__text {
  position: relative;
  width: 95%;
  margin: 0 auto;
  text-align: center;
  color: #fff;
  line-height: 1.5;
}

.contact-02__text span {
  position: absolute;
  width: 100%;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  font-size: clamp(60px, 18.75vw, 120px);
  font-family: "Arial", "Century Gothic", sans-serif;
  font-weight: bold;
  color: rgba(240, 245, 247, 0.3);
  opacity: 0.3;
  line-height: 1;
}

.contact-02__text h2 {
  font-size: clamp(24px, 7.8125vw, 50px);
}

.contact-02__text h3 {
  margin-top: 20px;
  font-size: clamp(20px, 4.375vw, 28px);
}

.contact-02__buttons {
  margin-top: 30px;
  margin-left: auto;
  margin-right: auto;
}

.contact-02__buttons a {
  text-decoration: none;
}

.contact-02__buttons__mail,
.contact-02__buttons__sns {
  position: relative;
  width: 90%;
  background-color: #fff;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
  text-align: center;
}

.contact-02__buttons__sns a::after,
.contact-02__buttons__mail a::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.contact-02__buttons__sns {
  margin-top: 20px;
}

.contact-02__buttons p {
  color: #333;
}

.contact-02__buttons__title {
  margin: 0;
  padding: 5px 0;
  font-size: clamp(36px, 7.03125vw, 45px);
  font-family: Arial, Helvetica, sans-serif;
  color: #fff !important;
  background-color: #9acd32;
}

.contact-02__buttons__mail img {
  width: clamp(60px, 11.71875vw, 75px);
  height: clamp(45px, 9.375vw, 60px);
  margin-top: clamp(10px, 3.90625vw, 25px);
}

.contact-02__buttons__sns img {
  width: 100%;
  margin: 10px 0 0;
}

.c-icon-hidden {
  display: none;
}

@media screen and (max-width: 639px) {
  .contact-02__buttons__mail {
    margin-top: 20px;
  }
}
@media screen and (min-width: 640px) {
  .contact-02 {
    height: 660px;
  }
  .contact-02::before {
    height: 660px;
  }
  .contact-02__inner {
    max-width: 1280px;
    margin: 0 auto;
  }
  .contact-02__text span {
    font-size: clamp(120px, 14.0625vw, 180px);
  }
  .contact-02__text h2 {
    margin: 0;
    font-size: clamp(40px, 4.296875vw, 55px);
  }
  .contact-02__text h3 {
    margin-top: 20px;
    font-size: clamp(24px, 2.34375vw, 30px);
  }
  .contact-02__buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
  }
  .contact-02__buttons__sns,
  .contact-02__buttons__mail {
    width: 45%;
    padding: 10px;
    transition: 0.3s cubic-bezier(0.45, 0, 0.55, 1);
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
  .contact-02__buttons__title {
    font-size: clamp(40px, 3.515625vw, 45px);
  }
  .contact-02__buttons__sns {
    margin-top: 0;
  }
  .contact-02__buttons__sns::after,
  .contact-02__buttons__mail::after {
    background: #9acd32;
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: 0.3s cubic-bezier(0.45, 0, 0.55, 1);
    z-index: -1;
  }
  .contact-02__buttons__sns:hover::after,
  .contact-02__buttons__mail:hover::after {
    transform: scale(1, 1);
  }
  .contact-02__buttons__sns:hover p,
  .contact-02__buttons__mail:hover p {
    color: #fff;
  }
  .contact-02__buttons__sns:hover .c-icon-hidden,
  .contact-02__buttons__mail:hover .c-icon-hidden {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  .contact-02__buttons__sns:hover .c-icon-appare,
  .contact-02__buttons__mail:hover .c-icon-appare {
    display: none;
  }
  .contact-02__buttons__mail img {
    width: clamp(60px, 5.859375vw, 75px);
    height: clamp(45px, 4.6875vw, 60px);
    margin: clamp(1px, 1.5625vw, 20px) 0 0;
  }
  .contact-02__buttons__sns img {
    width: 70%;
  }
}
/*
追従ボタン
==============================*/
.c-follow-button {
  display: none;
}

@media screen and (min-width: 640px) {
  .c-follow-button {
    position: fixed;
    display: block;
    bottom: 100px;
    right: -50px;
    transition: all 0.3s ease-in-out;
    z-index: 10;
  }
  .c-follow-button__image {
    width: 50px;
    height: 200px;
    padding: 10px 8px;
    background-color: #32A03C;
    border-radius: 10px 0 0 10px;
    transition: 0.3s;
    text-align: center;
  }
  .c-follow-button__image img {
    width: 30px;
  }
  .c-follow-button__image p {
    writing-mode: vertical-rl;
    font-size: 24px;
    color: #E6F5AF;
    font-weight: bold;
    letter-spacing: 0.3em;
    display: inline-block;
    font-family: Arial, Helvetica, sans-serif;
  }
  .c-follow-button.is-active {
    right: 0;
  }
  .c-follow-button:hover .c-follow-button__image {
    background-color: #569DB6;
  }
  .c-follow-button:hover .c-follow-button__image p {
    color: #fff;
  }
}
/*
お問い合わせフォーム
==============================*/
.wpcf7-form label {
  font-weight: bold;
}

.wpcf7 input[type=text],
.wpcf7 input[type=email] {
  width: 100%;
  margin-top: 10px;
  border-radius: 50px;
}

.wpcf7-form .required-label {
  margin-left: 5px;
  font-size: 12px;
  color: #ff0000;
}

span.wpcf7-not-valid-tip {
  color: #ff0000 !important;
}

.wpcf7-form-control.wpcf7-radio {
  display: block;
  margin-top: 10px;
}

.wpcf7-textarea {
  margin-top: 10px;
}

.wpcf7-list-item-label a {
  color: #333;
}

.wpcf7-submit:disabled {
  background-color: #999;
}

.wpcf7-submit {
  background-color: #32A03C;
}

/*
入力確認
==============================*/
.c-confirm-box .wpcf7-form label span {
  font-weight: normal;
}

.wpcf7-form-control.wpcf7-previous {
  padding: 5px 40px;
  color: #fff;
  background-color: #569DB6;
  border: none;
  border-radius: 50px;
  transition: all 0.3s;
}

.wpcf7-form-control.wpcf7-previous:hover {
  opacity: 0.8;
}

.wpcf7-form-control.wpcf7-submit {
  padding: 5px 40px;
  border-radius: 50px;
}

.c-confirm-box .wpcf7-spinner {
  display: none;
}

/*
I phone 対策
==============================*/
input[type=submit],
input[type=button] {
  border-radius: 10px;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}

input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}

input[type=checkbox] {
  transform: scale(1.3);
  margin-right: 0.5em;
}

/* ━━━━━━━━━━━━━━━━

 ■レイアウト

━━━━━━━━━━━━━━━━ */
/*
ヘッダー
==============================*/
html {
  scroll-padding-top: 100px;
}

.l-header__content {
  background-color: #f2ebeb;
}

.p-drop-nav {
  background-color: #f2ebeb;
}

.p-global-nav .c-navbar__item a {
  padding: 16px 10px;
}

.c-header-content {
  display: flex;
  align-items: center;
}

.c-header-content a:nth-child(1) img {
  width: 50px;
  height: 50px;
  transition: 0.3s;
}

.c-header-content a:nth-child(2) {
  display: inline-block;
  margin-left: 15px;
  padding: 8px 16px;
  font-size: 25px;
  font-size: clamp(22px, 1.953125vw, 25px);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  color: #E6F5AF;
  text-decoration: none;
  background-color: #32A03C;
  border-radius: 50px;
  transition: all 0.3s;
}

.c-header-content a:nth-child(2) img {
  width: 25px;
  height: 25px;
  margin-right: 10px;
}

.c-header-content a:nth-child(1):hover {
  opacity: 0.8;
}

.c-header-content a:nth-child(2):hover {
  color: #fff;
  background-color: #569DB6;
}

.l-contents__main .p-section-front-page-content {
  padding-top: 0;
}

/*
メインビジュアル
==============================*/
.l-main-visual {
  padding-top: 0;
}

.l-main-visual .c-container {
  margin-top: 150px;
}

.l-main-visual h2 {
  margin-bottom: 16px;
  font-size: clamp(32px, 6.25vw, 40px);
  background-color: transparent;
  border-left: none;
  color: #000033;
  text-shadow: #fff 2px 2px 2px, #fff -2px -2px 2px, #fff -2px 2px 2px, #fff 2px -2px 2px, #fff 2px 0px 2px, #fff -2px 0px 2px, #fff 0px 2px 2px, #fff 0px -2px 2px;
}

.l-main-visual h3 {
  margin-top: 0;
  font-size: clamp(20px, 4.0625vw, 26px);
  color: #000033;
  text-shadow: #fff 2px 2px 2px, #fff -2px -2px 2px, #fff -2px 2px 2px, #fff 2px -2px 2px, #fff 2px 0px 2px, #fff -2px 0px 2px, #fff 0px 2px 2px, #fff 0px -2px 2px;
  border-bottom: none;
}

@media screen and (min-width: 640px) {
  .l-main-visual .c-container {
    margin-top: 80px;
    margin-right: clamp(20px, 6.25vw, 80px);
  }
  .l-main-visual h2 {
    font-size: clamp(42px, 5.46875vw, 70px);
  }
  .l-main-visual h3 {
    font-size: clamp(28px, 3.125vw, 40px);
  }
}
@media screen and (min-width: 1024px) {
  .l-main-visual .c-container {
    margin-top: 50px;
    margin-right: clamp(60px, 13.3333333333vw, 200px);
  }
}
/*
追従ボタン
==============================*/
.l-footer--default .l-footer-widget-area {
  padding-top: 0;
  padding-bottom: 0;
}

.l-footer-widget-area .c-fluid-container {
  padding-left: 0;
  padding-right: 0;
}

.c-copyright--inverse {
  color: #333;
  background-color: #f2ebeb;
}

/* ━━━━━━━━━━━━━━━━

 ■プロジェクト

━━━━━━━━━━━━━━━━ */
/*
リード
==============================*/
.p-top__lead {
  text-align: center;
}

.p-top__lead h2 {
  background-color: transparent;
}

.p-top__lead h2 {
  border-left: none;
}

.p-top__lead h3 {
  border-bottom: none;
}

.p-top__lead p {
  margin-top: 0;
}

@media screen and (min-width: 640px) {
  .p-top__lead h2,
  .p-top__lead h3 {
    font-size: clamp(28px, 2.734375vw, 35px);
  }
  .p-top__lead p {
    font-size: clamp(20px, 1.71875vw, 22px);
  }
}
/*
私ができるレッスン
==============================*/
.p-my-lesson .smb-section__background-text__text {
  position: relative;
  z-index: 10;
}

.p-my-lesson__goal {
  width: 95%;
}

/*
動画
==============================*/
.p-movie .smb-section__inner .c-container {
  margin-top: 150px;
}

.p-movie .smb-section__inner .c-container span span {
  color: #ffa51f !important;
  line-height: 1.5;
}

@media screen and (max-width: 639px) {
  .p-movie .smb-section__inner .c-container span span {
    font-size: clamp(42px, 8.125vw, 52px) !important;
  }
}
@media screen and (min-width: 640px) {
  .p-movie .smb-section__inner .c-container {
    margin-right: 0;
  }
}
/*
Japanese Lesson Course
==============================*/
/*
コース紹介
==============================*/
.p-course__gallery .smb-panels__item__body {
  padding: 0 0 15px 0;
}

.p-course__gallery .smb-panels__item__body img {
  width: 100% !important;
  margin-bottom: 10px;
}

/*
流れ
==============================*/
.p-flow__item .smb-panels__item__body {
  padding: 0;
}

.p-flow__item .smb-box__background {
  border: none;
}

/*
料金表
==============================*/
.p-price__table .smb-pricing-table__item {
  padding-left: 5px;
  padding-right: 5px;
}

.p-lesson__price {
  justify-content: center;
  text-align: center;
}

/*
ページタイトル
==============================*/
.c-page-header__title {
  text-shadow: #000 3px 3px 3px, #000 -3px -3px 3px, #000 -3px 3px 3px, #000 3px -3px 3px, #000 3px 0px 3px, #000 -3px 0px 3px, #000 0px 3px 3px, #000 0px -3px 3px;
}