@charset "UTF-8";
@import url("root.css");
/*-----*ブレイクポイントルール*-----*/
/* スマートフォン：max-width:599px */
/* タブレット：min-width:600px */
/* PC：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;
  }
}
.row.row-flex_only {
  display: flex;
  justify-content: center;
}
@media (max-width: 599px) {
  .row {
    display: grid;
    grid-template-columns: auto;
    grid-auto-rows: auto;
    gap: 10px;
  }
}

@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: 5%;
}

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

@media (max-width: 599px) {
  body {
    font-size: var(--base-font-size-sp);
  }
}

a:hover {
  cursor: pointer;
}

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

@media (max-width: 599px) {
  p,
  dt,
  dd,
  li,
  th,
  td,
  strong,
  h4,
  h5,
  h6,
  i,
  em,
  aside,
  article,
  header,
  footer,
  address,
  b {
    font-size: var(--base-font-size-sp);
  }
}

small {
  font-size: calc(var(--base-font-size) * 0.8);
}

@media (max-width: 599px) {
  small {
    font-size: calc(var(--base-font-size-sp) * 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: var(--base-color01);
  font-family: var(--title-font-family);
  font-weight: bold;
}

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

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

.h2 {
  display: block;
  width: 100%;
  font-size: clamp(2.5rem, 3vw, 3.2rem);
  font-weight: 600;
  padding: 0 0.5em;
  font-family: var(--title-font-family);
  border-bottom: solid 2px var(--base-color02);
  position: relative;
  margin-bottom: 1em;
  color: #fff;
  z-index: 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    transparent 12px,
    var(--base-color01) 12px,
    var(--base-color01) 100%
  );
  text-shadow: var(--base-color01) 2px 0px 0px, var(--base-color01) -2px 0px 0px,
    var(--base-color01) 0px -2px 0px, var(--base-color01) 0px 2px 0px,
    var(--base-color01) 2px 2px 0px, var(--base-color01) -2px 2px 0px,
    var(--base-color01) 2px -2px 0px, var(--base-color01) -2px -2px 0px,
    var(--base-color01) 1px 2px 0px, var(--base-color01) -1px 2px 0px,
    var(--base-color01) 1px -2px 0px, var(--base-color01) -1px -2px 0px,
    var(--base-color01) 2px 1px 0px, var(--base-color01) -2px 1px 0px,
    var(--base-color01) 2px -1px 0px, var(--base-color01) -2px -1px 0px,
    var(--base-color01) 1px 1px 0px, var(--base-color01) -1px 1px 0px,
    var(--base-color01) 1px -1px 0px, var(--base-color01) -1px -1px 0px;
}

.h2:after {
  content: "";
  display: block;
  position: absolute;
  width: 240px;
  height: 91px;
  top: auto;
  bottom: 0;
  right: 0;
  margin: auto;
  max-height: calc(100% - 12px);
  background: url(../img/common/icon_ttl.png) no-repeat center right/contain;
  z-index: -1;
}

.h2 .fuchi {
  -webkit-text-stroke: 0;
  text-stroke: 0;
  position: absolute;
  top: 0;
  left: 0;
  color: #fff;
  padding: 0 0.5em;
}

.h2 .sub {
  font-size: 1.28rem;
  padding-left: 1em;
}

body:not(.home) .h2 {
  font-size: clamp(2.2rem, 3vw, 3.2rem);
}

.h3 {
  color: var(--base-color01);
  font-size: clamp(2.2rem, 2vw, 2.8rem);
  font-weight: bold;
  padding-bottom: 15px;
  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 {
  position: relative;
  font-size: clamp(1.8rem, 1.8vw, 2.8rem);
  font-weight: 700;
  letter-spacing: 0;
  padding: 0 0 0 18px;
  margin-bottom: 1em;
  text-align: left;
  font-family: var(--title-font-family);
  line-height: 1.5;
}

.h3_A:before {
  content: "";
  width: 5px;
  height: 80%;
  position: absolute;
  top: 9%;
  bottom: 0;
  left: 0;
  background: var(--base-color01);
  margin: auto;
}

@media (max-width: 599px) {
  .h3_A:before {
    top: 15px;
    left: 5px;
  }
}

.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 -----------------
***************************************/
/*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: 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(--text-color3);
}

.font-min {
  font-family: var(--title-font-family);
}

.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: 100px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
}

header .header_wrap .store_name {
  width: min(38%, 446px);
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
}

.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 {
  font-size: clamp(2rem, 3vw, 3.2rem);
  font-weight: 600;
  text-align: center;
  position: relative;
  padding-left: 1.4em;
}

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

.phone_num p {
  font-size: clamp(1rem, 1.3vw, 1.4rem);
  letter-spacing: 0;
}

.phone_num p span {
  padding: 0 0.5em;
}

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

.hdr_contact_btn a {
  display: block;
  color: #fff;
  background: var(--base-color02);
  border: 1px solid var(--base-color02);
  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);
  color: var(--text-color2);
  position: relative;
}

.hdr_contact_btn a .icon {
  padding-left: 1.5em;
  position: relative;
}

.hdr_contact_btn a .icon::before {
  content: "";
  display: block;
  position: absolute;
  width: 18px;
  height: 18px;
  top: 3px;
  bottom: 0;
  right: auto;
  left: 0;
  margin: auto;
  max-width: 1.2em;
  background: url(../img/common/icon_mail.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 {
    padding: 15px 10px;
    font-size: 1.6rem;
    color: var(--text-color2);
  }
}

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

@media (min-width: 600px) {
  .navigation {
    background: linear-gradient(180deg, #c85d80 0%, #b24066 100%);
  }
}

.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 {
  flex: 1 1 auto;
  height: inherit;
  display: flex;
  align-items: center;
  position: relative;
}

.navigation ul#page_link > li::after {
  content: "";
  display: block;
  width: 2px;
  height: 40px;
  background: #e9a0bc;
}

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

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

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

@media (min-width: 600px) {
  .navigation > ul > li.has-child > a .menu-dropdown-toggle i {
    display: none;
  }
}

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

@media (min-width: 600px) {
  .navigation > ul > li.has-child .menu-dropdown li a {
    font-size: clamp(1.1rem, 1.4vw, 1.5rem) !important;
  }
}

@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:first-child a {
  border-top: solid 1px rgba(255, 255, 255, 0.5);
}

.navigation ul li.has-child .menu-dropdown li:not(:last-child) a {
  border-bottom: solid 1px rgba(255, 255, 255, 0.5);
}

.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: 2px;
    height: 40px;
    background: #e9a0bc;
  }
}

.navigation ul#page_link li a {
  font-family: var(--title-font-family);
  font-weight: 600;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  height: inherit;
  align-items: center;
  justify-content: center;
  transition: 0s;
  color: #fff;
  font-size: clamp(1.1rem, 1.4vw, 1.8rem);
  letter-spacing: 0;
}

.navigation ul#page_link li a > span {
  display: block;
  text-align: center;
}

@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(42%, 193px);
    margin-left: 15px;
  }

  header .header_wrap .store_name img {
    width: 100%;
    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;
    overflow-y: scroll;
    padding-bottom: 20px;
  }

  .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 {
    width: 90%;
    text-align: center;
    max-height: unset;
    margin: 30px auto 20px;
    justify-content: center;
    align-items: center;
  }

  .phone_num a {
    color: #fff;
    font-size: 2rem;
  }
}

/***************************************
---------------- 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: 600px) 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 20px;
  }
}

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

strong {
  font-weight: bold;
  font-size: 1em;
}

.page_wrap {
  padding: 50px 0;
}

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

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

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

/***************************************
-------------- 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: 588px) {
  .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;
  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: 599px) {
  .info_wrap dl dt,
  .info_wrap dl dd {
    font-size: 1.4rem;
    width: 100%;
    padding-left: 10px;
    justify-content: flex-start;
  }

  .info_wrap dl dt {
    display: table;
    width: -moz-fit-content;
    width: fit-content;
    padding: 0 1em;
    min-width: 100px;
  }
}

/***************************************
-------------- 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: 120px 1fr;
}

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

.news-lists dt {
  border-bottom: var(--base-color01) dashed 2px;
  padding: 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: var(--base-color01) dashed 2px;
  margin-left: 4px;
  padding: 0.5em;
  line-height: 1.3;
}

.side_info .news-lists {
  display: grid;
  grid-template-columns: 1fr;
}

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

.icon_cat {
  color: #fff;
  min-width: 80px;
  text-align: center;
  border-radius: 8px;
  background: var(--base-color01);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px 3px 5px;
  line-height: 1;
  font-size: 14px;
  margin-left: 10px;
  margin-right: 15px;
}

.icon_cat.cat-news {
  background: var(--base-color01);
}

.icon_cat.cat-other {
  background: #3a7c23;
}

/***************************************
-------------- 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%;
  -o-object-fit: cover;
  object-fit: cover;
}

.item_list .cat {
  text-align: center;
  color: #fff;
  background: var(--base-color01);
  font-size: 1.6rem;
  font-weight: bold;
  margin: 0 0 0.5em;
}

.item_list .date {
  text-align: left;
  margin: 0;
  font-size: 1.4rem;
  color: var(--base-color01);
  font-weight: 600;
  padding: 0.3em 0;
}

.item_list .text {
  max-height: 130px;
  overflow-y: scroll;
  padding: 0 0.5em;
  margin-bottom: 0.5em;
  font-size: 1.6rem;
  line-height: 1.5;
}

@media (max-width: 599px) {
  .item_list .cat {
    font-size: 1.5rem;
  }

  .item_list .text {
    font-size: 1.5rem;
    line-height: 1.4;
  }
}

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

/***************************************
---------------- FOOTER ----------------
***************************************/
.sec_access {
  padding: 50px 0;
  background: url(../img/common/acccess_bg.jpg) no-repeat center/cover;
}

@media (max-width: 599px) {
  .sec_access {
    padding: 25px 0;
    background: url(../img/common/sp_acccess_bg.jpg) no-repeat center/cover;
  }
}

.sec_access .footer_sub {
  color: #fff;
  font-weight: 600;
  background: var(--base-color01);
  font-size: clamp(1.5rem, 2vw, 2.2rem);
  padding: 0.2em;
}

.sec_access .bg_wrap {
  padding: clamp(17px, 3vw, 35px) clamp(12.5px, 2vw, 30px);
  background: #fff;
}

.sec_access .mail a {
  font-size: clamp(1.6rem, 1rem + 0.901vw, 2.4rem);
  height: 50px;
  line-height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
  background: var(--base-color02);
  color: var(--text-color2);
  font-weight: bold;
  border-radius: 4px;
  border: 2px solid var(--base-color02);
  position: relative;
}

@media (max-width: 599px) {
  .sec_access .mail a {
    height: 40px;
  }
}

.sec_access .mail a:after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  margin: auto;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--text-color2);
  border-right: 2px solid var(--text-color2);
  transform: rotate(45deg);
  transition: 0.2s;
}

.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.png) no-repeat center/contain;
}

footer {
  position: relative;
}

footer .container {
  background-image: none;
}

.footer_bg {
  width: 100%;
  height: inherit;
  background: url(../img/common/footer_bg.jpg) no-repeat center/cover;
  padding: 50px 0 70px;
  display: flex;
  flex-wrap: wrap;
}

.ft_logo {
  margin: 0 auto 100px;
  text-align: center;
}

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

.ft_menu {
  width: 92%;
  margin: auto;
  /*display: flex;*/
  /*flex-wrap: wrap;*/
}

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

@media (max-width: 599px) {
  .ft_menu {
    display: flex;
  }
}

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

@media (max-width: 599px) {
  .ft_menu--block {
    width: 50%;
  }
}

.ft_menu--block li.arrow,
.ft_menu--block li.lower {
  padding-top: 5px;
  padding-bottom: 5px;
}

.ft_menu--block li a {
  font-size: 1.6rem;
  line-height: 1.7;
}

@media (max-width: 599px) {
  .ft_menu--block li a {
    font-size: 1.25rem;
  }
}

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

@media (min-width: 600px) {
  .ft_menu--block .submenu {
    display: flex;
    justify-content: space-between;
    gap: 10px;
  }
}

@media (min-width: 600px) {
  .ft_menu__menu01 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
}

@media (min-width: 600px) {
  .ft_menu__menu04 {
    margin-top: 2.25em;
  }
}

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 {
  margin-left: 1em;
}

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

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

/***************************************
------------- 固定バナー ------------
***************************************/
@media screen and (max-width: 599px) {
  .sp_fixed_bnr {
    position: fixed;
    z-index: 99;
    left: 0;
    bottom: 0;
    display: flex;
    width: 100%;
  }

  .sp_fixed_bnr li {
    flex: 1 1 auto;
  }

  .sp_fixed_bnr .fixed_tel a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: var(--base-color02);
    font-size: clamp(2rem, 4vw, 3.6rem);
    height: 13vw;
    line-height: 13vw;
  }

  .sp_fixed_bnr .fixed_tel a .icon {
    position: relative;
    padding-left: 1.5em;
  }

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

#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 (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: 16vw;
  }

  #page_top a {
    /* bottom: 20vw; */
    bottom: 40px;
  }

  #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;
    max-width: 200px;
    margin-bottom: 20px;
  }

  .ft_logo p {
    margin-left: min(2vw, 20px);
    font-size: min(6vw, 3.6rem);
  }

  .footer_bg {
    padding: 20px 0;
    background: url(../img/common/sp_footer_bg.jpg) no-repeat center/cover;
    width: 100%;
  }
}

/***************************************
------------- 共通 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: 600;
  color: var(--text-color2);
  background: var(--base-color02);
  max-width: 400px;
  width: 100%;
  display: inline-block;
  text-align: center;
  padding: 0.4em;
  position: relative;
  transition: 0.2s;
  border-radius: 8px;
}

.button::after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  margin: auto;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--text-color2);
  border-right: 2px solid var(--text-color2);
  transform: rotate(45deg);
  transition: 0.2s;
}

.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 (min-width: 600px) {
  .grecaptcha-badge {
    bottom: 60px !important;
  }
}

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

/***************************************
------------- table  ------------
***************************************/
.table-dedault {
  width: 100%;
}

.table-dedault tr:first-child th,
.table-dedault tr:first-child td {
  border-top: solid 1px #dddddd;
}

.table-dedault th,
.table-dedault td {
  text-align: left;
  vertical-align: text-top;
  padding: 1em;
  border-right: solid 1px #dddddd;
  border-bottom: solid 1px #dddddd;
}

.table-dedault th {
  background: #fff8ed;
  border-left: solid 1px #dddddd;
}

/***************************************
------------- tel  ------------
***************************************/
.tel a {
  font-size: clamp(3rem, 5vw, 6.2rem);
  color: var(--text-color);
  font-weight: bold;
  position: relative;
  padding-left: 1.2em;
  letter-spacing: 0;
}

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

.tel a::before {
  content: "";
  display: block;
  position: absolute;
  width: 82px;
  height: 46px;
  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;
}

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

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

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

.tips {
  width: 100%;
  padding: 30px 40px;
  border: 4px double var(--base-color01);
}

@media (max-width: 599px) {
  .tips {
    padding: 20px;
  }
}

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

.tips li::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background: var(--base-color01);
  margin-right: 10px;
  margin-left: -20px;
}

.tips li ul li:before {
  background: none;
  content: "・";
}

/*******check********/
.ul_check {
  margin-bottom: 1.5em;
  list-style: none;
}

.ul_check li {
  margin-top: 0;
  line-height: 1.75;
  padding-left: 1.25em;
  position: relative;
}

.ul_check li:last-child {
  margin-bottom: 0;
}

.ul_check li::before,
.ul_check li::after {
  content: "";
  position: absolute;
  letter-spacing: 0;
}

.ul_check li {
  padding-left: 1em;
}

.ul_check li::before {
  border-right: 2px solid var(--base-color01);
  border-bottom: 2px solid var(--base-color01);
  height: 10px;
  left: 5px;
  margin-top: -4px;
  transform: rotate(50deg);
  top: 13px;
  width: 5px;
  z-index: 1;
}
