@charset "UTF-8";
/* 全体共通css */
html {
  font-size: 100%;
  scroll-behavior: smooth;
}
body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1rem;
}

a {
  color: inherit;
  text-decoration: underline;
}

a:hover,
a:focus {
  text-decoration: none;
  color: inherit;
}

/* レイアウト系 */
.l-page-wrapper {
  overflow: hidden;
  position: relative;
  min-width: 320px;
}

.l-inner {
  width: 100%;
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}

.l-outside {
  display: flex;
  justify-content: space-between;
  max-width: 1040px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
}

.l-outside--reverse {
  flex-direction: row-reverse;
}

.l-outside_content {
  width: 50%;
  flex-shrink: 0;
}

.l-outside_media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.l-outside_content--right {
  flex: 1;
  margin-right: calc(50% - 50vw);
  margin-left: 4%;
}

.l-outside_content--left {
  flex: 1;
  margin-left: calc(50% - 50vw);
  margin-right: 4%;
}

/* ユーティリティ系（flexや余白等） */
.u-mt-8 {
  margin-top: 0.5rem !important;
}

.u-mt-16 {
  margin-top: 1rem !important;
}

.u-mt-24 {
  margin-top: 1.5rem !important;
}

.u-mt-32 {
  margin-top: 2rem !important;
}

.u-mt-40 {
  margin-top: 2.5rem !important;
}

.u-mt-48 {
  margin-top: 3rem !important;
}

.u-mt-56 {
  margin-top: 3.5rem !important;
}

.u-mt-64 {
  margin-top: 4rem !important;
}

.u-mt-80 {
  margin-top: 5rem !important;
}

.u-mt-120 {
  margin-top: 7.5rem !important;
}

.u-gap-8 {
  gap: 0.5rem !important;
}

.u-gap-16 {
  gap: 1rem !important;
}

.u-gap-24 {
  gap: 1.5rem !important;
}

.u-gap-32 {
  gap: 2rem !important;
}

.u-gap-40 {
  gap: 2.5rem !important;
}

.u-gap-48 {
  gap: 3rem !important;
}

.u-gap-56 {
  gap: 3.5rem !important;
}

.u-gap-64 {
  gap: 4rem !important;
}

.u-gap-80 {
  gap: 5rem !important;
}

.u-flex-row {
  display: flex;
}

.u-flex-column {
  display: flex;
  flex-direction: column;
}

.u-flex-row--sp-col {
  display: flex;
  flex-direction: row;
}

.u-flex-column--sp-row {
  display: flex;
  flex-direction: column;
}

.u-flex-responsive {
  display: flex;
}

.u-align-center {
  align-items: center;
}

.u-align-end {
  align-items: end;
}

.u-justify-center {
  justify-content: center;
}

.u-justify-space-between {
  justify-content: space-between;
}

.u-justify-end {
  justify-content: end;
}

.u-text-center {
  text-align: center;
}

.u-text-right {
  text-align: right;
}

.u-vertical-rl {
  writing-mode: vertical-rl;
}

.u-center-block {
  margin-inline: auto;
}

.u-font-medium {
  font-weight: 500;
}

.u-font-bold {
  font-weight: 600;
}

.u-font-size-12 {
  font-size: 0.75rem;
}

.u-font-size-14 {
  font-size: 0.875rem;
}

.u-font-size-18 {
  font-size: 1.125rem;
}

.u-font-size-20 {
  font-size: 1.25rem;
}

.u-caution {
  font-size: 0.5em;
  vertical-align: top;
}

.u-sp {
  display: none;
}

.u-pc {
  display: block;
}

.u-underline--yellow {
  background: linear-gradient(transparent 50%, #f8de4c 50%);
}

.u-underline--green {
  background: linear-gradient(transparent 50%, #96c300 50%);
}
.u-bg-color--main {
  background-color: #1a2238;
}

.u-bg-texture {
  background-color: #a8aebe;
  background-blend-mode: multiply;
  background-image: url("../img/common/bg_texture.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.u-bg-texture--light {
  background-color: #c7cbd4;
}

.u-text-color--main {
  color: #1a2238;
}

.u-text-color--white {
  color: #fff;
}

.u-text-color--sub1 {
  color: #d4af37;
}

.u-font-family-sub1 {
  font-family: "Shippori Antique B1", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.u-font-family-sub2 {
  font-family: "Yusei Magic", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.u-font-family-sub3 {
  font-family: "Dokdo", system-ui;
  font-weight: 400;
  font-style: normal;
}

.u-section-padding {
  padding-top: clamp(80px, 10vw, 120px);
  padding-bottom: clamp(80px, 10vw, 120px);
}

/* コンポーネント系 */
.c-btn {
  margin-top: 40px;
  position: relative;
  display: block;
  text-align: center;
  padding: 0.4em 3em;
  background: #1a2238;
  color: #fff;
  border-radius: 9999px;
  font-size: 1.125rem;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 280px;
  box-sizing: border-box;
}
.c-btn::after {
  content: url(../img/common/arrow.svg);
  position: absolute;
  right: 1em;
  top: 50%;
  transform: translateY(-53%);
  transition: right 0.3s ease-in-out;
}
.c-btn:hover {
  text-decoration: none;
}
.c-btn:focus-visible::after {
  right: 0.8em;
}

.c-deco {
  position: relative;
}

.c-deco:before,
.c-deco:after {
  position: absolute;
  content: "";
  display: block;
}

.c-page-title {
  text-align: center;
  padding-bottom: 5rem;
}

.c-page-title_en {
  display: block;
  font-size: 0.875rem;
  font-weight: bold;
  color: #1a2238;
}

.c-page-title_jp {
  font-size: 1.625rem;
  font-weight: bold;
  margin-top: 5px;
}

.c-link a {
  position: relative;
  padding-right: 1em;
}
.c-link a::after {
  position: absolute;
  content: url(../img/common-link.svg);
  height: 1em;
  bottom: 6px;
}

.c-text p + p {
  margin-top: 1em;
}

.c-section-title {
  font-family: "Yusei Magic", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 2.1875rem;
  display: flex;
  justify-content: center;
}
.c-section-title::before {
  padding-right: 0.5rem;
}

.c-page-header_title {
  font-size: 1.25rem;
  font-family: "Shippori Antique B1", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.c-page-header_title::before {
  content: "";
  display: inline-block;
  width: 2em;
  height: 2em;
  margin-right: 0.5em;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  vertical-align: middle;
}

.c-hover-zoom {
  cursor: pointer;
  overflow: hidden;
}

.c-hover-zoom img {
  height: auto;
  transition: transform 0.6s ease;
}

.c-hover-zoom:hover img {
  transform: scale(1.1);
  opacity: 1;
}

.c-breadcrumbs-list {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 0.5em;
  padding-top: 1em;
}

.c-breadcrumbs-list_item {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
}

.c-breadcrumbs-list_item:not(:last-child)::after {
  content: ">";
  margin: 0 0.5em;
  color: #999;
}

.c-overlap {
  position: relative;
  overflow: visible;
  margin-top: calc(-1 * clamp(80px, 10vw, 120px));
  margin-bottom: calc(-1 * clamp(80px, 10vw, 120px));
  padding: 0 16px;
  z-index: 10;
}

.c-slider {
  width: 100%;
  margin: 0 auto;
}

.c-slider .slick-list {
  overflow: visible;
  padding: 0 calc((100% - 320px) / 2);
}

.c-slider_slide {
  width: 320px;
  padding: 0 8px;
}

.c-slider_slide img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.c-slider .slick-prev:before,
.c-slider .slick-next:before {
  color: #23365e;
  font-size: 80px;
  z-index: 20;
}

.c-slider .slick-dots li button:before {
  font-size: 80px;
  color: #9da3b1;
}

.c-slider .slick-dots li.slick-active button:before {
  opacity: 1;
}

.c-slider .slick-prev,
.c-slider .slick-next {
  display: none !important;
}

.c-table {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.c-table_row {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  padding: 1rem 0;
}
.c-table_term {
  font-weight: 600;
  margin-bottom: 4px;
  color: #ffffff;
}
.c-table_desc {
  color: #ffffff;
  line-height: 1.6;
}

.wp-pagenavi {
  margin: 40px auto;
  font-size: 12px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a2238;
}

.wp-pagenavi a {
  color: #1a2238;
}

.wp-pagenavi span.current,
.wp-pagenavi a.page {
  margin: 0 10px 0 0;
  border: solid 1px #eee;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  line-height: 40px;
  text-align: center;
  box-sizing: border-box;
  justify-content: center;
  display: flex;
  align-items: center;
  transition: 0.3s;
}

.wp-pagenavi span.current {
  border: none;
  background: #1a2238;
  color: #fff;
}

.wp-pagenavi a.page {
  background: none;
}

.wp-pagenavi a.page:hover {
  background: #1a2238;
  color: #fff;
}

.wp-pagenavi .first,
.wp-pagenavi .extend {
  margin-right: 10px;
}

.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
  display: none;
}

.single-paging {
  display: flex;
}

.single-paging > * {
  width: 33.3333%;
}

.single-paging_button:first-child {
  text-align: left;
}

.single-paging_button-all {
  text-align: center;
}

.single-paging_button:last-child {
  text-align: right;
}

/* タイトル部分 */
.single-paging_title {
  display: inline;
}

/* スマホ用ラベルは通常は隠す */
.single-paging_label {
  display: none;
}

/* 色指定 */
.single-paging a,
.single-paging_button-all,
.single-paging_label,
.single-paging_title {
  color: #1a2238;
  text-decoration: none;
}

.site-header_inner {
  position: fixed;
  top: 20px;
  width: 100%;
  height: 90px;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  background-color: #1a2238;
  transition: background-color 0.5s;
  z-index: 999;
}
.site-header_inner a {
  text-decoration: none;
}

/* グローバルメニュー */
.site-header_logo {
  width: 110px;
}

.site-header_sub {
  gap: 2rem;
  font-size: 0.8125rem;
  justify-content: end;
  align-items: center;
}

.site-header_sub_tel {
  font-size: 1rem;
}
.site-header_sub_tel::before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-right: 0.5em;
  background-image: url(../img/common/tel_white.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  vertical-align: middle;
}

.site-header_nav {
  order: 1;
}

.site-header_nav-list {
  display: flex;
  gap: clamp(3px, 3vw, 32px);
  justify-content: end;
}

.site-header_nav-link {
  text-align: center;
  color: #fff;
}
.site-header_nav-link .en {
  font-size: 0.875rem;
}

.l-header-cart {
  order: 2;
  margin-left: clamp(3px, 3vw, 32px);
  align-self: center;
}

.site-header_hamburger {
  order: 3;
}

.p-global-header__cart-count {
  color: #fff !important;
}
.page-top .mv {
  height: 800px;
  width: 100%;
  background: url(../img/top/mv.jpg) center/cover no-repeat;
}
.page-top .mv_content {
  height: 100%;
}
.page-top .mv_logo {
  width: 350px;
}
.page-top .mv_catch {
  font-size: 1.125rem;
}
.page-top .news {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.page-top .about {
  background-image: linear-gradient(to bottom, rgb(30, 50, 93), rgba(84, 93, 113, 0.47)), url("../img/common/bg_img1.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-bottom: calc(clamp(80px, 10vw, 120px) + 60px);
}
.page-top .about_catch {
  font-size: 1.875rem;
  display: inline-block;
}
.page-top .about_catch::before {
  background: url(../img/common/mike.svg) no-repeat center/contain;
  width: 45px;
  aspect-ratio: 32/43;
  bottom: 0;
  left: -65px;
}
.page-top .about_catch::after {
  background: url(../img/common/glass.svg) no-repeat center/contain;
  width: 34px;
  height: 55px;
  bottom: 0;
  right: -40px;
  transform: rotate(10deg);
}
.page-top .place {
  padding-top: calc(clamp(80px, 10vw, 120px) + 60px);
}
.page-top .place .c-section-title::before {
  content: url(../img/common/glass-2_gold.svg);
}
.page-top .place_content {
  border: #d4af37 1px solid;
  padding: 3rem;
}
.page-top .price_list {
  display: grid;
  width: 100%;
  grid-template-columns: max-content minmax(0, 1fr) max-content;
  row-gap: 12px;
  align-items: center;
}
.page-top .price_list_item {
  display: contents;
}
.page-top .price_list_name {
  justify-self: end;
  white-space: nowrap;
  font-family: "Yusei Magic", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.page-top .price_list_price {
  font-size: 1.125rem;
  font-family: "Dokdo", system-ui;
  font-weight: 400;
  font-style: normal;
}
.page-top .price_list_dots {
  justify-self: stretch;
  height: 3px;
  margin: 0 8px;
  background-image: radial-gradient(circle, #fff 1px, transparent 1px);
  background-size: 10px 3px;
  background-repeat: repeat-x;
  background-position: center;
}
.page-top .price_list_price {
  justify-self: start;
  white-space: nowrap;
}
.page-top .value .c-section-title {
  justify-content: start;
}
.page-top .value .c-section-title::before {
  padding-right: 0;
  content: url(../img/common/glass-3_navy.svg);
}
.page-top .value_top .l-outside_content {
  width: 30%;
}
.page-top .value_top .l-outside_media {
  height: 344px;
}
.page-top .value_contents .l-outside_content {
  width: 44%;
}
.page-top .value_contents .value_media {
  margin-top: 2rem;
}
.page-top .value_contents .value_media::before {
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.page-top .value_contents .value_media--1::before {
  background-image: url(../img/common/mike.svg);
  bottom: 10px;
  left: -20px;
  aspect-ratio: 2/3;
  width: 60px;
}
.page-top .value_contents .value_media--2::before {
  background-image: url(../img/common/glass.svg);
  bottom: -15px;
  right: 20px;
  aspect-ratio: 2/3;
  width: 45px;
  transform: rotate(5deg);
}
.page-top .value_contents .value_media--3::before {
  background-image: url(../img/common/glass-3.svg);
  bottom: -5px;
  left: -5px;
  aspect-ratio: 54/40;
  width: 70px;
}
.page-top .value_item {
  margin-top: 3.5rem;
}
.page-top .value_item h3 {
  font-size: 1.875rem;
}
.page-top .value_item .l-outside_content {
  width: 40%;
}
.page-top .value_item .l-outside_media {
  height: 280px;
}
.page-top .value_itme_title {
  display: flex;
  align-items: end;
  gap: 1rem;
}
.page-top .value_item_number {
  position: relative;
  font-family: "Yatra One", system-ui;
  font-weight: 400;
  font-style: normal;
  display: flex;
  background-color: #d4af37;
  color: #9196a4;
  font-size: 3.4375rem;
  align-items: end;
  justify-content: center;
  padding-top: 0.5rem;
  height: 100px;
  width: 85px;
}
.page-top .value_item_number::before {
  content: url(../img/top/value_WhatWeValue.svg);
  position: absolute;
  top: -20px;
  left: 0;
}

.page-header {
  padding-top: 110px;
  box-sizing: border-box;
  height: 330px;
  width: 100%;
  background: url(../img/top/mv.jpg) center/cover no-repeat;
}

.c-page-header_title::before {
  background-image: url(../img/common/mike.svg);
}

.page-privacy .privacy_content h2 {
  font-size: 1.375rem;
  font-weight: 600;
}
.page-privacy .privacy_content h2:not(:first-of-type) {
  margin-top: 3.5rem;
}
.page-privacy .privacy_content p + p {
  margin-top: 1rem;
}
.page-privacy .privacy_content ul {
  margin-top: 1rem;
}
.page-privacy .privacy_content ul li {
  list-style-type: disc;
  margin-left: 1.5rem;
}
.page-privacy .privacy_content ul + p {
  margin-top: 1rem;
}
.page-privacy .privacy_content a {
  text-decoration: underline;
}
.page-privacy .privacy_content a:hover {
  text-decoration: none;
}

.page-404 h1 {
  font-size: 2.25rem;
}

.page-daytime .daytime-about_catch {
  font-size: 1.875rem;
}
.page-daytime .daytime-about::before {
  background-image: url(../img/daytime/daytime_about_light.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  aspect-ratio: 225/191;
  width: 225px;
  top: 20px;
  left: 50%;
  transform: translateX(-230%);
}
.page-daytime .daytime-about::after {
  background-image: url(../img/daytime/daytime_about_counter.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  aspect-ratio: 449/346;
  width: 450px;
  bottom: 350px;
  left: 50%;
  transform: translateX(60%);
}
.page-daytime .daytime-about .c-slider::after {
  background-image: url(../img/daytime/daytime_about_glass.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  aspect-ratio: 70/108;
  width: 70px;
  bottom: -20px;
  left: 50%;
  transform: translateX(143%);
}
.page-daytime .daytime-usage {
  /* スマホ対応 */
}
.page-daytime .daytime-usage .c-section-title::before {
  content: url(../img/common/mike.svg);
}
.page-daytime .daytime-usage .daytime-usage_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem 4%;
  margin-top: 2rem;
}
.page-daytime .daytime-usage .daytime-usage_item {
  width: 48%;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.page-daytime .daytime-usage .daytime-usage_image img {
  width: 110px;
  height: 110px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 50%;
}
.page-daytime .daytime-usage .daytime-usage_text {
  flex: 1;
}
.page-daytime .daytime-usage .daytime-usage_title {
  position: relative;
  font-weight: 600;
  font-size: 1.1rem;
  padding-bottom: 0.5rem;
}
.page-daytime .daytime-usage .daytime-usage_title::after {
  position: absolute;
  content: "";
  background-color: #d4af37;
  height: 1px;
  width: calc(100% + 40px);
  left: -40px;
  bottom: 0;
}
.page-daytime .daytime-usage .daytime-usage_text p {
  margin-top: 0.4rem;
}
.page-daytime .daytime-place .c-section-title::before {
  content: url(../img/common/beer_navy.svg);
}
.page-daytime .daytime-place_block {
  margin-top: 2.5rem;
}
.page-daytime .daytime-place_heading {
  position: relative;
}
.page-daytime .daytime-place_heading span {
  display: inline-block;
  font-weight: bold;
  background-color: #d4af37;
  color: #fff;
  padding: 0.3em 1em;
  position: relative;
  z-index: 1;
}
.page-daytime .daytime-place_heading::before {
  position: absolute;
  content: "";
  background-color: #d4af37;
  height: 1px;
  width: 100%;
  top: 50%;
  left: 0;
  z-index: 0;
}
.page-daytime .daytime-place_text, .page-daytime .daytime-place_subblock {
  margin-top: 0.5rem;
}
.page-daytime .daytime-place .daytime-place_subblock + .daytime-place_subblock {
  margin-top: 2rem;
}
.page-daytime .daytime-contact .c-section-title::before {
  content: url(../img/common/glass.svg);
}
.page-daytime .daytime-contact .daytime-contact_box {
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 13px;
  padding: 1rem;
}
.page-daytime .daytime-contact .daytime-contact_item {
  flex: 1;
}
.page-daytime .daytime-contact .daytime-contact_tel,
.page-daytime .daytime-contact .daytime-contact_form {
  font-size: 1.375rem;
}
.page-daytime .daytime-contact .daytime-contact_tel::before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-right: 0.5em;
  background-image: url(../img/common/tel_navy.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  vertical-align: middle;
}

footer .access {
  background-image: linear-gradient(to bottom right, rgb(26, 34, 56), rgba(26, 34, 56, 0.8)), url("../img/common/bg_img1.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
footer .access .c-section-title::before {
  content: url(../img/common/glass_gold.svg);
}
footer .access h3 {
  font-size: 1.375rem;
  border-bottom: #d4af37 solid 1px;
  padding-bottom: 0.5rem;
}
footer .footer_logo-nav {
  padding-top: 5rem;
  padding-bottom: 2.5rem;
}
footer .footer_logo {
  display: inline-block;
  max-width: 260px;
}
footer .footer_copy {
  padding-bottom: 0.5rem;
}
@media screen and (max-width: 750px) {
  html {
    font-size: 87.5%;
  }
  .l-inner {
    max-width: 500px;
  }
  .l-outside {
    max-width: 500px;
  }
  .u-pl-pr-20-sp {
    padding-right: 20px;
    padding-left: 20px;
  }
  .u-flex-row--sp-col {
    flex-direction: column;
  }
  .u-flex-column--sp-row {
    flex-direction: row;
  }
  .u-flex-responsive {
    flex-direction: column;
  }
  .u-sp {
    display: block;
  }
  .u-pc {
    display: none;
  }
  .u-sp-ib {
    display: inline-block;
  }
  .u-user-pc {
    display: none !important;
  }
  .c-btn {
    margin-inline: auto;
  }
  .single-paging_title {
    display: none;
  }
  .single-paging_label {
    display: inline;
  }
  .site-header_inner {
    padding: 0 10px;
    height: 75px;
  }
  .site-header_logo {
    width: 20%;
  }
  .site-header_sub {
    gap: 0;
    align-items: end;
    justify-content: center;
  }
  .site-header_sub_tel {
    font-size: 1.57rem;
    line-height: 1.2;
  }
  .site-header_nav-list {
    flex-direction: column;
  }
  /* グローバルメニュー(SP) */
  .site-header_hamburger {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    height: 60px;
    width: 60px;
    margin-left: auto;
    z-index: 10;
    border: none;
    background-color: transparent;
    overflow: visible;
  }
  .site-header_hamburger-img {
    width: 50px;
    transition: transform 0.3s ease;
    transform-origin: center center;
    position: relative;
    top: 2px;
  }
  .site-header_hamburger.-active .site-header_hamburger-img {
    transform: rotate(-23deg);
  }
  .site-header_hamburger-text {
    font-size: 13px;
    color: #fff;
    margin-top: 2px;
  }
  .site-header_hamburger-text::before {
    content: "MENU";
    display: block;
    text-align: center;
  }
  .site-header_hamburger.-active .site-header_hamburger-text::before {
    content: "CLOSE";
  }
  .site-header_nav {
    position: fixed;
    top: 0;
    right: -100%;
    z-index: 9;
    height: 100vh;
    width: 100%;
    visibility: hidden;
    padding-top: 60px;
    background-color: #1a2238;
    transition: 0.4s;
  }
  .site-header_nav.-active {
    right: 0;
    visibility: visible;
  }
  .site-header_nav-menu {
    padding-top: 40px;
    padding-right: 25px;
    padding-bottom: 120px;
    padding-left: 25px;
  }
  .page-top .mv {
    background: url(../img/top/mv_sp.jpg) center/cover no-repeat;
    height: 90vh;
    min-height: 600px;
  }
  .page-top .mv_logo {
    width: 50%;
    min-width: 260px;
  }
  .page-top .mv_catch {
    margin-left: 20px;
    margin-right: 20px;
  }
  .page-top .value_contents .l-outside {
    padding: initial;
  }
  .page-top .value_contents .l-outside_content {
    width: 100%;
  }
  .page-top .value_contents .value_media--1::before {
    left: initial;
    right: 20px;
    bottom: -20px;
  }
  .page-top .value_contents .value_media--2::before {
    bottom: -20px;
    transform: rotate(-5deg);
  }
  .page-top .value_contents .value_media--3::before {
    left: initial;
    right: 20px;
    bottom: -15px;
  }
  .page-top .value_item .l-outside_content {
    width: 100%;
  }
  .page-top .value_itme_title {
    padding-left: 20px;
    padding-right: 20px;
  }
  .page-header {
    height: 280px;
  }
  .page-daytime .daytime-contact .daytime-contact_form {
    margin-top: 1rem;
  }
}
@media screen and (min-width: 751px) and (max-width: 1024px) {
  html {
    font-size: 93.75%;
  }
}
@media screen and (min-width: 751px) {
  .l-inner--mini {
    max-width: 720px;
  }
  .u-text-center-pc {
    text-align: center;
  }
  .u-user-sp {
    display: none !important;
  }
  .site-header_nav {
    margin-top: 0.5rem;
  }
  .page-daytime .daytime-contact .daytime-contact_item + .daytime-contact_item {
    border-left: 1px solid #9196a4;
  }
}
@media (any-hover: hover) {
  .c-btn:hover::after {
    right: 0.8em;
  }
}
@media (min-width: 768px) {
  .c-table_row {
    flex-direction: row;
    align-items: start;
  }
  .c-table_term {
    width: 180px;
    margin-bottom: 0;
    flex-shrink: 0;
  }
  .c-table_desc {
    flex-grow: 1;
  }
}
@media (max-width: 768px) {
  .page-daytime .daytime-usage .daytime-usage_item {
    width: 100%;
  }
}