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

/* 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);
  line-height: 1.5;
  height: auto;
  overflow: hidden;
  letter-spacing: 0.05em;
}

a:hover {
  cursor: pointer;
}

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

span,
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.png) no-repeat center / cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

#pagetitle p {
  font-size: 4rem;
  font-weight: bold;
}
@media screen and (max-width: 1024px) {
  #pagetitle {
    margin-top: 80px;
  }
}
@media screen and (max-width: 599px) {
  #pagetitle {
    background: url(../img/common/sp_pagetitle.png) no-repeat center / cover;
    height: 100px;
  }

  #pagetitle p {
    font-size: 2.5rem;
  }
}

.h2 {
  font-size: clamp(3.3rem, 3vw, 4.8rem);
  font-weight: 600;
  color: #555555;
  margin-bottom: 0.4em;
  line-height: 1.2;
  font-family: var(--title-font-family);
}

.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;
  font-size: clamp(2rem, 3vw, 3.2rem);
  font-weight: 700;
  letter-spacing: 0;
  padding: 0 0 0.2em 1em;
  margin-bottom: 1em;
  text-align: left;
  border-bottom: solid 2px var(--base-color01);
}

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

.h2_A:before {
  content: "";
  display: block;
  position: absolute;
  width: 1.4rem;
  height: 1.5em;
  top: auto;
  bottom: 0;
  right: auto;
  left: 0;
  margin: auto;
  background: linear-gradient(180deg, #fb8d9a 0%, #ed3b50 100%);
}

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

  .h2_A:before {
    width: 1rem;
    left: 0;
    height: 3rem;
  }
}

.h2_A .sub {
  color: #ff9baa;
  font-size: clamp(1.6rem, 1.5vw, 2.4rem);
  margin-left: 1rem;
}

.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: 0;
  text-align: left;
}

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

.h3_A a {
  font-size: 1em;
}

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

@media (max-width: 599px) {
  .h3_A:before {
    top: 13px;
    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 -----------------
***************************************/

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

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

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

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

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

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

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

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

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

@media (min-width: 600px) {
  a[href^="tel:"] {
    pointer-events: none;
    text-decoration: none;
  }
}

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

/***************************************
---------------- HEADER ----------------
***************************************/
header {
  width: 100%;
  background: url(../img/common/headrbg.jpg) no-repeat center / cover;
}

header .header_wrap {
  width: min(96%, var(--container-width));
  height: 70px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
}

header .header_wrap h1 {
  width: min(20%, 176px);
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  flex-shrink: 0;
}

header .header_wrap h1 img {
  height: auto;
}

.header_right {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  justify-content: flex-end;
  align-items: center;
  gap: 2.5%;
}
.translate {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5%;
  justify-content: flex-end;
  position: relative;
}
.translate::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 5px;
  border: 6px solid transparent;
  border-top: 7px solid #555;
  transform: translate(-50%,-25%);
}
.translate p {
  margin: 0;
}
.translate select {
  width: min(100%, 180px);
  height: 42px;
  padding: 5px 10px;
  border: 1px solid #000;
  background: #fff;
  line-height: 1.0;
  display: flex;
  align-items: center;
}
.chirashi_btn {
  width: min(50%,210px);
  height: auto;
}
.chirashi_btn a {
  width: inherit;
  height: inherit;
}
.chirashi_btn img {
  aspect-ratio: 5/1;
  object-fit: contain;
}
.phone_num {
  text-align: center;
}

.phone_num a {
  color: var(--text-color);
  font-weight: 500;
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0;
}

.phone_num a .text {
  display: block;
  font-size: 1.17rem;
}

.phone_num .freedial {
  font-size: min(3vw, 2.8rem);
  color: var(--base-color01);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
  line-height: 1.0;
}

.phone_num .freedial img {
  width: min(3vw,40px);
  aspect-ratio: 55/31;
  object-fit: contain;
}

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

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

.hdr_contact_btn a .fa-envelope {
  display: inline-block;
  margin-right: 0.2em;
}

@media (max-width: 599px) {
  .hdr_contact_btn {
    justify-content: center;
    margin-top: 20px;
  }

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

.store_info {
  font-weight: bold;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.store_info th,
.store_info td {
  line-height: 1.3;
  vertical-align: middle;
}

.navigation {
  width: 100%;
  background: linear-gradient(180deg, #ed3b50 0%, #ed3b50 50%, #cf273b 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;
}

@media (min-width: 600px) {
  .navigation ul {
    height: 50px;
  }

  .navigation ul#page_link li {
    width: calc(100% / 7);
    height: inherit;
    display: flex;
    align-items: center;
    position: relative;
    justify-content: center;
  }

  html:not(.touch-enabled) .navigation ul#page_link li.has-child:hover ul {
    opacity: 1;
    visibility: visible;
  }

  html.touch-enabled .navigation ul#page_link li.has-child ul.is-visible {
    opacity: 1;
    visibility: visible;
  }

  .navigation ul#page_link li.has-child > a::after {
    content: "";
    width: 1px;
    height: 1px;
    border-right: 5px solid transparent;
    border-top: 5px solid #fff;
    border-left: 5px solid transparent;
    margin-top: 2px;
    margin-left: 5px;
  }
}

.navigation ul#page_link li.has-child > a {
  opacity: 1;
}
.navigation ul#page_link li::after {
  content: "";
  display: block;
  width: 1px;
  height: 38px;
  background: #f66979;
}
@media (min-width: 600px) {
  .navigation ul#page_link li ul {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 100%;
    width: 100%;
    display: block;
    z-index: 1;
    transition: 0.2s;
  }
}

.navigation ul#page_link li ul li {
  width: 100%;
}

.navigation ul#page_link li ul li:before,
.navigation ul#page_link li ul li:after {
  content: none !important;
}

.navigation ul#page_link li ul li a {
  background: var(--base-color01);
  color: #fff;
}

.navigation ul#page_link li ul li a {
  border-top: solid 1px #f66979;
}
@media (max-width: 599px) {
  .navigation ul#page_link li ul li:last-child a {
    /* border-top: solid 1px #fff; */
  }
}

@media (min-width: 600px) {
  .navigation ul#page_link li:first-child::before {
    content: "";
    display: block;
    width: 1px;
    height: 38px;
    background: #f66979;
  }
}

.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(1rem, 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: 1024px) {
  .header_right.pc {
    display: none;
  }
  .phone_num.sp {
    display: block;
  }
  .translate {
    justify-content: center;
    width: fit-content;
    margin: auto;
    text-align: left;
  }
  .translate::after {
    right: 15px;
  }
  header {
    background: url(../img/common/sp_headrbg.jpg) no-repeat center / cover;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 999;
    display: flex;
    align-items: center;
  }

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

  header .header_wrap h1 {
    width: min(45%, 250px);
    margin-left: 20px;
  }

  .menu-btn {
    position: fixed;
    top: 10px;
    right: 10px;
    display: flex;
    height: 54px;
    width: 54px;
    justify-content: center;
    align-items: center;
    z-index: 90;
    color: var(--base-color01);
    cursor: pointer;
  }

  .menu-btn span.bar,
  .menu-btn span.bar:before,
  .menu-btn span.bar:after {
    content: "";
    display: block;
    height: 3px;
    width: 34px;
    border-radius: 3px;
    background-color: var(--base-color01);
    position: absolute;
  }

  .menu-btn span.txt {
    position: absolute;
    bottom: 0;
    color: var(--base-color01);
    font-size: 1.2rem;
    line-height: 1;
  }

  .menu-btn span.bar:before {
    top: -10px;
  }

  .menu-btn span.bar {
    top: 20px;
  }

  .menu-btn span.bar:after {
    top: 10px;
  }

  #menu-btn-check:checked ~ .menu-btn span.bar {
    background-color: transparent;
  }

  #menu-btn-check:checked ~ .menu-btn span.bar::before {
    top: 0;
    transform: rotate(45deg);
  }

  #menu-btn-check:checked ~ .menu-btn span.bar::after {
    top: 0;
    transform: rotate(-45deg);
  }

  .navigation {
    width: 100%;
    height: calc(100% - 80px);
    position: fixed;
    top: 80px;
    left: 100%;
    z-index: 80;
    background: var(--base-color01);
    transition: all 0.5s;
    overflow-y: auto;
  }

  .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;
    position: relative;
  }
  .navigation ul#page_link > li.has-child::after {
    font-size: 2rem;
    position: absolute;
    top: 0rem;
    right: 0;
    bottom: 0;
    content: "+" !important;
    color: #fff;
    line-height: 43px;
    background: none;
    width: 1em;
    text-align: center;
    z-index: 0;
    pointer-events: none;
  }

  .navigation ul#page_link > li.has-child.is-active::after {
    content: "\2013" !important;
  }

  .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 ul {
    display: none;
    /* position: static;
    background: none;
    width: calc(100% - 2px);
    visibility: hidden;
    opacity: 1;
    transition: none;
    display: none; */
  }
  .navigation li.has-child ul.is-visible {
    display: block;
  }

  .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;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    gap: 5px;
    margin-top: 17px;
  }

  .phone_num p {
    font-size: 1.6rem;
    color: #fff;
    background: none;
  }
}

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

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

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

@media (min-width: 600px) {
  .disc {
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: 0.1em;
  }
}

.page_wrap {
  padding: 50px 0;
}

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

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

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

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

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

/***************************************
-------------- STORE INFO --------------
***************************************/
.info_wrap {
  padding: 10px;
}

.info_wrap dl {
  display: grid;
  grid-template-columns: min(40%, 120px) 1fr;
  grid-template-rows: auto;
  gap: 5px;
}

.info_wrap dl dt {
  font-size: 1.6rem;
  height: fit-content;
  padding: 2px 0;
  text-align: left;
  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.6rem;
    width: 100%;
    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; */
}

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

.news-lists dt {
  padding: 0.5em 0 0 0;
  display: block;
  color: var(--base-color01);
  font-weight: bold;
}

@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: #dddddd solid 1px;
  padding: 0.2em 0 0.5em 0;
  font-weight: bold;
}

/***************************************
-------------- ITEM LIST --------------
***************************************/

@media (max-width: 599px) {
  .item_list {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: auto;
    gap: 15px;
  }
  .item_list .col-3 {
    grid-column: span 6;
  }
}
.item_list .col-3 {
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.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 .txt_wrap {
  padding: 8px;
}
.item_list .txt_wrap .text {
  height: calc(4em * 1.5);
  overflow-y: scroll;
}
.item_list .cat {
  text-align: center;
  color: #fff;
  background: var(--base-color01);
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  font-weight: bold;
  padding: 0.2em 0;
}

/* .item_list .date {
  color: #555;
  text-align: right;
  margin: 0;
} */

.item_list .date {
  display: block;
  color: var(--base-color01);
  font-weight: bold;
}

@media (max-width: 599px) {
  .item_list .date {
    border-bottom: none;
    padding: 0.5em 0.5em 0;
  }
}

.item_list .date i {
  display: inline-block;
  margin-right: 10px;
}

/***************************************
-------------- 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.active a {
  background: var(--base-color01);
  color: #fff;
}

/***************************************
------------- COMMON ------------
***************************************/
.sec_top {
  padding: min(8%, 65px) 0;
}

.sec_bg {
  background: var(--base-color02);
}

/***************************************
---------------- FOOTER ----------------
***************************************/
.sec_access {
}

.sec_access .tel a {
  display: flex;
  width: 100%;
  height: 60px;
  line-height: 53px;
  text-align: center;
  font-size: clamp(1.3rem, 2vw, 2.6rem);
  color: #fff;
  font-weight: bold;
  border-radius: 4px;
  border: 2px solid var(--base-color01);
  position: relative;
  align-items: center;
  justify-content: center;
  gap: 2%;
  background-color: var(--base-color01);
}

.sec_access .tel a img {
  width: min(32px, 16%);
}

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

.sec_access .mail a {
  font-size: clamp(1.3rem, 1.5vw, 2rem);
  height: 60px;
  line-height: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2%;
  width: 100%;
  text-align: center;
  color: #fff;
  font-weight: bold;
  border-radius: 4px;
  border: 2px solid var(--base-color03);
  background: var(--base-color03);
}

.sec_access .mail a i {
  font-size: 1.2em;
}

@media (max-width: 599px) {
  .sec_access .tel a,
  .sec_access .mail a {
    font-size: 2rem;
  }
}

footer {
  position: relative;
}

footer .container {
  background-image: none;
}

.footer_bg {
  width: 100%;
  height: inherit;
  padding: 60px 0;
  display: flex;
  flex-wrap: wrap;
  background: url(../img/common/footer_bg.png) no-repeat right bottom/cover;
}

.ft_logo {
  /* margin: 0 auto 60px; */
  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_logo .ft_txt {
  background: var(--base-color01);
  color: #fff;
  font-weight: bold;
  text-align: center;
  font-size: clamp(1.6rem, 2vw, 1.8rem);
  width: 100%;
  margin: 0.5em auto;
  line-height: 1.8;
  border-radius: 20px;
}

.ft_logo2 {
  text-align: left;
  margin-bottom: 3%;
  width: min(100%, 400px);
}

@media (max-width: 599px) {
  .ft_logo2 {
    text-align: center;
    margin-bottom: 3%;
  }
}

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

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

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

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

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

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

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

footer .lower {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-left: 1em;
}

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

@media (max-width: 599px) {
  .copyright {
    padding-bottom: 60px;
  }
}

#page_top a {
  position: fixed;
  z-index: 99;
}

#page_top a.totop {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  background: var(--base-color01);
  width: 55px;
  height: 55px;
  border: solid 1px #fff;
  border-radius: 5px 0 0 5px;
}

#page_top a:nth-last-child(2) {
  bottom: 70px;
}

#page_top a:last-child {
  bottom: 0;
}

#page_top a.totop::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.totop span {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1;
}

#page_top_sp {
  position: fixed;
  bottom: 0;
  z-index: 1;
  width: 100%;
}

#page_top_sp .btn_wrapper {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 60px;
  height: 60px;
}

#page_top_sp .sp_contact {
  background: #dfa321;
  align-items: center;
  justify-content: center;
  display: flex;
  border-radius: 6px 6px 0 0;
}

#page_top_sp .sp_contact img {
  vertical-align: unset;
  max-width: 90%;
  max-height: 20px;
}

#page_top_sp .sp_tel {
  background: #fff;
  text-align: center;
  align-items: center;
  justify-content: center;
  display: flex;
  border-radius: 6px 6px 0 0;
  line-height: 60px;
  box-shadow: inset 0 0 0 3px rgba(237, 59, 80, 1);
}

#page_top_sp .sp_tel img {
  max-width: 90%;
  max-height: 20px;
  vertical-align: unset;
}

#page_top_sp .sp_contact span:before {
  content: "";
  width: 25px;
  height: 20px;
  background: url(../img/icon_mail.png) no-repeat center / contain;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}

#page_top_sp a.totop {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  background: var(--base-color01);
  width: 60px;
  height: 60px;
  border-radius: 6px 6px 0 0;
}

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

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

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

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

  .footer_bg {
    width: 100%;
    background-size: contain;
    background-position: bottom;
  }
}

/***************************************
------------- 共通 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, 2rem);
  font-weight: 500;
  color: #fff;
  background: var(--base-color01);
  max-width: 400px;
  width: 100%;
  display: inline-block;
  text-align: center;
  padding: 0.4em;
  position: relative;
  transition: 0.2s;
  border-radius: 0.8rem;
}

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

.button:hover {
  opacity: 0.8;
}

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

.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.large {
  max-width: 600px;
}

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

/***************************************
------------- リキャプチャ ------------
***************************************/
@media (min-width: 600px) {
  .grecaptcha-badge {
    bottom: 60px !important;
  }
}

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

/***************************************
------------- FAQパーツ ------------
***************************************/

.faq_wrap:not(:last-child) {
  margin-bottom: 40px;
}
@media (max-width: 599px) {
  .faq_wrap:not(:last-child) {
    margin-bottom: 20px;
  }
}

.faq_wrap dl:nth-of-type(1) {
  margin-top: 0;
}

.faq_wrap dl:last-child {
  margin-bottom: 0;
}

.faq_wrap dl {
  margin: 30px auto;
}
@media (max-width: 599px) {
  .faq_wrap dl {
    margin: 20px auto;
  }
}
.faq_wrap dt {
  font-size: clamp(1.8rem, 1.73rem + 0.3vw, 2rem);
  position: relative;
  font-weight: bold;
  background: var(--base-color01);
  padding: 15px 0 15px 70px;
  color: #fff;
}

.faq_wrap dd {
  position: relative;
  padding: 15px 0 15px 70px;
  background: #fff;
}

.faq_wrap dt::before {
  content: "Q";
  display: block;
  width: 40px;
  height: 40px;
  line-height: 35px;
  background: var(--base-color01);
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 28px;
  bottom: auto;
  left: 30px;
  transform: translate(-50%, -50%);
  font-size: 3.6rem;
  border-radius: 50%;
  color: #fff;
  text-align: center;
}

.faq_wrap dd::before {
  content: "A";
  display: block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  position: absolute;
  top: 28px;
  bottom: auto;
  left: 30px;
  transform: translate(-50%, -50%);
  font-size: 3.6rem;
  border-radius: 50%;
  color: #ff8a88;
  font-weight: bold;
  text-align: center;
}

.faq_wrap dd a {
  color: var(--base-color01);
  text-decoration: underline;
}

@media (max-width: 599px) {
  .faq_wrap dd,
  .faq_wrap dt {
    padding: 15px 15px 15px 50px;
  }
  .faq_wrap dt::before,
  .faq_wrap dd::before {
    font-size: 3rem;
    left: 25px;
  }
}

/***************************************
------------- table ------------
***************************************/

.table-default {
  border-bottom: none;
  width: 100%;
}

.table-default th {
  color: var(--base-color01);
  background: #ffd9dd;
  font-weight: bold;
  text-align: right;
}

.table-default th,
.table-default td {
  vertical-align: text-top;
  font-size: 1.6rem;
  padding: 1em 2em;
  border-bottom: solid 4px #fff;
}

@media (max-width: 599px) {
  .table-default th,
  .table-default td {
    width: 100% !important;
    display: block;
    text-align: left;
    padding: 1em;
  }
}

/*******リスト********/

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

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

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

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

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

.tips li {
  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;
}

/*storeLink*/
.store_link {
  padding-bottom: min(8%, 65px);
}

.store_link_box {
  display: flex;
  gap: 40px;
  .box {
    width: calc(25% - 30px);
    display: flex;
    flex-direction: column;
  }
  .box h3 {
    margin-top: 15px;
    text-align: center;
    border-bottom: 2px solid var(--base-color01);
    padding-bottom: 5px;
    margin-bottom: 10px;
    font-size: clamp(20px, 2vw, 24px);
  }
  .box .txt1 {
    text-align: center;
    margin: 0.5em 0 1em;
  }
  .box .topbtn {
    margin-top: auto;
  }
}

@media (max-width: 1023px) {
  .store_link_box {
    gap: 20px;
    flex-wrap: wrap;
  }
  .store_link_box .box {
    width: calc(50% - 10px);
  }
}
@media (max-width: 599px) {
  .store_link_box .box {
    width: 100%;
  }
}