@charset "UTF-8";
:root {
  --color-black: #575758;
  --color-white: #ffffff;
  --color-grey: #F9F8F8;
  --color-pk: #FF7460;
  --color-org: #FFB34B;
  --color-ylw: #EDC43B;
  --color-bl: #5E83AE;
  --color-bl2: #7CB7F2;
  --color-grn: #52DDAD;
  --color-none: transparent;
  --hover-duration:0.4s;
}

html {
  font-size: 62.5%;
  height: -webkit-fill-available;
}

body {
  margin: 0;
  padding: 0;
  font-family: "FP-こぶりなゴシック StdN W3", "FP-KoburinaGoStdN-W3", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: var(--color-black);
}

body.preload {
  opacity: 0;
}
body.preload * {
  transition: none !important;
}
body.disable {
  overflow-y: hidden;
}

sup,
sub {
  font-size: xx-small;
}

main {
  display: block;
}
main * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
main ul li {
  list-style-type: none;
}

figure {
  margin: 0;
  padding: 0;
}

a {
  transition: var(--hover-duration);
}
a:hover {
  opacity: 0.7;
}

html.lenis, html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.load {
  /*ローディング画面の縦横幅を画面いっぱいになるように指定*/
  width: 100vw;
  height: 100vh;
  /*ローディング画面の表示位置を固定*/
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  /*ローディング画面を0.5秒かけて非表示にする*/
  transition: all 0.5s linear;
}
.load.loaded {
  /*0.5秒かけてopacityを0にする*/
  opacity: 0;
  visibility: hidden;
}

.loader {
  background-color: #333;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  margin: 2px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  border: 1px solid #333;
  border-bottom-color: transparent;
  height: 26px;
  width: 26px;
  background: transparent !important;
  display: inline-block;
  -webkit-animation: rotate 0.75s 0s linear infinite;
  animation: rotate 0.75s 0s linear infinite;
}

@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg) scale(1);
    transform: rotate(0deg) scale(1);
  }
  50% {
    -webkit-transform: rotate(180deg) scale(0.8);
    transform: rotate(180deg) scale(0.8);
  }
  100% {
    -webkit-transform: rotate(360deg) scale(1);
    transform: rotate(360deg) scale(1);
  }
}
/*--------------------------------
reset
--------------------------------*/
html, body, div, p, img, iframe, a, span, blockquote, q, address, cite,
pre, code, em, small, strong, b, i,
header, article, section, nav, figure, figcaption, hgroup, menu, aside, footer, time,
h1, h2, h3, h4, h5, h6,
ul, ol, li, dl, dt, dd,
table, tbody, thead, tfoot, th, tr, td,
form, fieldset, legend, label, select, input, textarea, button {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
  vertical-align: baseline;
}

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

ul li {
  list-style-type: none;
}

a {
  text-decoration: none;
}

img {
  vertical-align: middle;
}

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

sup,
sub {
  font-size: xx-small;
}

select, option, input:not([type=checkbox]):not([type=radio]), textarea, button {
  font-family: inherit;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
}

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

[type=submit], [type=button], [type=reset], [type=file], button {
  cursor: pointer;
}

:focus {
  outline: none;
}

html {
  font-size: 62.5%;
}

body {
  margin: 0;
  padding: 0;
  font-size: 1.4rem;
}

/*--------------------------------
common
--------------------------------*/
main {
  display: block;
}

a {
  color: #333;
  text-decoration: none;
  transition: all 0.4s ease-out;
  -webkit-tap-highlight-color: transparent;
}

button,
[type=submit],
[type=reset] {
  transition: all 0.3s ease;
  -webkit-tap-highlight-color: transparent;
}

strong {
  color: #2b3a54;
  font-weight: inherit;
}

.vertical-text {
  writing-mode: vertical-rl;
  -webkit-text-orientation: upright;
  text-orientation: upright;
  -webkit-font-feature-settings: normal;
  font-feature-settings: normal;
}

.fit-img {
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.has-max {
  height: auto;
  max-width: 100%;
}

.flex-wrapper {
  display: flex;
  flex-wrap: wrap;
}

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

.align-item-end {
  align-items: flex-end;
}

.justify-center {
  justify-content: center;
}

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

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

.img-wrapper {
  position: relative;
}

.img-wrapper .caption {
  position: absolute;
  bottom: 0;
  left: 8px;
  right: 8px;
  z-index: 1;
}

.inline-block {
  display: inline-block;
}

.grid-wrapper {
  display: grid;
}

.arrow-link {
  display: inline-block;
}

.arrow-btn {
  width: 44px;
}

.svg-symbol {
  display: none;
}

/*--------------------------------
layout
--------------------------------*/
.scroll-disabled {
  height: 100%;
  overflow: hidden;
}

.inner {
  margin: 0 auto;
  width: calc(100% - 64px);
  max-width: 1200px;
}

@media (max-width: 767px) {
  .inner {
    width: calc(100% - 48px);
  }
}
.inner-narrow {
  max-width: 900px;
}

.inner-wide {
  max-width: 1360px;
}

.inner-fit {
  width: 100%;
  max-width: none;
}

.inner-full {
  max-width: none;
}

.general-section {
  position: relative;
}

.general-section .inner {
  padding: 100px 0;
}

@media (max-width: 991px) {
  .general-section .inner {
    padding: 32px 0;
  }
}
.general-section .inner + .inner {
  padding-top: 0;
}

.general-section .inner.mb-0 {
  padding-bottom: 0;
}

.general-section .inner-min {
  padding: 32px 0;
}

@media (max-width: 991px) {
  .general-section .inner-min {
    padding: 16px 0;
  }
}
.general-parts {
  margin-bottom: 32px;
}

.btn-space {
  margin: 32px 0;
  text-align: center;
}

.has-gap {
  gap: 32px;
}

@media (max-width: 991px) {
  .has-gap {
    gap: 16px;
  }
}
.col-2 {
  width: 50%;
}

.has-gap > .col-2 {
  width: calc(50% - 16px);
}

.col-3 {
  width: 33.3333333333%;
}

.has-gap > .col-3 {
  width: calc(33.3333333333% - 22px);
}

.col-4 {
  width: 25%;
}

.has-gap > .col-4 {
  width: calc(25% - 24px);
}

@media (max-width: 991px) {
  .col-2,
  .has-gap > .col-2 {
    width: 100%;
  }
  .col-3,
  .has-gap > .col-3 {
    width: 100%;
  }
  .col-4 {
    width: 50%;
  }
  .has-gap > .col-4 {
    width: calc(50% - 8px);
  }
  .sp-col-2 {
    width: 50%;
  }
  .has-gap > .sp-col-2 {
    width: calc(50% - 8px);
  }
}
/*--------------------------------
componet
--------------------------------*/
.caption {
  margin: 0.4em 0;
  font-size: 1.2rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .caption {
    font-size: 1rem;
  }
}

.img-wrapper {
  position: relative;
}
.img-wrapper .caption {
  position: absolute;
  bottom: 0;
  left: 8px;
  right: 8px;
  z-index: 1;
}

.primary-heading {
  margin-bottom: 0.8em;
  font-size: 4.6rem;
  line-height: 1.3;
}

.secondary-heading {
  margin-bottom: 0.8em;
  font-size: 3rem;
  line-height: 1.3;
}

.tertiary-heading {
  margin-bottom: 0.8em;
  font-size: 2.4rem;
  line-height: 1.4;
}

.page-heading {
  margin-bottom: 0.8em;
  font-size: 3.4rem;
  line-height: 1.3;
}

@media screen and (max-width: 767px) {
  .primary-heading {
    font-size: 2.9rem;
  }
  .secondary-heading {
    font-size: 2rem;
  }
  .tertiary-heading {
    font-size: 1.6rem;
  }
  .page-heading {
    font-size: 2.4rem;
  }
}
.note {
  margin: 1em 0;
  font-size: 1.6rem;
  line-height: 1.6;
}

@media screen and (max-width: 767px) {
  .note {
    font-size: 1.4rem;
  }
}
.captions {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .captions {
    text-align: left;
  }
}
.captions .caption-inner {
  display: inline-block;
  text-align: left;
  margin: 20px 0;
  padding: 0 5%;
}

.img-wrapper .cap-box {
  margin: 0;
  padding: 0.2em 8px;
  left: auto;
  right: 0;
  display: inline-block;
  background: rgba(255, 255, 255, 0.6);
  color: #333;
  font-size: 1rem;
}

.btn {
  padding: 8px 16px;
  display: inline-block;
  position: relative;
  background: #333;
  color: #fff;
  font-size: 1.6rem;
  transition: all 0.3s ease-out;
}

.general-btn {
  margin: 8px;
  padding: 0 16px;
  width: 100%;
  max-width: 400px;
  height: 60px;
  position: relative;
  background: #143851;
  font-size: 2.8rem;
  line-height: 60px;
}

.general-btn:hover {
  opacity: 0.6;
}

@media screen and (max-width: 767px) {
  .caption {
    font-size: 1rem;
  }
  .general-btn {
    width: calc(100% - 16px);
    height: 54px;
    font-size: 2.2rem;
    line-height: 54px;
  }
}
.btn span {
  position: relative;
  z-index: 1;
}

.ghost-btn {
  padding: 12px 16px;
  width: 100%;
  max-width: 345px;
  background: transparent;
  color: #333;
  font-size: 2.4rem;
  font-weight: 900;
  border: 2px solid;
}

.ghost-btn:hover {
  color: #fff;
  border-color: #333;
}

@media screen and (max-width: 767px) {
  .ghost-btn {
    padding: 10px 12px;
    max-width: 260px;
  }
}
.submit-btn {
  margin: 8px;
  padding: 0 16px;
  width: 100%;
  max-width: 300px;
  height: 60px;
  position: relative;
  background: #c9bf9e;
  font-size: 2rem;
  line-height: 60px;
  border-radius: 30px;
}

.cancel-btn {
  margin: 8px;
  padding: 0 16px;
  width: 100%;
  max-width: 200px;
  height: 60px;
  position: relative;
  background: #aaa;
  font-size: 2rem;
  line-height: 60px;
  border-radius: 30px;
}

.bg-light {
  background-color: #c9d0d1;
}

.bg-gray {
  background-color: #eee;
}

.nav-link {
  color: #fff;
  transition: color 0.3s ease-out;
}

.nav-link:hover {
  color: #62a6a1;
}

[type=text],
[type=email],
[type=tel],
[type=password],
select,
textarea {
  margin: 4px 0;
  padding: 8px;
  min-height: 47px;
  background-color: #f8f9fa;
  box-sizing: border-box;
  font-size: 1.8rem;
  font-weight: 300;
  border: 1px solid #ccc;
  border-radius: 0;
  transition: all 0.3s ease-out;
}

select {
  padding-right: 55px;
  background: url(../images/common/select-arrow.svg) no-repeat right center #f8f9fa;
  background-size: 30px auto;
}

textarea {
  resize: none;
  height: 180px;
}

[type=text]:focus,
[type=email]:focus,
[type=tel]:focus,
[type=password]:focus,
select:focus,
textarea:focus {
  background-color: #fff;
  border: 1px solid #2b1fd3;
}

.form-parts {
  margin-bottom: 8px;
}

.require {
  color: #de0000;
}

.label-cap {
  font-size: 80%;
  color: #999;
}

.label-cap.tel-cap {
  padding-right: 1em;
}

.unit {
  margin: 0 4px;
}

.text-80 {
  width: 100%;
  max-width: 80px;
}

.text-120 {
  width: 100%;
  max-width: 120px;
}

.text-150 {
  width: 100%;
  max-width: 150px;
}

.text-240 {
  width: 100%;
  max-width: 240px;
}

.text-320 {
  width: 100%;
  max-width: 320px;
}

.text-400 {
  width: 100%;
  max-width: 400px;
}

.text-540 {
  width: 100%;
  max-width: 540px;
}

.text-fit {
  width: 100%;
  flex: 1;
}

.video-wrapper {
  position: relative;
  padding-top: 56.25%;
  height: 0;
  display: block;
  content: "";
}

.video-wrapper iframe,
.video-wrapper video {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.loading {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  content: "";
}

.overlay-lite {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  content: "";
  background: rgba(255, 255, 255, 0.6);
}

@media screen and (max-width: 767px) {
  .video-wrapper {
    padding-top: 100%;
  }
}
.general-table {
  margin: 48px 0;
  width: 100%;
  font-size: 1.6rem;
  line-height: 1.4;
  border-top: 1px solid #ddd;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
}

.general-table th,
.general-table td {
  padding: 16px;
  border-bottom: 1px solid #ddd;
}

.general-table th {
  width: 260px;
  position: relative;
  background: #eee;
  font-weight: 500;
  text-align: right;
}

@media screen and (max-width: 767px) {
  .general-table {
    margin: 24px 0;
  }
  .general-table th,
  .general-table td {
    width: 100%;
    display: block;
  }
  .general-table th {
    text-align: left;
  }
}
.is-shine {
  position: relative;
  overflow: hidden;
}
.is-shine::before {
  content: "";
  position: absolute;
  display: block;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), rgb(255, 255, 255));
  width: 50px;
  height: 50px;
  top: -60px;
  left: -60px;
  animation-name: shine-run;
  animation-delay: 0s;
  animation-duration: 3s;
  animation-timing-function: ease-in;
  animation-iteration-count: infinite;
}
@keyframes shine-run {
  0% {
    transform: scale(0) rotate(50deg);
    opacity: 0;
  }
  40% {
    transform: scale(1) rotate(50deg);
    opacity: 1;
  }
  100% {
    transform: scale(250) rotate(50deg);
    opacity: 0;
  }
}

.pagetop {
  text-align: center;
  border-bottom: 1px solid #333;
  position: relative;
}
.pagetop:before {
  content: "";
  display: block;
  width: 440px;
  aspect-ratio: 11/9;
  background-image: url(../images/common/title.svg);
  margin: 200px auto 40px auto;
}
@media screen and (max-width: 767px) {
  .pagetop:before {
    width: 45%;
    margin: 10% auto 5% auto;
  }
}
.pagetop a {
  display: block;
  position: relative;
  padding: 20px 0;
}
.pagetop a:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background: linear-gradient(to right, #6d6a5a 0%, #9c9c95 20%, #9c9c95 20%, #352e21 100%);
}

.inner {
  margin: 0 auto;
  width: calc(100% - 64px);
  max-width: 1200px;
}

@media (max-width: 767px) {
  .inner {
    width: calc(100% - 48px);
  }
}
.inner-narrow {
  max-width: 900px;
}

.inner-wide {
  max-width: 1360px;
}

.inner-fit {
  width: 100%;
  max-width: none;
}

.inner-full {
  max-width: none;
}

@keyframes blurIn {
  from {
    opacity: 0;
    filter: blur(20px);
    transform: translate3d(0, 10px, 0) scaleX(1.2);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: none;
  }
}
.blurIn {
  animation-name: blurIn;
}

@keyframes blurZoomIn {
  from {
    opacity: 0;
    filter: brightness(1.8) blur(20px);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  50% {
    filter: brightness(1) blur(0);
    opacity: 1;
  }
}
.blurZoomIn {
  animation-name: blurZoomIn;
}

.cliping-mask {
  overflow: hidden;
}

/*--------------------------------
state
--------------------------------*/
.is-screen {
  height: 100vh;
}

.object-cover {
  height: 100%;
  object-fit: cover;
}

.is-none {
  display: none;
}

.disabled {
  opacity: 0.1;
  cursor: default;
  pointer-events: none;
}

.unscrollable {
  height: 100%;
  overflow: hidden;
}

.coming-soon {
  opacity: 0.8;
  pointer-events: none;
}

.none {
  opacity: 0.5;
  cursor: default;
  pointer-events: none;
}

.no-link {
  cursor: default;
  pointer-events: none;
}

.is-fv {
  opacity: 0;
  animation-fill-mode: both;
}

.is-light {
  color: #fff;
}

.is-dark {
  color: #2B3A54;
}

.gray-text {
  color: #555;
}

.is-key {
  color: #1C9BB4;
}

.is-strong {
  color: #11607E;
}

.is-shadow {
  text-shadow: 0 0 1px rgba(0, 0, 0, 0.8), 0 0 4px rgba(0, 0, 0, 0.4);
}

.is-soft-shadow {
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.2), 0 0 12px rgba(0, 0, 0, 0.16);
}

.has-bg.caption {
  margin: 0;
  padding: 2px 8px;
  background-color: rgba(0, 0, 0, 0.6);
}

.img-wrapper .caption.has-bg {
  left: 0;
  right: auto;
}

.img-wrapper .caption.has-bg.text-right {
  left: auto;
  right: 0;
}

.is-alert {
  color: #ff1c1c;
}

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

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

.small-text {
  font-size: 70%;
}

.large-text {
  font-size: 150%;
}

.is-semi-bold {
  font-weight: 500;
}

.is-thin {
  font-weight: 300;
}

.is-bold {
  font-weight: 700;
}

.line-wide {
  line-height: 2.4;
}

.letter-wide {
  letter-spacing: 0.2em;
}

.en-font {
  font-family: "trajan-pro-3", serif;
}

.en-font2 {
  font-family: "Cinzel", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.is-dummy {
  transform: rotateY(180deg);
}

.mb-medium {
  margin-bottom: 32px;
}

.mb-large {
  margin-bottom: 80px;
}

@media (max-width: 767px) {
  .mb-large {
    margin-bottom: 40px;
  }
}
@media (min-width: 992px) {
  .pc-none {
    display: none;
  }
}
@media (max-width: 991px) {
  .sp-none {
    display: none;
  }
}
@media (max-width: 767px) {
  .mobile-none {
    display: none;
  }
  .sp-text-center {
    text-align: center;
  }
}
@media (min-width: 768px) {
  .tab-none {
    display: none;
  }
}
/* Hides from IE-mac \*/
.clearfix {
  display: block;
}

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

@media screen and (max-width: 767px) {
  .u-pc-only {
    display: none !important;
  }
}
@media screen and (min-width: 768px) {
  .u-sp-only {
    display: none !important;
  }
}
.u-none {
  display: none !important;
}

.u-ta-l {
  text-align: left !important;
}

.u-ta-c {
  text-align: center !important;
}

.u-ta-r {
  text-align: right !important;
}

@media screen and (max-width: 767px) {
  .u-sp-ta-l {
    text-align: left !important;
  }
  .u-sp-ta-c {
    text-align: center !important;
  }
  .u-sp-ta-r {
    text-align: right !important;
  }
}
@media screen and (min-width: 768px) {
  .u-pc-ta-l {
    text-align: left !important;
  }
  .u-pc-ta-c {
    text-align: center !important;
  }
  .u-pc-ta-r {
    text-align: right !important;
  }
}
/* =====================
    margin / padding
===================== */
.u-mt-0 {
  margin-top: 0 !important;
}

.u-mb-0 {
  margin-bottom: 0 !important;
}

.u-mt-05em {
  margin-top: 0.5em !important;
}

.u-mt-1em {
  margin-top: 1em !important;
}

.u-mt-2em {
  margin-top: 2em !important;
}

.u-mt-3em {
  margin-top: 3em !important;
}

.u-mb-05em {
  margin-bottom: 0.5em !important;
}

.u-mb-1em {
  margin-bottom: 1em !important;
}

.u-mb-2em {
  margin-bottom: 2em !important;
}

.u-mb-3em {
  margin-bottom: 3em !important;
}

.u-mb-4em {
  margin-bottom: 4em !important;
}

.u-pt-0 {
  padding-top: 0 !important;
}

.u-pb-0 {
  padding-bottom: 0 !important;
}

@media screen and (max-width: 767px) {
  .u-sp-mt-0 {
    margin-top: 0 !important;
  }
  .u-sp-mb-0 {
    margin-bottom: 0 !important;
  }
  .u-sp-mt-05em {
    margin-top: 0.5em !important;
  }
  .u-sp-mt-1em {
    margin-top: 1em !important;
  }
  .u-sp-mt-2em {
    margin-top: 2em !important;
  }
  .u-sp-mt-3em {
    margin-top: 3em !important;
  }
  .u-sp-mb-1em {
    margin-bottom: 1em !important;
  }
  .u-sp-mb-2em {
    margin-bottom: 2em !important;
  }
  .u-sp-mb-3em {
    margin-bottom: 3em !important;
  }
  .u-sp-pt-0 {
    padding-top: 0 !important;
  }
  .u-sp-pb-0 {
    padding-bottom: 0 !important;
  }
}
@media screen and (min-width: 768px) {
  .u-pc-mt-0 {
    margin-top: 0 !important;
  }
  .u-pc-mb-0 {
    margin-bottom: 0 !important;
  }
  .u-pc-mt-05em {
    margin-top: 0.5em !important;
  }
  .u-pc-mt-1em {
    margin-top: 1em !important;
  }
  .u-pc-mt-2em {
    margin-top: 2em !important;
  }
  .u-pc-mt-3em {
    margin-top: 3em !important;
  }
  .u-pc-mb-1em {
    margin-bottom: 1em !important;
  }
  .u-pc-mb-2em {
    margin-bottom: 2em !important;
  }
  .u-pc-mb-3em {
    margin-bottom: 3em !important;
  }
  .u-pc-pt-0 {
    padding-top: 0 !important;
  }
  .u-pc-pb-0 {
    padding-bottom: 0 !important;
  }
}
/* =====================
    font-size
===================== */
.u-fz-xs {
  font-size: clamp(1rem, 0.96rem + 0.125vw, 1.2rem);
}

.u-fz-sm {
  font-size: clamp(1.1rem, 1.04rem + 0.1875vw, 1.4rem);
}

.u-fz-md {
  font-size: clamp(1.2rem, 1.12rem + 0.25vw, 1.6rem);
}

.u-fz-lg {
  font-size: clamp(1.4rem, 1.32rem + 0.25vw, 1.8rem);
}

.u-fz-xl {
  font-size: clamp(1.6rem, 1.52rem + 0.25vw, 2rem);
}

.u-fz-md2 {
  font-size: clamp(1.2rem, 1.12rem + 0.25vw, 1.6rem) !important;
}
@media screen and (max-width: 767px) {
  .u-fz-md2 {
    font-size: 4vw !important;
  }
}

/* =====================
    line-height
===================== */
.u-lh-20 {
  line-height: 2 !important;
}

.u-underline {
  text-decoration: underline;
}

.u-wet9 {
  font-weight: 900;
}

.l-header {
  padding: 0;
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 11;
  transition: 1s cubic-bezier(0.22, 1, 0.68, 1.01);
}
@media screen and (max-width: 767px) {
  .l-header {
    z-index: 100;
    width: 100%;
    height: auto;
    padding: 0;
    position: fixed;
    flex-wrap: wrap;
    transition: none;
    background-color: var(--color-bl);
  }
}
.l-header-cover {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 75px;
  transition: height 0.5s ease, background 0.5s ease;
  height: 75px;
  display: block;
  flex-wrap: wrap;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .l-header-cover {
    height: 50px;
  }
}
.l-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0 40px;
  height: 75px;
}
@media screen and (max-width: 767px) {
  .l-header-inner {
    height: 50px;
    padding: 0 5%;
  }
}
.l-header.load {
  transform: translateY(0px);
}
.l-header-logo {
  position: relative;
  z-index: 5;
  width: 480px;
  background: url(../img/common/logo-bk.svg) no-repeat left center;
  background-size: contain;
  aspect-ratio: 372/25;
}
@media screen and (max-width: 767px) {
  .l-header-logo {
    width: 86%;
    background: url(../img/common/logo.svg) no-repeat left center;
  }
}
.l-header-logo a {
  display: flex;
  height: 100%;
  display: block;
  white-space: nowrap;
  text-indent: 100%;
  overflow: hidden;
}
.l-header-logo svg {
  transition: 0.3s;
  width: 160px;
}
@media screen and (max-width: 767px) {
  .l-header-logo svg {
    width: 140px;
  }
}
.l-header-ham {
  position: fixed;
  right: 40px;
  top: 40px;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 0 0 0 auto;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .l-header-ham {
    position: relative;
    top: 0;
    right: 0;
  }
}
@media screen and (max-width: 767px) {
  .l-header-ham p {
    display: none;
  }
}
.l-header-ham p a {
  font-family: "Yu Mincho", serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Sans Emoji";
  background-color: var(--color-white);
  width: 222px;
  height: 43px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(1.1rem, 1.06rem + 0.125vw, 1.3rem);
  letter-spacing: 0em;
}
.l-header-ham p a.active, .l-header-ham p a:hover {
  opacity: 1;
  color: var(--color-white);
  background-color: var(--color-bl);
  border-color: var(--color-bl);
}
.l-header-menu {
  transition: 0.5s;
  width: auto;
  min-width: 420px;
  height: 90dvh;
  padding: 13px;
  display: flex;
  transition: 0.3s;
  right: 0;
  top: 0;
  position: fixed;
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  pointer-events: none;
  transition: -webkit-clip-path 100ms cubic-bezier(0.66, 0.17, 0.89, 0.63);
  transition: clip-path 100ms cubic-bezier(0.66, 0.17, 0.89, 0.63);
  transition: clip-path 100ms cubic-bezier(0.66, 0.17, 0.89, 0.63), -webkit-clip-path 100ms cubic-bezier(0.66, 0.17, 0.89, 0.63);
}
@media screen and (min-width: 768px) {
  .l-header-menu {
    top: 0;
    right: 0;
    width: 420px;
    padding: 2% 5% 1% 5%;
  }
}
@media screen and (max-width: 767px) {
  .l-header-menu {
    display: block;
    min-width: auto;
    width: 100%;
    height: 100%;
  }
}
.l-header-menu .navBg {
  z-index: -1;
  position: absolute;
  bottom: 0;
  left: 0;
  overflow: hidden;
  transform-origin: 100% 0;
  opacity: 0.95;
  pointer-events: none;
  transition: transform 1.5s cubic-bezier(0.23, 1, 0.32, 1);
}
@media screen and (min-width: 768px) {
  .l-header-menu .navBg {
    top: 0;
    right: 0;
  }
}
@media screen and (max-width: 767px) {
  .l-header-menu .navBg {
    top: 0;
    right: 0;
  }
}
.l-header-menu .navBg:after {
  position: absolute;
  inset: 0;
  background-color: var(--color-white);
  border-radius: 0 0 0 63px;
  content: "";
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .l-header-menu .navBg:after {
    transform: translate(0px, 0) rotate(0deg) scale(1, 0);
    transform-origin: 100% 0;
    transition: transform 1.5s cubic-bezier(0.23, 1, 0.32, 1);
  }
}
@media screen and (max-width: 767px) {
  .l-header-menu .navBg:after {
    transform: translate(0px, 0) rotate(0deg) scale(1, 0);
    transform-origin: 100% 0;
    transition: transform 1.25s cubic-bezier(0.23, 1, 0.32, 1);
  }
}
.l-header .l-header-nav {
  overflow: auto;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transform: translateY(0.25em) scale(0.95);
  opacity: 0;
  transition: transform 0.75s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.4s cubic-bezier(0.23, 1, 0.32, 1), color 0.5s;
  transition-delay: 0s;
  will-change: transform;
  gap: 2rem;
}
@media screen and (max-width: 1000px) {
  .l-header .l-header-nav {
    padding: 0 20px;
  }
}
@media screen and (max-width: 767px) {
  .l-header .l-header-nav {
    gap: 1.5rem;
  }
}
.l-header .l-header-nav dt {
  font-family: "din-2014", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(2rem, 1.88rem + 0.375vw, 2.6rem);
  font-weight: 300;
  letter-spacing: 0.05em;
  color: var(--color-black);
  width: 100%;
  border-bottom: 1px solid var(--color-black);
  padding-block-end: 10px;
}
.l-header .l-header-nav dd {
  width: 100%;
}
.l-header .l-header-nav dd:nth-of-type(1) li {
  margin-block: 20px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .l-header .l-header-nav dd:nth-of-type(1) li {
    margin-block: 10px;
  }
}
.l-header .l-header-nav dd:nth-of-type(1) li a {
  font-family: "FP-こぶりなゴシック StdN W6", "FP-KoburinaGoStdN-W6", sans-serif;
  font-size: clamp(1.4rem, 1.36rem + 0.125vw, 1.6rem);
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--color-black);
  position: relative;
  font-size: clamp(1.2rem, 1.12rem + 0.25vw, 1.6rem);
  text-align: center;
}
.l-header .l-header-nav dd:nth-of-type(1) li a.active, .l-header .l-header-nav dd:nth-of-type(1) li a:hover {
  opacity: 1;
  color: var(--color-bl);
}
@media screen and (max-width: 767px) {
  .l-header .l-header-nav dd:nth-of-type(1) li a {
    font-size: 1.6rem;
    letter-spacing: 0.15em;
    display: block;
  }
}
.l-header .l-header-nav dd:nth-of-type(2) ul {
  display: flex;
  gap: 15px;
}
@media screen and (max-width: 767px) {
  .l-header .l-header-nav dd:nth-of-type(2) ul {
    flex-direction: column;
  }
}
.l-header .l-header-nav dd:nth-of-type(2) ul li {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .l-header .l-header-nav dd:nth-of-type(2) ul li {
    width: 100%;
  }
}
.l-header .l-header-nav dd:nth-of-type(2) ul li a {
  font-size: clamp(1.2rem, 1.16rem + 0.125vw, 1.4rem);
  color: var(--color-black);
  border: 1px solid var(--color-black);
  width: 100%;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
}
@media screen and (max-width: 767px) {
  .l-header .l-header-nav dd:nth-of-type(2) ul li a {
    font-size: 1.4rem;
  }
}
.l-header .l-header-nav dd:nth-of-type(2) ul li a.active, .l-header .l-header-nav dd:nth-of-type(2) ul li a:hover {
  opacity: 1;
  color: var(--color-white);
  background-color: var(--color-bl);
  border-color: var(--color-bl);
}
.l-header .hamburger {
  width: 43px;
  height: 43px;
  z-index: 5;
  position: relative;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  background-color: var(--color-white);
  border-radius: 50%;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .l-header .hamburger {
    width: 31px;
    height: 31px;
    gap: 6px;
  }
}
.l-header .hamburger span {
  display: block;
  width: 20px;
  height: 1px;
  background-color: var(--color-black);
  margin: 0;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .l-header .hamburger span {
    width: 14px;
  }
}
.l-header .hamburger span:nth-of-type(1) {
  top: 0;
  position: relative;
}
.l-header .hamburger span:nth-of-type(2) {
  top: 0px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .l-header .hamburger.active, .l-header .hamburger:hover {
    opacity: 1;
    background-color: var(--color-bl);
  }
  .l-header .hamburger.active span, .l-header .hamburger:hover span {
    background-color: var(--color-white);
  }
}
.l-header.is-menu-open {
  background: transparent;
}
.l-header.is-menu-open .l-header-cover {
  height: 100svh;
  color: #fff;
}
.l-header.is-menu-open .l-header-menu {
  pointer-events: auto;
}
.l-header.is-menu-open .l-header-menu .navBg {
  pointer-events: auto;
}
.l-header.is-menu-open .l-header-menu .navBg:after {
  transform: translateX(0) rotate(0) scale(1, 1);
}
@media screen and (max-width: 767px) {
  .l-header.is-menu-open .l-header-menu .navBg:after {
    transform: translateX(0) rotate(0) scale(1.5, 1);
    transition: transform 1.7s cubic-bezier(0.23, 1, 0.32, 1);
  }
}
.l-header.is-menu-open .l-header-nav {
  transform: none;
  opacity: 1;
  transition: transform 1.1s cubic-bezier(0.23, 1, 0.32, 1), opacity 1.3s cubic-bezier(0.23, 1, 0.32, 1), color 0.5s;
  transition-delay: 0.295s;
}
.l-header.is-menu-open .l-header-ham p a {
  background-color: var(--color-bl);
  color: var(--color-white);
}
.l-header.is-menu-open .hamburger {
  background-color: var(--color-bl);
}
.l-header.is-menu-open .hamburger span {
  background-color: var(--color-white);
}
.l-header.is-menu-open .hamburger span:nth-of-type(1) {
  transform: translateY(5px) rotate(-315deg);
}
@media screen and (max-width: 767px) {
  .l-header.is-menu-open .hamburger span:nth-of-type(1) {
    transform: translateY(4px) rotate(-315deg);
  }
}
.l-header.is-menu-open .hamburger span:nth-of-type(2) {
  transform: translateY(-4px) rotate(315deg);
}
@media screen and (max-width: 767px) {
  .l-header.is-menu-open .hamburger span:nth-of-type(2) {
    transform: translateY(-3px) rotate(315deg);
  }
}
.l-header.-wh .l-header-logo svg {
  fill: #fff;
}
.l-header.-wh .hamburger span {
  background-color: var(--color-white);
}

.note-wrap .com-note {
  padding-block: clamp(2.5rem, 2rem + 1.5625vw, 5rem);
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}

.com-note {
  font-size: clamp(1rem, 0.96rem + 0.125vw, 1.2rem);
  letter-spacing: 0;
  line-height: 1.4;
}

footer.footer {
  background: #fff;
  position: relative;
  overflow: hidden;
}

footer.footer .link-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 8rem 0 0;
}

footer.footer .link-wrap .btn-area {
  width: 33rem;
}

footer.footer .link-wrap .btn-area .btn-box {
  height: 9.5rem;
}

footer.footer .link-wrap .btn-area .btn-box a {
  -webkit-transition: all 400ms cubic-bezier(0.36, 0.1, 0.16, 1);
  transition: all 400ms cubic-bezier(0.36, 0.1, 0.16, 1);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: #a38e66;
}

footer.footer .link-wrap .btn-area .btn-box a .txt {
  font-size: 2rem;
  color: #fff;
}

footer.footer .link-wrap .btn-area .btn-box.reserve {
  margin: 2rem 0 0;
}

footer.footer .link-wrap .btn-area .btn-box.reserve a {
  background: #902d27;
}

footer.footer .link-wrap .btn-area .btn-box:hover a {
  background: #7f6430;
}

footer.footer .link-wrap .btn-area .btn-box.reserve:hover a {
  background: #6b201e;
}

footer.footer .link-wrap .link-area {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: calc(100% - 37rem);
}

footer.footer .link-wrap .link-area li {
  -webkit-transition: all 400ms cubic-bezier(0.36, 0.1, 0.16, 1);
  transition: all 400ms cubic-bezier(0.36, 0.1, 0.16, 1);
  width: 49%;
  border-bottom: 1px solid #231815;
}

footer.footer .link-wrap .link-area li a {
  padding: 1.6rem 0 1.6rem 1rem;
  display: block;
}

footer.footer .link-wrap .link-area li .txt {
  font-size: 1.3rem;
  letter-spacing: 0.12em;
}

footer.footer .link-wrap .link-area li:hover {
  background: rgba(8, 7, 7, 0.0509803922);
}

footer.footer .link-wrap .link-area li.dis {
  pointer-events: none;
}

footer.footer .link-wrap .link-area li.dis a {
  opacity: 0.5;
}

footer.footer .contact-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  flex-direction: column;
  align-items: center;
  gap: 0 2rem;
  background-color: #D5D2CB;
  padding-block: clamp(2.5rem, 1.4rem + 3.4375vw, 8rem);
  color: #6B6B6B;
}

footer.footer .contact-wrap .copy-box .ttl {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.5vw, 15px);
}
@media screen and (max-width: 767px) {
  footer.footer .contact-wrap .copy-box .ttl {
    flex-direction: column;
    justify-content: center;
  }
  footer.footer .contact-wrap .copy-box .ttl img {
    width: 100%;
  }
}
footer.footer .contact-wrap .copy-box .ttl span {
  font-size: clamp(1.1rem, 0.9rem + 0.625vw, 2.1rem);
  letter-spacing: 0.1em;
  transform: translateY(-4px);
}
@media screen and (max-width: 767px) {
  footer.footer .contact-wrap .copy-box .ttl span {
    letter-spacing: 0.25em;
    transform: translateY(0px);
  }
}
footer.footer .contact-wrap .copy-box .ttl span.kakko {
  font-size: 3rem;
}

.footer-ttl {
  margin-bottom: 1.3em;
  font-size: clamp(2rem, 3.3vw, 2.6rem);
  letter-spacing: 0.3rem;
}

footer.footer .contact-wrap .tel-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  pointer-events: none;
}

footer.footer .contact-wrap .tel-box i {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 5.7rem;
  margin: 0 0 0.4rem;
}

footer.footer .contact-wrap .tel-box span {
  font-family: "din-2014", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(3.5rem, 3.14rem + 1.125vw, 5.3rem);
  letter-spacing: 0em;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #6B6B6B;
}
footer.footer .contact-wrap .tel-box span:before {
  content: "";
  background-size: cover;
  background-image: url(../img/common/icon_tel.svg);
  width: 54px;
  height: 31px;
}

footer.footer .contact-wrap .note-box {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-block-start: clamp(1.5rem, 1.3rem + 0.625vw, 2.5rem);
}
@media screen and (max-width: 767px) {
  footer.footer .contact-wrap .note-box {
    flex-direction: column;
  }
}

footer.footer .contact-wrap .note-box .note {
  font-size: clamp(1rem, 0.92rem + 0.25vw, 1.4rem);
  text-align: center;
  letter-spacing: 0em;
  line-height: 1.6;
  border-left: 1px solid rgba(107, 107, 107, 0.4);
  padding-inline-start: 15px;
}
@media screen and (max-width: 767px) {
  footer.footer .contact-wrap .note-box .note {
    border: none;
    padding: 0;
  }
}

footer.footer .contact-wrap .note-box .close {
  font-size: 1.1rem;
  letter-spacing: 0;
  line-height: 1.6;
}

footer.footer .com_footer {
  background: #fff;
  padding-block: 40px;
}

footer.footer .com_footer .bnr_box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  padding: 0 4rem;
  margin: 0 auto;
}

footer.footer .com_footer .bnr_box .list {
  width: 40%;
  margin: 0 0 5.4rem;
}

footer.footer .com_footer .bnr_box .list .img {
  -webkit-transition: all 400ms cubic-bezier(0.36, 0.1, 0.16, 1);
  transition: all 400ms cubic-bezier(0.36, 0.1, 0.16, 1);
}

footer.footer .com_footer .bnr_box .list .img:hover {
  opacity: 0.6;
}

footer.footer .com_footer .bnr_box .ttl {
  font-size: 1.6rem;
  color: #a9955b;
  border-bottom: solid 1px #a9955b;
  padding: 0 0 1rem;
  margin: 1.5rem 0 0;
}

footer.footer .com_footer .bnr_box .txt {
  font-size: 1.2rem;
  line-height: 1.4;
  margin: 0.8rem 0 0;
}

footer.footer .com_footer .bnr_box_2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0 4rem;
  margin: 0 auto;
}

footer.footer .com_footer .bnr_box_2 .list {
  width: 46rem;
  margin: 0 0 5.4rem;
}

footer.footer .com_footer .bnr_box_2 .list .img {
  -webkit-transition: all 400ms cubic-bezier(0.36, 0.1, 0.16, 1);
  transition: all 400ms cubic-bezier(0.36, 0.1, 0.16, 1);
}

footer.footer .com_footer .bnr_box_2 .list .img:hover {
  opacity: 0.6;
}

footer.footer .com_footer .bnr_box_2 .txt {
  font-size: clamp(1.1rem, 1.04rem + 0.1875vw, 1.4rem);
  line-height: 1.4;
  margin: 1rem 0 0;
}

footer.footer .com_footer .logo_box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 60px;
}
@media screen and (max-width: 767px) {
  footer.footer .com_footer .logo_box {
    flex-direction: column;
    gap: 20px;
  }
}

footer.footer .com_footer .logo_box a p {
  font-size: clamp(1rem, 0.96rem + 0.125vw, 1.2rem);
  margin: 0 0 1rem;
}
@media screen and (max-width: 767px) {
  footer.footer .com_footer .logo_box a p {
    text-align: center;
  }
}

footer.footer .com_footer .logo_box a .img {
  -webkit-transition: all 400ms cubic-bezier(0.36, 0.1, 0.16, 1);
  transition: all 400ms cubic-bezier(0.36, 0.1, 0.16, 1);
}
@media screen and (max-width: 767px) {
  footer.footer .com_footer .logo_box a .img {
    text-align: center;
    margin-inline: auto;
  }
}

footer.footer .com_footer .logo_box a .img:hover {
  opacity: 0.6;
}

footer.footer .com_footer .cr_box {
  margin: 4rem 0 0;
  text-align: center;
}

footer.footer .com_footer .cr_box small {
  font-size: 1rem;
}

#pageTop footer.footer .bg-movie-wrap {
  display: none;
}

.sp-footer-btn {
  position: fixed;
  width: 100%;
  left: 0;
  bottom: 0;
  z-index: 5;
  display: none;
}
@media screen and (max-width: 767px) {
  .sp-footer-btn {
    display: block;
  }
}
.sp-footer-btn ul {
  display: flex;
  justify-content: space-between;
  gap: 1px;
  background-color: #fff;
}
.sp-footer-btn ul li {
  width: 33.33%;
}
.sp-footer-btn ul li a {
  background-color: var(--color-bl);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  width: 100%;
}
.sp-footer-btn ul li a img {
  width: auto;
  height: 35px;
}
.sp-footer-btn ul li a img.line02 {
  height: 42px;
}

@media screen and (max-width: 750px) {
  footer.footer .footer-wrap {
    padding: 0 0 35px 0;
  }
  footer.footer .link-wrap .btn-area {
    width: 100%;
  }
  footer.footer .link-wrap .btn-area .btn-box {
    width: 50rem;
    height: 9rem;
    margin: 0 auto;
  }
  footer.footer .link-wrap .btn-area .btn-box a .txt {
    font-size: 3rem;
  }
  footer.footer .link-wrap .btn-area .btn-box.reserve {
    margin: 2rem auto 0;
  }
  footer.footer .link-wrap .link-area {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    margin: 7rem auto 0;
  }
  footer.footer .link-wrap .link-area li {
    width: 31rem;
  }
  footer.footer .link-wrap .link-area li a {
    padding: 2.6rem 0 2.6rem 2rem;
  }
  footer.footer .contact-wrap {
    display: block;
    text-align: center;
  }
  footer.footer .contact-wrap .tel-box {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    pointer-events: auto;
  }
  footer.footer .contact-wrap .tel-box i {
    width: 7rem;
  }
  footer.footer .contact-wrap .note-box .note {
    margin: 0;
  }
  footer.footer .com_footer {
    padding: 0;
  }
  footer.footer .com_footer .bnr_box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding: 0;
  }
  footer.footer .com_footer .bnr_box .list {
    width: 100%;
    margin: 0 0 5.8rem;
  }
  footer.footer .com_footer .bnr_box .list .img:hover {
    opacity: 1;
  }
  footer.footer .com_footer .bnr_box .ttl {
    font-size: 2.6rem;
    padding: 0 0 2rem;
    margin: 3rem 0 0;
  }
  footer.footer .com_footer .bnr_box .txt {
    font-size: 2.2rem;
    margin: 1rem 0 0;
  }
  footer.footer .com_footer .bnr_box_2 {
    padding: 0;
    max-width: 275px;
  }
  footer.footer .com_footer .bnr_box_2 .list {
    width: 100%;
    margin: 0 0 5.8rem;
  }
  footer.footer .com_footer .bnr_box_2 .list .img:hover {
    opacity: 1;
  }
  footer.footer .com_footer .logo_box {
    max-width: 230px;
    margin: 1.8rem auto 0;
  }
  footer.footer .com_footer .logo_box a .img:hover {
    opacity: 1;
  }
  footer.footer .com_footer .cr_box {
    margin: 35px 0 70px 0;
  }
  footer.footer .com_footer .cr_box small {
    letter-spacing: 0;
  }
}
.c-title {
  text-align: center;
  font-family: "din-2014", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(1.6rem, 1.3rem + 0.9375vw, 3.1rem);
  letter-spacing: 0.1em;
  color: var(--reg-color);
}
.c-title:after {
  content: "";
  display: block;
  width: 27px;
  height: 1px;
  background-color: var(--color-black);
  margin-inline: auto;
  margin-block-start: clamp(1.8rem, 1.44rem + 1.125vw, 3.6rem);
  margin-block-end: clamp(2.5rem, 1.9rem + 1.875vw, 5.5rem);
}

.c-leadcopy dd {
  margin-block-start: clamp(3rem, 2.4rem + 1.875vw, 6rem);
}
.c-leadcopy dd a {
  font-family: "din-2014", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-weight: 200;
  font-size: clamp(1.4rem, 1.24rem + 0.5vw, 2.2rem);
  width: 295px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 22px;
  background-color: var(--reg-color);
  margin-inline: auto;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .c-leadcopy dd a {
    height: 27px;
    width: 200px;
  }
}
.c-leadcopy dd a:after {
  content: "";
  clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
  width: 12px;
  height: 16px;
  background-color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .c-leadcopy dd a:after {
    width: 8px;
    height: 10px;
  }
}

.c-lead {
  text-align: center;
  font-size: clamp(1.3rem, 1.04rem + 0.8125vw, 2.6rem);
  color: var(--reg-color);
}/*# sourceMappingURL=style.css.map */