@charset "UTF-8";
/*定数設定*/
@import url("root.css");
/***************************************
------------- grid -------------
https://web-grid.webjeda.com/
***************************************/
@media (min-width: 768px) {
  .row {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: auto;
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .row {
    display: grid;
    grid-template-columns: auto;
    grid-auto-rows: auto;
    gap: 10px;
  }
}
@media (max-width: 767px) {
  .row.sp-2col {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
  }
}
@media (min-width: 768px) {
  .row.align-items-center {
    align-items: center;
  }
}
.row + .row {
  margin-top: 5%;
}

[class*="col-"] {
  /*grid-column: span 12;*/
  /*padding: 10px*/
}

/* 768px */
@media only screen and (min-width: 768px) {
  .col-50 {
    grid-column: span 6;
  }
  .col-25 {
    grid-column: span 3;
  }
  .col-75 {
    grid-column: span 9;
  }
  .col-100 {
    grid-column: span 12;
  }
  .col-1 {
    grid-column: span 1;
  }
  .col-2 {
    grid-column: span 2;
  }
  .col-3 {
    grid-column: span 3;
  }
  .col-4 {
    grid-column: span 4;
  }
  .col-5 {
    grid-column: span 5;
  }
  .col-6 {
    grid-column: span 6;
  }
  .col-7 {
    grid-column: span 7;
  }
  .col-8 {
    grid-column: span 8;
  }
  .col-9 {
    grid-column: span 9;
  }
  .col-10 {
    grid-column: span 10;
  }
  .col-11 {
    grid-column: span 11;
  }
  .col-12 {
    grid-column: span 12;
  }
}
@media (min-width: 768px) {
  .order-1 {
    order: 1;
  }
  .order-2 {
    order: 2;
  }
  .order-3 {
    order: 3;
  }
  .order-4 {
    order: 4;
  }
  .order-5 {
    order: 5;
  }
  .order-6 {
    order: 6;
  }
}
@media (max-width: 767px) {
  .row.sp-gap-y-20 {
    gap: 20px 10px;
  }
  .row.sp-gap-y-30 {
    gap: 30px 10px;
  }
  .row.sp-gap-y-40 {
    gap: 40px 10px;
  }
}
/* 768px - 800px */
@media only screen and (max-width: 800px) and (min-width: 768px) {
  .col-50 {
    grid-column: span 6;
  }
  .col-25 {
    grid-column: span 3;
  }
  .col-75 {
    grid-column: span 9;
  }
  .col-100 {
    grid-column: span 12;
  }
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

/*****************BASE******************/
* {
  box-sizing: border-box;
}

*::before,
*::after {
  box-sizing: inherit;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
}

body {
  color: var(--text-color);
  background: var(--body-bg-color);
  font-family: var(--base-font-family);
  font-size: max(1.25rem, min(1.25vw, 16px));
  font-optical-sizing: auto;
  font-style: normal;
  line-height: 1.5;
  height: auto;
  overflow: hidden;
  letter-spacing: 0.05em;
}

@media (max-width: 767px) {
  body {
    font-size: clamp(1.25rem, 3.8961038961vw, 3rem);
    line-height: 1.4666666667;
  }
}
small {
  font-size: 80%;
}

p {
  margin: 0.5em 0 1em;
}

p:first-child {
  margin-top: 0;
}

p:last-child {
  margin-bottom: 0;
}

a {
  color: var(--link-color);
  text-decoration: none;
}

a:not([class]),
a:not([rel]) {
  transition: 0.2s;
}

a:not([class]):hover,
a:not([rel]):hover {
  opacity: 0.8;
}

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

dl dt {
  margin: 0;
}

dl dd {
  margin: 0;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

figure {
  text-align: center;
  margin: 0;
}

.ofi {
  display: block;
  position: relative;
  overflow: hidden;
  padding-top: 75%;
}
.ofi.cover img {
  object-fit: cover;
  width: 100% !important;
  height: 100% !important;
  font-family: "object-fit: cover;";
}

.ofi img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  object-fit: contain;
  max-width: 100%;
  max-height: 100%;
}

/***************************************
----------------- TITLE -----------------
***************************************/
#pagetitle {
  width: 100%;
  height: min(calc(200 / 1920 * 100vw * 4.5 / 3), 200px);
  margin: 0 auto;
  padding: 0;
  background: url(../img/common/pagetitle.jpg) no-repeat center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

#pagetitle h1 {
  font-size: max(1rem, min(calc(40 / 1920 * 100vw * 4.5 / 3), 40px));
  font-weight: bold;
  margin: 0;
  font-family: var(--title-font-family);
  color: var(--base-color01);
}

@media screen and (max-width: 767px) {
  #pagetitle {
    margin-top: 80px;
    height: min(calc(150 / 770 * 100vw), 150px);
  }
  #pagetitle h1 {
    font-size: clamp(1.25rem, min(calc(34 / 770 * 100vw), 34px), 34px);
  }
}
.h2 {
  font-size: max(1rem, min(calc(36 / 1920 * 100vw * 4.5 / 3), 36px));
  letter-spacing: 0.08em;
  color: var(--base-color01);
  font-weight: bold;
  font-family: var(--title-font-family);
  margin: 0 0 1em;
  text-align: center;
  padding-top: min(calc(40 / 1920 * 100vw * 4.5 / 3), 40px);
  position: relative;
}
@media (max-width: 767px) {
  .h2 {
    padding-top: min(calc(45 / 770 * 100vw), 45px);
    font-size: clamp(1.25rem, min(calc(40 / 770 * 100vw), 40px), 40px);
  }
}
.h2:after {
  content: "";
  display: block;
  position: absolute;
  width: 52px;
  height: 33px;
  top: 0;
  bottom: auto;
  right: 0;
  left: 0;
  margin: auto;
  max-width: 1.4444444444em;
  background: url(../img/common/icon_ttl02.png) no-repeat center top/contain;
}

.h2_A {
  font-size: max(1.25rem, min(2.34375vw, 30px));
  margin: 0 0 1em;
  letter-spacing: 0.05em;
  line-height: 1.5;
  font-weight: bold;
}

@media (max-width: 767px) {
  .h2_A {
    font-size: clamp(1.25rem, 5.1948051948vw, 40px);
  }
}
.h3 {
  font-size: max(1rem, min(calc(32 / 1920 * 100vw * 4.5 / 3), 32px));
  font-weight: bold;
  padding: 0.3em 0.3em 0.3em 1em;
  background: url(../img/common/icon_ttl03.png) no-repeat right -1em bottom -0.3em /
      min(calc(224 / 1920 * 100vw * 4.5 / 3), 224px),
    url(../img/common/icon_ttl04.png) repeat-y left 0.5em
      center/min(calc(6 / 1920 * 100vw * 4.5 / 3), 6px),
    var(--base-color01);
  color: #fff;
  font-family: var(--title-font-family);
  margin: 0 0 0.5em;
  text-shadow: 0 0 5px var(--base-color01), 0 0 5px var(--base-color01),
    0 0 5px var(--base-color01);
}
.h3::first-letter {
  color: var(--base-color02);
}
@media (max-width: 767px) {
  .h3 {
    font-size: clamp(1.25rem, min(calc(34 / 770 * 100vw), 34px), 34px);
    background: url(../img/common/icon_ttl03.png) no-repeat right -1em bottom -0.3em /
        min(calc(224 / 770 * 100vw), 224px),
      url(../img/common/icon_ttl04.png) repeat-y left 0.5em
        center/min(calc(6 / 770 * 100vw), 6px),
      var(--base-color01);
    padding: 0.4em 0.3em 0.4em 1em;
  }
}

.h3_shop {
  text-align: center;
  font-weight: bold;
  margin: 0 0 1em;
  padding: 0.3em;
  color: var(--base-color01);
  font-size: max(1rem, min(calc(22 / 1920 * 100vw * 4.5 / 3), 22px));
  background: url(../img/common/bg_ttl.jpg);
}
@media (max-width: 767px) {
  .h3_shop {
    font-size: clamp(1.25rem, min(calc(35 / 770 * 100vw), 35px), 35px);
  }
}

/***************************************
---------------- HEADER ----------------
***************************************/
header {
  width: 100%;
  background: #fff;
  font-family: var(--title-font-family);
}
header .header_wrap {
  width: min(96%, var(--container-width));
  height: min(calc(110 / 1920 * 100vw * 4.5 / 3), 110px);
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
}
header .header_wrap .store_name {
  width: min(35%, 334px);
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  font-size: unset;
  margin: 0;
}

.header_right {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: center;
  gap: 4%;
}

.phone_num {
  text-align: right;
  font-size: max(1rem, min(calc(14 / 1920 * 100vw * 5.5 / 3), 14px));
  flex-direction: column;
}
.phone_num a {
  color: var(--base-color01);
  font-size: min(calc(40 / 1920 * 100vw * 4.5 / 3), 39px);
  font-weight: bold;
  text-align: center;
  line-height: 1;
  padding-left: 1em;
  position: relative;
  letter-spacing: 0.02em;
}
.phone_num01 a {
  padding-left: 0.2em;
}
@media (max-width: 767px) {
  .phone_num a {
    font-size: clamp(1.25rem, min(calc(60 / 770 * 100vw), 60px), 60px);
  }
}

/* 電話アイコン(SVG)のスタイル - 特異性を高める */
.phone_num {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3em;
}
.phone_num01 {
  justify-content: flex-start;
  flex-direction: row;
}

/* .purchase_step .step_block .phone_num .phone_icon,
.phone_num .phone_icon {
  width: min(calc(32 / 1920 * 91vw * 5.5 / 2.8), 42px) !important;
  height: min(calc(32 / 1920 * 91vw * 5.5 / 2.8), 42px) !important;
  flex-shrink: 0;
  min-width: auto !important;
  vertical-align: middle;
} */
.purchase_step .step_block .phone_num .phone_icon,
.phone_num .phone_icon {
  width: min(calc(38 / 1920 * 100vw * 4.5 / 3), 38px) !important;
  height: min(calc(38 / 1920 * 100vw * 4.5 / 3), 38px) !important;
  flex-shrink: 0;
  min-width: auto !important;
  vertical-align: middle;
  margin-top: -2px;
}

/* 電話番号テキストの調整 */
.phone_num a {
  display: flex;
  align-items: center;
  line-height: 1;
}

/* タブレットサイズ */
/* @media (max-width: 1024px) and (min-width: 768px) {
  .purchase_step .step_block .phone_num .phone_icon,
  .phone_num .phone_icon {
    width: min(calc(38 / 1024 * 100vw * 4.5 / 3), 40px) !important;
    height: min(calc(38 / 1024 * 100vw * 4.5 / 3), 40px) !important;
    margin-top: -3px;
  }
} */

/* スマホサイズ */
@media (max-width: 767px) {
  .purchase_step .step_block .phone_num .phone_icon,
  .phone_num .phone_icon {
    width: clamp(1.25rem, min(calc(57 / 770 * 100vw), 57px), 57px) !important;
    height: clamp(1.25rem, min(calc(57 / 770 * 100vw), 57px), 57px) !important;
    margin-top: -1px;
  }
}

/* .phone_num a:before {
  content: "";
  display: block;
  position: absolute;
  width: 34px;
  height: 28px;
  top: 3px;
  bottom: 0;
  right: auto;
  left: 0;
  margin: auto;
  max-width: 1em;
  background: url(../img/common/icon_tel.png) no-repeat center/contain;
} */

@media (min-width: 768px) {
  .phone_num span {
    font-size: 110%;
  }
}
.hdr_contact_btn {
  display: flex;
  align-items: center;
  margin-top: 5px;
}
@media (max-width: 767px) {
  .hdr_contact_btn {
    justify-content: center;
    margin-top: 20px;
  }
}
.hdr_contact_btn a {
  display: block;
  color: var(--base-color01);
  border: 1px solid var(--base-color01);
  font-size: 1.4rem;
  width: 190px;
  border-radius: 4px;
  text-align: center;
  padding: 0.5em 1em;
  line-height: 1;
}
@media (max-width: 767px) {
  .hdr_contact_btn a {
    color: var(--base-color01) !important;
    background: #fff;
    padding: 10px 10px 15px;
  }
}
.hdr_contact_btn a .fa-envelope {
  display: inline-block;
  margin-right: 0.2em;
}

.store_info {
  font-weight: bold;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.store_info th,
.store_info td {
  line-height: 1.3;
  vertical-align: middle;
}

.navigation {
  width: 100%;
  background: linear-gradient(180deg, var(--base-color01) 0%, #000b8f 100%);
  border-bottom: var(--base-color02) solid 3px;
  box-shadow: 0 0 3px rgba(4, 0, 0, 0.1);
}
.navigation > ul {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  height: min(calc(63 / 1920 * 100vw * 4.5 / 3), 63px);
  max-width: var(--container-width);
  margin: auto;
  list-style: none;
  justify-content: center;
}
.navigation > ul#page_link > li {
  height: inherit;
  display: flex;
  align-items: center;
  position: relative;
  flex: 1;
}
.navigation > ul#page_link > li:after {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
}
.navigation > ul#page_link > li.has-child {
  position: relative;
}
.navigation > ul#page_link > li.has-child > a {
  position: relative;
  padding-right: 0.5rem;
}
@media (max-width: 767px) {
  .navigation > ul#page_link > li.has-child > a {
    padding-right: 15px;
    position: relative;
    z-index: 1;
  }
}
.navigation > ul#page_link > li.has-child > a .menu-dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0.5rem;
  margin: auto;
  width: 30px;
  height: 30px;
  transition: 0.3s;
  transform: rotate(0deg);
  padding: 0 !important;
}

/*本体リンクありの場合の追加CSSここから*/
/*@media ( max-width : 767px ) {*/
/*  .navigation > ul > li.has-child > a .menu-dropdown-toggle {*/
/*    border: #fff solid 1px;*/
/*    border-radius: 50%;*/
/*    z-index: 2;*/
/*  }*/
/*}*/
/*本体リンクありの場合の追加CSSここまで*/
.navigation > ul > li.has-child > a .menu-dropdown-toggle i {
  font-size: 1rem;
}

.navigation > ul > li.has-child .menu-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  z-index: 1;
}

@media (min-width: 768px) {
  html:not(.touch-enabled) .navigation ul li.has-child:hover .menu-dropdown {
    display: block !important;
  }
  html:not(.touch-enabled)
    .navigation
    ul
    li.has-child:hover
    > a
    .menu-dropdown-toggle,
  .navigation ul li.has-child > a.is-open .menu-dropdown-toggle {
    transform: rotate(180deg);
  }
}
@media (max-width: 767px) {
  .navigation > ul > li.has-child .menu-dropdown {
    display: none;
    position: static;
    top: unset;
    left: unset;
    width: 100%;
    z-index: unset;
  }
  html.touch-enabled
    .navigation
    ul
    li.has-child
    > a.is-open
    .menu-dropdown-toggle {
    transform: rotate(180deg);
  }
}
.navigation ul li.has-child .menu-dropdown li {
  width: 100%;
}

.navigation ul li.has-child .menu-dropdown li a {
  padding: 10px 0;
  display: block;
  width: 100%;
  text-align: center;
  color: #fff;
  font-size: 1.6rem;
  background: var(--base-color01);
}

@media (min-width: 768px) {
  .navigation ul#page_link > li:first-child::before {
    content: "";
    display: block;
    width: 1px;
    height: 100%;
    background: rgba(255, 255, 255, 0.5);
  }
}
.navigation ul#page_link li a {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  height: inherit;
  align-items: center;
  justify-content: center;
  transition: 0s;
  color: #fff;
  font-size: max(1rem, min(calc(18 / 1920 * 100vw * 4.5 / 3), 18px));
  font-weight: 500;
}

@media (max-width: 767px) {
  .navigation ul#page_link li a {
    font-size: 1.6rem;
  }
}
.navigation ul#page_link li a:hover {
  opacity: 0.8;
}

#menu-btn-check,
.menu-btn,
.store_name {
  display: none;
}

@media screen and (max-width: 767px) {
  header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 999;
    display: flex;
    align-items: center;
  }
  header .header_wrap {
    width: 100%;
  }
  header .header_wrap .store_name {
    width: min(60%, 250px);
    margin-left: 20px;
  }
  .menu-btn {
    position: fixed;
    top: 10px;
    right: 10px;
    display: flex;
    height: 54px;
    width: 54px;
    justify-content: center;
    align-items: center;
    z-index: 90;
    color: var(--base-color01);
    cursor: pointer;
  }
  .menu-btn span.bar,
  .menu-btn span.bar:before,
  .menu-btn span.bar:after {
    content: "";
    display: block;
    height: 3px;
    width: 34px;
    border-radius: 3px;
    background-color: var(--base-color01);
    position: absolute;
  }
  .menu-btn span.txt {
    position: absolute;
    bottom: 0;
    color: var(--base-color01);
    font-size: 1.2rem;
    line-height: 1;
  }
  .menu-btn span.bar:before {
    top: -10px;
  }
  .menu-btn span.bar {
    top: 20px;
  }
  .menu-btn span.bar:after {
    top: 10px;
  }
  #menu-btn-check:checked ~ .menu-btn span.bar {
    background-color: transparent;
  }
  #menu-btn-check:checked ~ .menu-btn span.bar::before {
    top: 0;
    transform: rotate(45deg);
  }
  #menu-btn-check:checked ~ .menu-btn span.bar::after {
    top: 0;
    transform: rotate(-45deg);
  }
  .navigation {
    width: 100%;
    height: calc(100% - 80px);
    position: fixed;
    top: 80px;
    left: 100%;
    z-index: 80;
    background: var(--base-color01);
    transition: all 0.5s;
  }
  .navigation ul#page_link {
    padding: 10px 25px 0;
    height: auto;
  }
  .navigation ul#page_link > li {
    width: 100%;
    margin: 0;
    border-bottom: solid 1px #fff;
    list-style: none;
    flex: none;
  }
  .navigation ul#page_link li:not(:last-of-type)::after {
    content: none;
  }
  .navigation ul#page_link > li a {
    padding: 10px 0;
  }
  .navigation ul#page_link > li a span {
    padding: 0 0 5px;
  }
  .navigation ul#page_link > li:before,
  .navigation ul#page_link > li:last-of-type:after {
    content: none;
  }
  .navigation ul#page_link > li a:hover,
  .navigation ul#page_link > li span:hover {
    background: none;
    opacity: 0.8;
  }
  #menu-btn-check:checked ~ .navigation {
    left: 0; /*メニューを画面内へ*/
  }
  .navigation li.has-child .menu-dropdown {
    position: static;
    background: none;
    width: calc(100% - 2px);
    opacity: 1;
    transition: none;
    display: none;
  }
  .navigation li.has-child {
    flex-wrap: wrap;
  }
  .phone_num.sp-only {
    width: 90%;
    text-align: center;
    max-height: unset;
    margin: 30px auto;
    display: block;
  }
  .phone_num.sp-only a {
    color: #fff;
  }
  .phone_num p {
    font-size: 1.6rem;
    background: none;
    margin-top: 20px;
  }
}
/***************************************
---------------- FOOTER ----------------
***************************************/
footer {
  position: relative;
}
footer .container {
  background-image: none;
}
footer .arrow {
  position: relative;
  padding-left: 1.5em;
}
footer .arrow > a {
  font-weight: bold;
}
footer .arrow:before {
  content: "\f138";
  font-family: "FontAwesome";
  display: block;
  position: absolute;
  top: 0.35em;
  bottom: auto;
  right: auto;
  left: 0;
  margin: auto;
  font-size: 1em;
  margin: auto;
  width: 1em;
  height: 1em;
  line-height: 1;
  transition: 0.2s;
  color: #b7900e;
}
footer .lower {
  margin-left: 1em;
}
@media (max-width: 767px) {
  footer .lower a {
    font-size: clamp(1.25rem, min(calc(28 / 770 * 100vw), 28px), 28px);
  }
}
footer .lower:before {
  content: "-";
  margin-right: 0.2em;
}

.footer_bg {
  width: 100%;
  height: inherit;
  padding: min(calc(45 / 1920 * 100vw * 4.5 / 3), 45px) 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: min(calc(85 / 1920 * 100vw * 4.5 / 3), 85px);
  background: url(../img/common/bg_footer.jpg) no-repeat center/cover;
}
@media screen and (max-width: 767px) {
  .footer_bg {
    width: 100%;
    padding: 0 0 min(calc(60 / 770 * 100vw), 60px);
    background: url(../img/common/sp_bg_footer.jpg) no-repeat center/cover;
  }
}

.ft_logo {
  padding: min(calc(45 / 770 * 100vw), 45px) 0;
  margin-bottom: min(calc(60 / 770 * 100vw), 60px);
  background: var(--base-color01);
  text-align: center;
  margin-left: -15px;
  margin-right: -15px;
}
@media screen and (max-width: 767px) {
  .ft_logo {
    flex-wrap: nowrap;
  }
}
.ft_logo img {
  width: min(calc(550 / 770 * 100vw), 550px);
}
.ft_logo p {
  font-size: min(8vw, 3.6rem);
  font-weight: bold;
  line-height: 1;
  margin-left: 10px;
}
@media screen and (max-width: 767px) {
  .ft_logo p {
    margin-left: min(2vw, 20px);
    font-size: min(6vw, 3.6rem);
  }
}

.ft_menu {
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.5fr;
  gap: 10px;
}
@media (max-width: 767px) {
  .ft_menu {
    grid-template-columns: 1fr 1fr;
    gap: min(calc(30 / 770 * 100vw), 30px) min(calc(10 / 770 * 100vw), 10px);
  }
}

.ft_menu--block {
  display: flex;
  flex-flow: column;
  gap: 10px;
}
.ft_menu--block li a {
  color: var(--color-text);
  font-size: min(calc(18 / 1920 * 100vw * 4.5 / 3), 18px);
  line-height: 1.7;
}
@media (max-width: 767px) {
  .ft_menu--block li a {
    font-size: min(calc(30 / 770 * 100vw), 30px);
    letter-spacing: 0;
  }
}
.ft_menu--block li a:hover {
  text-decoration: underline;
}

.ft_menu__menu04 {
  margin-top: calc(1.7em + 10px);
}

.copyright {
  font-size: max(1rem, min(calc(16 / 1920 * 100vw * 4.5 / 3), 16px));
  margin: auto;
  padding: 1.2em 0;
  text-align: center;
  color: #fff;
  background: var(--base-color01);
}
@media (max-width: 767px) {
  .copyright {
    padding: 1.2em 0 15vw;
  }
}

/***************************************
-------------- ACCESS --------------
***************************************/
/***************************************
---------------- LAYOUT ----------------
***************************************/
body {
  color: var(--text-color);
}

.container_bg {
  width: 100%;
  max-width: var(--container-width);
  margin: auto;
  background: var(--base-color02);
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto 0;
}

/* 2カラム */
.main_2col {
  display: flex;
  flex-flow: row-reverse;
  justify-content: space-between;
  margin-top: min(calc(80 / 1920 * 100vw * 4.5 / 3), 80px);
}

@media screen and (max-width: 767px) {
  .main_2col {
    flex-flow: column-reverse;
    gap: min(calc(60 / 770 * 100vw), 60px);
  }
}
.main_2col .main_contents {
  width: 100%;
  max-width: 76.6666666667%;
}

@media screen and (max-width: 767px) {
  .main_2col .main_contents {
    width: 100%;
    max-width: 100%;
    padding: 0;
  }
}
.main_contents .container {
  padding: 0;
}

.main_2col .side_contents {
  width: 21.8333333333%;
}

@media screen and (max-width: 767px) {
  .main_2col .side_contents {
    width: 100%;
    max-width: 100%;
  }
}
@media screen and (max-width: 1230px) {
  .container {
    width: 100%;
    padding: 0 15px;
  }
}
@media screen and (max-width: 767px) {
  .container_bg {
    width: 100%;
  }
  .left_contents {
    width: 100%;
    padding: 0;
  }
  #sidebar {
    width: 100%;
  }
}
.strong {
  color: var(--base-color01);
  font-weight: bold;
  font-size: 24px;
  line-height: 1.65;
  letter-spacing: 0.08em;
}

.page_wrap section + section {
  margin-top: 60px;
}

@media (max-width: 767px) {
  .page_wrap section + section {
    margin-top: 40px;
  }
}
/***************************************
-------------- PAGENATION --------------
***************************************/
.pagination {
  width: min(100%, 768px);
  margin: 60px auto;
}

.pagination ul {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.pagination li {
  width: 8%;
  line-height: 1.5;
}

.pagination li:not(:last-of-type) {
  margin-right: 2%;
}

.pagination li a {
  display: flex;
  font-size: 1.44rem;
  color: var(--base-color01);
  border: 1px solid var(--base-color01);
  width: 100%;
  height: 42px;
  align-items: center;
  justify-content: center;
}

.pagination li.active a {
  background: var(--base-color01);
  color: #fff;
}

/***************************************
----------------- UTIL -----------------
***************************************/
/*light*/
.fw-300 {
  font-weight: 300;
}

/*regular*/
.fw-400 {
  font-weight: 400;
}

/*medium*/
.fw-500 {
  font-weight: 500;
}

/*semibold*/
.fw-600 {
  font-weight: 600;
}

/*bold*/
.fw-700 {
  font-weight: 700;
}

/*black*/
.fw-900 {
  font-weight: 900;
}

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

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

.text-left {
  text-align: left;
}

@media (min-width: 768px) {
  .pc-text-center {
    text-align: center;
  }
  .pc-text-right {
    text-align: right;
  }
  .pc-text-left {
    text-align: left;
  }
}
@media (max-width: 767px) {
  .sp-text-center {
    text-align: center;
  }
  .sp-text-right {
    text-align: right;
  }
}
.text-color01 {
  color: var(--base-color01);
}

.text-color02 {
  color: var(--base-color02);
}

.mt-0,
.mt0 {
  margin-top: 0 !important;
}

.mt-1 {
  margin-top: 1em !important;
}

.mt-2 {
  margin-top: 2em !important;
}

.mt-3 {
  margin-top: 3em !important;
}

.mt-4 {
  margin-top: 4em !important;
}

.mt-5 {
  margin-top: 5em !important;
}

.mb-0,
.mb0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: 1em !important;
}

.mb-2 {
  margin-bottom: 2em !important;
}

.mb-3 {
  margin-bottom: 3em !important;
}

.mb-4 {
  margin-bottom: 4em !important;
}

.mb-5 {
  margin-bottom: 5em !important;
}

@media (max-width: 767px) {
  .sp-mt-0 {
    margin-top: 0 !important;
  }
  .sp-mt-1 {
    margin-top: 1em !important;
  }
  .sp-mt-2 {
    margin-top: 2em !important;
  }
  .sp-mt-3 {
    margin-top: 3em !important;
  }
  .sp-mt-4 {
    margin-top: 4em !important;
  }
  .sp-mt-5 {
    margin-top: 5em !important;
  }
  .sp-mb-0 {
    margin-bottom: 0 !important;
  }
  .sp-mb-1 {
    margin-bottom: 1em !important;
  }
  .sp-mb-2 {
    margin-bottom: 2em !important;
  }
  .sp-mb-3 {
    margin-bottom: 3em !important;
  }
  .sp-mb-4 {
    margin-bottom: 4em !important;
  }
  .sp-mb-5 {
    margin-bottom: 5em !important;
  }
}
@media (max-width: 767px) {
  .sp-mt-1 {
    margin-top: 1em;
  }
  .sp-mt-2 {
    margin-top: 2em;
  }
  .sp-mt-3 {
    margin-top: 3em;
  }
  .sp-mt-4 {
    margin-top: 4em;
  }
  .sp-mt-5 {
    margin-top: 5em;
  }
}
.mt0 {
  margin-top: 0 !important;
}

.mb0 {
  margin-bottom: 0 !important;
}

a[href^="tel:"] {
  text-decoration: none;
}

@media (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
    text-decoration: none;
  }
}
@media screen and (min-width: 1025px) {
  .tablet-only {
    display: none;
  }
}
@media (min-width: 768px) {
  .sp-only {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .pc-only {
    display: none;
  }
  .tablet-only {
    display: none;
  }
}
/*-----*ブレイクポイントルール*-----*/
/* スマートフォン：max-width:767px */
/* タブレット：min-width:768px */
/* PC：min-width:1025px */
/***************************************
-------------- WEB FONT --------------
***************************************/
.gf-oswald {
  font-family: "Oswald", sans-serif;
}

/***************************************
-------------- STORE INFO --------------
***************************************/
@media (min-width: 768px) {
  .info_wrap {
    margin-top: min(calc(20 / 1920 * 100vw * 4.5 / 3), 20px);
  }
}
.info_wrap dl {
  display: grid;
  grid-template-columns: min(35%, 9em) 1fr;
  grid-template-rows: auto;
  margin: 0;
}
@media (max-width: 767px) {
  .info_wrap dl {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
}
.info_wrap dl dt {
  padding: 2px 0;
  color: var(--base-color01);
  text-align: left;
  align-items: center;
  font-weight: bold;
}
.info_wrap dl dt:before {
  content: "■";
  display: inline-block;
  font-family: var(--sub-font-family);
  font-size: 0.8em;
}
.info_wrap dl dd {
  padding: 2px 0;
  word-break: break-all;
}
.info_wrap dl dt,
.info_wrap dl dd {
  border-bottom: solid 1px #ccc;
  padding: 0.8em 0;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 767px) {
  .info_wrap dl dt,
  .info_wrap dl dd {
    width: 100%;
    justify-content: flex-start;
  }
  .info_wrap dl dt {
    border-bottom: none;
    padding-bottom: 0;
  }
  .info_wrap dl dt:before {
    margin-right: 0.4em;
    transform: translateY(-0.2em);
  }
  .info_wrap dl dd {
    padding-top: 0.3em;
    padding-left: 0.9em;
  }
}

/***************************************
-------------- NEWS LIST --------------
***************************************/
.news-lists {
  display: grid;
  grid-template-columns: max-content 1fr;
  margin: 0;
}
@media (max-width: 767px) {
  .news-lists {
    grid-template-columns: 1fr;
  }
}
.news-lists dt {
  border-bottom: var(--base-color01) solid 1px;
  padding: 0.5em;
}
@media (max-width: 767px) {
  .news-lists dt {
    border-bottom: none;
    padding: 0.5em 0.5em 0;
  }
}
.news-lists dt i {
  display: inline-block;
  margin-right: 10px;
}
.news-lists dd {
  border-bottom: var(--base-color01) solid 1px;
  padding: 0.5em;
}
.news-lists a {
  color: var(--color-text);
}

/***************カテゴリタグカラー設定****************/
.post_heading {
  display: flex;
  gap: 10px;
}
.post_heading > * {
  margin: 0;
}

.c-categoryTag {
  display: inline-block;
  font-size: max(1rem, min(calc(16 / 1920 * 100vw * 4.5 / 3), 16px));
  text-align: center;
  color: var(--base-color01);
  background: var(--base-color03);
  padding: 0 10px;
}
@media (max-width: 767px) {
  .c-categoryTag {
    font-size: clamp(1.25rem, min(calc(30 / 770 * 100vw), 30px), 30px);
  }
}
.c-categoryTag .category-news {
  background: var(--base-color01);
}
.c-categoryTag .category-recruit {
  background: var(--base-color01);
}
.c-categoryTag .category-other {
  background: var(--base-color01);
}

/***************************************
-------------- ITEM LIST --------------
***************************************/
.item_list .col-3 > a {
  display: block;
  position: relative;
  height: 0;
  padding-top: 70%;
}

.item_list .col-3 > a > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.item_list .cat {
  text-align: center;
  color: #fff;
  background: var(--base-color01);
  font-weight: bold;
}

.item_list .date {
  margin: 0;
  margin-top: 0.5em;
}
.item_list .date i {
  color: var(--base-color01);
}

/***************************************
-------------- GOOGLE MAP --------------
***************************************/
.gmap {
  width: 100%;
  margin: auto;
}
.gmap iframe {
  width: 100%;
  height: min(calc(300 / 1920 * 100vw * 4.5 / 3), 300px);
  vertical-align: bottom;
}
@media (max-width: 767px) {
  .gmap iframe {
    height: min(calc(600 / 770 * 100vw), 600px);
  }
}

/***************************************
-------------- PAGE TOP --------------
***************************************/
#page_top a {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: fixed;
  z-index: 99;
  bottom: 0;
  text-align: center;
  width: 60px;
  height: 60px;
  right: -100%;
}

#side {
  position: fixed;
  right: 0;
  top: 100px;
}

#side ul li + li {
  margin-top: 20px;
}

@media screen and (max-width: 767px) {
  #page_top a {
    bottom: 16vw;
  }
  #side {
    position: fixed;
    right: 0;
    bottom: 0;
    top: auto;
    z-index: 1;
  }
  #side ul {
    display: flex;
    align-items: center;
  }
  #side ul li + li {
    margin: 0;
  }
}
/***************************************
-------------- タブ式コンテンツ -----------
***************************************/
.tabAllWrap .tab {
  width: 100%;
  margin-bottom: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.tabAllWrap .tab .tab__button a {
  display: block;
  position: relative;
  text-align: center;
  text-decoration: none;
  background: white;
  padding: 1.2em 1em;
  font-weight: bold;
  transition: 0.3s;
}

@media (max-width: 767px) {
  .tabAllWrap .tab .tab__button a {
    padding: 0.5em 1em;
    height: 4em;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.tabAllWrap .tab .tab__button a:hover {
  background: var(--base-color01);
  color: white;
}

.tabAllWrap .tab .tab__button.active a {
  background: var(--base-color01);
  color: white;
}

/***************************************
------------ コンテンツスライダー ----------
***************************************/
.parts_content_slider .slider_wrapper {
  margin-left: -10px;
  margin-right: -10px;
  position: relative;
}

.parts_content_slider .slick-slide {
  padding: 0 10px;
}

.parts_content_slider .slick-arrow {
  width: 40px;
  height: 40px;
  background: var(--base-color01);
  position: absolute;
  z-index: 10;
  top: 31%;
  margin: auto;
  cursor: pointer;
  transform: translate(0);
}

.parts_content_slider .slick-arrow:before {
  content: none;
}

@media (min-width: 768px) and (max-width: 1220px) {
  .parts_content_slider .slick-arrow {
    top: 9vw;
  }
}
@media (max-width: 767px) {
  .parts_content_slider .slick-arrow {
    top: 30vw;
  }
}
.parts_content_slider .slick-arrow.slick-prev {
  left: 10px;
  background: url(../img/arrow_bk.svg) no-repeat center;
  transform: scale(-1, 1);
}

.parts_content_slider .slick-arrow.slick-next {
  right: 10px;
  background: url(../img/arrow_bk.svg) no-repeat center;
}

/***************************************
------------- 共通 BTN ------------
***************************************/
.common_btn {
  width: min(93%, 750px);
  margin: 20px auto 0;
  border-radius: 80px;
  color: var(--base-color01);
  background: #ffcc00;
  border: 2px solid #ffcc00;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.common_btn a {
  width: 100%;
  padding: 16px 0;
  font-size: min(3.5vw, 3.5rem);
  font-weight: bold;
  line-height: 1;
  text-align: center;
  position: relative;
  transition: 0.5s;
}
.common_btn a:after {
  content: "";
  display: block;
  width: 20px;
  height: 24px;
  background: url(../img/arrow_br.svg) no-repeat center/contain;
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translate(-50%, -50%);
  transition: 0.5s;
}
.common_btn:hover {
  background: var(--base-color01);
  color: #fff;
  border-radius: 80px;
  border: 2px solid #fff;
  box-sizing: border-box;
}
.common_btn:hover:after {
  background: url(../img/arrow_wh.svg) no-repeat;
}

@media screen and (max-width: 767px) {
  .common_btn {
    width: 90%;
    margin: 10px auto 0;
  }
  .common_btn a {
    padding: 10px;
    font-size: clamp(2rem, 4.75vw, 2.4rem);
  }
  .common_btn a:after {
    width: 12px;
    height: 20px;
  }
}
.button {
  font-size: 1em;
  font-weight: 500;
  color: #fff;
  background: var(--base-color02);
  max-width: max(16em, min(calc(260 / 1920 * 100vw * 4.5 / 3), 260px));
  width: 100%;
  display: inline-block;
  text-align: center;
  padding: 0.95em 0.8em 0.8em;
  position: relative;
  transition: 0.2s;
  border-radius: 5px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .button {
    max-width: min(calc(650 / 770 * 100vw), 650px);
    font-size: clamp(1.25rem, min(calc(32 / 770 * 100vw), 32px), 32px);
  }
}

.button::after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  right: 5%;
  bottom: 0;
  margin: auto;
  width: 6px;
  height: 6px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
  transition: 0.2s;
}

.button:hover {
  opacity: 0.8;
}

.button:hover::after {
  transform: translateX(3px) rotate(45deg);
}

.button.small {
  font-size: 1.8rem;
  padding: 0.2em;
  max-width: 200px;
  width: 100%;
}

.button.small:after {
  right: 8px;
  width: 10px;
  height: 5px;
  border: 5px solid transparent;
  border-left: 10px solid #fff;
}

.button.small:hover::after {
  right: 5px;
}

.button.line_color {
  background: #06c755;
}

/***************************************
-------------- ぱんくず -----------
***************************************/
.breadcrumb {
  margin: 20px 0 0 0;
}
.breadcrumb ul {
  display: flex;
  flex-wrap: wrap;
  font-size: 1.4rem;
}
.breadcrumb ul li a {
  color: var(--base-color01);
  text-decoration: underline;
}
.breadcrumb ul li:not(:first-child):before {
  content: ">";
  margin: 0 0.5em;
}

.faq_wrap {
  display: flex;
  flex-flow: column;
  gap: min(calc(15 / 1920 * 100vw * 4.5 / 3), 15px);
  counter-reset: number;
}
@media (max-width: 767px) {
  .faq_wrap {
    gap: min(calc(20 / 770 * 100vw), 20px);
  }
}

.faq_wrap dl {
  margin: 30px auto;
}

.faq_wrap .question {
  font-size: max(1rem, min(calc(24 / 1920 * 100vw * 4.5 / 3), 24px));
  position: relative;
  font-weight: bold;
  background: var(--base-color01);
  padding: 0.8em 0 0.8em 3.5em;
  margin: 0;
  color: #fff;
  font-family: var(--base-font-family);
}
@media (max-width: 767px) {
  .faq_wrap .question {
    font-size: clamp(1.25rem, min(calc(34 / 770 * 100vw), 34px), 34px);
  }
}

.faq_wrap .answer {
  position: relative;
  padding: 2.2em 0 1.8em 5em;
  border: solid 2px var(--base-color01);
}
@media (max-width: 767px) {
  .faq_wrap .answer {
    padding: 1.2em 0 1.2em 4em;
  }
}

.faq_wrap .question::before {
  display: block;
  width: 2.0833333333em;
  height: 2.0833333333em;
  background: #fff;
  background-size: contain;
  background-position: center;
  position: absolute;
  line-height: 2.0833333333;
  top: 1.55em;
  bottom: auto;
  left: 1.8em;
  transform: translate(-50%, -50%);
  color: var(--base-color01);
  font-weight: bold;
  text-align: center;
  counter-increment: number 1; /* number カウンタの増加数をセット */
  content: "Q" counter(number); /* 表示形式を指定 */
  font-size: max(1rem, min(calc(24 / 1920 * 100vw * 4.5 / 3), 24px));
}
@media (max-width: 767px) {
  .faq_wrap .question::before {
    font-size: clamp(1.25rem, min(calc(30 / 770 * 100vw), 30px), 30px);
    top: 1.7em;
  }
}

.faq_wrap .answer::before {
  content: "A";
  display: block;
  width: 2.0833333333em;
  height: 2.0833333333em;
  line-height: 2.0833333333;
  background: var(--base-color02);
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 2em;
  bottom: auto;
  left: 1.8em;
  transform: translate(-50%, -50%);
  font-size: max(1rem, min(calc(24 / 1920 * 100vw * 4.5 / 3), 24px));
  color: #fff;
  font-weight: bold;
  text-align: center;
}
@media (max-width: 767px) {
  .faq_wrap .answer::before {
    font-size: clamp(1.25rem, min(calc(30 / 770 * 100vw), 30px), 30px);
    top: 2.3em;
  }
}

/*FAQ 開閉式*/
.qa_active .question {
  cursor: pointer;
  padding-right: 40px;
}

.qa_active .question:after {
  content: "+";
  font-family: "Font Awesome 6 Free";
  position: absolute;
  top: 15px;
  right: 15px;
  transition: 0.3s;
}

.qa_active .question.open:after {
  transform: rotate(135deg);
  transition: 0.3s;
}

.qa_active .answer {
  display: none;
}

/***************************************
-------------- SIDE --------------
***************************************/
.side_contents > div:not(:first-child) {
  margin-top: min(calc(20 / 1920 * 100vw * 4.5 / 3), 20px);
}
@media (max-width: 767px) {
  .side_contents > div:not(:first-child) {
    margin-top: min(calc(60 / 770 * 100vw), 60px);
  }
}
.side_contents .h3 {
  margin-bottom: 0;
  font-size: max(1rem, min(calc(28 / 1920 * 100vw * 4.5 / 3), 28px));
}
@media (min-width: 768px) {
  .side_contents .h3 {
    background: url(../img/common/icon_ttl03.png) no-repeat right -1.5em bottom -0.3em /
        min(calc(144 / 1920 * 100vw * 4.5 / 3), 144px),
      url(../img/common/icon_ttl04.png) repeat-y left 0.5em
        center/min(calc(5 / 1920 * 100vw * 4.5 / 3), 5px),
      var(--base-color01);
  }
}
@media (max-width: 767px) {
  .side_contents .h3 {
    font-size: clamp(1.25rem, min(calc(34 / 770 * 100vw), 34px), 34px);
  }
}
.side_contents .ul_item {
  padding: min(calc(10 / 1920 * 100vw * 4.5 / 3), 10px)
    min(calc(5 / 1920 * 100vw * 4.5 / 3), 5px);
  border: solid 2px var(--base-color01);
  border-top: 0;
}
@media (min-width: 768px) {
  .side_contents .ul_item {
    background: var(--base-color03);
  }
}
@media (max-width: 767px) {
  .side_contents .ul_item {
    padding: min(calc(30 / 770 * 100vw), 30px);
    display: flex;
    gap: min(calc(20 / 1920 * 100vw * 4.5 / 3), 20px)
      min(calc(25 / 1920 * 100vw * 4.5 / 3), 25px);
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .side_contents .ul_item li {
    width: calc((100% - min(calc(25 / 1920 * 100vw * 4.5 / 3), 25px)) / 2);
  }
}
@media (min-width: 768px) {
  .side_contents .ul_item li + li {
    margin-top: min(calc(7 / 1920 * 100vw * 4.5 / 3), 7px);
  }
}
@media (max-width: 767px) {
  .side_contents .ul_bnr {
    display: flex;
    gap: min(calc(13 / 770 * 100vw), 13px) min(calc(20 / 770 * 100vw), 20px);
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .side_contents .ul_bnr li {
    width: calc((100% - min(calc(20 / 770 * 100vw), 20px)) / 2);
  }
}
@media (min-width: 768px) {
  .side_contents .ul_bnr li + li {
    margin-top: min(calc(9 / 1920 * 100vw * 4.5 / 3), 9px);
  }
}
.side_contents .side_store .side_wrap {
  padding: min(calc(15 / 1920 * 100vw * 4.5 / 3), 15px)
    min(calc(6 / 1920 * 100vw * 4.5 / 3), 6px);
  background: var(--base-color03);
  border: solid 2px var(--base-color01);
  border-top: 0;
}
@media (max-width: 767px) {
  .side_contents .side_store .side_wrap {
    padding: min(calc(30 / 770 * 100vw), 30px);
  }
}
.side_contents .side_store .h3_side {
  border-bottom: solid 2px var(--base-color01);
  color: var(--base-color01);
  font-weight: bold;
  text-align: center;
  margin: 0.4em 0 0;
  padding-bottom: 0.2em;
  font-size: max(1rem, min(calc(18 / 1920 * 100vw * 4.5 / 3), 18px));
}
@media (max-width: 767px) {
  .side_contents .side_store .h3_side {
    font-size: clamp(1.25rem, min(calc(30 / 770 * 100vw), 30px), 30px);
  }
}
.side_contents .side_store .info_wrap {
  margin: 0;
}
.side_contents .side_store .info_wrap dl {
  display: grid;
  grid-template-columns: 1fr;
}
.side_contents .side_store .info_wrap dl dt {
  border-bottom: none;
  padding-bottom: 0;
  padding-top: 0.6em;
}
.side_contents .side_store .info_wrap dl dd {
  padding: 0;
  border: none;
}
.side_contents .side_store .button {
  background: #b7900e;
}
.side_contents .side_store .button.dedicated_button {
  background: var(--base-color01);
}
.side_contents .side_store .button.instagram_button {
  background: -webkit-linear-gradient(135deg, #ffec42ff 0%, #f13f79 70%);
  background: linear-gradient(135deg, #ffec42ff 0%, #f13f79 70%);
  position: relative;
}

.side_contents .map_button {
  background: var(--base-color01);
  color: #fff;
  font-weight: bold;
  font-size: max(1rem, min(calc(14 / 1920 * 100vw * 4.5 / 3), 14px));
  display: block;
  border-radius: 5px;
  padding: 0.5em;
}
@media (max-width: 767px) {
  .side_contents .map_button {
    font-size: clamp(1.25rem, min(calc(38 / 770 * 100vw), 38px), 38px);
  }
}
.side_contents .map_button .icon_pin {
  position: relative;
  padding-left: 1.8em;
}
.side_contents .map_button .icon_pin:before {
  content: "";
  display: block;
  position: absolute;
  width: 31px;
  height: 44px;
  top: 0;
  bottom: 0;
  right: auto;
  left: 0;
  margin: auto;
  max-width: 0.9285714286em;
  background: url(../img/side/icon_map_wh.png) no-repeat center/contain;
}

.sec_how {
  padding: min(calc(65 / 1920 * 100vw * 4.5 / 3), 65px) 0 0;
}
@media (max-width: 767px) {
  .sec_how {
    padding: min(calc(55 / 770 * 100vw), 55px) 0 0;
  }
}
.sec_how .row {
  gap: min(calc(20 / 1920 * 100vw * 4.5 / 3), 20px);
}
@media (max-width: 767px) {
  .sec_how .row {
    gap: min(calc(20 / 770 * 100vw), 20px);
  }
  .sec_how .row .col-6 {
    grid-column: span 1;
  }
  .sec_how .row .col-12 {
    grid-column: span 2;
  }
}

.sec_access {
  padding: min(calc(65 / 1920 * 100vw * 4.5 / 3), 65px) 0 0;
}
@media (max-width: 767px) {
  .sec_access {
    padding: min(calc(60 / 770 * 100vw), 60px) 0 0;
  }
}
@media (max-width: 767px) {
  .sec_access .row {
    gap: min(calc(40 / 770 * 100vw), 40px);
  }
}
.sec_access .logo_img img {
  width: min(calc(334 / 1920 * 100vw * 4.5 / 3), 334px);
}
@media (max-width: 767px) {
  .sec_access .logo_img img {
    width: min(calc(334 / 770 * 100vw), 334px);
  }
}
.sec_access .bg_wrap {
  background: url(../img/common/bg03.jpg) no-repeat center/cover;
  padding: min(calc(25 / 1920 * 100vw * 4.5 / 3), 25px);
  margin: min(calc(30 / 1920 * 100vw * 4.5 / 3), 30px) 0;
}
@media (max-width: 767px) {
  .sec_access .bg_wrap {
    padding: min(calc(30 / 770 * 100vw), 30px) min(calc(40 / 770 * 100vw), 40px)
      min(calc(40 / 770 * 100vw), 40px);
    margin: min(calc(40 / 770 * 100vw), 40px) 0;
  }
}
.sec_access .bg_wrap .ul_link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: min(calc(40 / 1920 * 100vw * 4.5 / 3), 40px);
}
@media (max-width: 767px) {
  .sec_access .bg_wrap .ul_link {
    gap: min(calc(10 / 770 * 100vw), 10px);
    flex-direction: column;
  }
}
.sec_access .bg_wrap .tel_link .icon_tel {
  color: #fff;
  font-weight: bold;
  font-family: var(--title-font-family);
  font-size: max(1rem, min(calc(50 / 1920 * 100vw * 4.5 / 3), 50px));
  padding-left: 0em;
  position: relative;
}
@media (max-width: 767px) {
  .sec_access .bg_wrap .tel_link .icon_tel {
    font-size: clamp(1.25rem, min(calc(62 / 770 * 100vw), 62px), 62px);
    padding-left: 0.9em;
  }
}
/*
.sec_access .bg_wrap .tel_link .icon_tel:before {
  content: "";
  display: block;
  position: absolute;
  width: 50px;
  height: 41px;
  top: 5px;
  bottom: 0;
  left: 0;
  right: auto;
  margin: auto;
  max-width: 1em;
  background: url(../img/common/icon_tel_wh.png) no-repeat center/contain;
}
  */

.ul_link span {
  font-size: 110%;
}

@media (max-width: 767px) {
  .sec_access .bg_wrap .tel_link:before {
    max-width: 0.7258064516em;
  }
}
.sec_access .bg_wrap .button_link {
  background: linear-gradient(180deg, #97711c 0%, #eac105 50%, #97711c 100%);
  border-radius: 10px;
  padding: 2px;
}
.sec_access .bg_wrap .button_link .button {
  background: linear-gradient(180deg, #dbb31e 0%, #97711c 100%);
  font-size: max(1rem, min(calc(24 / 1920 * 100vw * 4.5 / 3), 24px));
  padding: 0.7em;
  width: min(calc(400 / 1920 * 100vw * 4.5 / 3), 400px);
}
@media (max-width: 767px) {
  .sec_access .bg_wrap .button_link .button {
    width: min(calc(630 / 770 * 100vw), 630px);
    font-size: clamp(1.25rem, min(calc(38 / 770 * 100vw), 38px), 38px);
  }
}
.sec_access .bg_wrap .button_link .button:after {
  border-width: 2px;
}
.sec_access .bg_wrap .button_link .button .icon_mail {
  position: relative;
  padding-left: 1.5em;
}
.sec_access .bg_wrap .button_link .button .icon_mail:before {
  content: "";
  display: block;
  position: absolute;
  width: 51px;
  height: 37px;
  top: 0;
  bottom: 0;
  right: auto;
  left: 0;
  margin: auto;
  max-width: 1.2083333333em;
  background: url(../img/common/icon_mail_wh.png) no-repeat center/contain;
}
@media (max-width: 767px) {
  .sec_access .bg_wrap .button_link .button .icon_mail:before {
    max-width: 1.2105263158em;
  }
}

.info_wrap {
  font-weight: bold;
}

/***************************************
-------------- COMMON --------------
***************************************/
.disc {
  max-height: 6em;
  overflow-y: scroll;
}
