@charset "UTF-8";
@import url("root.css");

* {
  font-family: "Noto Sans JP", sans-serif !important;
  font-optical-sizing: auto;
}

/*-----*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 {
  width: 100%;
  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;
  pointer-events: none;
  position: relative;
}
body * {
  pointer-events: auto;
}
p,
dt,
dd,
li,
th,
td,
strong,
h4,
h5,
h6,
i,
em,
aside,
article,
header,
footer,
address,
b,
div {
  font-size: 1.8rem;
}
small {
  font-size: 1.4rem;
}
a {
  transition: 0.2s;
}
a:hover {
  opacity: 0.8;
  cursor: pointer;
}

/*-----*BASE CSS*-----*/
.container {
  width: var(--container-width);
  margin: auto;
}
.flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

@media (min-width: 600px) {
  .sp {
    display: none !important;
  }
}
@media (max-width: 599.98px) {
  .pc {
    display: none !important;
  }
}

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

/***************************************
------------- NAVIGATION -------------
***************************************/

p.store_name {
  font-size: min(4.6vw, 2.8rem);
  color: var(--base-color01);
  font-weight: 700;
  line-height: 1;
  margin: 0 0 0 2%;
}

.navigation {
  width: 100%;
  background: var(--base-color01);
}

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

.navigation ul#page_link > li .navi_home {
  width: 30px;
  height: auto;
  aspect-ratio: 30/27;
  object-fit: cover;
}

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

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

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

.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: 999;
}
@media (min-width: 600px) {
  .navigation > ul > li.has-child .menu-dropdown .itemlist {
    width: 300%;
    display: flex;
    flex-wrap: wrap;
    margin-left: -100%;
    ul {
      width: calc(100% / 3);
    }
  }
}
@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: 1px;
    height: 38px;
    background: #9d9ddd;
  }
}
.navigation ul#page_link li a {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  height: inherit;
  align-items: center;
  justify-content: center;
  transition: 0s;
  color: #fff;
  font-size: clamp(1.1rem, 1.4vw, 1.6rem);
}

@media (max-width: 599px) {
  .navigation ul#page_link li a {
    font-size: 1.6rem;
  }
}
.navigation ul#page_link li a:hover {
  opacity: 1;
}

#menu-btn-check,
.menu-btn {
  display: none;
}

@media (max-width: 599px) {
  header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    display: flex;
    align-items: center;
    height: 65px;
    background: var(--body-bg-color);
  }
  header .header_wrap .store_name {
    width: min(50%, 250px);
    margin-left: 20px;
  }
  .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: 100px;
  }
  .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: 15px 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;
  }
}

/***************************************
------------- 見出しタイトル -------------
***************************************/
.midashi_ttl {
  width: 100%;
  margin: clamp(50px, 10vw, 100px) auto clamp(35px, 7vw, 70px);
}
span.sub {
  display: block;
  width: 100%;
  margin: 0 auto 10px;
  text-align: center;
  line-height: 1;
  color: var(--base-color01);
  letter-spacing: 0.05em;
}
.ttl_deco {
  width: 100%;
  height: clamp(40px, 10vw, 60px);
  background: url(../img/midashi_bg.webp) repeat-x;
  background-size: contain;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  h2 {
    font-size: clamp(2.4rem, 4.5vw, 3.2rem);
    color: #fff;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
    position: relative;
    z-index: 2;
  }
}
.ttl_deco::before {
  content: "";
  position: absolute;
  display: block;
  background: url(../img/midashi_pattern.webp) no-repeat;
  background-position: top center;
  background-size: contain;
  width: clamp(50%, 80%, 512px);
  height: auto;
  aspect-ratio: 512/87;
  object-fit: cover;
  top: 50%;
  left: 48.5%;
  transform: translate(-50%, -50%);
}

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

/***************************************
------------- LINK BUTTON -------------
***************************************/

.link_area {
  width: 100%;
  margin: clamp(25px, 5vw, 50px) auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  a {
    width: clamp(300px, 50vw, 400px);
    background-image: linear-gradient(90deg, var(--base-color01) 30%, #4545b0);
    color: #fff;
    font-size: 1.8rem;
    padding: 15px 30px 15px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    position: relative;
  }
  a::after {
    content: "";
    position: absolute;
    display: block;
    background: url(../img/svg/icn_arw_right_gd.svg) no-repeat;
    background-position: top center;
    background-size: contain;
    width: 15px;
    height: auto;
    aspect-ratio: 10/14;
    object-fit: cover;
    top: 50%;
    right: min(10%, 20px);
    transform: translate(-50%, -50%);
  }
}
/***************************************
------------- NEWS ICON -------------
***************************************/
.date {
  font-size: 1em;
  color: var(--base-color01);
  display: flex;
  align-items: center;
}
.date::before {
  content: "";
  display: block;
  background: url(../img/svg/icn_cal_bl.svg) no-repeat;
  background-position: top center;
  background-size: contain;
  width: 15px;
  height: auto;
  margin-right: 10px;
  aspect-ratio: 1/1;
  object-fit: cover;
}
span.cate {
  width: 140px;
  font-size: 0.75em;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  border-radius: 4px;
  line-height: 1;
  margin-left: 1rem;
  margin-right: 1rem;
}
span.cate.cate01 {
  background: #100169;
} /*お知らせ 紺*/
span.cate.cate02 {
  background: #2a7a1a;
} /*ブログ 緑*/
span.cate.cate03 {
  background: #661199;
} /*コラム 紫*/
span.cate.cate04 {
  background: #bb4466;
} /*キャンペーン 赤*/
span.cate.cate05 {
  background: #666;
} /*その他 黒*/

/***************************************
------------- COLOR -------------
***************************************/

span.red {
  font-size: inherit;
  font-weight: inherit;
  color: #c80000;
}

/***************************************
------------- アコーディオンボタン -------------
***************************************/
.txt_wrap,
.text_more {
  width: 100%;
}
.text_more .result_txt {
  position: relative;
  height: auto;
  max-height: 80px;
  overflow: hidden;
  transition: max-height 1s;
}
.text_more .result_txt::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  transition: 1s;
  background: linear-gradient(to bottom, transparent 0%, #fff 100%);
}

.text_more .result_txt.open:after {
  z-index: -1;
  opacity: 0;
}

.more__btn {
  display: block;
  margin: 10px auto 10px;
  padding: 6px 32px;
  border-radius: 4px;
  border: 0;
  color: #fff;
  background-color: var(--base-color01);
  cursor: pointer;
  font-size: 0.8em;
}
/***************************************
------------- アクセス -------------
***************************************/

#information .contents_wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 5%;
}

.info_wrap {
  width: 45%;
}
.info_img {
  width: 50%;
  text-align: center;
  img {
    height: 100%;
    object-fit: cover;
  }
}
#information h3 {
  font-size: clamp(2.4rem, 4.5vw, 3.2rem);
  font-weight: 700;
  color: var(--base-color01);
  margin-bottom: clamp(10px, 2vw, 20px);
}
.info_table {
  border: 2px solid var(--base-color01);
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding: 15px;
}
.info_table dl {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: 5%;
}
@media (max-width: 599px) {
  .info_table dl {
    flex-wrap: wrap;
  }
}
.info_table dl:not(:last-of-type) {
  margin-bottom: clamp(5px, 1vw, 10px);
}
.info_table dl dt {
  flex-shrink: 0;
  width: 27.5%;
  color: #fff;
  font-size: 0.9em;
  font-weight: 600;
  line-height: 1;
  background: var(--base-color01);
  padding: 8px;
  border-radius: 4px;
  text-align: center;
}
.info_table dl dd {
  flex-shrink: 1;
}
@media (max-width: 768px) {
  .info_wrap {
    width: 100%;
    margin-bottom: clamp(25px, 5vw, 50px);
  }
  #information h3 {
    text-align: center;
  }
  .info_img {
    width: 100%;
  }
}

@media (max-width: 599px) {
  .info_table dl:not(:last-of-type) {
    margin-bottom: clamp(10px, 2vw, 20px);
  }
  .info_table dl dt {
    flex-shrink: 0;
    width: 100%;
    text-align: left;
  }
  .info_table dl dd {
    flex-shrink: 0;
    width: 100%;
  }
}

/***************************************
------------- FOOTER -------------
***************************************/
.gmap iframe {
  width: 100%;
  height: min(30vw, 300px);
  margin: clamp(50px, 10vw, 100px) 0 0;
  padding: 0;
  vertical-align: bottom;
}
footer {
  width: 100%;
  background: #f5f6ff;
  position: relative;
  z-index: -1;
}
footer::after {
  content: "";
  position: absolute;
  display: block;
  background: url(../img/footer_bg.webp) no-repeat;
  background-position: top center;
  background-size: contain;
  width: clamp(300px, 50vw, 600px);
  height: auto;
  aspect-ratio: 600/350;
  object-fit: cover;
  bottom: 0;
  right: -100px;
  z-index: -1;
}

footer .contents_wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 2%;
}
.footer_list {
  width: calc(94% / 4);
  padding: clamp(25px, 5vw, 50px) 0;
}
.footer_list li:not(:last-of-type) {
  margin-bottom: clamp(5px, 1vw, 10px);
}
footer .arrow {
  position: relative;
  padding-left: 15px;
}

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

footer .copyright {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.25;
  font-size: 1.4rem;
  padding: 12px 0 16px;
  color: #fff;
  background: var(--base-color01);
}
@media (max-width: 768px) {
  footer .contents_wrap {
    padding: clamp(25px, 5vw, 50px) 0;
    gap: 0;
  }
  .footer_list:nth-of-type(1),
  .footer_list:nth-of-type(2) {
    width: 100%;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    li {
      width: 50%;
      margin-bottom: clamp(5px, 1vw, 10px);
    }
  }
  .footer_list:nth-of-type(3) {
    width: 50%;
    padding: 0;
  }
  .footer_list:nth-of-type(4) {
    width: 50%;
    padding: 0;
    margin-top: 1.8em;
  }
}
@media (max-width: 599px) {
  .footer_list:nth-of-type(1),
  .footer_list:nth-of-type(2),
  .footer_list:nth-of-type(3),
  .footer_list:nth-of-type(4) {
    width: 100%;
    margin-top: 0;
    li {
      width: 100%;
      margin-bottom: clamp(10px, 2vw, 20px);
    }
  }
}
/***************************************
------------- TO TOP -------------
***************************************/
@media (min-width: 600px) {
  #page_top a {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    z-index: 99;
    bottom: 50px;
    color: #fff;
    text-align: center;
    background: var(--base-color01);
    width: 60px;
    height: 60px;
    border: solid 1px #fff;
    border-radius: 8px;
  }
  #page_top a::before {
    content: "";
    width: 1px;
    height: 1px;
    border-right: 8px solid transparent;
    border-bottom: 10px solid #fff;
    border-left: 8px solid transparent;
    margin-bottom: 5px;
  }
  #page_top a span {
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1;
  }
}

/***************************************
------------- CONTACT -------------
***************************************/

@media (min-width: 600px) {
  .side_contact {
    position: fixed;
    z-index: 99;
    top: 250px;
    right: 0;
    color: #fff;
    text-align: center;
    background: linear-gradient(#4545b0, var(--base-color01));
    width: 60px;
    height: 200px;
    border-radius: 8px 0 0 8px;
  }
  .side_contact a {
    width: 100%;
    height: 100%;
    writing-mode: vertical-lr;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }
  .side_contact a::before {
    content: "";
    display: block;
    background: url(../img/svg/icn_mail_wh.svg) no-repeat;
    background-position: top center;
    background-size: contain;
    width: 20px;
    height: auto;
    aspect-ratio: 1/1;
    object-fit: cover;
    margin-bottom: 5px;
  }
}

/***************************************
------------- 下部固定メニュー -------------
***************************************/
@media (max-width: 599.98px) {
  footer .copyright {
    padding-bottom: 80px;
  }
  .sp_fixed_bnr {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 60px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    background: #fff;
    z-index: 99;
    li {
      height: 100%;
      color: #fff;
      a {
        width: 100%;
        font-size: 1.6rem;
        height: inherit;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        text-align: center;
        justify-content: center;
        flex-direction: column;
      }
    }
    li:nth-of-type(1) {
      width: 40%;
      background: var(--base-color01);
    }
    li:nth-of-type(2) {
      width: 40%;
      background: #4545b0;
    }
    li:nth-of-type(3) {
      width: 20%;
      background: var(--base-color01);
    }
    li:nth-of-type(1) a::before {
      content: "";
      display: block;
      background: url(../img/svg/icn_tel_wh.svg) no-repeat;
      background-position: top center;
      background-size: contain;
      width: 25px;
      height: auto;
      aspect-ratio: 25/20;
      object-fit: cover;
    }
    li:nth-of-type(2) a::before {
      content: "";
      display: block;
      background: url(../img/svg/icn_mail_wh.svg) no-repeat;
      background-position: top center;
      background-size: contain;
      width: 20px;
      height: auto;
      aspect-ratio: 1/1;
      object-fit: cover;
    }
    li:nth-of-type(3) a::before {
      content: "";
      width: 1px;
      height: 1px;
      border-right: 8px solid transparent;
      border-bottom: 10px solid #fff;
      border-left: 8px solid transparent;
    }
  }
}

/***************************************
-------------- PAGENATION --------------
***************************************/
.pagination {
  width: min(100%, 600px);
  margin: 60px auto 0;
}

@media (max-width: 767px) {
  .pagination {
    margin: 40px auto 0;
  }
}
.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;
}

/***************************************
------------- instagram -------------
***************************************/

.insta_bnr {
  width: 100%;
  margin-top: clamp(10px, 2vw, 20px);
  a {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(1.6rem, 2.5vw, 2rem);
    width: 100%;
    padding: 15px;
    background: -webkit-linear-gradient(135deg, #427eff 0%, #f13f79 70%)
      no-repeat;
    background: linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    span {
      position: relative;
      z-index: 1;
      color: #fff;
    }
  }
}
.insta_bnr a:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-linear-gradient(
      15deg,
      #ffdb2c,
      rgb(249, 118, 76) 25%,
      rgba(255, 77, 64, 0) 50%
    )
    no-repeat;
  background: linear-gradient(
      15deg,
      #ffdb2c,
      rgb(249, 118, 76) 25%,
      rgba(255, 77, 64, 0) 50%
    )
    no-repeat;
}
/*
.insta_bnr a::before {
  content: "";
  display: block;
  width: 1em;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: contain;
  margin-right: 5px;
  background: url(../img/svg/icn_insta_wh.svg) no-repeat;
  background-position: center center;
  background-size: contain;
  position: relative;
  z-index: 1;
}
*/
