@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: 50px 3%;
  }
}
@media (max-width: 599px) {
  .row {
    display: grid;
    grid-template-columns: auto;
    grid-auto-rows: auto;
    gap: 20px;
  }
}
@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: min(5%, 30px);
}

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

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.7;
  height: auto;
  letter-spacing: 0.05em;
  font-weight: 700;
}

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.8rem;
}
@media (max-width: 599px) {
  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: 1.44rem;
}
@media (max-width: 599px) {
  small {
    font-size: 1.28rem;
  }
}

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 right 29%/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
#pagetitle .butterfly_fig {
  position: absolute;
  top: 50px;
  right: max(50% - 500px, 2% + 50px);
}
@media (max-width: 599px) {
  #pagetitle .butterfly_fig {
    top: 20px;
    right: calc(2% + 25px);
  }
}

#pagetitle h1 {
  font-size: 4.6rem;
  color: var(--text-color01);
  font-weight: bold;
  width: 1000px;
  max-width: calc(100% - 30px);
  text-align: left;
}

@media screen and (max-width: 599px) {
  #pagetitle {
    margin-top: 75px;
    height: 100px;
  }
  #pagetitle h1 {
    font-size: 2.8rem;
  }
}
.h2 {
  font-size: clamp(3rem, 4vw, 4.8rem);
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 0.5em;
  text-align: center;
}

.h2 .sub {
  font-size: 0.5em;
  display: block;
  color: var(--base-color01);
  letter-spacing: 0.2em;
}

.h3 {
  color: var(--base-color01);
  font-size: clamp(2rem, 2vw, 2.4rem);
  font-weight: bold;
  margin-bottom: 10px;
  border-bottom: 2px solid var(--base-color01);
}

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

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

@media (max-width: 599px) {
  .h2_A {
    padding: 0 0 5px 25px;
  }
}
.h2_A:before {
  content: "";
  display: block;
  position: absolute;
  width: 25px;
  height: 31px;
  top: 8px;
  bottom: auto;
  right: auto;
  left: 0;
  margin: auto;
  background: url(../img/common/h2_icon.png) no-repeat center/contain;
}

@media (max-width: 599px) {
  .h2_A:before {
    width: 20px;
    height: 25px;
    top: 7px;
  }
}
.h2_step {
  background: var(--base-color01);
  color: #fff;
  font-weight: bold;
  text-align: left;
  padding: 0.5em 0 0.5em 1em;
  border-left: 8px #ffd700 solid;
  font-size: 2.2rem;
  margin-bottom: 0.8em;
}
@media (max-width: 599px) {
  .h2_step {
    font-size: 2rem;
  }
}

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

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

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

@media (max-width: 599px) {
  .h3_A:before {
    left: 5px;
  }
}
.h3_B {
  font-weight: bold;
  font-size: 2.2rem;
  border-bottom: solid 1px;
  display: table;
  margin-bottom: 0.8em;
}
@media (max-width: 599px) {
  .h3_B {
    font-size: 1.8rem;
  }
}

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

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

@media (min-width: 600px) {
  .pc-text-center {
    text-align: center;
  }
  .pc-text-right {
    text-align: right !important;
  }
  .pc-text-left {
    text-align: left !important;
  }
}
@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-large {
  font-size: 1.1em;
}

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

@media (max-width: 599px) {
  header {
    background: var(--body-bg-color);
  }
}
header .header_wrap {
  width: min(96%, var(--container-width));
  height: 80px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
}

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

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

.phone_num {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.phone_num a {
  color: var(--base-color01);
  font-size: clamp(2rem, 3vw, 3.5rem);
  font-weight: 500;
  text-align: center;
  line-height: 1;
}

.phone_num a .fa-phone-volume {
  font-size: clamp(2rem, 3vw, 3rem);
  display: inline-block;
  margin-right: 0.2em;
}

.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: url(../img/common/nav_bg.jpg);
  position: sticky;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.navigation > ul {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  height: 60px;
  max-width: var(--container-width);
  margin: auto;
  list-style: none;
  justify-content: center;
}

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

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

.navigation ul#page_link li a {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  height: inherit;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
  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%;
    height: 75px;
    z-index: 999;
    display: flex;
    align-items: center;
  }
  header .header_wrap {
    width: 100%;
  }
  header .header_wrap .store_name {
    width:min(60%, 147px);
    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: 1000;
    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% - 75px);
    position: fixed;
    top: 75px;
    left: 100%;
    z-index: 80;
    background: var(--base-color01);
    transition: all 0.5s;
  }
  .navigation ul#page_link {
    padding: 10px 25px 0;
    height: auto;
  }
  .navigation ul#page_link > li {
    width: 100%;
    margin: 0;
    border-bottom: solid 1px #fff;
    list-style: none;
  }
  .navigation ul#page_link li:not(:last-of-type)::after {
    content: none;
  }
  .navigation ul#page_link > li a {
    padding: 10px 0;
  }
  .navigation ul#page_link > li a span {
    padding: 0 0 5px;
  }
  .navigation ul#page_link > li:before,
  .navigation ul#page_link > li:last-of-type:after {
    content: none;
  }
  .navigation ul#page_link > li a:hover,
  .navigation ul#page_link > li span:hover {
    background: none;
    opacity: 0.8;
  }
  #menu-btn-check:checked ~ .navigation {
    left: 0; /*メニューを画面内へ*/
  }
  .navigation li.has-child .menu-dropdown {
    position: static;
    background: none;
    width: calc(100% - 2px);
    opacity: 1;
    transition: none;
    display: none;
  }
  .navigation li.has-child {
    flex-wrap: wrap;
  }
  .phone_num.sp {
    width: 90%;
    text-align: center;
    max-height: unset;
    margin: 30px auto;
  }
  .phone_num.sp a {
    color: #fff;
  }
  .phone_num p {
    font-size: 1.6rem;
    background: none;
    margin-top: 20px;
  }
}
/***************************************
---------------- 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 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.8;
    letter-spacing: 0.1em;
  }
}
.page_wrap {
  padding: 50px 0 100px;
  background: url(../img/grass01.png) repeat-x bottom;
}
@media (min-width: 1500px) {
  .page_wrap {
    background: url(../img/grass01.png) repeat-x bottom, url(../img/common/bg_fig01.png) no-repeat right 0 top 150px/264px, url(../img/common/bg_fig02.png) no-repeat left 0 top 700px/305px, url(../img/common/bg_fig03.png) no-repeat right 0 bottom 150px/327px;
  }
}
@media (max-width: 1499px) and (min-width: 1280px) {
  .page_wrap {
    background: url(../img/grass01.png) repeat-x bottom, url(../img/common/bg_fig01.png) no-repeat right 0 top 150px/calc(50% - 500px - 2%), url(../img/common/bg_fig02.png) no-repeat left 0 top 700px/calc(50% - 500px - 2%), url(../img/common/bg_fig03.png) no-repeat right 0 bottom 150px/calc(50% - 500px - 2%);
  }
}
@media (max-width: 599px) {
  .page_wrap {
    padding: 30px 0 60px;
  }
}

.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 dl {
  display: grid;
  grid-template-columns: min(35%, 100px) 1fr;
  grid-template-rows: auto;
  gap: 10px 20px;
}
@media (max-width: 599px) {
  .info_wrap dl {
    grid-template-columns: min(35%, 80px) 1fr;
  }
}

.info_wrap dl dt {
  text-align: left;
  height: -moz-fit-content;
  height: fit-content;
  text-align: left;
  align-items: center;
}

.info_wrap dl dd {
  padding: 2px 0;
  word-break: break-all;
}

/***************************************
-------------- GOOGLE MAP --------------
***************************************/
#store_info .gmap {
  width: 100%;
  margin: auto;
}

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

/***************************************
-------------- NEWS LIST --------------
***************************************/
.news-lists {
  display: grid;
  grid-template-columns: 1fr;
}

.news-lists dt {
  color: var(--base-color01);
  border-bottom: none;
  padding: 0.5em 0.5em 0;
}

.news-lists dt i {
  display: inline-block;
  margin-right: 10px;
}

.news-lists dd {
  border-bottom: var(--base-color01) solid 1px;
  padding: 0 0.5em 0.5em 0.5em;
}

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

.side_info .news-lists dt {
  border-bottom: none;
  padding-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%;
  -o-object-fit: cover;
     object-fit: cover;
}

.item_list .cat {
  text-align: center;
  color: #fff;
  background: var(--base-color01);
  font-size: 14px;
  font-weight: bold;
}

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

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

/***************************************
---------------- FOOTER ----------------
***************************************/
.sec_access {
  padding: min(6%, 100px) 0 min(3%, 50px) 0;
}
.sec_access .h2 {
  display: table;
  padding: 0 2.5em;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  color: #fff;
}
.sec_access .h2 .sub {
  color: #ffd700;
}
.sec_access .h2:before {
  content: "";
  display: block;
  position: absolute;
  width: 88px;
  height: 75px;
  top: 0;
  bottom: 0;
  right: auto;
  left: 0;
  margin: auto;
  max-width: 2em;
  background: url(../img/common/ttl_icon06.png) no-repeat center left/contain;
}
.sec_access .bg_wrap {
  padding: min(30px, 3%);
  background: #fff;
  border-radius: 30px;
}
.sec_access .storename {
  color: var(--base-color01);
  font-weight: bold;
  font-size: 2.8rem;
}

.tel a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 96px;
  text-align: center;
  font-size: clamp(2rem, 2vw, 2.6rem);
  color: #fff;
  font-weight: bold;
  border-radius: 20px;
  position: relative;
  background: #ffa01a;
}
@media (max-width: 599px) {
  .tel a {
    font-size: 2.6rem;
    height: auto;
    padding: 1em;
  }
}

.tel a .icon {
  position: relative;
  padding-top: 28px;
  line-height: 1;
}
@media (max-width: 599px) {
  .tel a .icon {
    padding-top: 0;
    padding-left: 33px;
  }
}
.tel a .icon:before {
  content: "";
  display: block;
  position: absolute;
  width: 26px;
  height: 20px;
  top: 0;
  bottom: auto;
  right: 0;
  left: 0;
  margin: auto;
  background: url(../img/common/tel_icon_wh.png) no-repeat center;
}
@media (max-width: 599px) {
  .tel a .icon:before {
    left: 0;
    right: auto;
    top: 0;
    bottom: 0;
  }
}

@media (min-width: 600px) {
  .tel a {
    pointer-events: none;
  }
}
.mail a {
  font-size: clamp(2rem, 2vw, 2.6rem);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 96px;
  text-align: center;
  color: #fff;
  font-weight: bold;
  border-radius: 20px;
  background: var(--base-color01);
}
@media (max-width: 599px) {
  .mail a {
    font-size: 2.6rem;
    height: auto;
    padding: 1em;
  }
}

.mail a .icon {
  position: relative;
  padding-top: 28px;
  line-height: 1;
}
@media (max-width: 599px) {
  .mail a .icon {
    padding-top: 0;
    padding-left: 28px;
  }
}
.mail a .icon:before {
  content: "";
  display: block;
  position: absolute;
  width: 21px;
  height: 20px;
  top: 0;
  bottom: auto;
  right: 0;
  left: 0;
  margin: auto;
  background: url(../img/common/mail_icon_wh.png) no-repeat center;
}
@media (max-width: 599px) {
  .mail a .icon:before {
    left: 0;
    right: auto;
    top: 0;
    bottom: 0;
  }
}

footer {
  position: relative;
  background: url(../img/common/footer_bg-1.png) no-repeat right bottom, url(../img/common/footer_bg-2.jpg);
}
@media (max-width: 599px) {
  footer {
    background: url(../img/common/footer_bg-2.jpg);
  }
}

footer .container {
  background-image: none;
}

.footer_bg {
  width: 100%;
  height: inherit;
  padding: 60px 0;
  display: flex;
  flex-wrap: wrap;
}

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

@media (min-width: 600px) {
  .ft_menu--block {
    display: flex;
  }
}
@media (min-width: 600px) {
  .ft_menu--block + .ft_menu--block {
    margin-top: 1em;
  }
}

.ft_menu--block li a {
  color: #fff;
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  line-height: 1;
  padding: 0 1em;
  display: block;
  border-right: solid 1px #fff;
}
@media (max-width: 599px) {
  .ft_menu--block li a {
    font-size: 1.6rem;
    text-align: center;
    border: none;
    border-bottom: solid 1px #fff;
    padding: 1em;
  }
}

@media (min-width: 600px) {
  .ft_menu--block li:first-child a {
    border-left: solid 1px #fff;
  }
}
@media (max-width: 599px) {
  .ft_menu--block li:first-child a {
    border-top: solid 1px #fff;
  }
}

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

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

.copyright {
  margin: auto;
  padding: 70px 0 10px;
  text-align: center;
  color: #fff;
}
@media (max-width: 599px) {
  .copyright {
    padding: 30px 0 19vw;
  }
}

.ft_dixed {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: var(--body-bg-color);
  z-index: 75;
  padding: 5px;
}
.ft_dixed ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
}
.ft_dixed ul li {
  width: calc((100% - 5px) / 2);
  text-align: center;
}
.ft_dixed ul li a {
  display: block;
  width: 100%;
  text-align: center;
  font-size: clamp(1.6rem, 4.5vw, 2.2rem);
  color: #fff;
  padding: 0.8em 0;
  border-radius: 0;
}
.ft_dixed ul li a .icon {
  position: relative;
}
.ft_dixed ul li.tel a {
  background: #ffa01a;
}
.ft_dixed ul li.tel a .icon {
  padding-left: 30px;
}
.ft_dixed ul li.tel a .icon:before {
  content: "";
  display: block;
  position: absolute;
  width: 26px;
  height: 20px;
  left: 0;
  right: auto;
  top: 0;
  bottom: 0;
  margin: auto;
  background: url(../img/common/tel_icon_wh.png) no-repeat center;
}
.ft_dixed ul li.mail a {
  background: var(--base-color01);
}
.ft_dixed ul li.mail a .icon {
  padding-left: 28px;
}
.ft_dixed ul li.mail a .icon:before {
  content: "";
  display: block;
  position: absolute;
  width: 21px;
  height: 20px;
  left: 0;
  right: auto;
  top: 0;
  bottom: 0;
  margin: auto;
  background: url(../img/common/mail_icon_wh.png) no-repeat center;
}

#page_top a {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: fixed;
  z-index: 75;
  bottom: 0;
  color: var(--base-color01);
  text-align: center;
  background: #fff;
  width: 60px;
  height: 60px;
  border-radius: 10px;
  padding-top: 15px;
}

#page_top a::before {
  content: "";
  display: block;
  position: absolute;
  top: 20px;
  right: 0;
  left: 0;
  margin: auto;
  width: 10px;
  height: 10px;
  border-left: 2px solid var(--base-color01);
  border-top: 2px solid var(--base-color01);
  transform: translate(0, -50%) rotate(45deg);
  transition: 0.2s;
}

#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 (min-width: 600px) {
  .sp-only {
    display: none !important;
  }
}
/* SP */
@media screen and (max-width: 599px) {
  .pc-only {
    display: none !important;
  }
  .sp-text-center {
    text-align: center;
  }
  .copyright {
    /* padding-bottom: 40vw; */
  }
  #page_top a {
    /* bottom: 20vw; */
    bottom: 20vw;
  }
  #side {
    position: fixed;
    right: 0;
    bottom: 0;
    top: auto;
    z-index: 1;
  }
  #side ul {
    display: flex;
    align-items: center;
  }
  #side ul li + li {
    margin: 0;
  }
  .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: 1.8rem;
  font-weight: 500;
  color: #fff;
  background: var(--base-color01);
  max-width: 300px;
  width: 100%;
  display: inline-block;
  text-align: center;
  padding: 0.8em 0.4em;
  position: relative;
  transition: 0.2s;
  border-radius: 30px;
}
@media (max-width: 599px) {
  .button {
    max-width: 330px;
  }
}

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

.button:hover {
  opacity: 0.8;
}

.button:hover::after {
  transform: translateX(3px) 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);
}

.button.wide {
  max-width: 750px;
}
@media (max-width: 599px) {
  .button.wide {
    max-width: 330px;
  }
}

/***************************************
------------- リキャプチャ ------------
***************************************/
@media (min-width: 600px) {
  .grecaptcha-badge {
    bottom: 60px !important;
  }
}
@media (max-width: 599px) {
  .grecaptcha-badge {
    bottom: 38vw !important;
  }
}
/***************************************
------------- 蝶のデコレーション ------------
***************************************/
.butterfly_fig,
.swallow_fig {
  height: 0;
  width: -moz-fit-content;
  width: fit-content;
  animation: moving-x 7.2s ease-in-out infinite alternate-reverse;
}
@media (max-width: 599px) {
  .butterfly_fig,
  .swallow_fig {
    animation: moving-x-sp 7.2s ease-in-out infinite alternate-reverse;
  }
}

.butterfly_inner,
.swallow_inner {
  width: -moz-fit-content;
  width: fit-content;
  animation: moving-y 1.8s ease-in-out infinite alternate-reverse;
}
@media (max-width: 599px) {
  .butterfly_inner,
  .swallow_inner {
    animation: moving-y-sp 1.8s ease-in-out infinite alternate-reverse;
  }
}

@keyframes moving-x {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(60px);
  }
}
@keyframes moving-x-sp {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(30px);
  }
}
@keyframes moving-y {
  0% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(15px);
  }
}
@keyframes moving-y-sp {
  0% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(10px);
  }
}
/***************************************
------------- table ------------
***************************************/
.table-default {
  width: 100%;
  border-left: solid 1px var(--base-color01);
  border-top: solid 1px var(--base-color01);
}
.table-default th {
  background: #dceabf;
  width: 30%;
}
.table-default td {
  background: var(--body-bg-color);
}
.table-default th,
.table-default td {
  border-right: solid 1px var(--base-color01);
  vertical-align: top;
  padding: 1em;
  border-bottom: solid 1px var(--base-color01);
}
@media (max-width: 599px) {
  .table-default th,
  .table-default td {
    padding: 0.5em;
  }
}
@media (max-width: 599px) {
  .table-default.responsive-stack th, .table-default.responsive-stack td {
    display: block;
    width: 100%;
  }
}

/***************************************
------------- ul ------------
***************************************/
.ul_circle li {
  padding-left: 1.2em;
  position: relative;
}
.ul_circle li:before {
  content: "";
  display: block;
  position: absolute;
  border: solid 3px var(--base-color01);
  border-radius: 50%;
  width: 0.9em;
  height: 0.9em;
  top: 0.5em;
  bottom: auto;
  right: auto;
  left: 0;
  margin: auto;
}/*# sourceMappingURL=common.css.map */





/***************************************
slider img 変更
***************************************/

.case_slider_item figure {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
}
.case_slider_item figure img {
  position: absolute;
  top: 0;
  left: 0;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.case_slider_item figure img:nth-of-type(2){
  z-index: 2;
}