@charset "UTF-8";
@import "_common.css";
:root {
  --font-base-sans: Noto Sans JP, sans-serif;
  --font-base-serif: Times New Roman, serif;
  --color-text-base: #5c5c5c;
  --color-text-muted: #787878;
  --color-white: #ffffff;
  --color-black: #000000;
  --color-brand-main: #093a26;
  --color-brand-accent: #ad9961;
  --color-brand-sub: #b0914e;
  --color-brand-green-alt: #0f7c4f;
  --color-bg-light: #f5f5f5;
  --color-bg-beige: #fff7ed;
  --color-bg-beige-light: #f8eadb;
  --color-border-base: #dcdcdc;
  --color-border-soft: #a0a0a0;
  --color-action-hot: #ff385c;
  --color-accent-strong: #e17837;
  --color-panel-dark: #090603;
  --color-gold: #b6a06a;
  --color-gold-dark: #8e7a4a;
  --color-text-warm: #6b6257;
  --color-company-table-border: #c9aa73;
  --color-company-table-text: #4a4037;
  --color-company-table-th-bg: #f5f1e8;
}

html {
  font-family: var(--font-base-sans);
  color: var(--color-text-base);  
}

body {
  font-family: var(--font-base-serif);
  color: var(--color-text-base);
}

.bg_white {
  background-color: var(--color-white) !important;
}

.bg_beige {
  background-color: var(--color-bg-beige) !important;
}

.bg_beige_light {
  background-color: var(--color-bg-beige-light) !important;
}

.bg_gray,
.bg_gray_light {
  background-color: var(--color-bg-light) !important;
}

.bg_green {
  background-color: var(--color-brand-green-alt) !important;
}

.section_title {
  color: var(--color-brand-sub);
  font-family: var(--font-base-serif);
}

.section_title.f_white,
.section_title.f_white .f_en {
  color: var(--color-white);
}

.page_mv_title {
  color: var(--color-brand-accent);
  font-family: var(--font-base-serif);
}

.facility_mv_title {
  text-align: center;
  font-family: "Times New Roman", "Noto Serif JP", serif;
}

.facility_mv_title .title_en {
  display: block;
  font-family: "Times New Roman", "Noto Serif JP", serif;
  font-size: clamp(3.2rem, 4vw, 5rem);
  letter-spacing: 0.2em;
  color: var(--color-brand-accent);
  font-weight: normal;
  line-height: 1.35;
  margin-bottom: 0.35em;
}

.facility_mv_title .title_ja {
  display: block;
  font-family: "Times New Roman", "Noto Serif JP", serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--color-brand-accent);
  line-height: 1.3;
}

@media (max-width: 768px) {
  .facility_mv_title .title_en {
    font-size: clamp(2.16rem, 5.5vw, 2.96rem);
  }

  .facility_mv_title .title_ja {
    font-size: clamp(2.4rem, 6vw, 3.36rem);
  }
}

.header {
  background: var(--color-brand-main);
}

.gnav_list > li > a {
  color: var(--color-brand-accent);
}

.gnav_list > li > .child {
  background-color: rgba(0, 0, 0, 0.4);
}

.gnav_list > li > .child > li > a {
  color: var(--color-white);
}

.btn_calendar {
  background-color: var(--color-action-hot);
  color: var(--color-white);
}

.footer {
  background: var(--color-brand-main);
  color: var(--color-white);
}

.f_navi {
  border-top: 1px solid var(--color-border-soft);
}

.f_navi li a {
  color: var(--color-white);
}

.table_basic,
.news_list,
.gmap,
.borderbox {
  border-color: var(--color-border-base);
}

.table_basic th {
  color: var(--color-white);
}

.table_basic td,
.news_list .box_inner,
.news_list {
  border-color: var(--color-border-base);
}

.f_address,
.sns_label,
.copyright_text {
  color: var(--color-white);
}

.footer_nav_list a {
  color: var(--color-white);
  border-left-color: var(--color-text-muted);
  border-right-color: var(--color-text-muted);
}

.pageNavi > a,
.pageNavi > span {
  border-color: var(--color-accent-strong);
  color: var(--color-accent-strong);
  background-color: var(--color-white);
}

.pageNavi a:hover,
.pageNavi .current {
  color: var(--color-white);
  background-color: var(--color-accent-strong);
}

/*** header PC ***/
@media (min-width: 1001px) {
  #wrapper {
    padding-top: 70px;
  }
  .header {
    /*background-color: rgba(40, 40, 40, 1);
    background-image: repeating-linear-gradient(-45deg, transparent, transparent 6px, rgba(34, 34, 34, 1) 6px, rgba(34, 34, 34, 1) 12px);*/
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    z-index: 10;
    position: fixed;
    background: var(--color-brand-main);
  }
  .h_content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
  }
  .header .header_bg_wrap {
    position: relative;
  }
  .header .header_bg_wrap img {
    height: 100%;
    width: 100%;
  }
  .header .header_bg_wrap .header_bg01 {
    height: 70px;
    position: absolute;
    left: 0;
    top: 0;
  }
  .header .header_bg_wrap .header_bg02 {
    height: 70px;
    position: absolute;
    left: 20%;
    top: 0;
  }
  .header .header_bg_wrap .header_bg03 {
    height: 70px;
    position: absolute;
    left: 50%;
    top: 0;
  }
  .header .header_bg_wrap .header_bg05 {
    height: 70px;
    position: absolute;
    left: 70%;
    top: 0;
  }
  .header .header_bg_wrap .header_bg04 {
    height: 70px;
    position: absolute;
    left: 90%;
    top: 0;
  }
  .h_logo {
    padding-left: 25px;
    padding-top: 5px;
  }
  .header.header_fixed.fixed_active .h_content {
    /*height: 80px;*/
  }
  .h_logo img {
    width: 250px;
  }
  .header_contact {
    display: flex;
    position: relative;
  }
  .gnav {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .gnav_list {
    list-style-type: none;
    margin: 0px;
    padding: 0px;
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    margin-right: 20px;
  }
  .gnav_list > li {
    margin: 0px 20px;
  }
  .gnav_list > li > a {
    display: inline-flex;
    align-items: center;
    width: 100%;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.408rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    line-height: 1;
    position: relative;
    text-align: center;
    line-height: 1.2;
    color: var(--color-brand-accent);
    height: 70px;
    position: relative;
  }
  .gnav_list > li > a:after {
    content: "";
    display: inline-block;
    width: 100%;
    height: 4px;
    /* background-color: #ff385c; */
    position: absolute;
    left: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .gnav_list > li > a:hover:after,
  .gnav_list > li > a.cur:after {
    opacity: 1;
  }
  .gnav_list .gnav_list_en {
    color: var(--color-border-soft);
    /* font-family: 'Libre Baskerville', serif; */
    font-size: 0.6em;
  }
  .gnav_list > li:last-child > a {
    /*		border-right: 0px solid #a0a0a0;*/
  }
  .gnav_list > li > .child {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.4);
    padding: 20px 30px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, hidden 0.3s ease;
  }
  .gnav_list > li:hover > .child {
    opacity: 1;
    visibility: visible;
  }
  .gnav_list > li > .child > li > a {
    display: block;
    font-size: 1.408rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    color: #fff;
    padding: 3px 0px 3px 1.5em;
    position: relative;
  }
  .gnav_list > li > .child > li > a:before {
    content: "";
    display: inline-block;
    background: url("../images/common/gnav_arrow.svg") left top no-repeat;
    background-size: contain;
    width: 1em;
    height: 1em;
    position: absolute;
    left: 0;
    top: calc(3px + 0.4em);
  }
  .btn_tel {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 160px;
    height: 70px;
    /* background-color: #f5e6d7; */
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.408rem;
    /* font-weight: 700; */
    letter-spacing: 0.04em;
    color: #000;
    padding-top: 20px;
    border-left: 1px solid #c8c8c8;
  }
  .btn_calendar {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 200px;
    height: 70px;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.504rem;
    letter-spacing: 0.02em;
    color: #fff;
    background-color: var(--color-action-hot);
  }
  .btn_calendar img {
    width: 15px;
  }
  .header_contact_head {
    position: absolute;
    text-align: center;
    width: 100%;
    background: #145a87;
    color: #fff;
    font-size: 12px;
    padding: 0 0 3px 0;
    z-index: 100;
  }
  /*スマートフォンメニューボタン*/
  #spnav_buttonwrap {
    display: none;
  }
  .h_left p {
    padding: 25px 0 0 10px;
    font-size: 0.8em;
  }
}
@media (max-width: 1200px) and (min-width: 1001px) {
  .h_logo {
    left: 10px;
  }
  .h_logo img {
    /* width: 100px; */
  }
  .gnav_list {
    margin-right: 10px;
  }
  .gnav_list > li > a {
    padding: 0px 10px;
    font-size: 1.296rem;
  }
  .btn_tel {
    width: 145px;
  }
  .btn_calendar {
    /* width: 110px; */
  }
  .h_left p {
    padding: 10px 0 0 10px;
    font-size: 0.8em;
  }
}
/*** footer ***/
.footer_content {
  /* background-color: #333333; */
  padding-top: 60px;
  padding-bottom: 40px;
}

.footer_content_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer_content_left {
  /* display: flex; */
  align-items: center;
}

.footer_content_left .f_logo {
  font-size: 1.7em;
  margin-bottom: 10px;
  color: #fff;
}

.btn_f_calendar {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 60px;
  background-color: transparent;
  border: 1px solid var(--color-border-soft);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #FFFFFF;
}

.f_address {
  font-size: 1.2rem;
  color: #FFFFFF;
  letter-spacing: 0.2em;
  /* margin-left: 40px; */
  margin-bottom: 0px;
}

.sns_block {
  display: flex;
  align-items: center;
  margin-top: 50px;
}

.sns_label {
  font-size: 1.2rem;
  letter-spacing: 0.2em;
  color: var(--color-text-muted);
  margin: 0px;
}

ul.sns_list {
  display: flex;
  align-items: center;
}

ul.sns_list li {
  padding-left: 20px;
  line-height: 0;
}

.footer_nav {
  /* background-color: #333333; */
  padding-top: 20px;
  padding-bottom: 40px;
}

.footer_nav_list {
  display: flex;
  justify-content: center;
}

.footer_nav_list li {
  margin-left: -1px;
}

.footer_nav_list a {
  font-size: 1.2rem;
  line-height: 1;
  letter-spacing: 0.2em;
  color: #FFFFFF;
  display: block;
  padding: 0px 30px;
  border-left: 1px solid var(--color-text-muted);
  border-right: 1px solid var(--color-text-muted);
}

.copyright {
  /* background-color: #282828; */
  padding-top: 10px;
  padding-bottom: 20px;
}

.copyright_text {
  font-size: 0.8rem;
  color: #fff;
  text-align: center;
  line-height: 1;
}

@media (max-width: 1160px) {
  .footer_content_left {
    display: block;
  }
  .f_address {
    margin-left: 0px;
    margin-top: 20px;
  }
  .footer_nav_content .f_left {
    padding-right: 40px;
    flex: 1;
  }
  .footer_nav_content .f_right {
    padding-left: 40px;
    flex: 1;
  }
  .footer_nav_content .f_left:before {
    left: -40px;
  }
  .footer_nav_content .f_right:before {
    right: -40px;
  }
  .footer_content_right {
    margin-top: 20px;
  }
}
@media (max-width: 768px) {
  .footer {
    text-align: center;
  }
  .footer_content {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .footer_content_inner {
    display: block;
  }
  .footer_nav_content {
    display: block;
  }
  .footer_nav_content .f_left {
    padding-top: 40px;
    padding-bottom: 40px;
    padding-right: 0px;
  }
  .footer_nav_content .f_right {
    padding-top: 40px;
    padding-bottom: 40px;
    padding-left: 0px;
  }
  .footer_nav_content .f_left:before {
    left: -20px;
    right: -20px;
  }
  .footer_nav_content .f_right:before {
    left: -20px;
    right: -20px;
  }
  .sns_block {
    justify-content: center;
  }
  .footer_nav {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .footer_nav_list {
    display: block;
  }
  .footer_nav_list a {
    padding: 7px;
    border: none;
    font-size: 1.232rem;
  }
}
/*** totop ***/
.totop {
  position: relative;
}

.totop a {
  display: flex;
  width: 72px;
  height: 72px;
  justify-content: center;
  align-items: center;
  background-color: #000000;
  position: fixed;
  right: 0px;
  bottom: 0px;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translate3d(0, 100%, 0);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

.totop a.show {
  opacity: 0.7;
  visibility: visible;
  transform: translate3d(0, 0, 0);
}

.totop a.bottom {
  position: absolute;
}

.totop a:hover {
  opacity: 1;
}

@media (max-width: 768px) {
  .totop a {
    width: 30px;
    height: 30px;
  }
}
/*** 共通 ***/
/*** section_title ***/
.section_title {
  font-size: 4rem;
  letter-spacing: 0.12em;
  text-indent: 0.12em;
  line-height: 1.5;
  margin-bottom: 50px;
  position: relative;
  text-align: center;
  font-family: "Times New Roman", serif;
  /* 高級感を出すため */
  color: var(--color-brand-sub);
  /* ゴールド系の色 */
  font-weight: normal;
}

.section_title .f_en {
  display: block;
  font-size: 16px;
  margin-top: 10px;
  letter-spacing: 0.1em;
}


/*
.section_title .f_en:before{
	content: "";
	display: inline-block;
	width: 0.4em;
	height: 0.4em;
	background-color: #a0a0a0;
	margin-right: 0.4em;
	vertical-align: middle;
}
*/
.section_title.f_white,
.section_title.f_white .f_en {
  color: var(--color-white);
}

.section_title.f_white .f_en:before {
  background-color: var(--color-white);
}

.section_title.f_min {
  font-size: 3.2rem;
}

@media (max-width: 768px) {
  .section_title,
  .section_title.f_min {
    font-size: 2.45rem;
    margin-bottom: 35px;
  }
  .section_title .title_text {
    font-size: 2.1rem;
  }
  .section_title .title_text:before {
    right: calc(100% + 15px);
    left: calc((100vw - 100%) / -2 + 20px);
  }
  .section_title .title_text:after {
    right: calc((100vw - 100%) / -2 + 20px);
    left: calc(100% + 15px);
  }
  .section_title .title_text:has(.balloon) {
    margin-top: 40px;
  }
  .section_title .balloon {
    /*transform: translate3d(0,0,0) !important;
      right: calc((100vw - 100%) / -2 + 20px);
      left: auto;*/
    left: 50%;
    transform: translate3d(-50%, 0, 0) !important;
    margin-bottom: 5px;
  }
  .section_title .balloon img {
    zoom: 0.75;
  }
}
/*** description ***/
.description {
  margin-bottom: 50px;
}

.description p {
  font-size: 1.504rem;
  line-height: 2;
}

@media (max-width: 768px) {
  .description {
    margin-bottom: 25px;
  }
}
/*** common_ ***/
.common_section {
  padding-top: 100px;
  padding-bottom: 100px;
}

@media (max-width: 768px) {
  .common_section {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
/*** bg ***/
.bg_white {
  background-color: var(--color-white) !important;
}

.bg_beige {
  background-color: var(--color-bg-beige) !important;
}

.bg_beige_light {
  background-color: var(--color-bg-beige-light) !important;
}

.bg_gray {
  background-color: var(--color-bg-light) !important;
}

.bg_gray_light {
  background-color: var(--color-bg-light) !important;
}

.bg_green {
  background-color: var(--color-brand-green-alt) !important;
}

/*** btn ***/
.btn_wrap {
  margin-top: 50px;
  text-align: center;
}

.btn_list {
  margin-top: 30px;
  margin-left: -20px;
  margin-bottom: -20px;
}

.btn_list li {
  padding-left: 20px;
  padding-bottom: 20px;
}

@media (max-width: 768px) {
  .btn_wrap {
    margin-top: 40px;
  }
}
.btn.btn_gray {
  background-color: #f5f5f5;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 320px;
  height: 56px;
  color: #F8E7B7;
  text-decoration: none;
  letter-spacing: 0.1em;
  font-size: 16px;
  background: linear-gradient(90deg, #8F3528 0%, #B75B4D 49%, #8F3528 100%);
}

.btn:after {
  content: "";
  display: inline-block;
  background: url("../images/common/btn_arrow.png") left top no-repeat;
  background-size: contain;
  width: 40px;
  height: 20px;
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translate3d(50%, -50%, 0);
}

.btn:hover {
  cursor: pointer;
  background: #8f3728;
}

.btn .btn_icon_right {
  display: inline-block;
  line-height: 0;
  position: absolute;
  right: 20px;
  top: 50%;
  z-index: 1;
  transform: translate3d(0, -50%, 0);
}

.btn .btn_icon_left {
  display: inline-block;
  line-height: 0;
  position: absolute;
  left: 20px;
  top: 50%;
  z-index: 1;
  transform: translate3d(0, -50%, 0);
}

.btn.large {
  height: 60px;
}

.btn input[type=submit] {
  display: inline-block;
  position: absolute;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
  border: none;
  background: none;
  color: inherit;
}

.btn input[type=submit]:hover {
  cursor: pointer;
}

@media (max-width: 768px) {
  .btn {
    width: 100% !important;
    height: 60px;
  }
  .btn.large {
    height: 50px;
  }
}
/*** support_list ***/
.support_list {
  margin-left: -30px;
  margin-bottom: -40px;
}

.support_list .box {
  padding-left: 30px;
  padding-bottom: 40px;
}

.support_list .box_inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.support_list .box_inner:before {
  content: "";
  display: inline-block;
  background: url("../images/top/icon_pin.png") left top no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
  position: absolute;
  left: 50%;
  top: 0px;
  transform: translate3d(0, -50%, 0);
  z-index: 1;
}

@media only screen and (-webkit-min-device-pixel-ratio: 2) {
  .support_list .box_inner:before {
    background-image: url("../images/top/icon_pin@2x.png");
  }
}
.support_head {
  flex: 1;
  background-color: #FFFFFF;
  border-radius: 0px 0px 5px 5px;
  box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.2);
  position: relative;
}

.support_list .text_wrap {
  padding: 20px 20px 40px;
  position: relative;
}

.support_list .text_wrap .catch {
  position: absolute;
  right: 20px;
  top: 0px;
  transform: translate3d(0, -50%, 0);
  z-index: 1;
}

.support_title {
  margin-bottom: 15px;
}

.support_title .text_inner {
  padding-bottom: 3px;
  border-bottom: 4px solid #000000;
  font-size: 2rem;
  line-height: 2.25;
}

.support_list .text_wrap p {
  font-size: 1.408rem;
  line-height: 1.71;
}

.support_bottom {
  border-top: 1px dashed #e6e6e6;
  border-radius: 5px 5px 0px 0px;
  box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.2);
  background-color: #FFFFFF;
  position: relative;
  z-index: 1;
  transition: background-color 0.3s ease;
}

.support_bottom:hover {
  background-color: #901b1b;
}

.support_bottom:before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 5px;
  border-radius: 0px 0px 5px 5px;
  background-color: #FFFFFF;
  position: absolute;
  left: 0px;
  top: -6px;
}

.support_bottom:after {
  content: "";
  display: inline-block;
  position: absolute;
  left: 2px;
  right: 0px;
  top: 2px;
  bottom: 0px;
  z-index: -1;
  background-color: transparent;
  background-image: radial-gradient(#e5e5e5 24%, transparent 25%), radial-gradient(#e5e5e5 24%, transparent 25%);
  background-position: 0 0, 2px 2px;
  background-size: 4px 4px;
}

.support_bottom a {
  display: block;
  padding: 25px 120px 20px 20px;
  color: #901b1b;
  border-radius: 5px 5px 0px 0px;
  position: relative;
  z-index: 1;
  transition: color 0.3s ease, background-color 0.3s ease;
}

.support_bottom a:hover {
  color: #FFFFFF !important;
}

.support_bottom a:before {
  content: "";
  display: inline-block;
  width: 90px;
  height: 2px;
  background-color: #901b1b;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translate3d(0, -50%, 0);
  transition: background-color 0.3s ease;
}

.support_bottom a:after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 2px;
  background-color: #901b1b;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: rotate(45deg) translate3d(0, -50%, 0);
  transform-origin: right bottom;
  transition: background-color 0.3s ease;
}

.support_bottom a:hover:before,
.support_bottom a:hover:after {
  background-color: #FFFFFF;
}

.support_bottom a .f_en {
  display: inline-block;
  font-size: 1.808rem;
  font-weight: bold;
  letter-spacing: 0.02em;
  padding-right: 10px;
}

.support_bottom a .f_ja {
  display: inline-block;
  font-size: 1.2rem;
  font-weight: bold;
  letter-spacing: 0.02em;
}

@media (max-width: 768px) {
  .support_bottom a:before {
    width: 50px;
  }
  .support_bottom a .f_en {
    display: block;
    margin-bottom: 5px;
  }
  .support_bottom a .f_ja {
    display: block;
  }
}
/*** bg ***/
.bg_dot {
  background-color: transparent;
  background-image: radial-gradient(#999999 24%, transparent 25%), radial-gradient(#999999 24%, transparent 25%);
  background-position: 0 0, 2px 2px;
  background-size: 4px 4px;
  background: url("../images/common/bg_dot.png") left top repeat;
}

/**** pagetitle ***/
#page_visual {
  background-color: #f5f5f5;
}

.pagetitle_block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 340px;
}

.pagetitle .f_en {
  display: block;
  font-size: 1.408rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.04em;
  color: #b4b4b4;
  margin-bottom: 20px;
}

.pagetitle .f_ja {
  display: block;
  font-size: 4.608rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.06em;
}

@media (max-width: 768px) {
  .pagetitle_block {
    height: 140px;
  }
  .pagetitle .f_en {
    margin-bottom: 10px;
  }
  .pagetitle .f_ja {
    font-size: 2.1rem;
  }
}
.notes {
  font-size: 1.408rem !important;
  line-height: 1.7 !important;
}

.f_red {
  color: #ff0000 !important;
}

.f_caution {
  font-size: 1.2rem;
  color: #ff0000 !important;
  margin-top: 20px;
}

/*** list ***/
.disc {
  list-style-type: disc;
}

.disc li {
  margin-left: 2em;
}

.decimal {
  list-style-type: decimal;
}

.decimal li {
  margin-left: 2em;
}

/*** table ***/
@media (max-width: 768px) {
  .table_scroll {
    width: 100%;
    display: block;
    overflow-x: scroll;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }
  .table_scroll table {
    width: auto;
  }
}
.block {
  display: block;
}

.inline_block {
  display: inline-block;
}

/*** section_inner ***/
@media (min-width: 769px) {
  .section_inner {
    position: relative;
  }
  .section_inner .btn_wrap {
    position: absolute;
    right: 0px;
    top: 0px;
    margin-top: 0px;
  }
}
/***　section_title_block　***/
.section_title_block {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}

.section_title_block .section_title {
  margin-bottom: 0px;
}

@media (max-width: 768px) {
  .section_title_block {
    display: block;
    margin-bottom: 30px;
  }
  .section_title_block .section_title {
    margin-bottom: 30px;
  }
}
/*** check_list ***/
ul.check_list li {
  position: relative;
  font-size: 1.504rem;
  line-height: 1.5;
  padding-left: 1.5em;
  margin-bottom: 0.5em;
}

ul.check_list li:before {
  content: "";
  display: inline-block;
  background: url("../images/common/icon_check_list.svg") left top no-repeat;
  background-size: contain;
  width: 9px;
  height: 10px;
  position: absolute;
  left: 0px;
  top: 0.5em;
}

/*** text style ***/
.letter-spacing_240 {
  letter-spacing: 0.24em !important;
}

.line-height_170 {
  line-height: 1.7 !important;
}

/*** borderbox ***/
.borderbox {
  padding: 30px 30px;
  border: 1px solid var(--color-border-base);
}

.borderbox_green {
  padding: 30px 30px;
  border: 1px solid var(--color-brand-green-alt);
}

@media (max-width: 768px) {
  .borderbox,
  .borderbox_green {
    padding: 20px 20px;
  }
}
.radius_20 {
  border-radius: 20px;
  overflow: hidden;
}

@media (max-width: 768px) {
  .radius_20 {
    border-radius: 10px;
  }
}
/*** float_right **/
.float_right {
  float: right;
}

/*** underline ***/
.section_underline {
  position: relative;
}

.section_underline .container:after {
  content: "";
  display: inline-block;
  max-width: 100%;
  width: 1080px;
  height: 2px;
  background-color: #f0f0f0;
  position: absolute;
  left: 50%;
  bottom: 0px;
  transform: translate3d(-50%, 0, 0);
}

@media (max-width: 1160px) {
  .section_underline .container:after {
    width: auto;
    left: 40px;
    right: 40px;
    transform: translate3d(0, 0, 0);
  }
}
@media (max-width: 768px) {
  .section_underline .container:after {
    left: 20px;
    right: 20px;
  }
}
.text_bg_label {
  display: inline-block;
  background-color: #cee8dd;
  padding: 0px 5px;
  color: var(--color-brand-green-alt);
  border-radius: 4px;
}

.prefix {
  padding-left: 1.5em;
  position: relative;
}

.prefix .num {
  display: inline-block;
  position: absolute;
  left: 0px;
}

/*** news_list ***/
.news_list {
  border-top: 1px solid var(--color-border-base);
}

.news_list .box_inner {
  display: block;
  padding: 30px 0px;
  background-color: #FFFFFF;
  border-bottom: 1px solid var(--color-border-base);
}

.news_list .box_date {
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--color-text-muted);
  margin-bottom: 10px;
}

.news_list .box_title {
  font-size: 1.6rem;
}

.news_list a:hover .box_title {
  text-decoration: underline;
  text-underline-offset: 5px;
}

@media (max-width: 768px) {
  .news_list .box_inner {
    display: block;
    height: auto;
    padding: 20px;
  }
  .news_list .box_date {
    padding: 0px;
    margin-bottom: 10px;
  }
  .news_list .box_title {
    padding: 0px;
  }
}
/*** room_list ***/
.room_list .box {
  display: flex;
}

.room_list .thumb_wrap {
  width: 66%;
}

.room_list .thumb {
  height: 100%;
}

.room_list .thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.room_list .text_wrap {
  flex: 1;
  background-color: #FFFFFF;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5%;
}

.room_list .text_wrap .room_title {
  color: var(--color-accent-strong);
  margin-bottom: 30px;
}

.room_list .text_wrap .room_title .f_en {
  display: block;
  font-size: 3.2rem;
  line-height: 1;
  margin-bottom: 10px;
}

.room_list .text_wrap .room_title .f_ja {
  display: block;
  font-size: 1.2rem;
  letter-spacing: 0.12em;
}

.room_list .text_wrap .room_description {
  font-size: 1.408rem;
}

.room_list .text_wrap .room_spec th,
.room_list .text_wrap .room_spec td {
  font-size: 1.296rem;
  font-weight: 400;
  padding: 3px 0px;
}

.room_list .text_wrap .room_spec th {
  padding-right: 30px;
}

.room_list .text_wrap .text_head {
  flex-grow: 1;
  padding-bottom: 20px;
}

.room_list .text_wrap .text_content {
  padding-top: 30px;
  border-top: 1px solid #644132;
}

@media (max-width: 768px) {
  .room_list .box {
    display: block;
  }
  .room_list .thumb_wrap {
    width: auto;
  }
  .room_list .text_wrap .room_title .f_en {
    font-size: 2.45rem;
  }
  .room_list .text_wrap .room_title {
    margin-bottom: 15px;
  }
  .room_list .text_wrap .text_content {
    padding-top: 15px;
  }
}
/*** スライダー ***/
.prev-arrow {
  display: inline-block;
  background: url("../images/common/arrow_slide_left.svg") center center no-repeat;
  background-size: contain;
  width: 60px;
  height: 60px;
  position: absolute;
  left: -90px;
  top: 0px;
  bottom: 0px;
  z-index: 1;
  margin: auto;
  cursor: pointer;
}

.next-arrow {
  display: inline-block;
  background: url("../images/common/arrow_slide_right.svg") center center no-repeat;
  background-size: contain;
  width: 60px;
  height: 60px;
  position: absolute;
  right: -90px;
  top: 0px;
  bottom: 0px;
  z-index: 1;
  margin: auto;
  cursor: pointer;
}

@media (max-width: 1385px) {
  .prev-arrow {
    left: -30px;
  }
  .next-arrow {
    right: -30px;
  }
}
@media (max-width: 1280px) {
  .prev-arrow {
    width: 40px;
    height: 40px;
    left: -20px;
  }
  .next-arrow {
    width: 40px;
    height: 40px;
    right: -20px;
  }
}
@media (max-width: 768px) {
  .prev-arrow {
    width: 30px;
    height: 30px;
    left: -15px;
  }
  .next-arrow {
    width: 30px;
    height: 30px;
    right: -15px;
  }
}
.slick-dots li {
  width: 6px;
  height: 6px;
  padding: 0px;
  margin: 0px 6px;
}

.slick-dots li button {
  width: 6px;
  height: 6px;
  padding: 0px;
}

.slick-dots li button:before {
  content: "";
  width: 6px;
  height: 6px;
  border: 1px solid #644132;
  border-radius: 100%;
  background-color: transparent;
  opacity: 1;
}

.slick-dots li.slick-active button:before {
  background-color: #644132;
  opacity: 1;
}

.footer_search a {
  display: block;
  background-color: var(--color-accent-strong);
}

.footer_search a .search_inner {
  display: flex;
  align-items: center;
  height: 200px;
  font-size: 2.8rem;
  letter-spacing: 0.08em;
  color: #FFFFFF;
  position: relative;
}

.footer_search a .search_inner img {
  width: auto;
  height: 1em;
}

.footer_search a .search_inner:after {
  content: "";
  display: inline-block;
  background: url("../images/common/arrow_btn.svg") left top no-repeat;
  background-size: contain;
  width: 40px;
  height: 9px;
  position: absolute;
  right: 10px;
  top: 0px;
  bottom: 0px;
  margin: auto;
}

@media (max-width: 768px) {
  .footer_search a .search_inner {
    height: 100px;
    font-size: 1.75rem;
  }
}
/*** info_table ***/
.info_table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 2px;
}

.info_table th {
  background-color: #fff;
  font-size: 1.504rem;
  font-weight: bold;
  color: #000;
  letter-spacing: 0.12em;
  padding: 30px;
  vertical-align: top;
  width: 200px;
}

.info_table td {
  background-color: #FFFFFF;
  font-size: 1.504rem;
  letter-spacing: 0.12em;
  padding: 30px;
}

@media (max-width: 768px) {
  .info_table th {
    background-color: #d8d8d8;
  }
  .info_table,
  .info_table thead,
  .info_table tbody,
  .info_table tr,
  .info_table th,
  .info_table td {
    display: block;
    width: 100%;
  }
  .info_table th,
  .info_table td {
    padding: 15px;
  }
}
/*** detail_slider ***/
.detail_slider {
  max-width: 70%;
  width: 960px;
  margin: auto;
}

.detail_slider .slick-list {
  overflow: visible;
}

.detail_slider .box {
  padding: 0px 80px;
}

@media (min-width: 1241px) {
  .detail_slider .next-arrow {
    right: -30px;
  }
  .detail_slider .prev-arrow {
    left: -30px;
  }
}
@media (max-width: 1280px) {
  .detail_slider .box {
    padding: 0px 60px;
  }
}
@media (max-width: 768px) {
  .detail_slider .box {
    padding: 0px 20px;
  }
}
.f_bg_line {
  background: url(../images/top/room_recomended_border.png) left bottom repeat-x;
  background-size: 160px 6px;
  padding-bottom: 15px;
}

/*** gallery_slider ***/
.gallery_slider .box {
  padding-left: 5px;
  padding-right: 5px;
}

@media (max-width: 768px) {
  .gallery_slider .box img {
    height: 200px;
  }
}
.h_left {
  display: flex;
}

#common_visual {
  width: 100%;
  height: 380px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}

#common_visual .pagetitle {
  font-size: 2em;
  text-align: center;
  color: #fff;
  font-weight: bold;
}

#common_visual .pagetitle span {
  font-size: 0.5em;
}

@media (max-width: 768px) {
  #common_visual {
    height: 130px;
  }
}
h2 {
  margin-bottom: 30px;
  line-height: 1;
  font-weight: bold;
  font-size: 1.8em;
}

h2 .h2_en {
  color: var(--color-border-soft);
  /* font-family: 'Libre Baskerville', serif; */
  font-size: 0.5em;
}

/*** page_mv ***/
#page_mv {
  position: relative;
  z-index: 1;
  height: 300px;
  border-bottom: 1px solid var(--color-brand-accent);
}

.page_mv_bg img {
  width: 100%;
  max-height: 400px;
  min-height: 160px;
  -o-object-fit: cover;
     object-fit: cover;
}

.page_mv_content {
  text-align: center;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

/***** sectiontitle *****/
.sectiontitle {
  text-align: center;
  margin-bottom: 30px;
}

.sectiontitle .ja {
  display: block;
  font-size: 3.84rem;
  line-height: 1.7;
  letter-spacing: 0.06em;
}

.sectiontitle .en {
  display: block;
  color: var(--color-border-soft);
  font-size: 1.92rem;
  letter-spacing: 0.1em;
}

@media (max-width: 768px) {
  .sectiontitle .ja {
    font-size: 2.52rem;
  }
  .sectiontitle .en {
    font-size: 1.4rem;
  }
}
.sectiontext {
  line-height: 2;
  text-align: center;
  margin-bottom: 0px;
}

/**** font *****/
.line-height_1 {
  line-height: 1;
}

.border-bottom_0 {
  border-bottom: none !important;
}

/**** opacity ***/
.opacity_90 {
  opacity: 0.9;
}

.opacity_80 {
  opacity: 0.8;
}

.opacity_70 {
  opacity: 0.7;
}

/**** padding ****/
.pl0 {
  padding-left: 0px !important;
}

.pl5 {
  padding-left: 5px !important;
}

.pl10 {
  padding-left: 10px !important;
}

.pl15 {
  padding-left: 15px !important;
}

.pl20 {
  padding-left: 20px !important;
}

.pl25 {
  padding-left: 25px !important;
}

.pl30 {
  padding-left: 30px !important;
}

.pl35 {
  padding-left: 35px !important;
}

.pl40 {
  padding-left: 40px !important;
}

.pl50 {
  padding-left: 50px !important;
}

.pl60 {
  padding-left: 60px !important;
}

.pl70 {
  padding-left: 70px !important;
}

.pl80 {
  padding-left: 80px !important;
}

.pl90 {
  padding-left: 90px !important;
}

.pl100 {
  padding-left: 100px !important;
}

.pr0 {
  padding-right: 0px !important;
}

.pr5 {
  padding-right: 5px !important;
}

.pr10 {
  padding-right: 10px !important;
}

.pr15 {
  padding-right: 15px !important;
}

.pr20 {
  padding-right: 20px !important;
}

.pr25 {
  padding-right: 25px !important;
}

.pr30 {
  padding-right: 30px !important;
}

.pr35 {
  padding-right: 35px !important;
}

.pr40 {
  padding-right: 40px !important;
}

.pr50 {
  padding-right: 50px !important;
}

.pr60 {
  padding-right: 60px !important;
}

.pr70 {
  padding-right: 70px !important;
}

.pr80 {
  padding-right: 80px !important;
}

.pr90 {
  padding-right: 90px !important;
}

.pr100 {
  padding-right: 100px !important;
}

@media (max-width: 768px) {
  .pb0_sp {
    padding-bottom: 0px !important;
  }
  .pb5_sp {
    padding-bottom: 5px !important;
  }
  .pb10_sp {
    padding-bottom: 10px !important;
  }
  .pb15_sp {
    padding-bottom: 15px !important;
  }
  .pb20_sp {
    padding-bottom: 20px !important;
  }
  .pb25_sp {
    padding-bottom: 25px !important;
  }
  .pb30_sp {
    padding-bottom: 30px !important;
  }
  .pb35_sp {
    padding-bottom: 35px !important;
  }
  .pb40_sp {
    padding-bottom: 40px !important;
  }
  .pb50_sp {
    padding-bottom: 50px !important;
  }
  .pb60_sp {
    padding-bottom: 60px !important;
  }
  .pb70_sp {
    padding-bottom: 70px !important;
  }
  .pb80_sp {
    padding-bottom: 80px !important;
  }
  .pb90_sp {
    padding-bottom: 90px !important;
  }
  .pb100_sp {
    padding-bottom: 100px !important;
  }
  .pt0_sp {
    padding-top: 0px !important;
  }
  .pt5_sp {
    padding-top: 5px !important;
  }
  .pt10_sp {
    padding-top: 10px !important;
  }
  .pt15_sp {
    padding-top: 15px !important;
  }
  .pt20_sp {
    padding-top: 20px !important;
  }
  .pt25_sp {
    padding-top: 25px !important;
  }
  .pt30_sp {
    padding-top: 30px !important;
  }
  .pt35_sp {
    padding-top: 35px !important;
  }
  .pt40_sp {
    padding-top: 40px !important;
  }
  .pt50_sp {
    padding-top: 50px !important;
  }
  .pt60_sp {
    padding-top: 60px !important;
  }
  .pt70_sp {
    padding-top: 70px !important;
  }
  .pt80_sp {
    padding-top: 80px !important;
  }
  .pt90_sp {
    padding-top: 90px !important;
  }
  .pt100_sp {
    padding-top: 100px !important;
  }
  .pl0_sp {
    padding-left: 0px !important;
  }
  .pl5_sp {
    padding-left: 5px !important;
  }
  .pl10_sp {
    padding-left: 10px !important;
  }
  .pl15_sp {
    padding-left: 15px !important;
  }
  .pl20_sp {
    padding-left: 20px !important;
  }
  .pl25_sp {
    padding-left: 25px !important;
  }
  .pl30_sp {
    padding-left: 30px !important;
  }
  .pl35_sp {
    padding-left: 35px !important;
  }
  .pl40_sp {
    padding-left: 40px !important;
  }
  .pl50_sp {
    padding-left: 50px !important;
  }
  .pl60_sp {
    padding-left: 60px !important;
  }
  .pl70_sp {
    padding-left: 70px !important;
  }
  .pl80_sp {
    padding-left: 80px !important;
  }
  .pl90_sp {
    padding-left: 90px !important;
  }
  .pl100_sp {
    padding-left: 100px !important;
  }
  .pr0_sp {
    padding-right: 0px !important;
  }
  .pr5_sp {
    padding-right: 5px !important;
  }
  .pr10_sp {
    padding-right: 10px !important;
  }
  .pr15_sp {
    padding-right: 15px !important;
  }
  .pr20_sp {
    padding-right: 20px !important;
  }
  .pr25_sp {
    padding-right: 25px !important;
  }
  .pr30_sp {
    padding-right: 30px !important;
  }
  .pr35_sp {
    padding-right: 35px !important;
  }
  .pr40_sp {
    padding-right: 40px !important;
  }
  .pr50_sp {
    padding-right: 50px !important;
  }
  .pr60_sp {
    padding-right: 60px !important;
  }
  .pr70_sp {
    padding-right: 70px !important;
  }
  .pr80_sp {
    padding-right: 80px !important;
  }
  .pr90_sp {
    padding-right: 90px !important;
  }
  .pr100_sp {
    padding-right: 100px !important;
  }
}
/*footer*/
.footer {
  background: var(--color-brand-main);
  padding: 50px 0 0px 0;
  color: var(--color-white);
}

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

.footer_content .f_logo {
  margin-right: 0px;
  width: 350px;
}

.f_navi {
  display: flex;
  -moz-column-gap: 40px;
       column-gap: 40px;
  border-top: 1px solid var(--color-border-soft);
  padding-top: 40px;
}

.f_navi ul {
  flex: 1;
}

.f_navi li {
  margin-bottom: 20px;
}

.f_navi li a {
  font-size: 1.3rem;
}

.copyrught {
  border-top: 1px solid var(--color-border-soft);
  padding: 24px 20px;
  text-align: center;
}

.copyrught p {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.6;
  letter-spacing: 0.06em;
  color: var(--color-white);
}

@media (max-width: 768px) {
  .footer {
    background: #323232;
    padding: 30px 0 0px 0;
  }
  .footer_content {
    display: block;
    color: var(--color-border-base);
  }
  .footer_content .f_logo {
    margin-right: 0px;
    margin-bottom: 30px;
  }
  .f_navi {
    display: block;
  }
  .f_navi ul {
    margin-right: 0px;
  }
  .f_navi li {
    margin-bottom: 20px;
  }
  .copyrught {
    padding: 20px 16px;
  }
  .copyrught p {
    font-size: 1.1rem;
    letter-spacing: 0.04em;
  }
}
/**** common_service ****/
.common_service_list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 2px;
  margin-bottom: 2px;
}

.common_service_list_box a {
  display: block;
  position: relative;
}

.common_service_list_box a:after {
  content: "";
  display: inline-block;
  background: url("../images/common/arrow_right_white.svg") left top no-repeat;
  background-size: contain;
  width: 30px;
  height: 15px;
  position: absolute;
  right: 20px;
  bottom: 20px;
}

.common_service_list_box img {
  width: 100%;
}

.common_service_list_box .text_wrap {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.common_service_list_box .text_wrap .section_title {
  color: #FFFFFF;
  margin-bottom: 0;
}

.common_service_list_box .text_wrap .section_title .f_en {
  color: #FFFFFF;
}

.common_service_list_box .text_wrap .section_title .f_en:before {
  background-color: #FFFFFF;
}

@media (max-width: 768px) {
  .common_service_list {
    display: grid;
    grid-template-columns: 1fr;
  }
  .common_service_list_box .thumb_wrap img {
    width: 100%;
    height: 40vw;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
/**** common_contact ****/
.common_contact a {
  display: block;
  position: relative;
}

.common_contact .text_wrap {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translate3d(0, -50%, 0);
}

.common_contact .section_title {
  position: relative;
}

.common_contact .section_title:after {
  content: "";
  display: inline-block;
  background: url(../images/common/arrow_right_white.svg) left top no-repeat;
  background-size: contain;
  width: 50px;
  height: 25px;
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translate3d(0, -50%, 0);
}

@media (max-width: 768px) {
  .common_contact .thumb_wrap img {
    width: 100%;
    height: 40vw;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .common_contact .text_wrap {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .common_contact .section_title:after {
    display: none;
  }
  .common_contact a:after {
    content: "";
    display: inline-block;
    background: url(../images/common/arrow_right_white.svg) left top no-repeat;
    background-size: contain;
    width: 30px;
    height: 15px;
    position: absolute;
    right: 20px;
    bottom: 20px;
  }
}

/* SP fixed header & footer (mock) */
.sp_fixed_footer_nav {
  display: none;
}

@media (max-width: 1000px) {
  body {
    padding-bottom: calc(66px + env(safe-area-inset-bottom));
  }

  .sp_fixed_footer_nav {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 66px;
    box-sizing: border-box;
    padding-bottom: env(safe-area-inset-bottom);
    padding-left: 8px;
    padding-right: 8px;
    background: #f7f6f2;
    border-top: 1px solid #d6cebf;
    z-index: 9998;
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr) minmax(0, 1fr) auto;
    align-items: stretch;
  }

  .sp_fixed_footer_nav__item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 6px;
    min-width: 0;
    font-size: clamp(1.25rem, 4.8vw, 1.5rem);
    font-family: var(--font-base-serif);
    letter-spacing: 0;
    color: #aa8f59;
    line-height: 1;
    white-space: normal;
  }

  .sp_fixed_footer_nav__item--menu {
    padding-left: 0;
    padding-right: 0;
  }

  .sp_fixed_footer_nav__hamburger {
    position: relative;
    display: inline-block;
    width: 30px;
    height: 20px;
  }

  .sp_fixed_footer_nav__hamburger span {
    display: block;
    width: 100%;
    height: 1px;
    background-color: #aa8f59;
    position: absolute;
    left: 0;
    transform-origin: center center;
    transition: transform 0.3s ease, opacity 0.3s ease, top 0.3s ease;
  }

  .sp_fixed_footer_nav__hamburger span:nth-child(1) {
    top: 2px;
  }

  .sp_fixed_footer_nav__hamburger span:nth-child(2) {
    top: 9px;
  }

  .sp_fixed_footer_nav__hamburger span:nth-child(3) {
    top: 16px;
  }

  .js-hamburger.is-active .sp_fixed_footer_nav__hamburger span:nth-child(1) {
    top: 9px;
    transform: rotate(45deg);
  }

  .js-hamburger.is-active .sp_fixed_footer_nav__hamburger span:nth-child(2) {
    opacity: 0;
  }

  .js-hamburger.is-active .sp_fixed_footer_nav__hamburger span:nth-child(3) {
    top: 9px;
    transform: rotate(-45deg);
  }

  .sp_fixed_footer_nav__item--contact {
    margin-right: 0;
    padding: 0 12px;
    height: 44px;
    border-radius: 0;
    background: #8f3728;
    color: #fff;
    font-size: clamp(1.15rem, 4.2vw, 1.35rem);
    font-weight: 500;
    letter-spacing: 0;
    align-self: center;
    justify-self: center;
    white-space: nowrap;
  }

  .gnav_list > li > a {
    font-size: 1.5rem;
    padding: 18px 0;
  }

  .gnav_list > li > .child > li > a {
    font-size: 1.35rem;
    padding: 8px 0;
  }

  .header {
    background: var(--color-brand-main);
  }

  .header_bg_wrap {
    display: none;
  }

  .header #spnav_buttonwrap {
    display: none;
  }

  .header .h_right {
    position: fixed;
    inset: 0;
    z-index: 9999;
    width: auto;
    height: auto;
    pointer-events: none;
  }

  .header .h_content {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 66px;
  }

  .header .h_left {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  body.menu_active .header .h_right {
    pointer-events: auto;
  }

  .header .h_logo {
    position: static;
    left: auto;
    top: auto;
    padding: 0;
  }

  .header .h_logo .h_logo_link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
  }

  .header .h_logo img {
    width: auto;
    max-width: min(72vw, 240px);
    max-height: 36px;
    height: auto;
    display: block;
  }
}
/*# sourceMappingURL=common.css.map */
