@charset "UTF-8";
/*文字PC*/
/*基本フォント*/
:root {
  /*基本背景色PC*/
  --clr_bg:#FFF;
  /*基本文字色*/
  --clr_txt: #000;
  /*リンク色*/
  --clr_link:#F28900;
  --clr_linkH:#B77826;
  /*ポイントカラーメイン*/
  --clr_main:#5E3212;
  /*ポイントカラーサブ*/
  --clr_sub1:#8D746D;
  --clr_sub2:#A5A5A5;
  --clr_sub3:#442D26;
  --clr_sub4:#FBF7EA;
  --clr_sub5:#D4D4D4;
  --clr_sub6:#F5F5F5;
  --clr_sub7:#CCC0B6;
  --clr_sub8:#F3F3F3;
  /*赤*/
  --red:	#d90f00;
  /*緑*/
  --green:#48a600;
  /*橙*/
  --orange:#F28900;
  /*青*/
  --blue:#005ed9;
}

/* _reset.scss　出力*/
*:focus:not(:focus-visible),
*::before:focus:not(:focus-visible),
*::after:focus:not(:focus-visible) {
  outline: none;
}

/* https://medium.com/@matuzo/writing-css-with-accessibility-in-mind-8514a0007939 */
.visually-hidden {
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  margin: -1px;
}

/* https://www.scottohara.me/blog/2019/01/12/lists-and-safari.html */
.plain-list {
  list-style: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'/%3E");
  padding-left: 0;
}

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

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core root defaults */
/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
html {
  -webkit-text-size-adjust: 100%;
}

button {
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  border-radius: 0;
  color: inherit;
  background: none;
}

h5, h6 {
  margin: 0;
}

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

p {
  margin: 1em 0;
}

img {
  height: auto;
  border: none;
  -o-object-fit: contain;
     object-fit: contain;
}

iframe {
  width: 100%;
  height: 100%;
  border: none;
}

a {
  text-decoration: none;
}

/* /_reset.scss　出力ここまで */
/* _module.scss　出力 */
.cf::before,
.cf::after {
  content: "";
  display: block;
}

.cf::after {
  clear: both;
}

.fl_l {
  float: left;
}

.fl_r {
  float: right;
}

.txt_c {
  text-align: center !important;
}

.txt_l {
  text-align: left !important;
}

.txt_r {
  text-align: right !important;
}

.bold {
  font-weight: bold;
}

em {
  font-weight: bold;
  font-style: normal;
}

.underline {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, #fff38b));
  background: linear-gradient(transparent 60%, #fff38b 60%);
}

.font_s {
  font-size: smaller;
}

.font_l {
  font-size: larger;
}

/* テキストカラー -------------------------------------- */
.fc_orange {
  color: var(--orange) !important;
}

.fc_green {
  color: var(--green) !important;
}

.fc_red {
  color: var(--red) !important;
}

.fc_pink {
  color: var(--pink) !important;
}

.fc_blue {
  color: var(--blue) !important;
}

.img_c {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 1rem auto;
}

.img_bnr {
  display: block;
  max-width: 96%;
  height: auto;
  margin: 1rem auto;
}

.img_l,
.img_r {
  display: block;
  max-width: 80%;
  height: auto;
  margin: 1rem auto;
}

@media screen and (min-width: 48em), print {
  .img_bnr {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 2rem auto;
  }
  .img_l {
    float: left;
    margin: 0 2rem 2rem 0;
  }
  .img_r {
    float: right;
    margin: 0 0 2rem 2rem;
  }
  #lower main .inner img.img_r,
  #lower main .inner img.img_l {
    width: 35rem;
  }
  #lower main .inner img.img_small {
    width: 25rem;
  }
}
.sp_n,
.sp_n_i {
  display: none;
}

@media screen and (min-width: 48em), print {
  .sp_n {
    display: block;
  }
  .sp_n_i {
    display: inline !important;
  }
  .pc_n {
    display: none;
  }
}
/* マージン -------------------------------------- */
.mb_00 {
  margin-bottom: 0 !important;
}

.mb_05 {
  margin-bottom: 0.5rem !important;
}

.mb_10 {
  margin-bottom: 1rem !important;
}

.mb_15 {
  margin-bottom: 1.5rem !important;
}

.mb_20 {
  margin-bottom: 2rem !important;
}

.mb_25 {
  margin-bottom: 2.5rem !important;
}

.mb_30 {
  margin-bottom: 3rem !important;
}

.mb_35 {
  margin-bottom: 3.5rem !important;
}

.mb_40 {
  margin-bottom: 4rem !important;
}

.mb_45 {
  margin-bottom: 4.5rem !important;
}

.mb_50 {
  margin-bottom: 5rem !important;
}

.mlr_auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

/* マージンPC -------------------------------------- */
@media screen and (min-width: 48em), print {
  .mb_05_pc {
    margin-bottom: 0.5rem !important;
  }
  .mb_10_pc {
    margin-bottom: 1rem !important;
  }
  .mb_15_pc {
    margin-bottom: 1.5rem !important;
  }
  .mb_20_pc {
    margin-bottom: 2rem !important;
  }
  .mb_25_pc {
    margin-bottom: 2.5rem !important;
  }
  .mb_30_pc {
    margin-bottom: 3rem !important;
  }
  .mb_35_pc {
    margin-bottom: 3.5rem !important;
  }
  .mb_40_pc {
    margin-bottom: 4rem !important;
  }
  .mb_45_pc {
    margin-bottom: 4.5rem !important;
  }
  .mb_50_pc {
    margin-bottom: 5rem !important;
  }
  .mlr_auto_pc {
    margin-left: auto !important;
    margin-right: auto !important;
  }
}
/* 幅 -------------------------------------- */
.w_10 {
  width: 10% !important;
}

.w_15 {
  width: 15% !important;
}

.w_20 {
  width: 20% !important;
}

.w_25 {
  width: 25% !important;
}

.w_30 {
  width: 30% !important;
}

.w_35 {
  width: 35% !important;
}

.w_40 {
  width: 40% !important;
}

.w_45 {
  width: 45% !important;
}

.w_50 {
  width: 50% !important;
}

.w_55 {
  width: 55% !important;
}

.w_60 {
  width: 60% !important;
}

.w_65 {
  width: 65% !important;
}

.w_70 {
  width: 70% !important;
}

.w_75 {
  width: 75% !important;
}

.w_80 {
  width: 80% !important;
}

.w_85 {
  width: 85% !important;
}

.w_90 {
  width: 90% !important;
}

.w_95 {
  width: 95% !important;
}

.w_100 {
  width: 100% !important;
}

/* 幅PC -------------------------------------- */
@media screen and (min-width: 48em), print {
  .w_10_pc {
    width: 10% !important;
  }
  .w_15_pc {
    width: 15% !important;
  }
  .w_20_pc {
    width: 20% !important;
  }
  .w_25_pc {
    width: 25% !important;
  }
  .w_30_pc {
    width: 30% !important;
  }
  .w_35_pc {
    width: 35% !important;
  }
  .w_40_pc {
    width: 40% !important;
  }
  .w_45_pc {
    width: 45% !important;
  }
  .w_50_pc {
    width: 50% !important;
  }
  .w_55_pc {
    width: 55% !important;
  }
  .w_60_pc {
    width: 60% !important;
  }
  .w_65_pc {
    width: 65% !important;
  }
  .w_70_pc {
    width: 70% !important;
  }
  .w_75_pc {
    width: 75% !important;
  }
  .w_80_pc {
    width: 80% !important;
  }
  .w_85_pc {
    width: 85% !important;
  }
  .w_90_pc {
    width: 90% !important;
  }
  .w_95_pc {
    width: 95% !important;
  }
  .w_100_pc {
    width: 100% !important;
  }
  .w_68_pc {
    width: 68% !important;
  }
}
/* flex box */
.flex_LRTB,
.flex_RLTB {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (min-width: 48em), print {
  /* PCで左→右に配置／SPで上→下に配置 */
  .flex_LRTB {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .flex_LRTB.half {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .flex_LRTB.half > * {
    width: 48%;
    margin-bottom: 0;
  }
  .flex_LRTB.half > li {
    margin-bottom: 1rem;
  }
  .flex_LRTB.half > section {
    margin: 0 !important;
  }
  .flex_LRTB.half > figure.w30 {
    width: 30% !important;
    margin-right: 2%;
  }
  .flex_LRTB.half > figure + ul {
    width: 68% !important;
  }
  .flex_LRTB.center {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  /* PCで右→左に配置／SPで上→下に配置 */
  .flex_RLTB {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .flex_RLTB.half {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .flex_RLTB.half > * {
    width: 48%;
    margin-bottom: 0;
  }
  .flex_RLTB.half > figure.w30 {
    width: 30% !important;
    margin-right: 2%;
  }
  .flex_RLTB.half > figure + ul {
    width: 68% !important;
  }
  .flex_LRTB.third > * {
    width: 32%;
  }
}
/* -----------------------------------------------------------
　リスト
----------------------------------------------------------- */
/*　なし -------------------------------------- */
ul {
  list-style-type: none;
  margin: 0 0 10px;
  padding: 0;
}
ul li {
  margin: 0 0 10px;
  padding: 0;
}

/* シンプル -------------------------------------- */
ul.list_sim {
  margin: 0 0 10px 20px;
}
ul.list_sim > li {
  margin: 0 0 8px 0;
  padding: 0;
  text-indent: -0.3em;
}
ul.list_sim > li::before {
  position: relative;
  top: -0.1em;
  left: -0.3em;
  display: inline-block;
  width: 0.3em;
  height: 0.3em;
  content: "";
  border-radius: 100%;
  background: var(--clr_txt);
  vertical-align: middle;
}

/* ● -------------------------------------- */
ul.list_maru {
  padding: 0;
  margin: 0 0 10px 1.1em;
}
ul.list_maru li {
  list-style-type: none;
  margin: 0 0 0.8rem 0;
}
ul.list_maru li::before {
  display: inline-block;
  content: "●";
  margin-left: -1.1em;
  margin-right: 0.1em;
  color: var(--clr_sub1);
}

/*　● インライン -------------------------------------- */
ul.list_maru.list_in li {
  display: inline-block;
  margin: 0 40px 8px 0;
}

/* ※ -------------------------------------- */
ul.list_kome {
  padding: 0;
  margin: 0 0 10px 1.1em;
}
ul.list_kome li {
  list-style-type: none;
  margin: 0 0 0.8rem 0;
}
ul.list_kome li::before {
  display: inline-block;
  content: "※";
  margin-left: -1.1em;
  margin-right: 0.1em;
  color: #f0013c;
}

/* link -------------------------------------- */
ul.list_lnk {
  padding: 0;
}
ul.list_lnk li {
  text-indent: -1em;
  padding-left: 1em;
  margin-bottom: 0.8rem;
}
ul.list_lnk li::before {
  font-family: "fontello";
  content: "2";
  padding-right: 0.3rem;
  font-weight: bold;
  color: var(--clr_link);
}
ul.list_lnk a {
  color: var(--clr_link);
}

/* ページ内リンク -------------------------------------- */
ul.list_pl li {
  text-indent: -1em;
  padding-left: 1em;
  margin-bottom: 8px;
}
ul.list_pl a {
  font-weight: bold;
}
ul.list_pl a::before {
  font-family: "fontello";
  content: "b";
  padding-right: 0.5rem;
  color: var(--clr_link);
}

@media screen and (min-width: 48em), print {
  ul.list_pl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 1rem 12rem;
  }
  ul.list_pl li {
    width: 34rem;
  }
  ul.list_pl li a {
    display: -ms-grid;
    display: grid;
    place-items: center;
    text-align: center;
    height: 6rem;
    width: 34rem;
    border: 0.1rem solid var(--clr_main);
    position: relative;
    color: var(--clr_main);
  }
  ul.list_pl li a::before {
    position: absolute;
    right: 2rem;
    color: var(--clr_main);
  }
}
/* チェックボックス -------------------------- */
ul.list_check {
  padding: 0;
  margin: 0 0 10px 1.1em;
}
ul.list_check li {
  list-style-type: none;
  margin: 0 0 0.8rem 0;
}
ul.list_check li::before {
  display: inline-block;
  font-family: fontello;
  content: "\e800";
  margin-left: -1.1em;
  margin-right: 0.1em;
  color: var(--clr_main);
}

/* 数値 -------------------------------------- */
ol.list_num {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
}
ol.list_num li {
  list-style-type: decimal;
  margin: 0 0 10px 35px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 90%;
}

/* 流れ図 -------------------------------------- */
ol.list_flow {
  list-style: none;
  padding: 0;
  margin: 0;
}
ol.list_flow > li {
  border: 0.2rem solid var(--clr_main);
  border-radius: 0.5rem;
  margin-bottom: 4rem;
  padding: 1rem 1rem;
  position: relative;
}
ol.list_flow > li dt {
  font-size: 120%;
  margin-bottom: 0.5rem;
  color: var(--clr_main);
}
ol.list_flow > li *:last-child {
  margin-bottom: 0 !important;
}
ol.list_flow > li::after {
  background: var(--clr_main);
  content: "";
  display: block;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  left: 0;
  right: 0;
  bottom: -3.25rem;
  margin: auto;
  position: absolute;
  width: 5rem;
  height: 2rem;
}
ol.list_flow > li:last-child::after {
  /*最後の▼を外す*/
  display: none;
}

@media screen and (min-width: 48em), print {
  ol.list_flow > li {
    padding: 3rem 3.5rem 3.5rem;
    margin-bottom: 9rem;
  }
  ol.list_flow > li::after {
    width: 20rem;
    height: 3.3rem;
    bottom: -6.5rem;
  }
  ol.list_flow > li dt {
    font-size: 2.6rem;
    margin-bottom: 1rem;
  }
}
/* -----------------------------------------------------------
　定義リスト
----------------------------------------------------------- */
/* 経歴 -------------------------------------- */
.dl_career dd {
  margin: 0 0 1em 5px;
}

@media screen and (min-width: 48em), print {
  .dl_career {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .dl_career dt {
    width: 9em;
  }
  .dl_career dd {
    width: calc(100% - 10em);
  }
}
/* dtシンプル -------------------------------------- */
.dl_sim {
  margin: 0 auto 1.5rem;
}
.dl_sim > dt {
  font-weight: bold;
  color: var(--clr_main);
  margin-bottom: 0.7rem;
  font-size: 110%;
}
.dl_sim > dd {
  margin-bottom: 2.5rem;
}

/* dtに二重線 -------------------------------------- */
.dl_def {
  margin: 2rem auto;
}
.dl_def > dt {
  border-bottom: double 3px var(--clr_main);
  margin-bottom: 0.7rem;
  font-size: 110%;
}
.dl_def > dd {
  margin-bottom: 1.5rem;
}
.dl_def > dd ul.list_maru li::before {
  color: var(--clr_sub1);
}

.dl_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  border-left: 0.1rem solid #ccc;
  border-right: 0.1rem solid #ccc;
  border-top: 0.1rem solid #ccc;
  padding: 0;
}
.dl_flex dt,
.dl_flex dd {
  border-bottom: 0.1rem solid #ccc;
  margin: 0;
  padding: 0.5rem;
}
.dl_flex dt {
  background: var(--clr_sub3);
}

@media screen and (min-width: 48em), print {
  .dl_flex dt,
  .dl_flex dd {
    padding: 1.5rem;
  }
}
/* テーブルもどき -------------------------------------- */
.dl_tbl {
  border: var(--clr_sub1) solid 1px;
  margin-bottom: 0.5rem;
}
.dl_tbl > dt {
  font-weight: bold;
  background: var(--clr_sub1);
  padding: 0.5rem 1rem;
  color: #fff;
}
.dl_tbl > dd {
  padding: 1rem;
  margin: 0;
}
.dl_tbl > dd *:last-child {
  margin-bottom: 0;
}

@media screen and (min-width: 48em), print {
  .dl_tbl dt {
    border-top: #fff 0.1rem solid;
    padding: 1rem 0 1rem 2rem;
  }
  .dl_tbl dt:first-child {
    border-top: none;
  }
  .dl_tbl dd {
    border-top: var(--clr_sub1) 0.1rem solid;
    padding: 1.5rem 2rem;
  }
  .dl_tbl dd:nth-child(2) {
    border-top: none;
  }
}
/* box -------------------------------------- */
.box1,
.box2,
.box3 {
  padding: 20px !important;
  margin-bottom: 20px;
  background: var(--clr_sub4);
  border-radius: 0.5rem;
}
.box1 > dt,
.box2 > dt,
.box3 > dt {
  border-bottom: var(--clr_sub1) dotted 2px;
  margin-bottom: 15px;
  padding-bottom: 5px;
  font-weight: bold;
}
.box1 > dd,
.box2 > dd,
.box3 > dd {
  margin: 10px;
}
.box1 > dd dt,
.box2 > dd dt,
.box3 > dd dt {
  color: var(--clr_sub1);
  font-weight: bold;
}
.box1 > *:last-child,
.box2 > *:last-child,
.box3 > *:last-child {
  margin-bottom: 0;
}

.box2 {
  background: var(--clr_sub5);
}
.box2 dt {
  border-bottom: var(--clr_sub1) dotted 2px;
}
.box2 ul.list_maru > li::before {
  color: var(--clr_sub1);
}

.box3 {
  background: #fbfbfb;
  border: 0.2rem solid #d4d4d4;
}

@media screen and (min-width: 48em), print {
  .box1 > dt,
  .box2 > dt {
    font-size: 18px;
  }
  .box1 > dd dt,
  .box2 > dd dt {
    font-size: 17px;
  }
}
/* リンク -------------------------------------- */
a {
  text-decoration: none;
}

main a {
  border-bottom: 1px solid var(--clr_link);
  color: var(--clr_link);
}

main a:hover {
  color: var(--clr_linkH);
  border-bottom: 1px solid var(--clr_linkH);
}

a[href^="tel:"] {
  border-bottom: none;
}

a:hover img {
  opacity: 0.8;
}

a.btn {
  color: var(--clr_sub3);
  padding: 1rem 2rem;
  text-align: center;
  margin: 5px auto;
  width: auto;
  display: -ms-grid;
  display: grid;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: var(--clr_sub3) 0.2rem solid !important;
  line-height: 1;
  position: relative;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
a.btn:hover {
  color: var(--clr_sub3);
  -webkit-transform: translateY(-0.8rem);
          transform: translateY(-0.8rem);
}
a.btn::after {
  content: "\eb6e";
  font-family: fontello;
  position: absolute;
  right: 1rem;
  font-weight: normal;
}

@media screen and (min-width: 48em), print {
  a.btn {
    padding: 2rem 7rem;
  }
  a.btn::after {
    font-size: 3rem;
    right: 2.5rem;
  }
}
.mail_btn {
  color: #fff;
  text-align: center;
  width: auto;
  display: inline-block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.mail_btn::before {
  content: "\e800";
  font-family: fontello;
  display: inline-block;
  margin-right: 0.4em;
}
@media screen and (min-width: 48em), print {
  .mail_btn:hover {
    opacity: 0.7;
  }
}

a.border_n {
  border: none !important;
}

/* 画像  -------------------------------------- */
figure {
  margin: 0;
}

#lower figure {
  margin-bottom: 10px;
}

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

/* カレンダー -------------------------------------- */
table.caledit {
  width: 100%;
  font-weight: 500;
  border-collapse: collapse;
  border-spacing: 0;
  position: relative; /* afterの位置基準 */
  margin-top: 2.5rem;
  line-height: 1;
}
table.caledit th {
  text-align: center;
  color: #fff;
  padding: 0.6rem 0;
}
table.caledit td {
  text-align: center;
  padding: 0.5rem 0;
  /*height:30px;*/
  vertical-align: middle;
  cursor: default;
  font-size: 1.2rem;
  background-color: #fff;
  color: #292929;
  border-bottom: 1px solid #fff;
  /* letter-spacing: 0.1em; */
}
table.caledit td.today {
  font-weight: bold;
}
table.caledit td.close {
  background: #fff;
}
table.caledit td.rental {
  background: #ebebeb;
}
table.caledit td.bar {
  background: #f2eaca;
}
table.caledit td.host {
  background: #f6d1c7;
}
table.caledit td.reserve {
  background: #cae6f2;
}
table.caledit td.staff_to {
  background: #cfe1d0;
}
table.caledit td.staff_ko {
  background: #d8cedf;
}
table.caledit td.staff_su {
  background: #e3cccb;
}
table.caledit td.staff_toni {
  background: #a0d4fe;
}
table.caledit td.staff_tosu {
  background: #f5be80;
}
table.caledit td.staff_nisu {
  background: #88e1cf;
}
table.caledit td.notTheMonth {
  background: #fff;
  color: #fff;
}
table.caledit tr.month th {
  background: var(--clr_main);
  font-size: 1.4rem;
  font-weight: bold;
  color: #fff;
  text-align: center;
}
table.caledit tr.week th {
  padding: 1rem 0 1rem;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(95%, transparent), color-stop(95%, var(--clr_main)), to(var(--clr_main)));
  background: linear-gradient(transparent 95%, var(--clr_main) 95%, var(--clr_main) 100%);
  border-bottom: 0.7rem solid #fff;
  font-size: 1.2rem;
  color: #606060;
  font-weight: bold;
}
table.caledit tr.week th:first-child {
  color: #9e431b;
}
table.caledit tr.week th:last-child {
  color: #226e95;
}
table.caledit .day td .shortTitle {
  display: none;
}
table.caledit .day td:hover .shortTitle {
  color: var(--clr_txt);
}
table.caledit + ul {
  margin: 1rem 0 2rem;
}
table.caledit + ul li {
  margin-bottom: 0.3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  line-height: 1;
}
table.caledit + ul li::before {
  content: "";
  display: block;
  width: 3rem;
  height: 2rem;
  border: 0.1rem solid #bebebe;
  background: #fff;
}
table.caledit + ul li.close::before {
  background: #fff;
}
table.caledit + ul li.bar::before {
  background: #f2eaca;
}
table.caledit + ul li.rental::before {
  background: #ebebeb;
}
table.caledit + ul li.host::before {
  background: #f6d1c7;
}
table.caledit + ul li.reserve::before {
  background: #cae6f2;
}
table.caledit + ul li.staff_to::before {
  background: #cfe1d0;
}
table.caledit + ul li.staff_ko::before {
  background: #d8cedf;
}
table.caledit + ul li.staff_su::before {
  background: #e3cccb;
}
table.caledit + ul li.staff_toni::before {
  background: #a0d4fe;
}
table.caledit + ul li.staff_tosu::before {
  background: #f5be80;
}
table.caledit + ul li.staff_nisu::before {
  background: #88e1cf;
}
table.caledit + .monthlynotes {
  margin: 0 0 1rem;
}

@media screen and (min-width: 48em), print {
  table.caledit tr.month th {
    padding: 1.3rem;
    font-size: 2.4rem;
  }
  table.caledit tr.week th {
    font-size: 2rem;
    padding: 2rem 1.3rem 1.5rem;
    border-width: 2.8rem;
  }
  table.caledit tr.day td {
    padding: 1.3rem;
    font-size: 2.2rem;
  }
  table.caledit + ul {
    margin: 2rem 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  table.caledit + ul li {
    font-size: 1.6rem;
    letter-spacing: normal;
    margin-bottom: 1.4rem;
  }
  table.caledit + ul.line_2 li {
    width: 50%;
  }
  table.caledit + ul.line_3 {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  table.caledit + ul.line_3 li {
    width: auto;
  }
  table.caledit + ul.line_3 li:nth-of-type(2) {
    padding: 0 1.5em;
  }
}
/* /_module.scss　出力ここまで */
/* _common.scss　出力 */
@font-face {
  font-family: "fontello";
  src: url("fontello/font/fontello.eot");
  src: url("fontello/font/fontello.eot#iefix") format("embedded-opentype"), url("fontello/font/fontello.woff2") format("woff2"), url("fontello/font/fontello.woff") format("woff"), url("fontello/font/fontello.ttf") format("truetype"), url("fontello/font/fontello.svg#fontello") format("svg");
}
.demo-icon {
  font-family: "fontello";
  font-style: normal;
  font-weight: normal;
  text-decoration: inherit;
  text-align: center;
  font-variant: normal;
  text-transform: none;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@font-face {
  font-family: AdjustedYuGothic;
  font-weight: 400;
  src: local("Yu Gothic Medium");
}
@font-face {
  font-family: AdjustedYuGothic;
  font-weight: 700;
  src: local("Yu Gothic Bold");
}
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-size: 3.125vw;
  scroll-behavior: smooth;
}

body {
  font-family: YakuHanMPs, "Zen Old Mincho", "Hiragino Mincho ProN", "Noto Serif JP", "Yu Mincho", YuMincho, serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--clr_txt);
  font-size: 1.25rem;
  background-color: var(--clr_bg);
  line-height: 1;
  margin: 0;
  padding: 0;
  letter-spacing: 0.08em;
  -moz-text-size-adjust: none;
   -ms-text-size-adjust: none;
       text-size-adjust: none;
  -webkit-text-size-adjust: none;
  width: 100%;
  position: relative;
}

@media screen and (min-width: 48em), print {
  html {
    font-size: 62.5%; /* ベースを10pxに */
  }
  body {
    min-width: 1220px;
    font-size: 1.8rem;
  }
}
/* 全体の横幅設定  -------------------------------------- */
.wrap {
  margin: 0 1.5rem;
}

main {
  line-height: 1.4;
}

.inner {
  padding: 0;
}

main > .inner {
  margin: 0 15px 30px;
  line-height: 1.6;
}

section {
  margin-bottom: 3rem;
}

@media screen and (min-width: 48em), print {
  .wrap {
    width: 1220px;
    margin: 0 auto;
    padding: 0 1rem;
  }
  section {
    margin-bottom: 5rem;
  }
  .inner {
    padding: 0;
  }
  main {
    margin-top: 6rem;
  }
  .sidemenu {
    width: 30%;
  }
  .content {
    width: 68%;
  }
}
/* header  -------------------------------------- */
.h_bg {
  width: 100%;
  height: 6rem;
  position: fixed;
  background: var(--clr_main);
  opacity: 0.9;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  place-items: center;
  z-index: 100;
  mix-blend-mode: multiply;
}

header {
  position: fixed;
  z-index: 100;
}
header .wrap {
  margin: 0;
  position: relative;
}
header .h_left {
  width: 100%;
  padding: 0 1rem;
  display: -ms-grid;
  display: grid;
  gap: 0.3rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 6rem;
  position: relative;
  z-index: 1;
}
header .h_left .logo_wrap small {
  display: inline-block;
  margin: 0.4rem 0 0;
  color: #fff;
}
header .h_right ul.flex_LRTB {
  display: none;
}
header .logo img {
  width: calc(100% - 6.6rem);
  height: 100%;
}

/* ハンバーガーメニュー  -------------------------------------- */
#sp_menu {
  width: 6rem;
  height: 6rem;
  color: #fff;
  text-align: center;
  line-height: 1;
  font-size: 1rem;
  padding: 0;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 100;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  display: -ms-grid;
  display: grid;
  -ms-flex-line-pack: center;
      align-content: center;
}

#sp_menu.hide {
  -webkit-transform: translateY(-220%);
          transform: translateY(-220%);
}

#sp_menu::before {
  display: block;
  font-family: "fontello";
  content: "\e971";
  font-size: 2rem;
  padding-bottom: 0.1rem;
}

#sp_menu.open::before {
  font-family: "fontello";
  content: "\e970";
}

/*
#sp_menu::after {
    display: block;
    content: "MENU";
}
#sp_menu.open::after {
    content: "CLOSE";
}*/
#sp_menu span {
  display: none;
}

#nav .gnav_subnav {
  width: 100%;
  max-height: calc(100dvh - 6rem);
  overflow-y: auto;
  background: var(--clr_sub4);
  margin: auto;
  position: fixed;
  top: 6rem;
  left: 100vw;
  z-index: 100;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-overflow-scrolling: touch;
}
#nav .gnav_subnav.open {
  left: 0;
}

#nav a {
  color: var(--clr_txt);
  text-decoration: none;
}
#nav ul.gnav > li {
  margin: 2rem 0;
}
#nav ul.gnav > li a {
  padding: 0 0 0 1.1em;
  display: block;
  position: relative;
  line-height: 1.2;
}
#nav a::before {
  font-family: fontello;
  content: "2";
  padding-right: 0.2rem;
  text-align: center;
}
#nav .dropdown > a {
  margin: 1.5rem 0 1.5rem;
}
#nav .dropdown > a::before,
#nav .dropdown .subsub::before {
  content: "3";
}
#nav .dropdown > a.close::before {
  content: "b";
}
#nav .dropdown ul {
  margin-left: 1.5rem;
  display: -ms-grid;
  display: grid;
  gap: 1.5rem 0;
}
#nav .dropdown ul li {
  margin: 0;
}
#nav .dropdown ul li a {
  margin: 0;
}
#nav .dropdown ul li a span {
  display: inline-block;
}
#nav > a {
  display: none;
}

#nav.open {
  right: 0;
}

@media screen and (min-width: 48em), print {
  .h_bg {
    height: 20rem;
    position: absolute;
  }
  header {
    padding: 0 0;
    width: 100%;
    min-width: 1220px;
    margin: 0;
    z-index: 100;
    position: relative;
  }
  header > .wrap {
    margin: 0 auto;
    padding: 2rem 2rem 0.5rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  header > .wrap .logo {
    height: auto;
    width: 37.2rem;
    margin: 0 auto 0 0;
    padding: 0;
    display: block;
  }
  header > .wrap .logo img {
    width: 100%;
  }
  header > .wrap .h_left {
    width: auto;
    height: auto;
    position: relative;
    padding: 0;
  }
  header > .wrap .h_left .logo_wrap small {
    margin: 1.3rem 0 0;
  }
  header > .wrap .h_left #sp_menu {
    display: none;
  }
  header > .wrap .h_right {
    text-align: right;
    position: inherit;
    margin: 0 0 0 auto;
  }
  header > .wrap .h_right ul.flex_LRTB {
    margin: 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 4rem;
  }
  header > .wrap .h_right ul.flex_LRTB .h_tel {
    margin: 0;
    color: #fff;
    font-size: 2.7rem;
  }
  header > .wrap .h_right ul.flex_LRTB .h_tel::before {
    font-size: 1.5rem;
    content: "Tel.";
  }
  header > .wrap .h_right ul.flex_LRTB .h_tel a {
    color: #fff;
  }
  header > .wrap .h_right ul.flex_LRTB .h_tel .mail_btn {
    margin-left: 0.8em;
  }
  header > .wrap .h_right ul.flex_LRTB .h_reserve {
    margin: 0;
  }
  header > .wrap .h_right ul.flex_LRTB .h_reserve a {
    width: 15rem;
    height: 9.6rem;
    border-radius: 0.6rem;
    display: -ms-grid;
    display: grid;
    color: #000;
    background: #fff;
    font-size: 1.5rem;
    gap: 1.3rem;
    -ms-flex-line-pack: center;
        align-content: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  header > .wrap .h_right ul.flex_LRTB .h_reserve a i {
    font-size: 3.2rem;
  }
  #nav {
    padding: 0;
    margin: 0 auto 0;
    position: relative;
    top: auto;
    right: auto;
    overflow: visible !important;
    -webkit-transition: none;
    transition: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    line-height: 1;
    font-size: 1.6rem;
    font-weight: bold;
    z-index: 100;
    height: 7.8rem;
  }
  #nav .gnav_subnav {
    position: relative;
    background-color: transparent;
    top: auto;
    left: auto;
    right: auto;
    width: auto;
    max-height: none;
    padding: 0;
    margin: 0 auto;
    overflow: inherit;
  }
  #nav ul.gnav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    max-width: none;
    width: 1220px;
    margin: 0 auto;
    text-align: center;
    padding: 0 1rem;
  }
  #nav ul.gnav > li {
    margin: 0;
    padding: 0;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-left: 0.1rem solid #fff;
  }
  #nav ul.gnav > li:last-child {
    border-right: 0.1rem solid #fff;
  }
  #nav ul.gnav > li > a {
    text-align: center;
    display: -ms-grid;
    display: grid;
    -ms-flex-line-pack: center;
        align-content: center;
    padding: 0 2.7rem;
    position: relative;
    margin: 0;
    width: 100%;
    line-height: 1;
    letter-spacing: normal;
    color: #fff;
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
    white-space: nowrap;
  }
  #nav ul.gnav > li > a::before {
    position: absolute;
    bottom: -0.8rem;
    top: auto;
    left: 30%;
    content: "";
    width: 40%;
    height: 0.3rem;
    background: #fff;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: center top;
    transform-origin: center top;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
  #nav ul.gnav > li > a:hover::before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  #nav ul.gnav > li > a::after {
    content: "home";
    font-size: 1.3rem;
    font-weight: normal;
  }
  #nav ul.gnav > li.concept a::after {
    content: "concept";
  }
  #nav ul.gnav > li.equipment a::after {
    content: "equipment";
  }
  #nav ul.gnav > li.menu a::after {
    content: "food & drink";
  }
  #nav ul.gnav > li.record a::after {
    content: "record";
  }
  #nav ul.gnav > li.schedule a::after {
    content: "schedule";
  }
  #nav ul.gnav > li.enjoy a::after {
    content: "How to enjoy";
  }
  #nav ul.gnav > li.session a::after {
    content: "session";
  }
  #nav ul.gnav > li.access a::after {
    content: "access";
  }
  #nav ul.gnav > li.dropdown {
    margin: 0;
  }
  #nav ul.gnav > li.dropdown > a {
    position: relative;
    margin: 0;
  }
  #nav ul.gnav > li.dropdown .subnav {
    display: none;
    position: absolute;
    margin: 0;
    z-index: 100;
    top: 4rem;
    overflow: hidden;
    width: 40rem;
    background: #fff;
    opacity: 0.95;
  }
  #nav ul.gnav > li.dropdown .subnav ul {
    margin: 0;
    gap: 0;
  }
  #nav ul.gnav > li.dropdown .subnav ul li {
    margin: 0;
    padding: 0;
  }
  #nav ul.gnav > li.dropdown .subnav ul li > a {
    text-align: left;
    color: var(--clr_txt);
    margin: 0;
    padding: 1rem 0 1rem 2rem;
    letter-spacing: normal;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #nav ul.gnav > li.dropdown .subnav ul li > a:hover {
    background: var(--clr_sub1);
    color: #fff;
  }
  #nav ul.gnav > li.dropdown .subnav ul li > a:hover::before {
    color: #fff;
  }
  #nav ul.gnav > li.dropdown .subnav ul li > a::before {
    content: "\e810";
    font-family: fontello;
    font-size: 1rem;
    padding-right: 0.5rem;
    color: var(--clr_sub1);
  }
  #nav.fixed {
    position: sticky;
    top: -1px;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0;
  }
}
/* main   -------------------------------------- */
main {
  display: block;
}
main p {
  margin: 0 0 1em;
  line-height: 1.6;
  text-align: justify;
}
main .eng {
  text-align: inherit;
}
main li,
main dl {
  line-height: 1.6;
}

@media screen and (min-width: 48em), print {
  main {
    margin: 0;
  }
}
/* ページ下部 医院概要  -------------------------------------- */
#overview {
  padding: 3rem 0 0;
  background: var(--clr_sub3);
  line-height: 1.5;
  color: #fff;
}
#overview::after {
  content: "";
  display: block;
  width: 100%;
  height: 20rem;
  background: url(../img/overview_img01.webp) no-repeat center;
  background-size: cover;
  margin-top: 3rem;
}
#overview .logo {
  margin-bottom: 2rem;
}
#overview .logo img {
  width: 15rem;
  display: block;
  margin: 0 auto;
}
#overview .logo + ul {
  text-align: center;
  margin: 0 0 2rem;
}
#overview .logo + ul .o_tel {
  margin: 0 0 0.5em;
  font-size: 1.8rem;
}
#overview .logo + ul .o_tel::before {
  font-family: fontello;
  content: "Tel.";
  padding-right: 0.3rem;
  font-size: 1.2rem;
}
#overview .logo + ul .o_tel a {
  color: #fff;
}
#overview .logo + ul .o_mail {
  margin: 0 0 1em;
  font-size: 1.8rem;
}
#overview .overviewL {
  margin: 0;
}
#overview .o_sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 2.5rem;
}
#overview .o_sns li {
  width: 5rem;
  margin: 0;
}

.dl_overview {
  margin-bottom: 0;
  text-align: center;
}
.dl_overview > dt {
  font-weight: bold;
  border: 0.1rem solid #fff;
  padding: 0.5rem 0;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.dl_overview > dd {
  padding: 0 0 1.5rem;
  word-break: auto-phrase;
}

.dl_time {
  margin-bottom: 3rem;
}
.dl_time dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 0.5em;
}
.dl_time dt::before, .dl_time dt::after {
  content: "";
  display: block;
  width: calc((100% - 6em) / 2);
  height: 0.1rem;
  background: #fff;
}
.dl_time dd {
  text-align: center;
}
.dl_time dd span {
  display: inline-block;
}

.gmap {
  height: 29rem;
}

@media screen and (min-width: 48em), print {
  #overview {
    font-size: 1.8rem;
    position: relative;
    padding: 0;
    height: 83.6rem;
  }
  #overview::after {
    height: 100%;
    width: 50%;
    position: absolute;
    left: 50%;
    background-size: auto;
    margin: 0;
  }
  #overview .wrap {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 10rem;
  }
  #overview .wrap .overviewL {
    width: 51rem;
    padding: 6rem 0 0;
  }
  #overview .logo {
    width: 30.2rem;
    margin: 0 auto 2.5rem;
  }
  #overview .logo img {
    width: 100%;
  }
  #overview .logo + ul {
    margin-bottom: 3rem;
  }
  #overview .logo + ul .o_tel {
    font-size: 3rem;
    margin: 0 0 0.2em;
  }
  #overview .logo + ul .o_tel::before {
    font-size: 1.8rem;
  }
  #overview .logo + ul .o_mail {
    margin: 0 0 1em;
    font-size: 2.8rem;
  }
  #overview .overviewL {
    max-width: none;
    padding: 0;
  }
  .dl_time dd {
    text-align: left;
  }
  .dl_overview {
    margin-bottom: 4rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 1.2rem 1.8rem;
  }
  .dl_overview > dt {
    width: 13rem;
    height: 3.2rem;
    display: -ms-grid;
    display: grid;
    place-items: center;
    margin: 0;
  }
  .dl_overview > dd {
    text-align: justify;
    width: 34.5rem;
    padding: 0 0;
  }
  .gmap {
    margin: 0;
    height: 50rem;
  }
}
/* 診療時間表 -------------------------------------- */
.tbl_time {
  width: 100%;
  text-align: center;
  border-spacing: 0;
  border-collapse: separate;
  overflow: hidden;
  border-radius: 0.5rem 0.5rem 0 0;
}
.tbl_time caption {
  caption-side: bottom;
  text-align: left;
  margin: 0.5rem 0 0;
  margin-bottom: 1rem;
  line-height: 1;
}
.tbl_time thead th {
  background: var(--clr_main);
  padding: 0.5rem 0;
  color: #fff;
}
.tbl_time tbody {
  background: #fff;
}
.tbl_time tbody th,
.tbl_time tbody td {
  padding: 0.7rem 0;
  vertical-align: middle;
  border-bottom: 0.1rem solid var(--clr_main);
  font-weight: normal;
}
.tbl_time tbody td {
  width: 2em;
  font-weight: bold;
  color: var(--clr_main);
}
.tbl_time tbody tr:last-child td,
.tbl_time tbody tr:last-child th {
  border-width: 0.2rem;
}

@media screen and (min-width: 48em), print {
  .tbl_time {
    margin: 0 auto 3rem;
    width: 81rem;
    font-size: 2.2rem;
  }
  .tbl_time caption {
    margin-top: 1.5rem;
  }
  .tbl_time thead th {
    padding: 1.4rem 0;
  }
  .tbl_time tbody th {
    width: 14rem;
    line-height: 1;
    padding: 3rem 0;
  }
  .tbl_time tbody td {
    padding: 1rem 0;
    width: 4rem;
  }
}
/* ページトップ -------------------------------------- */
.sp_bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  background: var(--clr_sub4);
  margin: 0;
  width: 100%;
  height: 4rem;
  padding: 0.1rem 0;
  text-align: center;
  z-index: 100;
  letter-spacing: normal;
}
.sp_bottom li {
  position: relative;
  margin: 0;
  height: 100%;
  width: 24%;
}
.sp_bottom li a {
  padding: 1rem 0;
  color: #fff;
  background: var(--clr_sub1);
  text-align: center;
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
}
.sp_bottom li.enjoy {
  width: 35%;
}
.sp_bottom li.enjoy a {
  background: var(--clr_main);
}
.sp_bottom li:last-child {
  width: 40%;
}

#pageup {
  position: fixed;
  bottom: -15rem;
  right: 0.5rem;
  z-index: 1000;
  cursor: pointer;
  -webkit-transition: 0.8s;
  transition: 0.8s;
  width: 7rem;
  height: 7rem;
  -ms-flex-line-pack: center;
      align-content: center;
}
#pageup.block {
  bottom: 4rem;
}

@media screen and (min-width: 48em), print {
  .sp_bottom {
    width: 6rem;
    height: 6rem;
    background-color: transparent;
    width: 0;
    height: 0;
    position: relative;
  }
  .sp_bottom li:first-child,
  .sp_bottom li :nth-child(2) {
    display: none;
  }
  #pageup {
    width: 37.4rem;
    height: 10.4rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 3rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
/* footer -------------------------------------- */
footer div.wrap {
  display: none;
}

address {
  padding: 0.8rem 0 5rem;
  font-style: normal;
  text-align: center;
  line-height: 1;
  background: var(--clr_sub3);
}
address a {
  color: #fff;
}

@media screen and (min-width: 48em), print {
  footer {
    display: block;
    padding: 0;
    margin: 0 auto 0;
  }
  footer div.wrap {
    display: block;
    padding: 5rem 0 3.2rem;
    font-size: 1.6rem;
  }
  footer div.wrap ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 0 auto;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  footer div.wrap ul > li {
    margin: 0 0 1.8rem;
  }
  footer div.wrap ul > li a {
    color: #000;
    padding: 0 0.5rem;
  }
  footer div.wrap ul > li a:hover {
    color: var(--clr_sub3);
  }
  footer div.wrap ul > li::after {
    content: "/";
  }
  footer div.wrap ul > li:last-child::after {
    display: none;
  }
  footer address {
    margin: 0 auto;
    padding: 5rem 0;
    font-size: 1.2rem;
  }
}
/*
nav,
footer,
#area,#housecall,#philosophy,.pc_tab {
    a {
              pointer-events: none;
    }
}*/
/* /_common.scss　出力ここまで */
/* _top.scss　出力 */
#TopPage .kv_wrap {
  position: relative;
}
#TopPage .kv_wrap #kv {
  background-size: auto 60rem;
  background-position: center center;
  position: relative;
  width: 100%;
  height: 60rem;
  z-index: 10;
  color: #fff;
}
#TopPage .kv_wrap .kv_slide {
  height: 60rem;
  background-size: cover;
  background-position: center;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-repeat: no-repeat;
}
#TopPage .kv_wrap .kv_slide.-kv01 {
  background-size: cover;
  background-position: 20% 40%;
}
#TopPage .kv_wrap .kv_slide.-kv02 {
  background-size: cover;
  background-position: 0 40%;
}
#TopPage .kv_wrap .kv_slide .kv_inner {
  height: 100%;
  padding-top: 21rem;
}
#TopPage .kv_wrap .kv_scroll {
  position: absolute;
  bottom: 20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  z-index: 10;
  color: #fff;
}
#TopPage .kv_wrap .kv_scroll a {
  text-align: center;
  font-weight: bold;
  display: -ms-grid;
  display: grid;
  -ms-flex-line-pack: center;
      align-content: center;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2rem;
  color: #fff;
}
#TopPage .kv_txt {
  padding: 0.8rem 0;
  font-size: 1.8rem;
  line-height: 1.4;
  font-weight: 500;
  text-shadow: var(--clr_sub3) 2px 0px 2px, var(--clr_sub3) -2px 0px 2px, var(--clr_sub3) 0px -2px 2px, var(--clr_sub3) -2px 0px 2px, var(--clr_sub3) 2px 2px 2px, var(--clr_sub3) -2px 2px 2px, var(--clr_sub3) 2px -2px 2px, var(--clr_sub3) -2px -2px 2px, var(--clr_sub3) 1px 2px 2px, var(--clr_sub3) -1px 2px 2px, var(--clr_sub3) 1px -2px 2px, var(--clr_sub3) -1px -2px 2px, var(--clr_sub3) 2px 1px 2px, var(--clr_sub3) -2px 1px 2px, var(--clr_sub3) 2px -1px 2px, var(--clr_sub3) -2px -1px 2px, var(--clr_sub3) 1px 1px 2px, var(--clr_sub3) -1px 1px 2px, var(--clr_sub3) 1px -1px 2px, var(--clr_sub3) -1px -1px 2px;
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}
#TopPage .kv_txt.eng {
  font-size: 1.6rem;
}
#TopPage main {
  padding: 0 0;
  overflow-x: hidden;
}
#TopPage main .btn {
  max-width: 25rem;
  margin: 1rem auto;
}
#TopPage #info {
  padding: 5rem 0;
  position: relative;
  background: url(../img/info_bg.jpg);
  background-size: auto;
}
#TopPage #info h2 {
  text-align: center;
  color: var(--clr_sub3);
  font-size: 1.8rem;
  border-bottom: 0.1rem solid var(--clr_sub3);
  margin-bottom: 1rem;
}
#TopPage #info .inner {
  border-bottom: 0.1rem solid var(--clr_sub3);
  padding-bottom: 1rem;
}
#TopPage #info dl {
  padding: 0 1rem;
  position: relative;
  overflow: auto;
  max-height: 15rem;
}
#TopPage #info dl::-webkit-scrollbar {
  width: 10px;
}
#TopPage #info dl::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.5);
  border: none;
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 2px #f5efe1;
          box-shadow: inset 0 0 2px #f5efe1;
}
#TopPage #info dl::-webkit-scrollbar-thumb {
  background: var(--clr_sub7);
  border-radius: 10px;
  -webkit-box-shadow: none;
          box-shadow: none;
}
#TopPage #info dl dt {
  font-weight: bold;
  position: relative;
  padding: 1rem 0.5rem 1rem 1.2em;
  font-size: 1.4rem;
  border-top: 0.1rem dotted #ccc;
  margin-top: 1rem;
  font-size: 112%;
  color: var(--clr_sub3);
}
#TopPage #info dl dt:first-child {
  border-top: none;
  margin-top: 0;
}
#TopPage #info dl dt::before {
  font-family: fontello;
  content: "\e807";
  position: absolute;
  top: 1.1rem;
  left: 0;
  width: 1.6rem;
  height: 1.4rem;
  font-weight: normal;
}
#TopPage #info dl dt {
  /*
      &.open::before {
          content: "\f005";
          top: 1rem;
      }*/
}
#TopPage #info dl dt > span {
  display: none;
}
#TopPage #about > section {
  padding: 5rem 0 0;
  margin-bottom: 0;
  position: relative;
}
#TopPage #about > section h2 {
  position: absolute;
  color: var(--clr_sub8);
  top: 1rem;
  font-size: 4.5rem;
  z-index: -1;
  font-weight: 500;
}
#TopPage #about > section > .wrap p {
  margin-bottom: 0.5em;
}
#TopPage #about > section > .wrap p.catch {
  color: var(--clr_sub3);
  font-size: 1.8rem;
}
#TopPage #about > section > .wrap p.catch.eng {
  font-size: 1.6rem;
}
#TopPage #about > section > .wrap img {
  border-radius: 1.2rem;
}
#TopPage #about > section > .wrap {
  /*ul {
      li {
          img {
              display: block;
          }
          &:first-child img {
              width: 15rem;
              margin: 0 0 -5rem auto;
          }
          &:nth-child(2) img {
              width: 20rem;
              margin: 0 auto -5rem 0;
          }
          &:last-child img {
              width: 20rem;
              margin: 0 0 0 auto;
          }
      }
  }*/
}
#TopPage #about #equipment {
  padding: 5rem 0;
  margin-top: 5rem;
  background: url(../img/about_equipment_bg.webp) no-repeat center;
  background-size: cover;
  color: #fff;
  text-align: center;
}
#TopPage #about #equipment dt {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  line-height: 2;
}
#TopPage #about #equipment dd .btn {
  border-color: #fff !important;
  color: #fff;
  z-index: 10;
}
#TopPage #about #equipment dd .btn::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #190e0a;
  mix-blend-mode: multiply;
  z-index: -1;
  opacity: 0.8;
}
#TopPage #about #equipment ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  margin: 2rem 0.5rem 0;
}
#TopPage #about #equipment ul li {
  margin: 0;
}
#TopPage #about #equipment ul img {
  border-radius: 1.2rem;
  -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.3);
}
#TopPage #about #food {
  padding: 5rem 0;
}
#TopPage #about #food h3 {
  font-size: 1.8rem;
  border-left: 0.3rem solid var(--clr_main);
  padding-left: 0.5rem;
  line-height: 1;
  margin-bottom: 2rem;
}
#TopPage #about #food p {
  margin-bottom: 1.5em;
}
#TopPage #about #food .btn {
  margin-bottom: 3rem;
}
#TopPage #about #food img {
  border-radius: 1.2rem;
  margin: 1rem auto;
  width: 20rem;
  display: block;
}
#TopPage #about #ssp {
  background: url(../img/ssp_bg.jpg) no-repeat top center;
  padding: 5rem 0;
}
#TopPage #about #ssp ul li a {
  padding: 4rem 1rem 1rem;
  display: -ms-grid;
  display: grid;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  background: url(../img/about_enjoy.jpg) no-repeat center bottom;
  width: 20rem;
  border-radius: 1.2rem;
  color: #fff;
  font-size: 1.4rem;
  background-size: cover;
  position: relative;
  text-shadow: var(--clr_sub3) 2px 0px 2px, var(--clr_sub3) -2px 0px 2px, var(--clr_sub3) 0px -2px 2px, var(--clr_sub3) -2px 0px 2px, var(--clr_sub3) 2px 2px 2px, var(--clr_sub3) -2px 2px 2px, var(--clr_sub3) 2px -2px 2px, var(--clr_sub3) -2px -2px 2px, var(--clr_sub3) 1px 2px 2px, var(--clr_sub3) -1px 2px 2px, var(--clr_sub3) 1px -2px 2px, var(--clr_sub3) -1px -2px 2px, var(--clr_sub3) 2px 1px 2px, var(--clr_sub3) -2px 1px 2px, var(--clr_sub3) 2px -1px 2px, var(--clr_sub3) -2px -1px 2px, var(--clr_sub3) 1px 1px 2px, var(--clr_sub3) -1px 1px 2px, var(--clr_sub3) 1px -1px 2px, var(--clr_sub3) -1px -1px 2px;
}
#TopPage #about #ssp ul li a::after {
  content: "\eb6e";
  font-family: fontello;
  position: absolute;
  bottom: 0.5rem;
  right: 1rem;
  font-size: 2rem;
}
#TopPage #about #ssp ul li.session a {
  background-image: url(../img/about_session.jpg);
  margin: 0 0 0 auto;
}
#TopPage #about #ssp ul li.player a {
  background-image: url(../img/about_player.jpg);
  width: 100%;
}
#TopPage #about #record {
  color: #fff;
  background: url(../img/about_record_bg.webp) no-repeat center;
  background-size: cover;
  padding: 5rem;
}
#TopPage #about #record dt {
  font-size: 1.8rem;
  margin-bottom: 2rem;
}
#TopPage #about #record dd .btn {
  border-color: #fff !important;
  color: #fff;
  z-index: 10;
}
#TopPage #about #record dd .btn::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #190e0a;
  z-index: -1;
  opacity: 0.9;
}
#TopPage #about #instagram {
  background: url(../img/instagram_bg.jpg) no-repeat center;
  background-size: cover;
  padding: 5rem 0;
}
#TopPage #about #instagram h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 1rem;
  color: var(--clr_sub3);
  font-size: 1.6rem;
}
#TopPage #about #instagram h3::before, #TopPage #about #instagram h3::after {
  content: "";
  display: block;
  width: calc((100% - 8em) / 2);
  height: 0.1rem;
  background: var(--clr_sub3);
}
#TopPage #about #instagram img {
  border: 0.4rem solid #fff;
  border-radius: 1rem;
}
#TopPage #about #instagram ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#TopPage #about #instagram ul li {
  width: calc((100% - 1rem) / 2);
}
#TopPage #about #instagram a {
  color: var(--clr_sub3);
  border: none;
}
#TopPage #about #calendar {
  padding: 5rem 0;
}

@media screen and (min-width: 48em), print {
  #TopPage .kv_wrap {
    height: 82rem;
  }
  #TopPage .kv_wrap #kv {
    margin: -20rem auto 0;
    width: 100%;
    height: 82rem;
    background-size: auto;
    padding: 0;
    position: relative;
    background-position: center;
  }
  #TopPage .kv_wrap #kv .kv_slide {
    height: 82rem;
  }
  #TopPage .kv_wrap #kv .kv_slide.-kv02 {
    background-repeat: no-repeat;
    background-size: 100% 100%;
  }
  #TopPage .kv_wrap #kv .wrap {
    margin: auto;
  }
  #TopPage .kv_wrap #kv .wrap .kv_txt {
    width: 60rem;
    background: transparent;
    padding: 20rem 0 0 0;
    text-align: left;
    margin: 0 0 0 auto;
    font-size: 2.8rem;
    line-height: 6rem;
    letter-spacing: 0.8rem;
  }
  #TopPage .kv_wrap #kv .wrap .kv_txt.eng {
    font-size: 2.2rem;
    line-height: 3.6rem;
    letter-spacing: 0.176rem;
    padding-top: 2rem;
  }
  #TopPage main {
    padding: 0 0;
    margin: 0 0;
  }
  #TopPage main .btn {
    width: 37rem;
    max-width: none;
  }
  #TopPage main .wrap {
    margin: 0 auto;
  }
  #TopPage main #info {
    padding: 10rem 0 12rem;
  }
  #TopPage main #info .wrap {
    width: 110rem;
  }
  #TopPage main #info h2 {
    margin-bottom: 2rem;
    font-size: 2.6rem;
    padding-bottom: 2rem;
  }
  #TopPage main #info .inner {
    padding-bottom: 2rem;
  }
  #TopPage main #info dl {
    padding: 0;
    margin: auto;
    max-height: 32.5rem;
  }
  #TopPage main #info dl dt {
    padding: 2rem 1rem 1rem 2em;
    font-size: 2rem;
    margin-top: 0.5rem;
  }
  #TopPage main #info dl dt::before {
    top: 2rem;
  }
  #TopPage main #info dl dt:first-child {
    margin-top: 0;
  }
  #TopPage main #info dl dd {
    padding: 0 1rem 1rem 1.2em;
  }
  #TopPage main #info dl::before {
    right: -14rem;
    top: -10rem;
    width: 15rem;
    height: 15rem;
    background-size: auto;
  }
  #TopPage main #info dl::after {
    width: 12.3rem;
    height: 11rem;
    left: -11rem;
    bottom: -11rem;
  }
  #TopPage main #about > section {
    margin-bottom: 0;
    padding-bottom: 0;
  }
  #TopPage main #about > section > div.wrap {
    padding: 14rem 1rem 16rem;
    position: relative;
  }
  #TopPage main #about > section > div.wrap h2 {
    font-size: 19rem;
    letter-spacing: 0.76rem;
    line-height: 1;
    left: -4rem;
  }
  #TopPage main #about > section > div.wrap .flex_LRTB > div {
    width: 63rem;
    margin-top: 0;
  }
  #TopPage main #about > section > div.wrap .flex_LRTB > div p.catch {
    font-size: 3.2rem;
    line-height: 6rem;
    margin-bottom: 0;
  }
  #TopPage main #about > section > div.wrap .flex_LRTB > div p.catch.eng {
    font-size: 2.2rem;
    margin-bottom: 5rem;
    line-height: 3.6rem;
    margin-top: 0;
  }
  #TopPage main #about > section > div.wrap .flex_LRTB > div p {
    line-height: 3.8rem;
  }
  #TopPage main #about > section > div.wrap .flex_LRTB > div p.eng {
    margin-top: 3rem;
  }
  #TopPage main #about > section > div.wrap ul {
    position: absolute;
    top: 16rem;
    right: -8rem;
    width: 76rem;
  }
  #TopPage main #about > section > div.wrap ul li img {
    width: auto !important;
  }
  #TopPage main #about > section > div.wrap ul li:first-child img {
    margin: 0 10rem -13rem auto;
  }
  #TopPage main #about > section > div.wrap ul li:nth-child(2) img {
    margin-bottom: -15rem;
  }
  #TopPage main #about #equipment {
    position: relative;
    height: 72rem;
    padding: 0;
  }
  #TopPage main #about #equipment .wrap {
    position: relative;
    height: 72rem;
    display: -ms-grid;
    display: grid;
    -ms-flex-line-pack: center;
        align-content: center;
  }
  #TopPage main #about #equipment dl {
    width: 38rem;
  }
  #TopPage main #about #equipment dl dt {
    font-size: 3rem;
    margin-bottom: 6rem;
  }
  #TopPage main #about #equipment ul {
    width: 118.6rem;
    gap: 5.3rem;
    position: absolute;
    left: 50%;
    height: 72rem;
    top: 0;
  }
  #TopPage main #about #equipment ul li img {
    width: auto;
  }
  #TopPage main #about #food {
    height: 60rem;
    padding: 0;
    margin: 16rem 0;
  }
  #TopPage main #about #food .wrap {
    height: 60rem;
    display: -ms-grid;
    display: grid;
    -ms-flex-line-pack: center;
        align-content: center;
    padding-left: 72rem;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    position: relative;
  }
  #TopPage main #about #food .wrap h3 {
    font-size: 3rem;
    margin-bottom: 2rem;
    border-width: 0.6rem;
  }
  #TopPage main #about #food .wrap .inner {
    width: 41rem;
  }
  #TopPage main #about #food .wrap .inner p {
    font-size: 2rem;
    line-height: 3.5rem;
    margin-bottom: 3rem;
  }
  #TopPage main #about #food .wrap .inner .btn {
    width: 41rem;
    margin-bottom: 5rem;
  }
  #TopPage main #about #food .wrap img {
    position: absolute;
    margin: 0;
    width: auto;
    right: 50%;
  }
  #TopPage main #about #ssp {
    padding: 10rem 0;
  }
  #TopPage main #about #ssp ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 10rem;
  }
  #TopPage main #about #ssp ul li {
    width: 55rem;
  }
  #TopPage main #about #ssp ul li a {
    width: 55rem;
    height: 47rem;
    padding: 37rem 3rem 3rem;
    text-shadow: none;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
    line-height: 1;
  }
  #TopPage main #about #ssp ul li a span {
    font-size: 3rem;
  }
  #TopPage main #about #ssp ul li a:hover {
    -webkit-transform: translateY(-0.8rem);
            transform: translateY(-0.8rem);
  }
  #TopPage main #about #ssp ul li a::after {
    right: 3rem;
    bottom: 3.6rem;
    font-size: 3rem;
  }
  #TopPage main #about #ssp ul li:nth-child(2) {
    margin-top: 4rem;
  }
  #TopPage main #about #ssp ul li {
    /*&:last-child {
        width: 100%;
        height: 20rem;
        a {
            width: 100%;
            height: 20rem;
            padding-top: 11rem;
        }
    }*/
  }
  #TopPage main #about #record {
    height: 40rem;
    padding: 0;
  }
  #TopPage main #about #record .wrap {
    height: 40rem;
    display: -ms-grid;
    display: grid;
    -ms-flex-line-pack: center;
        align-content: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
  }
  #TopPage main #about #record .wrap dt {
    font-size: 3rem;
    margin-bottom: 3rem;
  }
  #TopPage main #about #instagram {
    padding: 12rem 0 10rem;
  }
  #TopPage main #about #instagram .wrap {
    width: 112rem;
    font-size: 2.2rem;
  }
  #TopPage main #about #instagram h3 {
    font-size: 3rem;
    margin-bottom: 4rem;
  }
  #TopPage main #about #instagram ul {
    margin-bottom: 4rem;
    gap: 4rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #TopPage main #about #instagram ul li {
    margin: 0;
    width: 34rem;
  }
  #TopPage main #calendar div.flex_LRTB {
    gap: 12rem;
  }
  #TopPage main #calendar div.flex_LRTB > div {
    width: 54rem;
  }
}
/* /_top.scss　出力ここまで */
/* _lower.scss　出力 */
#lower .breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 1rem 0 3rem 1rem;
}
#lower .breadcrumb li a {
  color: var(--clr_lnk);
}
#lower .breadcrumb li:first-child::after {
  content: ">";
  padding: 0 1rem;
}
#lower main {
  margin-top: 1rem;
  margin-bottom: 5rem;
  position: relative;
}
#lower main section {
  margin: 0 auto 6rem;
  padding: 0.1rem 0 0;
}
#lower main .wrap {
  position: relative;
  z-index: 1;
}
#lower main .wrap > .inner {
  margin: 3rem auto;
}
#lower h1,
#lower h2,
#lower h3,
#lower h4,
#lower h5,
#lower h6 {
  font-weight: bold;
  font-style: normal;
}
#lower h1 {
  background: url(../img/h1.webp) no-repeat top center;
  background-size: cover;
  margin: 0 0 1rem;
  font-size: 2rem;
  line-height: 1.2;
  padding: 7.5rem 0 3.5rem;
  text-align: center;
  color: #fff;
}
#lower h2 {
  font-size: 1.9rem;
  margin: 4.5rem 0 2.5rem;
  padding: 0 0;
  word-break: auto-phrase;
  text-align: center;
}
#lower h2::after {
  content: "";
  display: block;
  width: 5.2rem;
  height: 0.2rem;
  background: var(--clr_main);
  margin: 0.5rem auto;
}
#lower h3 {
  margin: 3.5rem 0 2rem;
  font-size: 1.8rem;
  line-height: 2.2rem;
  background: url(../img/h3.png) no-repeat center left;
  background-size: 1rem;
  padding-left: 1.3rem;
}
#lower h4 {
  margin: 3rem 0 1.5rem;
  font-size: 1.6rem;
  line-height: 1.35;
  padding: 0.2rem 1rem 0.2rem 0;
  color: var(--clr_main);
  border-bottom: 0.2rem solid var(--clr_main);
  background: url(../img/h4.png) no-repeat left center;
  background-size: auto 2rem;
}
#lower h5 {
  margin: 2.5rem 0.5rem 1.5rem;
  font-size: 1.4rem;
  line-height: 1.35;
  padding: 0 0.5rem 0.2rem;
  color: var(--clr_sub1);
  border-bottom: 0.2rem dotted var(--clr_sub1);
}
#lower h6 {
  color: var(--clr_main);
  font-size: 1.4rem;
  padding: 0 0.5rem 0.2rem;
  margin: 2rem 0 1.5rem;
  border-bottom: var(--clr_main) dotted 0.2rem;
}
#lower {
  /* main   -------------------------------------- */
}
#lower main {
  display: block;
}
#lower main p {
  margin: 0 0 1em;
  line-height: 1.6;
  text-align: justify;
}
#lower main li,
#lower main dl {
  line-height: 1.6;
}

@media screen and (min-width: 48em), print {
  #lower .h_bg {
    display: none;
  }
  #lower body {
    background: url(../img/h1.webp) no-repeat center top;
  }
  #lower header::before {
    display: none;
  }
  #lower .breadcrumb {
    margin: 3rem auto 2rem;
    width: 1220px;
    padding: 0 2rem;
  }
  #lower main {
    padding: 0 0;
    margin-bottom: 12rem;
  }
  #lower main > .wrap {
    position: relative;
    z-index: 50;
  }
  #lower main > .wrap > .inner {
    margin-bottom: 10rem;
  }
  #lower main > .wrap > section {
    margin: 0 auto 10rem;
    padding-top: 1rem;
  }
  #lower main > .wrap > section > .inner + section {
    margin-top: 6rem;
  }
  #lower main > .wrap > section > section {
    margin: 0 auto 8rem;
  }
  #lower main > .wrap > section > section > section {
    margin: 0 auto 7rem;
  }
  #lower main > .wrap > section > section > section > section {
    margin: 0rem auto 6rem;
  }
  #lower h1 {
    background: none;
    font-size: 3.2rem;
    margin: 0 auto 0;
    line-height: 1;
    z-index: -1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: relative;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 7.8rem 0;
  }
  #lower h2 {
    font-size: 2.8rem;
    margin-bottom: 4rem;
  }
  #lower h2::after {
    margin: 1rem auto;
  }
  #lower h3 {
    font-size: 2.4rem;
    margin: 0 0 3rem;
    background-size: 1.4rem;
    padding-left: 2rem;
  }
  #lower h4 {
    font-size: 2.2rem;
    padding: 0.5rem 2rem 0.5rem 0;
    margin: 0rem 0 2rem;
    background-size: auto;
  }
  #lower h5 {
    margin: 0rem 0 2rem;
    font-size: 2rem;
    padding: 0 1.9rem 0.7rem;
  }
  #lower h6 {
    font-size: 2rem;
    padding: 0 1.9rem 0.7rem;
  }
}
/* table 関連 */
#lower .tbl_scroll {
  position: relative;
  overflow-x: auto;
}
#lower .scroll-hint {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 15em;
  white-space: normal;
  text-align: center;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  padding: 10px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-weight: 700;
  line-height: 1.4;
  display: none;
  -webkit-animation: scroll-hint-animation 2s infinite ease;
          animation: scroll-hint-animation 2s infinite ease;
}
@-webkit-keyframes scroll-hint-animation {
  0% {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  50% {
    -webkit-transform: translate(-40%, -50%);
            transform: translate(-40%, -50%);
  }
  100% {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
@keyframes scroll-hint-animation {
  0% {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  50% {
    -webkit-transform: translate(-40%, -50%);
            transform: translate(-40%, -50%);
  }
  100% {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
#lower .scroll-hint--show {
  display: block;
}
#lower .tbl_def {
  width: 100%;
  border-right: 1px solid var(--clr_sub7);
  border-bottom: 1px solid var(--clr_sub7);
  line-height: 1.3em;
  border-top: 1px solid var(--clr_sub7);
  border-left: 1px solid var(--clr_sub7);
  border-collapse: collapse;
}
#lower .tbl_def thead {
  background: var(--clr_sub1);
  color: #fff;
}
#lower .tbl_def thead th {
  padding: 0.5rem 1% 0.5rem 1%;
  border: 1px solid #fff;
}
#lower .tbl_def tbody tr {
  border-bottom: 1px solid var(--clr_sub1);
}
#lower .tbl_def tbody th {
  background: var(--clr_sub7);
  padding: 0.5rem 1% 0.4rem 1%;
}
#lower .tbl_price {
  width: 100%;
  border-right: 1px solid var(--clr_sub7);
  border-bottom: 1px solid var(--clr_sub7);
  line-height: 1.3em;
  border-top: 1px solid var(--clr_sub7);
  border-left: 1px solid var(--clr_sub7);
  border-collapse: collapse;
}
#lower .tbl_price caption {
  text-align: left;
  margin-bottom: 10px;
}
#lower .tbl_price thead tr {
  border-bottom: 1px solid var(--clr_sub7);
}
#lower .tbl_price thead tr th {
  font-size: 94%;
  padding: 1% 2% 0.8%;
  background: var(--clr_sub1);
  color: #fff;
  border-left: 0.1rem solid #fff;
}
#lower .tbl_price thead tr th:first-child {
  border-left: none;
}
#lower .tbl_price tbody tr {
  border-bottom: 1px solid var(--clr_sub1);
}
#lower .tbl_price tbody tr th {
  text-align: left;
  font-size: 94%;
  padding: 1% 2% 0.8%;
  background: var(--clr_sub7);
}
#lower .tbl_price tbody tr td {
  padding: 1% 2% 0.8%;
  border-left: 1px solid var(--clr_sub7);
  text-align: right;
  width: 6em;
}

@media screen and (min-width: 48em), print {
  #lower .tbl_scroll {
    overflow-x: inherit;
  }
  #lower .tbl_price tbody tr td {
    width: 9em;
  }
  #lower .tbl_def thead th,
  #lower .tbl_def thead td {
    padding: 1rem;
  }
  #lower .tbl_def tbody th,
  #lower .tbl_def tbody td {
    padding: 1rem;
  }
}
#lower #equipment section ul.flex_LRTB.half figure {
  margin-bottom: 2rem;
}
#lower #equipment section ul.flex_LRTB.half figure figcaption {
  background: var(--clr_main);
  color: #fff;
  padding: 1rem;
  font-size: 110%;
  word-break: auto-phrase;
  text-align: center;
}

@media screen and (min-width: 48em), print {
  #lower #equipment section ul.flex_LRTB.half figure {
    margin-bottom: 4rem;
  }
  #lower #equipment section ul.flex_LRTB.half figure figcaption {
    padding: 1.5rem;
  }
}
#lower #menu #alcohol .tbl_price {
  width: 50em;
}
#lower #menu #alcohol .tbl_price thead {
  white-space: nowrap;
}
#lower #menu #alcohol .tbl_price tbody th[rowspan] {
  width: 7em;
}
#lower #menu #alcohol .tbl_price tbody th:nth-child(1) {
  white-space: nowrap;
}
#lower #menu #alcohol .tbl_price tbody th:nth-child(2) {
  width: 20em;
  white-space: normal;
}
#lower #menu #alcohol .tbl_price tbody td {
  width: 6em;
  white-space: nowrap;
}
#lower #menu #alcohol .tbl_price tbody td img {
  width: 100%;
}
#lower #menu #cocktail .tbl_def {
  width: 50rem;
}
#lower #menu #cocktail .tbl_def th {
  white-space: nowrap;
}
#lower #menu #cocktail .tbl_def tbody th[rowspan] {
  width: 6em;
}
#lower #menu #cocktail .tbl_def tbody td img {
  width: 9em;
}
#lower #menu #kobachi .tbl_price {
  width: 50rem;
  white-space: normal;
}
#lower #menu #kobachi .tbl_price tbody tr th {
  width: 15rem;
}
#lower #menu #kobachi .tbl_price tbody tr td {
  width: 7rem;
}
#lower #menu #kobachi .tbl_price tbody tr td:nth-child(2) {
  width: 21rem;
  text-align: left;
}

@media screen and (min-width: 48em), print {
  #lower #menu #alcohol .tbl_price tbody th[rowspan] {
    width: 10em;
  }
  #lower #menu #alcohol .tbl_price tbody td {
    width: 9em;
  }
  #lower #menu #alcohol .tbl_price tbody td img {
    width: 7em;
    text-align: center;
    margin: 0 auto;
  }
  #lower #menu #kobachi .tbl_price {
    width: 100%;
    white-space: break-spaces;
  }
  #lower #menu #kobachi .tbl_price tbody tr th {
    width: 26%;
  }
  #lower #menu #kobachi .tbl_price tbody tr td {
    width: 14%;
  }
  #lower #menu #kobachi .tbl_price tbody tr td:nth-child(2) {
    width: 46%;
  }
}
#lower #record .list_records li {
  width: 100%;
}
#lower #record .list_records li img {
  display: block;
  max-width: 80%;
  height: auto;
  margin: 1rem auto 2rem 0;
}
#lower #record .list_records li:nth-child(even) img {
  margin: 1rem 0 2rem auto;
}

@media screen and (min-width: 48em), print {
  #lower #record .list_records {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 5rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #lower #record .list_records li {
    width: 25rem;
  }
  #lower #record .list_records li:nth-child(even) {
    margin-top: 5rem;
  }
  #lower #record .list_records li img {
    margin: 0;
    width: 100%;
    max-width: none;
  }
}
@media screen and (min-width: 48em), print {
  #lower #enjoy .list_pl {
    margin-top: 6rem;
  }
}
#lower {
  /* Slider */
}
#lower .slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
#lower .slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
#lower .slick-list:focus {
  outline: none;
}
#lower .slick-list.dragging {
  cursor: pointer;
}
#lower .slick-slider .slick-track,
#lower .slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
#lower .slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
#lower .slick-track:before,
#lower .slick-track:after {
  content: "";
  display: table;
}
#lower .slick-track:after {
  clear: both;
}
#lower .slick-loading .slick-track {
  visibility: hidden;
}
#lower .slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
#lower [dir=rtl] .slick-slide {
  float: right;
}
#lower .slick-slide img {
  display: block;
}
#lower .slick-slide.slick-loading img {
  display: none;
}
#lower .slick-slide.dragging img {
  pointer-events: none;
}
#lower .slick-initialized .slick-slide {
  display: block;
}
#lower .slick-loading .slick-slide {
  visibility: hidden;
}
#lower .slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}
#lower .slick-arrow.slick-hidden {
  display: none;
}
#lower *:focus:not(:focus-visible),
#lower *::before:focus:not(:focus-visible),
#lower *::after:focus:not(:focus-visible) {
  outline: none;
}

@media screen and (min-width: 48em), print {
  .breadnav {
    width: 1200px;
    max-width: 100%;
    margin: 6.5rem auto 0;
    overflow-x: inherit;
    z-index: 101;
    position: relative;
  }
  .breadnav .breadcrumb {
    font-size: 1.4rem;
  }
  .breadnav .breadcrumb li:not(:last-child)::after {
    margin: 0 1rem;
  }
  .breadnav .breadcrumb li a:hover {
    opacity: 1;
    text-decoration: none;
  }
}
.gallery {
  width: 85%;
  margin: auto;
  visibility: hidden;
}

.gallery .gallery_slider div .cap {
  margin: 0.2rem 0 0;
  text-align: center;
  color: #fff;
  padding: 0.4rem;
  font-size: 1.2rem;
  opacity: 0;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  background: var(--clr_main);
  line-height: 1.4;
}

.gallery .gallery_slider div .slick-current .cap {
  opacity: 1;
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

.gallery .gallery_slider div:first-child .cap {
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}

.gallery .gallery_thum div img {
  cursor: pointer;
  border: 4px solid transparent;
}

.gallery .gallery_thum .slick-current div img {
  border: 4px solid var(--clr_main);
}

@media screen and (min-width: 48em), print {
  .gallery {
    width: 75rem;
    margin: auto;
  }
  .gallery .gallery_slider {
    font-size: 1.6em;
  }
  .gallery .gallery_slider div .cap {
    font-size: 1.8rem;
    padding: 1rem;
  }
  .gallery .gallery_thum {
    width: calc(100% + 0.6rem);
  }
}
.slick-arrow {
  width: 2rem;
  height: 2rem;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  cursor: pointer;
  line-height: 0;
  font-size: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--clr_main);
  z-index: 1;
}

.slick-arrow::before {
  font-size: 1.2rem;
}

.slick-arrow.slick-prev {
  left: -2.6rem;
}

.slick-arrow.slick-prev::before {
  font-family: "fontello";
  content: "5";
}

.slick-arrow.slick-next {
  right: -2.6rem;
}

.slick-arrow.slick-next::before {
  font-family: "fontello";
  content: "2";
}

@media screen and (min-width: 48em), print {
  .slick-arrow {
    width: 5rem;
    height: 5rem;
    border: 1px solid var(--clr_main);
  }
  .slick-arrow::before {
    font-size: 2.4rem;
  }
  .slick-arrow.slick-prev {
    left: -6rem;
  }
  .slick-arrow.slick-next {
    right: -6rem;
  }
  .slick-arrow:is(:hover, :focus-visible) {
    color: var(--clr_main);
    background: #fff;
    opacity: 1;
  }
}
.slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  list-style: none;
  margin: 1rem auto;
}

.slick-dots li {
  width: 0.8rem;
  height: 0.8rem;
  margin: 0 0.2rem;
}

.slick-dots li button {
  padding: 50%;
  display: block;
  font-size: 0;
  cursor: pointer;
  opacity: 0.25;
  border-radius: 50%;
  background: var(--clr_main);
}

.slick-dots li button:hover,
.slick-dots li button:focus-visible {
  opacity: 0.8;
}

.slick-dots li.slick-active button {
  opacity: 0.75;
}

@media screen and (min-width: 48em), print {
  .slick-dots {
    margin: 1.6rem auto;
  }
  .slick-dots li {
    width: 1.4rem;
    height: 1.4rem;
    margin: 0 0.6rem;
  }
}
#vaccination .tbl_def tbody tr th {
  text-align: left;
}
#vaccination .tbl_def.tbl_checkup01 tbody td {
  text-align: center;
}
#vaccination .tbl_def.tbl_checkup02 tbody tr td:last-child {
  text-align: right;
}

.youtube {
  width: 100%;
  height: 50vw;
}
@media screen and (min-width: 48em), print {
  .youtube {
    margin: 0 auto;
    width: auto;
    max-width: 1000px;
    height: 640px;
  }
}

/* /_lower.scss　出力ここまで */
/*# sourceMappingURL=style.css.map */