@charset "UTF-8";
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 10px;
  font-weight: 400;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
  font-size: 10px;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
  appearance: none;
}

@font-face {
  font-family: "EB Garamond";
  src: url("EBGaramond-Bold.ttf") format("truetype");
  src: url("EBGaramond-BoldItalic.ttf") format("truetype"), url("EBGaramond-ExtraBold.ttf") format("truetype"), url("EBGaramond-ExtraBoldItalic.ttf") format("truetype"), url("EBGaramond-Italic.ttf") format("truetype"), url("EBGaramond-Medium.ttf") format("truetype"), url("EBGaramond-MediumItalic.ttf") format("truetype"), url("EBGaramond-Regular.ttf") format("truetype"), url("EBGaramond-SemiBold.ttf") format("truetype"), url("EBGaramond-SemiBoldItalic.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
html {
  font-family: "Zen Maru Gothic", serif;
  font-family: "Noto Serif JP", serif;
  font-size: 0.8333333333vw;
}
@media screen and (min-width: 1050px) {
  html {
    font-size: 10px;
  }
}
@media screen and (max-width: 480px) {
  html {
    font-size: 1.8666666667vw;
  }
}

/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc {
  display: block !important;
}

.sp {
  display: none !important;
}

/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media screen and (max-width: 480px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
}
body {
  max-width: 1980px;
  min-width: auto;
  margin: 0 auto;
  font-size: 1.6rem;
}

.Inner {
  max-width: 1050px;
  min-width: auto;
  margin: 0 auto;
  padding: 0 2rem;
  box-sizing: border-box;
}
@media screen and (min-width: 1980px) {
  .Inner {
    width: 100%;
    box-sizing: border-box;
    padding: 0 2rem;
  }
}
.Inner--min {
  max-width: 980px;
}
@media screen and (max-width: 480px) {
  .Inner--min {
    max-width: 100%;
    padding: 0;
  }
}

/*========= ナビゲーションのためのCSS ===============*/
#g-nav {
  /*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
  position: fixed;
  z-index: -1;
  opacity: 0; /*はじめは透過0*/
  /*ナビの位置と形状*/
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh; /*ナビの高さ*/
  background: #999; /* 背景色 */
  /*動き*/
  transition: all 0.3s;
}

/*アクティブクラスがついたら透過なしにして最前面へ*/
#g-nav.panelactive {
  opacity: 1;
  z-index: 999;
}

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

/*ナビゲーション*/
#g-nav ul {
  display: none;
  /*ナビゲーション天地中央揃え*/
  position: absolute;
  z-index: 999;
  top: 50%; /* menuの範囲 */
  left: 50%;
  transform: translate(-50%, -50%);
}

#g-nav.panelactive ul {
  display: block;
}

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

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

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

/*×に変化*/
.openbtn span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 14px; /*  線の位置*/
  height: 3px; /*  線の太さ*/
  border-radius: 2px;
  background-color: #666; /* ボタンの色*/
  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%;
}

/*-----スライダーのためのcss------*/
.slider {
  position: relative;
  z-index: 1;
  /*↑z-indexの値をh1のz-indexの値よりも小さくして背景に回す*/
  padding: 0;
}

.slider-item {
  width: 100%; /*各スライダー全体の横幅を画面の高さいっぱい（100%）にする*/
  /*各スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
  background-repeat: no-repeat; /*背景画像をリピートしない*/
  background-position: center; /*背景画像の位置を中央に*/
  background-size: cover; /*背景画像が.slider-item全体を覆い表示*/
}

/*矢印の設定*/
/*戻る、次へ矢印の位置*/
.slick-prev,
.slick-next {
  position: absolute; /*絶対配置にする*/
  z-index: 3;
  top: 50%; /*矢印の位置*/
  cursor: pointer; /*マウスカーソルを指マークに*/
  outline: none; /*クリックをしたら出てくる枠線を消す*/
  border-top: 2px solid red; /*矢印の色*/
  border-right: 2px solid red; /*矢印の色*/
  height: 25px;
  width: 25px;
}

.slick-prev { /*戻る矢印の位置と形状*/
  left: 2.5%;
  transform: rotate(-135deg);
}

.slick-next { /*次へ矢印の位置と形状*/
  right: 2.5%;
  transform: rotate(45deg);
}

/*ドットナビゲーションの設定*/
.slick-dots {
  position: relative;
  z-index: 3;
  text-align: center;
  margin: -50px 0 0 0;
}

.slick-dots li {
  display: inline-block;
  margin: 0 5px;
}

.slick-dots button {
  color: transparent;
  outline: none;
  width: 8px; /*ドットボタンのサイズ*/
  height: 8px; /*ドットボタンのサイズ*/
  display: block;
  border-radius: 50%;
  background: #ccc; /*ドットボタンの色*/
}

.slick-dots .slick-active button {
  background: #333; /*ドットボタンの現在地表示の色*/
}

/* 上部CTAボタン */
.TopCTA {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
  text-align: center;
  z-index: 999;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  padding: 0.8rem 0;
  display: none;
}

.TopCTA.scrolled {
  background: linear-gradient(135deg, #c89a9a, #b97c7c);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  display: block !important;
}

.TopCTA a {
  display: inline-block;
  padding: 0.8rem 2rem;
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 2rem;
}

.TopCTA a:hover {
  opacity: 0.85;
}

@media screen and (max-width: 768px) {
  .TopCTA a {
    font-size: 1.4rem;
    padding: 0.6rem 1.5rem;
  }
}
.Container {
  max-width: 90rem;
  width: 100%;
  margin: 0 auto;
  background-color: #fef7e9;
}

.Fv {
  height: 100vh;
  background: url(../images/fv.jpg) no-repeat center/cover;
  position: relative;
}
@media (max-width: 768px) {
  .Fv {
    height: 92rem;
    background: url(../images/fv.jpg) no-repeat top center/contain;
  }
}
.Fv::before {
  content: "";
  display: block;
  position: absolute;
  top: 2rem;
  left: 2rem;
  width: 20rem;
  height: 5rem;
  z-index: 100;
  background: url(../images/logo.png) no-repeat center/contain;
}
.Fv__container {
  padding: 7rem 0 3rem 0;
}
.Fv__container__title {
  margin-top: 2rem;
  width: fit-content;
  padding: 1rem 1rem;
  background-color: #c89a9a;
}
.Fv__container__title .big {
  font-size: 3rem;
  font-weight: bold;
  padding-bottom: 1rem;
  line-height: 3rem;
  color: #fff;
  display: block;
  width: fit-content;
}
.Fv__container__title .min {
  font-size: 2rem;
  font-family: "Noto Serif JP", serif;
  color: #fff;
  line-height: 3rem;
}
.Fv__container__food {
  width: fit-content;
  width: calc(100% - 0rem);
  position: absolute;
  bottom: 0rem;
  margin: 0 auto;
  left: 0;
  padding: 0 0rem;
}
.Fv__container__food__box {
  background: #fff;
  padding: 1rem;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 3px 6px;
  background-color: #fff;
  border: 0.5rem solid #c89a9a;
  box-sizing: border-box;
}
.Fv__container__food__box__head {
  color: #333;
  margin-bottom: 1rem;
}
.Fv__container__food__box__head p {
  font-size: 2rem;
  font-weight: 500;
  line-height: 3.5rem;
}
.Fv__container__food__box__head p span {
  font-weight: bold;
  font-size: 3rem;
  color: #c89a9a;
}
.Fv__container__food__box__price {
  color: #333;
}
.Fv__container__food__box__price__num {
  font-size: 2rem;
  font-weight: 500;
}
.Fv__container__food__box__price__wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.Fv__container__food__box__price__wrap .include {
  font-size: 1.5rem;
  font-weight: 500;
}
.Fv__container__food__box__price__wrap__min {
  display: flex;
  align-items: flex-end;
}
.Fv__container__food__box__price__wrap__min p {
  font-size: 2rem;
  font-weight: 500;
}
.Fv__container__food__box__price__wrap__allow {
  font-size: 2rem;
  padding: 0 1rem;
  font-weight: 500;
}
.Fv__container__food__box__price__wrap__big {
  display: flex;
  align-items: flex-end;
  background-color: #c89a9a;
  padding: 0.5rem;
}
.Fv__container__food__box__price__wrap__big p {
  font-size: 2.5rem;
  font-weight: bold;
  color: #fff;
  font-weight: 500;
}
.Fv__container__food__box__price__wrap__big .include {
  color: #fff;
  font-size: 1.5rem;
}
.Fv__container__food__box__price__wrap__big .price__big {
  font-size: 3.5rem;
  font-weight: bold;
  color: #fff;
  font-family: "Noto Serif JP", serif;
}
.Fv__container__food__box__sub {
  font-size: 1.5rem;
  text-align: right;
  line-height: 2rem;
  color: #fff;
}
.Fv__container__food__box__ttl {
  font-size: 2rem;
  font-weight: bold;
  text-align: right;
  line-height: 3rem;
  color: #fff;
}
.Fv__container__food__box__priced {
  text-align: right;
}
.Fv__container__food__box__priced .shop {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
}
.Fv__container__food__box__priced .num {
  font-size: 1.8rem;
  color: #fff;
  font-family: "Noto Serif JP", serif;
}
.Fv__container__food__box__priced .zeikomi {
  font-size: 1.5rem;
  color: #fff;
}

.Fix {
  width: calc(100% - 4rem);
  height: 5rem;
  font-size: 2rem;
  background-color: #c89a9a;
  color: #fff;
  border-radius: 2.5rem;
  text-decoration: none;
  display: block;
  box-shadow: 0px 0px 15px #333;
  text-align: center;
  line-height: 5rem;
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  max-width: 70rem;
  z-index: 100;
}

.About__container {
  padding: 5rem 0;
}
.About__container__box {
  padding: 2rem;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 3px 6px;
}
.About__container__box p {
  font-size: 1.8rem;
  line-height: 2.8rem;
}
.About__container__allow {
  font-size: 4rem;
  text-align: center;
  padding: 1rem 0;
}
.About__container__food p {
  font-size: 1.8rem;
  line-height: 2.8rem;
  font-weight: bold;
}
.About__container__food p span {
  font-size: 2.4rem;
  font-weight: bold;
}

.Title {
  text-align: center;
  margin-bottom: 3rem;
}
.Title .en {
  font-family: "Noto Sans JP", sans-serif;
  padding-bottom: 0.7rem;
  font-size: 3rem;
  line-height: 4rem;
  max-width: fit-content;
  margin: 0 auto;
  position: relative;
}
.Title .en::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
  height: 0.2rem;
  width: 100%;
  background: #c89a9a;
}
.Title .ja {
  font-size: 2.4rem;
  font-weight: bold;
}

.fv_min {
  text-align: right;
  font-size: 1.5rem;
  padding: 0.5rem 0;
  display: block;
}

.Trouble__container {
  padding: 5rem 0 5rem 0;
}
.Trouble__container__box {
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 3px 6px;
  padding: 2rem;
  margin-bottom: 3rem;
}
.Trouble__container__box__list h3 {
  font-size: 1.8rem;
  line-height: 2.8rem;
  letter-spacing: 0.08rem;
}
.Trouble__container__box__btn {
  display: block;
  background-color: aqua;
  width: fit-content;
  margin-left: auto;
  text-decoration: none;
  font-size: 1.8rem;
  line-height: 2.8rem;
  padding: 0.5rem 3rem 0.5rem 0.5rem;
  background: #c89a9a;
  color: white;
  position: relative;
}
.Trouble__container__box__btn .big {
  font-size: 2rem;
  font-weight: bold;
  line-height: 3.4rem;
}
.Trouble__container__box__btn:hover {
  opacity: 0.7;
}
.Trouble__container__box__btn::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  width: 9px;
  height: 9px;
  margin: auto;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}

.Menu__container {
  padding: 5rem 0 5rem 0;
}
.Menu__container__menu {
  margin-bottom: 5rem;
}
.Menu__container__menu a {
  text-decoration: none;
  max-width: 30rem;
  display: block;
  margin: 0 auto;
  padding: 0.5rem 3rem 0.5rem 0.5rem;
  background: #c89a9a;
  margin-bottom: 2rem;
  position: relative;
}
.Menu__container__menu a .head {
  text-align: left;
  color: #fff;
}
.Menu__container__menu a .head .en {
  font-size: 1.8rem;
  line-height: 2.4rem;
  padding-right: 1rem;
}
.Menu__container__menu a .head .title {
  font-size: 2rem;
  font-weight: bold;
  line-height: 2.8rem;
}
.Menu__container__menu a .food {
  text-align: right;
  color: #fff;
}
.Menu__container__menu a .food .min {
  font-size: 1.8rem;
}
.Menu__container__menu a .food .num {
  font-size: 2rem;
  font-weight: bold;
  font-family: "Noto Serif JP", serif;
  padding: 0 1rem;
}
.Menu__container__menu a::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  width: 9px;
  height: 9px;
  margin: auto;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}
.Menu__container__menu a:hover {
  opacity: 0.7;
}
.Menu__container__content {
  margin-bottom: 6rem;
}
.Menu__container__content:last-of-type {
  margin-bottom: 0;
}
.Menu__container__content__title {
  font-size: 3rem;
  text-align: center;
  font-weight: bold;
  margin-bottom: 2rem;
}
.Menu__container__content__img {
  width: 80%;
  margin: 0 auto;
  margin-bottom: 2rem;
}
.Menu__container__content__img img {
  width: 100%;
}

.Box__title {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.Box {
  background-color: #fff;
  padding: 2rem;
  margin-bottom: 3rem;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 3px 6px;
}
.Box p {
  font-size: 1.8rem;
  line-height: 2.4rem;
  letter-spacing: 0.1rem;
}
.Box p .big {
  font-size: 2rem;
  font-weight: bold;
  padding: 0 0.5rem;
}

.Accordion {
  margin-bottom: 2rem;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 3px 6px;
}
.Accordion .Open {
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  padding: 2rem;
  background-color: #fff;
  line-height: 2.8rem;
  padding-right: 9rem;
  position: relative;
}
.Accordion .Open::after {
  content: "";
  position: absolute;
  top: 30%;
  right: 5rem;
  width: 0.3rem;
  height: 2.5rem;
  background-color: #284077;
  transform: rotate(0deg);
  transition: all 0.5s;
}
.Accordion .Open::before {
  content: "";
  position: absolute;
  top: 30%;
  right: 5rem;
  width: 0.3rem;
  height: 2.5rem;
  background-color: #284077;
  /* border-top: solid 2px #707070; */
  /* border-right: solid 2px #707070; */
  transform: rotate(90deg);
  transform-origin: center;
  transition: all 0.5s;
}
.Accordion .Open.close::after {
  transform: rotate(90deg);
  transform-origin: center;
  transition: all 0.5s;
}
.Accordion .A-box {
  display: none;
  background-color: #fff;
  padding: 0 2rem 2rem 2rem;
}
.Accordion .A-box p {
  border-top: 0.1rem solid #000;
  font-size: 1.8rem;
  line-height: 2.4rem;
  padding-top: 2rem;
}

.Strength__container {
  padding: 5rem 0 0 5rem 0;
}
.Strength__container__content {
  margin-bottom: 2rem;
}
.Strength__container__content__ttl {
  font-size: 2rem;
  line-height: 2.4rem;
  color: #c89a9a;
  padding: 1rem;
  margin-bottom: 1rem;
  font-weight: bold;
  letter-spacing: 0.08rem;
}
.Strength__container__content__ttl .en {
  font-size: 2.4rem;
  line-height: 2.4rem;
  font-family: "Noto Serif JP", serif;
  padding-right: 1rem;
  color: #fff;
  background: #c89a9a;
  padding: 0.5rem;
  margin-right: 1rem;
}
.Strength__container__content__text {
  background-color: #fff;
  font-size: 1.8rem;
  line-height: 2.4rem;
  padding: 2rem;
}

.Flow__container {
  padding: 10rem 0 5rem 0;
}
.Flow__container__content__box {
  display: flex;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 3px 6px;
}
.Flow__container__content__box__left {
  width: 65%;
  padding: 2rem;
}
.Flow__container__content__box__left__ttl {
  border-bottom: 0.1rem solid #000;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  font-size: 2rem;
  line-height: 2.4rem;
  font-weight: bold;
}
.Flow__container__content__box__left__ttl .en {
  font-size: 2.8rem;
  font-weight: bold;
  padding-right: 1rem;
}
.Flow__container__content__box__left__text {
  font-size: 1.8rem;
  line-height: 2.4rem;
}
.Flow__container__content__box__right {
  width: 35%;
  aspect-ratio: 16/9;
}
.Flow__container__content__box__right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.Flow__container__content .allow {
  font-size: 3rem;
  text-align: center;
  margin: 0 auto;
  display: inline-block;
  display: block;
  margin: 2rem auto;
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 15px solid #000;
}

.Faq__container {
  padding: 5rem 0 5rem 0;
}

.Info__container {
  padding: 5rem 0 5rem 0;
  width: 80%;
  margin: 0 auto;
}
.Info__container__img {
  margin-bottom: 3rem;
}
.Info__container__img img {
  width: 100%;
}
.Info__container__box {
  margin-bottom: 2rem;
}
.Info__container__box__name {
  font-size: 2rem;
  font-weight: bold;
  line-height: 3rem;
}
.Info__container__box__ttl {
  font-size: 2rem;
  font-size: 2.4rem;
  margin-bottom: 1rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
.Info__container__box__text {
  font-size: 1.8rem;
  line-height: 2.4rem;
  border-top: none !important;
}
.Info__container__box__big {
  font-size: 2rem;
  font-weight: bold;
  border-bottom: none;
  border-top: none !important;
}
.Info__container__box .A-box p:first-of-type {
  border-top: 0.1rem solid #000 !important;
}
.Info__container__box .A-box .Info__container__box__text {
  padding-top: 0.5rem;
}
.Info__container__map {
  margin-bottom: 3rem;
}
.Info__container__map iframe {
  width: 100%;
  height: 40rem;
}

.Price__container {
  padding: 5rem 0;
}
.Price__container__content {
  background-color: #fff;
  padding: 1rem;
}
.Price__container__content__ttl {
  font-size: 2.4rem;
  line-height: 2.8rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
.Price__container__content__box {
  margin-bottom: 0rem;
}
.Price__container__content__box__ttl {
  font-size: 2rem;
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 2rem;
}
.Price__container__content__box__item {
  border-top: 0.1rem solid #000;
  display: flex;
}
.Price__container__content__box__item:last-of-type {
  border-bottom: 0.1rem solid #000;
}
.Price__container__content__box__item__left {
  width: 20%;
  padding: 1rem 0;
}
@media (max-width: 768px) {
  .Price__container__content__box__item__left {
    width: 25%;
  }
}
.Price__container__content__box__item__left p {
  font-size: 1.8rem;
  font-weight: bold;
}
.Price__container__content__box__item__right {
  width: 80%;
}
@media (max-width: 768px) {
  .Price__container__content__box__item__right {
    width: 75%;
  }
}
.Price__container__content__box__item__right__span {
  border-bottom: 0.1rem dotted #000;
  padding: 1rem 0;
}
.Price__container__content__box__item__right__span:last-of-type {
  border-bottom: none;
}
.Price__container__content__box__item__right__span__min {
  display: flex;
  justify-content: space-between;
}
.Price__container__content__box__item__right__span__min .bui, .Price__container__content__box__item__right__span__min .ryoukinn, .Price__container__content__box__item__right__span__min .box, .Price__container__content__box__item__right__span__min .price {
  font-size: 1.8rem;
  line-height: 3rem;
}
@media (max-width: 768px) {
  .Price__container__content__box__item__right__span__min .bui, .Price__container__content__box__item__right__span__min .ryoukinn, .Price__container__content__box__item__right__span__min .box, .Price__container__content__box__item__right__span__min .price {
    font-size: 1.4rem;
  }
}
.Price__container__content__box__item__right__span__min .bui .include, .Price__container__content__box__item__right__span__min .ryoukinn .include, .Price__container__content__box__item__right__span__min .box .include, .Price__container__content__box__item__right__span__min .price .include {
  font-size: 1.2rem;
}
@media (max-width: 768px) {
  .Price__container__content__box__item__right__span__min .bui .include, .Price__container__content__box__item__right__span__min .ryoukinn .include, .Price__container__content__box__item__right__span__min .box .include, .Price__container__content__box__item__right__span__min .price .include {
    font-size: 1rem;
  }
}
.Price__container__content__box__item__right__span__min .bui {
  width: 10rem;
}
@media (max-width: 768px) {
  .Price__container__content__box__item__right__span__min .bui {
    width: 8rem;
  }
}
.Price__container__content__box__item__right__span__min .bui__inner {
  font-size: 1.8rem;
  line-height: 3rem;
}
@media (max-width: 768px) {
  .Price__container__content__box__item__right__span__min .bui__inner {
    font-size: 1.4rem;
  }
}
.Price__container__content__box__item__right__span__min .box {
  width: 10rem;
}
.Price__container__content__box__item__right__span__min .box__inner {
  font-size: 1.8rem;
  padding: 0.5rem;
  font-weight: bold;
  line-height: 1.8rem;
  line-height: 1.8rem;
  background: #c89a9a;
  color: #fff;
}
@media (max-width: 768px) {
  .Price__container__content__box__item__right__span__min .box__inner {
    font-size: 1.4rem;
  }
}
.Price__container__content__box__item__right__span__min.bold .ryoukinn {
  font-weight: bold;
}
.Price__container__content__box__item__right__span__min.bold .price {
  font-weight: bold;
  font-size: 2.4rem;
}
@media (max-width: 768px) {
  .Price__container__content__box__item__right__span__min.bold .price {
    font-size: 1.6rem;
  }
}
.Price__container__content .kome_big {
  font-size: 1.4rem;
  text-align: right;
  display: block;
  margin-left: auto;
  margin-top: 1rem;
  margin-bottom: 3rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
  font-weight: bold;
}
.Price__container__content .kome {
  font-size: 1.4rem;
  text-align: right;
  display: block;
  margin-left: auto;
  margin-top: 1rem;
  margin-bottom: 3rem;
}

.calendar {
  padding: 0 2rem;
  box-sizing: border-box;
}
.calendar iframe {
  width: 100%;
}