@charset "UTF-8";
/**
 * 共通SCSSの読み込み
 * メインブロックの定義
 * 共通読み込みを変更する可能性あり
 */
/**
 * サイト共通変数設定
 */
@font-face {
  font-family: Hiragino Sans W3;
  font-style: normal;
  src: url("./font/ヒラギノ角ゴ-Std-W3.woff");
}
@font-face {
  font-family: Hiragino Sans W6;
  font-style: normal;
  src: url("./font/ヒラギノ角ゴ-Std-W6.woff");
}
/*
 * フォントサイズ
 */
/*
 * get_vwの設定
 */
/*
 * サイト共通部品 @mixin
 * ボタン周り
 */
.c-btn__more {
  width: fit-content;
  margin: auto;
  margin-top: clamp(10px, 1.4322916667vw, 22px);
  border-bottom: 1px solid #000;
  padding-left: clamp(10px, 1.3020833333vw, 20px);
  padding-right: clamp(10px, 0.6510416667vw, 10px);
}
@media (max-width: 980px) {
  .c-btn__more {
    margin-top: 22px;
  }
}
.c-btn__more a {
  font-family: "EB Garamond", serif;
  font-weight: normal;
  font-size: clamp(10px, 1.0416666667vw, 16px);
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.4322916667vw, 22px);
}
@media (max-width: 980px) {
  .c-btn__more a {
    font-size: 16px;
  }
}
.c-btn__more a::after {
  content: "";
  width: 22px;
  height: 4px;
  background: url(../images/common/icon_arrow_right.svg) no-repeat;
  background-size: contain;
  transition: all 0.3s ease-in-out;
}
.c-btn__more a:hover::after {
  transition: all 0.3 ease-in-out;
  transform: translateX(5px);
}

/**
 * アニメーションに関するCSS
 * 共通で使用することを想定して各ページの設定をまとめて記述
 **/
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes scrollLine {
  0% {
    height: 0;
    top: -3px;
    opacity: 1;
  }
  30% {
    height: 56px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 106px;
    opacity: 1;
  }
}
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 10px;
  background: transparent;
  font-weight: normal;
}

body {
  line-height: 1.6;
}

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

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

blockquote, q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #333333;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box; /* form clear */
  -webkit-appearance: none !important;
}

/**
 * サイト共通設定
 */
html {
  height: -webkit-fill-available;
}

body {
  min-height: 100vh;
  min-height: -webkit-fill-available;
}

html,
body {
  color: #000;
  width: 100%;
  font-family: Hiragino Sans W3;
  font-weight: normal;
  font-size: clamp(10px, 0.9114583333vw, 14px);
  line-height: 2.2857142857;
}
@media (max-width: 980px) {
  html,
  body {
    font-size: 12px;
    list-style: 26px;
  }
}

img {
  width: 100%;
}

p {
  font-weight: 300;
}

a {
  text-decoration: none;
}

/*
 * 共通CSS - ヘッダー
 */
.header {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 12;
  width: 100%;
}
@media (max-width: 980px) {
  .header {
    transform: translateX(-130%);
    transition: all 0.3s ease-in-out;
    height: 100vh;
    background: #171a1d;
    padding-left: clamp(10px, 5.8666666667vw, 22px);
    padding-top: 15px;
  }
}
.header a {
  color: #fff;
}
.header .header__inner {
  width: clamp(10px, 96.7447916667vw, 1486px);
  display: flex;
  align-items: center;
  margin-left: clamp(10px, 3.2552083333vw, 50px);
}
@media (min-width: 1536px) {
  .header .header__inner {
    width: 100%;
    margin: auto;
  }
}
@media (max-width: 980px) {
  .header .header__inner {
    width: clamp(10px, 91.2vw, 342px);
    flex-direction: column;
    align-items: start;
    margin-left: 0;
  }
}
.header .header__logo {
  margin-right: clamp(10px, 9.8307291667vw, 151px);
}
@media (min-width: 1536px) {
  .header .header__logo {
    margin-left: 50px;
  }
}
.header .header__logo a {
  width: clamp(10px, 10.8723958333vw, 167px);
  display: flex;
  align-items: center;
  gap: clamp(5px, 0.9765625vw, 15px);
}
@media (max-width: 980px) {
  .header .header__logo a {
    width: fit-content;
    gap: clamp(10px, 2.6666666667vw, 10px);
  }
}
.header .header__logo a .logo__img {
  width: clamp(10px, 3.125vw, 48px);
  height: clamp(10px, 3.125vw, 48px);
  background: url(../images/common/logo.svg) no-repeat;
  background-size: contain;
  background-position: center;
}
@media (max-width: 980px) {
  .header .header__logo a .logo__img {
    width: 38px;
    height: 38px;
  }
}
.header .header__logo a .logo__txt {
  white-space: nowrap;
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-size: clamp(10px, 1.2369791667vw, 19px);
  line-height: 1.2105263158;
}
.header .header__logo a .logo__txt span {
  font-family: "EB Garamond", serif;
  font-weight: normal;
  font-size: clamp(10px, 1.6276041667vw, 25px);
}
@media (max-width: 980px) {
  .header .header__logo a .logo__txt span {
    font-size: 28px;
  }
}
@media (max-width: 980px) {
  .header .header__logo a .logo__txt {
    font-size: 21px;
  }
}
.header .header__nav {
  margin-right: clamp(10px, 8.5286458333vw, 131px);
}
@media (max-width: 980px) {
  .header .header__nav {
    margin-top: 47px;
  }
}
.header .header__nav ul {
  width: clamp(10px, 52.0833333333vw, 800px);
  display: flex;
  justify-content: space-between;
}
@media (max-width: 980px) {
  .header .header__nav ul {
    flex-direction: column;
    gap: 34px;
  }
}
.header .header__nav ul li a {
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-size: clamp(10px, 0.9114583333vw, 14px);
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media (max-width: 980px) {
  .header .header__nav ul li a {
    font-size: 16px;
  }
}
.header .header__nav ul li a::after {
  content: "";
  width: 100%;
  height: 2px;
  background: #ccb575;
  display: block;
  transform: scaleX(0);
  transform-origin: left;
  transition: all 0.3s ease-in-out;
}
.header .header__nav ul li a:hover::after {
  transform: scaleX(1);
  transition: all 0.3s ease-in-out;
}
@media (max-width: 980px) {
  .header .header__nav ul li a:hover::after {
    transform: scaleX(0);
  }
}
@media (min-width: 1536px) {
  .header .header__lang {
    position: absolute;
    top: 27px;
    right: 185px;
  }
}
@media (max-width: 980px) {
  .header .header__lang {
    position: absolute;
    bottom: 21px;
    left: clamp(10px, 5.3333333333vw, 20px);
  }
}
.header .header__lang ul {
  width: clamp(10px, 3.3854166667vw, 52px);
  display: flex;
  justify-content: space-between;
}
.header .header__lang ul li {
  flex: 1;
}
@media (max-width: 980px) {
  .header .header__lang ul li {
    height: 16px;
    display: flex;
    align-items: center;
  }
}
.header .header__lang ul li a {
  font-family: "EB Garamond", serif;
  font-weight: normal;
  font-size: clamp(10px, 0.9114583333vw, 14px);
}
@media (max-width: 980px) {
  .header .header__lang ul li a {
    font-size: 14px;
  }
}
.header .header__lang ul li a:hover {
  opacity: 0.7;
}
.header .header__lang ul li.is-active a {
  opacity: 0.4;
}
.header .header__lang ul li:first-of-type {
  display: flex;
  align-items: center;
}
@media (max-width: 980px) {
  .header .header__lang ul li:first-of-type {
    padding-right: clamp(10px, 2.6666666667vw, 10px);
  }
}
.header .header__lang ul li:first-of-type::after {
  content: "";
  width: 1px;
  height: clamp(1px, 1.0416666667vw, 16px);
  background: #fff;
  margin-left: clamp(1px, 0.6510416667vw, 10px);
}
@media (max-width: 980px) {
  .header .header__lang ul li:first-of-type::after {
    height: 16px;
    margin-left: 10px;
  }
}
.header .header__lang ul li:last-of-type {
  text-align: right;
}
.header .header__btn {
  margin-left: auto;
  overflow: hidden;
}
@media (max-width: 980px) {
  .header .header__btn {
    width: clamp(10px, 26.1333333333vw, 98px);
    height: 60px;
    position: absolute;
    bottom: 0;
    right: 0;
  }
}
.header .header__btn a {
  width: clamp(10px, 9.765625vw, 150px);
  height: clamp(10px, 5.859375vw, 90px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-size: clamp(10px, 1.0416666667vw, 16px);
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 980px) {
  .header .header__btn a {
    background: #ccb575;
    width: 100%;
    height: 100%;
    font-size: 14px;
  }
}
.header .header__btn a:hover {
  background: #ccb575;
  transform: scale(1.1);
  transition: all 0.3s ease-in-out;
}
@media (max-width: 980px) {
  .header.is-open {
    transform: translateX(0);
    transition: all 0.3s ease-in-out;
  }
  .header.is-open.black .header__logo a,
  .header.is-open.black .header__nav ul li a,
  .header.is-open.black .header__lang ul li a {
    color: #fff;
  }
  .header.is-open.black .header__logo a .logo__img {
    background: url(../images/common/logo.svg) no-repeat;
    background-size: contain;
    background-position: center;
  }
}
.header.area-in {
  background: #fff;
}
@media (max-width: 980px) {
  .header.area-in {
    background: #fff;
  }
}
.header.area-in .header__logo a .logo__img {
  background: url(../images/common/logo_black.svg) no-repeat;
  background-size: contain;
  background-position: center;
}
.header.area-in .header__logo a .logo__txt {
  color: #171a1d;
}
.header.area-in .header__nav ul li a {
  color: #171a1d;
}
.header.area-in .header__lang ul li a {
  color: #171a1d;
}
.header.area-in .header__lang ul li:first-of-type::after {
  background: #171a1d;
}
.header.area-in .header__btn a {
  background: #ccb575;
  height: clamp(10px, 4.5572916667vw, 70px);
}
.header.area-in.is-open {
  background: #171a1d;
}
.header.area-in.is-open .header__logo a,
.header.area-in.is-open .header__nav ul li a,
.header.area-in.is-open .header__lang ul li a {
  color: #fff;
}
.header.area-in.is-open .header__logo a .logo__img {
  background: url(../images/common/logo.svg) no-repeat;
  background-size: contain;
  background-position: center;
}
.header.area-in.is-open .header__lang ul li:first-of-type::after {
  background: #fff;
}
.header.area-in.is-open .header__btn a {
  background: #ccb575;
  height: 100%;
}
.header.black .header__logo a .logo__img {
  background: url(../images/common/logo_black.svg) no-repeat;
  background-size: contain;
  background-position: center;
}
.header.black .header__logo a,
.header.black .header__nav ul li a,
.header.black .header__lang ul li a {
  color: #171a1d;
}
.header.black .header__btn {
  background: #ccb575;
}
.header.black .header__lang ul li:first-of-type::after {
  background: #171a1d;
}
@media (max-width: 980px) {
  .header.black .header__lang ul li:first-of-type::after {
    background: #fff;
  }
}

.headerSp {
  width: 100%;
  height: 60px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  padding-left: clamp(10px, 5.3333333333vw, 20px);
}
.headerSp .headerSp__logo {
  display: none;
}
@media (max-width: 980px) {
  .headerSp .headerSp__logo {
    display: block;
    left: clamp(10px, 5.3333333333vw, 20px);
    z-index: 5;
  }
  .headerSp .headerSp__logo a {
    display: flex;
    gap: 10px;
  }
  .headerSp .headerSp__logo .logo__img {
    width: 38.34px;
  }
  .headerSp .headerSp__logo .logo__txt {
    font-family: "Shippori Mincho", serif;
    font-weight: 600;
    font-size: 23px;
    color: #171a1d;
  }
  .headerSp .headerSp__logo .logo__txt span {
    font-family: "EB Garamond", serif;
    font-weight: normal;
    font-size: 28px;
  }
}
.headerSp.area-in {
  display: block;
  background: #fff !important;
}
.headerSp.area-in .headerSp__logo .logo__img {
  background: url(../images/common/logo_black.svg) no-repeat;
  background-size: contain;
  background-position: center;
}

.top .header.area-in .header__logo a .logo__txt {
  color: #171a1d;
}
@media (max-width: 980px) {
  .top .header.area-in .header__logo a .logo__txt {
    color: white;
  }
}
.top .headerSp .headerSp__logo {
  display: none;
}
.top .headerSp.area-in .headerSp__logo {
  display: block;
}

@media (max-width: 980px) {
  .page .header.is-open.area-in .logo__txt {
    color: #fff;
  }
}
.page .headerSp .headerSp__logo .logo__img {
  background: url(../images/common/logo.svg) no-repeat;
  background-size: contain;
  background-position: center;
}
.page .headerSp .headerSp__logo .logo__txt {
  color: #fff;
  display: none;
}
@media (max-width: 980px) {
  .page .headerSp .headerSp__logo .logo__txt {
    display: block;
  }
}
.page .headerSp.area-in {
  display: block;
  background: #fff !important;
}
.page .headerSp.area-in .headerSp__logo .logo__txt {
  color: #171a1d;
}
.page .headerSp.area-in .headerSp__logo .logo__img {
  background: url(../images/common/logo_black.svg) no-repeat;
  background-size: contain;
  background-position: center;
}
.page .headerSp.black {
  display: none;
}
@media (max-width: 980px) {
  .page .headerSp.black {
    display: block;
    background: none;
  }
  .page .headerSp.black .headerSp__logo .logo__txt {
    color: #171a1d;
  }
  .page .headerSp.black .headerSp__logo .logo__img {
    background: url(../images/common/logo_black.svg) no-repeat;
    background-size: contain;
    background-position: center;
  }
  .page .headerSp.black.area-in {
    background: #fff;
  }
}

.header__menuBtn {
  display: none;
}
@media (max-width: 980px) {
  .header__menuBtn {
    display: block;
    width: 50px;
    height: 50px;
    position: fixed;
    top: 2px;
    right: clamp(10px, 2.9333333333vw, 11px);
    z-index: 21;
  }
  .header__menuBtn.area-in span {
    background: #171a1d;
  }
}
.header__menuBtn span {
  position: fixed;
  display: block;
  width: clamp(10px, 8vw, 30px);
  height: 1px;
  background: #fff;
  z-index: 10;
}
.header__menuBtn span:first-of-type {
  position: fixed;
  top: 25px;
  right: clamp(10px, 5.3333333333vw, 20px);
  transform-origin: top left;
}
.header__menuBtn span:last-of-type {
  position: fixed;
  top: 33px;
  right: clamp(10px, 5.3333333333vw, 20px);
  transform-origin: bottom left;
}
.header__menuBtn.is-open.area-in span {
  background: #fff;
}
.header__menuBtn.is-open span:first-of-type {
  transform: rotate(45deg);
  transform-origin: top left;
  transition: all 0.3s;
}
.header__menuBtn.is-open span:last-of-type {
  top: 46px;
  transform: rotate(-45deg);
  transform-origin: bottom left;
  transition: all 0.3s;
}
.header__menuBtn.black span {
  background: #171a1d;
}
.header__menuBtn.black.is-open span {
  background: #fff;
}

.p-index__kv__btnSp,
.p-under__kv__btnSp {
  display: none;
}
@media (max-width: 980px) {
  .p-index__kv__btnSp,
  .p-under__kv__btnSp {
    font-family: "Shippori Mincho", serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.05em;
    text-align: center;
    color: #fff !important;
    width: 98px;
    height: 60px;
    background: rgba(0, 0, 0, 0.5);
    position: fixed;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 6;
  }
  .p-index__kv__btnSp.area-in,
  .p-under__kv__btnSp.area-in {
    background: #ccb575;
  }
}

.p-under__kv__btnSp {
  background: #ccb575;
}

.fade .animation-bg {
  background: #fff;
  content: "";
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  animation-name: PageAnime-fade;
  animation-duration: 0.3s;
  animation-delay: 0.8s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
  pointer-events: none;
}

@keyframes PageAnime-fade {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.iPhone .p-index__kv {
  height: 100vh;
  height: -webkit-fill-available;
}

/*
 * 共通CSS - フッター
 */
.l-go-top {
  bottom: 20px;
  position: fixed;
  right: 20px;
  z-index: 5;
  height: fit-content;
}
.l-go-top a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: clamp(10px, 6.5104166667vw, 100px);
  height: clamp(10px, 6.5104166667vw, 100px);
  border-radius: 50%;
  border: 1px solid #000;
  font-family: "EB Garamond", serif;
  font-weight: normal;
  font-size: clamp(10px, 0.9114583333vw, 14px);
  text-align: left;
  background: white;
  color: #000;
}
@media (max-width: 980px) {
  .l-go-top a {
    display: none;
  }
}
.l-go-top a::before {
  content: "";
  width: clamp(1px, 0.2604166667vw, 4px);
  height: clamp(10px, 1.4322916667vw, 22px);
  background: url(../images/common/icon_arrow_top.svg) no-repeat;
  background-size: contain;
  transition: all 0.3s ease-in-out;
}
.l-go-top a:hover::before {
  transform: translateY(-5px);
  transition: all 0.3s ease-in-out;
}
.l-go-top.is-footer {
  display: block !important;
  position: absolute;
  top: clamp(10px, 8.7890625vw, 135px);
  right: clamp(10px, 3.2552083333vw, 50px);
}
@media (max-width: 980px) {
  .l-go-top.is-footer {
    top: unset;
    bottom: 49px;
  }
}
.l-go-top.is-footer a {
  border-color: #fff;
  background: none;
  color: #fff;
}
@media (max-width: 980px) {
  .l-go-top.is-footer a {
    display: flex;
    width: 80px;
    height: 80px;
    font-size: 13px;
    letter-spacing: 0.01em;
  }
}
.l-go-top.is-footer a::before {
  background: url(../images/common/icon_arrow_top_white.svg) no-repeat;
  background-size: contain;
}
@media (max-width: 980px) {
  .l-go-top.is-footer a::before {
    width: 4px;
    height: 22px;
  }
}

.footer__reserve {
  width: 100%;
  height: clamp(10px, 29.296875vw, 450px);
  background: url(../images/common/footer/bg_reserve.jpg) no-repeat;
  background-size: cover;
  padding-top: clamp(10px, 7.2265625vw, 111px);
  margin-top: clamp(10px, 11.71875vw, 180px);
  transition: all 0.3s ease-in-out;
}
@media (max-width: 980px) {
  .footer__reserve {
    height: 300px;
    background: url(../images/common/footer/bg_reserve_sp.jpg) no-repeat;
    background-size: cover;
    padding-top: 44px;
    margin-top: 120px;
  }
}
.footer__reserve a {
  width: 100%;
  margin: auto;
  text-align: center;
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-size: clamp(10px, 1.6927083333vw, 26px);
  line-height: 1.7307692308;
  text-align: center;
  transition: all 0.3s ease-in;
  display: block;
}
.footer__reserve a .footer__title {
  color: #fff;
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-weight: 400;
  font-size: clamp(10px, 1.6927083333vw, 26px);
  line-height: 1.7307692308;
}
@media (max-width: 980px) {
  .footer__reserve a .footer__title {
    font-size: 22px;
    color: #ccb575;
  }
}
.footer__reserve a .footer__title .title__en {
  font-family: "EB Garamond", serif;
  font-weight: normal;
  font-size: clamp(10px, 0.9765625vw, 15px);
  display: block;
  text-align: center;
  color: #fff;
}
@media (max-width: 980px) {
  .footer__reserve a .footer__title .title__en {
    font-size: 13px;
    color: #ccb575;
  }
}
.footer__reserve a .footer__title .title__deco {
  width: clamp(10px, 24.4791666667vw, 376px);
  height: clamp(10px, 4.0364583333vw, 62px);
  display: block;
  margin: auto;
  margin-top: clamp(1px, 0.78125vw, 12px);
  margin-bottom: -0.6510416667vw;
  background: url(../images/common/footer/yane.svg) no-repeat;
  background-size: cover;
}
@media (min-width: 1536px) {
  .footer__reserve a .footer__title .title__deco {
    margin-bottom: -10px;
  }
}
@media (max-width: 980px) {
  .footer__reserve a .footer__title .title__deco {
    width: clamp(10px, 74.6666666667vw, 280px);
    height: clamp(10px, 12vw, 45px);
    margin: auto;
    margin-top: 21px;
    margin-bottom: -20px;
    background: url(../images/common/footer/yane_gold_sp.svg) no-repeat;
    background-size: cover;
  }
}
.footer__reserve a .footer__reserve__txt {
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-weight: 400;
  font-size: clamp(10px, 0.9114583333vw, 14px);
  text-align: center;
  color: #fff;
  margin-top: clamp(10px, 2.34375vw, 36px);
}
@media (max-width: 980px) {
  .footer__reserve a .footer__reserve__txt {
    font-size: 16px;
    color: #ccb575;
    margin-top: 17px;
  }
}
.footer__reserve .footer__reserve__icon {
  width: clamp(10px, 4.2317708333vw, 65px);
  height: clamp(10px, 0.390625vw, 6px);
  margin: auto;
  margin-top: clamp(10px, 3.90625vw, 60px);
  display: none;
}
@media (max-width: 980px) {
  .footer__reserve .footer__reserve__icon {
    display: block;
    width: clamp(10px, 17.3333333333vw, 65px);
    height: clamp(1px, 1.6vw, 6px);
    margin-top: 18px;
  }
}
.footer__reserve:hover {
  background: url(../images/common/footer/bg_reserve_hover.jpg) no-repeat;
  background-size: cover;
  transition: all 0.3s ease-in-out;
}
.footer__reserve:hover a {
  display: block;
  transform: scale(1.1);
  transition: all 0.3s ease-in;
}
.footer__reserve:hover a .footer__title {
  color: #ccb575;
  transition: all 0.3s ease-in-out;
}
.footer__reserve:hover a .footer__title .title__en {
  color: #ccb575;
  transition: all 0.3s ease-in-out;
}
.footer__reserve:hover a .footer__title .title__deco {
  background: url(../images/common/footer/yane_gold.svg) no-repeat;
  background-size: cover;
}
.footer__reserve:hover a .footer__reserve__txt {
  color: #ccb575;
  transition: all 0.3s ease-in-out;
}
.footer__reserve:hover a .footer__reserve__icon {
  display: block;
  transition: all 0.3s ease-in-out;
}

.footer {
  background: #171a1d;
  padding-top: clamp(10px, 1.953125vw, 30px);
  position: relative;
}
.footer .footer__top {
  padding-left: clamp(10px, 4.296875vw, 66px);
  padding-bottom: clamp(10px, 2.1484375vw, 33px);
  width: clamp(10px, 76.953125vw, 1182px);
  display: flex;
}
@media (max-width: 980px) {
  .footer .footer__top {
    flex-direction: column;
    max-width: 375px;
    width: 100%;
    padding-left: clamp(10px, 5.3333333333vw, 20px);
    padding-bottom: 32px;
    margin: auto;
  }
}
.footer .footer__top .footer__top__logo {
  width: clamp(10px, 18.9453125vw, 291px);
}
@media (max-width: 980px) {
  .footer .footer__top .footer__top__logo {
    width: 100%;
    display: flex;
    align-items: center;
  }
}
@media (max-width: 980px) {
  .footer .footer__top .footer__top__logo a {
    display: flex;
    width: auto;
  }
}
.footer .footer__top .footer__top__logo img {
  width: clamp(10px, 6.7057291667vw, 103px);
}
@media (max-width: 980px) {
  .footer .footer__top .footer__top__logo img {
    width: clamp(10px, 12.8vw, 48px);
    margin-right: clamp(10px, 3.4666666667vw, 13px);
  }
}
.footer .footer__top .footer__top__logo .footer__logo__txt {
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-size: clamp(10px, 1.2369791667vw, 19px);
  color: #fff;
  margin-top: clamp(1px, 0.4557291667vw, 7px);
}
.footer .footer__top .footer__top__logo .footer__logo__txt span {
  font-family: "EB Garamond", serif;
  font-weight: normal;
  font-size: clamp(10px, 1.6276041667vw, 25px);
  color: #fff;
}
@media (max-width: 980px) {
  .footer .footer__top .footer__top__logo .footer__logo__txt span {
    font-size: 35px;
  }
}
@media (max-width: 980px) {
  .footer .footer__top .footer__top__logo .footer__logo__txt {
    font-size: 26px;
    white-space: nowrap;
  }
}
.footer .footer__top .footer__top__logo .footer__logo__insta {
  display: flex;
  align-items: center;
  gap: clamp(1px, 0.6510416667vw, 10px);
}
.footer .footer__top .footer__top__logo .footer__logo__insta span {
  font-family: "EB Garamond", serif;
  font-weight: normal;
  font-size: clamp(10px, 0.9114583333vw, 14px);
  letter-spacing: 0.01em;
  color: #fff;
}
@media (max-width: 980px) {
  .footer .footer__top .footer__top__logo .footer__logo__insta span {
    display: none;
  }
}
.footer .footer__top .footer__top__logo .footer__logo__insta::before {
  content: "";
  width: clamp(10px, 1.2369791667vw, 19px);
  height: clamp(10px, 1.2369791667vw, 19px);
  background: url(../images/common/icon_insta_white.svg) no-repeat;
  background-size: contain;
}
@media (max-width: 980px) {
  .footer .footer__top .footer__top__logo .footer__logo__insta::before {
    display: block;
    width: 19px;
    height: 19px;
    margin-left: clamp(10px, 10.1333333333vw, 38px);
  }
}
.footer .footer__top .footer__top__logo .footer__nav__langSp {
  display: none;
}
@media (max-width: 980px) {
  .footer .footer__top .footer__top__logo .footer__nav__langSp {
    display: block;
    width: clamp(10px, 13.8666666667vw, 52px);
    margin-left: clamp(10px, 5.3333333333vw, 20px);
  }
}
@media (max-width: 980px) {
  .footer .footer__top .footer__top__logo .footer__nav__langSp ul {
    display: flex;
    width: auto;
  }
}
.footer .footer__top .footer__top__logo .footer__nav__langSp ul li {
  flex: 1;
}
.footer .footer__top .footer__top__logo .footer__nav__langSp ul li a {
  font-family: "EB Garamond", serif;
  font-weight: normal;
}
@media (max-width: 980px) {
  .footer .footer__top .footer__top__logo .footer__nav__langSp ul li a {
    font-size: 14px;
    color: #fff;
  }
}
.footer .footer__top .footer__top__logo .footer__nav__langSp ul li.is-active a {
  opacity: 0.4;
}
.footer .footer__top .footer__top__logo .footer__nav__langSp ul li:first-of-type {
  display: flex;
  align-items: center;
}
.footer .footer__top .footer__top__logo .footer__nav__langSp ul li:first-of-type::after {
  content: "";
  width: 1px;
  height: clamp(1px, 1.0416666667vw, 16px);
  background: #fff;
  margin-left: clamp(1px, 0.5859375vw, 9px);
}
@media (max-width: 980px) {
  .footer .footer__top .footer__top__logo .footer__nav__langSp ul li:first-of-type::after {
    height: 16px;
    margin-left: clamp(1px, 1.6vw, 6px);
  }
}
.footer .footer__top .footer__top__logo .footer__nav__langSp ul li:last-of-type {
  text-align: right;
}
.footer .footer__top .footer__top__access {
  width: clamp(10px, 54.0364583333vw, 830px);
  display: flex;
  justify-content: space-between;
}
@media (max-width: 980px) {
  .footer .footer__top .footer__top__access {
    flex-direction: column;
    width: 100%;
    margin-top: 26px;
  }
}
.footer .footer__top .footer__top__access .footer__top__access__txtArea {
  color: #fff;
  width: clamp(10px, 14.1927083333vw, 218px);
}
@media (max-width: 980px) {
  .footer .footer__top .footer__top__access .footer__top__access__txtArea {
    width: 100%;
  }
}
.footer .footer__top .footer__top__access .footer__top__access__txtArea .footer__top__access__title {
  font-family: "EB Garamond", serif;
  font-weight: normal;
  font-size: clamp(10px, 1.4322916667vw, 22px);
  letter-spacing: 0.01em;
}
@media (max-width: 980px) {
  .footer .footer__top .footer__top__access .footer__top__access__txtArea .footer__top__access__title {
    font-size: 22px;
  }
}
.footer .footer__top .footer__top__access .footer__top__access__txtArea .footer__top__access__txt {
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-weight: 400;
  font-size: clamp(10px, 0.9114583333vw, 14px);
  line-height: 1.5714285714;
}
@media (max-width: 980px) {
  .footer .footer__top .footer__top__access .footer__top__access__txtArea .footer__top__access__txt {
    font-size: 14px;
    margin-top: 3px;
  }
}
.footer .footer__top .footer__top__access .footer__top__access__mapArea {
  width: clamp(10px, 38.2161458333vw, 587px);
}
@media (max-width: 980px) {
  .footer .footer__top .footer__top__access .footer__top__access__mapArea {
    width: clamp(10px, 89.3333333333vw, 335px);
    margin-top: 17px;
  }
}
.footer .footer__top .footer__top__access .footer__top__access__mapArea iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 3.4529411765;
}
@media (max-width: 980px) {
  .footer .footer__top .footer__top__access .footer__top__access__mapArea iframe {
    aspect-ratio: 2.5769230769;
  }
}
.footer .footer__top .footer__top__access .footer__top__access__mapArea .c-btn__more {
  border-color: #fff;
  margin: unset;
  margin-top: 0;
  padding-left: 0;
}
.footer .footer__top .footer__top__access .footer__top__access__mapArea .c-btn__more a {
  color: #fff;
}
.footer .footer__top .footer__top__access .footer__top__access__mapArea .c-btn__more a::after {
  background: url(../images/common/icon_arrow_right_white.svg) no-repeat;
  background-size: contain;
}
@media (max-width: 980px) {
  .footer .footer__top .footer__top__access .footer__top__access__mapArea .c-btn__more a {
    font-size: 14px;
  }
}
.footer .footer__nav {
  background: #070809;
  display: flex;
  justify-content: space-between;
  padding-left: clamp(10px, 7.5520833333vw, 116px);
}
@media (max-width: 980px) {
  .footer .footer__nav {
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 0;
  }
}
.footer .footer__nav ul {
  width: clamp(10px, 52.0833333333vw, 800px);
  height: clamp(10px, 3.90625vw, 60px);
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 980px) {
  .footer .footer__nav ul {
    width: clamp(10px, 89.3333333333vw, 335px);
    height: auto;
    flex-wrap: wrap;
    margin: auto;
    row-gap: 10px;
    justify-content: flex-start;
  }
}
.footer .footer__nav ul li a {
  color: #fff;
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-weight: 400;
  font-size: clamp(10px, 0.9114583333vw, 14px);
  letter-spacing: 0.05em;
}
@media (max-width: 980px) {
  .footer .footer__nav ul li a {
    font-size: 14px;
  }
}
.footer .footer__nav ul li a::after {
  content: "";
  width: 100%;
  height: 2px;
  background: #ccb575;
  display: block;
  transform: scaleX(0);
  transform-origin: left;
  transition: all 0.3s ease-in-out;
}
.footer .footer__nav ul li a:hover::after {
  transform: scaleX(1);
  transition: all 0.3s ease-in-out;
}
@media (max-width: 980px) {
  .footer .footer__nav ul li:first-of-type {
    margin-right: 15%;
  }
  .footer .footer__nav ul li:nth-of-type(2) {
    order: 3;
    margin-right: 26%;
  }
  .footer .footer__nav ul li:nth-of-type(3) {
    order: 5;
    margin-right: 28%;
  }
  .footer .footer__nav ul li:nth-of-type(4) {
    order: 7;
  }
  .footer .footer__nav ul li:nth-of-type(5) {
    order: 2;
  }
  .footer .footer__nav ul li:nth-of-type(6) {
    order: 4;
    margin-right: 8%;
  }
  .footer .footer__nav ul li:nth-of-type(7) {
    order: 6;
    margin-right: 16%;
  }
}
.footer .footer__nav .footer__nav__langPc {
  width: clamp(10px, 3.3854166667vw, 52px);
  margin-right: clamp(10px, 4.5572916667vw, 70px);
}
@media (max-width: 980px) {
  .footer .footer__nav .footer__nav__langPc {
    display: none;
  }
}
.footer .footer__nav .footer__nav__langPc ul {
  width: clamp(10px, 3.3854166667vw, 52px);
  display: flex;
  justify-content: space-between;
}
.footer .footer__nav .footer__nav__langPc ul li {
  flex: 1;
}
.footer .footer__nav .footer__nav__langPc ul li a {
  font-family: "EB Garamond", serif;
  font-weight: normal;
  font-size: clamp(10px, 0.9114583333vw, 14px);
}
.footer .footer__nav .footer__nav__langPc ul li.is-active a {
  opacity: 0.4;
}
.footer .footer__nav .footer__nav__langPc ul li:first-of-type {
  display: flex;
  align-items: center;
}
.footer .footer__nav .footer__nav__langPc ul li:first-of-type::after {
  content: "";
  width: 1px;
  height: clamp(1px, 1.0416666667vw, 16px);
  background: #fff;
  margin-left: clamp(1px, 0.5859375vw, 9px);
}
.footer .footer__nav .footer__nav__langPc ul li:last-of-type {
  text-align: right;
}
.footer .footer__bottom {
  background: #171a1d;
  padding-top: clamp(1px, 0.78125vw, 12px);
  padding-right: clamp(10px, 3.2552083333vw, 50px);
  padding-bottom: clamp(10px, 1.953125vw, 30px);
}
@media (max-width: 980px) {
  .footer .footer__bottom {
    padding-top: 43px;
    padding-right: 0;
    padding-bottom: 20px;
  }
}
@media (max-width: 980px) {
  .footer .footer__bottom .footer__bottom__nav {
    max-width: 375px;
    margin: auto;
  }
}
.footer .footer__bottom .footer__bottom__nav ul {
  margin-left: auto;
  width: fit-content;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(10px, 1.953125vw, 30px);
}
@media (max-width: 980px) {
  .footer .footer__bottom .footer__bottom__nav ul {
    margin-left: clamp(10px, 5.3333333333vw, 20px);
    width: clamp(10px, 63.4666666667vw, 238px);
    flex-wrap: wrap;
    justify-content: start;
    gap: 0;
    column-gap: 10px;
  }
}
.footer .footer__bottom .footer__bottom__nav ul li {
  width: fit-content;
}
.footer .footer__bottom .footer__bottom__nav ul li a {
  font-family: Hiragino Sans W3;
  font-weight: normal;
  font-size: clamp(10px, 0.78125vw, 12px);
  color: #fff;
  white-space: nowrap;
}
@media (max-width: 980px) {
  .footer .footer__bottom .footer__bottom__nav ul li a {
    font-size: 12px;
  }
}
@media (max-width: 980px) {
  .footer .footer__bottom .footer__bottom__nav ul li:nth-of-type(1) {
    order: 1;
    width: clamp(10px, 25.3333333333vw, 95px);
  }
  .footer .footer__bottom .footer__bottom__nav ul li:nth-of-type(2) {
    order: 3;
    width: clamp(10px, 25.3333333333vw, 95px);
  }
  .footer .footer__bottom .footer__bottom__nav ul li:nth-of-type(3) {
    order: 2;
  }
  .footer .footer__bottom .footer__bottom__nav ul li:nth-of-type(4) {
    order: 4;
  }
}
.footer .footer__bottom small {
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-weight: 400;
  font-size: 10px !important;
  display: block;
  width: fit-content;
  margin-left: auto;
  color: #fff;
  text-transform: uppercase;
}
@media (max-width: 980px) {
  .footer .footer__bottom small {
    margin: auto;
    margin-top: 38px;
    letter-spacing: 0.01em;
  }
}

/*
 * 共通CSS
 */
.c-wide-sec {
  padding-top: clamp(95px, 12.3697916667vw, 190px);
  position: relative;
}
.c-wide-sec .c-wide-sec__inner {
  margin: auto;
  max-width: 1536px;
  position: relative;
  z-index: 2;
}
@media (max-width: 980px) {
  .c-wide-sec .c-wide-sec__inner {
    max-width: 100%;
    width: 94%;
  }
}
.c-wide-sec .c-wide-sec__bottom-img {
  margin-top: clamp(45px, 9.1145833333vw, 140px);
  object-fit: cover;
  width: 100%;
}

.is-pc {
  display: block !important;
}
@media (max-width: 980px) {
  .is-pc {
    display: none !important;
  }
}

.is-sp {
  display: none !important;
}
@media (max-width: 980px) {
  .is-sp {
    display: block !important;
  }
}

@keyframes fadeUp {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes scale {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes h2_deco_left {
  0% {
    transform: scale(0) rotate(-18deg);
  }
  100% {
    transform: scale(1) rotate(-18deg);
  }
}
@keyframes h2_deco_right {
  0% {
    transform: scale(0) rotate(18deg);
  }
  100% {
    transform: scale(1) rotate(18deg);
  }
}
@keyframes flowing-anim {
  0% {
    width: 0%;
    opacity: 0;
  }
  100% {
    width: 100%;
    opacity: 1;
  }
}
.l-main {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
  overflow: hidden;
  position: relative;
}
.l-main img {
  width: 100%;
}
.l-main a {
  color: inherit;
  text-decoration: none;
}

/**
 * ページ別CSS
 * トップページ - index.php
 */
.p-index__sec__inner {
  width: clamp(10px, 54.0364583333vw, 830px);
  margin: auto;
}
@media (max-width: 980px) {
  .p-index__sec__inner {
    width: clamp(10px, 89.6vw, 336px);
  }
}

.p-index__title {
  width: clamp(10px, 24.4791666667vw, 376px);
  margin: auto;
  text-align: center;
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-size: clamp(10px, 1.6927083333vw, 26px);
  font-weight: 400;
  line-height: 1.7307692308;
  text-align: center;
  position: relative;
}
@media (max-width: 980px) {
  .p-index__title {
    font-size: 22px;
    width: clamp(10px, 74.6666666667vw, 280px);
  }
}
.p-index__title .title__inviewLine {
  width: 100%;
  height: 1px;
  background: transparent;
  display: block;
  position: absolute;
  bottom: -40vh;
}
.p-index__title .title__en {
  font-family: "EB Garamond", serif;
  font-weight: normal;
  font-size: clamp(10px, 0.9765625vw, 15px);
  display: block;
  text-align: center;
}
@media (max-width: 980px) {
  .p-index__title .title__en {
    font-size: 13px;
  }
}
.p-index__title .title__deco {
  position: relative;
  width: clamp(10px, 24.4791666667vw, 376px);
  height: clamp(10px, 4.0364583333vw, 62px);
  display: block;
}
@media (max-width: 980px) {
  .p-index__title .title__deco {
    width: clamp(10px, 74.6666666667vw, 280px);
    height: clamp(10px, 12vw, 45px);
    margin: auto;
  }
}
.p-index__title.is-view .title__deco {
  position: relative;
  width: clamp(10px, 24.4791666667vw, 376px);
  height: clamp(10px, 4.3619791667vw, 67px);
  display: block;
  margin-top: clamp(1px, 0.5208333333vw, 8px);
  margin-bottom: -0.7161458333vw;
}
@media (min-width: 1536px) {
  .p-index__title.is-view .title__deco {
    margin-bottom: -11px;
  }
}
@media (max-width: 980px) {
  .p-index__title.is-view .title__deco {
    width: clamp(10px, 74.6666666667vw, 280px);
    height: clamp(10px, 12vw, 45px);
    margin: auto;
    margin-top: 10px;
    margin-bottom: -10px;
  }
}
.p-index__title.is-view .title__deco::before, .p-index__title.is-view .title__deco::after {
  content: "";
  width: clamp(10px, 12.7604166667vw, 196px);
  height: 1px;
  background: #000;
  display: block;
  position: absolute;
}
@media (max-width: 980px) {
  .p-index__title.is-view .title__deco::before, .p-index__title.is-view .title__deco::after {
    width: clamp(10px, 37.3333333333vw, 140px);
  }
}
.p-index__title.is-view .title__deco::before {
  top: 0;
  left: -0.6510416667vw;
  animation: h2_deco_left 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0s both;
  transform-origin: right;
}
@media (min-width: 1536px) {
  .p-index__title.is-view .title__deco::before {
    left: -10px;
  }
}
@media (max-width: 980px) {
  .p-index__title.is-view .title__deco::before {
    left: 0;
  }
}
.p-index__title.is-view .title__deco::after {
  top: 0;
  right: -0.390625vw;
  animation: h2_deco_right 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0s both;
  transform-origin: left;
}
@media (min-width: 1536px) {
  .p-index__title.is-view .title__deco::after {
    right: -6px;
  }
}
@media (max-width: 980px) {
  .p-index__title.is-view .title__deco::after {
    right: 0;
  }
}

.p-index__kv {
  width: 100%;
  height: 100vh;
  background: url(../images/index/img_kv.jpg) no-repeat;
  position: relative;
}
@media (max-width: 980px) {
  .p-index__kv {
    position: relative;
  }
}
.p-index__kv .p-index__kv__inner {
  position: absolute;
  top: 30vh;
  left: 0;
  right: 0;
  margin: auto;
}
@media (max-width: 980px) {
  .p-index__kv .p-index__kv__inner {
    top: 22.9385307346vh;
  }
}
.p-index__kv .p-index__kv__logo {
  width: clamp(10px, 12.6302083333vw, 194px);
  margin: auto;
  opacity: 0;
  animation: fadeUp 5s forwards;
  animation-delay: 0.2s;
}
@media (max-width: 980px) {
  .p-index__kv .p-index__kv__logo {
    width: 100%;
  }
}
@media (max-width: 980px) {
  .p-index__kv .p-index__kv__logo img {
    width: clamp(10px, 40.2666666667vw, 151px);
    display: block;
    margin: auto;
  }
}
.p-index__kv .p-index__kv__logo .p-index__kv__logo__txt {
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-size: clamp(10px, 1.953125vw, 30px);
  color: #fff;
  text-align: center;
  margin-top: clamp(10px, 0.9114583333vw, 14px);
}
.p-index__kv .p-index__kv__logo .p-index__kv__logo__txt span {
  font-family: "EB Garamond", serif;
  font-weight: normal;
  font-size: clamp(10px, 2.4739583333vw, 38px);
  color: #fff;
}
@media (max-width: 980px) {
  .p-index__kv .p-index__kv__logo .p-index__kv__logo__txt span {
    font-size: 38px;
  }
}
@media (max-width: 980px) {
  .p-index__kv .p-index__kv__logo .p-index__kv__logo__txt {
    font-size: 30px;
    margin-top: clamp(1px, 4.2666666667vw, 16px);
  }
}
.p-index__kv .p-index__kv__msg span {
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-weight: 400;
  font-size: clamp(10px, 1.3020833333vw, 20px);
  letter-spacing: 0.03em;
  line-height: 1.6;
  text-align: center;
  color: #fff;
  text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  display: block;
  opacity: 0;
  animation: fadeUp 5s forwards;
}
@media (max-width: 980px) {
  .p-index__kv .p-index__kv__msg span {
    font-size: 18px;
  }
}
.p-index__kv .p-index__kv__msg span:first-of-type {
  animation-delay: 0.6s;
}
.p-index__kv .p-index__kv__msg span:last-of-type {
  animation-delay: 1s;
}
.p-index__kv .p-index__kv__scroll {
  width: clamp(10px, 3.90625vw, 60px);
  height: clamp(10px, 5.859375vw, 90px);
  position: absolute;
  bottom: 6.6666666667vh;
  left: 0;
  right: 0;
  margin: auto;
}
@media (max-width: 980px) {
  .p-index__kv .p-index__kv__scroll {
    bottom: 10px;
    left: 0;
    right: 0;
    margin: auto;
    width: clamp(10px, 16vw, 60px);
    height: 100px;
  }
}
.p-index__kv .p-index__kv__scroll a {
  display: flex;
  justify-content: center;
  flex-direction: column;
  font-family: "EB Garamond", serif;
  font-weight: normal;
  font-size: clamp(10px, 0.78125vw, 12px);
  color: #fff;
  text-align: center;
  position: relative;
  height: 100%;
}
@media (max-width: 980px) {
  .p-index__kv .p-index__kv__scroll a {
    font-size: 10px;
  }
}
.p-index__kv .p-index__kv__scroll a .p-index__kv__scroll__icon {
  display: block;
  width: clamp(10px, 3.90625vw, 60px);
  height: clamp(1px, 0.9765625vw, 15px);
  position: absolute;
  bottom: 1%;
  right: 0;
  left: 0;
  margin: auto;
  margin-top: clamp(1px, 0.3255208333vw, 5px);
  animation: arrowmove 6s ease-in-out infinite;
}
@media (max-width: 980px) {
  .p-index__kv .p-index__kv__scroll a .p-index__kv__scroll__icon {
    width: 60px;
    height: 15px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    margin-top: 5px;
  }
}
.p-index__kv .p-index__kv__scroll a .p-index__kv__scroll__icon .icon__inner {
  position: relative;
}
.p-index__kv .p-index__kv__scroll a .p-index__kv__scroll__icon .icon__inner .icon__01,
.p-index__kv .p-index__kv__scroll a .p-index__kv__scroll__icon .icon__inner .icon__02 {
  width: clamp(10px, 3.90625vw, 60px);
  height: clamp(1px, 0.5208333333vw, 8px);
  display: flex;
  position: relative;
}
@media (max-width: 980px) {
  .p-index__kv .p-index__kv__scroll a .p-index__kv__scroll__icon .icon__inner .icon__01,
  .p-index__kv .p-index__kv__scroll a .p-index__kv__scroll__icon .icon__inner .icon__02 {
    width: 60px;
    height: 8px;
  }
}
.p-index__kv .p-index__kv__scroll a .p-index__kv__scroll__icon .icon__inner .icon__01::before, .p-index__kv .p-index__kv__scroll a .p-index__kv__scroll__icon .icon__inner .icon__01::after,
.p-index__kv .p-index__kv__scroll a .p-index__kv__scroll__icon .icon__inner .icon__02::before,
.p-index__kv .p-index__kv__scroll a .p-index__kv__scroll__icon .icon__inner .icon__02::after {
  content: "";
  width: clamp(10px, 2.6041666667vw, 40px);
  height: 1px;
  display: block;
  background: #fff;
}
@media (max-width: 980px) {
  .p-index__kv .p-index__kv__scroll a .p-index__kv__scroll__icon .icon__inner .icon__01::before, .p-index__kv .p-index__kv__scroll a .p-index__kv__scroll__icon .icon__inner .icon__01::after,
  .p-index__kv .p-index__kv__scroll a .p-index__kv__scroll__icon .icon__inner .icon__02::before,
  .p-index__kv .p-index__kv__scroll a .p-index__kv__scroll__icon .icon__inner .icon__02::after {
    width: 40px;
  }
}
.p-index__kv .p-index__kv__scroll a .p-index__kv__scroll__icon .icon__inner .icon__01::before,
.p-index__kv .p-index__kv__scroll a .p-index__kv__scroll__icon .icon__inner .icon__02::before {
  transform: rotate(18deg);
}
.p-index__kv .p-index__kv__scroll a .p-index__kv__scroll__icon .icon__inner .icon__01::after,
.p-index__kv .p-index__kv__scroll a .p-index__kv__scroll__icon .icon__inner .icon__02::after {
  transform: rotate(-18deg);
  margin-left: -1px;
}
.p-index__kv .p-index__kv__scroll a:hover .p-index__kv__scroll__icon {
  animation: none;
}

.p-index__thought {
  padding-top: clamp(10px, 10.4166666667vw, 160px);
}
@media (max-width: 980px) {
  .p-index__thought {
    padding-top: 89px;
  }
}
.p-index__thought .p-index__thought__read {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  gap: clamp(10px, 1.5625vw, 24px);
}
@media (max-width: 980px) {
  .p-index__thought .p-index__thought__read {
    gap: clamp(10px, 4vw, 15px);
  }
}
.p-index__thought .p-index__thought__read span {
  opacity: 0;
}
.p-index__thought .p-index__thought__read.is-view span {
  animation: fadeUp 5s forwards;
}
.p-index__thought .p-index__thought__read.is-view span:first-of-type {
  animation-delay: 0;
}
.p-index__thought .p-index__thought__read.is-view span:nth-of-type(2) {
  animation-delay: 0.5s;
}
.p-index__thought .p-index__thought__read.is-view span:nth-of-type(3) {
  animation-delay: 1s;
}
.p-index__thought .p-index__thought__read.is-view span:nth-of-type(4) {
  animation-delay: 1.5s;
}
.p-index__thought .p-index__thought__read.is-view span:nth-of-type(5) {
  animation-delay: 2s;
}
.p-index__thought .p-index__thought__txt {
  margin: auto;
  margin-top: clamp(10px, 4.8828125vw, 75px);
  width: clamp(10px, 35.8072916667vw, 550px);
  font-family: Hiragino Sans W3;
  font-weight: normal;
  font-size: clamp(10px, 0.9114583333vw, 14px);
  line-height: 2.2857142857;
  opacity: 0;
}
@media (max-width: 980px) {
  .p-index__thought .p-index__thought__txt {
    margin-top: 44px;
    margin-bottom: 40px;
    font-size: 14px;
    width: 100%;
  }
}
.p-index__thought .p-index__thought__txt.is-view {
  animation: fadeUp 5s forwards;
  animation-delay: 1.5s;
}

.p-index__stay {
  margin-top: clamp(10px, 11.71875vw, 180px);
}
@media (max-width: 980px) {
  .p-index__stay {
    margin-top: 119px;
  }
}
.p-index__stay .p-index__stay_txtArea {
  width: clamp(10px, 35.8072916667vw, 550px);
  margin: auto;
}
@media (max-width: 980px) {
  .p-index__stay .p-index__stay_txtArea {
    width: clamp(10px, 89.3333333333vw, 335px);
  }
}
.p-index__stay .p-index__stay_txtArea .p-index__stay__read {
  margin-top: clamp(10px, 1.3020833333vw, 20px);
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-weight: 400;
  font-size: clamp(10px, 1.6927083333vw, 26px);
  line-height: 1.6153846154;
  opacity: 0;
}
@media (max-width: 980px) {
  .p-index__stay .p-index__stay_txtArea .p-index__stay__read {
    font-size: 20px;
    letter-spacing: -0.02em;
    line-height: 1.9;
    margin-top: 24px;
  }
}
.p-index__stay .p-index__stay_txtArea .p-index__stay__txt {
  font-family: Hiragino Sans W3;
  font-weight: normal;
  font-size: clamp(10px, 0.9114583333vw, 14px);
  line-height: 2.2857142857;
  margin-top: clamp(10px, 1.8229166667vw, 28px);
  opacity: 0;
}
@media (max-width: 980px) {
  .p-index__stay .p-index__stay_txtArea .p-index__stay__txt {
    font-size: 14px;
    margin-top: 17px;
    margin-bottom: 24px;
  }
}
.p-index__stay .p-index__stay_txtArea .c-btn__more {
  opacity: 0;
}
.p-index__stay .p-index__stay_txtArea.is-view .p-index__stay__read {
  animation: fadeUp 5s forwards;
}
.p-index__stay .p-index__stay_txtArea.is-view .p-index__stay__txt {
  animation: fadeUp 5s forwards;
  animation-delay: 1s;
}
.p-index__stay .p-index__stay_txtArea.is-view .c-btn__more {
  animation: fadeUp 5s forwards;
  animation-delay: 2s;
}

.swiper {
  height: 32.8776041667vw;
  margin-top: clamp(10px, 2.2135416667vw, 34px);
}
@media (max-width: 980px) {
  .swiper {
    max-width: 375px;
    width: 100%;
    height: 222px;
    padding-left: clamp(10px, 5.3333333333vw, 20px) !important;
    padding-right: clamp(10px, 5.3333333333vw, 20px) !important;
    margin: auto;
    margin-top: 40px;
  }
}
.swiper .swiper--wrapper {
  /* wrapperのサイズを調整 */
  width: 100%;
  height: ger_vw(460);
}
.swiper .swiper-pagination-bullet {
  width: 5px;
  height: 5px;
}
.swiper .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #000;
  width: 7px;
  height: 7px;
}
@media (max-width: 980px) {
  .swiper .swiper-pagination-bullet {
    bottom: 5px;
  }
}
.swiper .swiper-button-prev,
.swiper .swiper-button-next {
  width: clamp(10px, 3.90625vw, 60px);
  height: clamp(10px, 3.90625vw, 60px);
}
@media (max-width: 980px) {
  .swiper .swiper-button-prev,
  .swiper .swiper-button-next {
    width: 40px;
    height: 40px;
  }
}
.swiper .swiper-button-prev::after,
.swiper .swiper-button-next::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
}
@media (max-width: 980px) {
  .swiper .swiper-button-prev::after,
  .swiper .swiper-button-next::after {
    margin-top: -33px;
  }
}
.swiper .swiper-button-prev {
  left: 17.2526041667vw;
}
@media (max-width: 980px) {
  .swiper .swiper-button-prev {
    left: 0;
  }
}
.swiper .swiper-button-prev::after {
  background: url(../images/index/btn_prev.svg) no-repeat;
  background-size: contain;
}
.swiper .swiper-button-next {
  right: 17.2526041667vw;
}
@media (max-width: 980px) {
  .swiper .swiper-button-next {
    right: 0;
  }
}
.swiper .swiper-button-next::after {
  background: url(../images/index/btn_next.svg) no-repeat;
  background-size: contain;
}

.p-index__tahara {
  margin-top: clamp(10px, 11.71875vw, 180px);
}
@media (max-width: 980px) {
  .p-index__tahara {
    margin-top: 120px;
  }
}
.p-index__tahara .p-index__sec__inner {
  position: relative;
}
.p-index__tahara .p-index__tahara__txt {
  width: clamp(10px, 35.8072916667vw, 550px);
  margin-top: clamp(10px, 4.9479166667vw, 76px);
  opacity: 0;
}
@media (max-width: 980px) {
  .p-index__tahara .p-index__tahara__txt {
    width: clamp(10px, 89.3333333333vw, 335px);
    padding-top: 430px;
  }
}
.p-index__tahara .p-index__tahara__txt p {
  font-family: Hiragino Sans W3;
  font-weight: normal;
  font-size: clamp(10px, 0.9114583333vw, 14px);
  line-height: 2.2857142857;
}
@media (max-width: 980px) {
  .p-index__tahara .p-index__tahara__txt p {
    font-size: 14px;
  }
}
.p-index__tahara .p-index__tahara__txt .c-btn__more {
  margin: unset;
  margin-top: clamp(10px, 1.6276041667vw, 25px);
}
@media (max-width: 980px) {
  .p-index__tahara .p-index__tahara__txt .c-btn__more {
    margin: auto;
    margin-top: 24px;
  }
}
.p-index__tahara .p-index__tahara__txt.is-view {
  animation: fadeUp 4s forwards;
  animation-delay: 2.5s;
}
@media (max-width: 980px) {
  .p-index__tahara .p-index__tahara__txt.is-view {
    animation-delay: 6.5s;
  }
}
.p-index__tahara .p-index__tahara_mapArea {
  position: absolute;
  top: -2.6692708333vw;
  right: 0;
  width: clamp(10px, 35.6119791667vw, 547px);
  height: clamp(10px, 40.4296875vw, 621px);
}
@media (min-width: 1536px) {
  .p-index__tahara .p-index__tahara_mapArea {
    top: -41px;
  }
}
@media (max-width: 980px) {
  .p-index__tahara .p-index__tahara_mapArea {
    width: clamp(10px, 89.3333333333vw, 335px);
    height: 380px;
    top: 20px;
  }
}
.p-index__tahara .p-index__tahara_mapArea .map__img {
  opacity: 0;
}
.p-index__tahara .p-index__tahara_mapArea .map__txt {
  position: absolute;
  top: clamp(10px, 17.8385416667vw, 274px);
  left: clamp(10px, 4.8177083333vw, 74px);
  width: fit-content;
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-weight: 400;
  font-size: clamp(10px, 1.171875vw, 18px);
  letter-spacing: 0.01em;
  line-height: 1.1111111111;
  opacity: 0;
}
@media (max-width: 980px) {
  .p-index__tahara .p-index__tahara_mapArea .map__txt {
    top: 95px;
    left: 18px;
    font-size: 18px;
  }
}
.p-index__tahara .p-index__tahara_mapArea .map__txt span {
  display: block;
  font-family: "EB Garamond", serif;
  font-weight: normal;
  font-size: clamp(10px, 0.78125vw, 12px);
  text-align: right;
  margin-top: clamp(1px, 0.3255208333vw, 5px);
}
@media (max-width: 980px) {
  .p-index__tahara .p-index__tahara_mapArea .map__txt span {
    font-size: 12px;
  }
}
.p-index__tahara .p-index__tahara_mapArea .map__line1 {
  display: block;
  width: clamp(10px, 3.8411458333vw, 59px);
  height: 1px;
  background: #000;
  position: absolute;
  top: clamp(10px, 19.0104166667vw, 292px);
  left: clamp(10px, 12.7604166667vw, 196px);
  transform: scale(0);
  transform-origin: left;
}
@media (max-width: 980px) {
  .p-index__tahara .p-index__tahara_mapArea .map__line1 {
    width: 15px;
    top: 110px;
    left: 143px;
  }
}
.p-index__tahara .p-index__tahara_mapArea .map__line2 {
  display: block;
  width: 1px;
  height: clamp(10px, 12.1744791667vw, 187px);
  background: #000;
  position: absolute;
  top: clamp(10px, 19.0104166667vw, 292px);
  left: clamp(10px, 16.6015625vw, 255px);
  transform: scale(0);
  transform-origin: top;
}
@media (max-width: 980px) {
  .p-index__tahara .p-index__tahara_mapArea .map__line2 {
    height: 180px;
    top: 110px;
    left: 157px;
  }
}
.p-index__tahara .p-index__tahara_mapArea .map__point {
  width: clamp(10px, 1.5625vw, 24px);
  height: clamp(10px, 1.5625vw, 24px);
  position: absolute;
  top: clamp(10px, 30.5338541667vw, 469px);
  left: clamp(10px, 15.8854166667vw, 244px);
  opacity: 0;
}
@media (max-width: 980px) {
  .p-index__tahara .p-index__tahara_mapArea .map__point {
    width: 24px;
    height: 24px;
    top: 279px;
    left: 146px;
  }
}
.p-index__tahara .p-index__tahara_mapArea.is-view .map__img {
  animation: fadeUp 4s forwards;
  animation-delay: 1s;
  z-index: 999;
}
.p-index__tahara .p-index__tahara_mapArea.is-view .map__txt {
  animation: fadeUp 4s forwards;
  animation-delay: 2.5s;
}
.p-index__tahara .p-index__tahara_mapArea.is-view .map__line1 {
  animation: scale 0.8s forwards;
  animation-delay: 4s;
}
.p-index__tahara .p-index__tahara_mapArea.is-view .map__line2 {
  animation: scale 1.5s forwards;
  animation-delay: 4.7s;
}
.p-index__tahara .p-index__tahara_mapArea.is-view .map__point {
  animation: fadeUp 2s forwards;
  animation-delay: 6s;
}
.p-index__tahara .p-index__sec__wide {
  margin-top: clamp(10px, 16.9270833333vw, 260px);
}
@media (max-width: 980px) {
  .p-index__tahara .p-index__sec__wide {
    margin-top: 80px;
  }
}
.p-index__tahara .p-index__tahara__box {
  width: 77.0182291667vw;
  display: flex;
  align-items: flex-end;
  gap: clamp(10px, 2.7994791667vw, 43px);
  margin-bottom: clamp(10px, 1.3020833333vw, 20px);
}
@media (max-width: 980px) {
  .p-index__tahara .p-index__tahara__box {
    flex-direction: column;
    width: clamp(10px, 89.3333333333vw, 335px);
    margin: auto;
    margin-bottom: 40px;
  }
}
.p-index__tahara .p-index__tahara__box .box__img {
  width: 45.5729166667vw;
  height: 20.8333333333vw;
  overflow: hidden;
}
@media (max-width: 980px) {
  .p-index__tahara .p-index__tahara__box .box__img {
    width: 100%;
    height: auto;
    aspect-ratio: 2.1895424837;
  }
}
.p-index__tahara .p-index__tahara__box .box__img a {
  display: block;
  width: 100%;
  height: 100%;
}
.p-index__tahara .p-index__tahara__box:nth-of-type(1) .box__img a {
  background: url(../images/index/img_tahara_01.jpg) no-repeat;
  background-size: 100%;
  background-position: center center;
  transition: all 0.5s ease-in-out;
}
.p-index__tahara .p-index__tahara__box:nth-of-type(1) .box__img a:hover {
  background-size: 105%;
  background-position: center center;
  transition: all 0.5s ease-in-out;
}
.p-index__tahara .p-index__tahara__box:nth-of-type(2) .box__img a {
  background: url(../images/index/img_tahara_02.jpg) no-repeat;
  background-size: 100%;
  background-position: center center;
  transition: all 0.5s ease-in-out;
}
.p-index__tahara .p-index__tahara__box:nth-of-type(2) .box__img a:hover {
  background-size: 105%;
  background-position: center center;
  transition: all 0.5s ease-in-out;
}
.p-index__tahara .p-index__tahara__box:nth-of-type(3) .box__img a {
  background: url(../images/index/img_tahara_03.jpg) no-repeat;
  background-size: 100%;
  background-position: center center;
  transition: all 0.5s ease-in-out;
}
.p-index__tahara .p-index__tahara__box:nth-of-type(3) .box__img a:hover {
  background-size: 105%;
  background-position: center center;
  transition: all 0.5s ease-in-out;
}
.p-index__tahara .p-index__tahara__box:nth-of-type(4) .box__img a {
  background: url(../images/index/img_tahara_04.jpg) no-repeat;
  background-size: 100%;
  background-position: center center;
  transition: all 0.5s ease-in-out;
}
.p-index__tahara .p-index__tahara__box:nth-of-type(4) .box__img a:hover {
  background-size: 105%;
  background-position: center center;
  transition: all 0.5s ease-in-out;
}
.p-index__tahara .p-index__tahara__box .box__txt {
  width: clamp(10px, 28.6458333333vw, 440px);
}
@media (max-width: 980px) {
  .p-index__tahara .p-index__tahara__box .box__txt {
    width: 100%;
    padding-top: 6px;
  }
}
.p-index__tahara .p-index__tahara__box .box__txt .box__txt__title {
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-weight: 400;
  font-size: clamp(10px, 1.4322916667vw, 22px);
  letter-spacing: 0.01em;
  line-height: 1.9090909091;
  margin-bottom: clamp(10px, 1.6276041667vw, 25px);
}
@media (max-width: 980px) {
  .p-index__tahara .p-index__tahara__box .box__txt .box__txt__title {
    font-size: 20px;
    margin-bottom: 7px;
  }
}
.p-index__tahara .p-index__tahara__box .box__txt .box__txt__txt {
  font-family: Hiragino Sans W3;
  font-weight: normal;
  font-size: clamp(10px, 0.9114583333vw, 14px);
  line-height: 2.0714285714;
}
@media (max-width: 980px) {
  .p-index__tahara .p-index__tahara__box .box__txt .box__txt__txt {
    font-size: 12px;
    line-height: 2.1666666667;
  }
}
.p-index__tahara .p-index__tahara__box .c-btn__more {
  margin: unset;
  margin-top: clamp(10px, 1.4973958333vw, 23px);
  padding-left: clamp(1px, 0.5208333333vw, 8px);
}
@media (max-width: 980px) {
  .p-index__tahara .p-index__tahara__box .c-btn__more {
    margin-top: 6px;
  }
}
.p-index__tahara .p-index__tahara__box .c-btn__more a {
  gap: clamp(10px, 0.9765625vw, 15px);
}
@media (max-width: 980px) {
  .p-index__tahara .p-index__tahara__box .c-btn__more a {
    font-size: 14px;
  }
}
.p-index__tahara .p-index__tahara__imgBottom {
  width: 100%;
  height: clamp(10px, 35.8072916667vw, 550px);
  margin-top: clamp(10px, 10.4166666667vw, 160px);
  overflow: hidden;
}
@media (max-width: 980px) {
  .p-index__tahara .p-index__tahara__imgBottom {
    margin-top: 93px;
    aspect-ratio: 1.875;
    height: auto;
  }
}

.p-index__gallery {
  margin-top: clamp(10px, 11.71875vw, 180px);
}
@media (max-width: 980px) {
  .p-index__gallery {
    margin-top: 80px;
  }
}
.p-index__gallery .p-index__gallery__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1px, 0.6510416667vw, 10px);
}
@media (max-width: 980px) {
  .p-index__gallery .p-index__gallery__list {
    gap: 6px;
  }
}
.p-index__gallery .p-index__gallery__list li {
  overflow: hidden;
}
.p-index__gallery .p-index__gallery__list li a img {
  display: block;
  transition: all 0.3s ease-in;
}
.p-index__gallery .p-index__gallery__list li a:hover img {
  transform: scale(1.1);
  transition: all 0.3s ease-in;
}
@media (max-width: 980px) {
  .p-index__gallery .c-btn__more {
    margin-top: 33px;
  }
}
.p-index__gallery .c-btn__more a img {
  width: clamp(10px, 1.2369791667vw, 19px);
  height: clamp(10px, 1.2369791667vw, 19px);
}
@media (max-width: 980px) {
  .p-index__gallery .c-btn__more a img {
    width: 19px;
    height: 19px;
  }
}

@keyframes fadeUp {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes scale {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes h2_deco_left {
  0% {
    transform: scale(0) rotate(-18deg);
  }
  100% {
    transform: scale(1) rotate(-18deg);
  }
}
@keyframes h2_deco_right {
  0% {
    transform: scale(0) rotate(18deg);
  }
  100% {
    transform: scale(1) rotate(18deg);
  }
}
/**
 * 下層共通CSS
 */
.p-common__kv__inner {
  width: 100%;
  height: 100%;
  padding-top: clamp(10px, 11.328125vw, 174px);
}
@media (max-width: 980px) {
  .p-common__kv__inner {
    padding-top: clamp(10px, 34.6666666667vw, 130px);
  }
}
.p-common__kv__inner .p-common__title {
  width: fit-content;
  margin: auto;
  text-align: center;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: clamp(10px, 3.2552083333vw, 50px);
  line-height: 1;
  text-align: center;
  position: relative;
  white-space: nowrap;
  text-transform: capitalize;
}
@media (max-width: 980px) {
  .p-common__kv__inner .p-common__title {
    font-size: 26px;
  }
}
.p-common__kv__inner .p-common__title .title__en {
  font-family: "EB Garamond", serif;
  font-weight: normal;
  font-size: clamp(10px, 1.3020833333vw, 20px);
  display: block;
  text-align: center;
}
@media (max-width: 980px) {
  .p-common__kv__inner .p-common__title .title__en {
    font-size: 13px;
  }
}
.p-common__kv__inner .p-common__title .title__deco {
  width: clamp(10px, 39.0625vw, 600px);
  height: clamp(10px, 5.2083333333vw, 80px);
  display: block;
  margin: auto;
  margin-top: clamp(10px, 2.2135416667vw, 34px);
  margin-bottom: clamp(10px, 1.3020833333vw, 20px);
}
@media (max-width: 980px) {
  .p-common__kv__inner .p-common__title .title__deco {
    width: clamp(10px, 92vw, 345px);
    height: clamp(10px, 14.6666666667vw, 55px);
    margin: auto;
    margin-top: 18px;
    margin-bottom: 7px;
  }
}
.p-common__kv__inner .p-common__title .title__deco svg {
  width: 100%;
  height: 100%;
}
.p-common__kv__inner .p-common__title .title__deco svg .svg-elem-1 {
  animation: animate-svg-stroke-1 1.5s cubic-bezier(0.47, 0, 0.745, 0.715) 0.12s both;
}
.p-common__kv__inner .p-common__title .title__deco svg .svg-elem-2 {
  animation: animate-svg-stroke-2 1.5s cubic-bezier(0.47, 0, 0.745, 0.715) 0.12s both;
}
@keyframes animate-svg-stroke-1 {
  0% {
    stroke-dashoffset: 313.8858947754px;
    stroke-dasharray: 313.8858947754px;
  }
  100% {
    stroke-dashoffset: 627.7717895508px;
    stroke-dasharray: 313.8858947754px;
  }
}
@keyframes animate-svg-stroke-2 {
  0% {
    stroke-dashoffset: 311.0815429688px;
    stroke-dasharray: 311.0815429688px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 311.0815429688px;
  }
}
.p-common__kv__inner .p-common__title.white {
  color: #fff;
}
.p-common__kv__inner .p-common__title.white .title__en {
  color: #fff;
}
.p-common__kv__inner .p-common__title.white .title__deco svg #left,
.p-common__kv__inner .p-common__title.white .title__deco svg #right {
  stroke: white;
}

@keyframes title_deco_left {
  0% {
    transform: scale(0) rotate(-15deg);
  }
  100% {
    transform: scale(1) rotate(-15deg);
  }
}
@keyframes title_deco_right {
  0% {
    transform: scale(0) rotate(15deg);
  }
  100% {
    transform: scale(1) rotate(15deg);
  }
}
@keyframes title_deco_left_sp {
  0% {
    transform: scale(0) rotate(-18deg);
  }
  100% {
    transform: scale(1) rotate(-18deg);
  }
}
@keyframes title_deco_right_sp {
  0% {
    transform: scale(0) rotate(18deg);
  }
  100% {
    transform: scale(1) rotate(18deg);
  }
}
@keyframes arrowmove {
  0% {
    bottom: 1%;
  }
  10% {
    bottom: 6%;
  }
  20% {
    bottom: 1%;
  }
  100% {
    bottom: 1%;
  }
}
@keyframes arrowmoveTop {
  0% {
    top: 1%;
  }
  10% {
    top: 6%;
  }
  20% {
    top: 1%;
  }
  100% {
    top: 1%;
  }
}
.p-common__sec__wide {
  width: 100%;
}

.p-common__sec__inner {
  width: clamp(10px, 80.46875vw, 1236px);
  margin: auto;
}
@media (max-width: 980px) {
  .p-common__sec__inner {
    width: clamp(10px, 89.3333333333vw, 335px);
  }
}

.p-common__sec__innerSmall {
  width: clamp(10px, 62.6953125vw, 963px);
  margin: auto;
}
@media (max-width: 980px) {
  .p-common__sec__innerSmall {
    width: clamp(10px, 89.3333333333vw, 335px);
  }
}

/**
 * ページ別CSS
 * 私たちの想い - about
 */
.p-about__kv {
  width: 100%;
  height: clamp(10px, 54.0364583333vw, 830px);
  background: url(../images/about/kv_about.jpg) no-repeat;
  background-size: cover;
}
@media (max-width: 980px) {
  .p-about__kv {
    height: clamp(10px, 114.6666666667vw, 430px);
    background: url(../images/about/kv_about_sp.jpg) no-repeat;
    background-size: cover;
  }
}

.p-about__sec .p-about__sec__box {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 980px) {
  .p-about__sec .p-about__sec__box {
    flex-direction: column;
  }
}
.p-about__sec .p-about__sec__box .box__read {
  width: fit-content;
}
@media (max-width: 980px) {
  .p-about__sec .p-about__sec__box .box__read {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
  }
}
.p-about__sec .p-about__sec__box .box__read p {
  writing-mode: vertical-rl;
  text-orientation: upright;
}
@media (max-width: 980px) {
  .p-about__sec .p-about__sec__box .box__read p {
    margin-right: auto;
  }
}
.p-about__sec .p-about__sec__box .box__read p span {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: clamp(10px, 2.0833333333vw, 32px);
  line-height: 1.59375;
  letter-spacing: 0.15em;
  display: block;
}
@media (max-width: 980px) {
  .p-about__sec .p-about__sec__box .box__read p span {
    font-size: 18px;
  }
}
@media (max-width: 980px) {
  .p-about__sec .p-about__sec__box .box__read .box__read__img {
    margin-top: -24px;
    z-index: -1;
    opacity: 0;
  }
}
.p-about__sec .p-about__sec__box .box__cont {
  width: clamp(10px, 35.8072916667vw, 550px);
}
@media (max-width: 980px) {
  .p-about__sec .p-about__sec__box .box__cont {
    width: 100%;
  }
}
.p-about__sec .p-about__sec__box .box__cont .box__cont__title {
  font-family: "EB Garamond", serif;
  font-weight: normal;
  font-size: clamp(10px, 2.6041666667vw, 40px);
}
@media (max-width: 980px) {
  .p-about__sec .p-about__sec__box .box__cont .box__cont__title {
    font-size: 30px;
    line-height: 1;
  }
}
.p-about__sec .p-about__sec__box .box__cont .box__cont__txt {
  font-size: clamp(10px, 0.9114583333vw, 14px);
  line-height: 2.2857142857;
  font-weight: 400;
  letter-spacing: 0;
}
@media (max-width: 980px) {
  .p-about__sec .p-about__sec__box .box__cont .box__cont__txt {
    font-size: 14px;
    margin-top: 13px;
    font-weight: 300;
  }
}
.p-about__sec.storyArea {
  margin-top: clamp(10px, 8.9192708333vw, 137px);
}
@media (max-width: 980px) {
  .p-about__sec.storyArea {
    margin-top: 95px;
  }
}
.p-about__sec.storyArea .p-about__sec__read {
  position: relative;
}
.p-about__sec.storyArea .p-about__sec__read .storyRead_inviewLine {
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  top: 30vh;
}
.p-about__sec.storyArea .p-about__sec__read span {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: clamp(10px, 2.2786458333vw, 35px);
  letter-spacing: 0.03em;
  line-height: 2.1428571429;
  opacity: 0;
  overflow: hidden;
  white-space: nowrap;
}
@media (max-width: 980px) {
  .p-about__sec.storyArea .p-about__sec__read span {
    font-size: 20px;
    letter-spacing: 0.01em;
    line-height: 42px;
    white-space: nowrap;
  }
}
.p-about__sec.storyArea .p-about__sec__read.is-view span {
  animation: fadeUp 5s forwards;
}
@media (max-width: 980px) {
  .p-about__sec.storyArea .p-about__sec__read.is-view span {
    animation: fadeUp 4s forwards ease-in-out;
  }
}
.p-about__sec.storyArea .p-about__sec__read.is-view span:nth-of-type(2) {
  animation-delay: 0;
}
.p-about__sec.storyArea .p-about__sec__read.is-view span:nth-of-type(3) {
  animation-delay: 0.5s;
}
.p-about__sec.storyArea .p-about__sec__read.is-view span:nth-of-type(4) {
  animation-delay: 1s;
}
.p-about__sec.storyArea .p-about__sec__box.story {
  margin-top: clamp(10px, 16.015625vw, 246px);
  margin-bottom: clamp(10px, 4.8828125vw, 75px);
  position: relative;
}
@media (max-width: 980px) {
  .p-about__sec.storyArea .p-about__sec__box.story {
    margin-top: 147px;
  }
}
.p-about__sec.storyArea .p-about__sec__box.story .story_inviewLine {
  display: block;
  width: 100%;
  height: 1px;
  background: transparent;
  position: absolute;
  top: 40vh;
}
.p-about__sec.storyArea .p-about__sec__box.story .box__read {
  margin-left: -0.4557291667vw;
}
@media (min-width: 1536px) {
  .p-about__sec.storyArea .p-about__sec__box.story .box__read {
    margin-left: -7px;
  }
}
@media (max-width: 980px) {
  .p-about__sec.storyArea .p-about__sec__box.story .box__read {
    margin-left: 0;
  }
}
@media (max-width: 980px) {
  .p-about__sec.storyArea .p-about__sec__box.story .box__read p {
    margin-left: -7px;
  }
}
.p-about__sec.storyArea .p-about__sec__box.story .box__read p span {
  opacity: 0;
}
.p-about__sec.storyArea .p-about__sec__box.story .box__cont {
  margin-top: clamp(10px, 5.859375vw, 90px);
  opacity: 0;
}
@media (max-width: 980px) {
  .p-about__sec.storyArea .p-about__sec__box.story .box__cont {
    margin-top: 27px;
  }
}
.p-about__sec.storyArea .p-about__sec__box.story .box__cont.is-view {
  animation: unset;
}
@media (max-width: 980px) {
  .p-about__sec.storyArea .p-about__sec__box.story .box__cont.is-view {
    animation: fadeUp 5s forwards 1s !important;
  }
}
.p-about__sec.storyArea .p-about__sec__box.story .story__img {
  opacity: 0;
}
.p-about__sec.storyArea .p-about__sec__box.story.is-view .box__read p span {
  animation: fadeUp 5s forwards;
}
.p-about__sec.storyArea .p-about__sec__box.story.is-view .box__read p span:first-of-type {
  animation-delay: 0.5s;
}
.p-about__sec.storyArea .p-about__sec__box.story.is-view .box__read p span:nth-of-type(2) {
  animation-delay: 1s;
}
.p-about__sec.storyArea .p-about__sec__box.story.is-view .box__read p span:nth-of-type(3) {
  animation-delay: 1.5s;
}
.p-about__sec.storyArea .p-about__sec__box.story.is-view .box__read p span:nth-of-type(4) {
  animation-delay: 2s;
}
.p-about__sec.storyArea .p-about__sec__box.story.is-view .box__read .box__read__img {
  animation: fadeUp 5s forwards 2.5s;
}
.p-about__sec.storyArea .p-about__sec__box.story.is-view .box__cont {
  animation: fadeUp 5s forwards 3s;
}
@media (max-width: 980px) {
  .p-about__sec.storyArea .p-about__sec__box.story.is-view .box__cont {
    animation: unset;
  }
}
.p-about__sec.storyArea .p-about__sec__box.story.is-view .story__img {
  animation: fadeUp 5s forwards;
}
.p-about__sec.storyArea .story__img {
  opacity: 0;
}
.p-about__sec.storyArea .story__img.is-view {
  animation: fadeUp 5s forwards;
}
.p-about__sec.conceptArea {
  position: relative;
}
.p-about__sec.conceptArea::before {
  content: "";
  width: clamp(10px, 35.8072916667vw, 550px);
  height: clamp(10px, 41.015625vw, 630px);
  display: block;
  position: absolute;
  right: 0;
  top: clamp(10px, 5.859375vw, 90px);
  background: url(../images/about/bg_concept.jpg) no-repeat;
  background-size: cover;
  z-index: -1;
  opacity: 0;
}
@media (max-width: 980px) {
  .p-about__sec.conceptArea::before {
    width: 335px;
    height: 300px;
    background: url(../images/about/bg_concept_sp.jpg) no-repeat;
    background-size: cover;
    left: 0;
    right: 0;
    margin: auto;
    margin-top: 162px;
  }
}
.p-about__sec.conceptArea .p-about__sec__box.concept {
  margin-top: clamp(10px, 11.71875vw, 180px);
  margin-bottom: clamp(10px, 11.0026041667vw, 169px);
}
@media (max-width: 980px) {
  .p-about__sec.conceptArea .p-about__sec__box.concept {
    margin-top: 119px;
    margin-bottom: 112px;
    flex-direction: column-reverse;
  }
}
.p-about__sec.conceptArea .p-about__sec__box.concept .box__cont {
  margin-top: clamp(10px, 31.1848958333vw, 479px);
  margin-left: clamp(10px, 4.3619791667vw, 67px);
  opacity: 0;
}
@media (max-width: 980px) {
  .p-about__sec.conceptArea .p-about__sec__box.concept .box__cont {
    margin-top: 35px;
    margin-left: 0;
  }
}
.p-about__sec.conceptArea .p-about__sec__box.concept .box__cont.is-view {
  animation: fadeUp 5s forwards 1.5s;
}
.p-about__sec.conceptArea .p-about__sec__box.concept .box__read {
  margin-right: auto;
  margin-left: -2.0182291667vw;
}
@media (min-width: 1536px) {
  .p-about__sec.conceptArea .p-about__sec__box.concept .box__read {
    margin-left: -31px;
  }
}
@media (max-width: 980px) {
  .p-about__sec.conceptArea .p-about__sec__box.concept .box__read {
    height: 485px;
    margin-left: 0;
  }
}
@media (max-width: 980px) {
  .p-about__sec.conceptArea .p-about__sec__box.concept .box__read p {
    margin-right: -3px;
    margin-left: auto;
  }
}
.p-about__sec.conceptArea .p-about__sec__box.concept .box__read p span {
  opacity: 0;
}
.p-about__sec.conceptArea .concept_inviewLine {
  display: block;
  width: 100%;
  height: 1px;
  background: transparent;
  position: absolute;
  top: 45vh;
}
.p-about__sec.conceptArea.is-view::before {
  animation: fadeUp 5s forwards 1.5s;
}
.p-about__sec.conceptArea.is-view .box__read p span {
  animation: fadeUp 5s forwards;
}
.p-about__sec.conceptArea.is-view .box__read p span:first-of-type {
  animation-delay: 0.1s;
}
.p-about__sec.conceptArea.is-view .box__read p span:nth-of-type(2) {
  animation-delay: 0.5s;
}
.p-about__sec.conceptArea.is-view .box__read p span:nth-of-type(3) {
  animation-delay: 1s;
}
.p-about__sec.architectArea {
  margin-top: clamp(10px, 1.3020833333vw, 20px);
  margin-bottom: clamp(10px, 16.3411458333vw, 251px);
}
@media (max-width: 980px) {
  .p-about__sec.architectArea {
    margin-top: 87px;
    margin-bottom: 0;
  }
}
.p-about__sec.architectArea .p-about__sec__box.architect {
  align-items: end;
}
.p-about__sec.architectArea .p-about__sec__box.architect .box__imgArea {
  width: clamp(10px, 14.9739583333vw, 230px);
  position: relative;
  padding-top: clamp(10px, 2.1484375vw, 33px);
  margin-right: clamp(10px, 4.5572916667vw, 70px);
  margin-left: clamp(10px, 3.9713541667vw, 61px);
}
@media (max-width: 980px) {
  .p-about__sec.architectArea .p-about__sec__box.architect .box__imgArea {
    width: 204px;
    margin: auto;
  }
}
.p-about__sec.architectArea .p-about__sec__box.architect .box__imgArea .box__imgArea__title {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: clamp(10px, 2.2786458333vw, 35px);
  line-height: 1.2;
  letter-spacing: 0.15em;
  writing-mode: vertical-rl;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 1;
}
@media (max-width: 980px) {
  .p-about__sec.architectArea .p-about__sec__box.architect .box__imgArea .box__imgArea__title {
    font-size: 24px;
    left: -21px;
  }
}
.p-about__sec.architectArea .p-about__sec__box.architect .box__imgArea img {
  width: 88.6956521739%;
  display: block;
  margin-top: clamp(10px, 3.90625vw, 60px);
  margin-left: clamp(10px, 2.0182291667vw, 31px);
  opacity: 0;
}
@media (max-width: 980px) {
  .p-about__sec.architectArea .p-about__sec__box.architect .box__imgArea img {
    width: 100%;
    margin-top: 47px;
    margin-left: 0;
  }
}
.p-about__sec.architectArea .p-about__sec__box.architect .box__txtArea {
  margin-top: clamp(10px, 9.3098958333vw, 143px);
  width: clamp(10px, 35.8072916667vw, 550px);
}
@media (max-width: 980px) {
  .p-about__sec.architectArea .p-about__sec__box.architect .box__txtArea {
    margin-top: 47px;
    width: 100%;
  }
}
.p-about__sec.architectArea .p-about__sec__box.architect .box__txtArea .box__txtArea__title {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: clamp(10px, 1.6927083333vw, 26px);
  margin-bottom: clamp(10px, 1.7578125vw, 27px);
  opacity: 0;
}
@media (max-width: 980px) {
  .p-about__sec.architectArea .p-about__sec__box.architect .box__txtArea .box__txtArea__title {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 17px;
  }
}
.p-about__sec.architectArea .p-about__sec__box.architect .box__txtArea .box__txtArea__txt {
  opacity: 0;
}
.p-about__sec.architectArea .p-about__sec__box.architect .box__txtArea .box__txtArea__txt p {
  font-size: clamp(10px, 0.9114583333vw, 14px);
  line-height: 2.2857142857;
  font-weight: 400;
}
@media (max-width: 980px) {
  .p-about__sec.architectArea .p-about__sec__box.architect .box__txtArea .box__txtArea__txt p {
    font-size: 12px;
    line-height: 27px;
    font-weight: 300;
  }
}
.p-about__sec.architectArea .p-about__sec__box.architect .box__txtArea .box__txtArea__txt p:first-of-type {
  margin-bottom: clamp(10px, 1.3671875vw, 21px);
}
@media (max-width: 980px) {
  .p-about__sec.architectArea .p-about__sec__box.architect .box__txtArea .box__txtArea__txt p:first-of-type {
    margin-bottom: 13px;
  }
}
.p-about__sec.architectArea.is-view .box__imgArea .box__imgArea__title {
  animation: fadeUp 5s forwards 1s;
}
.p-about__sec.architectArea.is-view .box__imgArea img {
  animation: fadeUp 5s forwards 1.5s;
}
.p-about__sec.architectArea.is-view .box__txtArea .box__txtArea__title {
  animation: fadeUp 5s forwards 1.5s;
}
.p-about__sec.architectArea.is-view .box__txtArea .box__txtArea__txt {
  animation: fadeUp 5s forwards 2s;
}

/**
 * ページ別CSS
 * Villa 天つ星 - villa
 */
.p-villa__kv {
  width: 100%;
  height: clamp(10px, 54.0364583333vw, 830px);
  background: url(../images/villa/kv_villa.jpg) no-repeat;
  background-size: cover;
}
@media (max-width: 980px) {
  .p-villa__kv {
    height: clamp(10px, 114.6666666667vw, 430px);
    background: url(../images/villa/kv_villa_sp.jpg) no-repeat;
    background-size: cover;
  }
}

.p-villa__sec {
  margin-top: clamp(10px, 11.9140625vw, 183px);
}
@media (max-width: 980px) {
  .p-villa__sec {
    margin-top: 120px;
  }
}
.p-villa__sec.navArea {
  margin-top: clamp(10px, 9.1145833333vw, 140px);
}
@media (max-width: 980px) {
  .p-villa__sec.navArea {
    margin-top: 74px;
  }
}
.p-villa__sec.navArea .p-villa__nav {
  margin: auto;
}
@media (max-width: 980px) {
  .p-villa__sec.navArea .p-villa__nav {
    width: 100%;
  }
}
.p-villa__sec.navArea .p-villa__nav ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  row-gap: clamp(10px, 1.7578125vw, 27px);
}
@media (max-width: 980px) {
  .p-villa__sec.navArea .p-villa__nav ul {
    column-gap: clamp(10px, 9.6vw, 36px);
    row-gap: 7px;
  }
}
.p-villa__sec.navArea .p-villa__nav ul .spacer {
  width: 100%;
}
.p-villa__sec.navArea .p-villa__nav ul li {
  margin-right: clamp(10px, 6.5104166667vw, 100px);
  min-width: 80px;
  height: clamp(10px, 5.7942708333vw, 89px);
  position: relative;
}
@media (max-width: 980px) {
  .p-villa__sec.navArea .p-villa__nav ul li {
    min-width: 50px;
    height: 60px;
  }
}
.p-villa__sec.navArea .p-villa__nav ul li a {
  display: block;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: clamp(10px, 1.6927083333vw, 26px);
  text-align: center;
  width: 100%;
  height: 100%;
}
@media (max-width: 980px) {
  .p-villa__sec.navArea .p-villa__nav ul li a {
    font-size: 18px;
  }
}
.p-villa__sec.navArea .p-villa__nav ul li a .nav__list__icon {
  width: clamp(10px, 5.2083333333vw, 80px);
  margin: auto;
  position: absolute;
  bottom: 1%;
  left: 0;
  right: 0;
  animation: arrowmove 6s ease-in-out infinite;
}
@media (max-width: 980px) {
  .p-villa__sec.navArea .p-villa__nav ul li a .nav__list__icon {
    width: clamp(10px, 13.3333333333vw, 50px);
  }
}
.p-villa__sec.navArea .p-villa__nav ul li:nth-of-type(3), .p-villa__sec.navArea .p-villa__nav ul li:last-of-type {
  margin-right: 0;
}
.p-villa__sec.navArea .p-villa__nav ul li:nth-of-type(4) {
  margin-right: clamp(10px, 4.5572916667vw, 70px);
}
@media (max-width: 980px) {
  .p-villa__sec.navArea .p-villa__nav ul li:nth-of-type(4) {
    margin-right: 0;
  }
}
.p-villa__sec .p-villa__txtArea {
  width: clamp(10px, 35.8072916667vw, 550px);
  margin: auto;
  position: relative;
}
@media (max-width: 980px) {
  .p-villa__sec .p-villa__txtArea {
    width: clamp(10px, 89.3333333333vw, 335px);
  }
}
.p-villa__sec .p-villa__txtArea .p-villa__txtArea__title {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: clamp(10px, 2.2786458333vw, 35px);
  letter-spacing: 0.1em;
  writing-mode: vertical-rl;
  margin: auto;
  opacity: 0;
}
@media (max-width: 980px) {
  .p-villa__sec .p-villa__txtArea .p-villa__txtArea__title {
    font-size: 24px;
  }
}
.p-villa__sec .p-villa__txtArea .p-villa__txtArea__read {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: clamp(10px, 1.6927083333vw, 26px);
  letter-spacing: 0.03em;
  line-height: 1.6153846154;
  text-align: center;
  margin-top: clamp(10px, 3.3854166667vw, 52px);
  opacity: 0;
}
@media (max-width: 980px) {
  .p-villa__sec .p-villa__txtArea .p-villa__txtArea__read {
    font-size: 20px;
    line-height: 38px;
    margin-top: 24px;
    letter-spacing: -0.01em;
  }
}
.p-villa__sec .p-villa__txtArea .p-villa__txtArea__txt {
  font-family: Hiragino Sans W3;
  font-weight: normal;
  font-size: clamp(10px, 0.9114583333vw, 14px);
  line-height: 2.2857142857;
  letter-spacing: 0.02em;
  margin-top: clamp(10px, 1.8880208333vw, 29px);
  opacity: 0;
}
@media (max-width: 980px) {
  .p-villa__sec .p-villa__txtArea .p-villa__txtArea__txt {
    font-size: 14px;
    margin-top: 21px;
  }
}
.p-villa__sec .p-villa__txtArea .vill__sec__inviewLine {
  display: block;
  width: 100%;
  height: 1px;
  background: transparent;
  position: absolute;
  top: 30vh;
}
.p-villa__sec .p-villa__txtArea.is-view .p-villa__txtArea__title {
  animation: fadeUp 5s forwards !important;
}
.p-villa__sec .p-villa__txtArea.is-view .p-villa__txtArea__read {
  animation: fadeUp 5s forwards 1s !important;
}
.p-villa__sec .p-villa__txtArea.is-view .p-villa__txtArea__txt {
  animation: fadeUp 5s forwards 1.5s !important;
}
.p-villa__sec .p-villa__sec__title {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: clamp(10px, 2.2786458333vw, 35px);
  letter-spacing: 0.03em;
  text-align: center;
}
@media (max-width: 980px) {
  .p-villa__sec .p-villa__sec__title {
    font-size: 24px;
  }
}
.p-villa__sec .swiperWide {
  height: 54.0364583333vw;
  margin-top: clamp(10px, 4.5572916667vw, 70px);
  position: relative;
}
@media (max-width: 980px) {
  .p-villa__sec .swiperWide {
    width: 100%;
    height: 65.0666666667vw;
    margin-top: 40px;
  }
}
.p-villa__sec .swiperWide .swiper-pagination-bullet {
  width: 5px;
  height: 5px;
}
.p-villa__sec .swiperWide .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #000;
  width: 7px;
  height: 7px;
}
@media (max-width: 980px) {
  .p-villa__sec .swiperWide .swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: -30px;
  }
}
.p-villa__sec .swiperWide .swiper-button-next,
.p-villa__sec .swiperWide .swiper-button-prev {
  position: absolute;
  top: 50%;
  width: 3.90625vw;
  height: 3.90625vw;
}
@media (max-width: 980px) {
  .p-villa__sec .swiperWide .swiper-button-next,
  .p-villa__sec .swiperWide .swiper-button-prev {
    display: none;
  }
}
.p-villa__sec .swiperWide .swiper-button-next::after,
.p-villa__sec .swiperWide .swiper-button-prev::after {
  content: "";
  width: 100%;
  height: 100%;
}
.p-villa__sec .swiperWide .swiper-button-prev {
  left: 3.2552083333vw;
}
.p-villa__sec .swiperWide .swiper-button-prev::after {
  background: url(../images/common/icon_slide_btn_prev_opacity.svg) no-repeat;
  background-size: contain;
}
.p-villa__sec .swiperWide .swiper-button-next {
  right: 3.2552083333vw;
}
.p-villa__sec .swiperWide .swiper-button-next::after {
  background: url(../images/common/icon_slide_btn_next_opacity.svg) no-repeat;
  background-size: contain;
}
.p-villa__sec .p-villa__tab__list {
  margin-top: clamp(10px, 4.7526041667vw, 73px);
  display: flex;
  justify-content: center;
  gap: clamp(10px, 5.2083333333vw, 80px);
}
@media (max-width: 980px) {
  .p-villa__sec .p-villa__tab__list {
    margin-top: 63px;
    gap: 45px;
  }
}
.p-villa__sec .p-villa__tab__list li {
  width: clamp(10px, 5.2083333333vw, 80px);
  padding-top: clamp(10px, 1.171875vw, 18px);
  position: relative;
}
@media (max-width: 980px) {
  .p-villa__sec .p-villa__tab__list li {
    width: fit-content;
    padding-top: 17px;
  }
}
.p-villa__sec .p-villa__tab__list li p {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: clamp(10px, 1.171875vw, 18px);
  text-align: center;
  width: fit-content;
  margin: auto;
  display: flex;
  flex-direction: column;
  position: relative;
}
@media (max-width: 980px) {
  .p-villa__sec .p-villa__tab__list li p {
    font-size: 16px;
    line-height: 2;
  }
}
.p-villa__sec .p-villa__tab__list li.is-active p::after {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  background: #171a1d;
}
.p-villa__sec .p-villa__tab__list .p-villa__tab__list__icon {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  animation: arrowmoveTop 6s ease-in-out infinite;
}
@media (max-width: 980px) {
  .p-villa__sec .p-villa__tab__list .p-villa__tab__list__icon {
    width: 50px;
  }
}
.p-villa__sec .p-villa__tab__content {
  margin-top: clamp(10px, 2.6041666667vw, 40px);
}
@media (max-width: 980px) {
  .p-villa__sec .p-villa__tab__content {
    margin-top: 47px;
  }
}
.p-villa__sec .p-villa__tab__content .ac_content {
  display: none;
}
.p-villa__sec .p-villa__tab__content .ac_content.is-active {
  display: block;
}
.p-villa__sec .p-villa__tab__content .ac_content.madorizu img {
  width: clamp(10px, 29.296875vw, 450px);
  margin: auto;
  display: block;
}
@media (max-width: 980px) {
  .p-villa__sec .p-villa__tab__content .ac_content.madorizu img {
    width: clamp(10px, 89.3333333333vw, 335px);
  }
}
@media (max-width: 980px) {
  .p-villa__sec.introspec {
    margin-top: 100px;
  }
}
.p-villa__sec.garden {
  margin-top: clamp(10px, 12.3697916667vw, 190px);
}
@media (max-width: 980px) {
  .p-villa__sec.garden {
    margin-top: 150px;
  }
}
.p-villa__sec.garden .swiperWide {
  margin-top: clamp(10px, 2.6041666667vw, 40px);
}
@media (max-width: 980px) {
  .p-villa__sec.garden .swiperWide {
    margin-top: 7px;
  }
}
.p-villa__sec.gallery {
  margin-top: clamp(10px, 10.6770833333vw, 164px);
}
@media (max-width: 980px) {
  .p-villa__sec.gallery {
    margin-top: 135px;
  }
}
.p-villa__sec.gallery .swiper .swiper-button-prev,
.p-villa__sec.gallery .swiper .swiper-button-next {
  display: none;
}
.p-villa__sec.basicInfo {
  margin-top: clamp(10px, 7.2265625vw, 111px);
}
@media (max-width: 980px) {
  .p-villa__sec.basicInfo {
    margin-top: 93px;
  }
}
.p-villa__sec.basicInfo .p-villa__list {
  width: clamp(10px, 54.0364583333vw, 830px);
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid #707070;
  margin-top: clamp(1px, 1.5625vw, 24px);
}
@media (max-width: 980px) {
  .p-villa__sec.basicInfo .p-villa__list {
    width: clamp(10px, 89.3333333333vw, 335px);
    flex-direction: column;
    margin-top: 18px;
  }
}
.p-villa__sec.basicInfo .p-villa__list dt,
.p-villa__sec.basicInfo .p-villa__list dd {
  font-family: Hiragino Sans W3;
  font-weight: normal;
  font-size: clamp(10px, 1.0416666667vw, 16px);
  line-height: 2;
  padding-top: clamp(10px, 1.2369791667vw, 19px);
  padding-bottom: clamp(10px, 0.8463541667vw, 13px);
}
@media (max-width: 980px) {
  .p-villa__sec.basicInfo .p-villa__list dt,
  .p-villa__sec.basicInfo .p-villa__list dd {
    font-size: 16px;
    padding-top: 14px;
  }
}
.p-villa__sec.basicInfo .p-villa__list dt {
  width: 21.9277108434%;
  padding-left: clamp(10px, 1.3020833333vw, 20px);
  border-bottom: 1px solid #707070;
}
@media (max-width: 980px) {
  .p-villa__sec.basicInfo .p-villa__list dt {
    width: 100%;
    border-bottom: none;
    padding-left: 0;
    padding-bottom: 0;
  }
}
.p-villa__sec.basicInfo .p-villa__list dd {
  width: 78.0722891566%;
  border-bottom: 1px solid #707070;
}
@media (max-width: 980px) {
  .p-villa__sec.basicInfo .p-villa__list dd {
    width: 100%;
    padding-top: 0;
  }
}
.p-villa__sec.basicInfo .p-villa__list .hosoku {
  margin-top: clamp(1px, 0.2604166667vw, 4px);
  padding-right: 2em;
}
@media (max-width: 980px) {
  .p-villa__sec.basicInfo .p-villa__list .hosoku {
    padding-right: 0;
  }
}
.p-villa__sec.basicInfo .p-villa__list .hosoku .hosoku__title,
.p-villa__sec.basicInfo .p-villa__list .hosoku .hosoku__txt {
  font-family: Hiragino Sans W3;
  font-weight: normal;
  font-size: clamp(10px, 0.9114583333vw, 14px);
  line-height: 2.2857142857;
}
@media (max-width: 980px) {
  .p-villa__sec.basicInfo .p-villa__list .hosoku .hosoku__title,
  .p-villa__sec.basicInfo .p-villa__list .hosoku .hosoku__txt {
    font-size: 14px;
    line-height: 28px;
  }
}
.p-villa__sec.basicInfo .p-villa__list .setsubi {
  padding-top: clamp(1px, 0.7161458333vw, 11px);
  padding-bottom: clamp(10px, 1.3020833333vw, 20px);
}
.p-villa__sec.basicInfo .p-villa__list .setsubi .hosoku {
  margin-top: clamp(1px, 0.5859375vw, 9px);
}
@media (max-width: 980px) {
  .p-villa__sec.basicInfo .p-villa__list .setsubi .hosoku {
    margin-top: 9px;
  }
}
.p-villa__sec.basicInfo .p-villa__list .setsubi .hosoku .hosoku__title {
  font-size: clamp(10px, 1.0416666667vw, 16px);
  line-height: 2;
}
@media (max-width: 980px) {
  .p-villa__sec.basicInfo .p-villa__list .setsubi .hosoku .hosoku__title {
    font-size: 16px;
    line-height: 22px;
  }
}
.p-villa__sec.basicInfo .p-villa__list .setsubi .hosoku .hosoku__txt {
  font-family: Hiragino Sans W3;
  font-weight: normal;
  font-size: clamp(10px, 0.9114583333vw, 14px);
  line-height: 2;
}
@media (max-width: 980px) {
  .p-villa__sec.basicInfo .p-villa__list .setsubi .hosoku .hosoku__txt {
    font-size: 14px;
    line-height: 28px;
  }
}
.p-villa__sec.basicInfo .p-villa__attention {
  width: clamp(10px, 51.3020833333vw, 788px);
  margin: auto;
  margin-top: clamp(10px, 2.1484375vw, 33px);
}
@media (max-width: 980px) {
  .p-villa__sec.basicInfo .p-villa__attention {
    width: clamp(10px, 89.3333333333vw, 335px);
    margin-top: 23px;
  }
}
.p-villa__sec.basicInfo .p-villa__attention p {
  font-family: Hiragino Sans W3;
  font-weight: normal;
  font-size: clamp(10px, 0.9114583333vw, 14px);
  line-height: 2.2857142857;
}
@media (max-width: 980px) {
  .p-villa__sec.basicInfo .p-villa__attention p {
    font-size: 14px;
    line-height: 28px;
  }
}

/**
 * ページ別CSS
 * 田原市とは - taharacity
 */
.p-taharacity__kv {
  width: 100%;
  height: clamp(10px, 54.0364583333vw, 830px);
  background: url(../images/taharacity/kv_taharacity.jpg) no-repeat;
  background-size: cover;
}
@media (max-width: 980px) {
  .p-taharacity__kv {
    height: clamp(10px, 114.6666666667vw, 430px);
    background: url(../images/taharacity/kv_taharacity_sp.jpg) no-repeat;
    background-size: cover;
  }
}

.p-taharacity__sec {
  margin-top: clamp(10px, 9.765625vw, 150px);
  position: relative;
}
@media (max-width: 980px) {
  .p-taharacity__sec {
    margin-top: 120px;
  }
}
@media (max-width: 980px) {
  .p-taharacity__sec.overview {
    margin-top: 43px;
  }
}
.p-taharacity__sec.overview .overview__inner {
  width: clamp(10px, 54.0364583333vw, 830px);
  margin: auto;
}
@media (max-width: 980px) {
  .p-taharacity__sec.overview .overview__inner {
    width: clamp(10px, 89.6vw, 336px);
  }
}
.p-taharacity__sec.overview .overview__inviewLine {
  position: absolute;
  top: 30vh;
  display: block;
  width: 100%;
  height: 1px;
  background: transparent;
}
.p-taharacity__sec.overview .overview__txtArea {
  width: clamp(10px, 35.8072916667vw, 550px);
  position: relative;
}
@media (max-width: 980px) {
  .p-taharacity__sec.overview .overview__txtArea {
    width: 100%;
  }
}
.p-taharacity__sec.overview .overview__txtArea .overview__txtArea__title span {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: clamp(10px, 1.6927083333vw, 26px);
  letter-spacing: 0.03em;
  line-height: 1.6153846154;
  display: block;
  opacity: 0;
}
@media (max-width: 980px) {
  .p-taharacity__sec.overview .overview__txtArea .overview__txtArea__title span {
    font-size: 20px;
    letter-spacing: -0.01em;
    line-height: 38px;
    display: inline-block;
  }
}
.p-taharacity__sec.overview .overview__txtArea .overview__txtArea__txt {
  font-family: Hiragino Sans W3;
  font-weight: normal;
  font-size: clamp(10px, 0.9114583333vw, 14px);
  line-height: 2.2857142857;
  margin-top: clamp(10px, 1.8229166667vw, 28px);
  opacity: 0;
}
@media (max-width: 980px) {
  .p-taharacity__sec.overview .overview__txtArea .overview__txtArea__txt {
    font-size: 14px;
    margin-top: 40px;
  }
}
.p-taharacity__sec.overview .overview__txtArea.is-view .overview__txtArea__title span:first-of-type {
  animation: fadeUp 5s forwards;
}
.p-taharacity__sec.overview .overview__txtArea.is-view .overview__txtArea__title span:nth-of-type(2) {
  animation: fadeUp 5s forwards 0.5s;
}
.p-taharacity__sec.overview .overview__txtArea.is-view .overview__txtArea__title span:last-of-type {
  animation: fadeUp 5s forwards 1s;
}
.p-taharacity__sec.overview .overview__txtArea.is-view .overview__txtArea__txt {
  animation: fadeUp 5s forwards 1.8s;
}
.p-taharacity__sec.overview .overview__mapArea {
  width: clamp(10px, 34.4401041667vw, 529px);
  height: clamp(10px, 27.2786458333vw, 419px);
  margin-left: auto;
  margin-top: -14.7135416667vw;
  position: relative;
}
@media (min-width: 1536px) {
  .p-taharacity__sec.overview .overview__mapArea {
    margin-top: -226px;
  }
}
@media (max-width: 980px) {
  .p-taharacity__sec.overview .overview__mapArea {
    width: clamp(10px, 89.3333333333vw, 335px);
    height: auto;
    margin-top: 20px;
  }
}
.p-taharacity__sec.overview .overview__mapArea img {
  width: clamp(10px, 24.0234375vw, 369px);
  display: block;
  margin-left: auto;
  opacity: 0;
}
@media (max-width: 980px) {
  .p-taharacity__sec.overview .overview__mapArea img {
    width: 100%;
  }
}
.p-taharacity__sec.overview .overview__mapArea .overview__mapArea__txt {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: clamp(10px, 1.171875vw, 18px);
  letter-spacing: 0.01em;
  line-height: 1;
  position: absolute;
  top: clamp(10px, 19.53125vw, 300px);
  left: 0;
  opacity: 0;
}
@media (max-width: 980px) {
  .p-taharacity__sec.overview .overview__mapArea .overview__mapArea__txt {
    top: 93px;
    left: 18px;
    font-size: 18px;
  }
}
.p-taharacity__sec.overview .overview__mapArea .overview__mapArea__txt span {
  font-family: "EB Garamond", serif;
  font-weight: normal;
  font-size: clamp(10px, 0.78125vw, 12px);
  display: block;
  text-align: right;
  margin-top: clamp(1px, 0.5859375vw, 9px);
}
@media (max-width: 980px) {
  .p-taharacity__sec.overview .overview__mapArea .overview__mapArea__txt span {
    font-size: 12px;
    margin-top: 9px;
  }
}
.p-taharacity__sec.overview .overview__mapArea .overview__mapArea__line {
  width: clamp(10px, 13.7369791667vw, 211px);
  height: 1px;
  display: block;
  background: #171a1d;
  position: absolute;
  top: clamp(10px, 20.8333333333vw, 320px);
  left: clamp(10px, 8.0729166667vw, 124px);
  transform: scale(0);
  transform-origin: left;
}
@media (max-width: 980px) {
  .p-taharacity__sec.overview .overview__mapArea .overview__mapArea__line {
    width: 15px;
    top: 114px;
    left: 140px;
    transform: scale(0);
    transform-origin: left;
  }
}
.p-taharacity__sec.overview .overview__mapArea .overview__mapArea__line02 {
  display: none;
}
@media (max-width: 980px) {
  .p-taharacity__sec.overview .overview__mapArea .overview__mapArea__line02 {
    display: block;
    width: 1px;
    height: 180px;
    background: #171a1d;
    position: absolute;
    right: 179px;
    top: 114px;
    transform: scale(0);
    transform-origin: top;
  }
}
.p-taharacity__sec.overview .overview__mapArea .overview__mapArea__point {
  width: clamp(10px, 1.5625vw, 24px);
  height: clamp(10px, 1.5625vw, 24px);
  position: absolute;
  top: clamp(10px, 20.0520833333vw, 308px);
  left: clamp(10px, 20.8984375vw, 321px);
  opacity: 0;
}
@media (max-width: 980px) {
  .p-taharacity__sec.overview .overview__mapArea .overview__mapArea__point {
    width: 24px;
    height: 24px;
    top: 282px;
    left: 144px;
  }
}
.p-taharacity__sec.overview .overview__mapArea .overview__mapArea__point img {
  width: 100%;
}
.p-taharacity__sec.overview .overview__mapArea.is-view img {
  animation: fadeUp 4s forwards;
  animation-delay: 1s;
  z-index: 999;
}
.p-taharacity__sec.overview .overview__mapArea.is-view .overview__mapArea__txt {
  animation: fadeUp 4s forwards;
  animation-delay: 2.5s;
}
.p-taharacity__sec.overview .overview__mapArea.is-view .overview__mapArea__line {
  animation: scale 0.8s forwards;
  animation-delay: 4s;
}
@media (max-width: 980px) {
  .p-taharacity__sec.overview .overview__mapArea.is-view .overview__mapArea__line {
    animation: scale 0.2s forwards;
    animation-delay: 4s;
  }
}
@media (max-width: 980px) {
  .p-taharacity__sec.overview .overview__mapArea.is-view .overview__mapArea__line02 {
    animation: scale 1.6s forwards;
    animation-delay: 4.2s;
  }
}
.p-taharacity__sec.overview .overview__mapArea.is-view .overview__mapArea__point {
  animation: fadeUp 4s forwards;
  animation-delay: 4.5s;
}
.p-taharacity__sec.navArea {
  margin-top: clamp(10px, 11.0677083333vw, 170px);
}
@media (max-width: 980px) {
  .p-taharacity__sec.navArea {
    margin-top: 45px;
  }
}
.p-taharacity__sec.navArea .p-taharacity__nav {
  margin: auto;
  margin-left: clamp(10px, 1.6927083333vw, 26px);
}
@media (max-width: 980px) {
  .p-taharacity__sec.navArea .p-taharacity__nav {
    margin: auto;
    width: clamp(10px, 57.8666666667vw, 217px);
  }
}
.p-taharacity__sec.navArea .p-taharacity__nav ul {
  display: flex;
  justify-content: center;
  gap: clamp(10px, 5.859375vw, 90px);
}
@media (max-width: 980px) {
  .p-taharacity__sec.navArea .p-taharacity__nav ul {
    justify-content: space-between;
    flex-wrap: wrap;
    column-gap: clamp(10px, 13.3333333333vw, 50px);
    row-gap: 33px;
  }
}
.p-taharacity__sec.navArea .p-taharacity__nav ul li {
  min-width: 80px;
  height: clamp(10px, 5.7942708333vw, 89px);
  position: relative;
}
@media (max-width: 980px) {
  .p-taharacity__sec.navArea .p-taharacity__nav ul li {
    min-width: 50px;
    height: 60px;
  }
}
.p-taharacity__sec.navArea .p-taharacity__nav ul li a {
  display: block;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: clamp(10px, 1.6927083333vw, 26px);
  text-align: center;
  width: 100%;
  height: 100%;
  white-space: nowrap;
}
@media (max-width: 980px) {
  .p-taharacity__sec.navArea .p-taharacity__nav ul li a {
    font-size: 18px;
  }
}
.p-taharacity__sec.navArea .p-taharacity__nav ul li a .nav__list__icon {
  width: clamp(10px, 5.2083333333vw, 80px);
  margin: auto;
  position: absolute;
  bottom: 1%;
  left: 0;
  right: 0;
  animation: arrowmove 6s ease-in-out infinite;
}
@media (max-width: 980px) {
  .p-taharacity__sec.navArea .p-taharacity__nav ul li a .nav__list__icon {
    width: clamp(10px, 13.3333333333vw, 50px);
  }
}
@media (max-width: 980px) {
  .p-taharacity__sec.navArea .p-taharacity__nav ul li:last-of-type {
    margin-right: -7%;
  }
}
.p-taharacity__sec .sec__inviewLine {
  display: block;
  width: 100%;
  height: 1px;
  background: transparent;
  position: absolute;
  top: 30vh;
}
.p-taharacity__sec.is-view .p-taharacity__sec__title {
  animation: fadeUp 4s forwards;
}
.p-taharacity__sec.is-view .p-taharacity__sec__img {
  animation: fadeUp 4s forwards;
  animation-delay: 1s;
}
.p-taharacity__sec .p-taharacity__sec__title {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: clamp(10px, 2.2786458333vw, 35px);
  letter-spacing: 0.1em;
  text-align: center;
  margin: auto;
  margin-bottom: clamp(10px, 3.515625vw, 54px);
  writing-mode: vertical-rl;
  opacity: 0;
}
@media (max-width: 980px) {
  .p-taharacity__sec .p-taharacity__sec__title {
    font-size: 24px;
    margin-bottom: 31px;
  }
}
.p-taharacity__sec .p-taharacity__sec__img {
  opacity: 0;
}
.p-taharacity__sec .p-taharacity__sec__txtArea {
  width: clamp(10px, 54.0364583333vw, 830px);
  margin: auto;
  margin-bottom: clamp(10px, 11.1328125vw, 171px);
  position: relative;
}
@media (max-width: 980px) {
  .p-taharacity__sec .p-taharacity__sec__txtArea {
    width: clamp(10px, 89.3333333333vw, 335px);
    margin-bottom: 71px;
  }
}
.p-taharacity__sec .p-taharacity__sec__txtArea .p-taharacity__txtArea__read {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: clamp(10px, 1.6927083333vw, 26px);
  letter-spacing: 0.03em;
  line-height: 1.6153846154;
  text-align: center;
  margin-top: clamp(10px, 4.4921875vw, 69px);
  opacity: 0;
  white-space: nowrap;
}
@media (max-width: 980px) {
  .p-taharacity__sec .p-taharacity__sec__txtArea .p-taharacity__txtArea__read {
    font-size: 20px;
    line-height: 38px;
    margin-top: 31px;
    letter-spacing: -0.01em;
    text-align: left;
  }
}
.p-taharacity__sec .p-taharacity__sec__txtArea .p-taharacity__txtArea__txt {
  font-family: Hiragino Sans W3;
  font-weight: normal;
  font-size: clamp(10px, 0.9114583333vw, 14px);
  line-height: 2.2857142857;
  margin-top: clamp(10px, 2.5390625vw, 39px);
  opacity: 0;
}
@media (max-width: 980px) {
  .p-taharacity__sec .p-taharacity__sec__txtArea .p-taharacity__txtArea__txt {
    font-size: 14px;
    margin-top: 21px;
    letter-spacing: 0;
  }
}
.p-taharacity__sec .p-taharacity__sec__txtArea .vill__sec__inviewLine {
  display: block;
  width: 100%;
  height: 1px;
  background: transparent;
  position: absolute;
  top: 30vh;
}
.p-taharacity__sec .p-taharacity__sec__txtArea.is-view .p-taharacity__txtArea__title {
  animation: fadeUp 5s forwards !important;
}
.p-taharacity__sec .p-taharacity__sec__txtArea.is-view .p-taharacity__txtArea__read {
  animation: fadeUp 5s forwards 1s !important;
}
.p-taharacity__sec .p-taharacity__sec__txtArea.is-view .p-taharacity__txtArea__txt {
  animation: fadeUp 5s forwards 1.5s !important;
}
.p-taharacity__sec .p-taharacity__sec__box {
  width: clamp(10px, 81.4453125vw, 1251px);
  margin-right: auto;
  display: flex;
  align-items: flex-end;
  gap: clamp(10px, 5.2734375vw, 81px);
  margin-bottom: clamp(10px, 3.2552083333vw, 50px);
}
@media (max-width: 980px) {
  .p-taharacity__sec .p-taharacity__sec__box {
    width: clamp(10px, 89.3333333333vw, 335px);
    margin: auto;
    flex-direction: column;
    gap: 24px;
    margin-top: 71px;
  }
}
.p-taharacity__sec .p-taharacity__sec__box img {
  width: clamp(10px, 40.3645833333vw, 620px);
}
@media (max-width: 980px) {
  .p-taharacity__sec .p-taharacity__sec__box img {
    width: 100%;
  }
}
.p-taharacity__sec .p-taharacity__sec__box .box__txtArea__title {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: clamp(10px, 2.0833333333vw, 32px);
  letter-spacing: 0.03em;
  line-height: 1;
}
@media (max-width: 980px) {
  .p-taharacity__sec .p-taharacity__sec__box .box__txtArea__title {
    font-size: 24px;
    letter-spacing: 0.01em;
  }
}
.p-taharacity__sec .p-taharacity__sec__box .box__txtArea__read {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: clamp(10px, 1.4322916667vw, 22px);
  letter-spacing: 0.03em;
  line-height: 1.7272727273;
  margin-top: clamp(10px, 2.9296875vw, 45px);
}
@media (max-width: 980px) {
  .p-taharacity__sec .p-taharacity__sec__box .box__txtArea__read {
    font-size: 18px;
    letter-spacing: -0.01em;
    line-height: 32px;
    margin-top: 30px;
  }
}
.p-taharacity__sec .p-taharacity__sec__box .box__txtArea__txt {
  font-family: Hiragino Sans W3;
  font-weight: normal;
  font-size: clamp(10px, 0.9114583333vw, 14px);
  line-height: 2.2857142857;
  margin-top: clamp(10px, 1.1067708333vw, 17px);
  margin-bottom: -0.8em;
}
@media (max-width: 980px) {
  .p-taharacity__sec .p-taharacity__sec__box .box__txtArea__txt {
    font-size: 14px;
    margin-top: 17px;
    margin-bottom: 0;
  }
}
.p-taharacity__sec .swiperWide {
  height: 54.0364583333vw;
  margin-top: clamp(10px, 4.5572916667vw, 70px);
  position: relative;
}
@media (max-width: 980px) {
  .p-taharacity__sec .swiperWide {
    max-width: 375px;
    width: 100%;
    height: 244px;
    margin-top: 40px;
  }
}
.p-taharacity__sec .swiperWide .swiper-pagination-bullet {
  width: 5px;
  height: 5px;
}
.p-taharacity__sec .swiperWide .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #000;
  width: 7px;
  height: 7px;
}
@media (max-width: 980px) {
  .p-taharacity__sec .swiperWide .swiper-horizontal > .swiper-pagination-bullets,
  .p-taharacity__sec .swiperWide .swiper-pagination-bullets.swiper-pagination-horizontal,
  .p-taharacity__sec .swiperWide .swiper-pagination-custom,
  .p-taharacity__sec .swiperWide .swiper-pagination-fraction {
    bottom: -30px;
  }
}
.p-taharacity__sec .swiperWide .swiper-button-next,
.p-taharacity__sec .swiperWide .swiper-button-prev {
  position: absolute;
  top: 50%;
  width: 3.90625vw;
  height: 3.90625vw;
}
@media (max-width: 980px) {
  .p-taharacity__sec .swiperWide .swiper-button-next,
  .p-taharacity__sec .swiperWide .swiper-button-prev {
    display: none;
  }
}
.p-taharacity__sec .swiperWide .swiper-button-next::after,
.p-taharacity__sec .swiperWide .swiper-button-prev::after {
  content: "";
  width: 100%;
  height: 100%;
}
.p-taharacity__sec .swiperWide .swiper-button-prev {
  left: 3.2552083333vw;
}
.p-taharacity__sec .swiperWide .swiper-button-prev::after {
  background: url(../images/common/icon_slide_btn_prev_opacity.svg) no-repeat;
  background-size: contain;
}
.p-taharacity__sec .swiperWide .swiper-button-next {
  right: 3.2552083333vw;
}
.p-taharacity__sec .swiperWide .swiper-button-next::after {
  background: url(../images/common/icon_slide_btn_next_opacity.svg) no-repeat;
  background-size: contain;
}
.p-taharacity__sec .p-taharacity__tab__list {
  margin-top: clamp(10px, 4.7526041667vw, 73px);
  display: flex;
  justify-content: center;
  gap: clamp(10px, 5.2083333333vw, 80px);
}
@media (max-width: 980px) {
  .p-taharacity__sec .p-taharacity__tab__list {
    margin-top: 63px;
    gap: 45px;
  }
}
.p-taharacity__sec .p-taharacity__tab__list li {
  width: clamp(10px, 5.2083333333vw, 80px);
  padding-top: clamp(10px, 1.171875vw, 18px);
  position: relative;
}
@media (max-width: 980px) {
  .p-taharacity__sec .p-taharacity__tab__list li {
    width: fit-content;
    padding-top: 17px;
  }
}
.p-taharacity__sec .p-taharacity__tab__list li p {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: clamp(10px, 1.171875vw, 18px);
  text-align: center;
  width: fit-content;
  margin: auto;
  display: flex;
  flex-direction: column;
  position: relative;
}
@media (max-width: 980px) {
  .p-taharacity__sec .p-taharacity__tab__list li p {
    font-size: 16px;
    line-height: 2;
  }
}
.p-taharacity__sec .p-taharacity__tab__list li.is-active p::after {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  background: #171a1d;
}
.p-taharacity__sec .p-taharacity__tab__list .p-taharacity__tab__list__icon {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  animation: arrowmoveTop 6s ease-in-out infinite;
}
@media (max-width: 980px) {
  .p-taharacity__sec .p-taharacity__tab__list .p-taharacity__tab__list__icon {
    width: 50px;
  }
}
.p-taharacity__sec .p-taharacity__tab__content {
  margin-top: clamp(10px, 2.6041666667vw, 40px);
}
@media (max-width: 980px) {
  .p-taharacity__sec .p-taharacity__tab__content {
    margin-top: 47px;
  }
}
.p-taharacity__sec .p-taharacity__tab__content .ac_content {
  display: none;
}
.p-taharacity__sec .p-taharacity__tab__content .ac_content.is-active {
  display: block;
}
.p-taharacity__sec.sea {
  margin-top: clamp(10px, 16.1458333333vw, 248px);
}
@media (max-width: 980px) {
  .p-taharacity__sec.sea {
    margin-top: 120px;
  }
}
.p-taharacity__sec.sea .p-taharacity__sec__title {
  padding-top: 90px;
  margin-top: -90px;
}
.p-taharacity__sec.climate {
  margin-top: clamp(10px, 16.9270833333vw, 260px);
}
@media (max-width: 980px) {
  .p-taharacity__sec.climate {
    margin-top: 120px;
  }
}
.p-taharacity__sec.climate .p-taharacity__sec__title {
  padding-top: 90px;
  margin-top: -90px;
}
.p-taharacity__sec.climate .p-taharacity__sec__box {
  flex-direction: row-reverse;
  margin-left: auto;
  margin-right: 0;
}
@media (max-width: 980px) {
  .p-taharacity__sec.climate .p-taharacity__sec__box {
    flex-direction: column;
    margin: auto;
    margin-top: 71px;
  }
}
.p-taharacity__sec.climate .p-taharacity__sec__box.cycling .box__txtArea .box__txtArea__read {
  display: block;
  width: 100%;
  white-space: nowrap;
}
.p-taharacity__sec.climate .p-taharacity__sec__box.trekking .box__txtArea__txt, .p-taharacity__sec.climate .p-taharacity__sec__box.tentaiKansoku .box__txtArea__txt {
  margin-top: clamp(10px, 1.8229166667vw, 28px);
}
@media (max-width: 980px) {
  .p-taharacity__sec.climate .p-taharacity__sec__box.trekking .box__txtArea__txt, .p-taharacity__sec.climate .p-taharacity__sec__box.tentaiKansoku .box__txtArea__txt {
    margin-top: 18px;
  }
}
.p-taharacity__sec.history {
  margin-top: clamp(10px, 17.2526041667vw, 265px);
}
@media (max-width: 980px) {
  .p-taharacity__sec.history {
    margin-top: 117px;
  }
  .p-taharacity__sec.history .p-taharacity__txtArea__txt {
    margin-top: 32px;
  }
}
.p-taharacity__sec.history .p-taharacity__sec__title {
  padding-top: 90px;
  margin-top: -90px;
}
.p-taharacity__sec.gallery {
  margin-top: clamp(10px, 14.7135416667vw, 226px);
  margin-bottom: clamp(10px, 1.6927083333vw, 26px);
}
@media (max-width: 980px) {
  .p-taharacity__sec.gallery {
    margin-top: 102px;
  }
}
.p-taharacity__sec.gallery .p-taharacity__sec__title {
  writing-mode: unset;
  letter-spacing: 0.01em;
  margin-bottom: clamp(10px, 4.1015625vw, 63px);
  opacity: 1;
}
@media (max-width: 980px) {
  .p-taharacity__sec.gallery .swiper {
    margin-top: 19px;
  }
}
.p-taharacity__sec.gallery .swiper-button-next,
.p-taharacity__sec.gallery .swiper-button-prev {
  top: 44%;
}
@media (max-width: 980px) {
  .p-taharacity__sec.gallery .swiper-button-next,
  .p-taharacity__sec.gallery .swiper-button-prev {
    display: none;
  }
}

/**
 * ページ別CSS
 * アクセス - access
 */
.p-common__kv {
  width: 100%;
  height: clamp(10px, 33.8541666667vw, 520px);
  background: #f7f7f8;
}
@media (max-width: 980px) {
  .p-common__kv {
    height: clamp(10px, 88.2666666667vw, 331px);
  }
}

.p-access__sec__inner {
  width: clamp(10px, 62.7604166667vw, 964px);
  margin: auto;
}
@media (max-width: 980px) {
  .p-access__sec__inner {
    width: clamp(10px, 89.3333333333vw, 335px);
  }
}

.p-access__sec.map {
  margin-top: clamp(10px, 6.5104166667vw, 100px);
}
@media (max-width: 980px) {
  .p-access__sec.map {
    margin-top: 50px;
  }
}
.p-access__sec.map .map__iframeArea {
  position: relative;
  width: 100%;
  padding: 34.2323651452% 0 0;
}
@media (max-width: 980px) {
  .p-access__sec.map .map__iframeArea {
    padding: 44.776119403% 0 0;
  }
}
.p-access__sec.map .map__iframeArea iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.p-access__sec.map .map__txtArea {
  display: flex;
  margin-top: clamp(10px, 2.34375vw, 36px);
  margin-left: clamp(10px, 4.2317708333vw, 65px);
}
@media (max-width: 980px) {
  .p-access__sec.map .map__txtArea {
    flex-direction: column;
    margin-top: 27px;
    margin-left: 0;
  }
}
.p-access__sec.map .map__txtArea .map__txtArea__title {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-weight: 500;
  font-size: clamp(10px, 1.4322916667vw, 22px);
  letter-spacing: 0.01em;
  line-height: 1.9090909091;
  margin-right: clamp(10px, 3.5807291667vw, 55px);
}
.p-access__sec.map .map__txtArea .map__txtArea__title span {
  font-family: "EB Garamond", serif;
  font-weight: normal;
  font-size: clamp(10px, 1.7578125vw, 27px);
}
@media (max-width: 980px) {
  .p-access__sec.map .map__txtArea .map__txtArea__title span {
    font-size: 27px;
  }
}
@media (max-width: 980px) {
  .p-access__sec.map .map__txtArea .map__txtArea__title {
    font-size: 22px;
  }
}
.p-access__sec.map .map__txtArea .map__txtArea__txt {
  padding-top: clamp(1px, 0.6510416667vw, 10px);
}
@media (max-width: 980px) {
  .p-access__sec.map .map__txtArea .map__txtArea__txt {
    padding-top: 8px;
  }
}
.p-access__sec.map .map__txtArea .map__txtArea__txt .map__txtArea__txt__address {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: clamp(10px, 1.0416666667vw, 16px);
  font-weight: 500;
  line-height: 1.375;
}
@media (max-width: 980px) {
  .p-access__sec.map .map__txtArea .map__txtArea__txt .map__txtArea__txt__address {
    font-size: 16px;
  }
}
.p-access__sec.map .map__txtArea .map__txtArea__txt .c-btn__more {
  margin-left: 0;
  margin-right: auto;
  margin-top: clamp(1px, 0.8463541667vw, 13px);
  padding-left: 0;
  line-height: 1.6;
}
@media (max-width: 980px) {
  .p-access__sec.map .map__txtArea .map__txtArea__txt .c-btn__more {
    margin-top: 18px;
  }
}
.p-access__sec.map .map__txtArea .map__txtArea__txt .c-btn__more a {
  font-size: 14px;
  letter-spacing: 0.01em;
  gap: clamp(1px, 0.7161458333vw, 11px);
}
@media (max-width: 980px) {
  .p-access__sec.map .map__txtArea .map__txtArea__txt .c-btn__more a {
    gap: 12px;
  }
}
.p-access__sec.trafficGuide {
  margin-top: clamp(10px, 12.3697916667vw, 190px);
  position: relative;
}
@media (max-width: 980px) {
  .p-access__sec.trafficGuide {
    margin-top: 128px;
  }
}
.p-access__sec.trafficGuide .p-access__sec__title {
  writing-mode: vertical-rl;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: clamp(10px, 2.2786458333vw, 35px);
  letter-spacing: 0.2em;
  margin: auto;
  opacity: 0;
}
@media (max-width: 980px) {
  .p-access__sec.trafficGuide .p-access__sec__title {
    font-size: 24px;
  }
}
.p-access__sec.trafficGuide .trafficGuide__img {
  display: block;
  margin-top: clamp(10px, 2.734375vw, 42px);
  opacity: 0;
}
@media (max-width: 980px) {
  .p-access__sec.trafficGuide .trafficGuide__img {
    margin-top: 52px;
  }
}
.p-access__sec.trafficGuide .trafficGuide_inviewLine {
  position: absolute;
  top: 40vh;
  width: 100%;
  height: 1px;
  display: block;
  background: transparent;
}
.p-access__sec.trafficGuide.is-view .p-access__sec__title {
  animation: fadeUp 5s forwards;
}
.p-access__sec.trafficGuide.is-view .trafficGuide__img {
  animation: fadeUp 5s forwards 0.5s;
}
.p-access__sec.trafficGuide .p-access__sec__block {
  margin-left: clamp(10px, 4.2317708333vw, 65px);
  margin-right: clamp(10px, 4.5572916667vw, 70px);
}
@media (max-width: 980px) {
  .p-access__sec.trafficGuide .p-access__sec__block {
    margin-left: 0;
  }
}
.p-access__sec.trafficGuide .p-access__sec__block .p-access__sec__block__title {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: clamp(10px, 1.4322916667vw, 22px);
  letter-spacing: 0.01em;
  line-height: 1;
}
@media (max-width: 980px) {
  .p-access__sec.trafficGuide .p-access__sec__block .p-access__sec__block__title {
    font-size: 20px;
    letter-spacing: -0.01em;
  }
}
.p-access__sec.trafficGuide .p-access__sec__block .block__cont .block__cont__title {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: clamp(10px, 1.0416666667vw, 16px);
  letter-spacing: 0.01em;
  line-height: 1;
  margin-top: clamp(10px, 3.125vw, 48px);
}
@media (max-width: 980px) {
  .p-access__sec.trafficGuide .p-access__sec__block .block__cont .block__cont__title {
    font-size: 16px;
    letter-spacing: -0.01em;
  }
}
.p-access__sec.trafficGuide .p-access__sec__block .block__cont img {
  display: block;
  margin-top: clamp(10px, 1.4973958333vw, 23px);
}
@media (max-width: 980px) {
  .p-access__sec.trafficGuide .p-access__sec__block .block__cont img {
    margin-top: 29px;
    width: clamp(10px, 66.6666666667vw, 250px);
  }
}
@media (max-width: 980px) {
  .p-access__sec.trafficGuide .p-access__sec__block .block__cont:nth-of-type(2) {
    margin-top: 27px !important;
  }
}
.p-access__sec.trafficGuide .p-access__sec__block .block__cont:nth-of-type(2) .block__cont__title {
  margin-top: clamp(10px, 2.9296875vw, 45px);
}
.p-access__sec.trafficGuide .p-access__sec__block.nagoya {
  margin-top: clamp(10px, 5.6640625vw, 87px);
}
@media (max-width: 980px) {
  .p-access__sec.trafficGuide .p-access__sec__block.nagoya {
    margin-top: 50px;
  }
}
@media (max-width: 980px) {
  .p-access__sec.trafficGuide .p-access__sec__block.nagoya .block__cont {
    margin-top: 38px;
  }
}
.p-access__sec.trafficGuide .p-access__sec__block.tokyo {
  margin-top: clamp(10px, 5.7942708333vw, 89px);
}
@media (max-width: 980px) {
  .p-access__sec.trafficGuide .p-access__sec__block.tokyo {
    margin-top: 50px;
  }
}
.p-access__sec.trafficGuide .p-access__sec__block.tokyo .block__cont img {
  margin-top: clamp(10px, 2.9296875vw, 45px);
}
@media (max-width: 980px) {
  .p-access__sec.trafficGuide .p-access__sec__block.tokyo .block__cont img {
    margin-top: 28px;
    width: 270px;
  }
}
.p-access__sec.trafficGuide .p-access__sec__block.oosaka {
  margin-top: clamp(10px, 5.5338541667vw, 85px);
}
@media (max-width: 980px) {
  .p-access__sec.trafficGuide .p-access__sec__block.oosaka {
    margin-top: 48px;
  }
}
.p-access__sec.trafficGuide .p-access__sec__block.oosaka .block__cont img {
  margin-top: clamp(10px, 2.9296875vw, 45px);
}
@media (max-width: 980px) {
  .p-access__sec.trafficGuide .p-access__sec__block.oosaka .block__cont img {
    margin-top: 29px;
  }
}

/**
 * ページ別CSS
 * 近隣施設 - neighborhood
 */
.p-neighborhood__sec__inner {
  width: clamp(10px, 62.7604166667vw, 964px);
  margin: auto;
}
@media (max-width: 980px) {
  .p-neighborhood__sec__inner {
    width: clamp(10px, 89.3333333333vw, 335px);
  }
}

.p-neighborhood__sec.supermarket {
  margin-top: clamp(10px, 7.0963541667vw, 109px);
}
@media (max-width: 980px) {
  .p-neighborhood__sec.supermarket {
    margin-top: 41px;
  }
}
.p-neighborhood__sec.roadsideStation {
  margin-top: clamp(10px, 11.8489583333vw, 182px);
}
@media (max-width: 980px) {
  .p-neighborhood__sec.roadsideStation {
    margin-top: 109px;
  }
}

.p-neighborhood__sec__title {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: clamp(10px, 2.0833333333vw, 32px);
  letter-spacing: 0.03em;
  line-height: 1;
  text-align: center;
}
@media (max-width: 980px) {
  .p-neighborhood__sec__title {
    font-size: 22px;
    letter-spacing: 0.01em;
    line-height: 37px;
    text-align: left;
  }
}

.p-neighborhood__sec__box {
  display: flex;
  margin-top: clamp(10px, 5.5338541667vw, 85px);
}
@media (max-width: 980px) {
  .p-neighborhood__sec__box {
    flex-direction: column;
    margin-top: 43px;
  }
}
.p-neighborhood__sec__box .box__txtArea {
  width: clamp(10px, 19.2708333333vw, 296px);
}
@media (max-width: 980px) {
  .p-neighborhood__sec__box .box__txtArea {
    width: 100%;
  }
}
.p-neighborhood__sec__box .box__txtArea .box__txtArea__title {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: clamp(10px, 1.4322916667vw, 22px);
  letter-spacing: 0.03em;
  line-height: 1.6363636364;
}
@media (max-width: 980px) {
  .p-neighborhood__sec__box .box__txtArea .box__txtArea__title {
    font-size: 18px;
    letter-spacing: -0.01em;
    line-height: 38px;
  }
}
.p-neighborhood__sec__box .box__txtArea .box__txtArea__address {
  font-family: Hiragino Sans W3;
  font-weight: normal;
  font-size: clamp(10px, 0.9114583333vw, 14px);
  line-height: 1.7857142857;
  margin-top: clamp(10px, 3.125vw, 48px);
}
@media (max-width: 980px) {
  .p-neighborhood__sec__box .box__txtArea .box__txtArea__address {
    font-size: 14px;
    line-height: 25px;
    margin-top: 15px;
  }
}
.p-neighborhood__sec__box .box__txtArea .box__txtArea__info {
  margin-top: clamp(10px, 0.8463541667vw, 13px);
}
.p-neighborhood__sec__box .box__txtArea .box__txtArea__info p {
  font-family: Hiragino Sans W3;
  font-weight: normal;
  font-size: clamp(10px, 0.9114583333vw, 14px);
  line-height: 1.7857142857;
}
@media (max-width: 980px) {
  .p-neighborhood__sec__box .box__txtArea .box__txtArea__info p {
    font-size: 14px;
    line-height: 25px;
  }
}
.p-neighborhood__sec__box .box__mapArea {
  width: clamp(10px, 38.9973958333vw, 599px);
}
@media (max-width: 980px) {
  .p-neighborhood__sec__box .box__mapArea {
    width: clamp(10px, 89.3333333333vw, 335px);
    margin-top: 12px;
  }
}
.p-neighborhood__sec__box .box__mapArea .box__iframeArea {
  position: relative;
  padding: 33.3889816361% 0 0;
}
@media (max-width: 980px) {
  .p-neighborhood__sec__box .box__mapArea .box__iframeArea {
    padding: 44.776119403% 0 0;
  }
}
.p-neighborhood__sec__box .box__mapArea .box__iframeArea iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.p-neighborhood__sec__box .box__mapArea .c-btn__more {
  margin-left: 0;
  margin-right: auto;
  margin-top: clamp(1px, 0.1953125vw, 3px);
  padding-left: 0;
}
@media (max-width: 980px) {
  .p-neighborhood__sec__box .box__mapArea .c-btn__more {
    line-height: 32px;
  }
}

/**
 * ページ別CSS
 * よくあるご質問 - faq
 */
.p-faq__sec__inner {
  width: clamp(10px, 54.0364583333vw, 830px);
  margin: auto;
}
@media (max-width: 980px) {
  .p-faq__sec__inner {
    width: clamp(10px, 89.3333333333vw, 335px);
  }
}

.p-faq__sec__read {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: clamp(10px, 1.4322916667vw, 22px);
  letter-spacing: 0.01em;
  line-height: 1.9090909091;
  text-align: center;
  margin-top: clamp(10px, 4.8828125vw, 75px);
}
@media (max-width: 980px) {
  .p-faq__sec__read {
    font-size: 16px;
    letter-spacing: -0.01em;
    line-height: 32px;
    text-align: left;
    margin-top: 40px;
  }
}

.p-faq__nav {
  margin-top: clamp(10px, 4.1666666667vw, 64px);
  width: clamp(10px, 50.7161458333vw, 779px);
}
@media (max-width: 980px) {
  .p-faq__nav {
    margin-top: 45px;
    width: clamp(10px, 89.3333333333vw, 335px);
  }
}
.p-faq__nav ul {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 980px) {
  .p-faq__nav ul {
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 35px;
  }
}
.p-faq__nav ul li {
  min-width: 80px;
  height: clamp(10px, 5.7942708333vw, 89px);
  position: relative;
}
@media (max-width: 980px) {
  .p-faq__nav ul li {
    width: 50%;
    height: 60px;
  }
}
.p-faq__nav ul li a {
  display: block;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: clamp(10px, 1.6927083333vw, 26px);
  text-align: center;
  width: 100%;
  height: 100%;
  white-space: nowrap;
}
@media (max-width: 980px) {
  .p-faq__nav ul li a {
    font-size: 18px;
  }
}
.p-faq__nav ul li a .nav__list__icon {
  width: clamp(10px, 5.2083333333vw, 80px);
  margin: auto;
  position: absolute;
  bottom: 1%;
  left: 0;
  right: 0;
}
@media (max-width: 980px) {
  .p-faq__nav ul li a .nav__list__icon {
    width: clamp(10px, 13.3333333333vw, 50px);
  }
}

.p-faq__sec .p-faq__sec__title {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: clamp(10px, 1.6927083333vw, 26px);
  letter-spacing: 0.03em;
  line-height: 1.6153846154;
  text-align: center;
}
@media (max-width: 980px) {
  .p-faq__sec .p-faq__sec__title {
    font-size: 20px;
    letter-spacing: -0.01em;
    line-height: 32px;
    text-align: left;
  }
}
.p-faq__sec .p-faq__sec__acordion {
  margin-top: clamp(10px, 3.0598958333vw, 47px);
  border-top: 1px solid #171a1d;
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 1.1067708333vw, 17px);
}
@media (max-width: 980px) {
  .p-faq__sec .p-faq__sec__acordion {
    margin-top: 23px;
    gap: 14px;
  }
}
.p-faq__sec .p-faq__sec__acordion .faq__list {
  border-bottom: 1px solid #171a1d;
  padding-bottom: clamp(10px, 1.0416666667vw, 16px);
  padding-left: clamp(10px, 1.3020833333vw, 20px);
  padding-right: clamp(10px, 1.3020833333vw, 20px);
}
@media (max-width: 980px) {
  .p-faq__sec .p-faq__sec__acordion .faq__list {
    padding-left: 0;
    padding-bottom: 13px;
  }
}
.p-faq__sec .p-faq__sec__acordion .faq__list:first-of-type {
  padding-top: clamp(10px, 0.9765625vw, 15px);
}
@media (max-width: 980px) {
  .p-faq__sec .p-faq__sec__acordion .faq__list:first-of-type {
    padding-top: 15px;
  }
}
.p-faq__sec .p-faq__sec__acordion .faq__list .faq__list__question {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 980px) {
  .p-faq__sec .p-faq__sec__acordion .faq__list .faq__list__question {
    align-items: flex-start;
  }
}
.p-faq__sec .p-faq__sec__acordion .faq__list .faq__list__question p {
  font-family: Hiragino Sans W3;
  font-weight: normal;
  font-size: clamp(10px, 1.0416666667vw, 16px);
  line-height: 2;
  width: 94%;
}
@media (max-width: 980px) {
  .p-faq__sec .p-faq__sec__acordion .faq__list .faq__list__question p {
    font-size: 14px;
    line-height: 25px;
  }
}
.p-faq__sec .p-faq__sec__acordion .faq__list .faq__list__question::after {
  content: "";
  width: clamp(1px, 0.78125vw, 12px);
  height: clamp(1px, 0.390625vw, 6px);
  background: url(../images/faq/icon_open.svg) no-repeat;
  background-size: contain;
}
@media (max-width: 980px) {
  .p-faq__sec .p-faq__sec__acordion .faq__list .faq__list__question::after {
    min-width: 12px;
    width: 12px;
    height: 6px;
    margin-top: 10px;
  }
}
.p-faq__sec .p-faq__sec__acordion .faq__list .faq__list__question::-webkit-details-marker {
  display: none !important;
}
.p-faq__sec .p-faq__sec__acordion .faq__list .faq__list__anserArea {
  margin-top: clamp(10px, 0.9765625vw, 15px);
}
@media (max-width: 980px) {
  .p-faq__sec .p-faq__sec__acordion .faq__list .faq__list__anserArea {
    margin-top: 20px;
    width: 93%;
  }
}
.p-faq__sec .p-faq__sec__acordion .faq__list .faq__list__anserArea p {
  font-family: Hiragino Sans W3;
  font-weight: normal;
  font-size: clamp(10px, 1.0416666667vw, 16px);
  line-height: 2;
}
@media (max-width: 980px) {
  .p-faq__sec .p-faq__sec__acordion .faq__list .faq__list__anserArea p {
    font-size: 14px;
    line-height: 25px;
  }
}
.p-faq__sec .p-faq__sec__acordion .faq__list[open] .faq__list__question::after {
  background: url(../images/faq/icon_close.svg) no-repeat;
  background-size: contain;
}
.p-faq__sec.stay {
  margin-top: clamp(10px, 10.9375vw, 168px);
}
@media (max-width: 980px) {
  .p-faq__sec.stay {
    margin-top: 106px;
  }
}
.p-faq__sec.reserve {
  margin-top: clamp(10px, 11.328125vw, 174px);
}
@media (max-width: 980px) {
  .p-faq__sec.reserve {
    margin-top: 114px;
  }
}
.p-faq__sec.service {
  margin-top: clamp(10px, 11.71875vw, 180px);
}
@media (max-width: 980px) {
  .p-faq__sec.service {
    margin-top: 113px;
  }
}
.p-faq__sec.other {
  margin-top: clamp(10px, 11.4583333333vw, 176px);
}
@media (max-width: 980px) {
  .p-faq__sec.other {
    margin-top: 114px;
  }
}

/**
 * ページ別CSS
 * 規約 - rules
 */
.p-rules__sec__inner {
  width: clamp(10px, 54.0364583333vw, 830px);
  margin: auto;
}
@media (max-width: 980px) {
  .p-rules__sec__inner {
    width: clamp(10px, 89.3333333333vw, 335px);
  }
}

.p-rules__nav {
  margin-top: clamp(10px, 5.9244791667vw, 91px);
  width: 100%;
}
@media (max-width: 980px) {
  .p-rules__nav {
    margin-top: 45px;
    width: clamp(10px, 89.3333333333vw, 335px);
  }
}
.p-rules__nav ul {
  display: flex;
}
@media (max-width: 980px) {
  .p-rules__nav ul {
    flex-wrap: wrap;
    row-gap: 35px;
  }
}
.p-rules__nav ul li {
  min-width: 80px;
  height: clamp(10px, 5.7942708333vw, 89px);
  position: relative;
}
@media (max-width: 980px) {
  .p-rules__nav ul li {
    width: 50%;
    height: 60px;
  }
}
.p-rules__nav ul li:first-of-type {
  margin-right: clamp(10px, 5.078125vw, 78px);
}
@media (max-width: 980px) {
  .p-rules__nav ul li:first-of-type {
    margin-right: 0;
  }
}
.p-rules__nav ul li:nth-of-type(2) {
  margin-right: clamp(10px, 5.1432291667vw, 79px);
}
@media (max-width: 980px) {
  .p-rules__nav ul li:nth-of-type(2) {
    margin-right: 0;
  }
}
.p-rules__nav ul li:nth-of-type(3) {
  margin-right: clamp(10px, 1.7578125vw, 27px);
}
@media (max-width: 980px) {
  .p-rules__nav ul li:nth-of-type(3) {
    margin-right: 0;
  }
}
.p-rules__nav ul li:nth-of-type(3) a {
  font-size: clamp(10px, 1.5625vw, 24px);
  letter-spacing: -0.05em;
}
@media (max-width: 980px) {
  .p-rules__nav ul li:nth-of-type(3) a {
    font-size: 16px;
    letter-spacing: 0;
  }
}
.p-rules__nav ul li:last-of-type a {
  font-size: clamp(10px, 1.5625vw, 24px);
  letter-spacing: -0.05em;
}
@media (max-width: 980px) {
  .p-rules__nav ul li:last-of-type a {
    font-size: 16px;
    letter-spacing: 0;
  }
}
.p-rules__nav ul li a {
  display: block;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: clamp(10px, 1.6927083333vw, 26px);
  text-align: center;
  width: 100%;
  height: 100%;
  white-space: nowrap;
}
@media (max-width: 980px) {
  .p-rules__nav ul li a {
    font-size: 18px;
  }
}
.p-rules__nav ul li a .nav__list__icon {
  width: clamp(10px, 5.2083333333vw, 80px);
  margin: auto;
  position: absolute;
  bottom: 1%;
  left: 0;
  right: 0;
}
@media (max-width: 980px) {
  .p-rules__nav ul li a .nav__list__icon {
    width: clamp(10px, 13.3333333333vw, 50px);
  }
}

.p-rules__sec .p-rules__sec__title {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: clamp(10px, 2.2786458333vw, 35px);
  letter-spacing: 0.01em;
  line-height: 1.1428571429;
  text-align: center;
}
@media (max-width: 980px) {
  .p-rules__sec .p-rules__sec__title {
    font-size: 20px;
    letter-spacing: -0.01em;
    line-height: 32px;
    text-align: left;
  }
}
.p-rules__sec .p-rules__sec__txt {
  font-family: Hiragino Sans W3;
  font-weight: normal;
  font-size: clamp(10px, 0.9114583333vw, 14px);
  line-height: 1.7857142857;
  margin-top: clamp(10px, 3.125vw, 48px);
}
@media (max-width: 980px) {
  .p-rules__sec .p-rules__sec__txt {
    font-size: 14px;
    margin-top: 48px;
  }
}
.p-rules__sec .p-rules__sec__txt.mt_21 {
  margin-top: clamp(10px, 1.3671875vw, 21px);
}
.p-rules__sec .p-rules__sec__list.parent__list {
  margin-top: clamp(10px, 3.4505208333vw, 53px);
}
@media (max-width: 980px) {
  .p-rules__sec .p-rules__sec__list.parent__list {
    margin-top: 44px;
  }
}
.p-rules__sec .p-rules__sec__list.parent__list.mt_10 {
  margin-top: clamp(10px, 0.6510416667vw, 10px);
}
.p-rules__sec .p-rules__sec__list.parent__list.mt_40 {
  margin-top: clamp(10px, 2.6041666667vw, 40px);
}
@media (max-width: 980px) {
  .p-rules__sec .p-rules__sec__list.parent__list.mt_40 {
    margin-top: 15px;
  }
}
.p-rules__sec .p-rules__sec__list.parent__list .parent__list__item {
  margin-bottom: clamp(10px, 2.6692708333vw, 41px);
}
@media (max-width: 980px) {
  .p-rules__sec .p-rules__sec__list.parent__list .parent__list__item {
    margin-bottom: 35px;
  }
}
.p-rules__sec .p-rules__sec__list.parent__list .parent__list__item:last-of-type {
  margin-bottom: 0;
}
.p-rules__sec .p-rules__sec__list.parent__list .parent__list__item.mb_10 {
  margin-bottom: clamp(1px, 0.6510416667vw, 10px);
}
.p-rules__sec .p-rules__sec__list.parent__list .parent__list__item .parent__list__title {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: clamp(10px, 1.4322916667vw, 22px);
  letter-spacing: 0.03em;
  line-height: 1.7272727273;
  margin-bottom: clamp(10px, 1.3671875vw, 21px);
}
@media (max-width: 980px) {
  .p-rules__sec .p-rules__sec__list.parent__list .parent__list__item .parent__list__title {
    font-size: 16px;
    letter-spacing: -0.01em;
    line-height: 32px;
    margin-bottom: 16px;
  }
}
.p-rules__sec .p-rules__sec__list.parent__list .parent__list__item .parent__list__txt {
  font-family: Hiragino Sans W3;
  font-weight: normal;
  font-size: clamp(10px, 0.9114583333vw, 14px);
  line-height: 1.7857142857;
}
@media (max-width: 980px) {
  .p-rules__sec .p-rules__sec__list.parent__list .parent__list__item .parent__list__txt {
    font-size: 14px;
  }
}
.p-rules__sec .p-rules__sec__list.parent__list .parent__list__item .parent__list__txt span {
  font-family: Hiragino Sans W3;
  font-weight: normal;
  font-size: clamp(10px, 0.9114583333vw, 14px);
  line-height: 1.7857142857;
  display: inline-block;
  margin-right: clamp(1px, 0.8463541667vw, 13px);
}
@media (max-width: 980px) {
  .p-rules__sec .p-rules__sec__list.parent__list .parent__list__item .parent__list__txt span {
    font-size: 14px;
  }
}
.p-rules__sec .p-rules__sec__list.parent__list .parent__list__item .child__list {
  padding-left: clamp(10px, 1.2369791667vw, 19px);
  margin-top: clamp(10px, 1.4322916667vw, 22px);
}
@media (max-width: 980px) {
  .p-rules__sec .p-rules__sec__list.parent__list .parent__list__item .child__list {
    padding-left: 5.2%;
    margin-top: 16px;
  }
}
.p-rules__sec .p-rules__sec__list.parent__list .parent__list__item .child__list .child__list__item {
  width: clamp(10px, 52.5390625vw, 807px);
  list-style-type: decimal;
  font-family: Hiragino Sans W3;
  font-weight: normal;
  font-size: clamp(10px, 0.9114583333vw, 14px);
  line-height: 1.7857142857;
  padding-left: clamp(1px, 0.2604166667vw, 4px);
  margin-bottom: clamp(1px, 0.5859375vw, 9px);
}
@media (max-width: 980px) {
  .p-rules__sec .p-rules__sec__list.parent__list .parent__list__item .child__list .child__list__item {
    width: clamp(10px, 83.2vw, 312px);
    font-size: 14px;
    line-height: 25px;
    padding-left: 7px;
    margin-bottom: 9px;
  }
}
.p-rules__sec .p-rules__sec__list.parent__list .parent__list__item .child__list .child__list__item:last-of-type {
  margin-bottom: 0;
}
.p-rules__sec .p-rules__sec__list.parent__list .parent__list__item .child__list .child__list__item.mb_0 {
  margin-bottom: 0;
}
@media (max-width: 980px) {
  .p-rules__sec .p-rules__sec__list.parent__list .parent__list__item .child__list .child__list__item.mb_0 {
    margin-bottom: 9px;
  }
}
@media (max-width: 980px) {
  .p-rules__sec .p-rules__sec__list.parent__list .parent__list__item .child__list.disc {
    padding-left: 4%;
    margin-top: 10px;
  }
}
.p-rules__sec .p-rules__sec__list.parent__list .parent__list__item .child__list.disc .child__list__item {
  list-style: disc;
}
@media (max-width: 980px) {
  .p-rules__sec .p-rules__sec__list.parent__list .parent__list__item .child__list.disc .child__list__item {
    margin-bottom: 2px;
  }
}
.p-rules__sec .p-rules__sec__list.parent__list .parent__list__item .grandchild__list {
  margin-top: clamp(1px, 0.5208333333vw, 8px);
  padding-left: clamp(10px, 1.1067708333vw, 17px);
}
@media (max-width: 980px) {
  .p-rules__sec .p-rules__sec__list.parent__list .parent__list__item .grandchild__list {
    padding-left: 15px;
  }
}
.p-rules__sec .p-rules__sec__list.parent__list .parent__list__item .grandchild__list .grandchild__list__item {
  font-family: Hiragino Sans W3;
  font-weight: normal;
  font-size: clamp(10px, 0.9114583333vw, 14px);
  line-height: 1.7857142857;
  padding-left: 12px;
  text-indent: -12px;
  margin-bottom: clamp(1px, 0.5859375vw, 9px);
}
@media (max-width: 980px) {
  .p-rules__sec .p-rules__sec__list.parent__list .parent__list__item .grandchild__list .grandchild__list__item {
    font-size: 14px;
    line-height: 25px;
    margin-bottom: 5px;
  }
}
.p-rules__sec .p-rules__sec__list.parent__list .parent__list__item .grandchild__list .grandchild__list__item span {
  display: inline-block;
  font-family: Hiragino Sans W3;
  font-weight: normal;
  font-size: clamp(10px, 0.9114583333vw, 14px);
  line-height: 1.7857142857;
  margin-right: clamp(1px, 0.6510416667vw, 10px);
}
@media (max-width: 980px) {
  .p-rules__sec .p-rules__sec__list.parent__list .parent__list__item .grandchild__list .grandchild__list__item span {
    font-size: 14px;
    line-height: 25px;
    margin-right: 8px;
  }
}
.p-rules__sec .p-rules__sec__list.parent__list .parent__list__item .grandchild__list .grandchild__list__item:last-of-type {
  margin-bottom: 0;
}
.p-rules__sec .p-rules__sec__list.parent__list .parent__list__item .mt_10 {
  margin-top: clamp(1px, 0.6510416667vw, 10px);
}
@media (max-width: 980px) {
  .p-rules__sec .p-rules__sec__list.parent__list .parent__list__item .mt_10 {
    margin-top: 8px;
  }
}
.p-rules__sec .p-rules__sec__list.parent__list .parent__list__item .mt_12 {
  margin-top: clamp(10px, 0.78125vw, 12px);
}
@media (max-width: 980px) {
  .p-rules__sec .p-rules__sec__list.parent__list .parent__list__item .mt_12 {
    margin-top: 12px;
  }
}
.p-rules__sec .p-rules__sec__list.parent__list .parent__list__item .table {
  width: 100%;
  margin-top: clamp(1px, 0.3255208333vw, 5px);
}
@media (max-width: 980px) {
  .p-rules__sec .p-rules__sec__list.parent__list .parent__list__item .table {
    margin-top: 14px;
    margin-bottom: 14px;
  }
}
.p-rules__sec .p-rules__sec__list.parent__list .parent__list__item .table th {
  border: solid 1px #171a1d;
  background: #f7f7f8;
  font-family: Hiragino Sans W3;
  font-weight: normal;
  font-size: clamp(10px, 0.9114583333vw, 14px);
}
@media (max-width: 980px) {
  .p-rules__sec .p-rules__sec__list.parent__list .parent__list__item .table th {
    font-size: 14px;
  }
}
.p-rules__sec .p-rules__sec__list.parent__list .parent__list__item .table td {
  border: solid 1px #171a1d;
  font-family: Hiragino Sans W3;
  font-weight: normal;
  font-size: clamp(10px, 0.9114583333vw, 14px);
  text-align: center;
}
@media (max-width: 980px) {
  .p-rules__sec .p-rules__sec__list.parent__list .parent__list__item .table td {
    font-size: 14px;
  }
}
@media (max-width: 980px) {
  .p-rules__sec .p-rules__sec__list.parent__list .parent__list__item .table thead {
    width: 34%;
  }
}
.p-rules__sec .p-rules__sec__list.parent__list .parent__list__item .table thead tr th {
  width: clamp(10px, 8.4635416667vw, 130px);
  height: clamp(10px, 2.9296875vw, 45px);
  text-align: center;
}
@media (max-width: 980px) {
  .p-rules__sec .p-rules__sec__list.parent__list .parent__list__item .table thead tr th {
    width: clamp(10px, 29.6vw, 111px);
    height: 45px;
  }
}
.p-rules__sec .p-rules__sec__list.parent__list .parent__list__item .table thead tr th:first-of-type {
  width: clamp(10px, 11.71875vw, 180px);
}
@media (max-width: 980px) {
  .p-rules__sec .p-rules__sec__list.parent__list .parent__list__item .table thead tr th:first-of-type {
    width: clamp(10px, 30.1333333333vw, 113px);
  }
}
.p-rules__sec .p-rules__sec__list.parent__list .parent__list__item .table tbody tr th {
  height: clamp(10px, 2.9296875vw, 45px);
  padding-left: 5%;
}
@media (max-width: 980px) {
  .p-rules__sec .p-rules__sec__list.parent__list .parent__list__item .table tbody tr th {
    height: 44px;
    padding-left: 0;
    text-align: center;
  }
}
.p-rules__sec.yakkan {
  margin-top: clamp(10px, 11.1979166667vw, 172px);
}
@media (max-width: 980px) {
  .p-rules__sec.yakkan {
    margin-top: 62px;
  }
}
.p-rules__sec.yakkan .p-rules__sec__title {
  padding-top: 90px;
  margin-top: -90px;
}
.p-rules__sec.kisoku {
  margin-top: clamp(10px, 11.71875vw, 180px);
}
@media (max-width: 980px) {
  .p-rules__sec.kisoku {
    margin-top: 108px;
  }
}
.p-rules__sec.site {
  margin-top: clamp(10px, 11.8489583333vw, 182px);
}
@media (max-width: 980px) {
  .p-rules__sec.site {
    margin-top: 109px;
  }
}
.p-rules__sec.site .p-rules__sec__title {
  padding-top: 90px;
  margin-top: -90px;
}
.p-rules__sec.privacy {
  margin-top: clamp(10px, 11.8489583333vw, 182px);
}
.p-rules__sec.privacy .p-rules__sec__title {
  padding-top: 90px;
  margin-top: -90px;
}
.p-rules__sec.privacy .p-rules__sec__list.parent__list .parent__list__item {
  padding-left: 30px;
  text-indent: -15px;
}
.p-rules__sec.privacy .p-rules__sec__list.parent__list .parent__list__item .child__list li {
  list-style: none;
  margin-bottom: 0;
}

/**
 * ページ別CSS
 * お問い合わせ - info
 */
.p-info__sec {
  margin-top: clamp(10px, 9.8307291667vw, 151px);
}

.p-info__sec__inner {
  width: clamp(10px, 54.0364583333vw, 830px);
  margin: auto;
}
@media (max-width: 980px) {
  .p-info__sec__inner {
    width: clamp(10px, 89.3333333333vw, 335px);
  }
}

.p-info__form {
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid #171a1d;
}
.p-info__form dt {
  width: clamp(10px, 15.4296875vw, 237px);
  border-bottom: 1px solid #171a1d;
  padding-bottom: clamp(10px, 1.1067708333vw, 17px);
  padding-left: clamp(10px, 1.2369791667vw, 19px);
  margin-bottom: clamp(10px, 1.1067708333vw, 17px);
  display: flex;
  justify-content: space-between;
  font-family: Hiragino Sans W3;
  font-weight: normal;
  font-size: clamp(10px, 1.0416666667vw, 16px);
  line-height: 1.875;
}
@media (max-width: 980px) {
  .p-info__form dt {
    width: 100%;
    border-bottom: none;
    font-size: 16px;
    padding-left: 0;
    padding-bottom: 0;
    margin-bottom: 0;
  }
}
.p-info__form dt::after {
  content: "必 須";
  width: clamp(10px, 3.90625vw, 60px);
  height: clamp(10px, 1.953125vw, 30px);
  background: rgba(23, 26, 29, 0.03);
  font-family: Hiragino Sans W3;
  font-weight: normal;
  font-size: clamp(10px, 0.9114583333vw, 14px);
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 980px) {
  .p-info__form dt::after {
    width: 60px;
    height: 30px;
    font-size: 14px;
  }
}
.p-info__form dt:first-of-type {
  padding-top: clamp(10px, 0.9765625vw, 15px);
}
@media (max-width: 980px) {
  .p-info__form dt:first-of-type {
    padding-top: 20px;
  }
}
.p-info__form dd {
  width: clamp(10px, 38.6067708333vw, 593px);
  border-bottom: 1px solid #171a1d;
  padding-bottom: clamp(10px, 1.1067708333vw, 17px);
  padding-left: clamp(10px, 4.1015625vw, 63px);
  margin-bottom: clamp(10px, 1.1067708333vw, 17px);
}
@media (max-width: 980px) {
  .p-info__form dd {
    width: 100%;
    padding-left: 0;
    padding-bottom: 11px;
    margin-bottom: 20px;
  }
}
.p-info__form dd:first-of-type {
  padding-top: clamp(10px, 0.9765625vw, 15px);
}
@media (max-width: 980px) {
  .p-info__form dd:first-of-type {
    padding-top: 0;
  }
}

.mw_wp_form form input {
  border: none;
  font-family: Hiragino Sans W3;
  font-weight: normal;
  font-size: clamp(10px, 1.0416666667vw, 16px);
  line-height: 1.875;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0px;
}
@media (max-width: 980px) {
  .mw_wp_form form input {
    font-size: 16px;
  }
}
.mw_wp_form form input::placeholder {
  opacity: 0.2;
}
.mw_wp_form form input:focus {
  outline: none;
}
.mw_wp_form form input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px white inset;
}
.mw_wp_form form input:autofill {
  -webkit-box-shadow: 0 0 0px 1000px white inset;
  box-shadow: 0 0 0px 1000px white inset;
}
.mw_wp_form form textarea {
  border: none;
  font-family: Hiragino Sans W3;
  font-weight: normal;
  font-size: clamp(10px, 1.0416666667vw, 16px);
  line-height: 1.875;
}
@media (max-width: 980px) {
  .mw_wp_form form textarea {
    font-size: 16px;
  }
}
.mw_wp_form form textarea::placeholder {
  opacity: 0.2;
}
.mw_wp_form form textarea:focus {
  outline: none;
}
.mw_wp_form form .p-info__agree {
  width: fit-content;
  margin: auto;
  margin-top: clamp(10px, 1.953125vw, 30px);
}
@media (max-width: 980px) {
  .mw_wp_form form .p-info__agree {
    margin-top: 20px;
  }
}
.mw_wp_form form .p-info__agree input[type=checkbox] {
  width: 15px;
  height: 15px;
  border: solid 1px #171a1d;
  position: relative;
}
.mw_wp_form form .p-info__agree input[type=checkbox]:checked::before {
  content: "";
  position: absolute;
  width: 11px;
  height: 6px;
  background: url(../images/info/check.svg) no-repeat;
  background-size: contain;
  left: 2px;
  top: 4px;
  display: block;
}
.mw_wp_form form .p-info__agree .error {
  margin-top: 10px;
}
.mw_wp_form form .mwform-checkbox-field label {
  display: flex;
  align-items: center;
}
.mw_wp_form form .mwform-checkbox-field-text {
  font-family: Hiragino Sans W3;
  font-weight: normal;
  font-size: clamp(10px, 1.0416666667vw, 16px);
  line-height: 1;
}
@media (max-width: 980px) {
  .mw_wp_form form .mwform-checkbox-field-text {
    font-size: 16px;
  }
}
.mw_wp_form .p-info__btn {
  margin: auto;
  width: fit-content;
  position: relative;
}
@media (max-width: 980px) {
  .mw_wp_form .p-info__btn {
    margin-top: 50px;
  }
}
.mw_wp_form .p-info__btn input[type=submit] {
  margin: auto;
  margin-top: clamp(10px, 2.7994791667vw, 43px);
  display: block;
  width: clamp(10px, 19.53125vw, 300px);
  height: clamp(10px, 3.2552083333vw, 50px);
  background: rgba(23, 26, 29, 0.03);
  border: 1px solid #171a1d;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: clamp(10px, 1.0416666667vw, 16px);
  letter-spacing: 0.01em;
  color: #000 !important;
}
@media (max-width: 980px) {
  .mw_wp_form .p-info__btn input[type=submit] {
    width: 300px;
    height: 50px;
    font-size: 16px;
  }
}
.mw_wp_form .p-info__btn::after {
  content: "";
  width: 22px;
  height: 4px;
  background: url(../images/common/icon_arrow_right.svg) no-repeat;
  background-size: contain;
  transition: all 0.3s ease-in-out;
  display: block;
  position: absolute;
  top: clamp(10px, 1.5625vw, 24px);
  right: clamp(10px, 3.7760416667vw, 58px);
}
@media (max-width: 980px) {
  .mw_wp_form .p-info__btn::after {
    top: 23px;
    right: 58px;
  }
}
.mw_wp_form .p-info__btn:hover::after {
  transform: translateX(5px);
  transition: all 0.3s ease-in-out;
}
.mw_wp_form .p-info__btn__back {
  margin: auto;
  width: fit-content;
  position: relative;
  border-bottom: 1px solid #000;
}
.mw_wp_form .p-info__btn__back input[type=submit] {
  margin: auto;
  margin-top: clamp(10px, 2.7994791667vw, 43px);
  display: block;
  width: clamp(10px, 13.0208333333vw, 200px);
  height: clamp(10px, 3.2552083333vw, 50px);
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: clamp(10px, 1.0416666667vw, 16px);
  letter-spacing: 0.01em;
  background: none;
  color: #000 !important;
}
@media (max-width: 980px) {
  .mw_wp_form .p-info__btn__back input[type=submit] {
    width: 300px;
    height: 50px;
    font-size: 16px;
  }
}
.mw_wp_form .p-info__btn__back::after {
  content: "";
  width: 22px;
  height: 4px;
  background: url(../images/common/icon_arrow_right.svg) no-repeat;
  background-size: contain;
  transition: all 0.3s ease-in-out;
  display: block;
  position: absolute;
  top: clamp(10px, 1.5625vw, 24px);
  left: 0;
  transform: rotate(180deg);
}
@media (max-width: 980px) {
  .mw_wp_form .p-info__btn__back::after {
    top: 23px;
    left: 0;
  }
}
.mw_wp_form .p-info__btn__back:hover::after {
  transform: rotate(180deg) translateX(5px);
  transition: all 0.3s ease-in-out;
}
.mw_wp_form .error {
  font-family: Hiragino Sans W3;
  font-weight: normal;
  font-size: clamp(10px, 0.9114583333vw, 14px) !important;
  line-height: 1;
  color: #dd345b !important;
}
@media (max-width: 980px) {
  .mw_wp_form .error {
    font-size: 14px !important;
  }
}
.mw_wp_form .p-info__personal {
  margin-top: clamp(10px, 2.0182291667vw, 31px);
  position: relative;
}
@media (max-width: 980px) {
  .mw_wp_form .p-info__personal {
    margin-top: 50px;
  }
}
.mw_wp_form .p-info__personal .deco {
  display: block;
  position: absolute;
}
.mw_wp_form .p-info__personal .deco:first-of-type {
  width: 100%;
  height: 1px;
  background: url(../images/info/border_x.svg) repeat-x;
  background-size: contain;
  top: 0;
  left: 0;
}
.mw_wp_form .p-info__personal .deco:nth-of-type(2) {
  width: 1px;
  height: 100%;
  background: url(../images/info/border_y.svg) repeat-y;
  background-size: contain;
  top: 0;
  right: 0;
}
.mw_wp_form .p-info__personal .deco:nth-of-type(3) {
  width: 100%;
  height: 1px;
  background: url(../images/info/border_x.svg) repeat-x;
  background-size: contain;
  bottom: 0;
  left: 0;
}
.mw_wp_form .p-info__personal .deco:last-of-type {
  width: 1px;
  height: 100%;
  background: url(../images/info/border_y.svg) repeat-y;
  background-size: contain;
  top: 0;
  left: 0;
}
.mw_wp_form .p-info__personal .p-info__personal__cont {
  width: 100%;
  height: clamp(10px, 11.71875vw, 180px);
  overflow: scroll;
  padding-top: clamp(10px, 1.953125vw, 30px);
  padding-bottom: clamp(10px, 1.953125vw, 30px);
}
@media (max-width: 980px) {
  .mw_wp_form .p-info__personal .p-info__personal__cont {
    height: 185px;
  }
}
.mw_wp_form .p-info__personal .p-info__personal__cont p {
  width: clamp(10px, 50.1302083333vw, 770px);
  margin: auto;
  font-family: Hiragino Sans W3;
  font-weight: normal;
  font-size: clamp(10px, 1.0416666667vw, 16px);
  line-height: 2;
}
@media (max-width: 980px) {
  .mw_wp_form .p-info__personal .p-info__personal__cont p {
    width: clamp(10px, 81.3333333333vw, 305px);
    font-size: 16px;
  }
}
.mw_wp_form .p-info__personal .p-info__personal__cont p:last-of-type {
  margin-top: clamp(10px, 0.8463541667vw, 13px);
}
.mw_wp_form.mw_wp_form_preview .p-info__form dd {
  font-family: Hiragino Sans W3;
  font-weight: normal;
  font-size: clamp(10px, 1.0416666667vw, 16px);
  line-height: 2;
}
@media (max-width: 980px) {
  .mw_wp_form.mw_wp_form_preview .p-info__form dd {
    font-size: 16px;
  }
}
.mw_wp_form.mw_wp_form_preview .p-info__personal,
.mw_wp_form.mw_wp_form_preview .p-info__agree {
  display: none;
}

.p-info__title {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: clamp(10px, 2.2786458333vw, 35px);
  letter-spacing: 0.01em;
  line-height: 1;
  text-align: center;
  margin-bottom: clamp(10px, 3.7760416667vw, 58px);
}
@media (max-width: 980px) {
  .p-info__title {
    font-size: 20px;
    margin-bottom: 58px;
  }
}

.p-info__title__thanks {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: clamp(10px, 2.2786458333vw, 35px);
  letter-spacing: 0.01em;
  line-height: 1;
  text-align: center;
  border-bottom: 1px solid #707070;
  padding-bottom: clamp(10px, 3.7109375vw, 57px);
}
@media (max-width: 980px) {
  .p-info__title__thanks {
    font-size: 20px;
    padding-bottom: 57px;
  }
}
.p-info__title__thanks + p {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: clamp(10px, 1.0416666667vw, 16px);
  line-height: 2;
  text-align: left;
  width: fit-content;
  margin: auto;
  margin-top: clamp(10px, 2.34375vw, 36px);
}
@media (max-width: 980px) {
  .p-info__title__thanks + p {
    font-size: 16px;
  }
}

.c-btn__more {
  margin-top: clamp(10px, 4.5572916667vw, 70px);
  padding-left: 0;
}
@media (max-width: 980px) {
  .c-btn__more {
    margin-top: 80px;
  }
}
.c-btn__more a {
  flex-direction: row-reverse;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: clamp(10px, 0.9114583333vw, 14px);
  letter-spacing: 0.01em;
}
@media (max-width: 980px) {
  .c-btn__more a {
    font-size: 14px;
  }
}
.c-btn__more a::after {
  transform: rotate(180deg);
}
.c-btn__more a:hover::after {
  transform: rotate(180deg) translateX(5px);
}/*# sourceMappingURL=index.css.map */