@charset "utf-8";

/* << INDEX >> ----------------------------------------------------------------
*
* @ 共通
* @ トップページ
* @ ページ｜お客様の声
* @ ページ｜スタッフ紹介
* @ サイトマップ
* @ 404
* @ 検索
* @ 投稿｜詳細
* @ アーカイブ
*
* -------------------------------------------------------------------------- */

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
* @ 共通
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

/* @ カテゴリーラベル
---------------------------------------------------------------------------- */
.post-data .cat_label {
  display: inline-block;
  width: 120px;
  padding: 4px 0;
  margin-left: 1em;
  color: #fff;
  border-radius: 3px;
  font-size: 0.875em;
  text-align: center;
}

/* @ カラム分割
---------------------------------------------------------------------------- */
.flex_cols {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

/* >>>> 2カラム分割 */
@media screen and (min-width: 481px) {
  .col2 {
    width: calc(((100% - 15px) / 2) - 0.1px);
    margin: 0 15px 15px 0;
  }

  .col2:nth-of-type(2n) {
    margin-right: 0;
  }
}

@media screen and (max-width: 480px) {
  .col2 {
    width: 100%;
    margin: 0 auto 15px;
  }
}

/* >>>> 3カラム分割 */
@media screen and (min-width: 769px) {
  .col3 {
    width: calc(((100% - 15px * 2) / 3) - 0.1px);
    margin: 0 15px 15px 0;
  }

  .col3:nth-of-type(3n) {
    margin-right: 0;
  }
}

@media screen and (min-width: 481px) and (max-width: 768px) {
  .col3 {
    width: calc(((100% - 15px) / 2) - 0.1px);
    margin: 0 15px 15px 0;
  }

  .col3:nth-of-type(2n) {
    margin-right: 0;
  }
}

@media screen and (max-width: 480px) {
  .col3 {
    width: 100%;
    margin: 0 auto 15px;
  }
}

/* >>>> 4カラム分割 */
@media screen and (min-width: 769px) {
  .col4 {
    width: calc(((100% - 15px * 3) / 4) - 0.1px);
    margin: 0 15px 15px 0;
  }

  .col4:nth-of-type(4n) {
    margin-right: 0;
  }
}

@media screen and (min-width: 481px) and (max-width: 768px) {
  .col4 {
    width: calc(((100% - 15px) / 2) - 0.1px);
    margin: 0 15px 15px 0;
  }

  .col4:nth-of-type(2n) {
    margin-right: 0;
  }
}

@media screen and (max-width: 480px) {
  .col4 {
    width: 100%;
    margin: 0 auto 15px;
  }
}

/* @ 投稿リスト
---------------------------------------------------------------------------- */
.news-list {
  background-color: #fff;
}

.news-list ul {
  margin: 0;
  padding: 0;
}

.news-list ul li {
  position: relative;
  list-style-type: none;
  margin: 0;
  padding: 0;
  transition: 0.3s;
}

.news-list ul li:not(.nolink):hover {
  opacity: 0.6;
}

.news-list ul li:not(.nolink)::after {
  content: '';
  position: absolute;
  right: 10px;
  bottom: 50%;
  transform: translateY(50%);
  display: inline-block;
  margin-left: 16px;
  mask: url("../img/arrow01.webp") no-repeat center center / contain;
  background: #222222;
  width: 24px;
  height: 8px;
}

.news-list ul li dl {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: 0;
  padding: 32px 40px 32px 10px;
  border-bottom: dotted 1px #ccc;
}

.news-list ul li dl dt {
  width: 140px;
  margin: 0;
  padding: 0;
  font-family: "Yuji Syuku";
  font-weight: normal;
  font-size: 16px;
}

.news-list ul li dl dd {
  margin: 0;
  padding: 0;
  width: calc(100% - 140px);
}

@media screen and (max-width: 768px) {
  .news-list ul li dl dd {
    margin-top: 5px;
    width: 100%;
  }
}

.news-list .cat_label {
  margin-right: 10px;
  width: 120px;
}

.news-list .cat_label span {
  display: block;
  padding: 3px 7px;
  background-color: #aaa;
  color: #fff;
  text-align: center;
  font-size: 0.875rem;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.news-list ul li dl dd a {
  text-decoration: none;
  color: #222;
}

.news-list ul li dl dd a::after {
  content: none;
}

/* @ 画像キャプション
---------------------------------------------------------------------------- */
.wp-caption {
  width: auto !important;
}

.wp-caption .wp-caption-text {
  margin: 5px 0;
  text-align: center;
}

/* @ その他
---------------------------------------------------------------------------- */
.wp-pagenavi {
  clear: both;
}

.txtC {
  text-align: center;
}

.txtR {
  text-align: right;
}

.fw-m {
  font-weight: 500;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
* @ トップページ
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.index-mv {
  padding-bottom: 100px;
}

@media screen and (max-width: 768px) {
  .index-mv {
    padding-bottom: 80px;
  }
}

@media screen and (max-width: 480px) {
  .index-mv {
    padding-bottom: 40px;
  }
}

.index-mv .mv-wrap {
  display: grid;
  grid-template-columns: min(45vw, 640px) 1fr;
  gap: 8.5%;
  margin: 0 auto;
  max-width: 1920px;
}

@media screen and (max-width: 768px) {
  .index-mv .mv-wrap {
    display: block;
    padding: min(18.75vw, 90px) 20px 0;
  }
}

.index-mv .mv-wrap .catch {
  margin-top: min(8.333vw, 100px);
}

@media screen and (max-width: 768px) {
  .index-mv .mv-wrap .catch {
    margin-top: 0;
  }
}

.index-mv .mv-wrap .catch .txt {
  margin-left: min(8.333vw, 160px);
  max-width: 470px;
}

@media screen and (max-width: 768px) {
  .index-mv .mv-wrap .catch .txt {
    margin-left: 0;
    max-width: 100%;
  }
}

.index-mv .mv-wrap .catch .txt .ttl {
  margin: 0 0 36px;
  font-family: "Yuji Syuku";
  font-size: min(3.75vw, 3rem);
  letter-spacing: 0.05em;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .index-mv .mv-wrap .catch .txt .ttl {
    font-size: max(6.666vw, 1.875rem);
  }
}

@media screen and (max-width: 320px) {
  .index-mv .mv-wrap .catch .txt .ttl br {
    display: none;
  }
}

.index-mv .mv-wrap .catch .txt .sub {
  margin: 0;
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  color: #444;
}

@media screen and (max-width: 480px) {
  .index-mv .mv-wrap .catch .txt .sub {
    font-size: 1rem;
  }
}

.index-mv .mv-wrap .catch .img {
  margin-top: max(-10vw, -120px);
  width: min(29.375vw, 564px);
}

@media screen and (max-width: 768px) {
  .index-mv .mv-wrap .catch .img {
    display: none;
  }
}

.index-mv .mv-wrap .img1 {
  padding-right: 60px;
}

@media screen and (max-width: 768px) {
  .index-mv .mv-wrap .img1 {
    margin-top: 20px;
    margin-left: auto;
    padding-right: 0;
    max-width: 65%;
  }
}

.index-mv .mv-wrap .img2 {
  margin-top: max(-20.833vw, -120px);
  max-width: 65%;
}

@media screen and (min-width: 769px) {
  .index-mv .mv-wrap .img2 {
    display: none;
  }
}

.index-mv .recommend-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  align-items: center;
  padding: 0;
  margin: 0;
  list-style: none;
}

@media screen and (max-width: 1024px) {
  .index-mv .recommend-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .index-mv .recommend-list {
    margin-top: 40px;
  }
}

@media screen and (max-width: 480px) {
  .index-mv .recommend-list {
    grid-template-columns: repeat(1, 1fr);
  }
}

.index-mv .recommend-list li {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 20px 0;
  margin-bottom: 0;
  font-size: 1.25rem;
  font-weight: bold;
  font-family: "Zen Old Mincho";
  letter-spacing: 0.05em;
  text-align: center;
  color: #FAF7E8;
  background-color: #057758;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media screen and (max-width: 1440px) {
  .index-mv .recommend-list li {
    font-size: 1.125rem;
  }
}

@media screen and (max-width: 768px) {
  .index-mv .recommend-list li {
    padding: 20px;
  }
}

@media screen and (max-width: 376px) {
  .index-mv .recommend-list li {
    padding: 20px 10px;
    font-size: 1rem;
    letter-spacing: 0;
  }
}

.index-strength {
  padding-bottom: 100px;
}

@media screen and (max-width: 768px) {
  .index-strength {
    padding-bottom: 80px;
  }
}

@media screen and (max-width: 480px) {
  .index-strength {
    padding-bottom: 48px;
  }
}

.index-strength .strength-box {
  padding: 40px 32px;
  background: linear-gradient(130deg, #f5faf6 0%, #fafaf5 26.74%, #fff9f2 34.76%, #fafaf5 42.85%, #f5faf6 100%);
  border-top: 4px solid #057758;
  border-bottom: 4px solid #057758;
}

@media screen and (max-width: 480px) {
  .index-strength .strength-box {
    padding: 32px 20px;
  }
}

@media screen and (max-width: 480px) {
  .index-strength .strength-box .p.ttl1 span {
    font-size: 1.25rem;
    /* 20px */
  }
}

.index-strength .strength-box .txt {
  margin: 0;
  text-align: center;
  line-height: 1.8;
  font-size: 1.625rem;
  /* 26px */
  font-weight: bold;
  font-family: "Zen Old Mincho";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media screen and (max-width: 480px) {
  .index-strength .strength-box .txt {
    line-height: 1.5;
    font-size: 1.125rem;
  }
}

.index-concept {
  position: relative;
  padding: 80px 0;
  margin-top: 0;
  background: url(../img/index-concept-bg.webp) no-repeat center center / cover;
}

@media screen and (max-width: 768px) {
  .index-concept {
    padding-top: 0;
  }
}

.index-concept .wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

@media screen and (max-width: 768px) {
  .index-concept .wrap {
    display: block;
  }
}

.index-concept .wrap .Lbox {
  margin-top: -140px;
  order: 2;
}

@media screen and (max-width: 768px) {
  .index-concept .wrap .Lbox {
    margin: 0 0 -60px;
    max-width: 100%;
    transform: translateY(-60px);
  }
}

.index-concept .wrap .Rbox {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media screen and (max-width: 768px) {
  .index-concept .wrap .Rbox {
    margin-top: 48px;
  }
}

.index-concept .wrap .Rbox .sub {
  margin: 0 0 24px;
  font-family: "Zen Old Mincho";
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 480px) {
  .index-concept .wrap .Rbox .sub br {
    display: none;
  }
}

.index-concept .wrap .Rbox p:not(.sub) {
  font-size: 1.125rem;
  /* 18px */
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.common-checklist {
  position: relative;
  padding: 64px 0 80px;
  border-top: 4px solid #057758;
  border-bottom: 4px solid #057758;
  background: url("../img/common-checklist-bg.webp") no-repeat center center / cover;
}

.common-checklist::before,
.common-checklist::after {
  content: '';
  position: absolute;
}

.common-checklist::before {
  top: 0;
  left: 0;
  width: 248px;
  height: 286px;
  background: url("../img/common-checklist-deco1.webp") no-repeat right center / cover;
}

.common-checklist::after {
  bottom: 0;
  right: 0;
  width: 245px;
  height: 290px;
  background: url("../img/common-checklist-deco2.webp") no-repeat left center / cover;
}

@media screen and (max-width: 768px) {

  .common-checklist::before,
  .common-checklist::after {
    width: 180px;
    height: 185px;
    opacity: .3;
  }
}

@media screen and (max-width: 480px) {

  .common-checklist::before,
  .common-checklist::after {
    width: 160px;
    height: 166px;
  }
}

.common-checklist .wrap {
  position: relative;
  z-index: 1;
}

.common-checklist .wrap .check-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 64px;
  list-style: none;
  padding: 0;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media screen and (max-width: 768px) {
  .common-checklist .wrap .check-list {
    grid-template-columns: 1fr;
  }
}

.common-checklist .wrap .check-list li {
  display: flex;
  align-items: flex-start;
  padding-bottom: 16px;
  margin-bottom: 16px;
  font-size: 1.25rem;
  font-weight: 500;
  border-bottom: 1px dotted #057758;
}

@media screen and (max-width: 480px) {
  .common-checklist .wrap .check-list li {
    font-size: 1.125rem;
  }
}

.common-checklist .wrap .check-list li::before {
  content: '\f14a';
  display: block;
  font-size: 1.5rem;
  color: #057758;
  margin-right: 16px;
  font-weight: normal;
  font-family: 'Font Awesome 5 Solid';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media screen and (max-width: 480px) {
  .common-checklist .wrap .check-list li::before {
    font-size: 1.25rem;
    margin-right: 10px;
  }
}

p.ttl1 {
  margin: 0 0 32px;
  text-align: center;
}

p.ttl1 span {
  position: relative;
  display: inline-block;
  padding: 0 30px;
  font-family: "Zen Old Mincho";
  font-weight: 900;
  font-size: 2rem;
  letter-spacing: 0.05em;
  color: #057758;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media screen and (max-width: 768px) {
  p.ttl1 span {
    font-size: 1.75rem;
  }
}

@media screen and (max-width: 480px) {
  p.ttl1 span {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 480px) {
  p.ttl1 span {
    padding: 0;
  }
}

p.ttl1 span::before,
p.ttl1 span::after {
  content: '';
  position: absolute;
  top: 0;
  background: url("../img/ttl1-deco.webp") no-repeat center center / contain;
  width: 28px;
  height: 100%;
}

@media screen and (max-width: 480px) {

  p.ttl1 span::before,
  p.ttl1 span::after {
    content: none;
  }
}

p.ttl1 span::before {
  left: -6px;
}

p.ttl1 span::after {
  right: 0;
  transform: scale(-1, 1);
}

p.ttl1.slash-none span::before,
p.ttl1.slash-none span::after {
  content: none;
}

.index-features {
  padding-bottom: 160px;
  position: relative;
  background:
    url("../img/index-features-bg1.webp") no-repeat top left,
    url("../img/index-features-bg2.webp") no-repeat bottom right,
    #057758;
  color: #FAF7E8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .index-features {
    background-size: contain;
  }
}

.index-features .features-ttl {
  padding: 40px 10px;
  margin-top: 0;
  font-family: "Zen Old Mincho";
  font-weight: 900;
  font-size: 2rem;
  text-align: center;
  color: #222;
  background: url("../img/features-ttl-bg.webp") no-repeat center center / cover;
}

@media screen and (min-width: 769px),
screen and (max-width: 320px) {
  .index-features .features-ttl br {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .index-features .features-ttl {
    font-size: 1.75rem;
  }
}

@media screen and (max-width: 480px) {
  .index-features .features-ttl {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 320px) {
  .index-features .features-ttl {
    padding: 40px 20px;
  }
}

.index-features .features-ttl span {
  color: #057758;
}

.index-features .wrap h2 {
  padding-top: 32px;
}

.index-features .wrap h2 span {
  color: rgba(242, 239, 222, 0.6);
}

.index-features .wrap h2 span::before,
.index-features .wrap h2 span::after {
  background: #F2EFDE;
}

.index-features .wrap .message-box {
  position: relative;
}

.index-features .wrap .message-box::after {
  content: '';
  position: absolute;
  top: -120px;
  right: -225px;
  width: 278px;
  height: 170px;
  background: url("../img/index-features-deco1.webp") no-repeat center center / contain;
}

@media screen and (max-width: 768px) {
  .index-features .wrap .message-box::after {
    content: none;
  }
}

.name-box span {
  display: inline-block;
  font-family: "Zen Old Mincho";
  font-weight: 900;
}

.name-box span.info {
  margin-right: 15px;
}

.name-box span.name {
  font-size: 1.75rem;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 480px) {
  .name-box span.name {
    font-size: 1.5rem;
  }
}

.index-features .name-box {
  text-align: right;
}

@media screen and (max-width: 480px) {
  .index-features .name-box {
    text-align: left;
  }
}

.commitment-box {
  position: relative;
  margin-top: 40px;
  padding: 60px 100px;
  background: url("../img/commitment-bg.webp") no-repeat center center / cover;
}

@media screen and (max-width: 768px) {
  .commitment-box {
    margin: 40px auto 0;
    padding: min(54.166vw, 325px) min(8vw, 48px) 32px;
    max-width: 600px;
  }
}

.commitment-box::before {
  content: '';
  display: inline-block;
  position: absolute;
  top: 20px;
  left: 60px;
  background: url("../img/commitment1.webp") no-repeat center center / contain;
  width: 471px;
  height: 314px;
  mix-blend-mode: screen;
}

@media screen and (max-width: 768px) {
  .commitment-box::before {
    top: min(5vw, 30px);
    left: min(5vw, 30px);
    width: min(70vw, 420px);
    height: min(46.8336vw, 281px);
  }
}

.commitment-box .Lbox {
  position: relative;
  z-index: 1;
}

.commitment-box .Lbox .sub {
  margin: 0 0 6px;
  text-transform: uppercase;
  font-family: "Yuji Syuku";
  color: #af7914;
}

.commitment-box .Lbox .ttl {
  margin: 6px 0 42px;
  font-weight: 500;
  font-size: 2.5rem;
  letter-spacing: 0.08em;
  line-height: 1.2;
  color: #057758;
}

@media screen and (max-width: 768px) {
  .commitment-box .Lbox .ttl {
    font-size: min(6.667vw, 2.5rem);
  }
}

.commitment-box .Lbox .link-btn {
  margin-top: 42px;
}

.commitment-box .Rbox {
  position: absolute;
  top: 0;
  right: 0;
  width: min(47vw, 564px);
}

@media screen and (max-width: 768px) {
  .commitment-box .Rbox {
    max-width: 568px;
    width: 94.667%;
  }
}

.index-reason {
  padding: 100px 0 68px;
  border-bottom: 1px solid #C6C7C7;
  background: #F5FAF6;
}

@media screen and (max-width: 480px) {
  .index-reason {
    padding: 80px 0 48px;
  }
}

.index-reason .wrap .reason-list {
  margin: 40px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: my-counter;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.index-reason .wrap .reason-list li {
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 40px;
  margin-bottom: 0;
  padding: 32px 0;
  border-top: 4px solid #057758;
}

@media screen and (max-width: 768px) {
  .index-reason .wrap .reason-list li {
    grid-template-columns: 1fr;
  }
}

.index-reason .wrap .reason-list li .Lbox {
  padding-right: 40px;
  border-right: 1px solid #057758;
}

@media screen and (max-width: 768px) {
  .index-reason .wrap .reason-list li .Lbox {
    padding-right: 0;
    border-right: none;
  }
}

.index-reason .wrap .reason-list li .Rbox::before {
  counter-increment: my-counter;
  content: "Reason" counter(my-counter, decimal-leading-zero);
  padding: 2px 16px 6px;
  background: #057758;
  font-family: "Yuji Syuku";
  font-size: 1.125rem;
  line-height: 1;
  color: #faf7e8;
}

.index-reason .wrap .reason-list li .Rbox .ttl {
  margin: 24px 0 16px;
  font-family: "Zen Old Mincho";
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
}

.index-reason .wrap .reason-list li .Rbox .txt-box> :first-child {
  margin-top: 0;
}

.index-reason .wrap .reason-list li .Rbox .txt-box> :last-child {
  margin-bottom: 0;
}


.index-menu {
  padding: 100px 0;
  border-bottom: 1px solid #C6C7C7;
}

@media screen and (max-width: 480px) {
  .index-menu {
    padding: 80px 0;
  }
}

.index-menu .wrap .menu-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
}

@media screen and (max-width: 768px) {
  .index-menu .wrap .menu-wrap {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 768px) {
  .index-menu .wrap .menu-wrap .Lbox {
    max-width: 75%;
  }
}

.index-menu .wrap .menu-wrap .Rbox .sub {
  margin: 0 0 24px;
  font-family: "Zen Old Mincho";
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 480px) {
  .index-menu .wrap .menu-wrap .Rbox .sub br {
    display: none;
  }
}

.index-menu .wrap .course-list {
  margin-top: 48px;
}

.course-list .course-wrap {
  padding: 40px 32px;
  background:
    url("../img/index-menu-deco.webp") no-repeat bottom right 16px / 200px auto,
    linear-gradient(130deg, #f5faf6 0%, #fafaf5 26.74%, #fff9f2 34.76%, #fafaf5 42.85%, #f5faf6 100%);
  border-top: 4px solid #057758;
  border-bottom: 4px solid #057758;
}

.course-list .course-wrap+.course-wrap {
  margin-top: 80px;
}

@media screen and (max-width: 768px) {
  .course-list .course-wrap {
    background-size: 180px auto;
  }
}

@media screen and (max-width: 480px) {
  .course-list .course-wrap {
    padding: 32px 20px;
    background-size: 120px auto;
    background-position: bottom right 4px;
  }
}

.course-list .course-wrap .ttl1 {
  color: #057758;
}

.course-list .course-wrap .course-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.course-list .course-wrap.col1 .course-box {
  grid-template-columns: 1fr;
}

@media screen and (max-width: 768px) {
  .course-list .course-wrap .course-box {
    display: flex;
    flex-direction: column-reverse;
    gap: 40px;
  }
}

.course-list .course-wrap .course-box .Lbox .ttl {
  margin: 0 0 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #C6C7C7;
  font-family: "Zen Old Mincho";
  font-weight: 900;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
}

.course-list .course-wrap .course-box .Lbox .price {
  margin: 10px 0 24px;
  font-family: "Zen Old Mincho";
  font-weight: bold;
  font-size: 1.25rem;
  text-align: right;
  color: #c9500f;
}
@media screen and (max-width: 768px) {
  .course-list .course-wrap .course-box .Lbox .price {
    text-align: left;
  }
}

.course-list .course-wrap .course-box .Lbox .txt-box> :first-child {
  margin-top: 0;
}

.course-list .course-wrap .course-box .Lbox .txt-box> :last-child {
  margin-bottom: 0;
}

.course-list .course-wrap .course-box .Lbox .info-wrap {
  margin: 16px 0 10px;
}

.course-list .course-wrap .course-box .Lbox .info-wrap .info-box {
  display: flex;
  align-items: center;
}

.course-list .course-wrap .course-box .Lbox .info-wrap .info-box p {
  margin: 0;
}

.course-list .course-wrap .course-box .Lbox .info-wrap .info-box .ttl {
  margin-right: 16px;
  padding: 5px 14px;
  background: #057758;
  font-size: 0.875rem;
  color: #fff;
}

.course-list .course-wrap .course-box .Lbox .note-list {
  margin: 0;
  padding: 16px;
  border: 1px solid #C6C7C7;
  list-style: none;
}

.course-list .course-wrap .course-box .Lbox .note-list li {
  position: relative;
  padding-left: 20px;
}

.course-list .course-wrap .course-box .Lbox .note-list li::before {
  content: '';
  position: absolute;
  top: calc(0.5em + 2.5px);
  left: 0;
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 5px;
  border: 1px solid #057758;
}


.index-voice {
  padding: 100px 0;
  background: #F5FAF6;
}

@media screen and (max-width: 480px) {
  .index-voice {
    padding: 80px 0;
  }
}

.index-voice .wrap .voice-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

@media screen and (max-width: 768px) {
  .index-voice .wrap .voice-wrap {
    grid-template-columns: 1fr;
  }
}

.index-voice .wrap .voice-wrap .Rbox .sub {
  margin: 0 0 24px;
  font-family: "Zen Old Mincho";
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 480px) {
  .index-voice .wrap .voice-wrap .Rbox .sub br {
    display: none;
  }
}

.index-voice .voice-talk {
  /* display: grid; */
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-top: 56px;
}

@media screen and (max-width: 768px) {
  .index-voice .voice-talk {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 20px;
  }
}

.index-voice .voice-talk .talk-box {
  background: #fff;
  border: 1px solid #C6C7C7;
}

.index-voice .voice-talk .talk-box .ttl {
  padding: 16px;
  margin: 0;
  text-align: center;
  line-height: 1.5;
  font-size: 1.25rem;
  font-weight: 500;
  color: #FAF7E8;
  background: #057758;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.index-voice .voice-talk .talk-box .ttl span {
    display: block;
      font-size: 14px;
      color: #ffde00;
      font-weight: bold;
}

.index-voice .voice-talk .talk-box .talk-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: auto;
  height: 520px;
  overflow: scroll;
  padding: 24px 20px;
  margin: 0;
  list-style: none;
}

@media screen and (max-width: 768px) {
  .index-voice .voice-talk .talk-box .talk-list {
    height: 400px;
  }
}

@media screen and (max-width: 480px) {
  .index-voice .voice-talk .talk-box .talk-list {
    padding: 24px 16px;
    height: 320px;
  }
}

.index-voice .voice-talk .talk-box .talk-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin: 0;
}

.index-voice .voice-talk .talk-box .talk-list li:nth-of-type(2n) {
  flex-direction: row-reverse;
  justify-content: end;
}

.index-voice .voice-talk .talk-box .talk-list li figure {
  max-width: 48px;
  max-height: 48px;
  width: 100%;
  height: 100%;
}

.index-voice .voice-talk .talk-box .talk-list li figure img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50vh;
  border: 1px solid #C6C7C7;
}
.icon-name-box {
  margin: 2px 0 0;
  font-size: 0.875rem;
  text-align: center;
  line-height: 1.2;
}
.icon-name-box .initial {
  display: block;
  margin-right: 3px;
}

@media screen and (max-width: 480px) {
  .index-voice .voice-talk .talk-box .talk-list li figure {
    width: 42px;
    height: 42px;
  }
}

.index-voice .voice-talk .talk-box .talk-list li p:not(.icon-name-box) {
  position: relative;
  width: 100%;
  max-width: calc(100% - (64px * 2));
  padding: 10px;
  margin: 0;
  font-size: 0.875rem;
  border-radius: 8px;
  background-color: #FDF1E5;
}

@media screen and (max-width: 480px) {
  .index-voice .voice-talk .talk-box .talk-list li p {
    max-width: calc(100% - (58px * 2));
  }
}

.index-voice .voice-talk .talk-box .talk-list li:nth-of-type(2n) p:not(.icon-name-box) {
  background-color: #E9F5F3;
}

.index-voice .voice-talk .talk-box .talk-list li p::before {
  content: '';
  display: block;
  width: 14px;
  height: 14px;
  position: absolute;
  top: 14px;
  left: -14px;
  mask-image: url("../img/fukidashi-arrow.svg");
  -webkit-mask-image: url("../img/fukidashi-arrow.svg");
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  background-color: #FDF1E5;
}

.index-voice .voice-talk .talk-box .talk-list li:nth-of-type(2n) p::before {
  left: auto;
  right: -14px;
  transform: scaleX(-1);
  background-color: #E9F5F3;
}

.index-staff {
  padding: 80px 0 100px;
  border-top: 1px solid #C6C7C7;
  border-bottom: 1px solid #C6C7C7;
}

@media screen and (max-width: 480px) {
  .index-staff {
    padding: 80px 0;
  }
}

.index-staff .wrap .staff-wrap {
  display: grid;
  grid-template-columns: max(47%, 380px) 1fr;
  column-gap: 60px;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .index-staff .wrap .staff-wrap {
    display: block;
  }
}

@media screen and (min-width: 769px) {
  .index-staff .wrap .staff-wrap .Lbox .sp-img {
    display: none;
  }
}

.index-staff .wrap .staff-wrap .Rbox {
  margin-left: auto;
  max-width: 450px;
}

@media screen and (max-width: 768px) {
  .index-staff .wrap .staff-wrap .Rbox {
    display: none;
  }
}

.monologue-box {
  margin-top: 60px;
  background: #f8faf5;
}

.monologue-box .wrapper {
  padding: 20px;
}

.monologue-box .ttl {
  padding: 16px;
  margin: 0;
  text-align: center;
  line-height: 1.5;
  font-size: 1.25rem;
  font-weight: 500;
  color: #FAF7E8;
  background: #057758;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.monologue-box .sub-ttl {
  text-align: center;
  margin: 20px 0 36px;
  font-family: "Zen Old Mincho";
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
}

.monologue-box .heading {
  font-weight: bold;
  font-size: 1.125rem;
}


.index-faq {
  padding: 100px 0 60px;
  background: #FBFBFB;
}

@media screen and (max-width: 480px) {
  .index-faq {
    padding: 80px 0;
  }
}

.index-faq .wrap .faq-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding: 0;
  margin: 0 0 40px;
  list-style: none;
}

@media screen and (max-width: 768px) {
  .index-faq .wrap .faq-list {
    grid-template-columns: 1fr;
  }
}

.index-faq .wrap .faq-list li {
  padding: 20px 24px 32px;
  border: 1px solid #C6C7C7;
  background-color: #fff;
}

@media screen and (max-width: 768px) {
  .index-faq .wrap .faq-list li {
    padding: 20px;
  }
}

.index-faq .wrap .faq-list li .question {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 6px;
  font-weight: 500;
  color: #057758;
  border-bottom: 1px dotted #057758;
}

.index-faq .wrap .faq-list li .question figure {
  max-width: 76px;
  max-height: 114px;
}

@media screen and (max-width: 480px) {
  .index-faq .wrap .faq-list li .question figure {
    zoom: .8;
  }
}

.index-news {
  border-top: 1px solid #C6C7C7;
}

.index-news .wrap .news-wrap {
  display: grid;
  grid-template-columns: 330px 1fr;
  column-gap: 60px;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .index-news .wrap .news-wrap {
    display: block;
  }
}

.index-news .wrap .news-wrap .Lbox {
  padding: 80px 0;
  border-right: 1px solid #C6C7C7;
}

@media screen and (max-width: 768px) {
  .index-news .wrap .news-wrap .Lbox {
    padding: 80px 0 20px;
    border-right: none;
  }
}

.index-news .wrap .news-wrap .Lbox .news-link {
  margin: 66px 0 0;
}

@media screen and (max-width: 768px) {
  .index-news .wrap .news-wrap .Lbox .news-link {
    margin: 0;
  }
}

.index-news .wrap .news-wrap .Lbox .news-link::before {
  content: '\f0ca';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
  background: #03694E;
  border-radius: 40px;
  width: 40px;
  height: 40px;
  font-weight: normal;
  font-family: 'Font Awesome 5 Solid';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #fff;
}

.index-news .wrap .news-wrap .Lbox .news-link a {
  text-decoration: none;
  color: #222;
}

.index-news .wrap .news-wrap .Lbox .news-link a:hover {
  text-decoration: underline;
}

.index-news .wrap .news-wrap .Rbox {
  margin-left: auto;
  max-width: 640px;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .index-news .wrap .news-wrap .Rbox {
    margin-left: 0;
    max-width: 100%;
  }
}

.guarantee-box {
  margin-bottom: 80px;
  text-align: center;
}

.guarantee-box .ttl {
  font-size: 1.25rem;
  /* 20px */
  border-top: 1px solid #d6cf47;
  border-bottom: 1px solid #d6cf47;
  padding: 10px 0;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
* @ ページ｜Joyのこだわり
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.ex-photos {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 64px;
  margin: 32px 0;
}

@media screen and (max-width: 768px) {
  .ex-photos {
    gap: 40px;
  }
}

@media screen and (max-width: 480px) {
  .ex-photos {
    grid-template-columns: 1fr;
  }
}

.ex-photos .ex-photos-box {
  position: relative;
}

.ex-photos .ex-photos-box:first-of-type:after {
  content: "";
  position: absolute;
  right: -55px;
  bottom: 50%;
  transform: translateY(50%);
  width: 48px;
  height: 26.667px;
  background: url("../img/ex-photos-arrow.svg") no-repeat;
  background-size: contain;
}

@media screen and (max-width: 768px) {
  .ex-photos .ex-photos-box:first-of-type:after {
    zoom: .6;
  }
}

@media screen and (max-width: 480px) {
  .ex-photos .ex-photos-box:first-of-type:after {
    right: 50%;
    bottom: -45px;
    transform: translateX(50%) rotate(90deg);
  }
}

.ex-photos .ex-photos-box p {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  margin: 0;
  padding: 15px;
  background: rgba(68, 67, 65, .85);
  color: #fff;
  text-align: center;
  line-height: 1;
  font-size: 1.25rem;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media screen and (max-width: 768px) {
  .ex-photos .ex-photos-box p {
    padding: .75em;
    font-size: 1rem;
  }
}

.ex-photos .ex-photos-box:nth-of-type(2) p {
  background: rgba(5, 120, 88, .85);
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
* @ ページ｜お客様の声
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.voice-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 30px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.voice-list li {
  border: 5px solid #f5faf6;
}

.voice-list li a {
  display: block;
  transition: 0.3s;
}

.voice-list li a:hover {
  opacity: 0.6;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
* @ ページ｜スタッフ紹介
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.staff-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

@media screen and (max-width: 768px) {
  .staff-box {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.staff-box .Lbox {
  max-width: 450px;
  margin-right: auto;
}

.staff-box .Rbox .sub {
  margin: 0 0 24px;
  font-family: "Zen Old Mincho";
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
* @ サイトマップ
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.page-sitemaps .sitemaps-list {
  width: 48%;
  float: left;
  margin-left: 4%;
}

.page-sitemaps .sitemaps-list:first-child {
  margin-left: 0;
}

@media screen and (max-width: 768px) {
  .page-sitemaps .sitemaps-list {
    width: 100%;
    float: none;
    margin-left: 0;
  }
}

.page-sitemaps .sitemaps-list ul {
  padding: 0;
}

.page-sitemaps .sitemaps-list ul ul {
  padding-left: 1.5em;
}

.page-sitemaps .sitemaps-list li {
  list-style: none;
}

.page-sitemaps .sitemaps-list li a {
  display: block;
  padding: 0.5em;
  color: inherit;
  border-bottom: 1px dotted #ccc;
  text-decoration: none;
}

.page-sitemaps .sitemaps-list li a:hover {
  text-decoration: none;
  background-color: #f4f9fe;
}

.page-sitemaps .sitemaps-list li a:before {
  font-family: 'FontAwesome';
  font-weight: normal;
  content: "\f105";
  margin-right: 1em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
* @ 404
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

/* @ メッセージ
---------------------------------------------------------------------------- */
.error404 .er404-message {
  text-align: center;
}

.error404 .er404-message:before {
  display: block;
  font-family: 'FontAwesome';
  font-weight: normal;
  font-size: 140px;
  content: "\f071";
  color: #f66;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media screen and (max-width: 768px) {
  .error404 .er404-message:before {
    font-size: 112px;
  }
}

.error404 .er404-message p:first-child {
  font-family: 'Open Sans', sans-serif;
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
  margin-top: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media screen and (max-width: 768px) {
  .error404 .er404-message p:first-child {
    font-size: 2.25em;
  }
}

.error404 .er404-message p:first-child span {
  font-size: 0.5em;
}

/* @ 検索フォーム
---------------------------------------------------------------------------- */
#er404-search {
  display: flex;
  width: 80%;
  min-width: 280px;
  max-width: 680px;
  margin: 5em auto;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  #er404-search {
    margin: 2em auto;
  }
}

#er404-search label:first-of-type {
  width: 100%;
}

#er404-search input[type='text'] {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  padding: 10px;
  border: none;
  border-radius: 0;
  outline: none;
  background-color: #eee;
}

#er404-search input[type='submit'] {
  font-family: 'FontAwesome';
  box-sizing: border-box;
  padding: 0.5em 0.75em;
  height: 100%;
  border: none;
  border-radius: 0;
  outline: none;
  background-color: #2d3339;
  color: #fff;
  font-weight: normal;
  font-size: 1.25em;
  text-align: center;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: opacity 0.3s;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
* @ 検索
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.search #er404-search {
  margin: 3em auto;
}

.search .search-list {
  border-top: 1px solid #ccc;
}

.search .search-list ul {
  display: block;
  margin: 0;
  padding: 0;
}

.search .search-list>a {
  display: block;
  padding: 20px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  color: inherit;
  text-decoration: none;
  transition: background-color 0.3s;
  transition: opacity 0.3s;
}

.search .search-list>a:hover {
  opacity: 0.6;
  text-decoration: none;
}

.search .search-list h3 {
  margin-top: 0;
}

.search .search-list p:last-child {
  text-align: right;
  margin-bottom: 0;
  padding-top: 1em;
  border-top: 1px dotted #ccc;
  font-size: 0.875em;
  color: #999;
}

.search .search-count {
  margin: 2em 0;
}

.search-everything-highlight {
  font-weight: bold;
  text-decoration: underline;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.search-everything-highlight:before {
  display: none;
}

.search .permalink {
  overflow: hidden;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
* @ 投稿｜詳細
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.single .post-data {
  border-bottom: 1px dotted #ccc;
  padding-bottom: 1em;
  margin-bottom: 3em;
  font-weight: bold;
  text-align: right;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}