@charset "utf-8";
@import url("root.css");
/*-----*ブレイクポイントルール*-----*/
/* スマートフォン：max-width:599px */
@media (max-width: 599px) {
}

/* タブレット：min-width:600px */
@media (min-width: 600px) {
}

/* PC：min-width:1025px */
@media (min-width: 1025px) {
}

/***************************************
------------- gird -------------
https://web-grid.webjeda.com/
class名をrow colに変更
row-reverseは無いため SP時の表示順を基準にして order-* でPC時の表示順を変える
***************************************/
@media (min-width: 600px) {
  .row {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: auto;
    gap: 20px;
  }
}

@media (max-width: 599px) {
  .row {
    display: grid;
    grid-template-columns: auto;
    grid-auto-rows: auto;
    gap: 15px;
  }
}

@media (max-width: 599px) {
  .row.sp-2col {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
  }
}

@media (min-width: 600px) {
  .row.align-items-center {
    align-items: center;
  }
}

.row + .row {
  margin-top: max(3%, 15px);
}

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

/* 600px */
@media only screen and (min-width: 600px) {
  .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: 600px) {
  .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: 599px) {
  .row.sp-gap-y-20 {
    gap: 20px 10px;
  }

  .row.sp-gap-y-30 {
    gap: 30px 10px;
  }

  .row.sp-gap-y-40 {
    gap: 40px 10px;
  }
}

/* 600px - 800px */
@media only screen and (max-width: 800px) and (min-width: 600px) {
  .col-50 {
    grid-column: span 6;
  }

  .col-25 {
    grid-column: span 3;
  }

  .col-75 {
    grid-column: span 9;
  }

  .col-100 {
    grid-column: span 12;
  }
}

/*-----*RESET CSS*-----*/
*:where(:not(iframe, canvas, img, svg, video):not(svg *)) {
  all: unset;
  display: revert;
}

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

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

img {
  max-width: 100%;
  vertical-align: bottom;
}

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

a:hover {
  cursor: pointer;
}

p,
dt,
dd,
li,
th,
td,
strong,
h4,
h5,
h6,
i,
em,
aside,
article,
header,
footer,
address,
b {
  font-size: 1.6rem;
}

small {
  font-size: calc(1.6rem * 0.8);
}

p {
  margin: 0.5em 0 1em;
}

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

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

a {
  transition: 0.2s;
}

a:hover {
  opacity: 0.8;
}

/***************************************
----------------- 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: 4.6rem;
  color: #000000;
  font-weight: bold;
}

@media screen and (max-width: 599px) {
  #pagetitle {
    margin-top: 65px;
    height: 100px;
  }

  #pagetitle h1 {
    font-size: 3rem;
  }
}

.h2 {
  font-size: clamp(2rem, 3vw, 2.4rem);
  font-weight: 600;
  color: #fff;
  background: var(--base-color01);
  margin-bottom: 1.1em;
  line-height: 1.2;
  font-family: var(--title-font-family);
  padding: 0.7em 0 0.7em 2.2em;
  position: relative;
}
.h2::before {
  content: "";
  display: block;
  position: absolute;
  width: 31px;
  height: 31px;
  top: 0;
  bottom: 0;
  right: auto;
  left: 0.5em;
  margin: auto;
  max-width: 1.3em;
  background: url(../img/common/h2_icon.png) no-repeat center / contain;
}

.h2 .sub {
  font-size: calc(1.6rem * 0.8);
  padding-left: 1em;
}

.h3 {
  color: var(--base-color01);
  font-size: clamp(1.8rem, 2vw, 2.4rem);
  font-weight: bold;
  padding-bottom: 5px;
  margin-bottom: 20px;
  border-bottom: 4px solid 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: 599px) {
  .h2_A {
    padding: 15px 0 10px;
  }
}

.h2_A:before {
  content: "";
  width: 25px;
  height: 25px;
  position: absolute;
  top: 1.15em;
  left: 20px;
}

@media (max-width: 599px) {
  .h2_A:before {
    width: 16px;
    top: 0.85em;
    left: 15px;
  }
}

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

.h3_A {
  background: var(--base-color01);
  color: #fff;
  position: relative;
  font-size: clamp(1.8rem, 1.8vw, 2.4rem);
  font-weight: 700;
  letter-spacing: 0;
  padding: 5px 15px 5px 0.5em;
  margin-bottom: 1em;
  text-align: left;
  border-left: var(--base-color02) 5px solid;
}

@media (max-width: 599px) {
  .h3_A {
  }
}

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

@media (max-width: 599px) {
  .h3_styled {
    font-size: 19px;
  }
}

.h3_styled span {
  font-size: 22px;
  color: #ffaa03;
}

@media (max-width: 599px) {
  .h3_styled span {
    font-size: 19px;
  }
}

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

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

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

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

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

@media (min-width: 600px) {
  .pc--text-center {
    text-align: center;
  }

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

@media (max-width: 599px) {
  .sp-text-center {
    text-align: center;
  }

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

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

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

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

.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: 599px) {
  .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: 599px) {
  .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: 600px) {
  a[href^="tel:"] {
    pointer-events: none;
    text-decoration: none;
  }
}

/***************************************
----------------- ICON -----------------
***************************************/

/***************************************
---------------- HEADER ----------------
***************************************/
header {
  width: 100%;
  background: #fff;
}

header .header_wrap {
  width: min(96%, var(--container-width));
  height: 90px;
  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%, 420px);
  height: calc(100% / 3 * 2);
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
}
header .header_wrap .store_name a {
  aspect-ratio: 20/3;
  object-fit: contain;
  height: 100%;
}
header .header_wrap .store_name img {
  height: 100%;
}

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

.phone_num {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: center;
  flex-direction: column;
  letter-spacing: 0;
  line-height: 1.2;
}

.phone_num a {
  color: var(--base-color01);
  font-size: clamp(1.6rem, 2.75vw, 3rem);
  font-weight: 700;
  text-align: center;
  position: relative;
  padding-left: 1.8em;
}

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

.phone_num p {
  font-size: clamp(1.2rem, 1.3vw, 1.6rem);
  padding: 0;
  margin-top: 0;
}

.hdr_contact_btn {
  display: flex;
  align-items: center;
  margin-top: 5px;
}

.hdr_contact_btn a {
  display: block;
  color: #fff;
  background: var(--base-color01);
  border: 1px solid var(--base-color01);
  width: 10em;
  border-radius: 6px;
  text-align: center;
  padding: 1em 0.5em;
  line-height: 1;
  font-weight: bold;
  font-size: clamp(1.2rem, 1.3vw, 1.6rem);
}
.hdr_contact_btn a .icon {
  padding-left: 2em;
  position: relative;
}

.hdr_contact_btn a .icon::before {
  content: "";
  display: block;
  position: absolute;
  width: 24px;
  height: 24px;
  top: 0;
  bottom: 0;
  right: auto;
  left: 0;
  margin: auto;
  max-width: 1.8em;
  background: url(../img/common/icon_mail_wh.png) no-repeat center/contain;
}

@media (max-width: 599px) {
  .phone_num a:before {
    top: 1px;
    background: url(../img/common/icon_tel_wh.png) no-repeat center/contain;
  }
  .hdr_contact_btn a .icon::before {
    background: url(../img/common/icon_mail.png) no-repeat center/contain;
  }

  .hdr_contact_btn {
    justify-content: center;
    margin-top: 20px;
  }

  .phone_num .hdr_contact_btn a {
    color: var(--base-color01) !important;
    background: #fff;
    padding: 15px 10px;
    font-size: 1.6rem;
  }
}

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

.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 {
  width: calc(100% / 7);
  height: inherit;
  display: flex;
  align-items: center;
  position: relative;
}

.navigation ul#page_link > li::after {
  content: "";
  display: block;
  width: 1px;
  height: 38px;
  background: #fff;
}

.navigation > ul > li.has-child {
  position: relative;
}

.navigation > ul > li.has-child > a {
  position: relative;
  padding-right: 0.5rem;
}

@media (max-width: 599px) {
  .navigation ul li.has_children > a {
    padding-right: 15px;
    position: relative;
    z-index: 1;
  }
}

.navigation > ul > 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 : 599px ) {*/
/*  .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: 600px) {
  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: 599px) {
  .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: 600px) {
  .navigation ul#page_link > li:first-child::before {
    content: "";
    display: block;
    width: 1px;
    height: 38px;
    background: #fff;
  }
}

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

@media (max-width: 599px) {
  .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: 599px) {
  header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    display: flex;
    align-items: center;
  }

  header .header_wrap {
    width: 100%;
    height: 65px;
  }

  header .header_wrap .store_name {
    width: min(60%, 250px);
    margin-left: 20px;
  }
  header .header_wrap .store_name a {
    height: auto;
  }

  .menu-btn {
    position: fixed;
    top: 3px;
    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% - 65px);
    position: fixed;
    top: 65px;
    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 a {
    color: #fff;
    font-size: 2rem;
  }

  .phone_num p {
    background: none;
    margin-top: 20px;
  }
}

/***************************************
---------------- 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) - 270px - 40px);
}

@media screen and (min-width: 600px) and (max-width: 1230px) {
  .main_2col .main_contents {
    max-width: calc(100% - 270px - 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: 270px;
  padding: 100px 0;
}

@media screen and (max-width: 900px) {
  .main_2col .side_contents {
    width: 100%;
    max-width: 100%;
    padding: 0 0 50px;
  }
}
.main_2col .side_contents .side_wrap {
  padding: 18px;
  border: solid 2px var(--base-color01);
  border-top: none;
}
.side_contents > div {
  margin-bottom: 30px;
}

.side_contents .side_bnr li {
  text-align: center;
  margin-bottom: 20px;
}

@media (max-width: 599px) {
  .side_contents .side_bnr li {
    max-width: 80%;
    margin: 0 auto;
  }
  .side_contents .side_bnr li {
    margin-bottom: 15px;
  }
}

@media (min-width: 901px) {
  .side_contents .side_item li + li {
    margin-top: 20px;
  }
}

@media (max-width: 900px) {
  .side_contents .side_item .list_item {
    flex-wrap: wrap;
    display: flex;
    gap: 7px 2%;
  }
  .side_contents .side_item .list_item li {
    width: 49%;
  }
}

.side_contents .side_shop {
  margin-bottom: 30px;
}

@media (max-width: 599px) {
  .side_contents .side_shop {
    margin-bottom: 15px;
  }
}

/* .side_contents .side_shop .side_wrap {
  background: url(../img/bg_shop.jpg) no-repeat center center/cover;
} */

.side_contents .side_shop .side_wrap h3 {
  font-size: clamp(1.6rem, 1.6vw, 1.8rem);
  color: var(--base-color01);
  background: none;
  text-align: center;
  font-weight: bold;
  padding: 0;
  margin: 15px 0 5px;
}

.side_contents .side_shop .side_wrap .address {
  text-align: center;
}
.side_contents .side_shop .side_wrap .map a {
  border-radius: 30px;
  padding: 0.6em 0.4em;
}
.side_contents .side_shop .side_wrap .map a:after {
  content: none;
}
.side_contents .side_shop .side_wrap .map a .icon {
  border-radius: 5px;
  position: relative;
  padding-left: 25px;
}

.side_contents .side_shop .side_wrap .map a .icon:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: auto;
  left: 0;
  margin: auto;
  width: 19px;
  height: 26px;
  background: url(../img/common/map_icon.png) no-repeat center center/cover;
}

.side_contents .side_shop .side_wrap .list_info li:not(:last-child) {
  margin-bottom: 10px;
}

.side_contents .side_shop .side_wrap .list_info li span {
  display: block;
  color: var(--base-color01);
  border-bottom: solid 2px;
  margin-top: 0.5em;
  margin-bottom: 0.3em;
}

.home .side_contents .side_campaign {
  display: none;
}

.side_contents .side_campaign .col-4,
.side_contents .side_campaign .col-8 {
  grid-column: span 12;
}
.side_contents .side_campaign .row {
  gap: 10px;
}
.side_contents .side_campaign .side_wrap {
  background: url(../img/common/side_campaign_bg.jpg) no-repeat center
    bottom/cover;
}

.side_contents .side_campaign .date {
  margin: 0;
}

.side_contents .side_campaign h4 {
  color: var(--base-color01);
  font-weight: bold;
  font-size: 2.2rem;
}

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

@media screen and (min-width: 600px) {
  .sp {
    display: none;
  }
}

@media screen and (max-width: 599px) {
  .container_bg {
    width: 100%;
  }

  .pc {
    display: none;
  }

  .sp {
    display: block;
  }

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

.disc {
  font-weight: 500;
}
@media (min-width: 600px) {
  .disc {
    font-size: clamp(1.6rem, 1.6vw, 1.8rem);
    line-height: 1.6;
  }
}

.page_wrap {
  padding: 100px 0 50px 0;
}

.page_wrap section + section {
  margin-top: 60px;
}
@media (max-width: 900px) {
  .page_wrap {
    padding: 50px 0;
  }
}

@media (max-width: 599px) {
  .page_wrap section + section {
    margin-top: 40px;
  }
}

/***************************************
--------------- HEADLINE ---------------
***************************************/

/***************************************
---------------- RESULT ----------------
***************************************/

.result_img img {
  aspect-ratio: 4/3;
  object-fit: cover;
}

/***************************************
-------------- STORE INFO --------------
***************************************/
.info_wrap {
}

.info_wrap dl dt,
.info_wrap dl dd {
  font-size: 1.7rem;
}

@media (max-width: 588px) {
  .info_wrap dl {
  }
}

.info_wrap dl dt {
  color: var(--base-color01);
  padding: 2px 0;
  text-align: left;
  font-weight: bold;
}

.info_wrap dl dd {
  font-size: 1.6rem;
  padding: 2px 0;
  word-break: break-all;
  margin-bottom: 0.5em;
}

@media screen and (max-width: 599px) {
  .info_wrap dl dt,
  .info_wrap dl dd {
    font-size: 1.6rem;
    width: 100%;
    padding-left: 10px;
    justify-content: flex-start;
  }
}

/***************************************
-------------- GOOGLE MAP --------------
***************************************/

#store_info .gmap {
  width: 100%;
  margin: auto;
}

#store_info .gmap iframe {
  width: 100%;
  height: 400px;
  vertical-align: bottom;
}

/***************************************
-------------- NEWS LIST --------------
***************************************/

.news-lists {
  font-size: clamp(1.6rem, 1.6vw, 1.8rem);
  display: grid;
  grid-template-columns: 140px 1fr;

  gap: 0 4px;
}

@media (max-width: 599px) {
  .news-lists {
    grid-template-columns: 1fr;
  }
}

.news-lists dt {
  border-bottom: #aaaaaa dashed 2px;
  padding: 0 0.5em 0.5em 0.5em;
  margin-bottom: 0.5em;
}

@media (max-width: 599px) {
  .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: #aaaaaa dashed 2px;
  padding: 0 0.5em 0.5em 0.5em;
  margin-bottom: 0.5em;
}
.side_info {
  margin-bottom: 30px;
}

.side_info .news-lists {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-height: 290px;
  overflow-y: scroll;
}

.side_info .news-lists dt {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

/***************************************
-------------- 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: clamp(1.4rem, 1.6vw, 1.8rem);
  font-weight: bold;
  padding: 0.2em 0;
}

@media (max-width: 599px) {
  .item_list .cat {
    margin: 0.5em 0;
  }
}

.item_list .date {
  color: var(--base-color01);
  font-size: clamp(1.6rem, 1.6vw, 1.8rem);
  text-align: right;
  font-weight: bold;
  margin: 0;
}

.item_list .disc {
  height: 130px;
  overflow-y: scroll;
}

/***************************************
-------------- PAGENATION --------------
***************************************/

.pagination {
  width: min(100%, 600px);
  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: calc(1.8rem * 0.8);
  color: var(--base-color01);
  border: 1px solid var(--base-color01);
  width: 100%;
  height: 42px;
  align-items: center;
  justify-content: center;
}

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

/***************************************
---------------- FOOTER ----------------
***************************************/

.sec_access {
  padding: min(3%, 30px) min(2%, 20px);
  background: var(--footer-bg01);
}
.sec_access .h2_custome {
  font-size: clamp(1.8rem, 3vw, 3.6rem);
  color: var(--base-color01);
  font-weight: bold;
  border-bottom: solid 2px;
  margin-bottom: 20px;
}

.sec_access .tel a {
  font-size: clamp(3rem, 3vw, 4.8rem);
  color: var(--text-color);
  font-weight: bold;
  position: relative;
  padding-left: 1.2em;
  letter-spacing: 0;
  line-height: 43px;
}

@media (max-width: 767px) {
  .sec_access .tel a {
    font-size: clamp(3.7rem, 9.8vw, 4.8rem);
  }
}

.sec_access .tel a::before {
  content: "";
  display: block;
  position: absolute;
  width: 55px;
  height: 35px;
  top: 5px;
  bottom: 0;
  right: auto;
  left: 0;
  margin: auto;
  max-width: 1.1em;
  background: url(../img/common/icon_tel.png) no-repeat center / contain;
}

.sec_access .tel a i {
  font-size: clamp(2rem, 1.789rem + 0.901vw, 2.6rem);
  padding-right: 0.2em;
}

@media (min-width: 600px) {
  .sec_access .tel a {
    pointer-events: none;
  }
}

.sec_access .mail a {
  font-size: clamp(2rem, 1.789rem + 0.901vw, 2.4rem);
  height: 50px;
  line-height: 46px;
  display: block;
  width: 100%;
  text-align: center;
  background: var(--base-color01);
  color: #fff;
  font-weight: bold;
  border-radius: 4px;
  border: 2px solid var(--base-color01);
}
.sec_access .mail a .icon {
  position: relative;
  padding-left: 1.5em;
}
.sec_access .mail a .icon:before {
  content: "";
  display: block;
  position: absolute;
  width: 24px;
  height: 24px;
  top: 5px;
  bottom: 0;
  right: auto;
  left: 0;
  margin: auto;
  max-width: 1em;
  background: url(../img/common/icon_mail_wh.png) no-repeat center / contain;
}

footer {
  position: relative;
}

footer .container {
  background-image: none;
}

.ft_logo {
  background: var(--base-color01);
  padding: 0;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ft_logo a {
  height: calc(100% / 3 * 2);
  aspect-ratio: 20/3;
  object-fit: contain;
}

.footer_bg {
  width: 100%;
  height: inherit;
  background: var(--footer-bg02);
  padding: 50px 0;
  display: flex;
  flex-wrap: wrap;
}

.ft_menu {
  width: 100%;
  margin: auto;
}

.ft_menu {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.5fr;
  gap: 10px;
}

@media (max-width: 599px) {
  .ft_logo {
    height: min(90px, 15vw);
  }
  .ft_menu {
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
}

.ft_menu--block {
  display: flex;
  flex-flow: column;
  gap: 10px;
}

.ft_menu--block li a {
  color: var(--text-color);
  font-size: 1.6rem;
  line-height: 1.7;
}

.ft_menu--block li a:hover {
  text-decoration: underline;
}

@media (min-width: 600px) {
  .ft_menu__menu04 {
  }
}

footer .arrow {
  position: relative;
  padding-left: 15px;
}

footer .arrow::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  box-sizing: border-box;
  width: 8px;
  height: 5px;
  border: 5px solid transparent;
  border-left: 8px solid var(--text-color);
}

footer .lower {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-left: 1em;
}
footer .ft_menu__menu04 {
  margin-top: calc(1em * 1.5 * 1.1 + 10px);
}
@media (max-width: 599px) {
  footer .lower {
    position: relative;
  }
  footer .lower:before {
    content: "";
    display: block;
    position: absolute;
    width: 0.7em;
    height: 0.7em;
    top: 3px;
    bottom: auto;
    right: auto;
    left: -1em;
    margin: auto;
    border-left: 1px #333 solid;
    border-bottom: 1px #333 solid;
  }
  footer .ft_menu__menu01,
  footer .ft_menu__menu02 {
    padding-bottom: 20px;
    border-bottom: solid 1px #333;
    margin-bottom: 20px;
  }
}

.copyright {
  font-size: 1.4rem;
  margin: auto;
  padding: 10px;
  text-align: center;
  color: #fff;
  background: var(--base-color01);
}

#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;
  border-radius: 8px;
}

#page_top a::before {
  content: "";
  width: 1px;
  height: 1px;
  border-right: 8px solid transparent;
  border-bottom: 10px solid #fff;
  border-left: 8px 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;
}

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

/* PC */
@media screen and (min-width: 1025px) {
  .tablet-only {
    display: none;
  }
}

@media (min-width: 600px) {
  .pc-text-center {
    text-align: center;
  }
}

/* TBのみ */
@media (max-width: 1024px) and (min-width: 600px) {
}

@media (min-width: 600px) {
  .sp-only {
    display: none;
  }
}

/* SP */
@media screen and (max-width: 599px) {
  .pc-only {
    display: none;
  }

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

  .copyright {
    padding-bottom: 15vw;
  }

  #page_top a {
    bottom: 14vw;
  }

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

  .tablet-only {
    display: none;
  }
}

@media screen and (max-width: 599px) {
/*  .ft_logo {
    flex-wrap: nowrap;
    padding: 30px;
  }
*/
  .ft_logo p {
    margin-left: min(2vw, 20px);
    font-size: min(6vw, 3.6rem);
  }

  .footer_bg {
    width: 100%;
    /* background-size: contain;
    background-position: bottom; */
    padding: 30px 0;
  }
}

/***************************************
------------- 共通 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;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-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 a:hover:after {
  background: url(../img/arrow_wh.svg) no-repeat;
}

@media screen and (max-width: 599px) {
  .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.6rem, 1.6vw, 1.8rem);
  font-weight: 500;
  color: #fff;
  background: var(--base-color02);
  max-width: 280px;
  width: 100%;
  display: inline-block;
  text-align: center;
  padding: 0.4em;
  position: relative;
  transition: 0.2s;
  border-radius: 4px;
}

.button::after {
  transition: 0.2s;
  display: block;
  content: "";
  position: absolute;
  top: 0;
  right: 15px;
  bottom: 0;
  margin: auto;
  box-sizing: border-box;
  width: 8px;
  height: 10px;
  border: 6px solid transparent;
  border-left: 8px solid #fff;
}

.button:hover {
  opacity: 0.8;
}

.button:hover::after {
  right: 13px;
}

.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);
}
.button.wide {
  max-width: 500px;
}
/***************************************
------------- リキャプチャ ------------
***************************************/
@media (min-width: 600px) {
  .grecaptcha-badge {
    bottom: 60px !important;
  }
}

@media (max-width: 599px) {
  .grecaptcha-badge {
    bottom: 38vw !important;
  }
}

/***************************************
------------- 固定バナー ------------
***************************************/
@media screen and (max-width: 599px) {
  .sp_fixed_bnr {
    padding: 5px;
    gap: 5px;
    background: #f5f6ff;
    position: fixed;
    z-index: 99;
    left: 0;
    bottom: 0;
    display: flex;
    width: 100%;
  }
  .sp_fixed_bnr li {
    width: 50%;
  }
  .sp_fixed_bnr .fixed_tel a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: var(--base-color02);
    height: 13vw;
    line-height: 13vw;
  }
  .sp_fixed_bnr .fixed_tel a .icon {
    position: relative;
    padding-left: 1.5em;
    font-size: clamp(1.6rem, 3vw, 3.6rem);
  }
  .sp_fixed_bnr .fixed_tel a .icon:before {
    content: "";
    display: block;
    position: absolute;
    width: 50px;
    height: 33px;
    top: 0;
    bottom: 0;
    right: auto;
    left: 0;
    margin: auto;
    max-width: 1.4em;
    background: url(../img/common/icon_tel_wh.png) no-repeat center/contain;
  }

  .sp_fixed_bnr .fixed_contact a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: var(--base-color01);
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    height: 13vw;
  }
  .sp_fixed_bnr .fixed_contact a .icon {
    position: relative;
    padding-left: 1.3em;
  }
  .sp_fixed_bnr .fixed_contact a .icon:before {
    content: "";
    display: block;
    position: absolute;
    width: 24px;
    height: 24px;
    top: 0;
    bottom: 0;
    right: auto;
    left: 0;
    margin: auto;
    max-width: 1em;
    background: url(../img/common/icon_mail_wh.png) no-repeat center/contain;
  }
}

/***************************************
------------- Q&A ------------
***************************************/
.faq_item {
  background: #ffffff;
  padding: 0 min(5%, 20px);
}
.faq_wrap:not(:last-child) {
  margin-bottom: 40px;
}

.faq_wrap {
  display: flex;
  flex-flow: column;
  gap: 20px;
}

.question {
  font-size: clamp(1.8rem, 1.73rem + 0.3vw, 2.4rem);
  position: relative;
  font-weight: bold;
  padding: 15px 0 15px 70px;
  color: var(--base-color01);
  border-bottom: solid 2px;
}
@media (max-width: 599px) {
  .question {
    padding: 10px 0 5px 30px;
    border-bottom: solid 1px;
  }
}
.answer {
  position: relative;
  padding: 15px 0 15px 70px;
  background: #fff;
}
@media (max-width: 599px) {
  .answer {
    position: relative;
    padding: 5px 0 10px 30px;
    background: #fff;
  }
}
.question::before {
  content: "Q.";
  display: block;
  width: 40px;
  height: 40px;
  line-height: 35px;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 32px;
  bottom: auto;
  left: 30px;
  transform: translate(-50%, -50%);
  font-size: 2.4rem;
  border-radius: 50%;
  color: var(--base-color01);
  font-weight: bolder;
  text-align: center;
}
@media (max-width: 599px) {
  .question::before {
    font-size: 2.2rem;
    left: 12px;
    top: 23px;
  }
}
.answer::before {
  content: "A.";
  display: block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 28px;
  bottom: auto;
  left: 30px;
  transform: translate(-50%, -50%);
  font-size: 2.4rem;
  border-radius: 50%;
  color: var(--base-color02);
  font-weight: bold;
  text-align: center;
}
@media (max-width: 599px) {
  .answer::before {
    font-size: 2.2rem;
    left: 12px;
    top: 17px;
  }
}
/*FAQ 開閉式*/
.qa_active .question {
}

/* .qa_active .question:after {
  content: "\2b";
  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; */
}

.itemName {
  background: var(--base-color01);
  color: #fff;
  font-weight: bold;
  font-size: clamp(1.2rem, 1.5vw, 1.8rem);
  text-align: right;
  display: block;
  padding: 0.2em 0.5em;
}
