/**********************
- ROOT
- BASE
- GENERAL
  -- FONT
  -- ALIGN
  -- FLEX
  -- LIST
  -- OTHER
- HEADER
- BREADCRUMB
- CONTAINER
- HEADING
- BUTTON
- FOOTER
- ARCHIVE
- SINGLE
- CONTACT
- FRONT
- PAGE PARTS
- LOADING
- COLOR
- MARGIN
- ANIMATION
- RESPONSIVE
***********************/

/**********************
* ブレイクポイント
* 560px/960px
**********************/


/*********************
ROOT
**********************/
:root {
  --base: #F1EFE4;
  --text-main: #3A4340;

  --main-color-1: #00A7E6;
  --main-color-2: #6BCCF0;
  --main-color-3: #BCE3F2;
  --sub-color-1: #C6CCCA;
  --sub-color-2: #FFFBB3;
  --accent-color-1: #FF496B;
  --accent-color-2: #CF1531;

  --font-jp: "kinuta-maruminkatura-stdn", serif;
  --font-en: "Cochin LT W01 Roman", 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  --font-material: 'Material Icons Round';
  --light: 300;
  --normal: 400;
  --bold: 700;

  --container: calc(1920px + 6%);
  --container-side: 3%;
  --container-ll: 1800px;
  --container-l: 1200px;
  --container-m: 1040px;
  --container-s: 660px;
  --container-ss: 480px;

  --letter-spacing-wide: .1em;

}

@font-face {
  font-family: "Cochin LT W01 Roman";
  src: url("https://db.onlinewebfonts.com/t/bcabdef34be4565d6bf6bd8bb99aabc7.eot");
  src: url("https://db.onlinewebfonts.com/t/bcabdef34be4565d6bf6bd8bb99aabc7.eot?#iefix")format("embedded-opentype"),
    url("https://db.onlinewebfonts.com/t/bcabdef34be4565d6bf6bd8bb99aabc7.woff2")format("woff2"),
    url("https://db.onlinewebfonts.com/t/bcabdef34be4565d6bf6bd8bb99aabc7.woff")format("woff"),
    url("https://db.onlinewebfonts.com/t/bcabdef34be4565d6bf6bd8bb99aabc7.ttf")format("truetype"),
    url("https://db.onlinewebfonts.com/t/bcabdef34be4565d6bf6bd8bb99aabc7.svg#Cochin LT W01 Roman")format("svg");
}


/*********************
BASE
*********************/
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  background-color: var(--base);
  color: var(--text-main);
  font-family: var(--font-jp);
  font-weight: var(--normal);
  font-size: 1.4rem;
  letter-spacing: .05em;
  line-height: 1.75;
}

section {
  position: relative;
  width: 100%;
}

h1,
h2,
h3 {
  font-weight: var(--normal);
}

a {
  transition: all 0.3s;
}

a:hover {
  opacity: 0.7;
}

img {
  height: auto;
  border: none;
  line-height: 0;
  vertical-align: bottom;
}

ol,
ul {
  padding: 0;
}

dl,
dt,
dd {
  margin: 0;
}



@media only screen and (max-width: 560px) {
  body {
    font-size: 1.2rem;
  }

}


/*********************
GENERAL
*********************/

/*FONT*/
.font-en {
  font-family: var(--font-en);
}

.small {
  font-size: .85em;
}

.large {
  font-size: 1.2em;
}

.strong {
  font-weight: var(--bold);
}

.uppercase {
  text-transform: uppercase;
}

.line-heighter,
.line-heighter * {
  line-height: 2.1;
}

.line-heighter p {
  margin: 0 0 2em;
}


/*ALIGN*/
.center {
  text-align: center;
}

.center>* {
  margin-left: auto;
  margin-right: auto;
}

.left {
  text-align: left;
}

.right {
  text-align: right;
}


/*IMAGE*/
.img-circle {
  border-radius: 50%;
}

.img-radius {
  border-radius: 30px;
}

.img-object {
  padding-top: 66%;
  position: relative;
  overflow: hidden;
}

.img-object>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}


/*FLEX*/
.flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.flex-reverse {
  flex-direction: row-reverse;
}

.nowrap {
  flex-wrap: nowrap;
}

.space-around {
  justify-content: space-around;
}

.justify-start {
  justify-content: flex-start;
}

.justify-end {
  justify-content: flex-end;
}

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

.cell {
  position: relative;
}

.cell img {
  display: block;
  width: 100%;
}

.cell>*:last-child {
  margin-bottom: 0;
}

.cell--1-2 {
  width: 48%;
}

.cell--1-3 {
  width: 30%;
}

.cell--1-4 {
  width: 23%;
}

.cell--2-3 {
  width: 60%;
}

.cell--3-4 {
  width: 73%;
}


@media only screen and (max-width: 560px) {
  .flex {
    flex-direction: column;
  }

  .cell--1-2,
  .cell--1-3,
  .cell--1-4,
  .cell--2-3,
  .cell--3-4 {
    margin-bottom: 1em;
    width: 100%;
  }

  .order0 {
    order: 0;
  }

  .order1 {
    order: 1;
  }
}


/*LIST*/
.list-none {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.list-dot li {
  list-style: none;
  padding-left: 1em;
  text-indent: -1em;
  margin: 0 0 1em;
}

.list-dot li::before {
  content: '';
  background-color: var(--main-color-2);
  border-radius: 50%;
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: .5em;
}


/*OTHER*/
.relative {
  position: relative;
}

.block {
  display: block;
}

.shadow {
  box-shadow: 0 0 1.8rem -1rem rgb(0 0 0 / 27%);
}

.marker {
  background: linear-gradient(transparent 60%, var(--sub-color-2) 60%);
}

.box {
  padding: 30px;
  background-color: #fff;
  border-radius: 15px;
}

.box>*:last-child {
  margin-bottom: 0;
}


@media only screen and (max-width: 960px) {}

@media only screen and (max-width: 560px) {
  .box {
    padding: 20px;
  }

}



/*********************
HEADER
*********************/
.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 93.75%;
  max-width: 1800px;
  padding: 15px 0;
  margin: 0 auto;
}

.header-logo {
  width: 8.8%;
  min-width: 140px;
}

.header-logo img {
  transition: 0.3s ease-in-out;
}

.header-title {
  margin: 0;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 40px;
}

.hdr-sns {
  width: 32px;
  height: 32px;
}

.hdr-sns img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s ease-in-out;
}

.hdr-reserve-btn a {
  color: #fff;
  text-transform: capitalize;
  background: linear-gradient(rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.12));
  padding: 16px 16px 16px 28px;
  position: relative;
  letter-spacing: .2em;
  position: relative;
  transition: 0.3s ease-in-out;
}

.hdr-reserve-btn a::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background: #fff;
  border-radius: 50%;
  transition: 0.3s ease-in-out;
}

.drawer-wrap {
  width: 40px;
  height: 40px;
}

#drawer-input {
  display: none;
}

#drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity .6s ease, visibility .6s ease;
  z-index: 998;
}

.border-animation-link {
  color: var(--text-main);
  display: flex;
  align-items: baseline;
  width: 100%;
  padding: 2rem 0;
  position: relative;
  overflow: hidden;
}

.header-nav-link span.en {
  text-transform: capitalize;
  font-size: 3.2rem;
  padding-right: 2rem;
  vertical-align: middle;
  font-family: var(--font-en);
}

.header-bottom-nav ul {
  display: flex;
  flex-direction: column;
  gap: 1vh;
}

.header-bottom-nav ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--text-main);
  color: #fff;
  font-size: 20px;
  padding: 18px 0;
}

#drawer-content {
  display: flex;
  flex-direction: column;
  background: var(--base);
  opacity: 0;
  visibility: hidden;
  overflow: auto;
  position: fixed;
  top: 0;
  right: -600px;
  transition: all ease .6s;
  height: 100%;
  width: 600px;
  padding-top: 80px;
  z-index: 999;
}

#drawer-content .container {
  display: flex;
  flex-direction: column;
  gap: 6vh;
  max-width: 440px;
}

#drawer-open {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: absolute;
  top: 50%;
  right: 3.2%;
  height: 40px;
  width: 40px;
  outline: none;
  z-index: 1000;
  transform: translateY(-50%);
}

#drawer-open span.drawer-border {
  content: '';
  background-color: #fff;
  display: block;
  height: 1px;
  position: absolute;
  transition: 0.3s ease-in-out;
  transform-origin: right;
}

#drawer-open span.top {
  top: 6px;
  width: 40px;
}

#drawer-open span.bottom {
  bottom: 22px;
  width: 32px;
}

#drawer-input:checked~#drawer-open span.drawer-border {
  background-color: var(--text-main);
}

#drawer-input:checked~#drawer-open span.top {
  top: 6px;
  transform: rotate(-20deg);
}

#drawer-input:checked~#drawer-open span.bottom {
  bottom: 19px;
  width: 40px;
  transform: rotate(20deg);
}

.drawer-text::before {
  display: block;
  content: "menu";
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: .2em;
  color: #fff;
  padding-top: 34px;
  transform: translateX(6px);
  transition: 0.3s ease-in-out;
}

#drawer-input:checked~#drawer-open .drawer-text::before {
  content: "close";
  color: var(--text-main);
}

#drawer-input:checked~#drawer-content {
  opacity: 1;
  visibility: visible;
  right: 0;
}

#drawer-input:checked~#drawer-overlay {
  opacity: 1;
  visibility: visible;
}

.border-animation {
  border-bottom: solid 1px var(--sub-color-1);
}

.header-nav-item span.ja {
  flex: 1;
}

.drawer-sns {
  width: 32px;
  height: 32px;
  margin-bottom: 6rem;
}

.drawer-sns img {
  filter: brightness(0) saturate(100%) invert(24%) sepia(13%) saturate(332%) hue-rotate(109deg) brightness(93%) contrast(90%);
}

.header.is-scrolled {
  transition: all 0.3s ease;
  background: linear-gradient(rgba(241, 239, 228, 1), rgba(241, 239, 228, 0));
}

.header.is-scrolled .hdr-reserve-btn a {
  background: linear-gradient(rgba(58, 67, 64, 0.12), rgba(58, 67, 64, 0.12));
}

.header.is-scrolled .hdr-reserve-btn a,
.header.is-scrolled .drawer-text::before {
  color: #3A4340;
}

.header.is-scrolled #drawer-open span.drawer-border {
  background-color: #3A4340;
}

.header.is-scrolled .header-logo img,
.header.is-scrolled .hdr-sns img {
  filter: brightness(0) saturate(100%) invert(24%) sepia(13%) saturate(332%) hue-rotate(109deg) brightness(93%) contrast(90%);
}

.header.is-scrolled .hdr-reserve-btn a::before {
  background-color: #3A4340;
}

@media screen and (max-width: 960px) {
  .header-logo {
    width: 15.5%;
    min-width: 80px;
  }
}

@media screen and (max-width: 600px) {
  #drawer-content {
    right: -100%;
    width: 100%;
  }
}

@media screen and (max-width: 560px) {
  .header-right {
    gap: 12px;
  }

  .hdr-sns {
    width: 24px;
    height: 24px;
  }

  .hdr-reserve-btn a span {
    font-size: 12px;
  }

  #drawer-open span.top {
    top: 4px;
    width: 32px;
  }

  #drawer-open span.bottom {
    bottom: 24px;
    width: 26px;
  }

  .drawer-text::before {
    font-size: 10px;
    padding-top: 30px;
    transform: translateX(7px);
  }

  #drawer-input:checked~#drawer-open span.top {
    top: 4px;
  }

  #drawer-input:checked~#drawer-open span.bottom {
    bottom: 24px;
    width: 32px;
  }

  .hdr-reserve-btn a {
    padding: 8px 8px 8px 20px;
    font-size: 14px;
  }

  .hdr-reserve-btn a::before {
    left: 10px;
    width: 3px;
    height: 3px;
  }

  #drawer-content .container {
    gap: 4vh;
  }

  .header-nav-link {
    padding: 1.6rem 0;
    font-size: 12px;
  }

  .header-nav-link span.en {
    font-size: 2.4rem;
    padding-right: 1.6rem;
  }

  .header-bottom-nav ul li a {
    font-size: 14px;
    padding: 16px 0;
  }

  .drawer-sns {
    width: 24px;
    height: 24px;
    margin-bottom: 4rem;
  }
}

/*********************
BREADCRUMBS
*********************/
#breadcrumb {
  padding: 1em 0 0;
  background-color: var(--bg-1);
}

.breadcrumb-list {
  padding: 0;
  max-width: var(--container-l);
  margin: 0 auto;
}

.breadcrumb-item {
  color: var(--text-main);
  line-height: 1;
  list-style: none;
  display: inline-block;
  margin: 0;
}

.breadcrumb-item:not(:last-of-type)::after {
  content: '/';
  padding: 0 0.5em;
}

.breadcrumb-item a {
  color: inherit;
  font-weight: var(--normal);
  text-decoration: underline;
}

@media screen and (max-width: 768px) {
  #breadcrumb {
    padding: 0 0 0;
  }
}



/*********************
CONTAINER
*********************/
.section-wrap {
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
}

.container {
  max-width: var(--container);
  padding-right: var(--container-side);
  padding-left: var(--container-side);
  position: relative;
  margin: 0 auto;
  width: 100%;
}

.container-ll {
  max-width: var(--container-ll);
  margin: 0 auto;
}

.container-l {
  max-width: var(--container-l);
  margin: 0 auto;
}

.container-m {
  max-width: var(--container-m);
  margin: 0 auto;
}

.container-s {
  max-width: var(--container-s);
  margin: 0 auto;
}

.container-ss {
  max-width: var(--container-ss);
}

.map-wrap {
  position: relative;
}

.map-wrap::before {
  content: "";
  display: block;
  padding-top: 50%;
}

.map-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}


@media only screen and (max-width: 560px) {
  .section-wrap {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .container {
    padding-right: 5%;
    padding-left: 5%;
  }

}

/*********************
HEADING
*********************/
.h1-page {
  font-size: 3rem;
  font-weight: var(--bold);
  margin-bottom: 1em;
}

.h2-top {
  font-size: 3rem;
  font-weight: var(--bold);
  margin-bottom: 1em;
}

.h2-page {
  font-size: 1.4rem;
  font-weight: var(--normal);
  position: relative;
  padding-bottom: 90px;
  text-align: center;
}

.h3-page {
  font-size: 2rem;
  font-weight: var(--bold);
  margin-bottom: 1em;
}

.section-title {
  font-size: 5.6rem;
  font-family: var(--font-en);
  text-transform: capitalize;
}

@media only screen and (max-width: 960px) {
  .section-title {
    font-size: 4rem;
  }
}


@media only screen and (max-width: 560px) {
  .section-title {
    font-size: 3.2rem;
  }
}



/*********************
BUTTON
*********************/
.link {
  border-bottom: 1px solid var(--text-main);
}

.btn-wrap {
  margin-top: 1.5em;
  width: 100%;
}

.btn {
  color: var(--text-main);
  display: inline-block;
  font-size: 1em;
  font-weight: normal;
  line-height: 1;
  position: relative;
  transition: all .3s;
  z-index: 1;
}

.btn-main {
  background-color: var(--main-color-1);
  border: 1px solid var(--main-color-1);
  border-radius: 30px;
  color: #fff;
  display: inline-block;
  font-size: 1.7rem;
  font-weight: 900;
  padding: 1em 0;
  text-align: center;
  text-decoration: none;
  transition: all .3s;
  width: 100%;
  letter-spacing: .2em;
}

.btn-sub {
  color: var(--main-color-1);
  padding-right: 2em;
  position: relative;
  text-decoration: none;
}

.btn-sub::after {
  content: "\e5c8";
  font-family: var(--font-material);
  font-size: 2rem;
  font-weight: 400;
  line-height: 3rem;
  height: 3rem;
  width: 3rem;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  transition: all .3s;
  text-align: center;
}


@media only screen and (min-width: 961px) {
  .btn-main:hover {
    background-color: #fff;
    color: var(--main-color-1);
  }

  .btn-sub:hover {
    color: var(--main-color-1);
  }

  .btn-sub:hover::after {
    right: -.25em;
  }
}

/*********************
FOOTER
*********************/
#footer {
  position: relative;
  padding-top: 240px;
}

.footer-cta {
  padding: 20rem 0;
  background-image: linear-gradient(rgba(0, 0, 0, .4), rgba(0, 0, 0, .4)),
    url(../image/reserve_pc.webp);
  background-size: cover;
  background-position: center center;
}

.footer-cta .section-title {
  color: #fff;
  text-align: center;
}

.footer-cta p {
  color: #fff;
  text-align: center;
  padding-top: 4rem;
}

.footer-cta .reserve-list {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding-top: 6rem;
}

.footer-cta .reserve-item {
  width: 33.3%;
  min-width: 340px;
  height: 60px;
}

.footer-cta .reserve-item-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 2rem;
  color: #fff;
  border: 1px solid #fff;
}

@media screen and (max-width: 1200px) {
  .footer-cta {
    padding: 12rem 0;
  }
}

@media screen and (max-width: 960px) {
  .footer-cta {
    padding: 8rem 0;
  }
}

@media screen and (max-width: 768px) {
  .footer-cta {
    padding: 12rem 0;
    background-image: linear-gradient(rgba(0, 0, 0, .4), rgba(0, 0, 0, .4)),
      url(../image/reserve_sp.webp);
  }

  .footer-cta p {
    padding-top: 2rem;
  }

  .footer-cta .reserve-list {
    padding-top: 4rem;
    flex-direction: column;
    align-items: center;
  }

  .footer-cta .reserve-item {
    width: 100%;
    min-width: auto;
    max-width: 400px;
  }
}

@media screen and (max-width: 560px) {
  .footer-cta {
    padding: 6rem 0;
  }

  .footer-cta p {
    padding-top: 1rem;
  }

  .footer-cta .reserve-list {
    padding-top: 3rem;
  }

  .footer-cta .reserve-item {
    height: 50px;
  }

  .footer-cta .reserve-item-link {
    font-size: 1.6rem;
  }
}

.footer-logo {
  display: block;
  width: 120px;
}

.footer-address {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  font-size: 1.6rem;
  color: #fff;
  padding-top: 6rem;
}

.footer-menu-wrap {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  align-items: flex-end;
}

.footer-main {
  position: relative;
  background-color: var(--text-main);
  padding: 12rem 0 4rem;
}

.footer-main .wrap {
  display: flex;
  justify-content: space-between;
}

.footer-main-list,
.footer-foot-list {
  display: flex;
  padding: 0;
  margin: 0;
}

.footer-main-item,
.footer-foot-item {
  margin: 0 0 0 3em;
}

.footer-main-item:first-of-type,
.footer-foot-item:first-of-type {
  margin: 0;
}

.footer-main-link {
  text-transform: capitalize;
  color: #fff;
  font-size: 2rem;
}

.footer-foot-link {
  text-transform: capitalize;
  color: #fff;
  font-size: 1.6rem;
}

.icon-link {
  display: inline-block;
  vertical-align: text-bottom;
  margin-left: 4px;
}

.ftr-sns {
  width: 2.4rem;
  height: 2.4rem;
}

.copyright {
  margin: 0;
  width: fit-content;
  margin-left: auto;
}

.copyright a {
  color: #fff;
  font-size: 1rem;
  text-decoration: none;
}


@media only screen and (max-width:960px) {
  .footer-menu-wrap {
    gap: 2rem;
  }

  .footer-main-item,
  .footer-foot-item {
    margin: 0 0 0 2em;
  }

  .footer-main-link {
    font-size: 1.6rem;
  }

  .footer-foot-link {
    font-size: 1.4rem;
  }

  .footer-address {
    font-size: 1.4rem;
  }
}

@media only screen and (max-width:768px) {
  .footer-logo {
    width: 100px;
  }

  .footer-main .wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 4rem;
  }

  .footer-menu-wrap {
    align-items: flex-start;
  }

  .footer-main-item,
  .footer-foot-item {
    margin: 0 0 0 2rem;
  }

}

@media only screen and (max-width:560px) {
  #footer {
    padding-top: 120px;
  }

  .footer-main-item,
  .footer-foot-item {
    margin: 0;
  }

  .footer-main {
    padding: 8rem 0 2rem;
  }

  .footer-logo {
    width: 80px;
  }

  .footer-address {
    font-size: 1.2rem;
    padding-top: 4rem;
  }

  .footer-main-link {
    font-size: 1.4rem;
  }

  .footer-main-item:not(:last-of-type),
  .footer-foot-item:not(:last-of-type) {
    margin: 0 0 1em 0;
  }

  .footer-main-list,
  .footer-foot-list {
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0;
  }

  .footer-foot-link {
    font-size: 1.2rem;
  }
}


/*********************
ARCHIVE
*********************/
.header-page {
  padding-top: 12rem;
}

.post-type-archive header,
.single-news header {
  background: linear-gradient(rgba(241, 239, 228, 1), rgba(241, 239, 228, 0));
}

.post-type-archive .header-title img,
.post-type-archive .hdr-sns img,
.single-news .header-title img,
.single-news .hdr-sns img {
  filter: brightness(0) saturate(100%) invert(24%) sepia(13%) saturate(332%) hue-rotate(109deg) brightness(93%) contrast(90%);
}

.post-type-archive .hdr-reserve-btn a,
.single-news .hdr-reserve-btn a {
  color: var(--text-main);
}

.post-type-archive .hdr-reserve-btn a::before,
.single-news .hdr-reserve-btn a::before {
  background: var(--text-main);
}

.post-type-archive .hdr-reserve-btn a,
.single-news .hdr-reserve-btn a {
  color: var(--text-main);
  background: linear-gradient(rgba(58, 67, 64, 0.12), rgba(58, 67, 64, 0.12));
}

.post-type-archive .drawer-text::before,
.single-news .drawer-text::before {
  color: var(--text-main);
}

.post-type-archive #drawer-open span.drawer-border,
.single-news #drawer-open span.drawer-border {
  background-color: var(--text-main);
}



.post-type-archive ul.news-item-list {
  padding-top: 8rem;
}


/*PAGENATION*/

/* リンクの枠 */
.navigation.pagination {
  margin-top: 4em;
}


/* 数字のリンク */
.pagination .page-numbers {
  font-weight: var(--normal);
  font-size: 1.6rem;
  display: flex;
  justify-content: center;
  margin: 0;
}

.pagination .page-numbers li {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 1.2em;
}

.pagination .page-numbers li:first-of-type {
  margin-left: 0;
}

.pagination .page-numbers li:last-of-type {
  margin-right: 0;
}

.pagination .page-numbers a {
  text-decoration: none;
}

/* 前へ、次へボタン */
.pagination .nav-links .prev,
.pagination .nav-links .next {
  width: .6em;
  height: .6em;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}

.pagination .nav-links .prev {
  background-image: url(../../../../uploads/arrow-left.svg);
}

.pagination .nav-links .next {
  background-image: url(../../../../uploads/arrow-right.svg);
}

/* 現在のページ */
.pagination .nav-links .current {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #d6d2bd;
}


@media only screen and (max-width: 560px) {
  .header-page {
    padding-top: 10rem;
  }


  .post-type-archive ul.news-item-list {
    padding-top: 4rem;
  }

  .pagination .page-numbers li {
    margin: 0 1em;
  }

  .pagination .nav-links .current {
    width: 24px;
    height: 24px;
  }

  .pagination .page-numbers {
    font-size: 1.4rem;
  }
}



/*********************
SINGLE
*********************/
.header-single {
  position: relative;
  padding-top: 12rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--text-main);
}

.time-single {
  display: inline-block;
  margin-bottom: .5em;
}

.title-single {
  font-size: 2.4rem;
}

.content-single {
  line-height: 2.4em;
  padding-top: 4rem;
}

.content-single p:not(:first-of-type) {
  padding-top: 2em;
}

.main-single-post h2 {
  font-size: 1.8em;
}

.main-single-post h3 {
  font-size: 1.5em;
}

.main-single-post h4 {
  font-size: 1.2em;
}

.main-single-post h2,
.main-single-post h3,
.main-single-post h4 {
  margin: 1em 0;
}

.main-single-post p+h2,
.main-single-post img+h2,
.main-single-post figure+h2,
.main-single-post table+h2 {
  margin-top: 3em;
}

.main-single-post p+h3,
.main-single-post img+h3,
.main-single-post figure+h3,
.main-single-post table+h3 {
  margin-top: 2em;
}

.main-single-post ul,
.main-single-post ol {
  margin: 2em 0;
}

.main-single-post figure,
.main-single-post img {
  display: block;
  max-width: 100%;
  margin: auto;
}

.main-single-post figure {
  margin-bottom: 2em;
}

.main-single-post figcaption {
  font-size: .8em;
  line-height: 1.7;
  margin-top: .5em;
}

.main-single-post table {
  border: solid 1px #DDD;
  border-collapse: collapse;
}

.main-single-post tr {
  border-bottom: solid 1px #DDD;
}

.main-single-post th,
.main-single-post td {
  padding: 1em;
  border-right: solid 1px #DDD;
}


@media only screen and (max-width: 560px) {
  .header-single {
    padding-top: 6rem;
  }

  .title-single {
    font-size: 1.8rem;
  }

  .title-news {
    font-size: 1.9rem;
  }
}




/*********************
CONTACT
*********************/
input[type=email],
input[type=text],
input[type=tel],
input[type=file],
input[type=url],
input[type=number],
input[type=date],
select,
textarea {
  color: inherit;
  font-size: 1.6rem;
  display: inline-block;
  width: 100%;
}

input[type=email],
input[type=text],
input[type=tel],
input[type=url],
input[type=number],
input[type=date],
select,
textarea {
  border: 1px solid #DBDBDB;
  border-radius: 5px;
  background-color: #FFF;
  line-height: 1.7;
  padding: 1rem .9rem;
}

input[type=number] {
  margin-right: .5rem;
  padding: .5rem 1rem;
  width: calc(4em + 2rem);
}

input[type=checkbox],
input[type=radio],
.wpcf7-list-item-label {
  vertical-align: middle;
}

input[type=submit] {
  background-color: var(--accent-color-1);
  border: 1px solid var(--accent-color-1);
  border-radius: 30px;
  color: #fff;
  display: inline-block;
  font-size: 2rem;
  font-weight: 900;
  padding: 1em 0;
  text-align: center;
  text-decoration: none;
  transition: all .3s;
  width: 500px;
  letter-spacing: .2em;
}

input[type=submit]:hover {
  color: #fff;
}

.number-month,
.number-date {
  margin-left: 1em;
}

.wpcf7-list-item {
  margin: 0 1em 0 0;
}

.wpcf7-list-item:last-child {
  margin: 0;
}

.item-form-contact {
  margin-bottom: 2rem;
}

.heading-form-contact {
  font-size: 1em;
  font-weight: var(--bold);
}

.detail-form-contact {
  padding-top: 8px;
  padding-bottom: 30px;
}

.contact-label {
  background-color: var(--main-color-1);
  border-radius: 2px;
  color: #fff;
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  margin-left: 10px;
  padding: 5px 12px;
  line-height: 1;
  vertical-align: text-bottom;
}

::placeholder {
  color: #ddd;
  font-size: 1.6rem;
  letter-spacing: .15rem;
  line-height: 1.5;
}

.wpcf7-checkbox .wpcf7-list-item {
  display: block;
  margin-bottom: .5em;
}

.wpcf7-acceptance .wpcf7-list-item {
  margin: 0;
}

/*送信完了メッセージ*/
.wpcf7 form.sent .wpcf7-response-output {
  background-color: #fff;
  border-color: #4a84af;
  margin-top: 3em;
  padding: 2em;
}

/*Google reCAPCHA*/
.reCAPTCHA {
  font-size: 10px;
}


@media only screen and (max-width: 560px) {
  input[type=submit] {
    width: 100%;
  }

  .heading-form-contact {
    font-size: 1.4rem;
    padding: 10px 0 0;
  }

  .detail-form-contact {
    padding: 10px 0 30px;
  }

  .contact-label {
    font-size: 1.1rem;
  }

  ::placeholder {
    font-size: 1em;
  }

  .wpcf7-list-item-label {
    font-size: 1.3rem;
  }

  .wpcf7-text,
  .wpcf7-textarea {
    font-size: 1.6rem;
  }
}

/*********************
FRONT
*********************/
.firstv {
  background-color: #000;
  height: calc(100vh - 71px);
}

@media only screen and (max-width: 960px) {
  .firstv {
    height: 500px;
  }
}


@media only screen and (max-width:560px) {
  .firstv {
    height: 400px;
  }
}


/*********************
PAGE PARTS
*********************/


/*privacy*/
.main-privacy h2 {
  font-size: 1.5em;
  margin: 2em 0 .5em;
}

/*********************
LOADING
*********************/
#loading,
#loading_logo {
  display: none;
}

.home #loading {
  background-color: #fff;
  display: block;
  position: fixed;
  left: 0;
  text-align: center;
  width: 100%;
  height: 100%;
  z-index: 999;
}

.home #loading_logo {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
}

#loading_logo img {
  width: 210px;
}


/*********************
COLOR
**********************/
.bg-white {
  background-color: #fff;
}

.bg-gray {
  background-color: var(--bg-gray);
}

.bg-black {
  background: var(--bg-black);
}

.color-black {
  color: #000;
}

.color-pink {
  color: var(--pink-dark);
}

.color-green {
  color: var(--green-dark);
}

/*********************
MARGIN
*********************/
.margin-intro {
  margin-bottom: 180px;
}

.margin-section {
  margin-bottom: 160px;
}

.margin-content {
  margin-bottom: 100px;
}

.margin-card {
  margin-bottom: 60px;
}

.margin-image {
  margin-bottom: 25px;
}

@media only screen and (max-width: 560px) {
  .margin-intro {
    margin-bottom: 150px;
  }

  .margin-section {
    margin-bottom: 90px;
  }

  .margin-content {
    margin-bottom: 80px;
  }

  .margin-card {
    margin-bottom: 50px;
  }

  .margin-image {
    margin-bottom: 60px;
  }
}


/*********************
ANIMATION
*********************/
.fadein {
  opacity: 0;
  transform: translateY(30px);
  transition-property: transform, opacity;
  transition-duration: 1.5s;
  transition-delay: 0s;
}

.fadein.active {
  opacity: 1;
  transform: translateY(0);
}

.delay--2 {
  transition-delay: .3s;
}

.delay--3 {
  transition-delay: .6s;
}

.delay--4 {
  transition-delay: .9s;
}


.icon-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 20px;
  background-color: var(--text-main);
  border-radius: 999px;
}

.arrow-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 12px;
  height: 12px;
  color: #fff;
  overflow: hidden;
}

/* 矢印の共通設定 */
.arrow {
  width: 10px;
  position: absolute;
  left: 50%;
  top: 50%;
  transition: transform 0.5s ease;
}

/* --- ホバーアニメーションの肝 --- */

/* 1本目：右へ消える */
.arrow-1 {
  transform: translate(-50%, -50%);
}

.border-animation-link:hover {
  opacity: 1;
}

.border-animation-link:hover .arrow-1 {
  transform: translate(150%, -50%);
}

/* 2本目：左から入ってくる */
.arrow-2 {
  transform: translate(-250%, -50%);
  transition-delay: 0.1s;
  /* 少し遅らせて追いかける演出 */
}

.border-animation-link:hover .arrow-2 {
  transform: translate(-50%, -50%);
}

/* 下線（ベース） */
.line-base {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #e5e7eb;
}

/* 下線（動く方） */
.line-active {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #000;
  transform: translateX(-101%);
  /* 左側に完全に隠す */
  transition: transform 0.5s ease-in-out;
}

/* 親がホバーされたら線をスライドさせる */
.border-animation-link:hover .line-active {
  transform: translateX(0);
}

/*********************
RESPONSIVE
*********************/
@media only screen and (min-width: 961px) {
  .tb_only {
    display: none !important;
  }

  .sp_only {
    display: none !important;
  }

  .sp_tb {
    display: none !important;
  }
}

@media only screen and (min-width: 561px) and (max-width: 960px) {
  .pc_only {
    display: none !important;
  }

  .sp_only {
    display: none !important;
  }

  .sp_pc {
    display: none !important;
  }
}

@media only screen and (max-width: 560px) {
  .pc_only {
    display: none !important;
  }

  .tb_only {
    display: none !important;
  }

  .tb_pc {
    display: none !important;
  }
}

@media only screen and (max-width: 320px) {
  html {
    font-size: .58em;
  }
}

/*********************
MAIN VISUAL
*********************/
.main-visual {
  position: relative;
  height: 100svh;
}

.main-visual .image {
  width: 100%;
  height: 100vh;
  height: 100svh;
}

.main-visual-slider .dots-wrap {
  display: flex;
  justify-content: center;
  position: absolute;
  bottom: 4rem;
  left: 3%;
}

.dots-wrap li {
  width: 8px;
  height: 8px;
  margin: 0 7px;
  border-radius: 50%;
  border: 1px solid #fff;
  cursor: pointer;
}

.dots-wrap li:hover,
.dots-wrap li.slick-active {
  background: #fff;
}

.dots-wrap li button {
  display: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  padding: 0;
  border: none;
  background-color: transparent;
}

.main-visual .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main-visual .main-visual-text {
  position: absolute;
  bottom: 160px;
  left: 0;
  color: #fff;
  width: 100%;
}

.main-visual .scroll {
  position: absolute;
  bottom: 4rem;
  right: 3%;
}

.scroll-border {
  position: relative;
  top: 20px;
  width: 1px;
  height: 200px;
  background-color: rgba(255, 255, 255, .4);
  overflow: hidden;
  margin: auto;
}

.scroll-border::before {
  content: "";
  display: block;
  position: absolute;
  width: 1px;
  height: 100px;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 1);
  animation: scrollbar 3.0s ease-in-out infinite;
  margin: auto;
}

@keyframes scrollbar {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }

  100% {
    -webkit-transform: translateY(350%);
    transform: translateY(350%);
  }
}

.main-visual .main-visual-text .main-copy {
  font-size: 32px;
  letter-spacing: var(--letter-spacing-wide);
}

.main-visual .main-visual-text p {
  letter-spacing: var(--letter-spacing-wide);
  padding-top: 2rem;
}

@media screen and (max-width: 960px) {

  .main-visual .main-visual-text .main-copy {
    font-size: 28px;
  }

  .main-visual .main-visual-text p {
    padding-top: 1.6rem;
  }
}

@media screen and (max-width: 560px) {
  section#design {
    padding-top: 120px;
  }

  .main-visual .main-visual-text {
    bottom: 80px;
  }

  .main-visual .main-visual-text .main-copy {
    font-size: 1.6rem;
  }

  .main-visual .main-visual-text p {
    font-size: 1.2rem;
    padding-top: 1rem;
  }

  .dots-wrap li {
    width: 6px;
    height: 6px;
    margin: 0 6px;
  }

  .scroll-border {
    height: 160px;
  }

  .scroll-border::before {
    height: 80px;
  }
}


/*********************
SECTION ABOUT
*********************/
section#about {
  padding-top: 180px;
}

section#about .about-title {
  font-size: 2.4rem;
}

section#about .title-accent {
  font-size: 1.2rem;
  font-family: var(--font-en);
  padding-top: 1rem;
}

section#about .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

section#about .about02 .wrap {
  flex-direction: row-reverse;
}

section#about .wrap .image {
  width: 48%;
  aspect-ratio: 5/8;
}

section#about .text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6rem;
  max-width: 360px;
}

section#about .text .border {
  width: 40px;
  height: 1px;
  background-color: var(--text-main);
}

section#about .text p {
  line-height: 2.4em;
}

section#about .about02 {
  padding-top: 260px;
}

section#about .about02 .image {
  position: relative;
  width: 53.8%;
  aspect-ratio: 560/615;
}

section#about .about02 .image .image01 {
  position: absolute;
  top: 0;
  right: 0;
  width: 71.4%;
  aspect-ratio: 4/5;
}

section#about .about02 .image .image02 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 37.6%;
  aspect-ratio: 211/316;
  z-index: 2;
}

@media screen and (max-width: 960px) {
  section#about {
    padding-top: 120px;
  }

  section#about .text {
    gap: 4rem;
  }

  section#about .wrap .image {
    aspect-ratio: 285/325;
  }

  section#about .about02 {
    padding-top: 160px;
  }

  section#about .about-title {
    font-size: 2rem;
  }
}

@media screen and (max-width: 768px) {
  section#about .wrap {
    flex-direction: column;
  }

  section#about .wrap .image {
    width: 87.7%;
    margin: auto;
  }

  section#about .text {
    gap: 2rem;
    max-width: none;
  }

  section#about .about02 .wrap {
    flex-direction: column;
  }
}

@media screen and (max-width: 560px) {
  section#about {
    padding-top: 120px;
  }

  section#about .about02 {
    padding-top: 120px;
  }

  section#about .about-title {
    font-size: 1.6rem;
  }

  section#about .title-accent {
    font-size: 1rem;
  }
}

/*********************
SECTION PARALLAX
*********************/
section.parallax {
  height: 60vh;
  overflow: hidden;
  position: relative;
  margin-top: 320px;
}

section.parallax .parallax-inner {
  width: 100%;
  height: 160%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.parallax-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 560px) {
  section.parallax {
    height: 40vh;
    margin-top: 100px;
  }
}

/*********************
SECTION PHILOSOPHY
*********************/
section#philosophy {
  padding-top: 240px;
}

section#philosophy .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

section#philosophy .wrap .image {
  width: 45.8%;
  height: auto;
}

section#philosophy .wrap .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

section#philosophy .text {
  width: 48.4%;
  align-self: center;
}

section#philosophy .text p {
  padding-top: 4rem;
  line-height: 2.4em;
  letter-spacing: var(--letter-spacing-wide);
}

section#philosophy .text .name {
  width: fit-content;
  margin-left: auto;
  letter-spacing: var(--letter-spacing-wide);
  padding-top: 2rem;
}

@media screen and (max-width: 960px) {
  section#philosophy .text p {
    padding-top: 2rem;
  }

  section#philosophy .text .name {
    padding-top: 1rem;
  }
}

@media screen and (max-width: 768px) {
  section#philosophy .wrap {
    flex-direction: column;
    gap: 4rem;
  }

  section#philosophy .wrap .image {
    width: 87.7%;
    margin: auto;
  }

  section#philosophy .text {
    width: 100%;
  }
}

@media screen and (max-width: 560px) {
  section#philosophy {
    padding-top: 120px;
  }
}

/*********************
SECTION STAFF
*********************/
section#staff {
  padding-top: 240px;
}

section#staff .wrap {
  display: flex;
  justify-content: space-between;
  gap: 7.3%;
}

section#staff .wrap .staff-list {
  flex: 1;
}

section#staff .wrap .staff-list {
  display: flex;
  justify-content: space-between;
  gap: 4.8%;
}

section#staff .wrap .staff-item {
  flex: 1;
}

section#staff .wrap .staff-item .staff-name {
  width: fit-content;
  margin-left: auto;
  text-align: right;
  padding-top: 1rem;
  line-height: 1.5em;
}

@media screen and (max-width: 768px) {
  section#staff .wrap {
    gap: 2rem;
    flex-direction: column;
  }

  section#staff .wrap .staff-list {
    gap: 2.8%;
  }
}

@media screen and (max-width: 560px) {
  section#staff {
    padding-top: 120px;
  }

  section#staff .wrap .staff-item .staff-name {
    padding-top: .5rem;
  }
}

/*********************
SECTION IMAGE-CUT
*********************/
section#image-cut {
  padding-top: 180px;
}

section#image-cut .wrap {
  display: flex;
  justify-content: right;
  gap: 0 5vw;
}

section#image-cut .wrap .image01 {
  width: 28.3%;
}

section#image-cut .wrap .image-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: clamp(30px, 5.4vw, 100px);
  width: 35.3%;
  padding-top: clamp(80px, 9vw, 162px);
}

section#image-cut .wrap .image-wrap .image02 {
  padding-right: 3vw;
}

section#image-cut .wrap .image-wrap .image03 {
  width: 72%;
}

@media screen and (max-width: 768px) {
  section#image-cut .wrap .image01 {
    width: 38.3%;
  }

  section#image-cut .wrap .image-wrap {
    width: 51.3%;
  }

  section#image-cut .wrap .image-wrap .image02 {
    padding-right: 5vw;
  }
}

@media screen and (max-width: 560px) {
  section#image-cut {
    padding-top: 120px;
  }
}

/*********************
SECTION DESIGN
*********************/
section#design {
  padding-top: 240px;
}

section#design .section-title {
  padding-bottom: 40px;
}

section#design .wrap {
  display: flex;
  align-items: center;
  gap: 13.3%;
}

.design-slider {
  width: calc(100% + (100vw - 100%) / 2);
  margin-right: calc((100vw - 100%) / -2);
  padding-bottom: 6rem;
  overflow: visible !important;
}

.design-slider .slick-slide {
  transition: all 0.4s ease;
  filter: grayscale(100%);
  padding: 0 5px;
  /* スライド間の余白 */
  transform-origin: left bottom;
  /* 左下を起点に拡大 */
  outline: none;
}

.design-slider .slick-slide.slick-current {
  filter: grayscale(0%);
  opacity: 1;
}

.design-slider .slick-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.design-slider .slick-next {
  position: absolute;
  bottom: 0;
  right: 400px;
  width: 40px;
  height: 20px;
}

.design-slider .slick-prev {
  position: absolute;
  bottom: 0;
  right: 500px;
  width: 40px;
  height: 20px;
}

@media screen and (max-width: 960px) {
  section#design .wrap {
    gap: 6.3%;
  }

  .design-slider .slick-next {
    right: 240px;
  }

  .design-slider .slick-prev {
    right: 320px;
  }
}

@media screen and (max-width: 768px) {
  section#design .wrap {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  section#design .section-title {
    padding-bottom: 0;
  }

  .design-slider {
    padding-bottom: 4rem;
  }

  .design-slider .slick-next {
    right: 40px;
  }

  .design-slider .slick-prev {
    right: 120px;
  }
}

@media screen and (max-width: 560px) {
  section#design {
    padding-top: 120px;
  }

  .design-slider .slick-next {
    right: 20px;
  }

  .design-slider .slick-prev {
    right: 90px;
  }
}

/*********************
SECTION NEWS
*********************/
section#news {
  padding-top: 240px;
}

section#news .wrap {
  display: flex;
  justify-content: space-between;
}

section#news .news-content {
  width: 71.66%;
}

.ul.news-item-list {
  display: flex;
  flex-direction: column;
}

li.news-item a {
  display: flex;
  align-items: center;
  padding: 3rem 0;
}

li.news-item a button {
  width: 40px;
  height: 20px;
}

li.news-item:first-child a {
  padding-top: 0;
}

li.news-item a dt {
  width: 160px;
  font-size: 1.6rem;
  font-weight: normal;
}

li.news-item a dd {
  display: block;
  overflow: hidden;
  flex: 1;
  font-size: 1.6rem;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.news-btn {
  display: block;
  width: 240px;
  margin-left: auto;
  margin-top: 3rem;
}

.news-btn a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-transform: capitalize;
  font-size: 1.6rem;
}

@media screen and (max-width: 960px) {
  section#news .news-content {
    width: 75.66%;
    max-width: 718px;
  }
}

@media screen and (max-width: 768px) {
  section#news .wrap {
    flex-direction: column;
  }

  section#news .news-content {
    width: 100%;
    max-width: none;
  }

  .news-item-list {
    padding-top: 4rem;
  }

  li.news-item a dt {
    width: 140px;
  }
}


@media screen and (max-width: 560px) {
  section#news {
    padding-top: 120px;
  }

  .news-item-list {
    padding-top: 2rem;
  }

  li.news-item a {
    flex-wrap: wrap;
    padding: 1.2rem 0;
  }

  li.news-item a dt {
    width: 100%;
    font-size: 1.2rem;
  }

  li.news-item a dd {
    flex: auto;
    font-size: 1.4rem;
    width: calc(100% - 60px);
    padding-top: 0.2rem;
  }

  .news-btn {
    width: 160px;
    margin-top: 1rem;
  }

  .news-btn a {
    font-size: 1.2rem;
    padding: 1.2rem 0;
  }

}

/*********************
SECTION ACCESS
*********************/
section#access {
  padding-top: 240px;
}

section#access .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

section#access .access-content {
  width: 50%;
}

section#access .access-content .access-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-top: 4rem;
}

section#access .access-content .access-item {
  display: flex;
  padding-bottom: 2rem;
  border-bottom: 1px solid #C6CCCA;
}

section#access .access-content .access-item dt {
  width: 160px;
  font-weight: normal;
}

section#access .access-content .access-item dd {
  flex: 1;
}

section#access .access-content .access-item dd.map-btn button {
  display: block;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: all ease .3s;
}

section#access .access-content .access-item dd.map-btn button:hover {
  opacity: .7;
}

section#access .access-content .access-item dd a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

section#access .access-content .access-item .icon-link {
  width: 14px;
  height: 14px;
  vertical-align: super;
  filter: brightness(0) saturate(100%) invert(24%) sepia(13%) saturate(332%) hue-rotate(109deg) brightness(93%) contrast(90%);
}

section#access .map {
  width: 41.7%;
  aspect-ratio: 1/1;
}

/* クリック部分の見た目調整 */
.parking-link {
  background: none;
  border: none;
  color: inherit;
  font-size: inherit;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
  /* リンクだとわかるように */
  display: flex;
  align-items: center;
  gap: 5px;
}

/* モーダル全体の初期状態 */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s;
}

.modal.is-active {
  opacity: 1;
  visibility: visible;
}

.modal-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}

.modal-content {
  position: relative;
  background: #F1EFE4;
  /* ベースカラーに合わせる */
  width: 90%;
  max-width: 1200px;
  max-height: 90vh;
  max-height: 90svh;
  overflow-y: auto;
  padding: 4rem;
  z-index: 2001;
  transform: translateY(20px);
  transition: all 0.4s;
}

.modal.is-active .modal-content {
  transform: translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 30px;
  background: none;
  border: none;
  cursor: pointer;
  color: #3A4340;
}

.modal-body h3 {
  font-size: 3.2rem;
  border-bottom: 1px solid var(--text-main);
}

.modal-body .wrap {
  display: flex;
  justify-content: space-between;
  padding-top: 2rem;
}

.modal-body .wrap .image {
  width: 50%;
}

.modal-body .wrap .text {
  width: 46%;
  line-height: 2.4em;
}

section#access iframe {
  width: 100%;
  height: 100%;
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
}

@media screen and (max-width: 960px) {
  section#access .access-content .access-item dt {
    width: 100px;
  }

  section#access .access-content {
    width: 50%;
  }

  section#access .map {
    width: 46%;
  }

  .modal-content {
    padding: 2rem;
  }

  .modal-body h3 {
    font-size: 2.4rem;
  }

  .modal-body .wrap {
    flex-direction: column;
    align-items: center;
    padding-top: 1rem;
  }

  .modal-body .wrap .image {
    width: 70%;
  }

  .modal-body .wrap .text {
    width: 100%;
    line-height: 2.4em;
    padding-top: 1rem;
  }
}

@media screen and (max-width: 768px) {
  section#access .wrap {
    flex-direction: column;
  }

  section#access .access-content {
    width: 100%;
  }

  section#access .map {
    width: 100%;
  }

  section#access .map {
    margin-top: 40px;
  }
}

@media screen and (max-width: 560px) {
  section#access {
    padding-top: 120px;
  }

  section#access .access-content .access-list {
    gap: 1.6rem;
    padding-top: 2rem;
  }

  section#access .access-content .access-item {
    padding-bottom: 1.6rem;
  }

  .modal-content {
    padding: 1.5rem;
  }

  .modal-close-btn {
    position: absolute;
    top: 5px;
    right: 10px;
    font-size: 24px;
  }

  .modal-body .wrap .image {
    width: 100%;
  }

  .modal-body h3 {
    font-size: 1.6rem;
  }
}

/*********************
お知らせページ
*********************/
body.wp-singular .content-single a {
  text-decoration: underline;
}