@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: 25px 10px;
  }
}
@media (max-width: 767px) {
  .row.sp-2col {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
    gap: 25px 10px;
  }
}
@media (min-width: 768px) {
  .row.align-items-center {
    align-items: center;
  }
}
.row + .row {
  margin-top: clamp(20px, 2.6vw, 40px);
}

[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: var(--base-font-size);
  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: var(--sp-base-font-size);
  }
}
figure {
  margin: 0;
  text-align: center;
}
figure:not(:last-child) {
  margin-bottom: 1em;
}

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;
}

/*:where(p,h1,h2,h3,h4,h5,h6) {*/
/*  overflow-wrap: anywhere;*/
/*}*/
/***************************************
----------------- TITLE -----------------
***************************************/
#pagetitle {
  width: 100%;
  height: 200px;
  margin: 0 auto;
  padding: 0;
  background: url(../img/common/pagetitle.jpg) no-repeat center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

#pagetitle h1 {
  font-size: 4rem;
  color: #fff;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  #pagetitle {
    margin-top: 0;
    height: 100px;
  }
  #pagetitle h1 {
    font-size: 3rem;
  }
}
.h2 {
  text-align: center;
  font-size: clamp(24px, 2.7vw, 38px);
  font-weight: 900;
  display: table;
  margin: 0 auto clamp(15px, 1.3vw, 20px);
}
.h2 .en {
  display: block;
  color: var(--base-color01);
  font-family: "Roboto", sans-serif;
  font-size: clamp(14px, 1.24vw, 17px);
  font-weight: 400;
  padding: 10px 10px 0;
  position: relative;
}
.h2 .en:before {
  content: "";
  width: calc(100% + 10px);
  background: var(--text-color);
  height: 1px;
  position: absolute;
  top: 0;
  left: -10px;
  right: -10px;
  margin: auto;
}

.h3 {
  font-size: clamp(17px, 1.6vw, 20px);
  background: #EDEBD4;
  border-radius: 50px;
  text-align: center;
  line-height: 1.4;
  padding: 10px 10px;
  font-weight: 900;
}

.h2_A {
  text-align: center;
  font-weight: 700;
  font-size: clamp(24px, 2.3vw, 28px);
  position: relative;
  padding-bottom: clamp(15px, 1.33vw, 20px);
  margin: 0 auto clamp(25px, 2.66vw, 40px);
}
.h2_A:before, .h2_A:after {
  content: "";
  width: 39px;
  height: 3px;
  position: absolute;
  bottom: 0;
}
.h2_A:before {
  background: #fabd00;
  left: 50%;
}
.h2_A:after {
  background: #ec6200;
  right: 50%;
}
.h2_A.type_left {
  text-align: left;
}
.h2_A.type_left:after {
  left: 0;
}
.h2_A.type_left:before {
  left: 39px;
  right: auto;
}

.h2_B {
  font-size: clamp(20px, 2vw, 24px);
  border-bottom: solid 2px var(--base-color01);
  padding-bottom: 10px;
}

.side_contents .h2_A {
  font-size: clamp(1.8rem, 2vw, 2.2rem);
}

.h3_A {
  color: var(--base-color01);
  text-align: center;
  font-size: clamp(17px, 1.6vw, 20px);
  font-weight: 700;
  margin: 0 auto 10px;
}

.h3_B {
  color: var(--base-color01);
  font-size: clamp(18px, 2.1vw, 24px);
  font-weight: 700;
  margin: 0 auto 10px;
  border-bottom: solid 2px #fabd00;
  line-height: 1.5;
  padding: 10px 0;
  margin: 0 auto 10px;
}

.h3_styled {
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 0.06em;
}

@media (max-width: 767px) {
  .h3_styled {
    font-size: 19px;
  }
}
.h3_styled span {
  font-size: 22px;
  color: #ffaa03;
}

@media (max-width: 767px) {
  .h3_styled span {
    font-size: 19px;
  }
}
/***************************************
---------------- HEADER ----------------
***************************************/
header {
  width: 100%;
  background: #fff;
}
header .header_wrap {
  width: min(96%, var(--container-width));
  height: 80px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
}
@media (max-width : 767px) {
  header .header_wrap {
    height: 60px;
  }
}
header .header_wrap .store_name {
  width: min(30%, 326px);
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  font-size: unset;
  margin: 0;
}

.header_info {
  display: flex;
  align-items: center;
  gap: 0 5px;
}
.header_info li.tel {
  font-weight: 700;
  position: relative;
  padding-left: clamp(26px, 3.385vw, 33px);
  margin-right: 5px;
}
.header_info li.tel:before {
  content: "";
  width: 28px;
  height: 27px;
  position: absolute;
  top: 0;
  left: 0;
  background: url(../img/common/tel_ic.png) no-repeat center/cover;
}
.header_info li.tel span {
  display: block;
}
.header_info li.tel .number {
  color: #D81C24;
  font-size: clamp(23px, 2.994vw, 28px);
  line-height: 1;
}
.header_info li.tel .txt {
  font-size: 14px;
}
.header_info li.hdr_link {
  width: clamp(150px, 19.53vw, 210px);
}

.navigation {
  width: 100%;
  background: #F9DE03;
}
.navigation > ul {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  height: 50px;
  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;
}
.navigation > ul#page_link > li:after {
  content: "";
  display: block;
  width: 2px;
  height: 18px;
  background: var(--text-color);
}
.navigation > ul#page_link > li.has-child {
  position: relative;
}
.navigation > ul#page_link > li.has-child > a {
  position: relative;
  padding-right: 40px;
}
@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:last-child::after {
    display: none;
  }
}
.navigation ul#page_link li a {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  height: inherit;
  align-items: center;
  justify-content: center;
  transition: 0s;
  font-size: clamp(1.2rem, 1.4vw, 1.8rem);
  font-weight: 700;
  padding: 0 27px;
}

@media (max-width: 767px) {
  .navigation ul#page_link li a {
    font-size: 1.6rem;
    color: #fff;
  }
}
.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: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    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: sticky;
    top: 0;
    right: 10px;
    display: flex;
    height: 50px;
    width: 50px;
    margin: 0 0 8px;
    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% - 60px);
    position: fixed;
    top: 60px;
    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;
  }
  .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 20px;
    display: block;
  }
  .phone_num.sp-only a {
    color: #fff;
    font-weight: 700;
    font-size: 24px;
  }
  .phone_num.sp-only a i.fa-solid.fa-phone-volume {
    font-size: 18px;
    margin-right: 10px;
  }
  .phone_num p {
    font-size: 1.6rem;
    background: none;
    margin-top: 20px;
  }
  .hdr_contact_btn {
    text-align: center;
  }
  .hdr_contact_btn a {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    width: 70%;
    border: solid 1px #ddd;
    padding: 10px;
    display: block;
    margin: auto;
  }
}
/***************************************
---------------- FOOTER ----------------
***************************************/
footer {
  position: relative;
  background: var(--base-color01);
  padding: clamp(40px, 7.8vw, 110px) 0 0;
}
footer .ft_menu > ul li a {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
}
footer .ft_menu > ul li a:hover {
  text-decoration: underline;
}
@media (max-width: 767px) {
  footer .ft_menu {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2カラム */
    gap: 20px; /* カラム間の間隔 */
    align-items: start; /* 上揃え */
    grid-auto-flow: row dense; /* 自動的に詰めて配置 */
  }
  footer .ft_menu ul {
    break-inside: avoid; /* 列の途中で分かれないようにする */
  }
}

@media (max-width: 767px) {
  .footer_wrap {
    padding: 40px 0;
  }
  .footer_wrap .container .ftr_logo {
    margin-bottom: 20px;
  }
  .footer_wrap .container .ft_menu > ul li {
    margin: 7px 0;
  }
}
@media (min-width: 768px) {
  footer .ft_menu > ul li:not(:last-child) {
    margin-bottom: 10px;
  }
  .footer_wrap {
    border-top: solid 1px #fff;
    padding: 42px 0;
    gap: 0 2%;
  }
  .footer_wrap .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0 2%;
  }
  .footer_wrap .container .ftr_logo {
    width: 36%;
  }
  .footer_wrap .container .ft_menu {
    width: 62%;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 0 clamp(30px, 2.66vw, 67px);
  }
}
@media (min-width: 768px) and (max-width: 1125px) {
  .footer_wrap .container {
    gap: 0 4%;
  }
  .footer_wrap .container .ftr_logo {
    width: 26%;
  }
  .footer_wrap .container .ft_menu {
    width: 70%;
  }
}
.copyright {
  font-size: 1.5rem;
  margin: auto;
  padding: 19px 10px;
  text-align: center;
  color: #fff;
  background: #333333;
}
@media ( max-width : 767px ) {
  .copyright {
    padding-bottom: 23vw;
  }
}

.sp_fixed_btn {
  position: fixed;
  z-index: 99;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
}
@media ( min-width : 768px ) {
  .sp_fixed_btn {
    display: none;
  }
}
.sp_fixed_btn li {
  
}
.sp_fixed_btn li a {
  
}
.sp_fixed_btn li a img {
  max-width: 100%;
}

/***************************************
-------------- ACCESS --------------
***************************************/
#store_info {
  padding-bottom: clamp(25px, 4.6vw, 65px);
}

.store_info__common_primary {
  padding: clamp(20px, 4.2vw, 60px) clamp(20px, 4.2vw, 50px);
  background: #fff;
  border-radius: clamp(10px, 1.42vw, 20px);
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2);
  margin-bottom: clamp(20px, 3.5vw, 50px);
}
.store_info__common_primary .txt_wrap {
  margin-bottom: 20px;
  font-weight: 500;
}
.store_info__common_primary .txt_wrap p {
  font-size: clamp(15px, 2.2vw, 18px);
  line-height: 1.625;
}
.store_info__common_primary .contact_list {
  margin-bottom: clamp(20px, 2.8vw, 40px);
}
.store_info__common_primary .contact_list li.tel {
  font-weight: 700;
  position: relative;
  padding-left: clamp(34px, 3.55vw, 50px);
}
.store_info__common_primary .contact_list li.tel:before {
  content: "";
  width: clamp(27px, 2.986vw, 42px);
  height: clamp(26px, 2.915vw, 41px);
  position: absolute;
  top: 0.3em;
  left: 0;
  background: url(../img/common/tel_ic.png) no-repeat center/cover;
}
.store_info__common_primary .contact_list li.tel span {
  display: block;
}
.store_info__common_primary .contact_list li.tel .number {
  color: #D81C24;
  font-size: clamp(32px, 3.5vw, 43px);
  line-height: 1;
}
.store_info__common_primary .contact_list li.tel .number a {
  color: #D81C24;
}
.store_info__common_primary .contact_list li.tel .txt {
  font-size: 21px;
}
.store_info__common_primary .contact_list li.hdr_link {
  max-width: 310px;
  width: 100%;
}
.store_info__common_primary .pay_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 40px;
}
.store_info__common_primary .pay_list li {
  display: flex;
  align-items: center;
  gap: 0 15px;
}
.store_info__common_primary .pay_list li .txt {
  font-weight: 900;
  font-size: clamp(15px, 1.42vw, 20px);
}
.store_info__common_secondary .info {
  color: #fff;
}
.store_info__common_secondary .info__company {
  font-weight: 900;
  font-size: clamp(25px, 3.7vw, 42px);
  margin-bottom: 10px;
}
.store_info__common_secondary .info__tel {
  font-weight: 700;
  position: relative;
  padding-left: clamp(34px, 3.128vw, 44px);
  margin-right: 5px;
  margin-bottom: clamp(20px, 1.777vw, 40px);
}
.store_info__common_secondary .info__tel:before {
  content: "";
  width: clamp(26px, 2.56vw, 36px);
  height: clamp(25px, 2.488vw, 35px);
  position: absolute;
  top: 0.25em;
  left: 0;
  background: url(../img/common/tel_ic_wh.png) no-repeat center/cover;
}
.store_info__common_secondary .info__tel .number {
  color: #fff;
  font-size: clamp(32px, 2.844vw, 37px);
  line-height: 1;
}
.store_info__common_secondary .info__tel .number a {
  color: #fff;
}
.store_info__common_secondary .info__tel .txt {
  font-size: 18px;
}
.store_info__common_secondary .info__address .address {
  line-height: 1.6666666667;
  font-size: 18px;
}
@media (max-width: 767px) {
  .store_info__common_primary .contact_list {
    display: table;
    margin: auto;
  }
  .store_info__common_primary .contact_list li.tel {
    margin: 0 auto 10px;
    display: table;
  }
  .store_info__common_primary .pay_list li {
    display: block;
  }
  .store_info__common_primary .pay_list li .txt {
    display: block;
    text-align: center;
    margin-bottom: 5px;
  }
  .store_info__common_secondary .txt_container {
    margin-bottom: 20px;
  }
  .store_info__common_secondary .info__address .img {
    margin-bottom: 10px;
  }
}
@media (min-width: 768px) {
  .store_info__common_primary .txt_wrap {
    text-align: center;
  }
  .store_info__common_primary .txt_wrap p {
    line-height: 2;
  }
  .store_info__common_primary .contact_list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px 10px;
  }
  .store_info__common_primary .contact_list li.tel {
    margin-right: 5px;
  }
  .store_info__common_primary .contact_list li.hdr_link {
    max-width: clamp(180px, 23.4vw, 310px);
  }
  .store_info__common_secondary {
    display: flex;
    flex-wrap: wrap;
    gap: 0 2.5%;
  }
  .store_info__common_secondary .txt_container {
    width: 47%;
  }
  .store_info__common_secondary .img_container {
    width: 50.5%;
  }
}
@media (min-width: 768px) and (max-width: 1125px) {
  .store_info__common_secondary .info {
    color: #fff;
  }
  .store_info__common_secondary .info li.tel .txt {
    display: block;
  }
}
@media (max-width: 1125px) {
  .store_info__common_secondary .info__tel .txt {
    display: block;
  }
  .store_info__common_secondary .info__address span {
    display: block;
  }
}
@media (min-width: 1126px) {
  .store_info__common_secondary .info__address {
    display: flex;
    gap: 0 17px;
  }
  .store_info__common_secondary .info__address .img {
    width: 225px;
  }
  .store_info__common_secondary .info__address .address {
    width: calc(100% - 242px);
    margin-top: -7px;
  }
}

/***************************************
---------------- 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;
  gap: 40px;
}

@media screen and (max-width: 900px) {
  .main_2col {
    flex-flow: column-reverse;
  }
}
.main_2col .main_contents {
  width: 100%;
  max-width: calc(var(--container-width) - 240px - 40px);
}

@media screen and (min-width: 768px) and (max-width: 1230px) {
  .main_2col .main_contents {
    max-width: calc(100% - 240px - 40px);
  }
}
@media screen and (max-width: 900px) {
  .main_2col .main_contents {
    width: 100%;
    max-width: 100%;
    padding: 0;
  }
}
.main_contents .container {
  padding: 0;
}

.main_2col .side_contents {
  width: 240px;
  padding: 50px 0;
}

@media screen and (max-width: 900px) {
  .main_2col .side_contents {
    width: 100%;
    max-width: 100%;
    padding: 0 0 50px;
  }
}
@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;
}

@media (min-width: 768px) {
  .disc {
    font-size: 18px;
    line-height: 1.8;
    letter-spacing: 0.1em;
  }
}
.page_wrap {
  padding: 50px 0;
}

.page_wrap section + section {
  margin: clamp(30px, 5.3vw, 60px) 0;
}

@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 !important;
}

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

@media (min-width: 768px) {
  .pc-text-center {
    text-align: center;
  }
  .pc-text-right {
    text-align: right;
  }
}
@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;
}

.pb0 {
  padding-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 (max-width: 1024px) {
  .pc-only02 {
    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 --------------
***************************************/
.info_wrap {
  background: #fff;
  padding: 10px;
}
.info_wrap dl {
  display: grid;
  grid-template-columns: min(35%, 150px) 1fr;
  grid-template-rows: auto;
  gap: 10px 20px;
}
@media (max-width: 767px) {
  .info_wrap dl {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 5px;
  }
}
.info_wrap dl dt {
  font-size: 1.6rem;
  height: fit-content;
  background: var(--base-color01);
  padding: 2px 0;
  color: #fff;
  text-align: center;
  align-items: center;
}
.info_wrap dl dd {
  font-size: 1.6rem;
  padding: 2px 0;
  word-break: break-all;
}
@media screen and (max-width: 767px) {
  .info_wrap dl dt, .info_wrap dl dd {
    font-size: 1.6rem;
    width: 100%;
    padding-left: 10px;
    justify-content: flex-start;
  }
}

/***************************************
-------------- NEWS LIST --------------
***************************************/
.news-lists {
  font-size: clamp(1.6rem, 1.6vw, 1.8rem);
  display: grid;
  grid-template-columns: max-content 1fr;
}
@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;
}

.side_info .news-lists {
  display: grid;
  grid-template-columns: 1fr;
}
.side_info .news-lists dt {
  border-bottom: none;
  padding-bottom: 0;
}

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

.c-categoryTag {
  display: inline-block;
  font-size: 1.4rem;
  text-align: center;
  border-radius: 5px;
  color: #fff;
  background: var(--base-color01);
  padding: 0 10px;
}
.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-size: 14px;
  font-weight: bold;
}

.item_list .date {
  margin: 0;
}

.item_list .text a {
  text-decoration: underline;
}

/***************************************
-------------- GOOGLE MAP --------------
***************************************/
#store_info .gmap {
  width: 100%;
  margin: auto;
}
#store_info .gmap iframe {
  width: 100%;
  height: 400px;
  vertical-align: bottom;
}

/***************************************
-------------- 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;
  color: #fff;
  text-align: center;
  background: var(--base-color01);
  width: 60px;
  height: 60px;
  border: solid 1px #fff;
  right: -100%;
}

#page_top a::before {
  content: "";
  width: 1px;
  height: 1px;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #fff;
  border-left: 10px solid transparent;
  margin-bottom: 5px;
}

#page_top a span {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1;
}

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

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

@media screen and (max-width: 767px) {
  #page_top a {
    bottom: 22vw;
  }
  #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: clamp(16px, 2.6vw, 22px);
  max-width: 420px;
  background: linear-gradient(to right, #ef5f00 0%, #ff3100 100%);
  color: #fff;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-height: clamp(50px, 6.5vw, 58px);
  line-height: 1.4;
  border-radius: 50px;
  padding-bottom: 3px;
  position: relative;
  font-weight: 700;
}
.button:after {
  content: "";
  width: 10px;
  height: 10px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  bottom: 0;
  right: 25px;
  margin: auto;
}

.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.color {
  background: var(--base-color03);
}

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

/***************************************
-------------- 下層section -----------
***************************************/
.section {
  padding: clamp(20px, 3.5vw, 40px) 0;
}
.section:last-child {
  margin-bottom: 0 !important;
}

.section_bg {
  position: relative;
  z-index: 1;
  margin-top: 0 !important;
}
.section_bg:before {
  content: "";
  width: 200vw;
  height: 100%;
  background-size: auto auto;
  background-color: rgb(251, 251, 230);
  background-image: repeating-linear-gradient(135deg, transparent, transparent 7px, rgb(247, 246, 200) 7px, rgb(247, 246, 200) 14px);
  position: absolute;
  top: 0;
  left: -300%;
  right: -300%;
  margin: auto;
  z-index: -1;
}
.section_bg:first-child {
  padding: 0 0 40px;
}
.section_bg:first-child:before {
  height: calc(100% + 90px);
  top: -90px;
}

.box_bg {
  background: #fff;
  padding: clamp(20px, 3.55vw, 50px);
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.11);
}

@media (min-width: 768px) {
  .section {
    padding: clamp(40px, 7.6vw, 85px) 0;
  }
  .section_bg:first-child {
    padding: 0 0 90px;
  }
}
/***************************************
-------------- 下層ul -----------
***************************************/
.ul_parts {
  display: flex;
  flex-wrap: wrap;
  gap: 0 2%;
}
.ul_parts li {
  font-size: clamp(16px, 1.77vw, 22px);
  border-bottom: solid 1px #e0e0e0;
  font-weight: 500;
  padding: 14px 10px 14px clamp(28px, 2.48vw, 37px);
  line-height: 1.4;
  position: relative;
  width: 49%;
}
.ul_parts li:before {
  content: "";
  width: 12px;
  height: 12px;
  border: solid 4px #f08300;
  border-radius: 50%;
  position: absolute;
  top: 1.3em;
  left: clamp(6px, 0.53vw, 12px);
}
@media (min-width: 768px) {
  .ul_parts li {
    width: 32%;
  }
  .ul_parts li:before {
    top: 1.15em;
  }
}

.detail_img_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 2%;
}
.detail_img_wrap .detail_img_box {
  width: 49%;
}
.detail_img_wrap figure figcaption {
  font-size: clamp(16px, 1.77vw, 20px);
}

.detail_date {
  text-align: right;
  font-size: clamp(16px, 1.77vw, 20px);
}

.page_wrap.detail {
  background: #fafbf6;
  position: relative;
  padding: clamp(15px, 3.5vw, 40px);
  margin-bottom: clamp(40px, 8.88vw, 100px);
}

.box {
  background: #fff;
  padding: 20px;
}

.detail_text {
  margin-top: clamp(10px, 3.5vw, 40px);
}

table.table-default {
  width: 100%;
  border-collapse: collapse;
}
table.table-default th, table.table-default td {
  padding: 10px 10px;
  border: solid 1px #ccc;
}
table.table-default tbody th {
  background: rgba(239, 97, 0, 0.9);
  color: #fff;
}
table.table-default tbody td {
  background: #fff;
}
@media (max-width: 767px) {
  table.table-default th, table.table-default td {
    display: block;
    width: 100% !important;
  }
}

.subtitle {
  display: block;
  text-align: center;
  margin: 0 auto 30px;
  font-size: 1.6rem;
}


/***************************************
-------------- 共通地図about map -----------
***************************************/

.top_about {
  padding: clamp(65px, 9.7vw, 150px) 0;
  position: relative;
  z-index: 0;
}
@media (max-width: 767px) {
  .top_about {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.top_about:before {
  content: "";
  background: url(../img/top_about_bg_sp.jpg) no-repeat center/cover;
  width: 100vw;
  height: 100%;
  position: absolute;
  top: 0;
  left: -300%;
  right: -300%;
  margin: auto;
  z-index: -1;
}
@media (min-width: 768px) {
  .top_about:before {
    background: url(../img/top_about_bg.jpg) no-repeat center/cover;
  }
}
.top_about:after {
  content: "";
  width: 100vw;
  height: 90%;
  background: rgba(255, 255, 255, 0.85);
  position: absolute;
  top: 0;
  bottom: 0;
  left: -300%;
  right: -300%;
  margin: auto;
  z-index: -1;
}
@media (min-width: 768px) {
  .top_about:after {
    height: 75%;
  }
  .top_about .row {
    grid-template-columns: 60.5% 37%;
    gap: 0 2.5%;
  }
  .top_about .row .col {
    display: flex;
    align-items: center;
  }
}