@charset "UTF-8";
/*//////////////////////////////////////////////////////////

Copyright (C) apricot-design All Rights Reserved.
------------------------------------------------------------
CSS information
 file name  :  reset.css
 style info :  リセットファイル
 admin info :  apricot-design

//////////////////////////////////////////////////////////*/
article, aside, details, figcaption, figure, footer, header, hgroup, nav, section {
  display: block;
}

audio[controls], canvas, video {
  display: inline-block;
  *display: inline;
  zoom: 1;
}

html {
  overflow-y: scroll;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body, div, dl, dt, dd, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td, ul {
  margin: 0;
  padding: 0;
}

body, button, input, select, textarea {
  font-size: 100%;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b, strong {
  font-weight: bold;
}

blockquote {
  margin: 1em 40px;
}

dfn {
  font-style: italic;
}

mark {
  background: #ff0;
  color: #000;
}

pre, code, kbd, samp {
  font-family: monospace, monospace;
  _font-family: "courier new", monospace;
  font-size: 1em;
}

pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}

q {
  quotes: none;
}
q:before, q:after {
  content: "";
  content: none;
}

small {
  font-size: 75%;
}

sub {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

ul, ol {
  margin: 0;
  padding: 0;
}

dd {
  margin: 0px;
}

nav ul, nav ol {
  list-style: none;
}

img {
  border: 0;
  -ms-interpolation-mode: bicubic;
}

svg:not(:root) {
  overflow: hidden;
}

figure, form {
  margin: 0;
}

fieldset {
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  *margin-left: -7px;
}

input, button, select, textarea {
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font-size: 100%;
  vertical-align: baseline;
  *vertical-align: middle;
  margin: 0;
  padding: 0;
  outline: none;
}

input[type=radio] {
  appearance: auto;
  margin-right: 5px;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select {
  -moz-appearance: none;
  text-indent: 0.01px;
  text-overflow: "";
}
select::-ms-expand {
  display: none;
}

button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
  vertical-align: top;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

address, caption, cite, code, dfn, em, strong, th, var {
  font-style: normal;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
  font-size: 100%;
}

img, abbr, acronym, fieldset {
  border: 0;
}

li {
  list-style: none;
}

/*画像を縦に並べた時に余白が出ないように*/
img {
  vertical-align: top;
  font-size: 0;
  line-height: 0;
}

/*box-sizingを全ブラウザに対応*/
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}
*:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}

.ie6_error, .no_script {
  background: #F66;
  padding: 100px;
  text-align: center;
  font-size: 150%;
  color: #333;
}

.flt {
  float: left;
}

.flr {
  float: right;
}

.txt_l, td.txt_l, .txt_l td {
  text-align: left;
}

.txt_r, td.txt_r, .txt_r td {
  text-align: right;
}

.txt_c, td.txt_c, .txt_c td {
  text-align: center;
}

.valign_t, td.valign_t, .valign_t td {
  vertical-align: top;
}

.valign_m, td.valign_m, .valign_m td {
  vertical-align: middle;
}

.valign_b, td.valign_b, .valign_b td {
  vertical-align: bottom;
}

.clear {
  clear: both;
}

.clearfix {
  zoom: 1;
}
.clearfix:before {
  content: "";
  display: block;
}
.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.img_bd {
  border: solid 1px #E8E8E8;
}

.c_red {
  color: #FF3425;
}

.fadeIn {
  opacity: 0;
}
.fadeIn.js_active {
  animation: fadeIn 0.6s ease-in-out forwards;
}

.fadeInDelay {
  opacity: 0;
}
.fadeInDelay.js_active {
  animation: fadeIn 0.6s ease-in-out 0.4s forwards;
}

.fadeInLeft {
  opacity: 0;
}
.fadeInLeft.js_active {
  animation: fadeInLeft 0.6s ease-in-out forwards;
}

.fadeInRight {
  opacity: 0;
}
.fadeInRight.js_active {
  animation: fadeInRight 0.6s ease-in-out forwards;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(2em);
  }
  80% {
    transform: translateY(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-1.5em);
  }
  80% {
    transform: translateX(0);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(1.5em);
  }
  80% {
    transform: translateX(0);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
:root {
  --headerHeight: 90px;
  --activeHeaderHeight: 70px;
  --minWidth: 1100px;
  --sideW: min(4.66vw, 70px);
  --space: 120px;
}
@media screen and (max-width: 767px) {
  :root {
    --headerHeight: 80px;
    --activeHeaderHeight: 60px;
    --minWidth: 1px;
    --sideW: min(6.66vw, 25px);
    --space: 80px;
  }
}

html {
  width: 100%;
  font-size: 10px;
  scroll-behavior: smooth;
  scroll-padding-top: var(--activeHeaderHeight);
}

body {
  font: 400 16px/2 "Noto Sans JP", "游ゴシック", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
  color: #464647;
  text-align: left;
  letter-spacing: 0.06em;
}

a {
  text-decoration: none;
  color: #464647;
  transition: 0.5s;
}
a:link, a:active, a:visited {
  text-decoration: none;
}
a[href*="tel:"] {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  a[href*="tel:"] {
    pointer-events: auto;
    cursor: pointer;
  }
}

.opacity {
  transition: 0.3s;
}
.opacity:hover {
  opacity: 0.6;
}

img {
  max-width: 100%;
  height: auto;
}

@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp {
    display: inherit;
  }
}

#container_wrap {
  position: relative;
  padding-top: var(--headerHeight);
  min-width: var(--minWidth);
}
@media screen and (max-width: 767px) {
  #container_wrap {
    overflow: hidden;
  }
}

.home #container_wrap {
  overflow: hidden;
}

.section_wrap {
  position: relative;
  margin-bottom: var(--space);
}

.inner, .inner_lg, .inner_single, .inner_min {
  max-width: calc(1220px + var(--sideW) * 2);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--sideW);
}
.inner_min {
  max-width: calc(1000px + var(--sideW) * 2);
}
.inner_single {
  max-width: calc(880px + var(--sideW) * 2);
}
.inner_lg {
  max-width: calc(1360px + var(--sideW) * 2);
}

.split {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px 0;
  max-width: calc(1220px + var(--sideW) * 2);
  width: 100%;
  margin: 0 auto 150px;
  padding: 0 var(--sideW);
}
@media screen and (max-width: 767px) {
  .split {
    grid-template-columns: 1fr;
    margin-bottom: 80px;
  }
}
.split__left {
  position: relative;
  padding-right: min(4.66vw, 70px);
}
@media screen and (max-width: 767px) {
  .split__left {
    padding-right: 0;
  }
}
.split__left::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  background-color: #F8F8F8;
  right: 0;
  top: 0;
}
.split__left::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 48px;
  background-color: #B4B4B4;
  top: 0;
  right: 0;
  z-index: 1;
}

.header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: fixed;
  background-color: #fff;
  width: 100%;
  max-width: 100%;
  min-width: var(--minWidth);
  height: var(--headerHeight);
  top: 0;
  left: 0;
  z-index: 1000;
  transition: 0.3s;
}
.header.js_scroll {
  height: var(--activeHeaderHeight);
  background-color: #fff;
}
.header.js_scroll .header__ttl {
  width: 110px;
}
.header.js_scroll .header__ttl a {
  width: 60px;
}
.header.js_scroll .menu-trigger {
  width: var(--activeHeaderHeight);
}
.header.js_scroll .menu-trigger::after {
  font-size: 0.625em;
}
.header__ttl {
  display: grid;
  place-content: center;
  position: relative;
  z-index: 2;
  width: min(14vw, 211px);
  aspect-ratio: 211/171;
  background-color: #fff;
  border-bottom-right-radius: 50px;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .header__ttl {
    width: min(32.2vw, 121px);
  }
}
.header__ttl a {
  display: block;
  width: 92px;
  aspect-ratio: 92/86;
  white-space: nowrap;
  text-indent: 110%;
  overflow: hidden;
  background: url(../images/logo.svg) no-repeat center/contain;
  transition: none;
}
@media screen and (max-width: 767px) {
  .header__ttl a {
    width: 63px;
  }
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 0 min(2.66vw, 40px);
  height: 100%;
}
@media screen and (max-width: 767px) {
  .header__nav {
    gap: 0 23px;
  }
}
.header__nav nav {
  display: flex;
  align-items: center;
  gap: 0 min(2.66vw, 40px);
}
.header__nav nav .nav_main {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .header__nav nav .nav_main {
    display: none;
  }
}
.header__nav nav .nav_main:hover .sub_nav {
  opacity: 1;
  pointer-events: auto;
}
.header__nav nav .nav_main a {
  display: block;
  position: relative;
  font-size: 0.9375em;
  font-weight: 500;
  font-family: "Montserrat", serif;
  line-height: 1.75;
  letter-spacing: 0.04em;
  padding: 0 min(1.33vw, 20px);
}
.header__nav nav .nav_main a:hover {
  color: transparent;
  transition-delay: 0.2s;
}
.header__nav nav .nav_main a:hover::before {
  transition-delay: 0.2s;
  color: #464647;
  opacity: 1;
}
.header__nav nav .nav_main a:hover::after {
  animation: gn_animation 0.8s ease forwards;
}
.header__nav nav .nav_main a::before {
  content: attr(data-text);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: 0 auto;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
  text-align: center;
  opacity: 0;
  z-index: 1;
  white-space: nowrap;
}
.header__nav nav .nav_main a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #464647;
  z-index: 2;
  transform: scale(0, 1);
  transform-origin: left;
}
.header__nav nav .nav_sub {
  display: flex;
  align-items: center;
  gap: 0 min(1.33vw, 20px);
}
@media screen and (max-width: 767px) {
  .header__nav nav .nav_sub {
    gap: min(5.33vw, 20px);
  }
}
.header__nav nav .nav_sub a, .header__nav nav .nav_sub img {
  display: block;
}

.global_nav {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow-y: scroll;
  z-index: 2;
  padding: var(--headerHeight) var(--sideW);
  opacity: 0;
  pointer-events: none;
  overflow-y: scroll;
  background-color: rgba(70, 70, 71, 0.9);
}
.global_nav.active {
  transition: opacity 0.5s;
  opacity: 1;
  pointer-events: auto;
}
.global_nav__inner {
  width: 400px;
  max-width: 100%;
  margin: 0 auto;
}
.global_nav__main {
  display: flex;
  flex-direction: column;
  gap: 35px;
  margin-bottom: 55px;
  text-align: center;
}
.global_nav__main a {
  display: block;
  position: relative;
  text-align: center;
  font-weight: 500;
  font-family: "Montserrat", serif;
  line-height: 1.8;
  color: #fff;
  width: 200px;
  max-width: 100%;
  margin: 0 auto;
}
.global_nav__main a:hover {
  color: transparent;
  transition-delay: 0.2s;
}
.global_nav__main a:hover::before {
  transition-delay: 0.2s;
  color: #fff;
  opacity: 1;
}
.global_nav__main a:hover::after {
  animation: gn_animation 0.8s ease forwards;
}
.global_nav__main a::before {
  content: attr(data-text);
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
  text-align: center;
  opacity: 0;
  z-index: 1;
}
.global_nav__main a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #fff;
  z-index: 2;
  transform: scale(0, 1);
  transform-origin: left;
}
.global_nav__logo01, .global_nav__logo02 {
  display: block;
  margin: 0 auto 25px;
}
.global_nav__address {
  text-align: center;
  font-size: 0.75em;
  color: #fff;
  margin-bottom: 20px;
}
.global_nav__sns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 60px;
}
.global_nav__logo02 {
  margin-bottom: 0;
}
.global_nav__link {
  text-align: center;
}
.global_nav__link a {
  display: inline-block;
  position: relative;
  padding-right: 13px;
  color: #fff;
  font-size: 0.75em;
  background: url(../images/ico_arrow_white.svg) no-repeat center right;
}

@keyframes gn_animation {
  50% {
    transform: scale(1, 1);
    transform-origin: left;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: right;
  }
  100% {
    transform: scale(0, 1);
    transform-origin: right;
  }
}
.menu-trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 15px;
  position: relative;
  width: var(--headerHeight);
  aspect-ratio: 1/1;
  background-color: #464647;
  cursor: pointer;
  padding-top: 20px;
  z-index: 3;
  transition: 0.5s;
}
.menu-trigger::after {
  content: "menu";
  display: block;
  font-size: 0.75em;
  font-family: "Montserrat", serif;
  font-weight: 500;
  text-align: center;
  color: #fff;
}
.menu-trigger span {
  display: block;
  position: relative;
  width: 45%;
  height: 2px;
  background-color: #fff;
  border-radius: 2px;
  transition: 0.5s;
}
.menu-trigger span::before, .menu-trigger span::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #fff;
  border-radius: 2px;
  top: -10px;
  left: 0;
  right: 0;
  margin: auto;
  transform-origin: center;
  transition: 0.5s;
}
.menu-trigger span::after {
  top: 10px;
}
.menu-trigger.active {
  background-color: transparent;
}
.menu-trigger.active::after {
  content: "close";
}
.menu-trigger.active span {
  background: none;
}
.menu-trigger.active span::before, .menu-trigger.active span::after {
  top: 0;
  opacity: 1;
  rotate: 135deg;
}
.menu-trigger.active span::after {
  rotate: -135deg;
}

.online_store_nav {
  display: flex;
  align-items: center;
  gap: 10px;
  position: fixed;
  top: 50%;
  left: min(2vw, 30px);
  transform: rotate(180deg);
  translate: 0 -50%;
  font-size: 0.9375em;
  font-weight: 500;
  font-family: "Montserrat", serif;
  writing-mode: vertical-lr;
}
@media screen and (max-width: 767px) {
  .online_store_nav {
    justify-content: center;
    top: calc(100vh - 42px - 30px);
    left: 50%;
    transform: translateX(-50%);
    translate: none;
    text-align: center;
    background-color: #464647;
    color: #fff;
    writing-mode: horizontal-tb;
    width: 227px;
    max-width: 100%;
    height: 42px;
    border-radius: 30px;
    z-index: 2;
  }
}
.online_store_nav::before {
  content: "";
  display: block;
  width: 16px;
  aspect-ratio: 16/19;
  background: url(../images/ico_shop.svg) no-repeat center/contain;
  transform: rotate(90deg);
}
@media screen and (max-width: 767px) {
  .online_store_nav::before {
    background-image: url(../images/ico_shop_white.svg);
    transform: none;
  }
}

.footer {
  padding-bottom: 120px;
}
@media screen and (max-width: 767px) {
  .footer {
    position: relative;
    z-index: 1;
    padding-bottom: 60px;
  }
}
.footer .bg_image {
  height: 513px;
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .footer .bg_image {
    margin-bottom: 60px;
    height: auto;
    aspect-ratio: 3/1;
    background-size: cover;
  }
}
.footer .inner, .footer .inner_min, .footer .inner_single, .footer .inner_lg {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}
.footer .left img {
  display: block;
  width: 102px;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .footer .left img {
    width: 80px;
    margin-bottom: 25px;
  }
}
.footer .left .address {
  font-size: 0.875em;
}
@media screen and (max-width: 767px) {
  .footer .left .address {
    font-size: 0.75em;
  }
}
.footer .right {
  text-align: center;
}
.footer .right img {
  display: block;
}
.footer .right a {
  display: inline-block;
  position: relative;
  padding-right: 13px;
  font-size: 0.75em;
  background: url(../images/ico_arrow.svg) no-repeat center right;
}
.footer .copyright {
  width: 100%;
  font-size: 0.8125em;
  font-family: "Montserrat", serif;
}
@media screen and (max-width: 767px) {
  .footer .copyright {
    font-size: 0.75em;
  }
}

.main_visual {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  width: calc(100% - 100px);
  height: calc(100vh - var(--headerHeight) - 60px);
  height: calc(100svh - var(--headerHeight) - 60px);
  margin: 0 0 0 auto;
}
@media screen and (max-width: 767px) {
  .main_visual {
    width: 100%;
    height: calc(100vh - var(--headerHeight));
    height: calc(100svh - var(--headerHeight));
  }
}
.main_visual .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top_news {
  width: 1500px;
  max-width: 100%;
  height: 60px;
  margin: 0 auto 130px;
  padding: 0 100px;
}
@media screen and (max-width: 767px) {
  .top_news {
    height: auto;
    margin-bottom: 60px;
    padding: 25px var(--sideW) 0;
  }
}
.top_news__slide {
  height: 100%;
  padding-left: 60px;
}
@media screen and (max-width: 767px) {
  .top_news__slide {
    padding-left: 0;
  }
}
.top_news__slide .swiper-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  left: 0;
  top: 0;
  width: 60px;
  height: 100%;
  padding-right: 20px;
  background-color: #fff;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .top_news__slide .swiper-buttons {
    justify-content: flex-start;
    gap: 5spx;
    position: static;
    width: 100%;
    padding: 0;
    margin-bottom: 10px;
  }
}
.top_news__slide .swiper-buttons .swiper-button {
  display: grid;
  place-content: center;
  position: static;
  width: 20px;
  height: auto;
  aspect-ratio: 1/1;
  margin: 0;
}
.top_news__slide .swiper-buttons .swiper-button::before {
  content: "";
  display: block;
  width: 10px;
  aspect-ratio: 1/1;
  margin: 0;
  background-color: #464647;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
}
.top_news__slide .swiper-buttons .swiper-button::after {
  content: none;
}
.top_news__slide .swiper-buttons .swiper-button-prev::before {
  clip-path: polygon(100% 0, 0 60%, 100% 100%);
}
.top_news__slide .swiper-buttons .swiper-button-disabled {
  opacity: 1;
}
.top_news__slide .swiper-buttons .swiper-button-disabled::before {
  background-color: #B4B4B4;
}
.top_news__slide .swiper-slide {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 30px;
}
@media screen and (max-width: 767px) {
  .top_news__slide .swiper-slide {
    gap: 0 20px;
  }
}
.top_news__slide .swiper-slide .date {
  width: 80px;
  font-family: "Montserrat", serif;
  font-size: 0.8125em;
}
@media screen and (max-width: 767px) {
  .top_news__slide .swiper-slide .date {
    width: 100%;
  }
}
.top_news__slide .swiper-slide .cat {
  font-family: "Montserrat", serif;
  font-size: 0.8125em;
  width: 45px;
}
.top_news__slide .swiper-slide .link {
  display: flex;
  align-items: center;
  width: calc(100% - 80px - 45px - 60px);
}
@media screen and (max-width: 767px) {
  .top_news__slide .swiper-slide .link {
    width: calc(100% - 45px - 20px);
  }
}
.top_news__slide .swiper-slide .link a {
  display: inline-block;
  font-size: 0.875em;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.top_news__slide .swiper-slide .link a:hover {
  text-decoration: underline;
}

.top_about {
  padding-bottom: 100px;
  position: relative;
}
.top_about p {
  font-size: 0.9375em;
  line-height: 2.5;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .top_about p {
    font-size: 0.875em;
  }
}
.top_about_01 {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .top_about_01 {
    margin-bottom: 20px;
  }
}
.top_about_01 h2 {
  font-size: 2.125em;
  line-height: 1.6;
  font-weight: 500;
  margin-bottom: 45px;
}
@media screen and (max-width: 767px) {
  .top_about_01 h2 {
    font-size: 1.75em;
    margin-bottom: 20px;
  }
}
.top_about_02 {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: min(43.8%, 517px);
}
@media screen and (max-width: 767px) {
  .top_about_02 {
    position: static;
    transform: none;
    width: auto;
    padding-left: 10%;
    margin-bottom: 55px;
  }
}
@media screen and (max-width: 767px) {
  .top_about_02 img {
    display: block;
    width: min(70%, 263px);
    margin: 0 auto;
  }
}
.top_about_03 {
  position: relative;
  width: 300px;
  margin-left: auto;
  margin-bottom: 213px;
}
@media screen and (max-width: 767px) {
  .top_about_03 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 54px;
    width: auto;
    margin-bottom: 50px;
  }
}
.top_about_03 p {
  writing-mode: vertical-rl;
}
.top_about_03 img {
  position: absolute;
  left: calc(100% - 100px);
  bottom: -50px;
}
@media screen and (max-width: 767px) {
  .top_about_03 img {
    position: static;
    width: min(41.6vw, 156px);
    transform: translateX(var(--sideW));
  }
}
.top_about_04 {
  position: relative;
  padding-left: min(8.8vw, 132px);
  margin-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .top_about_04 {
    width: 375px;
    max-width: 100%;
    padding-left: 0;
    margin: 0 auto 25px;
  }
}
.top_about_04 img {
  position: absolute;
  left: -166px;
  bottom: 96px;
  width: min(25.5%, 306px);
}
@media screen and (max-width: 767px) {
  .top_about_04 img {
    position: static;
    width: min(60.5vw, 228px);
    transform: translateX(calc(var(--sideW) * -1));
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .top_about_04 p {
    text-align: center;
  }
}
.top_about_05 {
  position: relative;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .top_about_05 {
    width: 375px;
    max-width: 100%;
    padding-left: 0;
    margin: 0 auto;
  }
}
.top_about_05::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 153px;
  background-color: #464647;
  top: calc(100% + 30px);
  left: calc(50% - 0.5px);
}
.top_about_05 img {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  width: min(26.33%, 316px);
}
@media screen and (max-width: 767px) {
  .top_about_05 img {
    display: block;
    position: static;
    width: min(72%, 235px);
    transform: none;
    margin: 0 0 20px auto;
  }
}
@media screen and (max-width: 767px) {
  .top_about_05 p {
    text-align: center;
  }
}

.top_menu {
  background-color: #F8F8F8;
  padding: 130px 0 260px;
}
@media screen and (max-width: 767px) {
  .top_menu {
    padding-inline: var(--sideW);
  }
}
.top_menu h2 {
  position: relative;
  padding-left: 18px;
  font-size: 1.125em;
  font-family: "Montserrat", serif;
  margin-bottom: 45px;
}
.top_menu h2::before {
  content: "";
  position: absolute;
  width: 6px;
  aspect-ratio: 1/1;
  background-color: #464647;
  left: 0;
  top: calc(50% - 3px);
  border-radius: 50%;
}
.top_menu ul {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 40px min(5.2vw, 78px);
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .top_menu ul {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 40px;
  }
}
.top_menu ul a {
  display: block;
  position: relative;
}
.top_menu ul a:hover img {
  transform: scale(1.05);
}
.top_menu ul a .date {
  position: absolute;
  left: calc(100% + 12px);
  top: 0;
  padding-top: 45px;
  font-size: 0.875em;
  font-family: "Montserrat", serif;
  writing-mode: vertical-lr;
}
.top_menu ul a .date::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 30px;
  top: 0;
  left: calc(50% - 0.5px);
  background-color: #464647;
}
.top_menu ul a .image {
  aspect-ratio: 1/1;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 20px;
}
.top_menu ul a .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}
.top_menu ul a .title {
  line-height: 1.7;
}

.top_kodawari {
  position: relative;
  margin-top: -130px;
  z-index: 1;
  overflow: hidden;
  margin-bottom: 150px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .top_kodawari {
    margin-bottom: 80px;
  }
}
.top_kodawari .inner, .top_kodawari .inner_min, .top_kodawari .inner_single, .top_kodawari .inner_lg {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
}
.top_kodawari .image {
  width: 57.58%;
  min-height: 680px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top_kodawari .image {
    width: 100%;
    min-height: 1px;
    aspect-ratio: 83/68;
    margin-bottom: 30px;
  }
}
.top_kodawari .image div {
  position: absolute;
  width: calc(100% + var(--sideW) + (100vw - 173.7% - var(--sideW) * 2) / 2);
  height: 100%;
  right: 0;
  top: 0;
}
@media screen and (max-width: 1360px) {
  .top_kodawari .image div {
    width: 100%;
    left: calc(var(--sideW) * -1);
  }
}
.top_kodawari .image div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.top_kodawari .text {
  width: 42.42%;
  padding-bottom: 130px;
  padding-left: min(5.8vw, 87px);
}
@media screen and (max-width: 767px) {
  .top_kodawari .text {
    width: auto;
    padding: 0;
  }
}
.top_kodawari .text > p {
  font-size: 0.875em;
  line-height: 2;
  margin-bottom: 30px;
}

.top_bnr {
  margin-bottom: 150px;
}
@media screen and (max-width: 767px) {
  .top_bnr {
    margin-bottom: 80px;
  }
}
.top_bnr ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px 40px;
}
.top_bnr ul a {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 28px;
  align-items: center;
  position: relative;
  padding: 30px;
  background-color: #F8F8F8;
}
@media screen and (max-width: 767px) {
  .top_bnr ul a {
    grid-template-columns: 100px 1fr;
    gap: 15px;
    padding: 15px;
  }
}
.top_bnr ul a:hover {
  background-color: #464647;
  color: #fff;
}
.top_bnr ul a:hover::before, .top_bnr ul a:hover::after {
  border-color: #fff;
}
.top_bnr ul a::before, .top_bnr ul a::after {
  content: "";
  position: absolute;
  top: calc(50% - 5px);
  right: 20px;
  width: 10px;
  aspect-ratio: 1/1;
  border-right: 1px solid #464647;
  border-bottom: 1px solid #464647;
  transition: 0.5s;
}
.top_bnr ul a::after {
  border: 0 none;
  background: linear-gradient(to left bottom, transparent calc(50% - 1px), #464647 calc(50% - 1px), #464647 50%, transparent 50%);
}
.top_bnr ul a img {
  display: block;
  aspect-ratio: 150/102;
  object-fit: cover;
  border-radius: 10px;
}
.top_bnr ul a p {
  font-size: 1.375em;
  line-height: 1.5;
  font-family: "Montserrat", serif;
}
@media screen and (max-width: 767px) {
  .top_bnr ul a p {
    font-size: 1em;
  }
}

.top_magazine {
  margin-bottom: 150px;
}
@media screen and (max-width: 767px) {
  .top_magazine {
    margin-bottom: 80px;
  }
}
.top_magazine .inner, .top_magazine .inner_min, .top_magazine .inner_single, .top_magazine .inner_lg {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}
.top_magazine .bg_image {
  width: 1360px;
  max-width: 100%;
  height: 615px;
  margin: 0 auto 80px;
}
@media screen and (max-width: 767px) {
  .top_magazine .bg_image {
    aspect-ratio: 136/62;
    height: auto;
    background-size: cover;
    margin-bottom: 40px;
  }
}
.top_magazine .left {
  width: 350px;
  max-width: 100%;
}
.top_magazine .left p {
  font-size: 0.875em;
}
.top_magazine .right {
  width: 690px;
  max-width: 100%;
}
.top_magazine .right ul {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.top_magazine .right ul li a {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 35px;
}
@media screen and (max-width: 767px) {
  .top_magazine .right ul li a {
    justify-content: center;
  }
}
.top_magazine .right ul li a:hover img {
  transform: scale(1.05);
}
.top_magazine .right ul li a .image {
  width: 195px;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 10px;
}
.top_magazine .right ul li a .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}
.top_magazine .right ul li a .text {
  width: calc(100% - 195px - 35px);
}
@media screen and (max-width: 767px) {
  .top_magazine .right ul li a .text {
    width: 100%;
  }
}
.top_magazine .right ul li a .text .date {
  position: relative;
  padding-left: 45px;
  font-family: "Montserrat", serif;
  font-size: 0.875em;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
.top_magazine .right ul li a .text .date::before {
  content: "";
  position: absolute;
  width: 30px;
  height: 1px;
  background-color: #464647;
  left: 0;
  top: calc(50% - 0.5px);
}
.top_magazine .right ul li a .text .title {
  font-size: 1.125em;
  line-height: 1.75;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .top_magazine .right ul li a .text .title {
    font-size: 1em;
  }
}
.top_magazine .right ul li a .text .cat {
  font-size: 0.8125em;
}

.hero {
  position: relative;
  width: calc(1200px + var(--sideW) * 2);
  max-width: 100%;
  margin: 0 auto 80px;
  padding: 150px var(--sideW) 50px;
}
@media screen and (max-width: 767px) {
  .hero {
    padding-block: 50px 25px;
    margin-bottom: 60px;
  }
}
.hero::before {
  content: "";
  position: absolute;
  width: calc(100% - var(--sideW) * 2);
  height: 1px;
  background-color: #F8F8F8;
  left: var(--sideW);
  bottom: 0;
}
.hero::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 1px;
  background-color: #B4B4B4;
  left: var(--sideW);
  bottom: 0px;
}
.hero.archive {
  padding-bottom: 80px;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .hero.archive {
    padding-bottom: 40px;
  }
}
.hero .cat {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 15px;
  position: relative;
  margin-top: 15px;
  font-size: 0.8125em;
}
@media screen and (max-width: 767px) {
  .hero .cat {
    padding-left: 0;
    font-size: 0.75em;
  }
}
.hero .cat::before {
  content: "( CATEGORY )";
  display: block;
  font-family: "Montserrat", serif;
}
.hero .text {
  font-size: 0.875em;
  margin-top: 35px;
  line-height: 2.1;
}
@media screen and (max-width: 767px) {
  .hero .text {
    line-height: 1.8;
  }
}
.hero__magazine {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px 45px;
  padding-top: 80px;
}
@media screen and (max-width: 767px) {
  .hero__magazine {
    padding-top: 40px;
  }
}
.hero__magazine .left {
  width: calc(56.4% - 45px);
}
@media screen and (max-width: 767px) {
  .hero__magazine .left {
    width: 100%;
    order: 2;
  }
}
.hero__magazine .right {
  width: 43.6%;
}
@media screen and (max-width: 767px) {
  .hero__magazine .right {
    width: 100%;
    order: 1;
  }
}
.hero__magazine .right img {
  display: block;
  aspect-ratio: 523/356;
  border-radius: 10px;
}
.hero--menu {
  width: auto;
  padding: 0;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .hero--menu {
    padding-top: 50px;
  }
}
.hero--menu::before, .hero--menu::after {
  content: none;
}
.hero--menu .ttl_wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: calc(1200px + var(--sideW) * 2);
  max-width: 100%;
  margin: 0 auto;
  padding: 0 var(--sideW);
}
@media screen and (max-width: 767px) {
  .hero--menu .ttl_wrap {
    margin-bottom: 30px;
  }
}
.hero--menu .ttl_wrap__in {
  position: relative;
  width: 44.5%;
}
@media screen and (max-width: 767px) {
  .hero--menu .ttl_wrap__in {
    width: 100%;
  }
}
.hero--menu .ttl_wrap__in::after {
  content: "";
  position: absolute;
  width: 542px;
  max-width: 100%;
  aspect-ratio: 542/54;
  background: url(../images/hero_menu_txt.svg) no-repeat center/contain;
  top: calc(100% + 20px);
  left: 29%;
  transform: rotate(-15deg);
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .hero--menu .ttl_wrap__in::after {
    top: calc(100% + 40px);
    left: 0;
  }
}
.hero--menu .ttl_wrap .image_space {
  width: 55.5%;
  height: calc(100vh - var(--headerHeight));
}
@media screen and (max-width: 767px) {
  .hero--menu .ttl_wrap .image_space {
    display: none;
  }
}
.hero--menu .image {
  position: absolute;
  right: 0;
  top: 0;
  height: calc(100vh - var(--headerHeight));
  width: 54.4%;
}
@media screen and (max-width: 767px) {
  .hero--menu .image {
    position: static;
    width: 100%;
    aspect-ratio: 3/2;
  }
}
.hero--menu .image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kodawari_grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px min(4vw, 60px);
  margin-bottom: 80px;
}
.kodawari_grid:last-child {
  margin-bottom: 0;
}
.kodawari_grid:nth-child(even) .text {
  order: 2;
}
@media screen and (max-width: 767px) {
  .kodawari_grid:nth-child(even) .text {
    order: 1;
  }
}
.kodawari_grid:nth-child(even) .image {
  order: 1;
}
@media screen and (max-width: 767px) {
  .kodawari_grid:nth-child(even) .image {
    order: 2;
  }
}
.kodawari_grid .text {
  width: calc(41.2% - min(4vw, 60px));
}
@media screen and (max-width: 767px) {
  .kodawari_grid .text {
    width: 100%;
  }
}
.kodawari_grid .text .num {
  display: block;
  position: relative;
  font-size: 4.375em;
  font-family: "Montserrat", serif;
  line-height: 1;
  padding-bottom: 28px;
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .kodawari_grid .text .num {
    font-size: 3em;
  }
}
.kodawari_grid .text .num::before {
  content: "";
  position: absolute;
  width: 6px;
  aspect-ratio: 1/1;
  background-color: #464647;
  border-radius: 50%;
  left: 0;
  bottom: 0;
}
.kodawari_grid .text .num::after {
  content: attr(data-en);
  display: block;
  font-size: 1.3rem;
  line-height: 1.5;
}
.kodawari_grid .text h2 {
  font-size: 1.75em;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .kodawari_grid .text h2 {
    font-size: 1.375em;
  }
}
.kodawari_grid .text p:not([class]) {
  font-size: 0.875em;
}
.kodawari_grid .image {
  width: 58.8%;
}
@media screen and (max-width: 767px) {
  .kodawari_grid .image {
    width: 100%;
  }
}
.kodawari_grid .image img {
  display: block;
  border-radius: 20px;
}

.menu_cat {
  position: relative;
  margin-top: -88px;
  z-index: 1;
}
.menu_cat .menu_cates {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 30px min(2.26vw, 34px);
  margin-bottom: 60px;
}
.menu_cat .menu_cates a {
  display: block;
}
.menu_cat .menu_cates a:hover figure {
  background-color: #B4B4B4;
}
.menu_cat .menu_cates a figure {
  display: grid;
  place-content: center;
  position: relative;
  aspect-ratio: 1/1;
  background-color: #F8F8F8;
  border-radius: 20px;
  padding: 12px;
  margin-bottom: 10px;
  transition: 0.5s;
}
.menu_cat .menu_cates a figure::after {
  content: "";
  position: absolute;
  width: 9px;
  aspect-ratio: 9/7;
  background: url(../images/ico_arrow.svg) no-repeat center/contain;
  bottom: 12px;
  left: calc(50% - 4.5px);
  transform: rotate(90deg);
}
.menu_cat .menu_cates a p {
  text-align: center;
  font-size: 0.9375em;
  font-family: "Montserrat", serif;
  font-weight: 500;
}
.menu_cat .menu_links {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 880px;
  max-width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .menu_cat .menu_links {
    gap: 15px;
  }
}
.menu_cat .menu_links a {
  display: block;
  position: relative;
  background-color: #F8F8F8;
  text-align: center;
  line-height: 70px;
  font-size: 1.25em;
  font-family: "Montserrat", serif;
}
@media screen and (max-width: 767px) {
  .menu_cat .menu_links a {
    line-height: 60px;
    font-size: 1.125em;
  }
}
.menu_cat .menu_links a:hover {
  background-color: #B4B4B4;
}
.menu_cat .menu_links a::after {
  content: "";
  position: absolute;
  width: 13px;
  aspect-ratio: 13/11;
  background: url(../images/ico_arrow.svg) no-repeat center/contain;
  top: calc(50% - 5.5px);
  right: 20px;
}

.menu_detail {
  display: flex;
  flex-direction: column;
  gap: 100px;
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .menu_detail {
    margin-bottom: 60px;
    gap: 50px;
  }
}
.menu_detail:last-child {
  margin-bottom: 0;
}
.menu_detail__item {
  display: flex;
  flex-wrap: wrap;
  gap: 25px 0;
}
.menu_detail__item .left {
  width: 46.23%;
  padding-right: min(4.4vw, 66px);
}
@media screen and (max-width: 767px) {
  .menu_detail__item .left {
    width: 100%;
    padding: 0;
  }
}
.menu_detail__item .left strong {
  display: block;
  font-size: 2.375em;
  font-weight: 500;
  font-family: "Montserrat", serif;
  line-height: 1.3;
  margin-bottom: 25px;
  padding-top: 10px;
}
@media screen and (max-width: 767px) {
  .menu_detail__item .left strong {
    font-size: 1.5em;
  }
}
.menu_detail__item .left .text {
  font-size: 0.875em;
  margin-bottom: 45px;
}
@media screen and (max-width: 767px) {
  .menu_detail__item .left .text {
    margin-bottom: 35px;
  }
}
.menu_detail__item .left .app {
  position: relative;
  font-size: 0.875em;
  font-weight: 500;
  border-top: 1px solid #F8F8F8;
  padding-top: 25px;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .menu_detail__item .left .app {
    padding-top: 15px;
  }
}
.menu_detail__item .left .app:last-child {
  margin-bottom: 0;
}
.menu_detail__item .left .app::after {
  content: "";
  position: absolute;
  width: 45px;
  height: 1px;
  background-color: #B4B4B4;
  left: 0;
  top: -1px;
}
.menu_detail__item .left .cation {
  font-size: 0.8125em;
}
.menu_detail__item .right {
  width: 53.77%;
}
@media screen and (max-width: 767px) {
  .menu_detail__item .right {
    width: 100%;
  }
}

.menu_cation {
  font-size: 0.875em;
}

.shop_slide {
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .shop_slide {
    margin-bottom: 10px;
  }
}
.shop_slide img {
  display: block;
  border-radius: 10px;
}

.shop_sub_slide {
  position: relative;
  margin-bottom: 55px;
}
@media screen and (max-width: 767px) {
  .shop_sub_slide {
    margin-bottom: 40px;
  }
}
.shop_sub_slide img {
  display: block;
  border-radius: 10px;
}
.shop_sub_slide .swiper-slide {
  opacity: 0.6;
  transition: 0.3s;
}
.shop_sub_slide .swiper-slide-thumb-active {
  opacity: 1;
}
.shop_sub_slide .swiper-button {
  width: 43px;
  height: 100%;
  margin-top: 0;
  background: url(../images/ico_arrow.svg) no-repeat center right/14px auto;
  transform: none;
  top: 0;
  right: -43px;
}
@media screen and (max-width: 767px) {
  .shop_sub_slide .swiper-button {
    width: var(--sideW);
    right: calc(var(--sideW) * -1);
    background-position: center right 3px;
  }
}
.shop_sub_slide .swiper-button::after {
  content: none;
}
.shop_sub_slide .swiper-button-prev {
  transform: rotate(180deg);
  left: -43px;
}
@media screen and (max-width: 767px) {
  .shop_sub_slide .swiper-button-prev {
    left: calc(var(--sideW) * -1);
  }
}
.shop_sub_slide + p {
  font-size: 0.875em;
  line-height: 2.3;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .shop_sub_slide + p {
    font-size: 0.8125em;
  }
}

.ig_link {
  display: inline-block;
  position: relative;
  font-size: 0.8125em;
  font-family: "Montserrat", serif;
  margin-bottom: 100px;
  padding-left: 40px;
}
.ig_link:hover {
  text-decoration: underline;
}
.ig_link::before {
  content: "";
  position: absolute;
  width: 25px;
  aspect-ratio: 1/1;
  background: url(../images/ico_ig.svg) no-repeat center/contain;
  left: 0;
  top: calc(50% - 12.5px);
}

.for_dog img {
  display: block;
  margin-bottom: 35px;
}
.for_dog p {
  position: relative;
  font-size: 0.875em;
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid #F8F8F8;
}
.for_dog p::after {
  content: "";
  position: absolute;
  width: 44px;
  height: 1px;
  background-color: #B4B4B4;
  bottom: -1px;
  left: 0;
}
.for_dog ul li {
  position: relative;
  font-size: 0.875em;
  padding-left: 1.1em;
}
.for_dog ul li::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 0;
}

.map {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 406px;
  border-radius: 10px;
  margin-bottom: 65px;
}
@media screen and (max-width: 767px) {
  .map {
    height: 300px;
  }
}
.map > iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.map a {
  display: block;
  position: absolute;
  width: 215px;
  line-height: 54px;
  padding: 0 30px;
  background-color: #464647;
  color: #fff;
  font-family: "Montserrat", serif;
  right: 37px;
  top: 100%;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .map a {
    line-height: 40px;
    width: 200px;
    right: 15px;
  }
}
.map a:hover {
  background-color: #B4B4B4;
}
.map a::before, .map a::after {
  content: "";
  position: absolute;
  top: calc(50% - 5px);
  right: 19px;
  width: 10px;
  aspect-ratio: 1/1;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  transition: 0.5s;
}
.map a::after {
  border: 0 none;
  background: linear-gradient(to left bottom, transparent calc(50% - 1px), #fff calc(50% - 1px), #fff 50%, transparent 50%);
}

.ttl_wrap {
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .ttl_wrap {
    margin-bottom: 60px;
  }
}
.ttl_wrap:last-child {
  margin-bottom: 0;
}
.ttl_wrap.mb_min {
  margin-bottom: 25px;
}
.ttl_wrap .sub_ttl {
  display: block;
  position: relative;
  padding-left: 18px;
  font-size: 0.8125em;
  font-family: "Montserrat", serif;
}
@media screen and (max-width: 767px) {
  .ttl_wrap .sub_ttl {
    font-size: 0.75em;
  }
}
.ttl_wrap .sub_ttl::before {
  content: "";
  position: absolute;
  width: 6px;
  aspect-ratio: 1/1;
  background-color: #464647;
  left: 0;
  top: calc(50% - 3px);
  border-radius: 50%;
}
.ttl_wrap .ttl {
  display: block;
  font-size: 1.75em;
  font-weight: 500;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .ttl_wrap .ttl {
    font-size: 1.25em;
  }
}

.ttl_cmn_01 {
  display: block;
  position: relative;
  font-size: 2.375em;
  text-align: center;
  font-weight: 500;
  font-family: "Montserrat", serif;
  line-height: 1.5;
  letter-spacing: 0.08em;
  padding-bottom: 24px;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .ttl_cmn_01 {
    font-size: 1.5em;
  }
}
.ttl_cmn_01::after {
  content: "";
  position: absolute;
  width: 6px;
  aspect-ratio: 1/1;
  background-color: #464647;
  left: calc(50% - 3px);
  bottom: 0;
  border-radius: 50%;
}

.ttl_cmn_02 {
  display: block;
  font-size: 1.875em;
  font-weight: 500;
  font-family: "Montserrat", serif;
  line-height: 1.5;
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .ttl_cmn_02 {
    font-size: 1.25em;
  }
}
.ttl_cmn_02:last-child {
  margin-bottom: 0;
}

.ttl_related {
  position: relative;
  text-align: center;
  font-size: 1.25em;
  font-weight: 500;
  font-family: "Montserrat", serif;
  padding-bottom: 18px;
  line-height: 1.5;
  margin-top: 80px;
  margin-bottom: 50px;
}
.ttl_related::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 1px;
  background-color: #B4B4B4;
  bottom: 0;
  left: calc(50% - 15px);
}

.ttl_sidebar {
  font-size: 0.875em;
  font-family: "Montserrat", serif;
  margin-bottom: 20px;
}
.ttl_sidebar:first-child {
  margin-top: 25px;
}

.list_news {
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .list_news {
    margin-bottom: 60px;
  }
}
.list_news li a {
  display: grid;
  grid-template-columns: 214px 1fr;
  align-items: center;
  gap: 20px 40px;
  position: relative;
  padding: 50px 70px;
  border-bottom: 1px solid #F8F8F8;
}
@media screen and (max-width: 767px) {
  .list_news li a {
    grid-template-columns: 1fr;
    padding: 35px var(--sideW);
  }
}
.list_news li a::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 1px;
  background-color: #B4B4B4;
  left: 0;
  bottom: 0px;
  transition: 0.5s;
}
.list_news li a:hover::after {
  width: 100%;
}
.list_news li a:hover img {
  transform: scale(1.05);
}
.list_news li a .date {
  position: absolute;
  writing-mode: vertical-lr;
  font-size: 0.875em;
  font-family: "Montserrat", serif;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  letter-spacing: 0.1em;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .list_news li a .date {
    left: 0;
    top: 35px;
    transform: none;
    font-size: 0.75em;
  }
}
.list_news li a .image {
  position: relative;
  aspect-ratio: 214/146;
  overflow: hidden;
  border-radius: 10px;
}
.list_news li a .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}
.list_news li a .text .cat {
  font-family: "Montserrat", serif;
  font-size: 0.8125em;
}
.list_news li a .text .title {
  font-size: 1.125em;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .list_news li a .text .title {
    font-size: 1em;
  }
}

.list_staff {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 60px min(4.66vw, 70px);
}
.list_staff img {
  display: block;
  border-radius: 20px;
  aspect-ratio: 36/48;
  object-fit: cover;
  margin-bottom: 25px;
}
.list_staff .name {
  position: relative;
  font-size: 0.9375em;
  font-weight: 500;
  font-family: "Montserrat", serif;
  padding-bottom: 26px;
  margin-bottom: 24px;
}
.list_staff .name::after {
  content: "";
  position: absolute;
  width: 6px;
  aspect-ratio: 1/1;
  background-color: #464647;
  border-radius: 50%;
  left: 0;
  bottom: 0;
}
.list_staff .text {
  font-size: 0.875em;
}

.list_magazine {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 40px min(5.2vw, 78px);
  margin-bottom: 60px;
}
.list_magazine:last-child {
  margin-bottom: 0;
}
.list_magazine.col2 {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 40px min(5.86vw, 88px);
}
.list_magazine.col2 a .image {
  aspect-ratio: 396/214;
}
.list_magazine a {
  display: block;
  position: relative;
}
.list_magazine a:hover img {
  transform: scale(1.05);
}
.list_magazine a .date {
  position: absolute;
  top: 0;
  left: calc(100% + 15px);
  font-size: 0.875em;
  font-family: "Montserrat", serif;
  letter-spacing: 0.1em;
  writing-mode: vertical-lr;
  padding-top: 45px;
}
@media screen and (max-width: 767px) {
  .list_magazine a .date {
    right: 0;
    left: auto;
  }
}
.list_magazine a .date::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 30px;
  background-color: #464647;
  left: calc(50% - 0.5px);
  top: 0;
}
.list_magazine a .image {
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 20px;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .list_magazine a .image {
    width: 90%;
  }
}
.list_magazine a .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}
.list_magazine a .cat {
  display: block;
  position: relative;
  padding-left: 18px;
  font-size: 0.8125em;
}
@media screen and (max-width: 767px) {
  .list_magazine a .cat {
    font-size: 0.75em;
  }
}
.list_magazine a .cat:hover {
  text-decoration: underline;
}
.list_magazine a .cat::before {
  content: "";
  position: absolute;
  width: 6px;
  aspect-ratio: 1/1;
  background-color: #464647;
  left: 0;
  top: calc(50% - 3px);
  border-radius: 50%;
}
.list_magazine + .wp-pagenavi {
  justify-content: center;
}

.list_category {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 30px;
  position: relative;
  padding-left: 145px;
  margin-top: 25px;
}
@media screen and (max-width: 767px) {
  .list_category {
    gap: 10px;
    padding-left: 0;
  }
}
.list_category::before {
  content: "( CATEGORY )";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 0.8125em;
  font-family: "Montserrat", serif;
}
@media screen and (max-width: 767px) {
  .list_category::before {
    display: block;
    position: static;
    width: 100%;
  }
}
.list_category a {
  display: block;
  position: relative;
  padding-left: 18px;
  font-size: 0.8125em;
}
@media screen and (max-width: 767px) {
  .list_category a {
    font-size: 0.75em;
  }
}
.list_category a:hover {
  text-decoration: underline;
}
.list_category a::before {
  content: "";
  position: absolute;
  width: 6px;
  aspect-ratio: 1/1;
  background-color: #464647;
  left: 0;
  top: calc(50% - 3px);
  border-radius: 50%;
}

.list_wpp {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 45px;
}
.list_wpp a {
  display: grid;
  grid-template-columns: 60px 1fr;
  align-items: center;
  gap: 25px;
}
.list_wpp a .title {
  font-size: 0.875em;
  line-height: 1.7;
}
.list_wpp a .title img {
  border-radius: 5px;
}

.list_side {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 45px;
}
.list_side:last-child {
  margin-bottom: 0;
}
.list_side a {
  display: block;
  position: relative;
  padding-left: 18px;
  font-size: 0.8125em;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .list_side a {
    font-size: 0.75em;
  }
}
.list_side a:hover {
  text-decoration: underline;
}
.list_side a::before {
  content: "";
  position: absolute;
  width: 6px;
  aspect-ratio: 1/1;
  background-color: #464647;
  left: 0;
  top: calc(50% - 3px);
  border-radius: 50%;
}

.list_btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px 40px;
}

.dlist_parking {
  display: grid;
  grid-template-columns: 214px 1fr;
  align-items: center;
  gap: 15px 40px;
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .dlist_parking {
    grid-template-columns: 1fr;
    margin-bottom: 60px;
  }
}
.dlist_parking:last-child {
  margin-bottom: 0;
}
.dlist_parking dd {
  font-size: 1.125em;
  line-height: 1.75;
}
.dlist_parking dd::before {
  content: attr(data-en);
  display: block;
  font-size: 0.88em;
  font-family: "Montserrat", serif;
}

.table_parent {
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .table_parent {
    white-space: nowrap;
    margin-bottom: 30px;
  }
}
.table_parent:last-child {
  margin-bottom: 0;
}

.btn_more {
  display: inline-block;
  position: relative;
  font-size: 0.8125em;
  font-family: "Montserrat", serif;
  padding-bottom: 2px;
  letter-spacing: 0.1em;
}
.btn_more:hover::after {
  transform: scale(0.5, 1);
}
.btn_more::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #464647;
  left: 0;
  bottom: 0;
  transition: 0.5s;
}

.wpcf7-submit {
  display: block;
  width: 320px;
  max-width: 100%;
  line-height: 65px;
  background: url(../images/ico_arrow_white.svg) no-repeat center right 15px/11px auto;
  background-color: #464647;
  border: 1px solid #464647;
  color: #fff;
  text-align: center;
  transition: 0.5s;
  border-radius: 40px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .wpcf7-submit {
    line-height: 50px;
  }
}
.wpcf7-submit:hover {
  color: #464647;
  background-color: #fff;
  background-image: url(../images/ico_arrow.svg);
}

/* ==========================================================================//
//
// parts
//
// ========================================================================== */
/* 背景パララックス
---------------------------------------------------------- */
.bg_parallax {
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .bg_parallax {
    background-size: auto 120%;
  }
}

/* wp-pagenavi
---------------------------------------------------------- */
.wp-pagenavi {
  display: flex;
  flex-flow: wrap;
  align-items: center;
  gap: 10px 30px;
}
@media screen and (max-width: 767px) {
  .wp-pagenavi {
    gap: 10px 20px;
  }
}
.wp-pagenavi a,
.wp-pagenavi span {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  font-size: 1.125em;
  font-family: "Montserrat", serif;
  border-bottom: 1px solid #B4B4B4;
}
.wp-pagenavi a:hover, .wp-pagenavi a.current,
.wp-pagenavi span:hover,
.wp-pagenavi span.current {
  border-bottom: 1px solid #464647;
}

/* パンくず
---------------------------------------------------------- */
#list_breadcrumb {
  font-size: 0.8125em;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  #list_breadcrumb {
    font-size: 0.75em;
    margin-bottom: 30px;
  }
}
#list_breadcrumb .inner, #list_breadcrumb .inner_min, #list_breadcrumb .inner_single, #list_breadcrumb .inner_lg {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
}
@media screen and (max-width: 767px) {
  #list_breadcrumb .inner, #list_breadcrumb .inner_min, #list_breadcrumb .inner_single, #list_breadcrumb .inner_lg {
    gap: 0.3em;
  }
}

/* その他
---------------------------------------------------------- */
.lead {
  text-align: center;
  font-size: 0.875em;
  margin-bottom: 3.5em;
}
@media screen and (max-width: 767px) {
  .lead {
    text-align: left;
    margin-bottom: 3em;
  }
}
.lead:last-child {
  margin-bottom: 0;
}
.lead.left {
  text-align: left;
}
.lead.pc_left {
  text-align: left;
}
@media screen and (max-width: 767px) {
  .lead.pc_left {
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .lead.sp_left {
    text-align: left;
  }
}

.al_center {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .al_center--sp {
    text-align: center;
  }
}

.nolink {
  pointer-events: none;
}

.disp_ib {
  display: inline-block;
}

/* 投稿関連
---------------------------------------------------------- */
.post_content {
  margin-bottom: 80px;
}
.post_content img {
  border-radius: 10px;
  margin-bottom: 40px;
}
.post_content img:last-child {
  margin-bottom: 0;
}
.post_content p {
  font-size: 0.875em;
  margin-bottom: 2em;
}
.post_content p:last-child {
  margin-bottom: 0;
}

.add_ttl {
  position: relative;
  font-size: 1.375em;
  font-weight: 500;
  line-height: 1.75;
  margin-bottom: 25px;
  border-bottom: 1px solid #F8F8F8;
  padding-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .add_ttl {
    font-size: 1.25em;
  }
}
.add_ttl:last-child {
  margin-bottom: 0;
}
.add_ttl::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 1px;
  background-color: #B4B4B4;
  left: 0;
  bottom: -1px;
}

.add_ttl_02 {
  font-size: 1.125em;
  margin-bottom: 10px;
}
.add_ttl_02:last-child {
  margin-bottom: 0;
}

.add_block {
  background-color: #F8F8F8;
  padding: 30px 36px;
  margin: 0 0 35px;
}
@media screen and (max-width: 767px) {
  .add_block {
    padding: 15px;
  }
}

.sidebar {
  position: sticky;
  top: var(--activeHeaderHeight);
  padding-left: 40px;
}
@media screen and (max-width: 767px) {
  .sidebar {
    padding-left: 0;
  }
}

/* アーカイブのページネーション
---------------------------------------------------------- */
.list_pagination {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #F8F8F8;
  padding: 25px 0;
}
@media screen and (max-width: 767px) {
  .list_pagination {
    justify-content: center;
    gap: 20px;
  }
}
.list_pagination::before {
  content: "";
  position: absolute;
  width: 150px;
  height: 1px;
  background-color: #B4B4B4;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  transition: 0.5s;
}
.list_pagination li {
  width: calc(40% - 80px);
  font-size: 0.875em;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .list_pagination li {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .list_pagination li.prev {
    order: 1;
  }
}
.list_pagination li.prev a::after {
  right: auto;
  left: 0;
  transform: rotate(180deg);
}
.list_pagination li.next {
  text-align: right;
}
@media screen and (max-width: 767px) {
  .list_pagination li.next {
    order: 2;
  }
}
.list_pagination li a {
  display: inline-block;
  position: relative;
  padding: 0 23px;
}
.list_pagination li a::after {
  content: "";
  position: absolute;
  right: 0;
  top: calc(50% - 3px);
  width: 7px;
  aspect-ratio: 7/6;
  background: url(../images/ico_arrow.svg) no-repeat center/cover;
}
.list_pagination li a:hover {
  text-decoration: underline;
}
.list_pagination li.archive {
  width: 160px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .list_pagination li.archive {
    order: 3;
    margin-top: 10px;
  }
}

.archive_link {
  border-top: 1px solid #F8F8F8;
  text-align: center;
}
.archive_link a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  position: relative;
  padding: 20px 12px;
}
.archive_link a:hover::before {
  width: 200px;
}
.archive_link a::before {
  content: "";
  position: absolute;
  width: 150px;
  height: 1px;
  background-color: #B4B4B4;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  transition: 0.5s;
}
.archive_link a::after {
  content: "";
  display: block;
  width: 7px;
  aspect-ratio: 7/6;
  background: url(../images/ico_arrow.svg) no-repeat center/cover;
}

/* フォームパーツ
---------------------------------------------------------- */
.dlist_form {
  position: relative;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .dlist_form {
    margin-bottom: 30px;
  }
}
.dlist_form .item {
  display: grid;
  grid-template-columns: 260px 1fr;
  align-items: baseline;
  padding: 12px 0;
}
@media screen and (max-width: 767px) {
  .dlist_form .item {
    grid-template-columns: 1fr;
    gap: 10px 0;
  }
}
.dlist_form dt {
  font-weight: 500;
  font-size: 0.9375em;
}
.dlist_form dt.req {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px 20px;
}
@media screen and (max-width: 767px) {
  .dlist_form dt.req {
    gap: 0 10px;
  }
}
.dlist_form dt.req::after {
  content: "必須";
  display: block;
  width: 62px;
  line-height: 28px;
  text-align: center;
  background-color: #464647;
  color: #fff;
  font-size: 0.8125em;
  font-weight: 400;
}

input[type=text],
input[type=email],
input[type=tel],
textarea {
  width: 100%;
  max-width: 100%;
  padding: 25px 15px;
  background-color: #F8F8F8;
  line-height: 1.5;
  border-radius: 5px;
  color: #464647;
  text-align: left;
}
@media screen and (max-width: 767px) {
  input[type=text],
input[type=email],
input[type=tel],
textarea {
    padding: 15px 10px;
  }
}
input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=tel]::placeholder,
textarea::placeholder {
  color: #848484;
}

textarea {
  height: 240px;
}
@media screen and (max-width: 767px) {
  textarea {
    height: 180px;
  }
}

.privacy_wrap strong {
  display: block;
  position: relative;
  font-size: 1.125em;
  padding-top: 35px;
}
.privacy_wrap strong::before, .privacy_wrap strong::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #F8F8F8;
  top: 0;
  left: 0;
}
.privacy_wrap strong::after {
  width: 25px;
  background-color: #B4B4B4;
}
.privacy_wrap p:not([class]) {
  font-size: 0.875em;
  margin-bottom: 45px;
}

.wpcf7-checkbox,
.wpcf7-acceptance {
  display: block;
}
.wpcf7-checkbox .wpcf7-list-item,
.wpcf7-acceptance .wpcf7-list-item {
  display: block;
  margin: 0 0 15px;
}
.wpcf7-checkbox .wpcf7-list-item:last-child,
.wpcf7-acceptance .wpcf7-list-item:last-child {
  margin-bottom: 0;
}
.wpcf7-checkbox .wpcf7-list-item label input,
.wpcf7-acceptance .wpcf7-list-item label input {
  display: none;
}
.wpcf7-checkbox .wpcf7-list-item label input:checked + .wpcf7-list-item-label::after,
.wpcf7-acceptance .wpcf7-list-item label input:checked + .wpcf7-list-item-label::after {
  border-color: #464647;
}
.wpcf7-checkbox .wpcf7-list-item label .wpcf7-list-item-label,
.wpcf7-acceptance .wpcf7-list-item label .wpcf7-list-item-label {
  display: block;
  position: relative;
  padding-left: 47px;
}
.wpcf7-checkbox .wpcf7-list-item label .wpcf7-list-item-label::before,
.wpcf7-acceptance .wpcf7-list-item label .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  width: 30px;
  aspect-ratio: 1/1;
  border: 1px solid #464647;
  left: 0;
  top: calc(50% - 15px);
  border-radius: 3px;
}
.wpcf7-checkbox .wpcf7-list-item label .wpcf7-list-item-label::after,
.wpcf7-acceptance .wpcf7-list-item label .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  width: 19px;
  height: 7px;
  border-left: 2px solid #F8F8F8;
  border-bottom: 2px solid #F8F8F8;
  left: 6px;
  top: calc(50% - 5px);
  transform: rotate(-40deg);
  transition: 0.5s;
}

.doui {
  width: 800px;
  max-width: 100%;
  margin: 0 auto 45px;
  text-align: center;
}
.doui__inner {
  display: inline-block;
  text-align: left;
}
.doui .wpcf7-form-control-wrap {
  display: block;
  margin-bottom: 15px;
}
.doui .wpcf7-form-control-wrap:last-child {
  margin-bottom: 0;
}
.doui .wpcf7-acceptance {
  display: block;
}
.doui .wpcf7-acceptance a {
  text-decoration: underline;
}
.doui .wpcf7-acceptance a:hover {
  text-decoration: none;
}

.dlist_policy {
  margin-bottom: 20px;
}
.dlist_policy:last-child {
  margin-bottom: 0;
}
.dlist_policy_inner {
  margin-bottom: 30px;
}
.dlist_policy dt {
  font-size: 1.125em;
  font-weight: 400;
  margin-bottom: 5px;
}
@media screen and (max-width: 767px) {
  .dlist_policy dt {
    font-size: 1em;
  }
}
.dlist_policy dd {
  font-size: 0.875em;
}

.policy_box .ttl {
  font-size: 1.125em;
  margin-bottom: 5px;
}
.policy_box .txt {
  font-size: 0.875em;
}