@charset "UTF-8";
/*
Theme Name: name
Theme URL: テーマのサイトのURL
Description: テーマの説明
Author: 作者の名前
version： 1.0.0
Tags: テーマの特徴を表すタグ（カンマ区切り/オプション）
License: テーマのライセンス
License URI: テーマのライセンスのURI
*/
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
*
*	style.scss 
*
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
*
*	_base.scss s
*
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/*====================
モバイルファースト
- 〜767px：スマートフォン縦
- 768px〜：タブレット
- 〜1279px：小型PC(Windows/Macなど) 1440
- 1280px〜：大型PC(外部モニター/iMacなど) 1441
====================*/
/* 〜767px：SPまで
------------------------------ */
/* 768px〜：タブレットから
------------------------------ */
/* 1024px〜：小型PCから
------------------------------ */
/* 1280px〜：大型PCから
------------------------------ */
@media screen and (min-width: 999px) {
  .sp_content {
    display: none !important;
  }
}
@media screen and (max-width: 1000px) {
  .pc_content {
    display: none !important;
  }
}
body {
  font-family: YakuHanJP_Noto, "Noto Sans JP", sans-serif;
}

html {
  font-size: 62.5%;
  height: 100%;
}

body,
p {
  font-size: 1.5rem;
  line-height: 1.5;
}

.section_box {
  padding: 0 20px;
}

/* text
------------------------------ */
body {
  font-family: "Inter Tight", sans-serif;
  font-family: "Noto Serif JP", serif;
}

h2,
h3,
h4 {
  font-weight: 400;
}

.color-white {
  color: #fff;
}

.module-title {
  position: relative;
  font-size: 28px;
  line-height: 1.6;
  text-align: center;
  margin: 56px 0;
}
@media screen and (min-width: 768px) {
  .module-title {
    font-size: 40px;
    margin: 80px 0;
  }
}
.module-title:before {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  box-sizing: border-box;
  top: -30px;
  height: 30px;
  width: 100%;
  background-image: url(assets/images/title-effect01.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 80px;
}
.module-title:after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 6px;
  box-sizing: border-box;
  bottom: -30px;
  height: 30px;
  width: 100%;
  background-image: url(assets/images/title-effect02.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 80px;
}

.module-mini-title {
  position: relative;
  font-size: 22px;
  line-height: 1.6;
  text-align: center;
  margin: 56px 0;
}
@media screen and (min-width: 768px) {
  .module-mini-title {
    font-size: 40px;
    margin: 80px 0;
  }
}
.module-mini-title:before {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  box-sizing: border-box;
  top: -30px;
  height: 30px;
  width: 100%;
  background-image: url(assets/images/title-effect01.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 80px;
}
.module-mini-title:after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 6px;
  box-sizing: border-box;
  bottom: -30px;
  height: 30px;
  width: 100%;
  background-image: url(assets/images/title-effect02.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 80px;
}

/* section / wrapper
------------------------------ */
.section {
  padding: 64px 0;
}
@media screen and (min-width: 768px) {
  .section {
    padding: 64px 0;
  }
}

.section-none {
  padding: 0;
}

.section-hero {
  padding: 0;
}
@media screen and (min-width: 768px) {
  .section-hero {
    padding: 0;
  }
}

@media screen and (min-width: 768px) {
  .wrapper {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 32px;
  }
}

.wrapper-none {
  padding: 0;
}

.bg-gray {
  background-color: #333;
}

.bg-wakayama {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(./assets/images/club-cats-wakayama-thumb.png);
}
.bg-wakayama::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
}

.bg-honten {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(./assets/images/img-concept-izumisano.png);
}
.bg-honten::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
}

/* effect
------------------------------ */
.display-none {
  display: none;
}

/* btn
------------------------------ */
.module-btn {
  max-width: 220px;
  margin: 24px auto;
  background-color: #333333;
  border-radius: 8px;
}
.module-btn a {
  display: block;
  color: #fff;
  font-size: 16px;
  line-height: 1;
  padding: 16px 0;
  text-align: center;
  text-decoration: none;
}

.module-cta {
  margin: 24px;
}
.module-cta__tel {
  max-width: 220px;
  margin: 0 auto 16px auto;
}
.module-cta__tel a {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background-color: #d6415c;
  border-radius: 8px;
  padding: 16px 0;
  text-decoration: none;
}
.module-cta__tel a span {
  display: block;
  width: 30%;
  color: #fff;
  text-align: center;
  font-size: 14px;
  line-height: 1;
}
.module-cta__tel a p {
  width: 60%;
  color: #fff;
  font-size: 20px;
  line-height: 1;
  margin: 0;
}
.module-cta__line {
  max-width: 220px;
  margin: 0 auto 16px auto;
}
.module-cta__line a {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background-color: #06c755;
  border-radius: 8px;
  padding: 16px 0;
  text-decoration: none;
}
.module-cta__line a span {
  display: block;
  width: 30%;
  color: #fff;
  text-align: center;
  font-size: 14px;
  line-height: 1;
}
.module-cta__line a p {
  width: 60%;
  color: #fff;
  font-size: 20px;
  line-height: 1;
  margin: 0;
}

.module-image-cta {
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .module-image-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 800px;
  }
}
.module-image-cta__content {
  width: 240px;
  margin: 10px auto 10px auto;
}

.view-more {
  max-width: 240px;
  margin: 24px auto;
}

.mt-0 {
  margin-top: 0px !important;
}

.youtube-wrapper {
  margin: 30px 0 30px 0;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.youtube-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.youtube-head {
  text-align: center;
  font-size: 18px;
  margin: -10px 0;
}

.title h2 {
  font-size: 20px;
}
.title__box ul {
  padding: 0;
}
.title__box ul li {
  line-height: 1;
}

.title h2 {
  padding: 0 16px;
  font-size: 26px;
  line-height: 1.25;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .title h2 {
    font-size: 32px;
    margin: 0;
  }
}
.title__sub {
  font-size: 12px;
  line-height: 1.6;
  text-align: center;
}

.btn-outline {
  display: inline-block;
  margin-top: 16px;
  font-size: 12px;
  line-height: 0;
  font-weight: 700;
  color: #fff;
  padding: 22px 20px;
  text-decoration: none;
  border: 1px solid #fff;
}

.hero-images li img {
  width: 100%;
  object-fit: cover;
}

.hero {
  margin-top: 56px;
}
@media screen and (min-width: 768px) {
  .hero {
    margin-top: 0;
  }
}
.hero img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .hero__sp {
    display: none;
  }
}
.hero__tab {
  display: none;
}
@media screen and (min-width: 768px) {
  .hero__tab {
    display: block;
  }
}

.video {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.video__sec {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .video__sec {
    width: 100%;
  }
}
.video__sec .video-frame {
  width: 100%;
  margin: 0 auto;
  display: block;
}

.consept-section {
  background-size: cover;
  background-image: url(assets/images/sample-bg.jpeg);
}

.concept img {
  width: 100%;
}
.concept__desc {
  padding: 0 24px;
}
@media screen and (min-width: 768px) {
  .concept__desc {
    padding-bottom: 40px;
  }
}
.concept__desc h2 {
  margin-bottom: 16px;
  font-size: 18px;
  line-height: 1.6;
  text-align: center;
  color: #96856c;
}
@media screen and (min-width: 768px) {
  .concept__desc h2 {
    font-size: 30px;
  }
}
.concept__desc p {
  font-size: 14px;
  letter-spacing: 0.8px;
  line-height: 2;
  font-weight: 300;
  text-align: center;
  margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .concept__desc p {
    margin: 0 auto;
    margin-top: 40px;
    text-align: center;
    font-size: 18px;
    line-height: 2.2;
  }
}
.concept__desc__br {
  display: block;
}
@media screen and (min-width: 768px) {
  .concept__desc__br {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .concept__thumb {
    display: flex;
    flex-wrap: wrap;
    margin: 36px 0;
  }
}
.concept__thumb__content {
  position: relative;
  margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .concept__thumb__content {
    width: 50%;
  }
}
.concept__thumb__content__box {
  width: 100%;
}
.concept__thumb__content__box__title {
  font-size: 17px;
  font-weight: 400;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.8);
  width: 100%;
  margin: 0;
  padding: 8px 24px;
}
.concept__thumb__content__box__desc {
  text-align: center;
  font-size: 14px;
  background-color: rgba(255, 255, 255, 0.8);
  width: 100%;
  margin: 0;
  padding: 8px 24px 24px 24px;
}
@media screen and (min-width: 768px) {
  .concept__thumb__content__box__desc {
    height: 60px;
    font-size: 10px;
  }
}
@media screen and (min-width: 768px) {
  .concept__thumb-second {
    display: flex;
    margin: 36px 0;
  }
}
.concept__thumb-second__content {
  position: relative;
}
.concept__thumb-second__content p {
  position: absolute;
  text-align: center;
  font-size: 14px;
  background-color: rgba(255, 255, 255, 0.8);
  width: 100%;
  bottom: 0;
  padding: 16px 0;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .concept__thumb-second__content {
    width: 50%;
  }
}

.peace__card {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .peace__card {
    display: flex;
    flex-wrap: wrap;
  }
}
.peace__card img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .peace__card img {
    width: 50%;
  }
}
.peace__card__desc {
  background-size: cover;
  background-image: url(assets/images/sample-bg.jpeg);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
  background-color: #eeecea;
  min-height: 120px;
}
@media screen and (min-width: 768px) {
  .peace__card__desc {
    width: 50%;
    margin-bottom: 0;
  }
}
.peace__card__desc p {
  font-size: 18px;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .peace__card__desc p {
    font-size: 24px;
  }
}
.peace__card-sp {
  display: block;
}
@media screen and (min-width: 768px) {
  .peace__card-sp {
    display: none;
  }
}
.peace__card-tab {
  display: none;
}
@media screen and (min-width: 768px) {
  .peace__card-tab {
    display: flex;
  }
}

.lineup {
  margin-top: -64px;
}
@media screen and (min-width: 768px) {
  .lineup {
    margin-top: 0px;
  }
}
@media screen and (min-width: 768px) {
  .lineup__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
.lineup__list__card {
  margin-bottom: 64px;
}
@media screen and (min-width: 768px) {
  .lineup__list__card {
    width: 100%;
  }
}
.lineup__list__card img {
  width: 100%;
}
.lineup__list__card h2 {
  margin: 20px;
  font-size: 18px;
  line-height: 1.6;
  text-align: center;
}
.lineup__list__card__subhead {
  text-align: center;
  margin: 10px;
  font-size: 17px;
}
@media screen and (min-width: 768px) {
  .lineup__list__card__subhead {
    margin: 24px;
  }
}
.lineup__list__access ul li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background-color: #eeecea;
  margin-bottom: 8px;
}
.lineup__list__access ul li span {
  display: block;
  width: 40%;
  padding: 0 30px;
  box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  .lineup__list__access ul li span {
    width: 30%;
  }
}
.lineup__list__access ul li p {
  width: 50%;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .lineup__list__access ul li p {
    width: 70%;
  }
}

.events {
  padding: 0 15px;
}
@media screen and (min-width: 768px) {
  .events {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
  }
}
@media screen and (min-width: 768px) {
  .events h2 {
    max-height: 70px;
  }
}
@media screen and (min-width: 768px) {
  .events ul {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-evenly;
    align-items: center;
    row-gap: 20px;
  }
}
.events li {
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .events li {
    width: auto;
    margin-bottom: 0;
    height: auto;
    margin-left: 1vw;
  }
}
.events li img {
  max-width: none;
  max-height: none;
}
@media screen and (min-width: 768px) {
  .events li img {
    width: 100%;
    max-width: 14vw;
    height: auto;
    max-height: 14vw;
  }
}

@media screen and (min-width: 768px) {
  .sister {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-evenly;
  }
}
@media screen and (min-width: 768px) {
  .sister h2 {
    max-height: 70px;
    max-width: 400px;
  }
}
@media screen and (min-width: 768px) {
  .sister ul {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-evenly;
    align-items: center;
  }
}
.sister li {
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .sister li {
    width: 22%;
    margin-bottom: 0;
  }
}
.sister li img {
  width: 100%;
}
.sister__link {
  max-width: 300px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .sister__link {
    margin: 0;
  }
}

@media screen and (min-width: 768px) {
  .recruit {
    width: 600px;
    margin: 0 auto;
  }
}
.recruit__cast-sp {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .recruit__cast-sp {
    display: none;
  }
}
.recruit__cast-pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .recruit__cast-pc {
    display: block;
    width: 80%;
  }
}
.recruit__desc {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  margin-top: -140px;
  max-width: 320px;
}
@media screen and (min-width: 768px) {
  .recruit__desc {
    max-width: 420px;
    margin-right: -30px;
  }
}
.recruit__desc__content {
  width: 100%;
  background: #fff;
  opacity: 0.9;
  border: 1px solid #96856c;
  text-align: center;
  padding: 24px 0;
}
.recruit__desc__content__gold {
  font-size: 16px;
  background-image: linear-gradient(150deg, rgb(181, 169, 148), rgb(170, 155, 129) 33%, rgb(202, 181, 146) 68%, rgb(167, 158, 141));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.recruit__desc__content__pink {
  color: #d6415c;
  font-size: 24px;
}
.recruit__desc__content__black {
  color: #333;
  font-size: 14px;
}

/*
Theme Name: name
Theme URL: テーマのサイトのURL
Description: テーマの説明
Author: 作者の名前
version： 1.0.0
Tags: テーマの特徴を表すタグ（カンマ区切り/オプション）
License: テーマのライセンス
License URI: テーマのライセンスのURI
*/
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
*
*	style.scss 
*
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
*
*	_animation.scss 
*
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeUpTrigger {
  opacity: 0;
}

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

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.delay-time02 {
  animation-delay: 0.2s;
}
@media screen and (max-width: 767px) {
  .delay-time02 {
    animation-delay: 0;
  }
}

.delay-time04 {
  animation-delay: 0.4s;
}
@media screen and (max-width: 767px) {
  .delay-time04 {
    animation-delay: 0;
  }
}

.delay-time06 {
  animation-delay: 0.6s;
}
@media screen and (max-width: 767px) {
  .delay-time06 {
    animation-delay: 0;
  }
}

.delay-time12 {
  animation-delay: 1.2s;
}
@media screen and (max-width: 767px) {
  .delay-time12 {
    animation-delay: 0;
  }
}

.delay-time18 {
  animation-delay: 1.8s;
}
@media screen and (max-width: 767px) {
  .delay-time18 {
    animation-delay: 0;
  }
}

/*
Theme Name: name
Theme URL: テーマのサイトのURL
Description: テーマの説明
Author: 作者の名前
version： 1.0.0
Tags: テーマの特徴を表すタグ（カンマ区切り/オプション）
License: テーマのライセンス
License URI: テーマのライセンスのURI
*/
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
*
*	style.scss 
*
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
*
*	_header.scss 
*
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
.header {
  position: fixed;
  z-index: 98;
  width: 100%;
  padding: 10px 0 8px 0;
  background-color: rgba(255, 255, 255, 0.9);
}
.header__sp {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-end;
  align-items: center;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .header__sp {
    display: none;
  }
}
.header__sp__left {
  width: 50%;
  padding-left: 16px;
}
.header__sp__left a {
  display: block;
}
.header__sp__left img {
  max-height: 40px;
}
.header__sp__sns {
  display: flex;
  justify-content: flex-end;
  margin-top: -5px;
  padding-right: 65px;
  width: 45%;
}
.header__sp__sns ul {
  display: flex;
  gap: 12px;
}
.header__sp__sns ul li {
  width: 30px;
}
@media screen and (min-width: 768px) {
  .header__sp__sns {
    display: none;
  }
}
.header__sp__right {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  width: 33%;
}
.header__pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .header__pc {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    height: 74px;
    margin: 0 auto;
    padding: 0 16px;
  }
  .header__pc__left {
    width: 20%;
  }
  .header__pc__left img {
    max-height: 45px;
  }
  .header__pc__right {
    width: 60%;
  }
  .header__pc__right ul {
    display: flex;
    justify-content: space-evenly;
  }
  .header__pc__right ul li {
    width: 12.5%;
    text-align: center;
  }
  .header__pc__right ul li a {
    text-decoration: none;
  }
  .header__pc__right ul li a span {
    display: block;
    background-image: linear-gradient(150deg, rgb(181, 169, 148), rgb(170, 155, 129) 33%, rgb(202, 181, 146) 68%, rgb(167, 158, 141));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 11px;
    margin-bottom: 8px;
  }
  .header__pc__right ul li a p {
    color: #111111;
    font-size: 12px;
    margin: 0;
  }
  .header__pc__sns {
    width: 15%;
  }
  .header__pc__sns ul {
    display: flex;
    gap: 20px;
  }
  .header__pc__sns ul li {
    width: 40px;
  }
  .header__pc__official-btn {
    width: 20%;
  }
}

#g-nav {
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position: fixed;
  z-index: 999;
  /*ナビのスタート位置と形状*/
  top: 0;
  left: -120%;
  width: 60vw;
  height: 100vh; /*ナビの高さ*/
  background: #fff;
  /*動き*/
  transition: all 0.15s ease-in;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive {
  left: 0;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list {
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999;
  width: 60vw;
  height: 100vh; /*表示する高さ*/
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

#g-nav-list ul {
  width: 100%;
}
#g-nav-list ul li {
  border-bottom: 1px solid #ddd;
}
#g-nav-list ul li a {
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  position: relative;
  letter-spacing: 0.5px;
  font-size: 14px;
  line-height: 1;
}
#g-nav-list ul li a::before {
  position: absolute;
  display: block;
  content: " ";
  width: 1px;
  height: 15px;
  background-color: #dfd7c8;
  left: 0;
  top: 50%;
  margin-top: -7px;
}
#g-nav-list ul li a span {
  font-family: "Arapey", Georgia, 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 400;
  font-style: italic;
  text-transform: none;
  font-size: 10px;
  display: block;
  margin-bottom: 4px;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(to bottom, #b1935e 0%, #e2d0af 50%, #b1935e 100%);
}

/*ナビゲーション*/
#g-nav ul {
  /*ナビゲーション天地中央揃え*/
  position: absolute;
  z-index: 999;
  padding: 0;
}

/*リストのレイアウト設定*/
#g-nav li {
  list-style: none;
  text-align: left;
}

#g-nav li a {
  color: #555555;
  text-decoration: none;
  padding: 15px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
}

/*========= ボタンのためのCSS ===============*/
.openbtn {
  position: absolute;
  z-index: 9999; /*ボタンを最前面に*/
  top: 3px;
  right: 10px;
  cursor: pointer;
  width: 50px;
  height: 50px;
}

/*×に変化*/
.openbtn span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background-color: #000;
  width: 45%;
}

.openbtn span:nth-of-type(1) {
  top: 15px;
}

.openbtn span:nth-of-type(2) {
  top: 23px;
}

.openbtn span:nth-of-type(3) {
  top: 31px;
}

.openbtn.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}

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

.openbtn.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}

.active {
  position: fixed;
}

/*
Theme Name: name
Theme URL: テーマのサイトのURL
Description: テーマの説明
Author: 作者の名前
version： 1.0.0
Tags: テーマの特徴を表すタグ（カンマ区切り/オプション）
License: テーマのライセンス
License URI: テーマのライセンスのURI
*/
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
*
*	style.scss 
*
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
*
*	_footer.scss 
*
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
.footer-section {
  border-top: 4px solid #dddddd;
  padding: 32px;
}

@media screen and (min-width: 768px) {
  .footer {
    display: flex;
    justify-content: center;
    max-width: 1080px;
    margin: 0 auto;
  }
}
.footer__logo-sp {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.footer__logo-sp img {
  width: 80%;
  margin-bottom: 16px;
}
@media screen and (min-width: 768px) {
  .footer__logo-sp img {
    display: none;
    width: 80%;
    margin-bottom: 0;
  }
}
.footer__logo-tab {
  display: none;
}
@media screen and (min-width: 768px) {
  .footer__logo-tab {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .footer__logo-tab img {
    max-width: 220px;
    margin-bottom: 0;
    margin: 0 20px;
  }
}
@media screen and (min-width: 768px) {
  .footer__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
}
.footer__list li {
  margin-bottom: 40px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .footer__list li {
    margin: 0 16px;
  }
}
.footer__list li a {
  color: #111111;
  text-decoration: none;
}
.footer__list li a span {
  display: block;
  background-image: linear-gradient(180deg, rgb(255, 186, 53) 19%, rgb(150, 127, 58) 68%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 11px;
  margin-bottom: 8px;
}
.footer__list li a p {
  margin: 0;
  font-size: 14px;
  color: #111111;
}
.footer__list li img {
  max-width: 140px;
  display: block;
  margin: 0 auto;
}

.end {
  text-align: center;
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .end {
    margin-top: 80px;
  }
}

/*
Theme Name: name
Theme URL: テーマのサイトのURL
Description: テーマの説明
Author: 作者の名前
version： 1.0.0
Tags: テーマの特徴を表すタグ（カンマ区切り/オプション）
License: テーマのライセンス
License URI: テーマのライセンスのURI
*/
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
*
*	style.scss 
*
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
*
*	_honten.scss 
*
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
.honten-hero img {
  width: 100%;
}

.fee-system__price {
  margin: 0 24px;
  border: 1px solid #96856C;
}
@media screen and (min-width: 768px) {
  .fee-system__price {
    max-width: 740px;
    margin: 0 auto;
  }
}
.fee-system__price__sec {
  margin: 20px;
  padding: 20px 0 50px 0;
  border-bottom: 1px solid #96856C;
}
.fee-system__price__sec:last-of-type {
  border-bottom: none;
}
@media screen and (min-width: 768px) {
  .fee-system__price__sec {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px 50px 40px;
  }
}
.fee-system__price__sec__title {
  text-align: center;
}
.fee-system__price__sec__title p {
  margin-top: 8px;
  margin-bottom: 8px;
  font-size: 24px;
}
.fee-system__price__sec__title span {
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .fee-system__price__sec__title {
    text-align: left;
  }
  .fee-system__price__sec__title p {
    font-size: 32px;
  }
  .fee-system__price__sec__title span {
    font-size: 16px;
  }
}
.fee-system__price__sec__desc {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}
.fee-system__price__sec__desc__time {
  text-align: center;
}
.fee-system__price__sec__desc__time p {
  margin: 56px 0;
  font-size: 24px;
}
@media screen and (min-width: 768px) {
  .fee-system__price__sec__desc__time {
    margin-right: 40px;
  }
  .fee-system__price__sec__desc__time p {
    margin: 0;
    font-size: 32px;
  }
}
.fee-system__price__sec__desc__yen {
  text-align: center;
  padding-top: 20px;
}
.fee-system__price__sec__desc__yen p {
  margin: 0;
  font-size: 24px;
  margin-bottom: 0;
}
.fee-system__price__sec__desc__yen span {
  margin-right: -60px;
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .fee-system__price__sec__desc__yen {
    padding-top: 10px;
  }
  .fee-system__price__sec__desc__yen p {
    margin: 0;
    font-size: 32px;
  }
  .fee-system__price__sec__desc__yen span {
    font-size: 16px;
  }
}
.fee-system__desc {
  padding-top: 60px;
}
.fee-system__desc p {
  text-align: center;
  margin: 18px 0;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .fee-system__desc p {
    margin: 40px 0;
  }
}
.fee-system__desc__card {
  margin: 30px 0;
  padding: 24px;
  background: #EEECEA;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .fee-system__desc__card {
    max-width: 740px;
    margin: 30px auto;
  }
}
.fee-system__desc__card p {
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .fee-system__desc__card p {
    margin: 0 0 20px 0;
  }
}
.fee-system__desc__card img {
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .fee-system__desc__card img {
    max-width: 500px;
  }
}
.fee-system__desc__card ul {
  margin: 20px 0;
}

.kashikiri {
  display: block;
  margin: 30px 0;
}

#contact {
  padding-top: 50px;
}

.information__shop {
  background-color: #EEECEA;
  padding: 40px;
}
@media screen and (min-width: 768px) {
  .information__shop__inner {
    display: flex;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
  }
  .information__shop__inner__logo {
    width: 414px;
  }
}
.information__shop__inner__cta {
  width: 80%;
  margin: 0 auto;
  padding: 20px 0;
  display: grid;
  gap: 20px;
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .information__shop__inner__cta {
    display: flex;
    padding: 20px;
    margin: 0;
    gap: 10px;
    margin-top: 0px;
  }
}
@media screen and (min-width: 768px) {
  .information__shop__inner__cta__tel {
    width: 33%;
  }
}
@media screen and (min-width: 768px) {
  .information__shop__inner__cta__line {
    width: 33%;
  }
}
@media screen and (min-width: 768px) {
  .information__shop__inner__cta__instagram {
    width: 33%;
  }
}

.access {
  margin-bottom: 80px;
}
@media screen and (min-width: 768px) {
  .access {
    display: flex;
    align-items: center;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 768px) {
  .access__googlemap {
    width: 50%;
  }
}
.access__desc {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .access__desc {
    width: 50%;
  }
}
.access__desc h2 {
  font-size: 24px;
  color: #333;
}
.access__desc p {
  font-size: 16px;
  line-height: 1.6;
  margin: 8px 0;
}

.gmap {
  margin: 0 auto;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .gmap {
    margin-top: 36px;
    padding: 0 36px;
  }
}
.gmap p {
  margin-bottom: 2rem;
  font-size: 1.6rem;
  letter-spacing: 0.3rem;
}
@media screen and (max-width: 767px) {
  .gmap p {
    font-size: 1.4rem;
    letter-spacing: 0.2rem;
  }
}
@media screen and (max-width: 767px) {
  .gmap iframe {
    height: 300px;
  }
}

/*
Theme Name: name
Theme URL: テーマのサイトのURL
Description: テーマの説明
Author: 作者の名前
version： 1.0.0
Tags: テーマの特徴を表すタグ（カンマ区切り/オプション）
License: テーマのライセンス
License URI: テーマのライセンスのURI
*/
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
*
*	style.scss 
*
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
*
*	_rec.scss 
*
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
.body_rec {
  background-color: #fff;
}

.rec-inner-box {
  width: 800px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .rec-inner-box {
    width: 100%;
    max-width: 100%;
    min-width: 100%;
    padding: 0 1.8rem;
  }
}

.m-c {
  margin: 0 auto;
}

#header_rec {
  display: flex;
  justify-content: space-between;
  align-items: center;
  top: 0;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  transition: all 0.2s ease 0s;
  z-index: 100;
}
@media screen and (max-width: 767px) {
  #header_rec {
    display: flex;
    justify-content: center;
    align-items: center;
    position: sticky;
    margin-bottom: 1rem;
    padding: 1.2rem 1.8rem;
    background-color: #fff;
  }
}

.header__1 {
  display: flex;
  align-items: center;
  max-width: 350px;
  width: 25%;
  padding: 1rem 0rem 1rem 5rem;
}
.header__1 a {
  transition: all 0.2s;
}
.header__1 a:hover {
  opacity: 0.5;
}
@media screen and (max-width: 767px) {
  .header__1 {
    width: 80%;
    max-width: 400px;
    padding: 0 4rem;
  }
}

.header_logo_rec {
  width: 140px;
  margin-right: 10%;
}
.header_logo_rec:hover {
  opacity: 0.6;
}

.header__2 {
  width: 50%;
  padding: 0 2vw;
}
@media screen and (max-width: 767px) {
  .header__2 {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 0;
  }
}

.g-nav_rec {
  font-family: "Noto Serif JP", serif;
}
.g-nav_rec ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.g-nav_rec li {
  width: 23%;
  margin: 0 1%;
  margin-bottom: 1rem;
  transition: all 0.2s ease 0s;
}
.g-nav_rec li img {
  margin: 0 auto;
}
.g-nav_rec li:hover {
  opacity: 0.5;
}
.g-nav_rec a {
  display: block;
  width: 100%;
  color: #000;
}
@media screen and (max-width: 767px) {
  .g-nav_rec {
    width: 100%;
    margin: 0;
    padding: 0 1rem;
  }
  .g-nav_rec ul {
    justify-content: space-around;
  }
  .g-nav_rec li {
    width: 49%;
    margin: 0;
    padding: 0 2px 10px 2px;
  }
}

.header__3 {
  display: flex;
  align-items: center;
  width: 25%;
}
.header__3 img {
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .header__3 {
    display: block;
    width: 100%;
    padding: 1rem 1.5rem;
  }
  .header__3 a {
    margin: 0 auto;
  }
  .header__3 img {
    margin-bottom: 1rem;
    margin-left: auto;
    margin-right: auto;
  }
}

#header_rec.UpMove {
  animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-100px);
  }
}
#header_rec.DownMove {
  animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media screen and (min-width: 768px) {
  .header-space {
    margin-top: 15rem;
  }
}
@media screen and (max-width: 767px) {
  .header-space {
    margin-top: 11rem;
  }
}

.hero_rec p {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .hero_rec p {
    text-align: left;
  }
}

.contents_rec {
  padding: 3rem 0;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .contents_rec {
    padding-top: 0;
  }
}

.inner-box_rec {
  width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media screen and (max-width: 767px) {
  .inner-box_rec {
    width: 100%;
    max-width: 100%;
    min-width: 100%;
    padding: 2rem 1.8rem;
  }
}

.inner-box_rec--hover {
  transition: all 0.2s;
}
.inner-box_rec--hover:hover {
  opacity: 0.5;
}

.spacer {
  margin-top: 11rem;
}

.spacer2 {
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .spacer2 {
    margin-top: 4rem;
  }
}

.f_ttl {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 5rem;
  color: #000;
  font-weight: bold;
  font-size: 3.6rem;
  line-height: 4.8rem;
  font-family: "Noto Serif JP", serif;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .f_ttl {
    font-size: 1.8rem;
    line-height: 1.4;
    letter-spacing: 0.1rem;
    padding: 3rem 0;
  }
}
.f_ttl__text {
  color: #b79142 !important;
}
@media screen and (max-width: 767px) {
  .f_ttl__iconleft {
    width: 15%;
  }
}
@media screen and (max-width: 767px) {
  .f_ttl__iconright {
    width: 15%;
  }
}

.ttl_s {
  font-size: 3.2rem;
}
@media screen and (max-width: 767px) {
  .ttl_s {
    font-size: 1.8rem;
  }
}

.n_ttl {
  padding: 4rem 0;
  color: #000;
  font-weight: bold;
  font-size: 3.6rem;
  line-height: 4.8rem;
  font-family: "Noto Serif JP", serif;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .n_ttl {
    padding: 2rem;
    font-size: 2.2rem;
    line-height: 1.4;
    letter-spacing: 0.1rem;
  }
}

.n_desc {
  margin-bottom: 6rem;
  color: #000;
  font-size: 2.6rem;
  line-height: 3.8rem;
  font-family: "Noto Serif JP", serif;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .n_desc {
    margin-bottom: 0;
    font-size: 1.4rem;
    line-height: 1.4;
  }
}

.video_rec {
  padding: 4rem 0;
}
@media screen and (max-width: 767px) {
  .video_rec {
    padding: 0 1.8rem;
  }
}

.video__sec_rec {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
  margin-top: -50px;
  padding: 2rem;
}
@media screen and (max-width: 767px) {
  .video__sec_rec {
    margin-top: -10px;
  }
}

.youtube {
  position: relative;
  padding-bottom: 56.25%;
  /*アスペクト比 16:9の場合の縦幅*/
  height: 0;
  overflow: hidden;
}
.youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.main_menu {
  padding: 5rem 0;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .main_menu {
    padding: 3rem 0;
  }
}

.sponser {
  margin: 3rem auto 10rem auto;
}
.sponser img {
  width: 100%;
  max-width: 760px;
  margin: 0 auto 6rem auto;
}

.case__title img {
  margin: 0 auto;
  margin-bottom: 5rem;
}

.case__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 7rem;
  margin-bottom: 5rem;
  border: 1px solid #fff;
  border-radius: 1rem;
  background-color: #c59d46;
}
.case__btn p {
  margin-right: 5rem;
  color: #5a0801;
  font-size: 2.2rem;
  font-weight: 300;
  font-family: "Noto Serif JP", serif;
}
.case__btn a {
  color: #956d17;
}
.case__btn img {
  box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  transition: all 0.2s;
}
.case__btn img:hover {
  box-shadow: 0 0 0 0 rgb(0, 0, 0);
  transform: translateY(3px);
}
@media screen and (max-width: 767px) {
  .case__btn {
    flex-wrap: wrap;
    margin-bottom: 2rem;
    padding: 2rem 3rem;
  }
  .case__btn p {
    margin-right: 0;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    text-align: center;
  }
}

.main_menu_page {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.main_menu_page_row {
  width: 30%;
  margin-bottom: 5rem;
  border-radius: 1rem;
  box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.3);
  transition: all 0.2s;
}
.main_menu_page_row:hover {
  box-shadow: 0 0 0 0 rgb(0, 0, 0);
  opacity: 0.8;
  transform: translateY(3px);
}
@media screen and (max-width: 767px) {
  .main_menu_page_row {
    width: 47%;
    background-color: #fff;
  }
}

.menu_thumb img {
  width: 100%;
  height: auto;
  border-radius: 1rem 1rem 0 0;
}

.menu_descbox {
  background-color: #fff;
  border-radius: 0 0 1rem 1rem;
}

.menu_ttl {
  padding: 1.5rem 0;
  font-size: 1.8rem;
  text-align: center;
  font-weight: bold;
  font-family: "Noto Serif JP", serif;
  color: #956d17;
}
@media screen and (max-width: 767px) {
  .menu_ttl {
    font-size: 1.5rem;
    padding: 1.2rem;
  }
}

.menu_desc {
  padding: 0 3rem 3rem 3rem;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 2.4rem;
  font-family: "Noto Serif JP", serif;
  color: #333;
}
@media screen and (max-width: 767px) {
  .menu_desc {
    padding: 0 1.5rem 1.5rem 1.5rem;
    font-size: 1.2rem;
    line-height: 1.8;
  }
}

.banner_rec img {
  margin: 5rem auto;
  transition: all 0.2s;
}
.banner_rec img:hover {
  opacity: 0.5;
}
@media screen and (max-width: 767px) {
  .banner_rec img {
    margin: 0 auto 3rem auto;
    padding: 0;
  }
}
@media screen and (max-width: 767px) {
  .banner_rec {
    margin-top: -3rem;
  }
}

.banner-box {
  max-width: 1000px;
  margin: 3rem auto;
  padding: 0 20px;
}

.footer_rec {
  background-color: #fff;
}

.footer__box_rec {
  padding: 3rem 0;
}
.footer__box_rec a {
  color: #000;
  text-decoration: none;
  transition: all 0.2s;
}
.footer__box_rec a:hover {
  opacity: 0.5;
}

.footer__logo_rec img {
  width: 100%;
  max-width: 100px;
  margin: 3rem auto 6rem auto;
  transition: all 0.2s;
}
.footer__logo_rec img:hover {
  opacity: 0.5;
}
@media screen and (max-width: 767px) {
  .footer__logo_rec img {
    max-width: 160px;
  }
}

.footer__list_rec {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 600px;
  margin: 0 auto;
}
.footer__list_rec ul {
  width: 50%;
  color: #000;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 767px) {
  .footer__list_rec ul {
    width: 100%;
  }
}
.footer__list_rec li {
  margin: 1.2rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid #000;
}
.footer__list_rec li:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0da";
  font-weight: 900;
  padding-right: 1rem;
  color: #000;
}
@media screen and (max-width: 767px) {
  .footer__list_rec {
    width: 100%;
    padding: 0 5rem;
  }
}

.footer__end_rec {
  background: #a57b0a;
}
.footer__end_rec p {
  padding-bottom: 2rem;
  color: #fff;
  text-align: center;
  font-family: "Noto Serif JP", serif;
}

.footer__end__box {
  display: flex;
  justify-content: center;
  padding: 3rem 0;
}
.footer__end__box img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .footer__end__box img {
    width: 100%;
    margin: 2rem 0;
  }
}
@media screen and (max-width: 767px) {
  .footer__end__box {
    flex-wrap: wrap;
    padding: 2rem;
  }
}

.footer__end_row {
  width: 30%;
  margin: 0 2rem;
}
@media screen and (max-width: 767px) {
  .footer__end_row {
    width: 100%;
    margin: 0;
  }
}

.copyright {
  padding: 1rem;
  background: #EFEDE8;
  color: #999999;
  font-weight: 300;
  font-size: 1rem;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.4rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .copyright {
    letter-spacing: 0.1rem;
  }
}

.head_ttl {
  width: 100%;
  background-color: #EFEDE8;
  margin-top: -3rem;
  padding: 5rem 0 5rem 0;
  color: #fff;
  font-weight: bold;
  font-family: "Noto Serif JP", serif;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .head_ttl {
    padding: 2.5rem 0;
  }
}
.head_ttl h1 {
  font-size: 3rem;
  line-height: 1.8;
  letter-spacing: 0.2rem;
  color: #b79142;
}
@media screen and (max-width: 767px) {
  .head_ttl h1 {
    font-size: 2rem;
    line-height: 1.2;
  }
}
.head_ttl span {
  font-size: 1.2rem;
  letter-spacing: 0.1rem;
  color: #b79142;
}
@media screen and (max-width: 767px) {
  .head_ttl span {
    font-size: 1rem;
  }
}

.bd_ttl {
  max-width: 800px;
  background: #424242;
  border-radius: 5rem;
  margin: 5rem auto 2rem auto;
  padding: 2rem;
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .bd_ttl {
    padding: 0.8rem 0;
    font-size: 1.8rem;
  }
}

.content_box {
  max-width: 800px;
  margin: 0 auto;
}
.content_box p {
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  line-height: 1.8;
  text-align: center;
  font-weight: bold;
  letter-spacing: 0.1rem;
}
.content_box span {
  color: #f07491;
}

.page_box {
  color: #fff;
  font-family: "Noto Serif JP", serif;
}
.page_box p {
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  line-height: 1.8;
  text-align: center;
  font-weight: 300;
  letter-spacing: 0.1rem;
  color: #000;
}
@media screen and (max-width: 767px) {
  .page_box p {
    font-weight: 400;
    font-size: 1.4rem;
    line-height: 1.5;
    letter-spacing: 0;
    text-align: left;
  }
}
.page_box span {
  color: #f07491;
}

.inner_page_box {
  max-width: 800px;
  margin: 0 auto;
  margin-bottom: 8rem;
}
.inner_page_box p {
  color: #000;
}
@media screen and (max-width: 767px) {
  .inner_page_box {
    margin-top: 0;
    margin-bottom: 6rem;
  }
}

.rec-application01 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  max-width: 800px;
  margin: 2rem auto;
}
@media screen and (max-width: 767px) {
  .rec-application01 {
    padding: 0 7rem;
  }
}

.rec-application01_row {
  display: flex;
  align-items: center;
}
.rec-application01_row img {
  margin-right: 1.5rem;
}
@media screen and (max-width: 767px) {
  .rec-application01_row img {
    width: 100px;
  }
}
.rec-application01_row p {
  color: #000;
  font-size: 1.8rem;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 767px) {
  .rec-application01_row {
    margin-bottom: 1.5rem;
  }
}

.application_banner img {
  margin: 2rem auto;
}

.application_step img {
  margin-bottom: 1rem;
}

.application_item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 3rem 0 5rem 0;
}
.application_item img {
  width: 18%;
}
@media screen and (max-width: 767px) {
  .application_item img {
    width: 100%;
    margin-bottom: 2rem;
  }
}

.detail-list {
  width: 100%;
  max-width: 800px;
  font-size: 1.6rem;
  line-height: 1.8;
  letter-spacing: 0.03em;
  border-collapse: separate;
  border-spacing: 0 1.5rem;
}
@media screen and (max-width: 767px) {
  .detail-list {
    font-size: 1.4rem;
  }
}
.detail-list td {
  padding: 2rem 3rem;
  background: #EEECEA;
  vertical-align: middle;
}
.detail-list td:nth-child(1) {
  width: 22%;
  background-color: #ddccaf;
  background-image: linear-gradient(90deg, #ddccaf 0%, #f9eeda 42%, #cab592 100%);
  padding: 0;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .detail-list td:nth-child(1) {
    width: 28%;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .detail-list td {
    padding: 2rem 2rem;
  }
}

.pay_case {
  margin: 4rem 0;
}
.pay_case img {
  margin-bottom: 3rem;
}

.pay_calc {
  margin-top: 5rem;
}

.pay_calk_box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .pay_calk_box {
    justify-content: space-between;
  }
}

.pay_calc .pay_calc_ttl {
  display: block;
  min-width: 200px;
  background: #f07491;
  border-radius: 5rem;
  padding: 0.5rem 2rem;
  margin-bottom: 2rem;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .pay_calc .pay_calc_ttl {
    width: 100%;
    min-width: 100%;
    font-size: 1.2rem;
  }
}

.pay_calc_pulldown {
  margin: 0 1rem;
}
@media screen and (max-width: 767px) {
  .pay_calc_pulldown {
    width: 43%;
    margin: 0;
  }
}
.pay_calc_pulldown select {
  display: block;
  width: 180px;
  padding: 0.5rem 0.8rem;
  margin: 0 auto;
  font-size: 1.6rem;
  border: 1px solid #fff;
  font-family: "Noto Serif JP";
  background: black;
  color: #fff;
  outline: none;
}
@media screen and (max-width: 767px) {
  .pay_calc_pulldown select {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .pay_calc_x {
    width: 7%;
  }
}

.pay_calc_btn {
  margin: 0 2rem;
}
@media screen and (max-width: 767px) {
  .pay_calc_btn {
    margin: 3rem auto;
  }
}
.pay_calc_btn input {
  width: 170px;
  height: 70px;
  border: none;
  border-radius: 1rem;
  background: #b78f14;
  box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.1);
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
  font-family: "Noto Serif JP";
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  transition: all 0.2s;
}
.pay_calc_btn input:hover {
  box-shadow: 0 0 0 0 rgb(0, 0, 0);
  transform: translateY(3px);
}
@media screen and (max-width: 767px) {
  .pay_calc_btn input {
    width: 100%;
    height: auto;
    padding: 2.5rem 6rem;
  }
}
.pay_calc_btn input,
.pay_calc_btn textarea,
.pay_calc_btn select {
  -webkit-appearance: none;
}

.pay_calc_result {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border: 5px solid #f07491;
  padding: 3rem;
  margin: 3rem auto;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .pay_calc_result {
    flex-wrap: wrap;
    justify-content: center;
  }
}

.pay_calc_result .pay_calc_result_ttl {
  display: block;
  min-width: 200px;
  background: #f07491;
  border-radius: 5rem;
  padding: 0.5rem 2rem;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .pay_calc_result .pay_calc_result_ttl {
    margin-bottom: 3rem;
    font-size: 1.2rem;
  }
}

.pay_calc_resultabox {
  display: flex;
  align-items: center;
}
.pay_calc_resultabox span {
  color: #000;
  font-size: 2.4rem;
  font-weight: bold;
}
.pay_calc_resultabox input {
  max-width: 160px;
  border: none;
  margin-top: -7px;
  margin-right: 0.5rem;
  font-size: 4rem;
  font-weight: bold;
  text-align: right;
  font-family: "Noto Serif JP", serif;
  outline: none;
}
@media screen and (max-width: 767px) {
  .pay_calc_resultabox input {
    max-width: 220px;
  }
}

.privacy-row {
  padding: 3rem 0;
}
.privacy-row h2 {
  width: 100%;
  padding: 0.8rem 0;
  margin-bottom: 2rem;
  border-bottom: 1px solid #a58122;
  font-size: 1.8rem;
  color: #000;
}
@media screen and (max-width: 767px) {
  .privacy-row h2 {
    padding: 2rem 0 1rem 0;
    font-size: 1.6rem;
  }
}
.privacy-row p {
  padding-left: 6rem;
  text-align: left;
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  .privacy-row p {
    padding-left: 5rem;
  }
}
@media screen and (max-width: 767px) {
  .privacy-row {
    padding: 0 0 3rem 0;
  }
}

.privacy-row-ttl {
  display: flex;
  align-items: center;
}
.privacy-row-ttl img {
  width: 50px;
  margin-right: 1rem;
}
@media screen and (max-width: 767px) {
  .privacy-row-ttl img {
    width: 40px;
  }
}

.question-row {
  padding: 3rem 0;
}
.question-row h3 {
  width: 100%;
  padding: 0.8rem 0;
  margin-bottom: 2rem;
  border-bottom: 1px solid #a58122;
  font-size: 1.8rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .question-row h3 {
    padding: 2rem 0 1rem 0;
    font-size: 1.6rem;
  }
}
.question-row p {
  padding-left: 6rem;
  text-align: left;
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  .question-row p {
    padding-left: 5rem;
  }
}
@media screen and (max-width: 767px) {
  .question-row {
    padding: 0 0 3rem 0;
  }
}

.question-row-ttl {
  display: flex;
  align-items: center;
}
.question-row-ttl h3 {
  color: #000;
}
.question-row-ttl img {
  width: 50px;
  margin-right: 1rem;
}
@media screen and (max-width: 767px) {
  .question-row-ttl img {
    width: 40px;
  }
}

@media screen and (max-width: 767px) {
  .summary_space {
    margin-bottom: 4rem;
  }
}

.summary_box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin: 4rem 0;
}

.summary_box_text p {
  font-size: 2.2rem;
  text-align: left;
  color: #000;
}
@media screen and (max-width: 767px) {
  .summary_box_text p {
    font-size: 1.9rem;
    text-align: left;
    line-height: 1;
  }
}
@media screen and (max-width: 767px) {
  .summary_box_text {
    margin-bottom: 3rem;
  }
}

.treatment_box1 {
  margin-top: -2rem;
}
.treatment_box1 p {
  max-width: 400px;
  margin: 0 auto;
  margin-bottom: 2rem;
  padding: 0.5rem 2rem;
  background: #fff;
  color: #f07491;
}
@media screen and (max-width: 767px) {
  .treatment_box1 p {
    margin-bottom: 1rem;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .treatment_box1 {
    margin: 1rem 1rem 3rem;
  }
}

.treatment_box2 img {
  margin: 3.5rem auto;
}

.treatment_box3 {
  margin-top: -6rem;
}
@media screen and (max-width: 767px) {
  .treatment_box3 {
    margin-top: -3rem;
  }
}

.voice_box {
  margin-bottom: 4.5rem;
  padding: 2rem 2rem;
  border: 1px solid pink;
  border-radius: 1rem;
  background: #fff;
}
.voice_box span {
  display: block;
  margin: 2rem 0;
  font-size: 2rem;
  font-weight: bold;
}
.voice_box span::before {
  position: relative;
  top: 0.5rem;
  left: 0;
  margin-right: 1.2rem;
  content: url(/images/icon_review.png);
}
.voice_box p {
  color: #333333;
  font-weight: 300;
  font-size: 1.6rem;
  line-height: 1.8;
  text-align: left;
}

.work_box {
  margin-bottom: 8rem;
}

.work_step {
  display: flex;
  align-items: flex-start;
  margin: 2rem 0;
}
@media screen and (max-width: 767px) {
  .work_step {
    margin: 1rem 0;
  }
}
.work_step img {
  margin-right: 2rem;
}
@media screen and (max-width: 767px) {
  .work_step img {
    max-width: 40px;
    margin-right: 1rem;
  }
}
.work_step p {
  text-align: left;
  font-size: 1.8rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .work_step p {
    font-size: 1.4rem;
    line-height: 2.1rem;
  }
}

.video-rec {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 4rem 0;
}

.video-rec__sec {
  width: 100%;
  padding: 2rem;
}
@media screen and (max-width: 767px) {
  .video-rec__sec {
    width: 100%;
  }
}
.video-rec__sec .video-rec-frame {
  width: 100%;
  margin: 3rem auto;
  display: block;
}

.youtube {
  position: relative;
  padding-bottom: 56.25%;
  /*アスペクト比 16:9の場合の縦幅*/
  height: 0;
  overflow: hidden;
  margin: 2rem 0 0 0;
}
@media screen and (max-width: 767px) {
  .youtube {
    margin: 1rem 0;
  }
}
.youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*
Theme Name: name
Theme URL: テーマのサイトのURL
Description: テーマの説明
Author: 作者の名前
version： 1.0.0
Tags: テーマの特徴を表すタグ（カンマ区切り/オプション）
License: テーマのライセンス
License URI: テーマのライセンスのURI
*/
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
*
*	style.scss 
*
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
*
*	_rec-male.scss 
*
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
.rec-male__hero {
  position: relative;
  height: 300px;
  margin-top: 92px;
}
@media screen and (max-width: 767px) {
  .rec-male__hero {
    height: 240px;
    margin-top: 70px;
  }
}
.rec-male__hero__text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.rec-male__hero__text span {
  display: block;
  font-size: 48px;
  line-height: 100%;
  margin: 14px;
  color: white;
}
@media screen and (max-width: 767px) {
  .rec-male__hero__text span {
    font-size: 24px;
  }
}
.rec-male__hero__text p {
  font-size: 18px;
  line-height: 100%;
  color: white;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .rec-male__hero__text p {
    font-size: 14px;
  }
}
.rec-male__hero img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  filter: brightness(50%);
}
@media screen and (max-width: 767px) {
  .rec-male__hero img {
    height: 240px;
  }
}

.lineup-link {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  margin-bottom: 50px;
}
@media screen and (min-width: 768px) {
  .lineup-link {
    justify-content: center;
  }
}
@media screen and (min-width: 768px) {
  .lineup-link__list {
    width: 45%;
  }
}
.lineup-link__list__title {
  text-align: center;
}
.lineup-link__list__title p {
  font-size: 18px;
}
.lineup-link__list__title p span {
  font-size: 14px;
}
.lineup-link__list__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 20px auto 20px auto;
  width: 80%;
}
@media screen and (min-width: 768px) {
  .lineup-link__list__cta__content {
    width: 45%;
  }
}/*# sourceMappingURL=style.css.map */