@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;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .col-12 {
    grid-column: span 12;
    text-align: center;
  }
}

@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 */
  -webkit-text-decoration: underline dotted;
  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);
  }
}
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;
}

#pagetitle h1 {
  font-size: clamp(2.4rem, 3vw, 3.6rem);
  color: var(--text-color);
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  #pagetitle {
    margin-top: 60px;
    height: 100px;
  }
  #pagetitle h1 {
    font-size: 3rem;
  }
}
.h2 {
  font-size: clamp(2rem, 2vw, 2.6rem);
  font-weight: 600;
  color: #fff;
  padding: 10px 15px 10px 43px;
  margin-bottom: 1em;
  line-height: 1.2;
  background: url(../img/common/h2_bg001.png) no-repeat center right -1px / cover;
  border-bottom: 3px solid #ecc029;
  position: relative;
}
@media (max-width: 767px) {
  .h2 {
    background: url(../img/common/h2_bg001.png) no-repeat center right 8% /
      cover;
  }
}
.h2:before {
  content: "";
  position: absolute;
  top: 12px;
  left: 10px;
  width: 24px;
  height: 24px;
  background: url(../img/common/h2_icon001.png) no-repeat center center/cover;
}
.h2 a {
  color: #fff;
}

.h3 {
  color: var(--base-color01);
  font-size: clamp(1.8rem, 1.8vw, 2rem);
  font-weight: 500;
  text-align: center;
  padding-bottom: 8px;
  margin: 40px 0 20px;
  border-bottom: 2px solid var(--base-color01);
}
@media (max-width: 767px) {
  .h3 {
    margin: 30px 0 15px;
  }
}
.h3 a {
  color: var(--base-color01);
}

.h2_A {
  position: relative;
  border-bottom: 5px solid var(--base-color01);
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 700;
  letter-spacing: 0;
  padding: 15px 0;
  margin-bottom: 1em;
  text-align: left;
}

.h2_A::first-letter {
  color: var(--base-color01);
}

@media (max-width: 767px) {
  .h2_A {
    padding: 15px 0 10px;
  }
}
.h2_A:before {
  content: "";
  width: 25px;
  height: 25px;
  position: absolute;
  top: 1.15em;
  left: 20px;
}

@media (max-width: 767px) {
  .h2_A:before {
    width: 16px;
    top: 0.85em;
    left: 15px;
  }
}
.side_contents .h2_A {
  font-size: clamp(1.8rem, 2vw, 2.2rem);
}

.h3_A {
  color: var(--base-color01);
  position: relative;
  font-size: clamp(1.8rem, 1.8vw, 2.8rem);
  font-weight: 700;
  letter-spacing: 0;
  padding: 10px 15px 10px 20px;
  margin-bottom: 1em;
  text-align: left;
}

.h3_A:before {
  content: "";
  width: 5px;
  height: 1.2em;
  position: absolute;
  top: 18px;
  left: 0;
  background: var(--base-color01);
}

@media (max-width: 767px) {
  .h3_A:before {
    top: 15px;
    left: 5px;
  }
}
.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: 105px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
}
header .header_wrap .store_name {
  width: min(40%, 404px);
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  margin-block: 0;
  margin: 0;
  font-size: unset;
}

.header_right {
  display: flex;
  flex-wrap: nowrap;
  width: min(70%, 615px);
  justify-content: flex-end;
  align-items: center;
  gap: 4%;
}

.phone_num {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: flex-end;
}
@media (max-width: 767px) {
  .phone_num {
    justify-content: center;
    align-items: center;
    margin-top: 30px;
  }
}
.phone_num a {
  color: var(--base-color01);
  font-size: clamp(2.4rem, 3vw, 3.5rem);
  font-weight: 500;
  text-align: center;
  line-height: 1;
  font-weight: 900;
  position: relative;
  padding-left: 42px;
}
@media (max-width: 1000px) {
  .phone_num a {
    padding-left: 30px;
  }
}
@media (max-width: 767px) {
  .phone_num a {
    color: #fff;
    padding-left: 0;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .phone_num a i {
    margin-right: 10px;
  }
  .phone_num a img {
    width: 22px;
    height: 19px;
    vertical-align: middle;
    flex-shrink: 0;
  }
}
.phone_num a:before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 35px;
  height: 27px;
  background: url(../img/hdr_tel.png) no-repeat center center/cover;
}
@media (max-width: 1000px) {
  .phone_num a:before {
    top: 3px;
    width: 24px;
    height: calc(24px / 35 * 27);
  }
}
@media (max-width: 767px) {
  .phone_num a:before {
    content: none;
  }
}
.phone_num .desc {
  font-size: clamp(1.6rem, 1.6vw, 2rem);
  font-weight: bold;
}

.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: var(--base-color01);
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 9;
}
.navigation > ul {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  height: 75px;
  max-width: var(--container-width);
  margin: auto;
  list-style: none;
  justify-content: center;
}
.navigation > ul#page_link > li {
  width: 20%;
  height: inherit;
  display: flex;
  align-items: center;
  position: relative;
}
.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: 0px;
    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);
}

.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: clamp(1.4rem, 1.4vw, 2rem);
}

@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: 60px;
    z-index: 999;
    display: flex;
    align-items: center;
  }
  header .header_wrap {
    width: 100%;
  }
  header .header_wrap .store_name {
    width: min(60%, 250px);
    margin: 0;
    margin-left: 20px;
  }
  header .header_wrap .store_name a img {
    display: block;
  }
  .menu-btn {
    position: fixed;
    top: 0;
    right: 0;
    display: flex;
    height: 60px;
    width: 60px;
    justify-content: center;
    align-items: center;
    z-index: 90;
    color: var(--base-color01);
    cursor: pointer;
    background: var(--base-color01);
  }
  .menu-btn span.bar,
  .menu-btn span.bar:before,
  .menu-btn span.bar:after {
    content: "";
    display: block;
    height: 3px;
    width: 20px;
    background-color: #fff;
    position: absolute;
  }
  .menu-btn span.txt {
    position: absolute;
    bottom: 10px;
    color: #fff;
    font-size: 1rem;
    line-height: 1;
    font-weight: bold;
  }
  .menu-btn span.bar:before {
    top: -8px;
  }
  .menu-btn span.bar {
    top: 23px;
  }
  .menu-btn span.bar:after {
    top: 8px;
  }
  #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: 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 {
    width: 90%;
    text-align: center;
    max-height: unset;
    margin: 30px auto;
  }
  .phone_num.sp a {
    color: #fff;
  }
  .phone_num p {
    font-size: 1.6rem;
    background: none;
    margin-top: 20px;
  }
}
/***************************************
---------------- FOOTER ----------------
***************************************/
footer {
  position: relative;
}
footer .container {
  background-image: none;
  padding: 0;
}
@media (max-width: 1040px) {
  footer .container {
    padding: 0 15px;
  }
}
footer .arrow {
  position: relative;
  padding-left: 23px;
}
footer .arrow:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  width: 17px;
  height: 17px;
  background: url(../img/arrow_footer_nav.png) no-repeat center center/cover;
  transition: 0.2s;
}
footer .lower {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
  margin-left: 2rem;
  padding-left: 15px;
}
@media (max-width: 767px) {
  footer .lower {
    margin-left: 1rem;
    padding-left: 15px;
  }
}
footer .lower:before {
  content: "";
  position: absolute;
  top: 3px;
  left: 0;
  width: 10px;
  height: 12px;
  border-left: 2px solid var(--base-color01);
  border-bottom: 2px solid var(--base-color01);
  transition: 0.2s;
}
@media (min-width: 768px) {
  footer .lower a {
    line-height: 1.2 !important;
  }
}
@media (max-width: 767px) {
  footer .lower a {
    font-size: 1.4rem !important;
  }
}
footer .inst {
  margin: 30px 0;
}

.footer_bg {
  width: 100%;
  height: inherit;
  background: #f6f6f6;
  padding: 10px 0 0;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .footer_bg {
    width: 100%;
    background-size: contain;
    background-position: bottom;
  }
}

.ft_logo {
  margin: 0 auto 20px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .ft_logo {
    flex-wrap: nowrap;
  }
}
.ft_logo a {
  width: min(75%, 400px);
}
.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 {
  width: 100%;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr 1fr 1fr;
  gap: 10px;
}
@media (max-width: 767px) {
  .ft_menu {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin: 0 auto 20px;
  }
  .ft_menu .ft_menu__menu01 {
    order: 1;
    width: calc((100% - 15px) / 2);
  }
  .ft_menu .ft_menu__menu02 {
    order: 3;
    width: calc((100% - 15px) / 2);
  }
  .ft_menu .ft_menu__menu03 {
    order: 2;
    width: calc((100% - 15px) / 2);
  }
  .ft_menu .ft_menu__menu04 {
    order: 4;
    width: calc((100% - 15px) / 2);
  }
  .ft_menu .ft_menu__menu05 {
    order: 5;
    width: calc((100% - 15px) / 2);
    margin-top: 3.7rem;
  }
}

.ft_menu--block {
  display: flex;
  flex-flow: column;
  gap: 15px;
}
@media (max-width: 767px) {
  .ft_menu--block {
    gap: 10px;
  }
}
.ft_menu--block li a {
  color: var(--text-color);
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.7;
}
.ft_menu--block li a:hover {
  text-decoration: underline;
}
.ft_menu--block li.inst {
  margin-top: 40px;
}

@media (min-width: 768px) {
  .ft_menu__menu05 {
    margin-top: 2.25em;
  }
}
.copyright {
  font-size: 1.4rem;
  margin: auto;
  padding: 25px 10px;
  text-align: center;
  color: var(--text-color);
  background: #f6f6f6;
}
@media (max-width: 767px) {
  .copyright {
    padding: 15px;
    padding-bottom: 17vw;
  }
}

/***************************************
---------------- 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;
}
.container.container_middle {
  max-width: 1000px;
}

/* 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_2col .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-top: 60px;
}

@media (max-width: 767px) {
  .page_wrap section + section {
    margin-top: 40px;
  }
  .page_wrap {
    padding: 20px 0 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;
}

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

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:767 */
/* タブレット：min-width:768px */
/* PC：min-width:1025px */
/***************************************
-------------- WEB FONT --------------
***************************************/
.gf-oswald {
  font-family: "Oswald", sans-serif;
}

/***************************************
-------------- STORE INFO --------------
***************************************/
.info_wrap {
  background: #fff;
}
.info_wrap dl {
  display: grid;
  grid-template-columns: min(20%, 100px) 1fr;
  grid-template-rows: auto;
  gap: 10px 25px;
}
@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: -moz-fit-content;
  height: fit-content;
  padding: 2px 0;
  text-align: center;
  align-items: center;
  font-weight: bold;
  color: var(--base-color01);
  min-width: 100px;
}
.info_wrap dl dd {
  font-size: 1.6rem;
  padding: 2px 0;
  font-weight: bold;
  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) dotted 1px;
  padding: 0.8em;
}
@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) dotted 1px;
  padding: 0.8em;
  margin-left: 1px;
}
@media (max-width: 767px) {
  .news-lists dd {
    padding: 0.8em 0.3em;
  }
}

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

.item_list .col-3 > a > img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.item_list .date {
  margin: 0;
}

/***************************************
-------------- 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: 10px;
  text-align: center;
  background: url(../img/totop.png) no-repeat center center/cover;
  width: 75px;
  height: 75px;
}

@media (max-width: 767px) {
  #page_top a {
    width: 55px;
    height: 55px;
  }
}
#side {
  position: fixed;
  right: 0;
  top: 100px;
}

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

@media screen and (max-width: 767px) {
  #page_top a {
    bottom: 20vw;
  }
  #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(1.5rem, 1.5vw, 2rem);
  letter-spacing: 0.05em;
  font-weight: 500;
  color: #fff;
  background: linear-gradient(14deg, #0f4ab1 0, #0b0154 100%);
  border-radius: 100vh;
  max-width: 350px;
  width: 100%;
  display: inline-block;
  text-align: center;
  padding: 0.7em;
  position: relative;
  transition: 0.2s;
  border: 3px solid #fff;
  box-shadow: 0 4px 2px rgba(50, 51, 51, 0.35);
}
@media (max-width: 767px) {
  .button {
    max-width: 270px;
    padding: 0.8em 0.2em;
    border: 2px solid #fff;
  }
}

.button::after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  right: 25px;
  bottom: 0;
  margin: auto;
  width: 12px;
  height: 12px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: rotate(45deg);
  transition: 0.2s;
  border-radius: 3px;
}
@media (max-width: 767px) {
  .button::after {
    width: 10px;
    height: 10px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
  }
}

.button:hover {
  opacity: 0.8;
}

.button:hover::after {
  transform: translateX(5px) 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.color {
  background: var(--base-color03);
}

@media (max-width: 767px) {
  img.sp-center {
    display: block;
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .sp-figure-center {
    margin: 0 auto !important;
    display: table;
  }
}

/***************************************
------------- store_info ------------
***************************************/
#store_info {
  padding: 60px 0 50px;
  background: linear-gradient(
      to bottom,
      var(--base-color01) 0,
      var(--base-color01) 70%,
      transparent 70%,
      transparent 100%
    ),
    #f6f6f6;
}
@media (max-width: 767px) {
  #store_info {
    padding: 35px 0 20px;
  }
}
#store_info .container {
  max-width: 920px;
}
@media (min-width: 768px) {
  #store_info .container .row {
    gap: 0 36px;
  }
}
#store_info .sec_access {
  margin-top: 40px;
}
@media (max-width: 1040px) {
  #store_info .sec_access {
    margin-top: 10px;
    padding: 0 11px;
  }
}
#store_info .sec_access .container {
  background: #fff;
  border-radius: 8px;
  padding: 2% 3%;
  box-shadow: 0 8px 2px rgba(55, 65, 79, 0.2);
  border: 4px solid var(--base-color01);
}
@media (max-width: 767px) {
  #store_info .sec_access .container {
    padding: 4% 4% 6%;
  }
}
@media (min-width: 768px) {
  #store_info .sec_access .row {
    gap: 0 10px;
  }
}
#store_info .sec_access .h2_access {
  text-align: center;
  color: var(--base-color01);
  border-bottom: 2px solid #c5cad6;
  padding-bottom: 10px;
  margin-bottom: 20px;
  font-size: clamp(2rem, 2vw, 3.2rem);
}
@media (max-width: 767px) {
  #store_info .sec_access .h2_access {
    padding-bottom: 5px;
    margin-bottom: 10px;
  }
}
#store_info .sec_access .tel {
  margin: 0 0 20px;
}
@media (max-width: 767px) {
  #store_info .sec_access .tel {
    margin: 0 0 10px;
  }
}
#store_info .sec_access .tel .tel_num {
  color: #100169;
  font-weight: bold;
  line-height: 1;
  font-size: clamp(3.6rem, 4.3vw, 4.3rem);
  position: relative;
  padding-left: 41px;
  white-space: nowrap;
}
@media (min-width: 768px) {
  #store_info .sec_access .tel .tel_num {
    pointer-events: none;
    padding-left: 52px;
  }
}
#store_info .sec_access .tel .tel_num:before {
  content: "";
  position: absolute;
  top: 5px;
  bottom: 0;
  right: auto;
  left: 0;
  margin: auto;
  width: 44px;
  height: 33px;
  background: url(../img/icon_tel.png) no-repeat center center/cover;
}
@media (max-width: 767px) {
  #store_info .sec_access .tel .tel_num:before {
    top: 4px;
    left: 0px;
    width: 34px;
    height: calc(34px / 44 * 33);
  }
}
#store_info .sec_access .info_wrap dl {
  margin: 0;
  display: grid;
  grid-template-columns: min(20%, 100px) 1fr;
  grid-template-rows: auto;
  gap: 10px 25px;
}
@media (max-width: 767px) {
  #store_info .sec_access .info_wrap dl {
    grid-template-columns: min(15%, 100px) 1fr;
    gap: 10px 35px;
  }
}
#store_info .sec_access .info_wrap dl dt {
  padding-left: 0;
}
@media (min-width: 768px) {
  #store_info .sec_access .info_wrap dl dt {
    -moz-text-align-last: justify;
    text-align-last: justify;
  }
}
@media (max-width: 767px) {
  #store_info .sec_access .info_wrap dl dt {
    text-align: left;
    font-size: 1.3rem;
  }
}
@media (max-width: 767px) {
  #store_info .sec_access .info_wrap dl dd {
    font-size: 1.4rem;
  }
}
#store_info .sec_access .gmap iframe {
  height: 250px;
}
#store_info .contact_btn {
  margin-top: 25px;
}
@media (max-width: 767px) {
  #store_info .contact_btn {
    margin-top: 20px;
  }
}

/***************************************
------------- Fixed bnr ------------
***************************************/
.side_bnr {
  position: fixed;
  z-index: 9;
  bottom: 20%;
  right: 0;
}
@media (max-width: 767px) {
  .side_bnr {
    display: none;
  }
}
.side_bnr p a {
  display: block;
  color: #fff;
  background: #f18200;
  padding: 10px;
  border-radius: 20px 0 0 20px;
  writing-mode: vertical-rl;
}

.sp_fixed_bnr {
  position: fixed;
  z-index: 9999;
  bottom: -1px;
  left: 0;
  display: flex;
}
@media (min-width: 768px) {
  .sp_fixed_bnr {
    display: none;
  }
}

/*******注意書き********/
.tips_wrap {
  display: block;
  width: 100%;
  padding: 5px;
}

.tips {
  width: 100%;
  padding: 30px 40px;
  border: 4px double var(--base-color01);
  margin-top: 3%;
}
@media (max-width: 767px) {
  .tips {
    padding: 15px 20px;
  }
}

.tips li {
  font-size: 18px;
  padding-left: 20px;
  line-height: 2;
  position: relative;
}

.tips li::before {
  content: "";
  position: absolute;
  top: 13px;
  left: 0;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 8px solid var(--base-color01);
}

.ft_logo {
  background: #100169;
  text-align: center;
  padding-top: 40px;
  margin: 0 auto;
}

.ft_logo img {
  width: 500px;
  max-width: 80%;
}

.copyright {
  background: #100169;
  color: white;
}

@media (max-width: 767px) {
  .ft_logo {
    padding-bottom: 20px;
  }
}

@media (min-width: 768px) {
  .copyright {
    padding-bottom: 40px;
  }
}

/*--------------------------------------
姉妹店セクション
--------------------------------------*/
.related_stores {
  padding: 60px 0;
  background: #f8f8f8;
}

.related_stores .midashi_ttl {
  text-align: center;
  margin-bottom: 10px;
}

.related_stores .ttl_deco h2 {
  font-size: clamp(2.4rem, 3vw, 3.2rem);
  font-weight: bold;
  color: var(--base-color01);
  position: relative;
  display: inline-block;
  padding: 0 30px;
}

.related_stores .ttl_deco h2:before,
.related_stores .ttl_deco h2:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 2px;
  background: var(--base-color01);
}

.related_stores .ttl_deco h2:before {
  left: 0;
}

.related_stores .ttl_deco h2:after {
  right: 0;
}

.store_flexbox {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.store_box {
  flex: 0 1 300px;
  min-width: 330px;
}

.store_box {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.store_box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.store_imgbox {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.store_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.store_box:hover .store_img {
  transform: scale(1.05);
}

.store_h3 {
  font-size: clamp(1.8rem, 2.5vw, 2.2rem);
  font-weight: bold;
  color: var(--base-color01);
  margin: 0;
  padding: 10px 20px;
  line-height: 1.4;
}

.store_txt1 {
  font-size: 1.4rem;
  color: #666;
  padding: 0 20px;
  margin-bottom: 20px;
  line-height: 1.5;
}

.store_topbtn {
  padding: 0 20px 25px;
  text-align: center;
}

.store_button {
  display: inline-block;
  width: 75%;
  background: var(--base-color01);
  color: #fff;
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: bold;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.store_button:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.store_button:hover:before {
  left: 100%;
}

.store_button:hover {
  background: var(--base-color02);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

@media (max-width: 767px) {
  .related_stores {
    padding: 40px 0;
  }

  .related_stores .midashi_ttl {
    margin-bottom: 30px;
  }

  .store_flexbox {
    flex-direction: column;
    gap: 20px;
    padding: 0 20px;
  }

  .store_box {
    flex: none;
    min-width: auto;
  }

  .store_imgbox {
    height: 180px;
  }

  .store_h3 {
    padding: 15px 15px 8px;
  }

  .store_txt1 {
    padding: 0 15px;
    margin-bottom: 15px;
  }

  .store_topbtn {
    padding: 0 15px 20px;
  }

  .store_button {
    padding: 10px 20px;
    font-size: 1.3rem;
  }
}
