@charset "UTF-8";
:root {
  --text: #050505;
  --black: #000;
  --black-02: #070203;
  --black-03: #333;
  --gray-01: #F7F7F7;
  --gray-02: #707070;
  --gray-03: #9A9A9A;
  --gray-04: #F5F5F5;
  --gray-05: #F7F6F4;
  --green-01: #F1F4EC;
  --green-02: #92A89F;
  --green-03: #65A398;
  --green-05: #1C4937;
  --red: #B7201C;
  --purple: #43096C;
}

/*------------------------------------------------------------
	Reset
------------------------------------------------------------*/
html {
  font-size: 62.5%;
  color: var(--text);
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Yu Gothic Pr6N", "游ゴシック", "Yu Gothic", "YuGothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: var(--text);
  line-height: 1.2;
}

p {
  margin: 0;
}
p + p {
  margin-top: 1em;
}

ul, dl, figure {
  margin: 0;
  padding: 0;
}

dt {
  font-weight: normal;
}

ul:not(.uk-list), ol:not(.uk-list) {
  list-style: none;
}

a {
  color: var(--text);
  transition: 0.4s;
}
a:before, a:after {
  transition: 0.4s;
}
a:hover {
  color: var(--text);
  text-decoration: none;
}

em {
  font-style: normal;
  font-weight: normal;
  color: inherit;
}

input,
select,
textarea {
  outline: none;
  vertical-align: middle;
  font-size: 1.6rem;
}

input:not([type=checkbox]):not([type=radio]):not([type=file]):not([type=hidden]):not([type=submit]):not([type=reset]):not([type=button]):not([type=image]),
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  padding: 0.4em;
  border: 1px solid #D1D1D1;
  box-sizing: border-box;
}

button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;
  width: 100%;
  font-size: 1.5rem;
  line-height: 2;
}

address {
  margin-bottom: 0;
}

/* uk-container
====================================== */
.uk-container {
  max-width: 1220px;
}
.uk-container-small {
  max-width: 1040px;
}
.uk-container-large {
  max-width: 1325px;
}
.uk-container-expand {
  max-width: none;
}

/* reCAPTCHA
====================================== */
.grecaptcha-badge {
  visibility: hidden;
}

.sp-only {
  display: none;
}

@media only screen and (max-width: 767px) {
  .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }
}
/*≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡
// Layout .l-
≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡*/
#header {
  transition: background-color 0.3s ease-in-out;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding-left: 20px;
}
@media (min-width: 960px) {
  .header-inner {
    padding-left: 50px;
  }
}
@media (min-width: 1400px) {
  .header-inner {
    gap: 20px;
  }
}

.header-logo {
  display: flex;
  align-items: center;
  margin: 0;
  width: 102px;
  flex-shrink: 0;
  transition: 0.3s all ease-in-out;
  opacity: 1;
}
@media (min-width: 640px) {
  .header-logo {
    width: 200px;
  }
}
@media (min-width: 1400px) {
  .header-logo {
    width: 250px;
  }
}
.header-logo > a:hover {
  opacity: 0.7;
}

.header-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.header-nav-list {
  display: flex;
  font-size: 1.4rem;
  font-family: "Yu Mincho Pr6N", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "ＭＳ 明朝", "MS Mincho", serif;
}
.header-nav-list a {
  display: block;
  align-content: center;
  padding: 10px;
}
.header-nav-list a:hover {
  color: var(--green-02);
}

.header-nav-btn {
  display: block;
  width: 63px;
  aspect-ratio: 1/1;
  background: url(../img/common/ico-menu.svg) no-repeat center center/44%;
}
@media (min-width: 960px) {
  .header-nav-btn {
    width: 110px;
    background-size: 42%;
  }
}

.header-btn-01 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 63px;
  aspect-ratio: 1/1;
  gap: 0.5em;
  font-size: 0.8rem;
  font-weight: 400;
  font-family: "Classico URW", "Optima", "Segoe UI", "Calibri", "Arsenal", "Lato", "Open Sans", sans-serif;
  line-height: 1.5;
  letter-spacing: 0.15em;
  background-color: #fff;
}
@media (min-width: 960px) {
  .header-btn-01 {
    font-size: 1.4rem;
    width: 110px;
  }
}
.header-btn-01 .icon {
  display: flex;
  align-items: center;
  height: 22px;
}
@media (min-width: 960px) {
  .header-btn-01 .icon {
    height: 33px;
  }
}
.header-btn-01 .icon img {
  max-height: 100%;
}
.header-btn-01:hover {
  background-color: var(--green-01);
  color: var(--text);
}
.header-btn-01.reserve {
  background-color: var(--green-01);
}
.header-btn-01.reserve:hover {
  opacity: 0.7;
}
.header-btn-01.js-offcanvas {
  position: relative;
}
.header-btn-01.js-offcanvas::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(../img/common/ico_menu_close.svg) no-repeat center center/45%;
  background-color: #fff;
  opacity: 0;
  transition: 0.3s opacity ease-in-out;
}
.header-btn-01.js-offcanvas.uk-active::before {
  opacity: 1;
}

.js-header-hide {
  transition: 0.3s all ease-in-out;
  visibility: visible;
  opacity: 1;
}
.js-header-hide.hide {
  visibility: hidden;
  opacity: 0;
}

.footer-copyright {
  text-align: center;
  font-size: 1.4rem;
  font-family: "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "ＭＳ 明朝", "MS Mincho", serif;
  color: #fff;
  background-color: var(--green-05);
  padding: 0.6em;
}
.footer-body {
  padding-block: 40px;
  background-color: var(--green-02);
  color: #fff;
  font-size: 1.4rem;
  line-height: 1.7;
  font-family: "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "ＭＳ 明朝", "MS Mincho", serif;
}

.footer-text-01 {
  font-size: 1.6rem;
}

.footer-text-02 {
  font-size: 2.6rem;
  font-family: "Classico URW", "Optima", "Segoe UI", "Calibri", "Arsenal", "Lato", "Open Sans", sans-serif;
  letter-spacing: 0.1em;
  display: block;
  margin-top: 0.5em;
}

.footer-grid-01 {
  display: grid;
  grid-template-columns: 100%;
  gap: 9px 6px;
}
@media (min-width: 960px) {
  .footer-grid-01 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 230px;
  }
}
@media (min-width: 960px) {
  .footer-grid-01 > :nth-child(n+3) {
    grid-column: span 2;
  }
}

.footer-btn-01 {
  position: relative;
  container: footer-btn-01;
  container-type: inline-size;
  display: block;
  font-size: 1.3rem;
  font-weight: 300;
  font-family: "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "ＭＳ 明朝", "MS Mincho", serif;
  background-color: #fff;
  color: var(--text);
  border-radius: 4px;
  padding: 1em 1.8em;
  padding-right: calc(2em + 17px);
  text-align: left;
  max-width: 260px;
  margin-inline: auto;
}
@media (min-width: 960px) {
  .footer-btn-01 {
    display: block;
    max-width: unset;
    font-size: 1.4rem;
    text-align: center;
    padding: 1em;
  }
}
.footer-btn-01::after {
  content: "";
  position: absolute;
  display: block;
  width: 17px;
  top: 0;
  bottom: 0;
  right: 2em;
  background: url(../img/common/arrow_02.svg) no-repeat center/contain;
}
@media (min-width: 960px) {
  .footer-btn-01::after {
    display: none;
  }
}
.footer-btn-01:hover {
  color: var(--text);
  opacity: 0.7;
}

.footer-btn-02 {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border-radius: 50%;
  width: 60px;
  aspect-ratio: 1/1;
  color: var(--black-02);
  padding: 10px;
  box-sizing: border-box;
}
@media (min-width: 960px) {
  .footer-btn-02 {
    width: 80px;
  }
}
.footer-btn-02:hover {
  opacity: 0.7;
}

.footer-btn-03 {
  display: block;
  text-align: center;
  align-content: center;
  color: var(--text);
  background-color: #fff;
  border-radius: 40px;
  font-size: 2rem;
  font-weight: 300;
  font-family: "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "ＭＳ 明朝", "MS Mincho", serif;
  padding: 1em 0.5em;
  min-height: 80px;
  box-sizing: border-box;
}
.footer-btn-03:hover {
  color: #fff;
  background-color: var(--green-05);
}

.footer-logo {
  display: block;
  width: 185px;
  max-width: 100%;
  margin-top: 40px;
  margin-inline: auto;
}
@media (min-width: 960px) {
  .footer-logo {
    margin-left: 0;
    margin-top: 100px;
    width: -moz-max-content;
    width: max-content;
  }
}

@media (min-width: 960px) {
  .footer-panel-01 {
    display: flex;
    flex-direction: column;
    gap: 30px 60px;
  }
}
@media (min-width: 1200px) {
  .footer-panel-01 {
    flex-direction: row;
  }
}
@media (min-width: 968px) {
  .footer-panel-01 > :nth-child(2) {
    flex: 1;
  }
}

.footer-panel-02 {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 60px;
}
.footer-panel-02 > :first-child {
  flex: 1;
}

.footer-tit-01 {
  font-family: "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "ＭＳ 明朝", "MS Mincho", serif;
  font-weight: 300;
  font-size: 2.2rem;
  letter-spacing: 0.1em;
  color: inherit;
  margin: 0;
}
.footer-tit-01 > * {
  display: block;
}
.footer-tit-01 .eng {
  font-family: "Classico URW", "Optima", "Segoe UI", "Calibri", "Arsenal", "Lato", "Open Sans", sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 400;
  margin-top: 8px;
}

.footer-list-01 > li + li {
  margin-top: 1.4em;
}
.footer-list-01 a {
  color: inherit;
}
.footer-list-01 a:hover {
  color: inherit;
  opacity: 0.7;
  text-decoration: underline;
}

/* layout
------------------------------------------------------------*/
body {
  font-family: "Yu Gothic Pr6N", "游ゴシック", "Yu Gothic", "YuGothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.4rem;
  line-height: 2.2;
  min-width: 320px;
}

#to-top {
  position: fixed;
  z-index: 10;
  font-size: 1.3rem;
  line-height: 1;
  font-family: "Classico URW", "Optima", "Segoe UI", "Calibri", "Arsenal", "Lato", "Open Sans", sans-serif;
  text-transform: uppercase;
  writing-mode: vertical-lr;
  right: 10px;
  bottom: calc(51px + 5%);
  letter-spacing: 0.15em;
  background-color: #fff;
  border-radius: 36px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  padding: 1em 1.4em;
  opacity: 0;
  visibility: hidden;
}
@media (min-width: 960px) {
  #to-top {
    right: 30px;
    bottom: 5%;
  }
}
#to-top::after {
  content: "";
  display: inline-block;
  width: 11.2px;
  aspect-ratio: 1/0.5;
  background: url(../img/common/arrow_to_top.svg) no-repeat center/contain;
  vertical-align: middle;
  margin-top: 0.5em;
}
#to-top:hover {
  opacity: 0.6;
}
#to-top.uk-active {
  opacity: 1;
  visibility: visible;
}

#sp-fixed {
  position: sticky;
  overflow: hidden;
  z-index: 10;
  left: 0;
  bottom: 0;
  width: 100%;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  font-family: "Yu Mincho Pr6N", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "ＭＳ 明朝", "MS Mincho", serif;
  color: var(--black);
}
@media (min-width: 960px) {
  #sp-fixed {
    display: none;
  }
}
#sp-fixed .wrapper {
  display: flex;
  transition: 0.3s transform ease-in-out;
}
#sp-fixed .wrapper > * {
  flex: 1;
}
#sp-fixed .btn {
  display: block;
  text-align: center;
  border: 1px solid #EEEEE9;
  background-color: #fff;
  padding: 0.7em 0.5em;
}
#sp-fixed .btn.tel {
  background-color: #EEEEE9;
}
#sp-fixed .btn:hover {
  opacity: 0.6;
}

.page-offcanvas-01 {
  --header-height: 63px;
  position: fixed;
  top: var(--header-height);
  right: 0;
  width: 100%;
  max-width: 414px;
  max-height: calc(100svh - var(--header-height));
  overflow-y: scroll;
  background-color: var(--gray-01);
  z-index: 999;
  transform: translateX(100%);
  opacity: 0;
  transition: 0.3s all ease-in-out;
  font-family: "Yu Mincho Pr6N", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "ＭＳ 明朝", "MS Mincho", serif;
}
@media (min-width: 768px) {
  .page-offcanvas-01 {
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none;
  }
  .page-offcanvas-01::-webkit-scrollbar {
    display: none;
  }
}
@media (min-width: 1200px) {
  .page-offcanvas-01 {
    --header-height: 110px;
  }
}
.page-offcanvas-01.uk-active {
  transform: translateX(0);
  opacity: 1;
}

#offcanvas-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 990;
  display: none;
}
#offcanvas-overlay.uk-active {
  display: block;
}

.offcanvas-wrapper {
  padding-inline: 45px;
}

.offcanvas-body {
  padding-block: 40px;
}

.offcanvas-foot {
  padding-block: 20px 30px;
  background-color: #fff;
}

.offcanvas-nav-list {
  font-size: 1.3rem;
  letter-spacing: -0.05em;
}
.offcanvas-nav-list.small {
  font-size: 1.3rem;
}
.offcanvas-nav-list li + li {
  margin-top: 1.4em;
}

.offcanvas-nav-list-02 {
  display: flex;
  align-items: baseline;
  gap: 8px 20px;
  flex-wrap: wrap;
  width: 83%;
  margin-inline: auto;
  font-size: 1.2rem;
  letter-spacing: -0.05em;
}
.offcanvas-nav-list-02 > .uk-grid-margin {
  margin-top: 8px;
}
.offcanvas-nav-list-02 a {
  display: block;
}
.offcanvas-nav-list-02 a::after {
  content: "";
  display: inline-block;
  width: 8px;
  aspect-ratio: 1/1;
  background: url(../img/common/arrow_01.svg) no-repeat center center/contain;
  margin-left: 0.5em;
}

.offcanvas-nav-list-03 > li + li {
  margin-top: 10px;
}

.offcanvas-btn-01 {
  font-size: 1.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 0.7em;
  border-radius: 4px;
  background-color: var(--green-02);
  color: #fff;
  box-sizing: border-box;
  min-height: 50px;
  padding: 0.3em 0.5em;
}
.offcanvas-btn-01:hover {
  color: #fff;
  opacity: 0.7;
}
.offcanvas-btn-01.tel {
  font-family: "Classico URW", "Optima", "Segoe UI", "Calibri", "Arsenal", "Lato", "Open Sans", sans-serif;
  letter-spacing: 0.1em;
  font-size: 1.6rem;
  background-color: var(--green-01);
  color: var(--text);
}
.offcanvas-btn-01.tel::before {
  content: "";
  display: block;
  width: 17px;
  aspect-ratio: 1/1;
  background: url(../img/common/ico_tel.svg) no-repeat center center/contain;
}
.offcanvas-btn-01.tel:hover {
  color: var(--text);
}
.offcanvas-btn-01.website {
  font-size: 1.3rem;
  background-color: var(--green-01);
  border: 1px solid var(--gray-02);
  color: var(--text);
}

.offcanvas-btn-02 {
  font-size: 1.4rem;
  display: block;
  position: relative;
  background-color: var(--green-02);
  color: #fff;
  border-radius: 4px;
  box-sizing: border-box;
  min-height: 50px;
  padding: 0.3em 2em;
  padding-right: calc(2em + 18px);
  align-content: center;
}
.offcanvas-btn-02::after {
  content: "";
  display: block;
  position: absolute;
  width: 18px;
  top: 0;
  bottom: 0;
  right: 1em;
  background: url(../img/common/arrow_04.svg) no-repeat center/contain;
}
.offcanvas-btn-02:hover {
  background-color: var(--green-05);
  color: #fff;
}

.offcanvas-hr-01 {
  margin-block: 30px;
  border-top-color: var(--gray-02);
}

.offcanvas-text-01 {
  font-size: 1.2rem;
  line-height: 1.6;
  font-weight: 300;
}

.offcanvas-info {
  display: block;
  font-size: 1.4rem;
  line-height: 1.7;
  font-weight: 300;
  text-align: center;
  margin-block: 40px 0;
}
.offcanvas-info .strong {
  display: block;
  font-size: 114%;
  margin-bottom: 0.5em;
}

/*≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡
// Component .c-
≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡*/
/*------------------------------------------------------------
other
------------------------------------------------------------*/
.com-grid-5 {
  margin-left: -5px;
}
.com-grid-5 > * {
  padding-left: 5px;
}
.com-grid-5 > .uk-grid-margin {
  margin-top: 5px;
}

.com-card-01 {
  display: block;
  font-size: 1.4rem;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "Yu Gothic", "Yu Gothic UI", Meiryo, "Noto Sans CJK JP", "Noto Sans JP", "Helvetica Neue", Helvetica, "Segoe UI", Roboto, Arial, system-ui, -apple-system, sans-serif;
}
.com-card-01 .card-thumb {
  width: 100%;
  aspect-ratio: 1/0.67;
  -o-object-fit: cover;
  object-fit: cover;
  margin-bottom: 10px;
}
.com-card-01 .card-tit {
  font-weight: 300;
  margin-block: 0 10px;
  font-family: inherit;
}
.com-card-01 .card-info {
  display: flex;
  align-items: baseline;
  gap: 15px;
  flex-wrap: wrap;
  font-size: 1.2rem;
}
.com-card-01[href]:hover {
  opacity: 0.7;
}

.com-card-02 {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border: 1px solid var(--gray-02);
}
@media (min-width: 960px) {
  .com-card-02 {
    flex-direction: row;
  }
}
.com-card-02 .card-thumb {
  aspect-ratio: 1/0.5;
  flex-shrink: 0;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (min-width: 960px) {
  .com-card-02 .card-thumb {
    width: 35%;
    aspect-ratio: unset;
  }
}
.com-card-02 .card-body {
  flex: 1;
  align-self: center;
  padding: 20px;
}
@media (min-width: 1200px) {
  .com-card-02 .card-body {
    padding: 45px;
  }
}
.com-card-02 .card-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px 20px;
  margin-top: 8px;
}
.com-card-02 .card-btns .com-btn-02 {
  width: 165px;
}
.com-card-02 .card-time {
  font-weight: 700;
  letter-spacing: 0;
  font-size: 1.6rem;
  text-decoration: underline;
  color: #476BA6;
}
.com-card-02 .card-tit {
  margin-block: 3px 12px;
  color: var(--green-03);
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.6;
}
.com-card-02 .card-daily {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  font-size: 1.3rem;
  gap: 10px;
}
.com-card-02 .card-daily dt {
  font-weight: 700;
}
.com-card-02 .card-daily dd {
  font-size: 1.5rem;
}

.com-dl-01 .row {
  display: flex;
  align-items: baseline;
}
.com-dl-01 dt::after {
  content: "：";
}

.com-dl-02 {
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  display: grid;
  grid-template-columns: repeat(auto, 2);
}
.com-dl-02 .row {
  grid-column: span 2;
  display: grid;
  grid-template-columns: subgrid;
  gap: 1em;
}
.com-dl-02 dd {
  text-align: right;
}

.com-link-01:hover {
  opacity: 0.7;
}

.com-link-02 {
  text-decoration: underline;
}
.com-link-02:hover {
  opacity: 0.7;
}

.com-tag-01 {
  display: inline-block;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "Yu Gothic", "Yu Gothic UI", Meiryo, "Noto Sans CJK JP", "Noto Sans JP", "Helvetica Neue", Helvetica, "Segoe UI", Roboto, Arial, system-ui, -apple-system, sans-serif;
  font-weight: 300;
  font-size: 1.3rem;
  line-height: 1.3;
  text-align: center;
  color: var(--text);
  border: 1px solid var(--gray-03);
  border-radius: 26px;
  padding: 0.5em;
  min-width: 90px;
}

.com-tag-02 {
  font-size: 1.2rem;
  line-height: 1;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "Yu Gothic", "Yu Gothic UI", Meiryo, "Noto Sans CJK JP", "Noto Sans JP", "Helvetica Neue", Helvetica, "Segoe UI", Roboto, Arial, system-ui, -apple-system, sans-serif;
  display: inline-block;
  background-color: var(--gray-03);
  color: #fff;
  text-align: center;
  min-width: 83px;
  padding: 0.3em 0.1em;
}

.com-btn-01 {
  font-family: "Classico URW", "Optima", "Segoe UI", "Calibri", "Arsenal", "Lato", "Open Sans", sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.15em;
  display: block;
  width: -moz-max-content;
  width: max-content;
  position: relative;
}
.com-btn-01::before, .com-btn-01::after {
  content: "";
  display: inline-block;
  width: 70px;
  aspect-ratio: 1/1;
  background: no-repeat center/contain;
  transition: opacity 0.3s ease-in-out;
}
.com-btn-01::before {
  background-image: url(../img/common/ico_btn_01.svg);
  vertical-align: middle;
  margin-right: 25px;
}
.com-btn-01::after {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  background-image: url(../img/common/ico_btn_01_hover.svg);
}
.com-btn-01:hover::before {
  opacity: 0;
}
.com-btn-01:hover::after {
  opacity: 1;
}

.com-btn-02 {
  display: block;
  text-align: center;
  border: 1px solid var(--green-03);
  color: #fff;
  background-color: var(--green-03);
  width: 295px;
  max-width: 100%;
  box-sizing: border-box;
  font-size: 1.5rem;
  padding: 0.3em 0.5em;
}
.com-btn-02:hover {
  color: var(--green-03);
  background-color: #fff;
}
.com-btn-02.white {
  color: var(--green-03);
  background-color: #fff;
}
.com-btn-02.white:hover {
  color: #fff;
  background-color: var(--green-03);
}

.com-btn-03 {
  display: block;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
}
.com-btn-03::after {
  content: "";
  display: inline-block;
  width: 7.45px;
  aspect-ratio: 1/1;
  background: url(../img/common/arrow_01.svg) no-repeat center/contain;
  vertical-align: middle;
  margin-left: 10px;
}
.com-btn-03:hover {
  transform: scale(1.1);
}

.com-btn-04 {
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  background-color: var(--green-02);
  color: #fff;
  display: flex;
  justify-content: center;
  gap: 10px;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  box-sizing: border-box;
  padding: 0.5em 1em;
}
.com-btn-04::after {
  content: "";
  display: inline-block;
  width: 18px;
  aspect-ratio: 1/1;
  background: url(../img/common/arrow_04.svg) no-repeat center/contain;
}
.com-btn-04:hover {
  color: #fff;
  background-color: var(--green-05);
}

.com-btn-05 {
  font-size: 1.8rem;
  font-family: "Yu Mincho Pr6N", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "ＭＳ 明朝", "MS Mincho", serif;
  letter-spacing: 0.15em;
  display: block;
  width: -moz-max-content;
  width: max-content;
}
@media (min-width: 960px) {
  .com-btn-05 {
    font-size: 2.4rem;
  }
}
.com-btn-05::after {
  content: "";
  display: inline-block;
  width: 50px;
  aspect-ratio: 1/1;
  background: url(../img/common/ico_btn_01.svg) no-repeat center/contain;
  vertical-align: middle;
  margin-left: 25px;
}
@media (min-width: 960px) {
  .com-btn-05::after {
    width: 70px;
  }
}
.com-btn-05:hover::after {
  background-image: url(../img/common/ico_btn_01_hover.svg);
}

.com-btn-img-01 {
  display: block;
  width: 100%;
  overflow: hidden;
}
.com-btn-img-01 > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: 0.3s transform ease-in-out;
}
.com-btn-img-01:hover {
  opacity: 0.8;
}
.com-btn-img-01:hover img {
  transform: scale(1.1);
}

.com-bg-01 {
  background-color: var(--green-01);
}

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

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

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

.com-bg-05 {
  background-color: var(--red);
}

.com-bg-white {
  background-color: #fff;
}

[class^=com-gallery] {
  display: grid;
  gap: 5px;
}
@media (min-width: 640px) {
  [class^=com-gallery] {
    gap: 18px;
  }
}
[class^=com-gallery] > * {
  display: block;
  width: 100%;
  height: 100%;
}
[class^=com-gallery] > * img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
[class^=com-gallery] > *:is(a) {
  overflow: hidden;
}
[class^=com-gallery] > *:is(a) img {
  transition: 0.3s all ease-in-out;
}
[class^=com-gallery] > *:is(a):hover {
  opacity: 0.8;
}
[class^=com-gallery] > *:is(a):hover img {
  transform: scale(1.1);
}
[class^=com-gallery] + [class^=com-gallery] {
  margin-top: 5px;
}
@media (min-width: 640px) {
  [class^=com-gallery] + [class^=com-gallery] {
    margin-top: 18px;
  }
}

.com-gallery-01 {
  grid-template-columns: 3fr 2fr;
}
.com-gallery-01 > * {
  aspect-ratio: 1/0.58;
}
.com-gallery-01 > *:first-child {
  grid-row: span 2;
  aspect-ratio: unset;
}

.com-gallery-02 {
  grid-template-columns: 3fr 2fr;
}

.com-gallery-03 {
  grid-template-columns: 2fr 3fr;
}
.com-gallery-03 > * {
  aspect-ratio: 1/0.58;
}
.com-gallery-03 > *:nth-child(2) {
  grid-row: span 2;
  aspect-ratio: unset;
}

.com-gallery-04 {
  grid-template-columns: 2fr 3fr;
}

.com-tit-01 {
  font-size: 2rem;
  letter-spacing: 0.1em;
  font-family: "Yu Mincho Pr6N", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "ＭＳ 明朝", "MS Mincho", serif;
  margin-bottom: 3em;
}
.com-tit-01 .eng {
  display: block;
  font-size: 1.4rem;
  font-family: "Classico URW", "Optima", "Segoe UI", "Calibri", "Arsenal", "Lato", "Open Sans", sans-serif;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 0.7em;
}

.com-tit-02 {
  text-align: center;
  font-family: "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "ＭＳ 明朝", "MS Mincho", serif;
  font-size: 2.2rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  line-height: 1.68;
  margin-bottom: 3.6em;
}
.com-tit-02 .eng {
  display: block;
  text-transform: uppercase;
  font-family: "Classico URW", "Optima", "Segoe UI", "Calibri", "Arsenal", "Lato", "Open Sans", sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  line-height: 1.4;
}
.com-tit-02 .eng:first-child {
  margin-bottom: 0.5em;
}
.com-tit-02 .eng:last-child {
  margin-block: 0.5em 0;
}
@media (min-width: 960px) {
  .com-tit-02.large {
    font-size: 2.8rem;
  }
}

.com-tit-03 {
  font-size: 2.4rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  font-family: "Yu Mincho Pr6N", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "ＭＳ 明朝", "MS Mincho", serif;
  margin-bottom: 1em;
}

.com-catch-01 {
  font-size: 2.4rem;
  line-height: 1.67;
  font-family: "Yu Mincho Pr6N", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "ＭＳ 明朝", "MS Mincho", serif;
  margin-bottom: 1em;
}
@media (min-width: 960px) {
  .com-catch-01 {
    font-size: 2.8rem;
  }
}

.com-text-01 {
  font-size: 1.4rem;
  line-height: 2.2;
}
@media (min-width: 960px) {
  .com-text-01 {
    font-size: 1.6rem;
    line-height: 2.18;
  }
}

.com-sec-01 {
  padding-block: 40px;
}
@media (min-width: 960px) {
  .com-sec-01 {
    padding-block: 80px;
  }
}

.com-sec-02 {
  padding-block: 50px;
}
@media (min-width: 960px) {
  .com-sec-02 {
    padding-block: 100px;
  }
}

.com-panel-01 {
  padding: 40px;
  background-color: var(--gray-04);
}
@media (min-width: 968px) {
  .com-panel-01 {
    padding: 65px 90px;
  }
}
.com-panel-01 .tit {
  font-family: "Yu Mincho Pr6N", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "ＭＳ 明朝", "MS Mincho", serif;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0;
  margin-bottom: 1.5em;
}
.com-panel-01 .tit .eng {
  display: block;
  font-family: "Classico URW", "Optima", "Segoe UI", "Calibri", "Arsenal", "Lato", "Open Sans", sans-serif;
  font-size: 1.7rem;
  letter-spacing: 0.1em;
  color: var(--gray-03);
  margin-top: 0.7em;
}
.com-panel-01 .self-middle {
  align-self: center;
}

.com-panel-02 {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media (min-width: 960px) {
  .com-panel-02 {
    flex-direction: row;
  }
}
@media (min-width: 1200px) {
  .com-panel-02 {
    -moz-column-gap: 130px;
    column-gap: 130px;
  }
}
@media (min-width: 960px) {
  .com-panel-02 > * {
    flex: 1;
    max-width: 50%;
  }
}
.com-panel-02 .panel-img {
  position: relative;
  z-index: 2;
  aspect-ratio: 1/0.65;
}
@media (min-width: 960px) {
  .com-panel-02 .panel-img {
    order: 99;
    min-height: 450px;
  }
}
.com-panel-02 .panel-img img {
  position: absolute;
  width: 100svw;
  max-width: unset;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  left: 50%;
  transform: translateX(-50%);
}
@media (min-width: 960px) {
  .com-panel-02 .panel-img img {
    width: 50svw;
    left: 0;
    transform: unset;
  }
}
@media (min-width: 960px) {
  .com-panel-02 .panel-body {
    align-self: center;
  }
}
.com-panel-02 .panel-tit {
  font-size: 2.2rem;
  letter-spacing: 0.1em;
  font-weight: 300;
  font-family: "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "ＭＳ 明朝", "MS Mincho", serif;
  margin-bottom: 1em;
  width: -moz-max-content;
  width: max-content;
  position: relative;
  padding-bottom: 0.5em;
}
.com-panel-02 .panel-tit::before {
  content: "";
  height: 1px;
  width: 100svw;
  background-color: var(--gray-02);
  position: absolute;
  bottom: 0;
  right: 0;
}
.com-panel-02 .panel-tit .eng {
  display: block;
  font-family: "Classico URW", "Optima", "Segoe UI", "Calibri", "Arsenal", "Lato", "Open Sans", sans-serif;
  letter-spacing: 0.15em;
  font-size: 1.8rem;
  margin-top: 0.5em;
}
@media (min-width: 960px) {
  .com-panel-02.reverse .panel-img {
    order: 0;
  }
}
@media (min-width: 960px) {
  .com-panel-02.reverse .panel-img img {
    left: unset;
    right: 0;
  }
}

.com-panel-03 {
  border: 1px solid var(--green-02);
  background-color: #fff;
}
.com-panel-03 .panel-image {
  display: block;
  width: 100%;
  aspect-ratio: 1/0.26;
  min-height: 180px;
  -o-object-fit: cover;
  object-fit: cover;
}
.com-panel-03 .panel-body {
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  flex-wrap: wrap;
  padding: 15px 30px;
  gap: 20px 40px;
}
@media (min-width: 640px) {
  .com-panel-03 .panel-body {
    flex-direction: row;
    align-items: center;
  }
}
@media (min-width: 960px) {
  .com-panel-03 .panel-body {
    padding-inline: 60px;
    gap: 70px;
  }
}
.com-panel-03 .panel-body.flex-between {
  justify-content: space-between;
}
.com-panel-03 .panel-tit {
  font-size: 2.2rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  font-family: "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "ＭＳ 明朝", "MS Mincho", serif;
  margin: 0;
}
.com-panel-03 .panel-tit .eng {
  display: block;
  letter-spacing: 0.15em;
  font-family: "Classico URW", "Optima", "Segoe UI", "Calibri", "Arsenal", "Lato", "Open Sans", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  margin-top: 0.5em;
}
.com-panel-03 .btn {
  margin-inline: auto 0;
}
@media (min-width: 960px) {
  .com-panel-03 .btn {
    margin-inline: 0;
  }
}
@media (max-width: 639px) {
  .com-panel-03 .btn .com-btn-01::before {
    width: 40px;
    margin-right: 10px;
  }
}

.com-panel-04 {
  padding: 30px;
  background-color: var(--green-01);
}
@media (min-width: 960px) {
  .com-panel-04 {
    padding: 80px 40px;
  }
}

.com-grid-5 {
  margin-left: -5px;
}
.com-grid-5 > * {
  padding-left: 5px;
}
.com-grid-5 > .uk-grid-margin {
  margin-top: 5px;
}

.com-grid-10 {
  margin-left: -10px;
}
.com-grid-10 > * {
  padding-left: 10px;
}
.com-grid-10 > .uk-grid-margin {
  margin-top: 10px;
}

.com-grid-60 {
  margin-left: -60px;
}
.com-grid-60 > * {
  padding-left: 60px;
}
.com-grid-60 > .uk-grid-margin {
  margin-top: 60px;
}

.com-slider-01 .button-next,
.com-slider-01 .button-prev {
  position: absolute;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
  display: none;
  cursor: pointer;
}
@media (min-width: 640px) {
  .com-slider-01 .button-next,
  .com-slider-01 .button-prev {
    display: block;
  }
}
.com-slider-01 .button-next::before,
.com-slider-01 .button-prev::before {
  content: "";
  display: block;
  width: 25px;
  aspect-ratio: 1/1;
  background: url(../img/common/arrow_03.svg) no-repeat center/contain;
}
.com-slider-01 .button-next {
  right: 20.5%;
}
.com-slider-01 .button-prev {
  left: 20.5%;
}
.com-slider-01 .button-prev::before {
  transform: scaleX(-1);
}

.com-container-01 {
  counter-reset: head-count;
  padding-left: 50px;
}
.com-container-01 .head-tit {
  counter-increment: head-count;
  font-size: 2.4rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  font-family: "Yu Mincho Pr6N", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "ＭＳ 明朝", "MS Mincho", serif;
  margin-bottom: 1em;
}
.com-container-01 .head-tit::before {
  content: counter(head-count) ".";
  display: inline-block;
  margin-right: 10px;
  width: 40px;
  margin-left: -50px;
}

.com-txt-color-green-02 {
  color: var(--green-02) !important;
}

.com-txt-color-white {
  color: #fff !important;
}

.com-mt-s {
  margin-top: 20px;
}
@media (min-width: 640px) {
  .com-mt-s {
    margin-top: 30px;
  }
}

.com-mt-m {
  margin-top: 40px;
}
@media (min-width: 640px) {
  .com-mt-m {
    margin-top: 60px;
  }
}

.com-mt-l {
  margin-top: 90px;
}
@media (min-width: 640px) {
  .com-mt-l {
    margin-top: 120px;
  }
}

.com-mt-01 {
  margin-top: 50px;
}
@media (min-width: 960px) {
  .com-mt-01 {
    margin-top: 100px;
  }
}

.com-mt-02 {
  margin-top: 80px;
}
@media (min-width: 960px) {
  .com-mt-02 {
    margin-top: 160px;
  }
}

.com-mt-03 {
  margin-top: 40px;
}
@media (min-width: 960px) {
  .com-mt-03 {
    margin-top: 80px;
  }
}

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

.com-mt-halfem {
  margin-top: 0.5em;
}

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

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

.pt0 {
  padding-top: 0px !important;
}

.pb0 {
  padding-bottom: 0px !important;
}

.mt5 {
  margin-top: 5px !important;
}

.mb5 {
  margin-bottom: 5px !important;
}

.pt5 {
  padding-top: 5px !important;
}

.pb5 {
  padding-bottom: 5px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.pt10 {
  padding-top: 10px !important;
}

.pb10 {
  padding-bottom: 10px !important;
}

.mt15 {
  margin-top: 15px !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

.pt15 {
  padding-top: 15px !important;
}

.pb15 {
  padding-bottom: 15px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.pt20 {
  padding-top: 20px !important;
}

.pb20 {
  padding-bottom: 20px !important;
}

.mt25 {
  margin-top: 25px !important;
}

.mb25 {
  margin-bottom: 25px !important;
}

.pt25 {
  padding-top: 25px !important;
}

.pb25 {
  padding-bottom: 25px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.pt30 {
  padding-top: 30px !important;
}

.pb30 {
  padding-bottom: 30px !important;
}

.mt35 {
  margin-top: 35px !important;
}

.mb35 {
  margin-bottom: 35px !important;
}

.pt35 {
  padding-top: 35px !important;
}

.pb35 {
  padding-bottom: 35px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.pt40 {
  padding-top: 40px !important;
}

.pb40 {
  padding-bottom: 40px !important;
}

.mt45 {
  margin-top: 45px !important;
}

.mb45 {
  margin-bottom: 45px !important;
}

.pt45 {
  padding-top: 45px !important;
}

.pb45 {
  padding-bottom: 45px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.pt50 {
  padding-top: 50px !important;
}

.pb50 {
  padding-bottom: 50px !important;
}

.mt55 {
  margin-top: 55px !important;
}

.mb55 {
  margin-bottom: 55px !important;
}

.pt55 {
  padding-top: 55px !important;
}

.pb55 {
  padding-bottom: 55px !important;
}

.mt60 {
  margin-top: 60px !important;
}

.mb60 {
  margin-bottom: 60px !important;
}

.pt60 {
  padding-top: 60px !important;
}

.pb60 {
  padding-bottom: 60px !important;
}

.mt65 {
  margin-top: 65px !important;
}

.mb65 {
  margin-bottom: 65px !important;
}

.pt65 {
  padding-top: 65px !important;
}

.pb65 {
  padding-bottom: 65px !important;
}

.mt70 {
  margin-top: 70px !important;
}

.mb70 {
  margin-bottom: 70px !important;
}

.pt70 {
  padding-top: 70px !important;
}

.pb70 {
  padding-bottom: 70px !important;
}

.mt75 {
  margin-top: 75px !important;
}

.mb75 {
  margin-bottom: 75px !important;
}

.pt75 {
  padding-top: 75px !important;
}

.pb75 {
  padding-bottom: 75px !important;
}

.mt80 {
  margin-top: 80px !important;
}

.mb80 {
  margin-bottom: 80px !important;
}

.pt80 {
  padding-top: 80px !important;
}

.pb80 {
  padding-bottom: 80px !important;
}

.mt85 {
  margin-top: 85px !important;
}

.mb85 {
  margin-bottom: 85px !important;
}

.pt85 {
  padding-top: 85px !important;
}

.pb85 {
  padding-bottom: 85px !important;
}

.mt90 {
  margin-top: 90px !important;
}

.mb90 {
  margin-bottom: 90px !important;
}

.pt90 {
  padding-top: 90px !important;
}

.pb90 {
  padding-bottom: 90px !important;
}

.mt95 {
  margin-top: 95px !important;
}

.mb95 {
  margin-bottom: 95px !important;
}

.pt95 {
  padding-top: 95px !important;
}

.pb95 {
  padding-bottom: 95px !important;
}

.mt100 {
  margin-top: 100px !important;
}

.mb100 {
  margin-bottom: 100px !important;
}

.pt100 {
  padding-top: 100px !important;
}

.pb100 {
  padding-bottom: 100px !important;
}

.com-font-mincho {
  font-family: "Yu Mincho Pr6N", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "ＭＳ 明朝", "MS Mincho", serif !important;
}

.com-font-optima {
  font-family: "Classico URW", "Optima", "Segoe UI", "Calibri", "Arsenal", "Lato", "Open Sans", sans-serif !important;
}

.com-font-gothic {
  font-family: "Yu Gothic Pr6N", "游ゴシック", "Yu Gothic", "YuGothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif !important;
}

.com-pagination {
  font-family: "Lato", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-top: 100px;
}
@media (min-width: 960px) {
  .com-pagination {
    gap: 20px;
    margin-top: 150px;
  }
}
.com-pagination > ul.page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.com-pagination > ul.page-numbers .page-numbers {
  display: block;
  color: var(--gray-03);
}
.com-pagination > ul.page-numbers .page-numbers:not(.next, .prev) {
  padding-inline: 10px;
}
.com-pagination > ul.page-numbers .page-numbers:is(.next, .prev) {
  width: 40px;
  aspect-ratio: 1/1;
  position: relative;
  background: url(../img/common/ico_btn_01.svg) no-repeat center/contain;
}
.com-pagination > ul.page-numbers .page-numbers:is(.next, .prev)::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(../img/common/ico_btn_01_hover.svg) no-repeat center/contain;
  opacity: 0;
}
.com-pagination > ul.page-numbers .page-numbers:is(.next, .prev):hover::before {
  opacity: 1;
}
.com-pagination > ul.page-numbers .page-numbers:is(.prev) {
  transform: scaleX(-1);
  margin-right: 20px;
}
.com-pagination > ul.page-numbers .page-numbers:is(.next) {
  margin-left: 20px;
}
.com-pagination > ul.page-numbers .page-numbers.current {
  color: var(--purple);
  text-decoration: underline;
}
.com-pagination > ul.page-numbers .page-numbers:hover {
  color: var(--purple);
}

.com-fz-12 {
  font-size: 1.2rem;
}

.com-fz-18 {
  font-size: 1.8rem;
}

/*
------------------------------------------------------------*/
.page-img-01 {
  width: 100%;
  aspect-ratio: 1/0.44;
  -o-object-fit: cover;
  object-fit: cover;
  max-height: 640px;
  min-height: 300px;
  margin-inline: auto;
  display: block;
}
.page-img-01.small {
  max-width: 805px;
}

.page-layout-01 {
  overflow-x: hidden;
}

/*
------------------------------------------------------------*/
@media (min-width: 960px) {
  .uk-width-54\@m {
    width: 54%;
  }
}

.uk-self-middle {
  align-self: center;
}

/*≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡
// Project .p-
≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡*/
.home-kv-01 {
  --header-height: 63px;
  width: 100%;
  aspect-ratio: 1/1;
}
@media (min-width: 960px) {
  .home-kv-01 {
    height: calc(100svh - var(--header-height));
    min-height: 770px;
    aspect-ratio: unset;
  }
}
@media (min-width: 1200px) {
  .home-kv-01 {
    --header-height: 110px;
  }
}
.home-kv-01 .video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  opacity: 0.6;
}

.home-tit-01 {
  font-weight: 400;
  writing-mode: vertical-rl;
  font-family: "Yu Mincho Pr6N", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "ＭＳ 明朝", "MS Mincho", serif;
  font-size: 2.6rem;
  letter-spacing: 0.4em;
}
@media (min-width: 960px) {
  .home-tit-01 {
    writing-mode: vertical-lr;
    font-size: 3.8rem;
  }
}
.home-tit-01 .eng {
  font-size: 1.4rem;
  letter-spacing: 0.15em;
  font-family: "Classico URW", "Optima", "Segoe UI", "Calibri", "Arsenal", "Lato", "Open Sans", sans-serif;
  text-transform: uppercase;
  display: block;
  margin-block: 10px 0;
}
@media (min-width: 960px) {
  .home-tit-01 .eng {
    font-size: 2.1rem;
    margin-block: 0 20px;
  }
}
.home-tit-01 .jp {
  display: block;
}
.home-tit-01 .jp > * {
  display: inline-block;
}
@media (max-width: 959px) {
  .home-tit-01 .jp > :not(:first-child) {
    margin-right: 10px;
  }
}
.home-tit-01 .jp > :last-child {
  margin-top: 2.5em;
}
@media (min-width: 960px) {
  .home-tit-01 .jp > :last-child {
    margin-top: 1.3em;
  }
}

@media (min-width: 960px) {
  .home-text-01 {
    max-width: 485px;
  }
}

.home-catch-01 {
  font-size: 2.4rem;
  letter-spacing: 0.1em;
  font-family: "Classico URW", "Optima", "Segoe UI", "Calibri", "Arsenal", "Lato", "Open Sans", sans-serif;
  margin-bottom: 40px;
}
@media (min-width: 960px) {
  .home-catch-01 {
    margin-bottom: 60px;
  }
}
.home-catch-01 .sub {
  display: block;
  font-size: 1.6rem;
  letter-spacing: 0;
  font-family: "Yu Mincho Pr6N", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "ＭＳ 明朝", "MS Mincho", serif;
}

.home-panel-01 {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (min-width: 960px) {
  .home-panel-01 {
    gap: 50px;
  }
}
.home-panel-01 .tit {
  flex: 1;
}
@media (min-width: 960px) {
  .home-panel-01 .tit {
    order: 999;
  }
}
.home-panel-01 .image {
  width: 52%;
}
@media (min-width: 960px) {
  .home-panel-01 .image {
    width: 62%;
  }
}

.home-panel-02 {
  display: flex;
  flex-direction: column;
}
@media (min-width: 960px) {
  .home-panel-02 {
    flex-direction: row;
    background-color: var(--green-01);
  }
}
.home-panel-02 .panel-img {
  width: 100%;
  aspect-ratio: 1/0.65;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (min-width: 960px) {
  .home-panel-02 .panel-img {
    order: 999;
    width: 50%;
    aspect-ratio: unset;
  }
}
.home-panel-02 .panel-cont {
  padding-inline: 15px;
  padding-block: 60px 0;
  flex: 1;
}
@media (min-width: 640px) {
  .home-panel-02 .panel-cont {
    padding-inline: 30px;
  }
}
@media (min-width: 960px) {
  .home-panel-02 .panel-cont {
    padding: 70px 95px;
    align-self: center;
  }
}

.home-panel-03 {
  padding: 60px 15px 80px;
  display: flex;
  flex-direction: column;
  gap: 60px 0;
  background-color: var(--green-01);
}
@media (min-width: 640px) {
  .home-panel-03 {
    padding-inline: 30px;
  }
}
@media (min-width: 960px) {
  .home-panel-03 {
    padding: 0;
    flex-direction: row;
    justify-content: flex-end;
  }
}
.home-panel-03 .panel-img {
  width: 100%;
  aspect-ratio: 1/0.73;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (min-width: 960px) {
  .home-panel-03 .panel-img {
    order: 999;
    width: 52.6%;
    aspect-ratio: unset;
  }
}
@media (min-width: 960px) {
  .home-panel-03 .panel-cont {
    padding: 50px;
    max-width: 430px;
    align-self: center;
  }
}

@media (min-width: 960px) {
  .home-panel-04 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-areas: "body body head" "body body foot";
    -moz-column-gap: 5%;
    column-gap: 5%;
  }
}
@media (min-width: 960px) {
  .home-panel-04 .head {
    grid-area: head;
  }
}
.home-panel-04 .head > :last-child {
  margin-bottom: 0;
}
.home-panel-04 .body {
  width: 78.1%;
  margin-inline: auto;
}
@media (min-width: 960px) {
  .home-panel-04 .body {
    grid-area: body;
    width: auto;
  }
}
@media (min-width: 960px) {
  .home-panel-04 .foot {
    grid-area: foot;
  }
}

.home-panel-05 {
  background-color: #fff;
  padding: 45px 30px 20px;
}
@media (min-width: 960px) {
  .home-panel-05 {
    background-color: unset;
    padding: 0;
  }
}
@media (min-width: 960px) {
  .home-panel-05 .panel-body {
    background-color: #fff;
    padding: 30px 60px;
  }
}
.home-panel-05 .panel-tit {
  font-family: "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "ＭＳ 明朝", "MS Mincho", serif;
  font-size: 1.8rem;
  font-weight: 300;
  text-align: center;
  display: flex;
  gap: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.6em;
}
@media (min-width: 960px) {
  .home-panel-05 .panel-tit {
    flex-direction: row;
    justify-content: flex-start;
    margin-bottom: 0.5em;
  }
}
.home-panel-05 .panel-tag {
  font-family: "Yu Mincho Pr6N", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "ＭＳ 明朝", "MS Mincho", serif;
  display: inline-block;
  border: 1px solid var(--green-05);
  background-color: var(--green-01);
  padding: 0.2em 0.5em;
  line-height: 1.1;
  border-radius: 4px;
  margin-inline: 4px;
}
.home-panel-05 .panel-strong {
  font-size: 2.4rem;
  letter-spacing: 0.1em;
}
.home-panel-05 .panel-btn {
  font-size: 1.4rem;
  font-family: "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "ＭＳ 明朝", "MS Mincho", serif;
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: var(--green-01);
  border-radius: 4px;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  padding: 0.7em 1.8em;
}
@media (min-width: 960px) {
  .home-panel-05 .panel-btn {
    background-color: #fff;
  }
}
.home-panel-05 .panel-btn::after {
  content: "";
  display: inline-block;
  width: 18px;
  aspect-ratio: 1/1;
  background: url(../img/common/arrow_02.svg) no-repeat center/contain;
}
.home-panel-05 .panel-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 30px;
}

@media (min-width: 960px) {
  .home-container-01 {
    max-width: 520px;
    margin-left: 0;
  }
}
@media (min-width: 960px) {
  .home-container-01.remove-pl {
    padding-left: 0;
  }
}

@media (max-width: 959px) {
  .home-container-02 {
    padding: 0;
  }
}

.home-video-01 {
  width: 100%;
  aspect-ratio: 1/0.5;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (min-width: 960px) {
  .home-video-01 {
    aspect-ratio: 1/0.56;
  }
}

.home-card-01 {
  width: 100%;
  max-width: 414px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 1.2rem;
  line-height: 1.2;
  letter-spacing: 0.15em;
  font-family: "Classico URW", "Optima", "Segoe UI", "Calibri", "Arsenal", "Lato", "Open Sans", sans-serif;
}
.home-card-01 figcaption {
  flex: 1;
}

.home-card-02 {
  display: flex;
  flex-direction: column;
  gap: 20px 50px;
  font-size: 1.4rem;
  line-height: 2;
}
@media (min-width: 960px) {
  .home-card-02 {
    max-width: 520px;
    flex-direction: row;
    align-items: flex-start;
  }
}
.home-card-02 .card-thumb {
  aspect-ratio: 1/1;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (min-width: 960px) {
  .home-card-02 .card-thumb {
    aspect-ratio: 1/0.75;
    width: 34.6%;
  }
}
.home-card-02 .card-cont {
  flex: 1;
}
.home-card-02 .date {
  display: block;
}
.home-card-02 .tag {
  margin-bottom: 15px;
}
.home-sec-01 {
  padding-block: 0 80px;
}
@media (min-width: 960px) {
  .home-sec-01 {
    padding-top: 35px;
  }
}

.home-img-01 {
  width: 100%;
  aspect-ratio: 1/0.65;
  -o-object-fit: cover;
  object-fit: cover;
}

.home-img-02 {
  width: 100%;
  aspect-ratio: 1/0.54;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (min-width: 960px) {
  .home-img-02 {
    aspect-ratio: 1/0.4;
  }
}

.home-img-03 {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.home-img-03 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: 0.3s all ease-in-out;
}
.home-img-03[href] {
  display: block;
}
.home-img-03[href]:hover img {
  transform: scale(1.1);
  opacity: 0.7;
}

.home-img-04 {
  display: block;
  width: 100%;
  aspect-ratio: 1/0.26;
  max-height: 155px;
  -o-object-fit: cover;
  object-fit: cover;
}

.home-list-01 {
  text-align: center;
}
@media (min-width: 960px) {
  .home-list-01 {
    max-width: 411px;
    margin-inline: auto 0;
  }
}
.home-list-01 > :not(:last-child) {
  margin-bottom: 20px;
}

.home-grid-01 > .uk-grid-margin {
  margin-top: 80px;
}

.home-grid-02 > .uk-grid-margin {
  margin-top: 60px;
}

.home-link-01 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Classico URW", "Optima", "Segoe UI", "Calibri", "Arsenal", "Lato", "Open Sans", sans-serif;
  font-size: 2rem;
  letter-spacing: 0.15em;
}
.home-link-01[href]:hover {
  color: var(--green-05);
  opacity: 0.7;
}

.home-map-01 {
  width: 100%;
  aspect-ratio: 1/0.31;
}
.home-map-01 iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.home-logo-01 {
  font-size: 1.6rem;
  margin-bottom: 2.5em;
  font-family: "Yu Mincho Pr6N", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "ＭＳ 明朝", "MS Mincho", serif;
}
@media (min-width: 960px) {
  .home-logo-01 {
    margin-bottom: 1.25em;
  }
}

@media (min-width: 960px) {
  .home-slider-01 {
    display: flex;
    gap: 20px;
  }
}
@media (min-width: 960px) {
  .home-slider-01 .main-slider {
    flex: 1;
  }
}
.home-slider-01 .main-slider img {
  width: 100%;
  aspect-ratio: 1/0.53;
  -o-object-fit: cover;
  object-fit: cover;
}
.home-slider-01 .slider-pagination {
  --swiper-pagination-bullet-width: 29px;
  --swiper-pagination-bullet-height: 2px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 25px;
}
@media (min-width: 960px) {
  .home-slider-01 .slider-pagination {
    display: none;
  }
}
.home-slider-01 .slider-pagination .swiper-pagination-bullet {
  border-radius: 3px;
}
.home-slider-01 .slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  --swiper-theme-color: var(--green-05);
}
.home-slider-01 .sub-slider {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.home-slider-01 .sub-slider img {
  width: 100%;
  aspect-ratio: 1/0.48;
  -o-object-fit: cover;
  object-fit: cover;
  transition: opacity 0.3s ease-in-out;
}
.home-slider-01 .sub-slider .swiper-slide-thumb-active img {
  opacity: 0.6;
}
.home-slider-01 .wrapper {
  position: relative;
  display: none;
}
@media (min-width: 960px) {
  .home-slider-01 .wrapper {
    width: 20%;
    display: block;
  }
}

.celemony-mt-01 {
  margin-top: 100px;
}
@media (min-width: 960px) {
  .celemony-mt-01 {
    margin-top: 160px;
  }
}

.celemony-img-01 {
  width: 100%;
  aspect-ratio: 1/0.467;
  -o-object-fit: cover;
  object-fit: cover;
}

.celemony-img-02 {
  width: 80%;
  aspect-ratio: 1/0.622;
  -o-object-fit: cover;
  object-fit: cover;
}

.celemony-img-03 {
  width: 100%;
  aspect-ratio: 1/0.34;
  -o-object-fit: cover;
  object-fit: cover;
}

.celemony-img-04 {
  position: relative;
}
@media (min-width: 960px) {
  .celemony-img-04 {
    width: calc(100% + 40px);
    margin-left: -40px;
  }
}
@media (min-width: 1220px) {
  .celemony-img-04 {
    width: calc(100% + (100svw - 1220px) / 2);
    margin-left: calc((100svw - 1220px) / 2 * -1);
  }
}
@media (min-width: 1220px) {
  .celemony-img-04 img {
    display: block;
    width: 100%;
  }
}
@media (min-width: 960px) {
  .celemony-img-04.reverse {
    margin-right: -40px;
  }
}
@media (min-width: 1220px) {
  .celemony-img-04.reverse {
    margin-left: unset;
    margin-right: calc((100svw - 1220px) / 2 * -1);
  }
}

.celemony-tit-01 {
  font-family: "Yu Mincho Pr6N", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "ＭＳ 明朝", "MS Mincho", serif;
  font-size: 2rem;
  line-height: 2;
  letter-spacing: 0.2em;
  font-weight: 400;
  color: var(--black-03);
  margin-bottom: 2em;
}
@media (min-width: 960px) {
  .celemony-tit-01 {
    margin-bottom: 4em;
  }
}

.celemony-tit-02 {
  width: -moz-max-content;
  width: max-content;
  max-width: center;
  box-sizing: border-box;
  margin-inline: auto;
  margin-bottom: 2.2em;
  background-color: #fff;
  border: 1px solid var(--gray-02);
  padding: 0.5em 2em;
  font-size: 1.8rem;
  line-height: 1.4;
  letter-spacing: 0.15em;
  font-family: "Classico URW", "Optima", "Segoe UI", "Calibri", "Arsenal", "Lato", "Open Sans", sans-serif;
}

@media (min-width: 960px) {
  .celemony-panel-01 {
    max-width: 485px;
    margin-inline: auto 0;
  }
}

@media (min-width: 960px) {
  .celemony-panel-02 {
    margin-inline: 0 auto;
    max-width: 433px;
  }
}

.celemony-list-01 {
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  font-family: "Yu Mincho Pr6N", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "ＭＳ 明朝", "MS Mincho", serif;
}
.celemony-list-01 li + li {
  margin-top: 1.2em;
}

.celemony-container-01 {
  max-width: 600px;
}

.celemony-card-01 .thumb {
  width: 100%;
  aspect-ratio: 1/0.64;
  -o-object-fit: cover;
  object-fit: cover;
}
.celemony-card-01 .caption {
  text-align: center;
  font-size: 1.6rem;
  font-family: "Yu Mincho Pr6N", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "ＭＳ 明朝", "MS Mincho", serif;
  letter-spacing: 0.2em;
  margin-top: 5px;
}

.celemony-grid-01 {
  margin-left: -15px;
}
.celemony-grid-01 > * {
  padding-left: 15px;
}
.celemony-grid-01 > .uk-grid-margin {
  margin-top: 30px;
}
@media (min-width: 960px) {
  .celemony-grid-01 > .uk-grid-margin {
    margin-top: 60px;
  }
}

.garden-card-01 {
  color: var(--black-03);
}
.garden-card-01 .card-image {
  width: 100%;
  aspect-ratio: 1/0.633;
  -o-object-fit: cover;
  object-fit: cover;
}
.garden-card-01 .card-caption {
  text-align: center;
  letter-spacing: 0.2em;
  font-size: 1.6rem;
  font-family: "Yu Mincho Pr6N", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "ＭＳ 明朝", "MS Mincho", serif;
  margin-top: 1em;
}

.temple-tit-01 {
  font-size: 2.2rem;
  font-family: "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "ＭＳ 明朝", "MS Mincho", serif;
  letter-spacing: 0.1em;
  margin-bottom: 2.5em;
  font-weight: 300;
}
.temple-tit-01 small {
  display: inline-block;
  margin-left: 0.8em;
  font-size: 72%;
}

.temple-text-01 {
  font-family: "Yu Mincho Pr6N", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "ＭＳ 明朝", "MS Mincho", serif;
  letter-spacing: 0.05em;
}
.temple-text-01::before {
  content: url(../img/common/ico_mark.svg);
  display: inline-block;
  margin-right: 0.6em;
}

.banquet-card-01 {
  display: block;
}
.banquet-card-01 .card-thumb {
  width: 100%;
  aspect-ratio: 1/0.64;
  -o-object-fit: cover;
  object-fit: cover;
  margin-bottom: 15px;
}
.banquet-card-01 .card-tit {
  margin-bottom: 5px;
}
.banquet-card-01[href]:hover {
  transform: translateY(-10px);
}

.banquet-video-01 {
  width: 100%;
  max-width: 695px;
  aspect-ratio: 1/0.58;
  -o-object-fit: cover;
  object-fit: cover;
  margin-inline: auto;
  display: block;
}

.banquet-panel-01 {
  border: 1px solid var(--gray-02);
  padding: 2.5em;
}
@media (min-width: 960px) {
  .banquet-panel-01 {
    padding: 5.7em;
  }
}
.banquet-panel-01 .panel-tit {
  margin-bottom: 1.8em;
}

.banquet-list-01 {
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  gap: 20px 30px;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  font-weight: 400;
  font-family: "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "ＭＳ 明朝", "MS Mincho", serif;
}
@media (min-width: 960px) {
  .banquet-list-01 {
    gap: 30px;
    justify-content: center;
  }
}
.banquet-list-01 > li {
  width: calc((100% - 30px) / 2);
}
@media (min-width: 640px) {
  .banquet-list-01 > li {
    width: calc((100% - 60px) / 3);
  }
}
@media (min-width: 960px) {
  .banquet-list-01 > li {
    width: auto;
  }
}
.banquet-list-01 .list-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  aspect-ratio: 1/1;
  margin-inline: auto;
}
@media (min-width: 960px) {
  .banquet-list-01 .list-icon {
    width: 80px;
  }
}

.banquet-btn-01 {
  margin-inline: auto 0;
}
@media (min-width: 960px) {
  .banquet-btn-01 {
    margin-right: 100px;
  }
}

.report-grid-margin-01 > .uk-grid-margin {
  margin-top: 40px;
}
@media (min-width: 960px) {
  .report-grid-margin-01 > .uk-grid-margin {
    margin-top: 80px;
  }
}

.report-container-01 {
  max-width: 940px;
}

.report-tit-01 {
  font-size: 1.8rem;
  letter-spacing: 0.2em;
  line-height: 2;
  font-weight: 400;
  font-family: "Yu Mincho Pr6N", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "ＭＳ 明朝", "MS Mincho", serif;
  margin-bottom: 2rem;
}
@media (min-width: 960px) {
  .report-tit-01 {
    font-size: 2rem;
  }
}
@media (min-width: 1200px) {
  .report-tit-01.mb-large {
    margin-bottom: 4em;
  }
}

.report-tit-02 {
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  line-height: 2;
  padding-bottom: 0.5em;
  text-align: center;
  font-family: "Yu Mincho Pr6N", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "ＭＳ 明朝", "MS Mincho", serif;
  margin-bottom: 3.5em;
}
.report-tit-02::after {
  content: "";
  display: block;
  width: 50%;
  max-width: 300px;
  height: 1px;
  background-color: var(--gray-02);
  margin-inline: auto;
}

.report-tit-03 {
  font-size: 1.6rem;
  letter-spacing: 0.2em;
  font-weight: 400;
  font-family: "Yu Mincho Pr6N", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "ＭＳ 明朝", "MS Mincho", serif;
  margin-bottom: 2em;
}

.report-img-01 {
  --wrapper: 1040px;
}
@media (min-width: 1040px) {
  .report-img-01 {
    width: calc(100% + (100svw - var(--wrapper)) / 2);
    margin-left: calc((100svw - var(--wrapper)) / 2 * -1);
  }
}
.report-img-01 img {
  width: 100%;
}

.report-img-02 {
  letter-spacing: 0.2em;
}
.report-img-02 figcaption {
  margin-top: 10px;
}

[class*=report-gallery] img {
  aspect-ratio: 1/0.71;
  -o-object-fit: cover;
  object-fit: cover;
}

[class^=report-gallery-] {
  display: flex;
  flex-wrap: wrap;
}
[class^=report-gallery-] .image {
  display: block;
  width: 100%;
  overflow: hidden;
}
[class^=report-gallery-] .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: 0.3s all ease-in-out;
}
[class^=report-gallery-] .image:hover img {
  transform: scale(1.1);
}

.report-gallery-01 .image {
  aspect-ratio: 1/0.5;
}

.report-gallery-02 .image:first-child {
  width: 100%;
  aspect-ratio: 1/0.5;
}
.report-gallery-02 .image:not(:first-child) {
  width: 50%;
  aspect-ratio: 3/2;
}

.report-gallery-03 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(3, 1fr);
}
.report-gallery-03 .image:first-child, .report-gallery-03 .image:nth-child(3) {
  grid-row: span 2;
}

.report-video-01 {
  width: 770px;
  max-width: 100%;
  margin-inline: auto;
  aspect-ratio: 1/0.53;
}
.report-video-01 iframe {
  width: 100% !important;
  height: 100% !important;
  -o-object-fit: cover;
  object-fit: cover;
}

.report-panel-01 {
  background-color: var(--gray-01);
  padding: 50px;
}
@media (min-width: 960px) {
  .report-panel-01 {
    padding-block: 100px;
  }
}

.report-panel-02 {
  border: 1px solid var(--gray-03);
  background-color: #fff;
  padding: 50px;
}
@media (min-width: 960px) {
  .report-panel-02 {
    padding-top: 100px;
  }
}

.cuisine-panel-01 {
  --img-size: 71%;
  overflow: hidden;
}
.cuisine-panel-01 .panel-head {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 960px) {
  .cuisine-panel-01 .panel-head {
    flex-direction: row;
    justify-content: flex-end;
  }
}
.cuisine-panel-01 .panel-tit {
  position: relative;
  font-weight: 400;
  font-size: 2.4rem;
  letter-spacing: 0.1em;
  font-family: "Yu Mincho Pr6N", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "ＭＳ 明朝", "MS Mincho", serif;
  text-align: center;
}
@media (min-width: 960px) {
  .cuisine-panel-01 .panel-tit {
    text-align: right;
  }
}
@media (min-width: 960px) {
  .cuisine-panel-01 .panel-tit::after {
    content: "";
    display: block;
    position: absolute;
    top: calc(100% + 30px);
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 100svh;
    background-color: var(--gray-02);
  }
}
.cuisine-panel-01 .panel-tit .count {
  display: block;
  text-transform: uppercase;
  font-family: "Classico URW", "Optima", "Segoe UI", "Calibri", "Arsenal", "Lato", "Open Sans", sans-serif;
  font-size: 2rem;
  margin-bottom: 5px;
}
.cuisine-panel-01 .panel-tit .count .num {
  font-size: 4.5rem;
  display: inline-block;
  margin-left: 10px;
  vertical-align: middle;
}
.cuisine-panel-01 .panel-body {
  margin-top: 40px;
}
@media (min-width: 960px) {
  .cuisine-panel-01 .panel-body {
    margin-top: 77px;
    width: 57.6%;
    margin-left: calc(100% - var(--img-size));
  }
}
.cuisine-panel-01 .panel-foot {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 40px;
}
@media (min-width: 960px) {
  .cuisine-panel-01 .panel-foot {
    margin-top: 80px;
    justify-content: center;
  }
}
.cuisine-panel-01 .panel-foot > li {
  width: clamp(90px, 30%, 200px);
}
.cuisine-panel-01 .panel-img {
  aspect-ratio: 1/0.52;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (min-width: 960px) {
  .cuisine-panel-01 .panel-img {
    width: var(--img-size);
  }
}
@media (min-width: 960px) {
  .cuisine-panel-01.reserve .panel-head {
    justify-content: flex-start;
  }
}
@media (min-width: 960px) {
  .cuisine-panel-01.reserve .panel-tit {
    order: 99;
    text-align: left;
  }
}
@media (min-width: 960px) {
  .cuisine-panel-01.reserve .panel-body {
    margin-left: auto;
    margin-right: calc(100% - var(--img-size));
  }
}
.cuisine-panel-01 + .cuisine-panel-01 {
  margin-top: 70px;
}
@media (min-width: 960px) {
  .cuisine-panel-01 + .cuisine-panel-01 {
    margin-top: 100px;
  }
}

.cuisine-panel-02 {
  background-color: var(--gray-04);
  display: flex;
  flex-direction: column;
}
@media (min-width: 960px) {
  .cuisine-panel-02 {
    flex-direction: row;
  }
}
.cuisine-panel-02 .panel-img {
  width: 100%;
  aspect-ratio: 1/0.4;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (min-width: 960px) {
  .cuisine-panel-02 .panel-img {
    order: 99;
    aspect-ratio: 1/0.5;
    width: 37.5%;
  }
}
.cuisine-panel-02 .panel-tit {
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  box-sizing: border-box;
  margin-inline: auto;
  text-align: center;
  font-size: 2rem;
  letter-spacing: 0.2em;
  line-height: 2;
  font-family: "Yu Mincho Pr6N", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "ＭＳ 明朝", "MS Mincho", serif;
  margin-bottom: 2em;
}
.cuisine-panel-02 .panel-tit .eng {
  display: block;
}
.cuisine-panel-02 .panel-body {
  padding: 2em;
}
@media (min-width: 960px) {
  .cuisine-panel-02 .panel-body {
    flex: 1;
    align-self: center;
    padding: 3em 7em;
  }
}
@media (min-width: 960px) {
  .cuisine-panel-02.reverse .panel-body {
    order: 99;
  }
}

.cuisine-panel-03 {
  border: 1px solid var(--gray-02);
  background-color: #fff;
  padding: 2em 3em;
}
@media (min-width: 960px) {
  .cuisine-panel-03 {
    padding: 5.3em 7em;
  }
}
.cuisine-panel-03 .panel-head {
  margin-bottom: 60px;
  font-family: "Yu Mincho Pr6N", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "ＭＳ 明朝", "MS Mincho", serif;
}
.cuisine-panel-03 .panel-body {
  font-size: 1.2rem;
  line-height: 1.67;
}
.cuisine-panel-03 .panel-catch {
  font-size: 2rem;
  line-height: 2;
  letter-spacing: 0.2em;
  text-decoration: underline;
  margin-bottom: 2em;
}
.cuisine-panel-03 .panel-sub {
  font-size: 1.4rem;
  letter-spacing: 0.2em;
}

.cuisine-tit-01 {
  font-size: 2rem;
  line-height: 2;
  letter-spacing: 0.2em;
  font-family: "Yu Mincho Pr6N", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "ＭＳ 明朝", "MS Mincho", serif;
  margin-bottom: 1.5em;
}
@media (min-width: 960px) {
  .cuisine-tit-01 {
    margin-bottom: 3.75em;
  }
}

.cuisine-img-01 {
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
  object-fit: cover;
}

.faq-panel-01 {
  font-size: 1.4rem;
}
.faq-panel-01 .head {
  display: flex;
  flex-wrap: wrap;
  letter-spacing: 0.1em;
  font-weight: 600;
  font-family: "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "ＭＳ 明朝", "MS Mincho", serif;
  gap: 10px;
}
.faq-panel-01 .head li {
  width: calc((100% - 10px) / 2);
}
@media (min-width: 640px) {
  .faq-panel-01 .head li {
    width: calc((100% - 20px) / 3);
  }
}
@media (min-width: 960px) {
  .faq-panel-01 .head li {
    width: auto;
  }
}
.faq-panel-01 .head a {
  display: block;
  border: 1px solid var(--green-02);
  background-color: #fff;
  height: 100%;
  box-sizing: border-box;
  align-content: center;
  text-align: center;
  padding: 1em 1.4em;
}
.faq-panel-01 .head .uk-active a {
  border-color: var(--green-01);
  background-color: var(--green-01);
}
.faq-panel-01 .body {
  padding: 2em 1em;
  background-color: var(--green-01);
}
@media (min-width: 960px) {
  .faq-panel-01 .body {
    padding-block: 7.4em;
  }
}

.faq-panel-02 {
  --icon: 30px;
  --icon-space: 15px;
}
.faq-panel-02 > :is(dt, dd) {
  padding-left: calc(1.5em + var(--icon) + var(--icon-space)) !important;
}
@media (min-width: 640px) {
  .faq-panel-02 > :is(dt, dd) {
    --icon: 50px;
    --icon-space: 25px;
    padding-left: calc(3.5em + var(--icon) + var(--icon-space)) !important;
  }
}
.faq-panel-02 > :is(dt, dd)::before {
  content: "";
  display: inline-block;
  width: var(--icon);
  aspect-ratio: 1/1;
  align-content: center;
  text-align: center;
  text-transform: uppercase;
  font-family: "Classico URW", "Optima", "Segoe UI", "Calibri", "Arsenal", "Lato", "Open Sans", sans-serif;
  font-size: 2rem;
  line-height: 1;
  margin-left: calc((var(--icon) + var(--icon-space)) * -1);
  margin-right: var(--icon-space);
}
@media (min-width: 640px) {
  .faq-panel-02 > :is(dt, dd)::before {
    font-size: 2.8rem;
  }
}
.faq-panel-02 > dt {
  background-color: #fff;
  padding: 10px 1em;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  cursor: pointer;
}
@media (min-width: 640px) {
  .faq-panel-02 > dt {
    padding-right: 4em;
  }
}
.faq-panel-02 > dt::before {
  content: "Q";
}
.faq-panel-02 > dt::after {
  content: "";
  display: none;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 2em;
  width: 18.5px;
  background: url(../img/common/arrow_05.svg) no-repeat center/contain;
  transition: 0.3s all ease-in-out;
}
@media (min-width: 640px) {
  .faq-panel-02 > dt::after {
    display: block;
  }
}
.faq-panel-02 > dt.uk-active::after {
  transform: scaleY(-1);
}
.faq-panel-02 > dd {
  padding: 1.5em 1em;
  display: none;
}
.faq-panel-02 > dd::before {
  content: "A";
  background-color: var(--green-05);
  color: #fff;
}
.faq-panel-02 + .faq-panel-02 {
  margin-top: 1.5em;
}

.history-panel-01 {
  border: 1px solid var(--gray-02);
  background-color: #fff;
  padding: 8em 2em;
}

.history-dl-01 .row {
  display: flex;
  align-items: baseline;
  gap: 5%;
}
.history-dl-01 .row > dt {
  width: 20%;
  font-size: 2rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-family: "Classico URW", "Optima", "Segoe UI", "Calibri", "Arsenal", "Lato", "Open Sans", sans-serif;
  font-weight: 400;
}
.history-dl-01 .row > dd {
  flex: 1;
}
.history-dl-01 .row + .row {
  margin-top: 40px;
}
@media (min-width: 960px) {
  .history-dl-01 .row + .row {
    margin-top: 90px;
  }
}
.history-dl-01 p + p {
  margin-top: 1.5em;
}

.history-text-01 {
  font-size: 1.8rem;
  line-height: 2.5;
}

.terms-panel-01 {
  border: 1px solid var(--gray-02);
  background-color: #fff;
  padding: 1.5em;
  line-height: 1.6;
  letter-spacing: 0.1em;
}
@media (min-width: 640px) {
  .terms-panel-01 {
    padding: 2.8em 1.5em;
  }
}
.terms-panel-01 .tit {
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 1.3em;
  font-family: "Yu Mincho Pr6N", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "ＭＳ 明朝", "MS Mincho", serif;
}

.luxury-tit-01 {
  font-size: 3.4rem;
  font-family: "Yu Mincho Pr6N", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "ＭＳ 明朝", "MS Mincho", serif;
  letter-spacing: 0.1em;
  margin-bottom: 1.5em;
}
@media (min-width: 960px) {
  .luxury-tit-01 {
    margin-bottom: 3.5em;
  }
}
.luxury-tit-01 .row {
  display: block;
}
.luxury-tit-01 .row + .row {
  margin-top: 1em;
}
@media (min-width: 960px) {
  .luxury-tit-01 .row + .row {
    padding-left: 3em;
  }
}
@media (min-width: 1200px) {
  .luxury-tit-01 .row + .row {
    padding-left: 6em;
  }
}
.luxury-tit-01 .strong {
  font-size: 5rem;
}

.luxury-tit-02 {
  position: relative;
  font-size: 2.2rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  font-family: "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "ＭＳ 明朝", "MS Mincho", serif;
  line-height: 1.5;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  box-sizing: border-box;
  padding-bottom: 0.6em;
  margin-bottom: 2.3em;
}
.luxury-tit-02::after {
  content: "";
  display: block;
  width: 150svw;
  height: 1px;
  background-color: var(--gray-02);
  position: absolute;
  right: -1em;
  bottom: 0;
}
.luxury-tit-02 span.eng {
  display: block;
  letter-spacing: 0.15em;
  font-size: 81%;
  font-family: "Classico URW", "Optima", "Segoe UI", "Calibri", "Arsenal", "Lato", "Open Sans", sans-serif;
  text-transform: uppercase;
  font-weight: 400;
}

@media (min-width: 1200px) {
  .luxury-grid-01 {
    margin-left: -110px;
  }
}
@media (min-width: 1200px) {
  .luxury-grid-01 > * {
    padding-left: 110px;
  }
}

.luxury-tit-03 {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px 20px;
  font-size: 3.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  font-family: "Classico URW", "Optima", "Segoe UI", "Calibri", "Arsenal", "Lato", "Open Sans", sans-serif;
  text-transform: uppercase;
  margin-bottom: 0.8em;
}
@media (min-width: 640px) {
  .luxury-tit-03 {
    gap: 10px 30px;
    margin-bottom: 1.5em;
  }
}
.luxury-tit-03 .sub {
  display: inline-block;
  font-size: 1.8rem;
  letter-spacing: 0;
  font-family: "Yu Gothic Pr6N", "游ゴシック", "Yu Gothic", "YuGothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.luxury-img-01 {
  display: block;
  height: 100%;
}

.luxury-img-02 {
  display: block;
  width: 100%;
  aspect-ratio: 1/0.65;
  -o-object-fit: cover;
  object-fit: cover;
}

.luxury-panel-01 {
  text-align: center;
  background-color: var(--green-01);
  font-size: 1.3rem;
  line-height: 1.7;
}
@media (min-width: 960px) {
  .luxury-panel-01 {
    padding: 20px;
  }
}
.luxury-panel-01 .panel-row {
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 960px) {
  .luxury-panel-01 .panel-row:nth-child(even) .panel-thumb {
    order: 99;
  }
}
.luxury-panel-01 .panel-row > * {
  display: block;
  width: 100%;
  box-sizing: border-box;
}
@media (min-width: 960px) {
  .luxury-panel-01 .panel-row > * {
    width: 50%;
  }
}
.luxury-panel-01 .panel-thumb {
  aspect-ratio: 2/1;
  -o-object-fit: cover;
  object-fit: cover;
}
.luxury-panel-01 .panel-detail {
  align-content: center;
  padding: 4em 1.5em;
}
@media (min-width: 960px) {
  .luxury-panel-01 .panel-detail {
    padding: 1.5em;
  }
}
.luxury-panel-01 .panel-catch {
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  margin-bottom: 2.5em;
  font-family: "Yu Mincho Pr6N", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "ＭＳ 明朝", "MS Mincho", serif;
}
.luxury-panel-01 .panel-tit {
  margin-bottom: 1em;
}

.luxury-container-01 {
  max-width: 850px;
}

.luxury-dl-01 {
  display: grid;
  grid-template-columns: 20% 1fr;
  gap: 1.7em 1em;
  align-items: baseline;
  line-height: 1.5;
}

.about-tit-01 {
  font-size: 3.8rem;
  font-weight: 400;
  font-family: "Yu Mincho Pr6N", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "ＭＳ 明朝", "MS Mincho", serif;
  letter-spacing: 0.5em;
  writing-mode: vertical-rl;
  text-align: left;
  line-height: 2;
  margin-block: auto;
}
.about-tit-01 .row {
  display: block;
}
.about-tit-01 .row + .row {
  padding-top: 2.5em;
}

.about-tit-02 {
  font-size: 2.2rem;
  line-height: 1.4;
  font-weight: 400;
  letter-spacing: 0.1em;
  font-family: "Classico URW", "Optima", "Segoe UI", "Calibri", "Arsenal", "Lato", "Open Sans", sans-serif;
  text-align: center;
  color: var(--green-05);
  margin-bottom: 1.5em;
}
@media (min-width: 960px) {
  .about-tit-02 {
    margin-bottom: 8.1em;
    font-size: 2.8rem;
  }
}
.about-tit-02 .sub {
  display: block;
  font-size: 1.8rem;
  font-family: "Yu Mincho Pr6N", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "ＭＳ 明朝", "MS Mincho", serif;
}
@media (min-width: 960px) {
  .about-tit-02 .sub {
    font-size: 2.4rem;
  }
}

.about-tit-03 {
  font-size: 2rem;
  letter-spacing: 0.1em;
  font-weight: 400;
  font-family: "Yu Mincho Pr6N", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "ＭＳ 明朝", "MS Mincho", serif;
  margin-bottom: 1.5em;
}
@media (min-width: 960px) {
  .about-tit-03 {
    font-size: 2.6rem;
    margin-bottom: 2.3em;
  }
}

.about-container-01 {
  max-width: 765px;
}

.about-panel-01 {
  position: relative;
  text-align: center;
}
@media (min-width: 960px) {
  .about-panel-01 {
    min-height: 420px;
    height: 100%;
  }
}
@media (min-width: 960px) {
  .about-panel-01 img {
    position: absolute;
  }
}
@media (min-width: 1200px) {
  .about-panel-01 img {
    max-width: unset;
  }
}
@media (min-width: 960px) {
  .about-panel-01 .item-01 {
    top: -42%;
    right: 0;
  }
}
@media (min-width: 960px) {
  .about-panel-01 .item-02 {
    top: -25%;
    left: 0;
  }
}
@media (min-width: 1200px) {
  .about-panel-01 .item-02 {
    top: -49%;
  }
}
@media (min-width: 960px) {
  .about-panel-01 .item-03 {
    top: 50%;
    right: 5%;
    transform: translate(0, -50%);
  }
}
@media (min-width: 960px) {
  .about-panel-01 .item-04 {
    left: calc(-25% - 40px);
    top: 50%;
    transform: translateY(-50%);
  }
}
@media (min-width: 960px) {
  .about-panel-01 .item-05 {
    right: 0;
    top: -30%;
  }
}
@media (min-width: 960px) {
  .about-panel-01 .item-06 {
    left: 5%;
    top: -30%;
  }
}

.concept-tit-01 {
  line-height: 2.2;
  margin-bottom: 2.7em;
}

.concept-tit-02 {
  font-size: 2.4rem;
  letter-spacing: 0.1em;
  font-weight: 400;
  font-family: "Yu Mincho Pr6N", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "ＭＳ 明朝", "MS Mincho", serif;
}
.concept-tit-02 .sub, .concept-tit-02 .tit {
  display: block;
  padding-left: 40px;
}
.concept-tit-02 .sub {
  position: relative;
  font-size: 2rem;
  letter-spacing: 0.15em;
  font-family: "Classico URW", "Optima", "Segoe UI", "Calibri", "Arsenal", "Lato", "Open Sans", sans-serif;
  padding-bottom: 0.35em;
  margin-bottom: 0.5em;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  min-width: 200px;
}
.concept-tit-02 .sub::before, .concept-tit-02 .sub::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
}
.concept-tit-02 .sub::before {
  width: 100%;
  height: 1px;
  background-color: var(--gray-02);
}
.concept-tit-02 .sub::after {
  width: 14px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: var(--green-02);
  transform: translateY(50%);
}

.concept-tit-03 {
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  font-weight: 400;
  line-height: 1.65;
  font-family: "Yu Mincho Pr6N", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "ＭＳ 明朝", "MS Mincho", serif;
  align-content: center;
}

.concept-panel-01 {
  background-color: var(--green-01);
  font-size: 1.3rem;
  line-height: 2;
}
@media (min-width: 960px) {
  .concept-panel-01 {
    display: flex;
  }
}
.concept-panel-01 .panel-img {
  width: 100%;
  aspect-ratio: 1/0.5;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (min-width: 960px) {
  .concept-panel-01 .panel-img {
    width: 41%;
    order: 99;
  }
}
.concept-panel-01 .panel-body {
  padding: 3em 2em;
}
@media (min-width: 960px) {
  .concept-panel-01 .panel-body {
    flex: 1;
    align-content: center;
    padding: 4em;
  }
}
@media (min-width: 1200px) {
  .concept-panel-01 .panel-body {
    padding: 6em 10em;
  }
}

.concept-card-01 {
  position: relative;
  display: block;
  padding-bottom: 80px;
}
.concept-card-01::before, .concept-card-01::after {
  content: "";
  position: absolute;
  display: block;
  width: 70px;
  aspect-ratio: 1/1;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%) rotate(90deg);
  background: no-repeat center/contain;
}
.concept-card-01::before {
  background-image: url(../img/common/ico_btn_01.svg);
}
.concept-card-01::after {
  opacity: 0;
  background-image: url(../img/common/ico_btn_01_hover.svg);
}
.concept-card-01 .card-tit {
  display: block;
  font-size: 2rem;
  letter-spacing: 0.1em;
  font-family: "Yu Mincho Pr6N", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "ＭＳ 明朝", "MS Mincho", serif;
  margin-bottom: 1em;
}
.concept-card-01 .card-tit .sub {
  display: block;
  font-size: 1.4rem;
  letter-spacing: 0.15em;
  font-family: "Classico URW", "Optima", "Segoe UI", "Calibri", "Arsenal", "Lato", "Open Sans", sans-serif;
  line-height: 1;
}
.concept-card-01 .card-image {
  width: 100%;
  aspect-ratio: 1/0.55;
  -o-object-fit: cover;
  object-fit: cover;
}
.concept-card-01:hover::after {
  opacity: 1;
}

.concept-img-01 {
  width: 100%;
  aspect-ratio: 1/0.9;
  -o-object-fit: cover;
  object-fit: cover;
}

.topics-card-01 {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  font-size: 1.3rem;
  line-height: 1.8;
}
.topics-card-01 .card-thumb {
  width: 33%;
  min-width: 120px;
  flex-shrink: 0;
  aspect-ratio: 1/0.74;
  -o-object-fit: cover;
  object-fit: cover;
}
.topics-card-01 .card-detail {
  flex: 1;
}
.topics-card-01 .card-head {
  margin-bottom: 1.7em;
  display: flex;
  align-items: center;
  gap: 15px;
}
.topics-card-01 .card-tag {
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "Yu Gothic", "Yu Gothic UI", Meiryo, "Noto Sans CJK JP", "Noto Sans JP", "Helvetica Neue", Helvetica, "Segoe UI", Roboto, Arial, system-ui, -apple-system, sans-serif;
  border: 1px solid var(--gray-03);
  text-align: center;
  border-radius: 26px;
  padding: 0.6em 1em;
  min-width: 85px;
  box-sizing: border-box;
}
.topics-card-01 .card-time,
.topics-card-01 .card-tit {
  display: block;
}
.topics-card-01:is([target=_blank]) .card-head::after {
  content: "";
  display: block;
  width: 15.5px;
  aspect-ratio: 1/1;
  background: url(../img/common/ico_outdoor_link.svg) no-repeat center/contain;
}
.topics-card-01:hover {
  transform: translateY(-10px);
}

.single-img-01 {
  width: 100%;
  aspect-ratio: 1/0.74;
  -o-object-fit: cover;
  object-fit: cover;
}

.single-tit-01 {
  font-size: 2rem;
  line-height: 1.75;
  letter-spacing: 0.1em;
  font-weight: 400;
  border-top: 1px solid var(--gray-02);
  padding-top: 1em;
  padding-inline: 0.5em;
  font-family: "Yu Mincho Pr6N", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "ＭＳ 明朝", "MS Mincho", serif;
}

.single-panel-01 {
  font-size: 1.4rem;
  line-height: 2.2;
}
.single-panel-01 h1, .single-panel-01 h2, .single-panel-01 h3, .single-panel-01 h4, .single-panel-01 h5, .single-panel-01 h6 {
  font-size: 2rem;
  letter-spacing: 0.1em;
  font-weight: 400;
  margin-bottom: 2em;
  font-family: "Yu Mincho Pr6N", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "ＭＳ 明朝", "MS Mincho", serif;
}
.single-panel-01 h1:not(:first-child), .single-panel-01 h2:not(:first-child), .single-panel-01 h3:not(:first-child), .single-panel-01 h4:not(:first-child), .single-panel-01 h5:not(:first-child), .single-panel-01 h6:not(:first-child) {
  margin-top: 2.5em;
}

/*≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡
// Utility .u-
≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡*/
/*# sourceMappingURL=style.css.map */
