@charset "UTF-8";

/*------------------------------
*
* cmn-btn style
*
------------------------------*/
.cmn-btn {
  display: block;
  line-height: 1;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.1em;
}

.cmn-btn--white {
  background-color: #ffffff;
  position: relative;
  z-index: 1;
}

.cmn-btn--white::after {
  content: "";
  width: 10px;
  height: 1px;
  background-color: #e50e0d;
  transition: 0.3s;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.cmn-btn--white:hover::after {
  transform: translate(100%, -50%);
  background-color: #ffffff;
}

.cmn-btn--primary {
  background-color: #e50e0d;
  color: #fff;
  position: relative;
  z-index: 1;
}

.cmn-btn--primary::after {
  content: "";
  width: 10px;
  height: 1px;
  background-color: #fff;
  transition: 0.3s;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.cmn-btn--primary:hover::after {
  transform: translate(100%, -50%);
  background-color: #e50e0d;
}

.cmn-btn--regular {
  max-width: 180px;
  width: 100%;
  padding: 1em 1em;
}

.cmn-btn--medium {
  max-width: 270px;
  padding: 1em 1em;
  width: 300px;
}

.cmn-btn--large {
  max-width: 500px;
  padding: 1.0625em 1em;
  width: 100%;
}

.cmn-btn--center {
  margin: 0 auto;
}

.cmn-btn--left {
  margin-right: auto;
}

.cmn-btn--right {
  margin-left: auto;
}

/* ===========================================
*  
*  default styles
* 
* ======================================== */
body {
  font-size: 14px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 1.5;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: #111111;
  min-width: 320px;
  margin: 0 auto;
  position: relative;
}

/* ===========================================
*
* common-styles
*
* ======================================== */
/* 
margin クラス
-------------------------*/
.mt-min {
  margin-top: 8px;
}

.mt-smr {
  margin-top: clamp(0.875rem, calc(0.6960290828rem + 0.0089485459 * 100vw), 1.125rem);
}

.mt-sm {
  margin-top: clamp(1.3125rem, calc(1.1782718121rem + 0.0067114094 * 100vw), 1.5rem);
}

.mt-nm {
  margin-top: clamp(1.75rem, calc(1.5710290828rem + 0.0089485459 * 100vw), 2rem);
}

.mt-rg {
  margin-top: clamp(2.1875rem, calc(1.9637863535rem + 0.0111856823 * 100vw), 2.5rem);
}

.mt-md {
  margin-top: clamp(2.625rem, calc(2.3565436242rem + 0.0134228188 * 100vw), 3rem);
}

.mt-lg {
  margin-top: clamp(3.0625rem, calc(2.7493008949rem + 0.0156599553 * 100vw), 3.5rem);
}

.mt-lgr {
  margin-top: clamp(3.5rem, calc(3.1420581655rem + 0.0178970917 * 100vw), 4rem);
}

.mb-min {
  margin-bottom: 8px;
}

.mb-smr {
  margin-bottom: clamp(0.875rem, calc(0.6960290828rem + 0.0089485459 * 100vw), 1.125rem);
}

.mb-sm {
  margin-bottom: clamp(1.3125rem, calc(1.1782718121rem + 0.0067114094 * 100vw), 1.5rem);
}

.mb-nm {
  margin-bottom: clamp(1.75rem, calc(1.5710290828rem + 0.0089485459 * 100vw), 2rem);
}

.mb-rg {
  margin-bottom: clamp(2.1875rem, calc(1.9637863535rem + 0.0111856823 * 100vw), 2.5rem);
}

.mb-md {
  margin-bottom: clamp(2.625rem, calc(2.3565436242rem + 0.0134228188 * 100vw), 3rem);
}

.mb-lg {
  margin-bottom: clamp(3.0625rem, calc(2.7493008949rem + 0.0156599553 * 100vw), 3.5rem);
}

.mb-lgr {
  margin-bottom: clamp(3.5rem, calc(3.1420581655rem + 0.0178970917 * 100vw), 4rem);
}

/* 
sp時に非表示
-------------------------*/
.sp-none {
  display: none !important;
}

/* 
pc時に非表示
-------------------------*/
.pc-none {
  display: block;
}

/* 
tel style
-------------------------*/
.tel {
  letter-spacing: 0.08em;
  font-size: clamp(1.343125rem, calc(1.2710892058rem + 0.0036017897 * 100vw), 1.44375rem);
  line-height: 1;
  position: relative;
}

.tel__text {
  margin-right: 0.5em;
}

/*
 snsクラス
-------------------------*/
.sns {
  display: flex;
  align-items: center;
  gap: 20px;
}

.sns__icon {
  width: 30px;
}

.sns__icon img {
  width: 100%;
}

/* 
imgタイトル
-------------------------*/
/* SP時は高さを個別で指定する必要があります */
.title-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.title-img--center img {
  -o-object-position: center center;
  object-position: center center;
}

.title-img--left img {
  -o-object-position: center left;
  object-position: center left;
}

.title-img--right img {
  -o-object-position: center right;
  object-position: center right;
}

.cmn-title {
  font-size: clamp(1.5225rem, calc(1.3596364653rem + 0.0081431767 * 100vw), 1.75rem);
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
}

.cmn-title--left {
  align-items: flex-start;
  text-align: left;
}

.cmn-title--right {
  align-items: flex-end;
  text-align: right;
}

.cmn-title--center {
  align-items: center;
  justify-content: center;
  text-align: center;
}

.cmn-title__main {
  font-size: 1em;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.cmn-title__sub {
  line-height: 1;
  color: #e50e0d;
  font-size: 0.75em;
  margin-bottom: 0.3em;
  font-family: "Sofia", cursive;
  font-weight: 400;
  transform: skew(-8deg);
  letter-spacing: 0.02em;
}

.cmn-title__sub.deco {
  position: relative;
  z-index: 1;
  font-size: 1em;
  letter-spacing: 0.02em;
}

.cmn-title__sub.deco::before {
  content: attr(data-text);
  font-size: 2.25em;
  letter-spacing: 0.02em;
  color: rgba(229, 14, 13, 0.2);
  white-space: nowrap;
  position: absolute;
  left: -0.02em;
  bottom: 0;
  transform: translateY(14%);
}

.cmn-border-title {
  border-bottom: 1px solid #e50e0d;
  padding-bottom: 10px;
  font-size: clamp(1.5225rem, calc(1.3596364653rem + 0.0081431767 * 100vw), 1.75rem);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.cmn-deco-title {
  font-size: clamp(1.6875rem, calc(1.5666946309rem + 0.0060402685 * 100vw), 1.85625rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  margin-bottom: 36px;
}

.cmn-deco-title__main {
  position: relative;
  z-index: 1;
  display: inline-block;
}

.cmn-deco-title__main::first-letter {
  color: #e50e0d;
}

.cmn-deco-title__main::after {
  content: "";
  width: 4.5636363636em;
  height: 0.3818181818em;
  background: url(../images/ttl_border.png) no-repeat bottom center/contain;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, -20%);
  z-index: -1;
}

/* 
文章テキスト スタイル
-------------------------*/
.cmn-sentence {
  line-height: 2;
  letter-spacing: 0.08em;
  font-weight: 500;
}

.cmn-sentence p::before,
.cmn-sentence p::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
}

.cmn-sentence p::before {
  margin-top: calc((1 - 2) * 0.5em);
}

.cmn-sentence p::after {
  margin-bottom: calc((1 - 2) * 0.5em);
}

.cmn-sentence p:not(:last-child) {
  margin-bottom: 2em;
}

/* 
画像
-------------------------*/
.cmn-img>img {
  width: 100%;
}

/* 
共通セクショニング スタイル
-------------------------*/
.sec {
  padding: 75px 0;
}

/* 
inner クラス
-------------------------*/
.inner,
.wide-inner {
  width: 100%;
  padding: 0 3.5%;
  margin: 0 auto;
}

/*------------------------------
*
* pagenation style
*
------------------------------*/
.pagenation {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.pagenation li {
  width: 2em;
  height: 2em;
  display: block;
  font-size: 1em;
  line-height: 2em;
  text-align: center;
  margin: 0 5px;
  font-size: 13px;
  color: #7b7b7b;
  background: #bababa;
  transition: 0.3s;
}

.pagenation li:hover {
  background-color: #e50e0d;
  color: #ffffff;
}

.pagenation .current {
  background-color: #e50e0d;
  color: #ffffff;
}

/*------------------------------
*
* breadclumb style
*
------------------------------*/
.wrapper {
  position: relative;
}

.bread-clumb {
  display: none;
}

/*------------------------------
*
* prev next style
*
------------------------------*/
.prev-next__area {
  display: flex;
  position: relative;
  line-height: 1.2;
  margin: 60px auto 0;
}

.prev-next__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90px;
}

.prev-next__link.prev::before {
  content: "";
  display: block;
  width: 0.4em;
  height: 0.4em;
  border-top: 2px solid #e50e0d;
  border-left: 2px solid #e50e0d;
  transform: rotate(-45deg);
}

.prev-next__link.next {
  margin-left: auto;
}

.prev-next__link.next::after {
  content: "";
  display: block;
  width: 0.4em;
  height: 0.4em;
  border-top: 2px solid #e50e0d;
  border-right: 2px solid #e50e0d;
  transform: rotate(45deg);
}

.prev-next__link.back {
  border-left: 1px solid #e50e0d;
  border-right: 1px solid #e50e0d;
  text-align: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.prev-next__link.prev,
.prev-next__link.next,
.prev-next__link.back {
  transition: all 0.3s;
}

.prev-next__link.prev::before,
.prev-next__link.prev::after,
.prev-next__link.next::before,
.prev-next__link.next::after,
.prev-next__link.back::before,
.prev-next__link.back::after {
  transition: all 0.3s;
}

.prev-next__link.prev:hover,
.prev-next__link.next:hover,
.prev-next__link.back:hover {
  color: #e50e0d;
}

/*------------------------------
*
* prev next style
*
------------------------------*/
/* ===========================================
*
* header style
*
* ======================================== */
.header {
  width: 100%;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 101;
}

.header-inner {
  padding: 10px 3.5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  min-width: 320px;
  margin: 0 auto;
  width: 100%;
  height: 80px;
}

.header__logo {
  width: 100px;
}

.header-right {
  display: none;
}

/* ===========================================
*
* main style  top page
*
* ======================================== */
/*------------------------------
*
* main visual
*
------------------------------*/
.main-visual {
  width: 100%;
  max-height: 945px;
  min-height: 320px;
  height: 73.828125vw;
  position: relative;
  z-index: 1;
}

.main-visual__catch {
  font-size: clamp(20px, 5vw, 36px);
  text-align: center;
  position: absolute;
  top: 50%;
  left: 3.5%;
  transform: translate(0%, -50%);
  z-index: 20;
}

.main-visual__catch__main {
  letter-spacing: 0.14em;
  font-size: 1em;
  gap: 10px;
  line-height: 1.2333333333em;
  white-space: nowrap;
}

.main-visual__catch__main>span {
  padding: 0 10px 0.1em;
  display: inline-block;
}

.main-visual__catch__main .small {
  font-size: 0.8444444444em;
}

.main-visual__catch__en {
  width: 14.2666666667em;
  margin-bottom: 0.5333333333em;
  position: relative;
  display: inline-block;
}

.main-visual__catch__en::after {
  content: "";
  width: 101.0903426791%;
  height: 56.5517241379%;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-49.5%, 58%);
  z-index: -1;
  background: url(../images/top/mv_catch_border.png) no-repeat top center/contain;
}

.main-visual__catch__sub {
  margin-top: 0.8571428571em;
  font-size: 0.6222222222em;
  letter-spacing: 0.1em;
}

/* 
swiper
-------------------------*/
.main-visual__swiper.swiper {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.main-visual__swiper.swiper-slide {
  width: 100%;
  height: 100%;
}

/* ===========================================
*
* under page  
*
* ======================================== */
/*------------------------------
*
* main style sub visual
*
------------------------------*/
.sub-visual {
  width: 100%;
  position: relative;
  z-index: 1;
  height: 35.15625vw;
  min-height: 220px;
  box-sizing: border-box;
  overflow: hidden;
}

.sub-visual::before {
  content: "";
  width: 152px;
  height: 100%;
  background: url(../images/sv_left.png) no-repeat left center/contain;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.sub-visual>img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: bottom center;
  object-position: bottom center;
}

.sub-visual__catch {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 20;
  font-size: clamp(1.343125rem, calc(1.2710892058rem + 0.0036017897 * 100vw), 1.44375rem);
  letter-spacing: 0.14em;
  padding: 0 0.5em 0.1em;
  line-height: 1.4736842105em;
  box-sizing: border-box;
  white-space: nowrap;
}

.sub-visual__catch::first-letter {
  color: #e50e0d;
}

/*------------------------------
*
* top-news section
*
------------------------------*/
.top-news {
  background: url(../images/top/leaf_right.png) no-repeat top -8.5px right/min(710px, 65.7407407407%) auto, url(../images/top/news_b.png) no-repeat bottom right/auto 100%;
  position: relative;
  z-index: 5;
}

.top-news__container {
  width: 100%;
}

.top-news .cmn-post {
  width: 100%;
}

.top-news__btn {
  margin: 36px auto 0;
}

/*------------------------------
*
* top-enjoy section
*
------------------------------*/
.top-enjoy {
  background: url(../images/top/enjoy_leaf_r.png) no-repeat top 4% right/min(582px, 45.46875%) auto, url(../images/top/enjoy_b_triangle.png) no-repeat bottom right/min(320px, 25%) auto, #fbeeee;
}

.top-enjoy::before {
  content: "";
}

.top-enjoy__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  font-size: clamp(1.5225rem, calc(1.3596364653rem + 0.0081431767 * 100vw), 1.75rem);
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
}

.top-enjoy__title__main {
  letter-spacing: 0.08em;
  font-size: 1em;
  line-height: 1.1em;
  white-space: nowrap;
  position: relative;
  z-index: 1;
}

.top-enjoy__title__main::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-36.8644067797%, -21.7777777778%);
  width: 4.72em;
  height: 4.5em;
  background: url(../images/top/enjoy_ttl_en.png) no-repeat top center/contain;
  z-index: -1;
}

.top-enjoy__title__main>span {
  padding: 0 10px 0.1em;
  display: inline-block;
}

.top-enjoy__title__main .small {
  font-size: 0.8em;
}

.top-enjoy__title__en {
  display: inline-block;
  position: absolute;
  font-size: 0.6em;
  line-height: 1.1666666667em;
  letter-spacing: 0.02em;
  top: 0;
  left: 0;
  transform: translate(-2.7em, -70%) skew(-8deg) rotate(-15deg);
}

.top-enjoy__title__sub {
  margin-top: 0.25em;
  font-size: 0.8em;
  letter-spacing: 0.06em;
  z-index: 1;
  position: relative;
}

.top-enjoy__title__sub::after {
  content: "";
  width: 13.8em;
  height: 1.1em;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 44%);
  z-index: -1;
  background: url(../images/top/enjoy_ttl_border.png) no-repeat top center/contain;
}

.top-enjoy__right {
  width: 100%;
  margin-left: auto;
}

.top-enjoy__btn {
  margin: 36px auto 0;
}

.top-enjoy__sentence .big {
  font-size: 1.3333333333em;
}

.top-enjoy__container {
  position: relative;
  z-index: 1;
}

.top-enjoy__img {
  /* width: calc(460px + 50vw - 540px); */
  max-width: 710px;
  /* min-width: 560px; */
width: 100%;
margin: 0 auto 32px;
}

.top-enjoy__img>img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: right center;
  object-position: right center;
}

/*------------------------------
*
* top-intro
*
------------------------------*/
.top-intro {
  background: url(../images/top/intro_b_triangle.png) no-repeat bottom left/auto, url(../images/top/intro_t_triangle.png) no-repeat top right/min(320px, 25%) auto, url(../images/top/intro_leaf_r.png) no-repeat top 40% right/min(357px, 27.890625%) auto, #fbeeee;
}

.top-intro__btn {
  margin: 36px auto 0;
}

.top-intro__calendar {
  padding: 0 3.5% 40px;
  max-width: 640px;


}

.top-intro__calendar__link {
  font-size: 13px;
}

/* .top-calendar__main {
  max-width: 640px;
} */
.top-intro__calendar__main iframe {
  width: 100%;
  /* height: 100%; */
  height: 69.75vw;
  min-height: 400px;
}

.top-intro__title {
  margin-bottom: 20px;
}

.cmn-item {
  position: relative;
  z-index: 1;
  padding-bottom: 40px;
  width: 93%;
  margin: 0 auto;
}

.cmn-item .inner,
.cmn-item .wide-inner {
  padding: 0 6%;
}

.cmn-item__block {
  width: 100%;
  color: #fff;
}

.cmn-item__img {
  width: 100%;
  margin: 36px auto 0;
  max-width: 621px;
}

.cmn-item__flex {
  width: 100%;
  justify-content: space-between;
  align-items: flex-start;
  margin: 0 auto;
}

.cmn-item:not(:last-child) {
  margin-bottom: 60px;
}

.cmn-item::before {
  content: "";
  width: 100%;
  height: calc(100% - 15px);
  position: absolute;
  bottom: 0;
  z-index: -1;
  background-color: #111111;
}

.cmn-item:nth-child(odd)::before {
  left: 0;
}

.cmn-item:nth-child(even)::before {
  right: 0;
}

/*------------------------------
*
* top-link
*
------------------------------*/
.top-link {
  background: url(../images/info/access_r_shape.png) no-repeat bottom right/min(320px, 25%) auto, url(../images/top/link_leaf_l02.png) no-repeat left top 10%/min(314px, 24.53125%) auto;
  position: relative;
  z-index: 1;
}

.top-link__container {
  flex-direction: column;
  align-items: center;
}

.top-link-item {
  max-width: 330px;
  width: 100%;
  font-size: clamp(1.2225rem, calc(1.1312248322rem + 0.0045637584 * 100vw), 1.35rem);
  letter-spacing: 0.1em;
  padding: 1.1730769231em 30px;
  position: relative;
  z-index: 1;
  color: #fff;
  overflow: hidden;
  background: url(../images/top/link_bg.png) no-repeat right center/contain, #111111;
  transition: all 0.3s;
}

.top-link-item:not(:last-child) {
  margin-bottom: 15px;
}

.top-link-item::after {
  content: "";
  width: 100px;
  height: 1px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  transition: all 0.3s;
}

.top-link-item:hover::after {
  transform: translate(50%, -50%);
}

.cmn-gallery {
  padding: 60px 0;
  background-color: #fff;
}

.cmn-gallery .swiper {
  height: 25.8666666667vw;
  width: 100%;
  margin: 0 auto;
}

.cmn-gallery .gallery-item__img {
  transition: 0.3s;
}

.cmn-gallery .gallery-item__img:hover {
  opacity: 0.7;
}

@media screen and (max-width: 540px) {
  .cmn-gallery .swiper {
    height: 48.5576923077vw;
    min-height: 155px;
  }
}

/* ===========================================
*
* main style about-page
*
* ======================================== */
/*------------------------------
*
* throught
*
------------------------------*/
.throught {
  background: url(../images/about/throught_leaf_l.png) no-repeat top 8px left/40.4166666667% auto, url(../images/about/throught_leaf_r.png) no-repeat bottom 15px right/24.7916666667% auto, #fbeeee;
}

.throught__block {
  box-sizing: border-box;
  width: 100%;
}

.throught__title-sub {
  font-size: clamp(15px, 4.7058823529vw, 20px);
  letter-spacing: 0.08em;
  gap: 5px;
  line-height: 1.44em;
  margin-bottom: 20px;
}

.throught__title-sub>span {
  padding: 0 8px 0.1em;
  display: inline-block;
}

.throught__img {
  width: 100%;
}

.throught-item {
  padding: 40px 0;
}

.throught-item:not(:last-child) {
  margin-bottom: 40px;
}

.throught-item::before {
  height: 100%;
}

.throught-item__title {
  margin-bottom: 20px;
}

.throught-note {
  border-top: 1px dashed #fff;
  line-height: 2;
  font-size: 12px;
  letter-spacing: 0.08em;
  padding-top: 1em;
  margin-top: 24px;
}

.throught-note__item {
  padding-left: 1.5em;
  text-indent: -1.5em;
}

.throught-note__item:not(:last-child) {
  margin-bottom: 12px;
}

/*------------------------------
*
* about-map
*
------------------------------*/
.about-map {
  background: url(../images/top/enjoy_b_triangle.png) no-repeat bottom right/min(320px, 25%) auto, #fbeeee;
}

.about-map__block {
  position: relative;
  z-index: 1;
  padding: 60px 6% 40px;
  background: url(../images/about/mao_shape_t.png) no-repeat bottom left/40% auto, url(../images/about/mao_shape_b.png) no-repeat top right/40% auto, #fff;
}

.about-map__block::after,
.about-map__block::before {
  content: "";
  position: absolute;
  z-index: -1;
}

.about-map__block::before {
  background: url(../images/about/map_leaf_t.png) no-repeat center/contain;
  top: 0;
  left: 0;
  transform: translate(-27.397260274%, 6.0790273556%);
  width: 197.4px;
  height: 87.6px;
}

.about-map__block::after {
  background: url(../images/about/map_leaf_b.png) no-repeat center/contain;
  width: 165px;
  height: 52.2px;
  bottom: 0;
  transform: translate(7.2727272727%, -34.4827586207%);
  right: 0;
}

.about-map__flex {
  justify-content: space-between;
  align-items: center;
}

.about-map__map {
  width: 100%;
  height: 56.25vw;
  margin-top: 36px;
}

.about-map__left {
  width: 100%;
}

.about-map__title-sub {
  margin-bottom: 20px;
  border-block: 1px solid #111111;
  padding: 0.53em 0px;
  font-size: clamp(1.120625rem, calc(1.0369560962rem + 0.0041834452 * 100vw), 1.2375rem);
  font-weight: 700;
  text-align: center;
}

.about-map__title-sub .mark {
  background: linear-gradient(transparent 60%, #fbeeee 40%);
  background-position: 0 27.5px;
}

.about-map__title {
  position: absolute;
  top: 0%;
  left: 50%;
  transform: translate(-50%, -50%);
  letter-spacing: 0.1em;
  font-size: clamp(1.5225rem, calc(1.3596364653rem + 0.0081431767 * 100vw), 1.75rem);
  padding: 0.25em 1.25em;
  display: inline-block;
  background-color: #111111;
  color: #fff;
  white-space: nowrap;
}

.about-map__title__en {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-0.65em, -0.75em) rotate(-16deg) skew(-8deg);
}

/*------------------------------
*
* gallery
*
------------------------------*/
.gallery {
  background: url(../images/top/intro_t_triangle.png) no-repeat top right/min(320px, 25%) auto;
}

.gallery__container {
  gap: 30px 4%;
}

.gallery-item {
  width: 48%;
}

.gallery-item__img {
  width: 100%;
  aspect-ratio: 1/1;
  margin-bottom: 5px;
}

.gallery-item__title {
  font-size: clamp(14px, 3.75vw, 18px);
  letter-spacing: 0.08em;
  line-height: 1.8666666667em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

/*------------------------------
*
* reason
*
------------------------------*/
.reason {
  position: relative;
  z-index: 1;
  background: url(../images/about/reason_r_shape.png) no-repeat bottom right/min(320px, 25%) auto, #fbeeee;
}

.reason::after {
  content: "";
  width: 13.0208333333vw;
  height: 35.0520833333vw;
  background: url(../images/about/reason_leaf.png) no-repeat top center/contain;
  position: absolute;
  z-index: -1;
  left: 0%;
  transform: translateY(-15.750371471%);
  top: 0;
}

.reason-item {
  justify-content: space-between;
  align-items: center;
}

.reason-item:not(:last-child) {
  margin-bottom: 40px;
}

.reason-item__img {
  max-width: 521px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.reason-item__title {
  margin-bottom: 20px;
  letter-spacing: 0.075em;
}

.reason-item__left {
  max-width: 540px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.reason-item__sentence {
  position: relative;
  z-index: 1;
  padding-bottom: 30px;
}

.reason-item__num {
  transform: skew(-8deg);
  position: absolute;
  bottom: -0.125em;
  right: 0;
  z-index: -1;
  line-height: 1;
  font-size: clamp(56px, 16vw, 80px);
  letter-spacing: 0em;
}

/* ===========================================
*
* main style beauty page
*
* ======================================== */
/*------------------------------
*
* strength
*
------------------------------*/
.beauty-strength {
  background: url(../images/top/enjoy_b_triangle.png) no-repeat bottom right/min(320px, 16.6666666667%) auto, #fbeeee;
  position: relative;
  z-index: 1;
}

.beauty-strength::before {
  content: "";
  width: 17.2916666667vw;
  min-width: 83px;
  height: 30.3125vw;
  min-height: 145.5px;
  background: url(../images/beauty/strength_leaf.png) no-repeat left center/contain;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
}

.beauty-strength-item {
  justify-content: space-between;
  align-items: flex-start;
}

.beauty-strength-item__left {
  width: 100%;
}

.beauty-strength-item__img {
  max-width: 561px;
  width: 100%;
  margin: 36px auto 0;
}

.beauty-strength-item__title {
  margin-bottom: 24px;
  font-size: clamp(1.2225rem, calc(1.1312248322rem + 0.0045637584 * 100vw), 1.35rem);
  padding: 0.5em;
}

.beauty-strength-item:not(:last-child) {
  margin-bottom: 36px;
}

/*------------------------------
*
* popular-menu
*
------------------------------*/
.popular-menu {
  background: url(../images/beauty/popular_left_shape.png) no-repeat top left/min(320px, 16.6666666667%) auto, url(../images/top/intro_t_triangle.png) no-repeat top right/min(320px, 16.6666666667%) auto, #fbeeee;
}

.popular-menu__container {
  padding: 40px 4%;
  gap: 40px;
  align-items: stretch;
}

.popular-menu-item {
  width: 100%;
  padding: 24px 5%;
  position: relative;
  z-index: 1;
}

.popular-menu-item::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: 0;
}

.popular-menu-item:nth-child(odd)::after {
  background: url(../images/beauty/popular_leaf01.png) no-repeat bottom center/contain;
  width: 85.5px;
  height: 56.25px;
  transform: translateY(13.3333333333%);
}

.popular-menu-item:nth-child(even)::after {
  background: url(../images/beauty/popular_leaf02.png) no-repeat bottom center/contain;
  width: 86.25px;
  height: 62.25px;
  transform: translateY(12.0481927711%);
}

.popular-menu-item__title {
  border-block: 1px solid #e50e0d;
  padding: 0.2833333333em 0em;
  margin-bottom: 24px;
  font-size: clamp(1.120625rem, calc(1.0369560962rem + 0.0041834452 * 100vw), 1.2375rem);
}

.popular-menu-item__img {
  width: 100%;
  aspect-ratio: 45 / 26;
  margin-bottom: 20px;
}

.popular-menu-item__sentence {
  line-height: 2.14;
  letter-spacing: 0.08em;
  font-size: 13px;
  padding-bottom: 20px;
  border-bottom: 1px dashed #ffffff;
}

.popular-menu-item__sentence p::before,
.popular-menu-item__sentence p::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
}

.popular-menu-item__sentence p::before {
  margin-top: calc((1 - 2.14) * 0.5em);
}

.popular-menu-item__sentence p::after {
  margin-bottom: calc((1 - 2.14) * 0.5em);
}

.popular-menu-item__price {
  font-size: clamp(1.2225rem, calc(1.1312248322rem + 0.0045637584 * 100vw), 1.35rem);
  text-align: right;
  letter-spacing: 0.06em;
  margin-top: 16px;
}

.popular-menu-item__price .yen {
  font-size: 0.8571428571em;
  letter-spacing: 0.06em;
}

.popular-menu-item__price .tax-text {
  font-size: 0.5714285714em;
  letter-spacing: 0.06em;
}

.popular-menu .check-list {
  margin-top: 20px;
}

.check-list {
  font-size: clamp(0.9984375rem, calc(0.9883703859rem + 0.0005033557 * 100vw), 1.0125rem);
  letter-spacing: 0.1em;
  padding: 20px 6%;
}

.check-list__item {
  padding-left: 1.3333333333em;
  position: relative;
  z-index: 1;
}

.check-list__item::before {
  content: "";
  width: 0.8928571429em;
  height: 0.8928571429em;
  background: url(../images/checkmark.png) no-repeat top center/contain;
  position: absolute;
  top: 0.75em;
  left: 0;
  transform: translateY(-50%);
}

.check-list__item:not(:last-child) {
  margin-bottom: 0.5em;
}

/*------------------------------
*
* menu
*
------------------------------*/
.menu {
  background: url(../images/beauty/menu_r_leaf.png) no-repeat top -2px right/min(714px, 37.1875%), url(../images/info/info_b_shape.png) no-repeat bottom left/16.6666666667% auto;
}

.menu-item {
  padding: 30px 6%;
  border: 1px solid #111111;
}

.menu-item:not(:last-child) {
  margin-bottom: 20px;
}

.menu-item__title {
  font-size: clamp(1.109375rem, calc(1.0981893177rem + 0.0005592841 * 100vw), 1.125rem);
  letter-spacing: 0.1em;
  margin-bottom: 15px;
}

.menu-item__sentence {
  padding-bottom: 20px;
  border-bottom: 1px dashed #111111;
}

.menu-item__price {
  text-align: right;
  letter-spacing: 0.08em;
  margin-top: 15px;
  font-size: clamp(0.9984375rem, calc(0.9883703859rem + 0.0005033557 * 100vw), 1.0125rem);
}

/*------------------------------
*
* stylebook
*
------------------------------*/
.stylebook {
  position: relative;
  z-index: 1;
  background: url(../images/info/access_t_shape.png) no-repeat top left/min(320px, 16.6666666667%) auto, url(../images/info/access_r_shape.png) no-repeat bottom right/min(320px, 16.6666666667%) auto, #fbeeee;
}

.stylebook::before {
  content: "";
  width: 37.34375vw;
  min-width: 119.5px;
  height: 13.90625vw;
  min-height: 44.5px;
  background: url(../images/beauty/stylebook_left_leaf.png) no-repeat left center/contain;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
}

.stylebook__container {
  gap: 30px 4%;
}

.stylebook-item {
  width: 48%;
}

.stylebook-item__img {
  width: 100%;
  aspect-ratio: 1/1;
  margin-bottom: 6.5px;
}

.stylebook-item__title {
  font-size: clamp(14px, 3.75vw, 18px);
  letter-spacing: 0.08em;
  line-height: 1.8666666667em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

/* ===========================================
*
* main style bar page
*
* ======================================== */
/*------------------------------
*
* bar-strength
*
------------------------------*/
.bar-strength {
  background: url(../images/bar/strength_l_leaf.png) no-repeat top left/min(698px, 54.53125%) auto, url(../images/bar/strength_r_shape.png) no-repeat bottom right/min(320px, 16.6666666667%) auto, url(../images/wood_pattern.jpg) repeat center/auto;
}

.bar-strength-item {
  padding: 30px 6%;
  position: relative;
  z-index: 1;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
}

.bar-strength-item__title {
  font-size: clamp(1.2225rem, calc(1.1312248322rem + 0.0045637584 * 100vw), 1.35rem);
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.bar-strength-item__block {
  width: 100%;
}

.bar-strength-item__img {
  max-width: 561px;
  width: 100%;
  margin: 36px auto 0;
}

.bar-strength-item:not(:last-child) {
  margin-bottom: 40px;
}

.bar-strength-item::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  background-color: #ffffff;
}

.bar-page {
  color: #3a1f13;
}

.bar-page .sub-visual::before {
  background-image: url(../images/sv_left02.png);
}

.bar-page .sub-visual__catch {
  background-color: #3a1f13;
}

.bar-page .sub-visual__catch::first-letter {
  color: #fff;
}

.bar-page .cmn-deco-title__main::first-letter {
  color: unset;
}

.bar-page .footer {
  background: url(../images/footer_shape02.png) no-repeat right -30% bottom/auto 100%, #3a1f13;
}

.bar-page .footer-nav__link::after {
  color: #ffffff;
}

.bar-popular-menu {
  background: url(../images/bar/popular_shape_l.png) no-repeat top left/min(320px, 16.6666666667%) auto, url(../images/bar/popular_leaf_l.png) no-repeat bottom 15px left/min(478px, 37.34375%) auto, url(../images/bar/popular_shape_r.png) no-repeat top right/min(320px, 16.6666666667%) auto, #f6e5de;
}

.bar-popular-menu .popular-menu-item {
  background: url(../images/bar/popular_menu_shape.png) no-repeat bottom right/59.6153846154% auto, #3a1f13;
  padding-bottom: 55px;
}

.bar-popular-menu .popular-menu-item::after {
  transform: translateY(30px);
}

.bar-popular-menu .popular-menu-item__sentence {
  padding-bottom: 0;
  border-bottom: none;
}

/*------------------------------
*
* menu
*
------------------------------*/
.bar-menu {
  background: url(../images/bar/menu_leaf_r.png) no-repeat top right/min(698px, 54.53125%) auto, url(../images/bar/menu_leaf_l.png) no-repeat bottom 10px left/min(341px, 23.6805555556%) auto, url(../images/wood_pattern.jpg) repeat center/auto;
}

/* ===========================================
*
* main style info page
*
* ======================================== */
/*------------------------------
*
* info
*
------------------------------*/
.info {
  position: relative;
  z-index: 1;
  background: url(../images/info/info_l_leaf.png) no-repeat top 15px left/min(357px, 27.890625%) auto, url(../images/info/info_b_shape.png) no-repeat bottom left/min(320px, 25%) auto, #fbeeee;
}

.info::after {
  content: "";
  width: 13.0208333333vw;
  height: 35.0520833333vw;
  background: url(../images/info/info_r_leaf.png) no-repeat top center/contain;
  position: absolute;
  z-index: -1;
  right: calc(50% - 915px);
  top: 45px;
}

.info__catch {
  margin-top: -0.25em;
  font-size: clamp(0.875rem, calc(0.8213087248rem + 0.0026845638 * 100vw), 0.95rem);
  letter-spacing: 0.08em;
  margin-bottom: 36px;
}

.info-item {
  align-items: flex-start;
  justify-content: space-between;
}

.info-item__block {
  width: 100%;
}

.info-item__name {
  margin-bottom: 20px;
  letter-spacing: 0.08em;
  font-size: clamp(1.2225rem, calc(1.1312248322rem + 0.0045637584 * 100vw), 1.35rem);
}

.info-item__name>span {
  padding: 0em 8px;
}

.info-item__img {
  max-width: 561px;
  width: 100%;
  margin: 36px auto 0;
}

.info-item-table {
  width: 100%;
}

.info-item-table th {
  width: 96px;
}

.info-item-table td {
  width: calc(100% - 96px);
}

.info-item:not(:last-child) {
  margin-bottom: 36px;
}

.info-map {
  margin-top: 38px;
}

.info-map__title {
  font-size: clamp(1.120625rem, calc(1.0369560962rem + 0.0041834452 * 100vw), 1.2375rem);
  letter-spacing: 0.1em;
  padding: 0.49em 1em;
  width: 200px;
  margin-bottom: 30px;
  border-block: 1px solid #111111;
}

.info-map__map {
  width: 100%;
  height: 56.25vw;
}

.border-table {
  border-top: 1px solid #111111;
}

.border-table tr {
  border-bottom: 1px solid #111111;
}

.border-table th,
.border-table td {
  padding: 0.8125em 1em;
}

.border-table th {
  font-weight: 700;
  color: #e50e0d;
}

.border-table td {
  font-weight: 600;
}

/*------------------------------
*
* access
*
------------------------------*/
.access {
  position: relative;
  z-index: 5;
  background: url(../images/info/access_t_shape.png) no-repeat top left/min(320px, 25%) auto, url(../images/info/access_r_shape.png) no-repeat bottom right/min(320px, 25%) auto, #fbeeee;
}

.access::before {
  content: "";
  width: 35.737704918vw;
  height: 20.4098360656vw;
  background: url(../images/info/access_leaf_l.png) no-repeat top center/contain;
  position: absolute;
  z-index: 1;
  right: 0;
  top: 0;
  transform: translateY(-50%);
}

.access__title {
  margin-bottom: 40px;
  font-size: clamp(1.6875rem, calc(1.5666946309rem + 0.0060402685 * 100vw), 1.85625rem);
}

.access__title>span {
  display: inline-block;
  padding: 0 10px;
  line-height: 1.5em;
}

.access__container {
  gap: 36px 4%;
}

.access-item {
  width: 48%;
}

.access-item:nth-child(even) .access-item__img::after,
.access-item:last-child .access-item__img::after {
  display: none;
}

.access-item__img {
  width: 100%;
  margin-bottom: 16px;
  aspect-ratio: 1/1;
  position: relative;
  z-index: 1;
}

.access-item__img>img {
  width: 100%;
}

.access-item__img::after {
  content: "";
  width: 10%;
  height: 10%;
  background: url(../images/info/access_arrow.png) no-repeat left center/contain;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(100%, -50%);
}

.access-item__desc {
  font-size: clamp(12px, 4vw, 18px);
  text-align: center;
  line-height: 1.4;
  padding-bottom: 16px;
  border-bottom: 1px solid #e50e0d;
  display: flex;
  align-items: center;
  justify-content: center;
}

/*------------------------------
* 
* news,blog
* 
------------------------------*/
.cmn-post {
  width: 100%;
}

.cmn-post-item {
  width: 100%;
  position: relative;
}

.cmn-post-item:not(:last-child) {
  margin-bottom: 15px;
}

.cmn-post__flex {
  width: 100%;
}

.cmn-post__tag-wrapper {
  width: 100%;
  margin-bottom: 8px;
}

.cmn-post__date {
  line-height: 1;
  font-size: 14px;
  position: relative;
  z-index: 1;
  margin-bottom: 8px;
}

.cmn-post__title {
  line-height: 1.2;
  width: 100%;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  position: relative;
  padding-right: 2em;
}

.cmn-post__title::after {
  content: "";
  width: 13px;
  height: 13px;
  background: url(../images/post_arrow.png) no-repeat top center/contain;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

/*---------- detail ここから ----------*/
.tag {
  display: inline-block;
  font-size: 12px;
  color: #ffffff;
  letter-spacing: 0.08em;
  color: #e50e0d;
  border: 1px solid #e50e0d;
  font-weight: 500;
  line-height: 1;
  padding: 3px 5px;
}

.tag-btn-wrapper {
  margin-bottom: 30px;
  gap: 10px;
}

.tag__btn {
  padding: 0.5em 1em;
  border: 1px solid #eeeeee;
  background-color: #eeeeee;
  color: #b3b3b3;
  border-radius: 3em;
  display: inline-block;
  transition: all 0.3s;
}

.tag__btn:hover {
  color: #fff;
  background-color: #e50e0d;
  opacity: 1;
  border: 1px solid #e50e0d;
}

.tag__btn.current {
  color: #fff;
  background-color: #e50e0d;
  border: 1px solid #e50e0d;
}

.tag-wrapper {
  justify-content: flex-start;
  gap: 8px 10px;
}

.post-detail {
  position: relative;
  z-index: 5;
}

.post-detail__head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.post-detail__date {
  order: 1;
  margin-bottom: 16px;
  line-height: 1;
}

.post-detail__tag-wrapper {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 16px;
  gap: 10px;
}

.post-detail__title {
  order: 3;
  width: 100%;
  font-size: clamp(1.120625rem, calc(1.0369560962rem + 0.0041834452 * 100vw), 1.2375rem);
  border-left: 5px solid #e50e0d;
  font-weight: 700;
  padding-left: 0.75em;
  margin-bottom: 24px;
}

.post-detail__img {
  margin: 0 auto;
  width: 100%;
  margin-bottom: 24px;
}

/*------------------------------
* 
* sitemap
* 
------------------------------*/
.sitemap-list {
  max-width: 560px;
  margin: 0 auto;
}

.sitemap-list__item:not(:last-child) {
  margin-bottom: 5px;
}

.sitemap-list__link {
  font-size: 15px;
  width: 100%;
  padding: 0.8em 1em;
  position: relative;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #e50e0d;
  transition: all 0.3s;
}

.sitemap-list__link::after {
  content: "";
  display: block;
  width: 0.5em;
  height: 0.5em;
  border-top: 2px solid #e50e0d;
  border-right: 2px solid #e50e0d;
  position: absolute;
  top: 50%;
  right: 1.5em;
  transition: all 0.3s;
  transform: translateY(-50%) rotate(45deg);
}

.sitemap-list__link:hover {
  color: #e50e0d;
}

.sitemap-list__link:hover::after {
  right: 1em;
}

/*------------------------------
* 
* privacy
* 
------------------------------*/
.privacy-title {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5em;
  margin-bottom: 20px;
  border-left: 5px solid #e50e0d;
  padding-left: 0.75em;
}

.privacy-box {
  margin-bottom: 40px;
}

.privacy-box:last-child {
  margin-bottom: 0;
}

/* ===========================================
*
* footer style
*
* ======================================== */
.footer {
  position: relative;
  background: url(../images/footer_shape.png) no-repeat right -30% bottom/auto 100%, #e50e0d;
}

.footer-inner {
  justify-content: space-between;
  align-items: flex-end;
  padding-block: 50px 20px;
}

.footer__logo {
  width: 116px;
  margin: 0 auto 40px;
}

.footer-left {
  width: 100%;
}

.footer-right {
  width: 100%;
}

.footer-flex {
  justify-content: space-between;
  align-items: flex-end;
}

.footer-nav {
  width: 100%;
  background-color: #111111;
  color: #fff;
  padding: 10px 3%;
  box-sizing: border-box;
}

.footer-nav__list {
  align-items: center;
  justify-content: center;
  max-width: 300px;
  width: 100%;
  margin: 0 auto;
}

.footer-nav__item {
  width: 50%;
  max-width: 150px;
}

.footer-nav__item:last-child {
  margin-right: auto;
}

.footer-nav__link {
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.08em;
  position: relative;
  padding: 0.5em 0.25em;
  padding-left: 1.5em;
  font-size: 13px;
}

.footer-nav__link::after {
  content: ">";
  width: 1.5em;
  height: 1.5em;
  position: absolute;
  border-radius: 50%;
  color: #e50e0d;
  text-align: left;
  left: 0;
  top: 50%;
  transform: translate(0%, -40%);
  transition: 0.3s;
}

.footer-nav__link:hover::after {
  transform: translate(20%, -40%);
}

.footer-other-nav {
  width: 100%;
  color: #fff;
  margin-top: 30px;
}

.footer-other-nav__list {
  justify-content: center;
  align-items: center;
  width: 100%;
}

.footer-other-nav__link {
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.08em;
  position: relative;
  padding-left: 1.5em;
  font-size: 12px;
}

.footer-other-nav__link::after {
  content: ">";
  width: 1.5em;
  height: 1.5em;
  position: absolute;
  border-radius: 50%;
  color: #ffffff;
  text-align: left;
  left: 0;
  top: 50%;
  transform: translate(0%, -40%);
  transition: 0.3s;
}

.footer-other-nav__link:hover::after {
  transform: translate(20%, -40%);
}

.footer-other-nav__item:not(:last-child) {
  margin-right: 1.25em;
}

.footer-info {
  align-items: center;
  width: 100%;
  width: 100%;
  flex-direction: column;
}

.footer-info__sns {
  margin-top: 20px;
}

.footer-info__btn {
  max-width: 200px;
}

.footer-info__btn>span {
  margin-right: 0.5em;
}

.footer-info__btns {
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 10px;
  margin-top: 20px;
}

.footer__copy {
  font-size: 10px;
  letter-spacing: 0.1em;
  margin-top: 40px;
  width: 100%;
  text-align: center;
  display: block;
  color: #ffffff;
}

/*# sourceMappingURL=style_sp.css.map */