@charset "UTF-8";
.hidden {
  display: none;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body {
  padding: 0;
  margin: 0;
}

body {
  color: #271507;
  font-size: 16px;
  line-height: 1.6;
  background: #fff;
  font-family: "Noto Sans JP", sans-serif;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: none;
      text-size-adjust: none;
}

.wrap {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0;
  padding: 0;
}

figure {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

.clear::after {
  content: "";
  clear: both;
  display: block;
}

@media (min-width: 1200px) {
  a[href^="tel:"] {
    display: inline-block;
    pointer-events: none;
  }
}
@media (max-width: 1199px) {
  a[href^="tel:"] {
    display: inline-block;
    pointer-events: none;
  }
}
@media (max-width: 767px) {
  a[href^="tel:"] {
    display: block;
    pointer-events: painted;
  }
}

/*************************************************************************************
セクション共通
**************************************************************************************/
.section {
  padding: 80px 0;
}

.under-section {
  padding: 80px 0;
}
@media (max-width: 767px) {
  .under-section {
    padding: 60px 0;
  }
}

/*************************************************************************************
インナー幅
**************************************************************************************/
.common-width {
  max-width: 880px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

/*************************************************************************************
デバイスごとの表示切り替え
**************************************************************************************/
@media (max-width: 1199px) {
  .pc-only {
    display: none;
  }
}
@media (max-width: 767px) {
  .pc-only {
    display: none;
  }
}

@media (max-width: 767px) {
  .pctab-only {
    display: none;
  }
}

.tab-below {
  display: none;
}
@media (max-width: 1199px) {
  .tab-below {
    display: block;
  }
}

@media (min-width: 1200px) {
  .tab-only {
    display: none;
  }
}
@media (max-width: 1199px) {
  .tab-only {
    display: block;
  }
}
@media (max-width: 767px) {
  .tab-only {
    display: none;
  }
}

.sp-only {
  display: none;
}
@media (max-width: 767px) {
  .sp-only {
    display: block;
  }
}

/*************************************************************************************
セクションタイトル
**************************************************************************************/
.section__title {
  font-size: 28px;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  text-align: center;
}
@media (max-width: 767px) {
  .section__title {
    font-size: 24px;
  }
}
.section__title::before {
  display: block;
  content: attr(data-en);
  margin-bottom: 5px;
  color: #ED8395;
  font-size: 20px;
  font-family: "Lora", serif;
}

/*************************************************************************************
ボタン
**************************************************************************************/
@media (max-width: 767px) {
  .btn:not(:last-child) {
    margin-bottom: 30px;
  }
}
.btn a {
  display: block;
  padding: 14px;
  width: 240px;
  text-align: center;
  border: 1px solid #271507;
  border-radius: 50px;
  padding-right: 30px;
  position: relative;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
@media (min-width: 1200px) {
  .btn a:hover {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    color: #ED8395;
    border: 1px solid #ED8395;
  }
  .btn a:hover::after {
    background: url(../img/common/arrow-hover.png) no-repeat center/cover;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    right: 15px;
  }
}
@media (max-width: 767px) {
  .btn a {
    margin-right: auto;
    margin-left: auto;
  }
}
.btn a::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 7px;
  height: 12px;
  background: url(../img/common/arrow.png) no-repeat center/cover;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}

/*************************************************************************************
CTA
**************************************************************************************/
.cta {
  background: url(../img/common/cta-bg.jpg) no-repeat center/cover;
  padding: 50px 0;
}
@media (max-width: 1199px) {
  .cta {
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media (max-width: 767px) {
  .cta {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.cta__wrap {
  background-color: #ffffff;
  border-radius: 20px;
  max-width: 1000px;
  margin-right: auto;
  margin-left: auto;
  padding: 48px 0;
}

.cta__logo {
  width: 218px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 40px;
}

.cta__btns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 856px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 1199px) {
  .cta__btns {
    grid-template-columns: repeat(2, 1fr);
    max-width: 620px;
  }
}
@media (max-width: 767px) {
  .cta__btns {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
@media (max-width: 1199px) {
  .cta__btns li {
    max-width: 270px;
    margin-right: auto;
    margin-left: auto;
  }
  .cta__btns li:not(:last-child) {
    margin-bottom: 20px;
  }
}

.cta__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 270px;
  margin-right: auto;
  margin-left: auto;
  color: #ffffff;
  text-align: center;
  font-weight: 700;
  white-space: nowrap;
  border-radius: 50px;
  margin-bottom: 5px;
}
.cta__btn img {
  width: 36px;
}
@media (min-width: 1200px) {
  .cta__btn:hover {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    opacity: 0.8;
  }
}

.cta__line a {
  background-color: #70D068;
  padding: 14px 79px 14px 10px;
  gap: 30px;
  position: relative;
}
.cta__line a::after {
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  position: absolute;
  content: "";
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 7px;
  height: 12px;
  background: url(../img/common/arrow-white.png) no-repeat center/cover;
}
.cta__line small {
  color: #70D068;
  display: block;
  text-align: center;
  margin-top: 5px;
  font-weight: 700;
}

.cta__web a {
  background-color: #ED8395;
  padding: 14px 79px 14px 10px;
  gap: 30px;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.cta__web a::after {
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  position: absolute;
  content: "";
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 7px;
  height: 12px;
  background: url(../img/common/arrow-white.png) no-repeat center/cover;
}
.cta__web small {
  color: #ED8395;
  display: block;
  text-align: center;
  margin-top: 5px;
  font-weight: 700;
}

@media (max-width: 1199px) {
  .cta__tel {
    grid-column: span 2; /* 2カラムのうち中央に配置 */
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .cta__tel {
    grid-column: span 1;
  }
}
.cta__tel a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #C99468;
  font-size: 22px;
  text-align: center;
  padding: 13px 42px 13px 10px;
  gap: 20px;
}

.cta__dl {
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 270px;
  margin-right: auto;
  margin-left: auto;
}
.cta__dl dt {
  width: 68px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  font-size: 12px;
  color: #ffffff;
  background-color: #C99468;
  border-radius: 5px;
  text-align: center;
}
.cta__dl dd {
  margin: 0;
  padding-left: 8px;
  line-height: 28.8px;
  font-size: 14px;
}

.cta__insta {
  margin-top: 35px;
}
.cta__insta a {
  display: block;
  width: 30px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 1200px) {
  .cta__insta a {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .cta__insta a:hover {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    opacity: 0.8;
  }
}

/*************************************************************************************
TOPへ戻る
**************************************************************************************/
.page-top a {
  position: fixed;
  z-index: 995;
  bottom: 20px;
  right: 17px;
  width: 60px;
  height: 60px;
  background: url(../img/common/to-top.png) no-repeat center/cover;
}
@media (max-width: 1199px) {
  .page-top a {
    bottom: 60px;
  }
}
@media (max-width: 767px) {
  .page-top a {
    width: 40px;
    height: 40px;
    background: url(../img/common/to-top-sp.png) no-repeat center/cover;
  }
}

.cta__privacy a {
  display: block;
  margin-top: 20px;
  font-size: 14px;
  text-align: center;
}
@media (min-width: 1200px) {
  .cta__privacy a {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .cta__privacy a:hover {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    color: #ED8395;
  }
}

/*************************************************************************************
スマホ追従ボタンエリア
**************************************************************************************/
.sp-footer__link {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
}
@media (max-width: 1199px) {
  .sp-footer__link {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}

.footer__link a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #ffffff;
  padding: 6px;
}
.footer__link a img {
  width: 36px;
  margin-right: 10px;
}

.footer__line a {
  background-color: #70D068;
}

.footer__web a {
  background-color: #ED8395;
}

.js-fade {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  -webkit-transition: opacity 1s, visibility 1s, -webkit-transform 1s;
  transition: opacity 1s, visibility 1s, -webkit-transform 1s;
  transition: opacity 1s, visibility 1s, transform 1s;
  transition: opacity 1s, visibility 1s, transform 1s, -webkit-transform 1s;
}

.scroll {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}

/*************************************************************************************
ページタイトル
**************************************************************************************/
.page-title {
  background: url(../img/common/page-title-bg.jpg) no-repeat center/cover;
  margin-top: 76px;
  font-family: "Lora", serif;
  text-align: center;
  padding: 25px;
  font-size: 40px;
  font-weight: 300;
}
@media (max-width: 1199px) {
  .page-title {
    margin-top: 0;
  }
}
@media (max-width: 767px) {
  .page-title {
    font-size: 32px;
  }
}
.page-title::before {
  display: block;
  content: attr(data-en);
  margin-bottom: 5px;
  color: #ED8395;
  font-size: 32px;
  font-weight: 300;
}
@media (max-width: 767px) {
  .page-title::before {
    font-size: 24px;
  }
}

/*************************************************************************************
パンくずリスト
**************************************************************************************/
.breadcrumb {
  max-width: 1080px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
@media (max-width: 767px) {
  .breadcrumb {
    overflow-x: scroll;
    word-break: keep-all;
    white-space: nowrap;
  }
}
.breadcrumb span {
  font-size: 12px;
}
@media (max-width: 1199px) {
  .breadcrumb {
    padding-left: 30px;
  }
}
.breadcrumb li:first-of-type {
  position: relative;
}
.breadcrumb li:first-of-type::after {
  position: absolute;
  content: ">";
  top: 20%;
  right: -25px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 16px;
  height: 10px;
}

/*************************************************************************************
下層セクションタイトル
**************************************************************************************/
.under-section__title {
  text-align: center;
  font-size: 28px;
  font-family: "Noto Serif JP", serif;
  font-weight: 300;
  line-height: 120%;
}
.under-section__title::before {
  display: block;
  content: attr(data-en);
  margin-bottom: 5px;
  font-size: 20px;
  color: #ED8395;
  font-family: "Lora", serif;
}

.common-bg {
  position: relative;
}
.common-bg::after {
  position: absolute;
  content: "";
  right: 0;
  bottom: 600px;
  width: 170px;
  height: 344px;
  background: url(../img/menu/menu-bg.png) no-repeat center/cover;
}
@media (max-width: 1199px) {
  .common-bg::after {
    width: 187px;
    height: 120px;
    bottom: 620px;
    left: 0;
    z-index: 1;
    background: url(../img/top/news-bg.png) no-repeat center/cover;
  }
}
@media (max-width: 767px) {
  .common-bg::after {
    bottom: 720px;
  }
}

/*************************************************************************************
ヘッダー
**************************************************************************************/
.header {
  background-color: #ffffff;
  width: 100%;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 1199px) {
  .header {
    background-color: transparent;
    position: relative;
  }
}

.header__logo a {
  display: block;
  width: 215px;
  margin-left: 20px;
  padding: 8.5px 0;
}

.header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 1199px) {
  .header__nav {
    display: none;
  }
}

.header__nav__ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header__nav__list a {
  display: block;
  margin-top: 8px;
  padding: 22px 15px;
}
@media (min-width: 1200px) {
  .header__nav__list a:hover {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    color: #ED8395;
  }
}

.header__school a {
  display: block;
  margin-top: 23px;
  margin-left: 15px;
  margin-right: 40px;
  border: 1px solid #271507;
  border-radius: 50px;
  padding: 5px 21px;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
@media (min-width: 1200px) {
  .header__school a:hover {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    color: #ED8395;
    border: 1px solid #ED8395;
  }
}

.header__line a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding: 24px;
  padding-left: 10px;
  background-color: #70D068;
  color: #ffffff;
}
.header__line a img {
  width: 36px;
}
@media (min-width: 1200px) {
  .header__line a:hover {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    opacity: 0.8;
  }
}

.header__reservation {
  padding-top: 0 !important;
}
.header__reservation a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding: 24px;
  padding-left: 10px;
  background-color: #ED8395;
  color: #ffffff;
}
.header__reservation a img {
  width: 36px;
}
@media (min-width: 1200px) {
  .header__reservation a:hover {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    opacity: 0.8;
  }
}

/*************************************************************************************
ドロワーメニュー
**************************************************************************************/
#drawer-nav {
  position: fixed;
  z-index: 999;
  top: 0;
  right: -120%;
  width: 312px;
  height: 78%;
  border-radius: 0 0 0 100px;
  background: #ffffff;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
@media (min-width: 1200px) {
  #drawer-nav {
    display: none;
  }
}

#drawer-nav.panelactive {
  right: 0;
}

.drawer-nav-list {
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

#drawer-nav ul {
  position: absolute;
  z-index: 999;
  top: 55%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 55%;
}

#drawer-nav li {
  list-style: none;
}
#drawer-nav li a {
  text-decoration: none;
  padding: 19px 0;
  display: block;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
#drawer-nav li a img {
  width: 30px;
  height: 30px;
}
#drawer-nav .drawer-under {
  margin-left: 40px;
}

.drawer__school {
  width: 120px;
  margin-right: auto;
  margin-left: auto;
}
.drawer__school a {
  display: block;
  border: 1px solid #271507;
  padding: 3px 20px !important;
  border-radius: 50px;
  margin: 20px 0;
}

.drawer-nav-logo {
  width: 160px;
  margin-top: 20px;
}

/*************************************************************************************
ハンバーガーボタン
**************************************************************************************/
.hamburger {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  background-color: #ED8395;
  border-radius: 50%;
  position: fixed;
  z-index: 9999;
  top: 10px;
  right: 15px;
  cursor: pointer;
  width: 60px;
  height: 60px;
}
@media (min-width: 1200px) {
  .hamburger {
    display: none;
  }
}

.hamburger span {
  display: inline-block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  position: absolute;
  left: 13px;
  height: 2px;
  border-radius: 2px;
  background-color: #ffffff;
  width: 33px;
}

.hamburger span:nth-of-type(1) {
  top: 20px;
}

.hamburger span:nth-of-type(2) {
  top: 30px;
}

.hamburger span:nth-of-type(3) {
  top: 40px;
}

.hamburger.active span:nth-of-type(1) {
  top: 23px;
  left: 14px;
  -webkit-transform: translateY(6px) rotate(-45deg);
          transform: translateY(6px) rotate(-45deg);
  width: 33px;
  background-color: #fff;
}

.hamburger.active span:nth-of-type(2) {
  opacity: 0;
}

.hamburger.active span:nth-of-type(3) {
  top: 35px;
  left: 14px;
  -webkit-transform: translateY(-6px) rotate(45deg);
          transform: translateY(-6px) rotate(45deg);
  width: 33px;
  background-color: #fff;
}

#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  display: none;
}
@media (min-width: 1200px) {
  #overlay {
    position: static;
  }
}

/* Prevent background scrolling when menu is active */
body.panelactive {
  overflow: hidden;
}
@media (min-width: 1200px) {
  body.panelactive {
    overflow: auto;
  }
}

.footer {
  padding: 15px 0;
  text-align: center;
}
@media (max-width: 1199px) {
  .footer {
    padding: 10px 0;
    padding-bottom: 62px;
  }
}

.copy {
  font-size: 14px;
}

/*************************************************************************************
ファーストビュー
**************************************************************************************/
.fv {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 76px;
  margin-top: 30px;
  font-family: "Noto Serif JP", serif;
  position: relative;
  z-index: 1;
}
@media (max-width: 1199px) {
  .fv {
    padding-top: 0;
    margin-top: 0;
  }
}
.fv::after {
  position: absolute;
  content: "";
  bottom: -80px;
  left: 0;
  width: 450px;
  height: 580px;
  background: url(../img/top/fv-bg.webp) no-repeat center/cover;
  opacity: 0.2;
  z-index: 2;
}
@media (max-width: 1199px) {
  .fv::after {
    width: 50%;
    height: 78%;
  }
}
@media (max-width: 767px) {
  .fv::after {
    top: 130px;
    left: 0;
    width: 305px;
    height: 438px;
  }
}

.fv__message {
  white-space: nowrap;
  position: absolute;
  z-index: 3;
  top: 25%;
  left: calc(50% - 310px);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (max-width: 1199px) {
  .fv__message {
    left: calc(50% - 150px);
  }
}
@media (max-width: 767px) {
  .fv__message {
    top: 20px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.fv__message h1 {
  font-size: 40px;
  letter-spacing: 0.06em;
  font-weight: 500;
  padding-bottom: 10px;
  border-bottom: 1px dashed #836246;
}
@media (max-width: 767px) {
  .fv__message h1 {
    font-size: 32px;
  }
}
.fv__message h1 span {
  color: #ED8395;
}
.fv__message p {
  margin-top: 10px;
  font-size: 25px;
  font-weight: 500;
  color: #836246;
}
@media (max-width: 767px) {
  .fv__message p {
    font-size: 19px;
  }
}

/*swiper*/
.swiper {
  border-radius: 100px 0 0 0;
  display: block;
  max-width: 61%;
  margin-left: auto !important;
  margin-right: 0 !important;
}
@media (max-width: 767px) {
  .swiper {
    max-width: 92%;
    width: 100%;
    margin-top: 230px;
  }
}
.swiper img {
  width: 100vw !important;
}

@-webkit-keyframes zoomUp {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
}

@keyframes zoomUp {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
}
.swiper-slide-active .fv__img img,
.swiper-slide-duplicate-active .fv__img img,
.swiper-slide-prev .fv__img img {
  -webkit-animation: zoomUp 7s linear 0s normal both;
          animation: zoomUp 7s linear 0s normal both;
}

/*************************************************************************************
巻き爪&フットケアサロンRicoとは
**************************************************************************************/
.concept {
  background-color: #FFFAF6;
  position: relative;
}
@media (max-width: 767px) {
  .concept {
    padding-top: 90px;
    padding-bottom: 120px;
  }
}
.concept::after {
  position: absolute;
  content: "";
  bottom: 120px;
  right: 0;
  width: 200px;
  height: 336px;
  background: url(../img/top/concept-bg.png) no-repeat center/cover;
}
@media (max-width: 1199px) {
  .concept::after {
    width: 150px;
    height: 286px;
  }
}
@media (max-width: 767px) {
  .concept::after {
    width: 140px;
    height: 230px;
    bottom: -110px;
  }
}
@media (max-width: 767px) {
  .concept {
    padding-right: 30px;
    padding-left: 30px;
  }
}

.concept__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 40px;
}
@media (max-width: 767px) {
  .concept__cards {
    display: block;
  }
}
.concept__cards li {
  display: grid;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 767px) {
  .concept__cards li:last-child {
    margin-top: 30px;
  }
}
.concept__cards li p {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  text-align: center;
  margin-top: 10px;
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  line-height: 32.4px;
}
.concept__cards li figure {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  width: 159px;
  margin-right: auto;
  margin-left: auto;
}

.concept__message {
  text-align: center;
  margin-bottom: 40px;
  line-height: 32.4px;
}
@media (max-width: 767px) {
  .concept__message {
    text-align: left;
  }
}
.concept__message span {
  background-color: #FFEDF0;
}
.concept__message:first-of-type {
  margin-top: 40px;
}
.concept__message:last-child {
  margin-bottom: 0;
}

/*************************************************************************************
巻き爪＆フットケアサロンRico(リコ)の特長
**************************************************************************************/
.feature {
  position: relative;
  margin-bottom: 80px;
}
.feature::after {
  position: absolute;
  content: "";
  bottom: -190px;
  left: 0;
  width: 146px;
  height: 408px;
  background: url(../img/top/feature-bg.png) no-repeat center/cover;
}
@media (max-width: 1199px) {
  .feature::after {
    width: 120px;
    height: 286px;
  }
}
@media (max-width: 767px) {
  .feature::after {
    background: url(../img/top/feature-bg-sp.png) no-repeat center/cover;
    width: 170px;
    height: 230px;
    bottom: -120px;
  }
}
@media (max-width: 1199px) {
  .feature {
    padding-right: 36px;
    padding-left: 36px;
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .feature {
    padding-right: 30px;
    padding-left: 30px;
  }
}

.feature__wrap {
  display: grid;
  gap: 35px 80px;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 1199px) {
  .feature__wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .feature__wrap {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.feature-card {
  display: grid;
}
@media (max-width: 767px) {
  .feature-card {
    max-width: 450px;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding: 0 12px;
  }
  .feature-card:not(:last-child) {
    margin-bottom: 30px;
  }
}
.feature-card h3 {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  color: #ED8395;
  text-align: center;
  font-size: 18px;
  padding-bottom: 10px;
  line-height: 28px;
  border-bottom: 1px dashed #ED8395;
}
.feature-card p {
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
  height: 87px;
  line-height: 28.8px;
  padding-top: 10px;
}
@media (max-width: 767px) {
  .feature-card p {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    letter-spacing: 0.05em;
  }
}
.feature-card figure {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.feature-card span {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  position: relative;
  top: 15px;
  right: 0;
  width: 44px;
  height: 29px;
  margin-left: auto;
}

/*************************************************************************************
料金／施術例
**************************************************************************************/
.top-menu {
  background-color: #FFFAF6;
}
@media (max-width: 1199px) {
  .top-menu {
    padding-right: 30px;
    padding-left: 30px;
  }
}
@media (max-width: 767px) {
  .top-menu {
    padding-bottom: 50px;
  }
}

.top-menu__text {
  max-width: 640px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  margin-top: 40px;
}

.top-menu__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
  margin-top: 40px;
}
@media (max-width: 1199px) {
  .top-menu__btns {
    gap: 15px;
  }
}
@media (max-width: 767px) {
  .top-menu__btns {
    display: block;
  }
}

@media (max-width: 1199px) {
  .top-menu__btn a {
    width: 220px;
  }
}
@media (max-width: 767px) {
  .top-menu__btn a {
    width: 240px;
  }
}

/*************************************************************************************
店舗情報・アクセス
**************************************************************************************/
@media (max-width: 767px) {
  .access {
    padding-top: 50px;
    padding-bottom: 100px;
    padding-right: 15px;
    padding-left: 15px;
  }
}
.access::after {
  display: none;
}

.access__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 42px;
  gap: 40px;
}
@media (max-width: 767px) {
  .access__flex {
    display: grid;
  }
}

.access__info {
  max-width: 415px;
}
@media (max-width: 767px) {
  .access__info {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

.access__parts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  margin: 0;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .access__parts {
    padding-right: 15px;
    padding-left: 15px;
  }
}
.access__parts dt {
  width: 76px;
  min-height: 24px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  font-size: 14px;
  color: #ffffff;
  background-color: #C99468;
  border-radius: 5px;
  text-align: center;
  padding: 1px 0 3px 0;
}
.access__parts dd {
  margin: 0;
  line-height: 28.8px;
}
@media (max-width: 767px) {
  .access__parts dd {
    font-size: 14px;
  }
}

.access__img {
  max-width: 426px;
}
@media (max-width: 767px) {
  .access__img {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

.access__access {
  max-width: 700px;
  margin-right: auto;
  margin-left: auto;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .access__access {
    max-width: 425px;
    display: block;
    margin-top: 0;
  }
}
.access__access dt {
  width: 132px;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .access__access dt {
    width: 76px;
  }
}
.access__access dd {
  width: calc(100% - 132px);
}
@media (max-width: 767px) {
  .access__access dd {
    width: 100%;
    font-size: 16px;
    margin-top: 5px;
  }
}

.access__map {
  max-width: 700px;
  margin-right: auto;
  margin-left: auto;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .access__map {
    padding-right: 15px;
    padding-left: 15px;
  }
}

.access__btn a {
  position: relative;
  display: block;
  width: 240px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
  font-size: 14px;
  margin-top: 23px;
  border: 1px solid #271507;
  border-radius: 50px;
  padding: 10px 47px 10px 27px;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
@media (min-width: 1200px) {
  .access__btn a:hover {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    color: #ED8395;
    border: 1px solid #ED8395;
  }
  .access__btn a:hover::after {
    background: url(../img/common/arrow-hover.png) no-repeat center/cover;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    right: 15px;
  }
}
.access__btn a::after {
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  position: absolute;
  content: "";
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 7px;
  height: 12px;
  background: url(../img/common/arrow.png) no-repeat center/cover;
}

/*************************************************************************************
スタッフ紹介
**************************************************************************************/
.staff {
  background-color: #FFFAF6;
  position: relative;
}
.staff::after {
  position: absolute;
  content: "";
  top: -120px;
  right: 0;
  width: 285px;
  height: 165px;
  background: url(../img/top/access-bg.png) no-repeat center/cover;
}
@media (max-width: 1199px) {
  .staff::after {
    width: 205px;
    height: 125px;
  }
}
@media (max-width: 767px) {
  .staff::after {
    top: -70px;
  }
}
@media (max-width: 1199px) {
  .staff {
    padding-right: 15px;
    padding-left: 15px;
  }
}
@media (max-width: 767px) {
  .staff {
    padding-top: 70px;
    padding-bottom: 50px;
  }
}

.staff__wrap {
  max-width: 865px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  position: relative;
}
@media (max-width: 1199px) {
  .staff__wrap {
    display: grid;
  }
}

.staff__contents {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 40px;
  padding-left: 70px;
  max-width: 666px;
}
@media (max-width: 1199px) {
  .staff__contents {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    padding: 40px;
    padding-top: 80px;
    margin-right: auto;
    margin-left: auto;
    margin-top: -45px;
  }
}
@media (max-width: 767px) {
  .staff__contents {
    max-width: 450px;
    padding: 30px;
    padding-top: 80px;
  }
}
.staff__contents h3 {
  font-size: 14px;
  font-weight: 400;
}
.staff__contents h3 span {
  color: #ED8395;
  margin-left: 10px;
}
.staff__contents h3 .name {
  font-size: 20px;
}
.staff__contents small {
  font-size: 14px;
  padding-bottom: 10px;
  border-bottom: 1px dashed #ED8395;
  display: block;
  width: 100%;
  margin-top: 10px;
}
.staff__contents p:first-of-type {
  padding-top: 10px;
}
.staff__contents p:not(:last-child) {
  padding-bottom: 30px;
}

.staff__img {
  position: absolute;
  top: -40px;
  left: calc(50% - 320px);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 240px;
}
@media (max-width: 1199px) {
  .staff__img {
    position: static;
    z-index: 1;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-right: auto;
    margin-left: auto;
    -webkit-transform: none;
            transform: none;
  }
}

/*************************************************************************************
ご予約(CTAパーツはcommonファイルに記述)
**************************************************************************************/
@media (max-width: 767px) {
  .reservation__wrap {
    padding: 30px;
  }
}
.reservation__wrap p {
  max-width: 528px;
  margin: 20px auto;
  line-height: 28.8px;
}
@media (max-width: 1199px) {
  .reservation__wrap p {
    margin-bottom: 30px;
  }
}

/*************************************************************************************
お知らせ
**************************************************************************************/
.top-news {
  position: relative;
}
@media (max-width: 1199px) {
  .top-news {
    padding-right: 15px;
    padding-left: 15px;
  }
}
.top-news::after {
  position: absolute;
  content: "";
  bottom: -90px;
  left: 0;
  width: 285px;
  height: 165px;
  background: url(../img/top/news-bg.png) no-repeat center/cover;
}
@media (max-width: 1199px) {
  .top-news::after {
    width: 205px;
    height: 125px;
  }
}
@media (max-width: 767px) {
  .top-news::after {
    bottom: -55px;
  }
}

.news__wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  margin-top: 40px;
  max-width: 820px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 1199px) {
  .news__wrap {
    gap: 25px;
  }
}
@media (max-width: 767px) {
  .news__wrap {
    grid-template-columns: 1fr;
    max-width: 70%;
    min-width: 240px;
    margin-right: auto;
    margin-left: auto;
    gap: 30px;
  }
}

.article__card a {
  border-radius: 20px;
  overflow: hidden;
  -webkit-box-shadow: 0px 3px 10px -3px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 3px 10px -3px rgba(0, 0, 0, 0.3);
  display: grid;
  position: relative;
}
.article__card a h3 {
  height: 56px;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 20px;
  display: -webkit-box; /* 必須 */
  -webkit-box-orient: vertical; /* 必須 */
  -webkit-line-clamp: 2; /* 行数を制限 */
  overflow: hidden; /* はみ出た部分を非表示 */
}
.article__card a time {
  font-size: 12px;
}
.article__card a figure img {
  width: 100%;
  aspect-ratio: 240/160;
  -o-object-fit: cover;
     object-fit: cover;
}
.article__card a span {
  font-size: 12px;
  background-color: #ED8395;
  color: #ffffff;
  min-width: 100px;
  white-space: wrap;
  height: 22px;
  text-align: center;
  margin-left: auto;
  padding: 2px;
  margin-top: -30px;
  display: -webkit-box; /* 必須 */
  -webkit-box-orient: vertical; /* 必須 */
  -webkit-line-clamp: 1; /* 行数を制限 */
  overflow: hidden; /* はみ出た部分を非表示 */
}
.article__card a::after {
  position: absolute;
  content: "";
  z-index: 1;
  bottom: 12px;
  right: 20px;
  width: 25px;
  height: 25px;
  background: url(../img/news/news-icon.png) no-repeat center/cover;
}
@media (min-width: 1200px) {
  .article__card a {
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
  }
  .article__card a:hover {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    opacity: 0.8;
  }
  .article__card a:hover::after {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    background: url(../img/news/news-icon-hover.png) no-repeat center/cover;
    right: 15px;
  }
}

.article__contents {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  background-color: #FFFAF6;
  padding: 20px;
  position: relative;
  margin-top: -8px;
}

.news__btn a {
  margin-right: auto;
  margin-left: auto;
  margin-top: 40px;
}

/*************************************************************************************
スクール情報
**************************************************************************************/
.top-school {
  background-color: #FFFAF6;
  padding-bottom: 0;
}

.top-school__wrap {
  position: relative;
  height: 413px;
  margin-top: 40px;
}
@media (max-width: 767px) {
  .top-school__wrap {
    position: static;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
}

.top-school__contents {
  position: absolute;
  top: 0;
  left: calc(50% + 180px);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  max-width: 500px;
  width: 100%;
}
@media (max-width: 1199px) {
  .top-school__contents {
    max-width: 400px;
    left: calc(50% + 150px);
  }
}
@media (max-width: 767px) {
  .top-school__contents {
    position: static;
    -webkit-transform: none;
            transform: none;
    margin-right: auto;
    margin-left: auto;
    max-width: 82.4%;
  }
}
.top-school__contents h3 {
  font-size: 22px;
  font-weight: 400;
  padding-bottom: 10px;
  border-bottom: 1px dashed #ED8395;
  margin-bottom: 30px;
}
.top-school__contents h3 span {
  color: #ED8395;
  font-size: 16px;
  display: block;
  font-weight: 700;
}
@media (max-width: 767px) {
  .top-school__contents h3 {
    text-align: center;
  }
}
.top-school__contents p:not(:last-of-type) {
  margin-bottom: 40px;
}

.top-school__btn a {
  margin-top: 30px;
  margin-left: auto;
}

.top-school__img {
  width: 40%;
  position: absolute;
  bottom: 0;
  left: 0;
  margin-bottom: -8px;
  display: block;
}
@media (max-width: 767px) {
  .top-school__img {
    position: static;
    margin-top: 60px;
    width: 87.4%;
  }
}

.price {
  padding: 80px 0;
}

.price__text {
  text-align: center;
  padding-top: 40px;
}

.menu__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 1000px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  margin-top: 55px;
  gap: 60px;
}
@media (max-width: 1199px) {
  .menu__link {
    display: block;
  }
}
@media (max-width: 767px) {
  .menu__link {
    width: 84%;
  }
}

.anchor-link a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 20px;
  width: 470px;
  height: 260px;
  background-color: #F8F4F0;
  border-radius: 20px;
  padding: 20px;
  position: relative;
}
@media (max-width: 1199px) {
  .anchor-link a {
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .anchor-link a {
    max-width: 470px;
    width: 100%;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    padding-bottom: 50px;
  }
}
.anchor-link a::after {
  position: absolute;
  content: "";
  bottom: 20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 19px;
  height: 19px;
  background: url(../img/menu/arrow-icon.png) no-repeat center/cover;
}

.anchor-contents {
  width: calc(100% - 180px);
}
@media (max-width: 767px) {
  .anchor-contents {
    width: 100%;
  }
}
.anchor-contents h2 {
  font-family: "Noto Serif JP", serif;
  color: #ED8395;
  font-size: 22px;
  font-weight: 500;
  line-height: 150%;
}
@media (max-width: 767px) {
  .anchor-contents h2 {
    text-align: center;
  }
}
.anchor-contents p {
  margin-top: 10px;
  line-height: 170%;
}
@media (max-width: 767px) {
  .anchor-contents p {
    font-size: 14px;
  }
}

.anchor__img {
  width: 160px;
  margin-top: 5px;
}
@media (max-width: 767px) {
  .anchor__img {
    display: none;
  }
}

.anchor-link--1 a::before {
  position: absolute;
  content: "";
  top: -15px;
  left: -20px;
  width: 52px;
  height: 29px;
  background: url(../img/top/feature-num1.png) no-repeat center/contain;
}

.anchor-link--2 a::before {
  position: absolute;
  content: "";
  top: -15px;
  left: -20px;
  width: 52px;
  height: 29px;
  background: url(../img/top/feature-num2.png) no-repeat center/contain;
}

.anchor-link--3 a {
  width: 329px;
  display: block;
}
@media (max-width: 1199px) {
  .anchor-link--3 a {
    width: 470px;
    margin-right: auto;
    margin-left: auto;
  }
}
@media (max-width: 767px) {
  .anchor-link--3 a {
    max-width: 470px;
    width: 100%;
  }
}
.anchor-link--3 a h2 {
  padding: 20px;
  text-align: center;
  background-color: #F8F4F0;
  font-size: 20px;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  border-radius: 100px;
  position: relative;
}
.anchor-link--3 a h2::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 60px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 19px;
  height: 19px;
  background: url(../img/menu/arrow-icon.png) no-repeat center/cover;
}
@media (max-width: 767px) {
  .anchor-link--3 a h2::after {
    right: 39px;
  }
}
.anchor-link--3 a h2::before {
  position: absolute;
  content: "";
  top: -15px;
  left: -20px;
  width: 52px;
  height: 29px;
  background: url(../img/top/feature-num3.png) no-repeat center/contain;
}

/*************************************************************************************
メニュー内容
**************************************************************************************/
.menu__contents:not(:last-of-type) {
  border-bottom: 1px dotted #C99468;
}
@media (max-width: 767px) {
  .menu__contents:not(:last-of-type) {
    border-bottom: 1px solid #C99468;
  }
}
.menu__contents:first-of-type {
  padding-top: 20px;
  position: relative;
}
.menu__contents:first-of-type::after {
  position: absolute;
  content: "";
  right: 0;
  bottom: -125px;
  width: 170px;
  height: 344px;
  background: url(../img/menu/menu-bg.png) no-repeat center/cover;
}
@media (max-width: 1199px) {
  .menu__contents:first-of-type::after {
    bottom: 80%;
    right: 33px;
    width: 135px;
    height: 200px;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
  }
}
@media (max-width: 767px) {
  .menu__contents:first-of-type::after {
    bottom: 90%;
  }
}
@media (max-width: 767px) {
  .menu__contents {
    padding-right: 30px;
    padding-left: 30px;
  }
}

.menu__wrap {
  max-width: 880px;
  margin-right: auto;
  margin-left: auto;
  padding-top: 85px;
  padding-bottom: 60px;
}
@media (max-width: 767px) {
  .menu__wrap {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

@media (max-width: 767px) {
  .menu-section-1__wrap {
    padding-top: 140px;
  }
}

.menu__num {
  display: block;
  width: 45px;
  margin-right: auto;
  margin-left: auto;
}

.menu__title {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  text-align: center;
  font-size: 28px;
}
@media (max-width: 767px) {
  .menu__title {
    font-size: 24px;
  }
}

.menu__guide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  gap: 40px;
  margin-top: 40px;
}
@media (max-width: 767px) {
  .menu__guide {
    display: grid;
    gap: 20px;
    margin-top: 20px;
  }
}
.menu__guide p {
  width: calc(100% - 380px);
}
@media (max-width: 767px) {
  .menu__guide p {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 100%;
    letter-spacing: 0.05em;
    line-height: 180%;
  }
}
.menu__guide figure {
  width: 330px;
}
.menu__guide figure img {
  width: 100%;
  aspect-ratio: 330/204;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .menu__guide figure {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-right: auto;
    margin-left: auto;
  }
}

.menu__table {
  border-collapse: collapse;
  border-color: #ffffff;
  width: 100%;
}
.menu__table tbody tr:not(:last-of-type) {
  border-bottom: 1px solid #C99468;
}
@media (max-width: 767px) {
  .menu__table tbody tr:not(:last-of-type) {
    border-bottom: 1px solid #ffffff;
    margin-bottom: 10px;
  }
}
@media (max-width: 767px) {
  .menu__table tbody tr {
    display: block;
  }
}
.menu__table tbody tr th {
  background-color: #FFFAF6;
  font-weight: 400;
  padding: 15px;
  width: 200px;
  text-align: left;
}
@media (max-width: 767px) {
  .menu__table tbody tr th {
    width: 100vw;
    background-color: #FEF5ED;
  }
}
.menu__table tbody tr td {
  padding: 15px 20px;
}
@media (max-width: 767px) {
  .menu__table tbody tr td {
    display: block;
    border: 1px solid #ffffff;
    padding: 10px;
  }
}
.menu__table tbody tr td:first-of-type {
  background-color: #ffffff;
}
.menu__table tbody tr td:last-of-type {
  background-color: #FFFAF6;
  white-space: nowrap;
  width: 260px;
}
@media (max-width: 767px) {
  .menu__table tbody tr td:last-of-type {
    width: 100%;
    background-color: #ffffff;
    padding: 0 20px;
  }
}
.menu__table tbody tr td:last-of-type dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin: 0;
}
.menu__table tbody tr td:last-of-type dl dd {
  margin-left: 10px;
}
.menu__table tbody tr td:last-of-type dl dd span {
  font-size: 26px;
  color: #ED8395;
  font-family: "Lora", serif;
}
.menu__table tbody tr td:last-of-type dl dd .unit {
  color: #271507;
  font-size: 14px;
  font-family: inherit;
}

.menu__tax {
  display: block;
  text-align: right;
  margin-bottom: 5px;
  font-size: 14px;
}
@media (max-width: 767px) {
  .menu__tax {
    margin-top: 20px;
  }
}

/*************************************************************************************
施術例
**************************************************************************************/
.case {
  background-color: #FFFAF6;
}

.case__wrap {
  max-width: 879px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 50px 65px;
}
@media (max-width: 767px) {
  .case__wrap {
    gap: 40px;
  }
}

.case__box {
  width: 407px;
}
@media (max-width: 767px) {
  .case__box {
    max-width: 407px;
    width: 84%;
    margin-right: auto;
    margin-left: auto;
  }
}
.case__box h3 {
  color: #ED8395;
  font-size: 22px;
  text-align: center;
  padding: 10px 0;
  border-top: 1px solid #ED8395;
  border-bottom: 1px solid #ED8395;
}
.case__box .case__img-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 20px;
}
.case__box figure {
  width: 180px;
}
.case__box figure img {
  width: 100%;
  aspect-ratio: 180/120;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .case__box figure {
    width: 43.4%;
  }
}
.case__box figure figcaption {
  text-align: center;
  font-size: 22px;
  font-family: "Lora", serif;
}
.case__box .case__before {
  position: relative;
}
.case__box .case__before::after {
  position: absolute;
  content: "";
  top: 55%;
  right: -35px;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  width: 20px;
  height: 20px;
  background: url(../img/menu/arrow-icon.png) no-repeat center/cover;
}
@media (max-width: 767px) {
  .case__box .case__before::after {
    width: 14px;
    height: 14px;
    right: -30px;
  }
}
.case__box .case__after figcaption {
  color: #ED8395;
}
.case__box dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 10px 0;
}
.case__box dl dt {
  background-color: #C99468;
  color: #ffffff;
  font-size: 14px;
  border-radius: 5px;
  padding: 0 10px;
}
.case__box dl dd {
  margin-left: 10px;
}
/*************************************************************************************
施術の流れ
**************************************************************************************/
.step {
  padding: 80px 0;
  position: relative;
}
@media (max-width: 767px) {
  .step {
    padding: 60px 0 100px 0;
  }
}
.step::after {
  position: absolute;
  content: "";
  top: -70px;
  left: 0;
  width: 278px;
  height: 177px;
  background: url(../img/top/news-bg.png) no-repeat center/cover;
}
@media (max-width: 767px) {
  .step::after {
    width: 187px;
    height: 120px;
    top: 97%;
  }
}

.step__wrap {
  max-width: 888px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 84px;
}
@media (max-width: 1199px) {
  .step__wrap {
    width: 90%;
    gap: 50px 44px;
  }
}
@media (max-width: 767px) {
  .step__wrap {
    grid-template-columns: 1fr;
    max-width: 450px;
    width: 64%;
    gap: 84px;
  }
}

.step-box {
  display: grid;
  position: relative;
}
.step-box:not(:last-of-type)::after {
  position: absolute;
  content: "";
  top: 64px;
  right: -50px;
  width: 24px;
  height: 24px;
  background: url(../img/menu/arrow-icon.png) no-repeat center/cover;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
@media (max-width: 1199px) {
  .step-box:not(:last-of-type)::after {
    right: -35px;
  }
}
@media (max-width: 767px) {
  .step-box:not(:last-of-type)::after {
    top: 105%;
    right: 45%;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
.step-box .step-num {
  position: absolute;
  width: 44px;
  height: 33px;
  top: -15px;
  right: 0;
}
.step-box h3 {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  font-size: 18px;
  text-align: center;
  color: #ED8395;
  padding-bottom: 10px;
  border-bottom: 1px dotted #ED8395;
  margin-bottom: 10px;
}
.step-box p {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  min-height: 58px;
}
.step-box figure {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

/*************************************************************************************
下層スクール案内
**************************************************************************************/
.under-school__contents {
  top: 80px !important;
}

/*************************************************************************************
こんな方におすすめ
**************************************************************************************/
.recommend {
  background-color: #FFFAF6;
  padding: 60px 0 80px 0;
}
@media (max-width: 767px) {
  .recommend {
    padding: 60px 0;
  }
}

.recommend__wrap {
  max-width: 650px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.recommend__wrap ::marker {
  font-size: 20px;
  color: #ED8395;
}
@media (max-width: 767px) {
  .recommend__wrap {
    grid-template-columns: 1fr;
    max-width: 330px;
    width: 77%;
  }
}
.recommend__wrap li {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  list-style: disc;
  margin-bottom: 15px;
  font-size: 18px;
}

/*************************************************************************************
選ばれる理由
**************************************************************************************/
.reason {
  position: relative;
}
.reason::after {
  position: absolute;
  content: "";
  right: 0;
  bottom: -125px;
  width: 170px;
  height: 344px;
  background: url(../img/menu/menu-bg.png) no-repeat center/cover;
}
@media (max-width: 1199px) {
  .reason::after {
    bottom: 80%;
    right: 33px;
    width: 135px;
    height: 200px;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
  }
}
@media (max-width: 767px) {
  .reason::after {
    display: none;
  }
}

.reason__wrap {
  max-width: 878px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 1199px) {
  .reason__wrap {
    width: 95%;
  }
}
@media (max-width: 767px) {
  .reason__wrap {
    grid-template-columns: 1fr;
    max-width: 450px;
    width: 84%;
  }
}

.reason__box {
  background-color: #F8F4F0;
  border-radius: 20px;
  display: grid;
  padding: 20px;
}
.reason__box h3 {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  color: #ED8395;
  margin-top: 20px;
  font-size: 22px;
}
.reason__box p {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  margin-top: 10px;
}
.reason__box figure {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  width: 159px;
  margin-right: auto;
  margin-left: auto;
}

/*************************************************************************************
スクール概要
**************************************************************************************/
.information {
  background-color: #FFFAF6;
}

.information__table {
  max-width: 880px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  margin-top: 40px;
  border-collapse: collapse;
  border: 1px solid #FFFAF6;
}
@media (max-width: 1199px) {
  .information__table {
    width: 90%;
  }
}
@media (max-width: 767px) {
  .information__table {
    max-width: 450px;
    width: 84%;
  }
}
.information__table tbody tr:not(:last-of-type) {
  border-bottom: 1px solid #C99468;
}
.information__table tbody tr th {
  width: 20%;
  white-space: nowrap;
  padding: 20px;
  font-size: 18px;
  text-align: left;
  color: #ED8395;
}
@media (max-width: 767px) {
  .information__table tbody tr th {
    display: block;
    border: 1px solid #FFFAF6;
    padding: 20px 0 5px 0;
  }
}
.information__table tbody tr td {
  width: 80%;
  padding: 20px;
}
@media (max-width: 767px) {
  .information__table tbody tr td {
    display: block;
    width: 100%;
    border: 1px solid #FFFAF6;
    padding: 5px 0 20px 0;
  }
}
.information__table tbody tr td a {
  color: #0031DD;
}
.information__table tbody tr td ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px 49px;
  margin-left: 20px;
}
.information__table tbody tr td ul ::marker {
  color: #ED8395;
  font-size: 20px;
}
.information__table tbody tr td ul li {
  list-style: disc;
  white-space: nowrap;
  line-height: 160%;
}
.information__table tbody tr td dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 10px 0;
}
.information__table tbody tr td dl dt {
  width: 55px;
}
.information__table tbody tr td dl dd {
  margin-left: 15px;
}

/*************************************************************************************
スクール料金・特典
**************************************************************************************/
.school-price__price {
  width: 315px;
  margin-right: auto;
  margin-left: auto;
  margin-top: 40px;
  font-weight: 400;
  padding: 0 20px;
  background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), color-stop(70%, #ffffff), color-stop(70%, #FFFAF6), to(#FFFAF6));
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 70%, #FFFAF6 70%, #FFFAF6 100%);
}
.school-price__price span {
  font-size: 64px;
  color: #ED8395;
  font-family: "Lora", serif;
  font-weight: 300;
}

.school-price__benefits {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
  margin-top: 68px;
}
@media (max-width: 767px) {
  .school-price__benefits {
    display: block;
  }
}
.school-price__benefits li {
  background-color: #FFFAF6;
  width: 215px;
  height: 215px;
  border-radius: 50%;
  display: grid;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  position: relative;
}
.school-price__benefits li::before {
  position: absolute;
  content: "特典";
  font-size: 20px;
  font-family: "Noto Serif JP", serif;
  color: #C99468;
  top: -30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (max-width: 767px) {
  .school-price__benefits li {
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 40px;
  }
}
.school-price__benefits li h4 {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  height: 62px;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  color: #ED8395;
  line-height: 150%;
}
.school-price__benefits li .benbefit__num {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  width: 45px;
  height: 40px;
  margin-right: auto;
  margin-left: auto;
  padding-top: 10px;
}
.school-price__benefits li .benbefit__benefit__img {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  width: 55px;
  height: 38px;
  margin-right: auto;
  margin-left: auto;
}

.school__btn {
  margin-top: 40px;
}
.school__btn a {
  display: block;
  background-color: #ED8395;
  width: 320px;
  margin-right: auto;
  margin-left: auto;
  padding: 14px 58px 14px 38px;
  border-radius: 50px;
  color: #ffffff;
  position: relative;
}
.school__btn a::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 7px;
  height: 12px;
  background: url(../img/common/arrow-white.png) no-repeat center/cover;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (min-width: 1200px) {
  .school__btn a:hover::after {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    right: 15px;
  }
}

/*************************************************************************************
スタッフ紹介(下層)
**************************************************************************************/
.bg-wrap {
  position: relative;
}
.bg-wrap::after {
  position: absolute;
  content: "";
  top: -70px;
  left: 0;
  width: 278px;
  height: 177px;
  background: url(../img/top/news-bg.png) no-repeat center/cover;
}
@media (max-width: 767px) {
  .bg-wrap::after {
    width: 187px;
    height: 120px;
    top: 95.5%;
    z-index: 1;
  }
}

.under-staff {
  background-color: #FFFAF6;
}
@media (max-width: 1199px) {
  .under-staff {
    padding-right: 15px;
    padding-left: 15px;
  }
}
@media (max-width: 767px) {
  .under-staff {
    padding-top: 70px;
    padding-bottom: 50px;
  }
}

/*************************************************************************************
お申し込みの注意点
**************************************************************************************/
.attention {
  padding: 80px 0;
}
@media (max-width: 767px) {
  .attention {
    padding: 60px 0 100px 0;
  }
}

.attntion__ul {
  margin-top: 40px;
  max-width: 700px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  list-style: disc;
  padding-bottom: 40px;
}
.attntion__ul ::marker {
  color: #ED8395;
  font-size: 20px;
}
@media (max-width: 767px) {
  .attntion__ul {
    width: 84%;
    padding-bottom: 10px;
  }
}

.attention__list {
  margin-left: 1.5em;
}
.attention__list:not(:last-of-type) {
  margin-bottom: 30px;
}

/*************************************************************************************
カテゴリー
**************************************************************************************/
.category__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}
@media (max-width: 767px) {
  .category__lists {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.category__parent {
  position: relative;
}
.category__parent::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 14px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: url(../img/news/arrow-triangle.png) no-repeat center/cover;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.category__parent a {
  background-color: #C99468;
  padding: 5px 34px 5px 14px;
  color: #ffffff;
  border-radius: 30px;
  font-weight: 300;
  font-size: 14px;
}
.category__parent:hover::after {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}
.category__parent:hover .category__child__wrap {
  top: 100%;
  visibility: visible;
  opacity: 1;
  z-index: 1;
}
.category__parent.active::after {
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}

.category__child__wrap {
  position: absolute;
  top: 100%;
  width: 100%;
  background: #FFFAF6;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  padding: 15px 5px;
  opacity: 0;
  border-radius: 5px;
  margin-top: 5px;
  visibility: hidden;
}

.category__item {
  text-indent: -1em;
  padding-left: 1em;
}
.category__item a {
  display: block;
  width: 100%;
  background-color: transparent !important;
  color: #271507;
  white-space: wrap;
  font-weight: 400;
  padding: 5px;
}
.category__item a span {
  position: relative;
  padding: 5px !important;
}
.category__item a span::after {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 7px;
  height: 7px;
  background-color: #ED8395;
  border-radius: 50%;
}
.category__item a:hover {
  color: #ED8395;
}

/*************************************************************************************
記事一覧
**************************************************************************************/
.news__contents {
  padding: 40px 0 80px 0;
  max-width: 820px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 1199px) {
  .news__contents {
    width: 90%;
  }
}
/**ページネーションのCSS**/
.pagination {
  margin-top: 60px;
  text-align: center;
}

.pages {
  display: none;
}

.wp-pagenavi {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
}
.wp-pagenavi a {
  background-color: #ffffff;
  color: #ED8395;
  border-color: #ED8395;
  border-radius: 50%;
  padding: 5px 13px;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  font-size: 15px;
}
.wp-pagenavi a:hover {
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  border-color: #ED8395;
  background-color: #ED8395;
  color: #ffffff;
}
.wp-pagenavi .current {
  border-color: #ED8395 !important;
  background-color: #ED8395;
  border-radius: 50%;
  color: #ffffff;
  padding: 5px 13px;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  font-size: 15px;
}
.wp-pagenavi .extend {
  padding: 5px 10px 14px 10px !important;
  line-height: 1;
  background-color: #ffffff;
  color: #ED8395;
  border-color: #ED8395;
  border-radius: 50%;
  padding: 5px 13px;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
.wp-pagenavi .extend:hover {
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  border-color: #ED8395;
  background-color: #ED8395;
  color: #ffffff;
}

/*************************************************************************************
記事詳細ページ
**************************************************************************************/
.article {
  max-width: 640px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding: 40px 0;
}
@media (max-width: 767px) {
  .article {
    width: 84%;
  }
}
.article h1 {
  font-size: 24px;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  border-bottom: 1px solid #ED8395;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .article h1 {
    font-size: 22px;
  }
}
.article .article__parts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}
.article .article__parts .article__date {
  font-size: 12px;
}
.article .article__parts .article__category {
  font-size: 12px;
  color: #ffffff;
  background-color: #ED8395;
  padding: 2px 20px 3px 20px;
  border-radius: 30px;
  height: 22px;
  display: -webkit-box; /* 必須 */
  -webkit-box-orient: vertical; /* 必須 */
  -webkit-line-clamp: 1; /* 行数を制限 */
  overflow: hidden; /* はみ出た部分を非表示 */
}
.article .article__detail img {
  display: block;
  margin: 20px 0;
}
.article .article__detail h2 {
  margin: 20px 0;
  font-size: 20px;
  font-family: "Noto Serif JP", serif;
  position: relative;
}
.article .article__detail h2::after {
  position: absolute;
  content: "";
  bottom: -5px;
  left: 0;
  width: 300px;
  height: 1px;
  background-color: #ED8395;
}
.article .article__detail h3 {
  margin: 20px 0;
  font-size: 18px;
  font-family: "Noto Serif JP", serif;
  position: relative;
  padding-left: 40px;
}
@media (max-width: 767px) {
  .article .article__detail h3 {
    padding-left: 20px;
  }
}
.article .article__detail h3::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 30px;
  height: 1px;
  background-color: #ED8395;
}
@media (max-width: 767px) {
  .article .article__detail h3::after {
    width: 15px;
  }
}
.article .article__detail h4 {
  font-family: "Noto Serif JP", serif;
  margin: 20px 0;
}
.article .article__detail p {
  margin: 20px 0;
}
.article .article__detail p a {
  color: #0031DD;
  text-decoration: underline;
}
.article .article__detail mark {
  background-color: transparent;
}
.article .article__detail ul li {
  list-style: disc;
  margin-left: 1.5em;
}
.article .article__detail ul li::marker {
  color: #ED8395;
  font-size: 20px;
}
.article .article__detail .wp-block-quote {
  margin: 40px 0;
  padding: 35px 50px;
  background-color: #FFFAF6;
}
@media (max-width: 767px) {
  .article .article__detail .wp-block-quote {
    padding: 40px 20px;
  }
}
.article .article__detail .wp-block-quote p {
  position: relative;
}
.article .article__detail .wp-block-quote p::before {
  position: absolute;
  content: "";
  top: -15px;
  left: -20px;
  width: 20px;
  height: 10px;
  background: url(../img/news/symbol.png) no-repeat center/cover;
}
@media (max-width: 767px) {
  .article .article__detail .wp-block-quote p::before {
    left: 0;
    top: -20px;
  }
}

.single-pagination {
  max-width: 640px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  margin: 40px auto 80px auto;
}
@media (max-width: 767px) {
  .single-pagination {
    width: 84%;
  }
}

.pagenation__parts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.prev-link, .next-link {
  white-space: nowrap;
}

.arichive-link {
  width: 240px;
  margin-right: auto;
  margin-left: auto;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .arichive-link {
    margin-top: 40px;
  }
}
.arichive-link a {
  display: block;
  padding: 14px 102px 14px 58px;
  border: 2px solid #271507;
  border-radius: 50px;
  position: relative;
  white-space: nowrap;
}
.arichive-link a::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 20px;
  width: 7px;
  height: 12px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../img/common/arrow.png) no-repeat center/cover;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (min-width: 1200px) {
  .arichive-link a:hover::after {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    right: 15px;
  }
}

/* 記事がない時はリンクごと非表示 */
.single-pagination .prev-link:empty {
  display: none;
}

/*************************************************************************************
記事がありません
**************************************************************************************/
.article-none {
  text-align: center;
  white-space: nowrap;
}

.privacy-polisy {
  padding: 40px 0 80px 0;
  max-width: 640px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 767px) {
  .privacy-polisy {
    width: 84%;
  }
}

.privacy__block {
  margin-top: 40px;
}
.privacy__block h2 {
  font-size: 24px;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  border-bottom: 1px solid #ED8395;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .privacy__block h2 {
    font-size: 22px;
  }
}
.contact {
  max-width: 761px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding: 40px 0 80px 0;
}
@media (max-width: 1199px) {
  .contact {
    width: 90%;
  }
}
@media (max-width: 767px) {
  .contact {
    width: 84%;
  }
}

.contact__lead a {
  color: #0031DD;
}

.form {
  margin-top: 40px;
}
.form label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .form label {
    display: block;
  }
}
.form .align-top {
  -webkit-box-align: start !important;
      -ms-flex-align: start !important;
          align-items: flex-start !important;
}
.form .align-top .form-label {
  margin-top: 24px;
}
.form .form-label {
  display: block;
  width: 260px;
}
.form input, .form textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  background-color: #F3F3F3;
  padding: 10px;
  width: 100% !important;
  font-size: 16px;
}
.form input:focus, .form textarea:focus {
  outline: 2px solid #ED8395;
}
@media (max-width: 767px) {
  .form input, .form textarea {
    width: 100%;
    margin-top: 10px;
    font-size: 14px;
  }
}
.form textarea {
  resize: none;
}

.required {
  font-size: 14px;
  color: #ffffff;
  background-color: #ED8395;
  border-radius: 5px;
  padding: 1px 5px;
  margin-left: 8px;
  font-weight: 300;
}

.optional {
  font-size: 14px;
  color: #271507;
  background-color: #D9D9D9;
  border-radius: 5px;
  padding: 1px 5px;
  margin-left: 8px;
  font-weight: 300;
}

.wpcf7-form-control-wrap {
  width: calc(100% - 265px);
}

.check__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: calc(100% - 265px);
}
@media (max-width: 767px) {
  .check__wrap {
    width: 100%;
    margin-top: 10px;
  }
}
.check__wrap .wpcf7-form-control-wrap {
  width: 100% !important;
}

.check-customize span.wpcf7-list-item {
  position: relative;
  margin: 0 20px 0 0 !important; /*項目ごとの余白を調整*/
  white-space: nowrap;
}
@media (max-width: 767px) {
  .check-customize span.wpcf7-list-item label {
    margin-bottom: 0;
    margin-top: 20px !important;
  }
}
.check-customize .wpcf7-list-item-label { /*項目の色や文字サイズ*/
  cursor: pointer;
  font-size: 16px;
}
.check-customize input[type=checkbox] {
  position: absolute;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  opacity: 0; /*既存のチェックボックスを見えなくする*/
}
.check-customize .wpcf7-list-item-label:before, .check-customize .acceptance-customize { /*チェックボックスの枠*/
  content: "";
  border: none;
  background-color: #F3F3F3;
  display: inline-block;
  width: 20px;
  height: 20px;
  position: relative;
  top: 0;
  margin-right: 10px;
  vertical-align: middle;
  cursor: pointer;
  text-align: center;
}
.check-customize input[type=checkbox]:checked + .wpcf7-list-item-label:after { /*チェックアイコン*/
  content: "";
  display: block;
  position: absolute;
  top: 1px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: url(../img/contact/check.png) no-repeat center;
  background-size: contain;
}
@media (max-width: 767px) {
  .check-customize input[type=checkbox]:checked + .wpcf7-list-item-label:after {
    top: 20px;
  }
}

.align-top {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.textarea-label {
  padding-top: 30px;
}
@media (max-width: 767px) {
  .textarea-label {
    padding-top: 0;
  }
}

.textarea {
  height: 143px;
}

.privacy__check {
  margin-top: 40px;
  text-align: center;
}
@media (max-width: 767px) {
  .privacy__check {
    margin-top: 30px;
  }
}
.privacy__check input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.privacy__check .check-customize span.wpcf7-list-item {
  margin-bottom: 0 !important;
}

.contact__btn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  width: 300px;
  margin-right: auto;
  margin-left: auto;
  margin-top: 40px;
  position: relative;
}
.contact__btn input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  color: #ffffff;
  border: none;
  background-color: #ED8395;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  width: 300px;
  margin-right: auto;
  margin-left: auto;
  padding: 14px;
  border-radius: 50px;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  border: 1px solid #ED8395;
  background-color: #ED8395;
}
.contact__btn::after {
  position: absolute;
  content: "";
  top: 31%;
  right: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 7px;
  height: 12px;
  background: url(../img/common/arrow-white.png) no-repeat center/cover;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
@media (min-width: 1200px) {
  .contact__btn:hover {
    color: #ffffff;
  }
  .contact__btn:hover::after {
    right: 15px;
  }
}
@media (max-width: 767px) {
  .contact__btn {
    margin-top: 30px;
  }
}

.wpcf7-form-control-wrap > .wpcf7-not-valid-tip {
  display: none;
  margin-top: 10px;
}
.wpcf7-form-control-wrap.is-show > .wpcf7-not-valid-tip {
  display: block;
}

/*************************************************************************************
確認画面
**************************************************************************************/
.contact-confirm {
  padding: 80px 0;
  max-width: 630px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 767px) {
  .contact-confirm {
    padding: 60px 0;
    width: 84%;
  }
}
.contact-confirm .label {
  width: 280px;
}
.contact-confirm .wpcf7-form-control-wrap {
  display: none;
}
.contact-confirm .wpcf7-form-control {
  display: block !important;
}
.contact-confirm .textarea-label {
  padding-top: 0;
}
.contact-confirm .form__parts {
  margin-bottom: 24px;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.contact-confirm .input-comfirm {
  width: calc(100% - 280px);
}
@media (max-width: 767px) {
  .contact-confirm .input-comfirm {
    width: 100%;
  }
}
.contact-confirm .input-comfirm .check__wrap {
  width: 100%;
}
.contact-confirm .privacy__check {
  margin-top: 0;
  text-align: left;
}
.contact-confirm .contact-confirm-btn__wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 40px;
  max-width: 650px;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 767px) {
  .contact-confirm .contact-confirm-btn__wrap {
    grid-template-columns: 1fr;
    margin-top: 60px;
  }
}
.contact-confirm .contact-confirm-btn__wrap .wpcf7-previous {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid #797979;
  background-color: #797979;
  font-size: 16px;
  font-weight: bold;
  color: #ffffff;
  padding: 14px;
  border-radius: 50px;
  width: 300px;
  margin-right: auto;
  margin-left: auto;
  cursor: pointer;
}
.contact-confirm .contact-confirm-btn__wrap .contact__btn {
  margin-top: 30px;
}

.contact__thanks {
  padding: 80px 0;
  max-width: 700px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 767px) {
  .contact__thanks {
    padding: 60px 0;
    width: 84%;
  }
}
.contact__thanks h2 {
  color: #ED8395;
  font-size: 32px;
  font-family: "Noto Serif JP", serif;
  text-align: center;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .contact__thanks h2 {
    font-size: 24px;
    text-align: left;
  }
}
.contact__thanks p {
  text-align: center;
}
@media (max-width: 767px) {
  .contact__thanks p {
    text-align: left;
  }
}
.contact__thanks .thanks-btn a {
  display: block;
  border-color: #ED8395;
  background-color: #ED8395;
  color: #ffffff;
  padding: 14px;
  width: 250px;
  margin-right: auto;
  margin-left: auto;
  margin-top: 40px;
  border-radius: 50px;
  text-align: center;
  position: relative;
}
.contact__thanks .thanks-btn a::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 7px;
  height: 12px;
  background: url(../img/common/arrow-white.png) no-repeat center/cover;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (min-width: 1200px) {
  .contact__thanks .thanks-btn a:hover::after {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    right: 15px;
  }
}

.wpcf7 form .wpcf7-response-output {
  display: none;
}