@charset "UTF-8";
/*---レスポンシブサイズ---*/
/*---変数---*/
:root {
  --mc: #000;
  --sc: #fff;
}

/*---リセットCSS---*/
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: 100%;
  font-weight: normal;
  vertical-align: baseline;
  background: transparent;
}

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

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

blockquote,
q {
  quotes: none;
}

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

img {
  vertical-align: top;
  font-size: 0;
  line-height: 0;
}

*,
*:before,
*:after {
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

br {
  line-height: inherit;
}

span {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}

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

section {
  position: relative;
}

input[type=submit],
input[type=button] {
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
}

input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}

input[type=submit]:focus,
input[type=button]:focus {
  outline-offset: -2px;
}

main {
  display: block;
}

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

button {
  outline: none;
}

iframe {
  display: block;
}

/*---基本設定---*/
html {
  box-sizing: border-box;
  font-size: 62.5%;
}
@media screen and (max-width: 1440px) {
  html {
    font-size: 0.6944444444vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 1.3020833333vw;
  }
}

body {
  -webkit-text-size-adjust: 100%;
  position: relative;
  color: var(--mc);
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}

@media all and (-ms-high-contrast: none) {
  body {
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  }
}
html,
body {
  width: 100%;
}

*:focus {
  outline: none;
}

p,
li,
dl,
tr,
th,
td {
  font-size: 1.6rem;
  letter-spacing: 0;
}

span {
  font-weight: inherit;
  letter-spacing: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  letter-spacing: 0;
}

a,
a * {
  box-sizing: border-box;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
  letter-spacing: inherit;
  text-decoration: none;
  color: inherit;
  backface-visibility: hidden;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  cursor: pointer;
}

/*---display---*/
.pc {
  display: block;
}

@media screen and (max-width: 1024px) {
  .pc {
    display: none !important;
  }
}
.pc-tb {
  display: block;
}

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

@media screen and (max-width: 1024px) {
  .tb-sp {
    display: block !important;
  }
}
.tb {
  display: none !important;
}

@media screen and (max-width: 1024px) {
  .tb {
    display: block !important;
  }
}
@media screen and (max-width: 767px) {
  .tb {
    display: none !important;
  }
}
.sp {
  display: none !important;
}

@media screen and (max-width: 767px) {
  .sp {
    display: block !important;
  }
}
/*---btnbox---*/
.btnbox {
  margin-top: 8rem;
  text-align: center;
}
.btnbox .btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 32rem;
  height: 8rem;
  background-color: #9b0000;
  cursor: pointer;
  transition: filter 0.3s ease 0s;
}
@media screen and (max-width: 767px) {
  .btnbox .btn {
    width: 34rem;
  }
}
.btnbox .btn span {
  font-size: 1.8rem;
  line-height: 1;
  color: #fff;
  letter-spacing: 0.04em;
  padding-right: 8rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .btnbox .btn span {
    font-size: 1.9rem;
  }
}
.btnbox .btn span:before {
  content: "";
  display: block;
  width: 4rem;
  height: 0.8rem;
  border-bottom: 1px solid #fff;
  border-right: 2px solid #fff;
  transform: skewX(60deg);
  position: absolute;
  right: 0;
  top: calc((100% - 1.5rem) / 2);
  transition: right 0.3s ease 0s;
}
@media (hover: hover) {
  .btnbox .btn:hover {
    filter: brightness(1.2);
  }
  .btnbox .btn:hover span:before {
    right: -0.8rem;
  }
}

/*---cmn---*/
.cmn-wrap {
  position: relative;
  margin: 0 auto;
  padding-inline: 40px;
  width: 100%;
  max-width: 1280px;
}

@media screen and (max-width: 767px) {
  .cmn-wrap {
    padding-inline: 3.2rem;
  }
}
.cmn-wrap.--full {
  padding: 0;
  max-width: none;
}

.cmn-wrap.--small {
  max-width: 1120px;
}

.cmn-ttl {
  position: relative;
  margin-inline: 0 auto;
  text-align: left;
}
.cmn-ttl__main {
  padding-right: 20px;
  font-size: 8rem;
  font-weight: 400;
  line-height: 1.749em;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .cmn-ttl__main {
    font-size: 9rem;
    padding-right: 2rem;
  }
}
.cmn-ttl__sub {
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.1111em;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .cmn-ttl__sub {
    font-size: 2rem;
  }
}
.cmn-ttl.--vertical {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.cmn-ttl.--vertical .cmn-ttl__main {
  padding-right: 0;
  line-height: 0.75;
  writing-mode: sideways-rl;
}
@media screen and (max-width: 767px) {
  .cmn-ttl.--vertical .cmn-ttl__main {
    writing-mode: initial;
  }
}
.cmn-ttl.--vertical .cmn-ttl__sub {
  writing-mode: vertical-rl;
}
@media screen and (max-width: 767px) {
  .cmn-ttl.--vertical .cmn-ttl__sub {
    writing-mode: initial;
  }
}
.cmn-ttl.--white {
  color: #fff;
}
.cmn-ttl.--access .cmn-ttl__main {
  line-height: 0.6;
}
@media screen and (max-width: 767px) {
  .cmn-ttl.--access .cmn-ttl__main {
    font-size: 8rem;
  }
}
.cmn-ttl .--en {
  font-family: "EB Garamond", serif;
}
.cmn-ttl .--mc {
  color: var(--mc);
}
.cmn-ttl .--sc {
  color: var(--sc);
}

.cmn-ttl2 {
  position: relative;
  text-align: center;
}
.cmn-ttl2__main {
  position: relative;
  height: 175px;
  font-size: 3.2rem;
  font-weight: 400;
  line-height: 1.9996em;
  color: var(--mc);
  letter-spacing: 0.04em;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .cmn-ttl2__main {
    font-size: 3.2rem;
  }
}
.cmn-ttl2__sub {
  position: absolute;
  top: calc(50% - 8px);
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: 700;
  font-size: 12rem;
  letter-spacing: 0.04em;
  text-align: center;
  color: #f5f5f5;
}
@media screen and (max-width: 767px) {
  .cmn-ttl2__sub {
    font-size: 12rem;
  }
}
.cmn-ttl2.--left {
  margin-inline: 0 auto;
  text-align: left;
}
.cmn-ttl2.--left .cmn-ttl__main {
  padding-left: 40px;
}
.cmn-ttl2.--left .cmn-ttl__sub {
  left: 0;
  transform: translateY(-50%);
}
.cmn-ttl2.--access .cmn-ttl__main {
  color: var(--sc);
}
.cmn-ttl2.--access .cmn-ttl__sub {
  color: #999;
}
.cmn-ttl2.-gray .cmn-ttl2__main {
  color: #000;
}
.cmn-ttl2.-gray .cmn-ttl2__sub {
  color: #f5f5f5;
}
.cmn-ttl2 .--en {
  font-family: "Kaisei HarunoUmi", serif;
}
.cmn-ttl2 .--main-color {
  color: var(--mc);
}
.cmn-ttl2 .--sub-color {
  color: var(--sc);
}

.hd {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  line-height: 1;
  transition: all 0.4s;
  z-index: 1000;
}
.hd .hd-menu .hd-nav.pc-nav .hd-nav__item a span {
  color: #000;
}
.hd .hd-menu .hd-nav.sp-nav .hd-nav__item a span {
  font-size: 2.8rem;
}
@media screen and (max-width: 414px) {
  .hd .hd-menu .hd-nav.sp-nav .hd-nav__item a span {
    font-size: 3.6rem;
  }
}
.hd-cnt {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  margin: 0 auto;
  padding-inline: 40px;
  width: 100%;
  height: 100%;
}

.hd-logo {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.hd-logo__ph {
  max-width: 270px;
}

.hd-nav__list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: nowrap;
  gap: 19px;
}

.hd-nav__item {
  text-align: center;
}
.hd-nav__item a span {
  color: #fff;
}

.hd-nav__link {
  position: relative;
  display: block;
  transition: 0.4s;
}

.hd-nav__link-st {
  display: block;
  font-size: 1.8rem;
  letter-spacing: 0.08em;
  line-height: 1.75;
  text-align: center;
}

@media screen and (min-width: 1025px) {
  .hd-nav__link:hover {
    opacity: 0.7;
  }
}
.hd-toggle {
  display: none;
}

@media screen and (max-width: 1024px) {
  .hd {
    height: 60px;
  }
  .hd-logo {
    flex-direction: row;
    gap: 12px;
    width: auto;
    line-height: 1;
    z-index: 1001;
  }
  .hd-logo__ph {
    width: 260px;
  }
  .hd-nav {
    position: fixed;
    top: 0;
    left: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    padding-top: 18rem;
    width: 100%;
    max-width: 460px;
    height: 100svh;
    background: rgba(255, 255, 255, 0.9);
    overflow-y: auto;
    opacity: 0;
    transition: transform 0.2s, opacity 0.2s, visibility 0s 0.2s;
    visibility: hidden;
    z-index: 1000;
  }
  .hd-nav__list {
    display: block;
    margin-bottom: 25px;
  }
  .hd-nav__item {
    padding: 0;
    line-height: 1;
  }
  .hd-nav__link {
    display: block;
    padding: 16px 0;
  }
  .hd-nav__btn-link {
    width: 180px;
  }
  .hd-toggle {
    position: relative;
    display: block;
    width: 92px;
    height: 100%;
    cursor: pointer;
    z-index: 1002;
  }
  .hd-toggle div {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    display: block;
    width: 24px;
    height: 16px;
  }
  .hd-toggle span {
    position: absolute;
    left: 0;
    display: block;
    width: 100%;
    height: 1px;
    background: var(--mc);
    color: var(--mc);
    transition: 0.35s ease-in-out;
  }
  .hd-toggle span:nth-child(1) {
    top: 0;
  }
  .hd-toggle span:nth-child(2) {
    top: 8px;
  }
  .hd-toggle span:nth-child(3) {
    position: relative;
    top: 16px;
  }
}
@media screen and (max-width: 767px) {
  .hd-cnt {
    padding-inline: 20px;
  }
  .hd-logo__ph {
    width: 160px;
  }
}
.hd.open .sp-nav {
  opacity: 1;
  transform: translateX(-100%);
  transition: transform 0.4s, opacity 0.4s;
  visibility: visible;
}
.hd.open .sp-nav .hd-nav__item a span {
  color: var(--mc);
}

.hd.open .hd-toggle__txt {
  color: #333;
  visibility: hidden;
}

.hd.open .hd-toggle__txt::after {
  visibility: visible;
}

.hd.open .hd-toggle span:nth-child(1) {
  top: 5px;
  transform: rotate(45deg);
}

.hd.open .hd-toggle span:nth-child(2) {
  left: 50%;
  width: 0;
}

.hd.open .hd-toggle span:nth-child(3) {
  top: 5px;
  transform: rotate(-45deg);
}

.hd.fixed {
  background: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}

.hd.fixed .hd-nav__link-st {
  color: var(--mc);
}

.ft {
  background: var(--mc);
}

.ft-inr {
  margin: 0 auto;
  padding-block: clamp(4.5rem, 2.6rem + 4.97vw, 9rem) clamp(2rem, 1.2rem + 2.21vw, 4rem);
  width: 100%;
}
@media screen and (max-width: 767px) {
  .ft-inr {
    padding-block: 10rem 16rem;
  }
}

.ft-head {
  margin-bottom: clamp(2.5rem, 1.5rem + 2.76vw, 5rem);
  padding-bottom: min(6.40625vw, 8.2rem);
  border-bottom: 1px solid #999;
}
@media screen and (max-width: 767px) {
  .ft-head {
    padding-bottom: 8rem;
    border-bottom: 1px solid #707070;
  }
}

.ft-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.ft-logo__ph {
  display: block;
  width: 300px;
}

@media screen and (max-width: 767px) {
  .ft-logo__ph {
    width: 150px;
  }
}
.ft-copy {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "游ゴシック", "游ゴシック体", YuGothic, "Yu Gothic", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  line-height: 2.5;
  text-align: center;
  color: var(--sc);
}
@media screen and (max-width: 1024px) {
  .ft-copy {
    font-size: 1.6rem;
  }
}

.fixed-nav {
  position: fixed;
  bottom: 0;
  right: 0;
  transition: 0.4s;
  opacity: 0;
  z-index: 1000;
}
@media screen and (max-width: 767px) {
  .fixed-nav {
    height: auto;
    z-index: 1000;
  }
}
.fixed-nav.fixed {
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .fixed-nav.fixed {
    bottom: 0;
    left: auto;
    right: 0;
  }
}

.fixed-nav__link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32rem;
  height: 8rem;
  background-color: #9b0000;
  cursor: pointer;
  transition: filter 0.3s ease 0s;
}
@media screen and (max-width: 767px) {
  .fixed-nav__link {
    flex-direction: row;
    height: 8rem;
  }
}
@media (hover: hover) {
  .fixed-nav__link:hover {
    filter: brightness(1.2);
  }
  .fixed-nav__link:hover .fixed-nav__st:before {
    right: -0.8rem;
  }
}

.fixed-nav__st {
  font-size: 1.8rem;
  line-height: 1;
  color: #fff;
  letter-spacing: 0.04em;
  padding-right: 8rem;
  position: relative;
}
.fixed-nav__st:before {
  content: "";
  display: block;
  width: 4rem;
  height: 0.8rem;
  border-bottom: 1px solid #fff;
  border-right: 2px solid #fff;
  transform: skewX(60deg);
  position: absolute;
  right: 0;
  top: calc((100% - 1.5rem) / 2);
  transition: right 0.3s ease 0s;
}

@media screen and (max-width: 767px) {
  .fixed-nav__st {
    writing-mode: inherit;
  }
}
.toppage .ui-datepicker {
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .toppage .ui-datepicker {
    font-size: 3.2rem;
  }
}
.toppage .ui-datepicker th,
.toppage .ui-datepicker td {
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .toppage .ui-datepicker th,
  .toppage .ui-datepicker td {
    font-size: 3.2rem;
  }
}