@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Cardo:wght@400;700&family=Jost:ital,wght@0,100..900;1,100..900&family=Zen+Kaku+Gothic+Antique:wght@300;400;500;700;900&family=Zen+Old+Mincho:wght@400;500;600;700;900&display=swap");
/* ======================================
   CSS Reset
======================================== */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline; }

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

ul {
  list-style: none; }

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

* {
  box-sizing: border-box;
  position: relative; }

/* ======================================
   Common
======================================== */
@page {
  margin: 0mm 5mm;
  size: A4 portrait; }
@media print {
  body {
    -webkit-print-color-adjust: exact;
    color-adjust: exact;
    padding-top: 5mm;
    width: 210mm;
    height: 297mm;
    font-size: 7.5pt; }

  .header.clone {
    display: none; } }
body,
html {
  width: 100%;
  height: 100%; }

body {
  position: relative; }
  body.stop {
    overflow: hidden; }

html {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.4;
  color: #3E4148; }
  @media screen and (min-width: 780px) {
    html {
      font-size: 16px; } }

.wrapper {
  width: 100%;
  min-height: 100%;
  padding: 0;
  margin: 0;
  overflow: hidden;
  z-index: 0; }

.container {
  width: 100%;
  padding: 0 0 8rem 0;
  margin: 0;
  z-index: 0; }

.contents {
  max-width: 90%;
  padding: 0;
  margin: auto; }
  .contents.max {
    width: 1280px; }
  .contents.mid {
    width: 960px; }
  .contents.min {
    width: 780px; }
  .contents.fit {
    max-width: 100%; }
  .contents + .contents {
    padding-top: 4rem; }
  .contents p {
    line-height: 2; }
  .contents.fit {
    max-width: 100%; }
    @media screen and (min-width: 960px) {
      .contents.fit {
        max-width: 90%; } }
  .contents.fit-y {
    min-height: 100vh;
    position: relative;
    display: flex; }
  .contents.beige {
    margin-top: 40px;
    padding-top: 0; }

/*a {
	outline: none;
	display: inline-block;
	&:hover,
	&:focus,
	&:active {
	text-decoration: none;
	outline: none;
	}
}*/
strong {
  font-weight: 700; }

.note {
  font-size: 90%; }

figure figcaption {
  font-size: 0.81rem;
  margin-top: 1em; }

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

br.pc {
  display: none; }
  @media screen and (min-width: 780px) {
    br.pc {
      display: block; } }

br.sp {
  display: block; }
  @media screen and (min-width: 780px) {
    br.sp {
      display: none; } }

.stage {
  width: 100%;
  position: relative;
  overflow: hidden;
  z-index: 9999; }
  .stage.fit {
    padding: 0; }
  .stage.white {
    background-color: #FFF; }
  .stage.gray {
    background-color: #E0E0E0; }
  .stage.blanc {
    background-color: transparent; }

.stage_bg {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  right: 0;
  left: 0;
  margin: auto 0 auto 0;
  object-fit: cover;
  object-position: center top;
  overflow: hidden; }
  @media screen and (min-width: 780px) {
    .stage_bg {
      object-position: center center; } }
  .stage_bg.fixed {
    position: fixed !important; }
  .stage_bg::after {
    content: "";
    display: block;
    background-color: rgba(0, 0, 0, 0.15);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    z-index: 999; }
  .stage_bg .fade-slider .swiper-slide-active .slide-img,
  .stage_bg .fade-slider .swiper-slide-duplicate-active .slide-img,
  .stage_bg .fade-slider .swiper-slide-prev .slide-img {
    animation: zoomUp 10s linear 0s 1 normal both; }
  .stage_bg .fade-slider img {
    height: 100vh;
    width: 100vw;
    object-fit: cover;
    object-position: center; }

@keyframes zoomUp {
  0% {
    transform: scale(1); }
  100% {
    transform: scale(1.1); } }
.slideUp {
  animation: slideUp 1s cubic-bezier(0.25, 1, 0.5, 1) forwards; }

@keyframes slideUp {
  0% {
    transform: translateY(20px); }
  100% {
    transform: translateY(0); } }
.parallax_img {
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  transition: .5s;
  z-index: 0; }
  .parallax_img.active {
    opacity: 1; }

.fadein {
  opacity: 0;
  filter: blur(100px); }
  .fadein.active {
    animation: fadeIn 1s ease-out forwards; }

@keyframes fadeIn {
  0% {
    opacity: 0;
    filter: blur(100px); }
  100% {
    opacity: 1;
    filter: blur(0); } }
#mainvisual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh; }

#stay, #restaurant, #banquet, #aboutus {
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  justify-content: center; }
  @media screen and (min-width: 780px) {
    #stay, #restaurant, #banquet, #aboutus {
      justify-content: flex-start; } }

.welcome {
  z-index: 99; }
  .welcome div img {
    width: 300px;
    margin: auto; }
  .welcome div h2 {
    color: #FFF;
    text-align: center;
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 2.4;
    margin-top: 40px; }
    .welcome div h2 p {
      text-align: center; }

@media screen and (min-width: 780px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none; } }
.block {
  display: block; }
  .block.left {
    text-align: left !important; }
  .block.center {
    text-align: center !important; }
  .block.right {
    text-align: right !important; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.my0 {
  margin: 0 !important; }

.my1 {
  margin: 10px 0 !important; }

.my2 {
  margin: 20px 0 !important; }

.my3 {
  margin: 30px 0 !important; }

.my4 {
  margin: 40px 0 !important; }

.my5 {
  margin: 50px 0 !important; }

.my6 {
  margin: 60px 0 !important; }

.my7 {
  margin: 70px 0 !important; }

.my8 {
  margin: 80px 0 !important; }

.my9 {
  margin: 90px 0 !important; }

.my10 {
  margin: 100px 0 !important; }

.mx0 {
  margin: 0 !important; }

.mx1 {
  margin: 0 10px !important; }

.mx2 {
  margin: 0 20px !important; }

.mx3 {
  margin: 0 30px !important; }

.mx4 {
  margin: 0 40px !important; }

.mx5 {
  margin: 0 50px !important; }

.mx6 {
  margin: 0 60px !important; }

.mx7 {
  margin: 0 70px !important; }

.mx8 {
  margin: 0 80px !important; }

.mx9 {
  margin: 0 90px !important; }

.mx10 {
  margin: 0 100px !important; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.py0 {
  padding: 0 !important; }

.py1 {
  padding: 10px 0 !important; }

.py2 {
  padding: 20px 0 !important; }

.py3 {
  padding: 30px 0 !important; }

.py4 {
  padding: 40px 0 !important; }

.py5 {
  padding: 50px 0 !important; }

.py6 {
  padding: 60px 0 !important; }

.py7 {
  padding: 70px 0 !important; }

.py8 {
  padding: 80px 0 !important; }

.py9 {
  padding: 90px 0 !important; }

.py10 {
  padding: 100px 0 !important; }

.px0 {
  padding: 0 !important; }

.px1 {
  padding: 0 10px !important; }

.px2 {
  padding: 0 20px !important; }

.px3 {
  padding: 0 30px !important; }

.px4 {
  padding: 0 40px !important; }

.px5 {
  padding: 0 50px !important; }

.px6 {
  padding: 0 60px !important; }

.px7 {
  padding: 0 70px !important; }

.px8 {
  padding: 0 80px !important; }

.px9 {
  padding: 0 90px !important; }

.px10 {
  padding: 0 100px !important; }

.p0 {
  padding: 0 !important; }

.p1 {
  padding: 10px !important; }

.p2 {
  padding: 20px !important; }

.p3 {
  padding: 30px !important; }

.p4 {
  padding: 40px !important; }

.p5 {
  padding: 50px !important; }

.p6 {
  padding: 60px !important; }

.p7 {
  padding: 70px !important; }

.p8 {
  padding: 80px !important; }

.p9 {
  padding: 90px !important; }

.p10 {
  padding: 100px !important; }

ol, ul, dl {
  line-height: 2;
  margin-top: 0.5em; }

ol {
  list-style-position: outside;
  padding-left: 1.5em; }

ul.ind li {
  text-indent: -1em;
  padding-left: 1em; }

dl.style {
  font-size: 0.93rem;
  margin: 0; }
  dl.style dt {
    position: relative;
    font-weight: 600;
    padding-left: 1.7em;
    text-indent: -1.7em; }
    dl.style dt::before {
      content: '';
      display: inline-block;
      width: 0.8em;
      height: 0.8em;
      background-color: #C9A35A;
      margin-right: 0.5em; }
  dl.style dd {
    padding-left: 1.3em; }
    dl.style dd + dt {
      margin-top: 1.5em; }

/* ======================================
   Footer
======================================== */
.foot_contact {
  background-color: #EDEDED;
  padding: 6rem 0; }
  .foot_contact h2 {
    text-align: center; }
    .foot_contact h2 p {
      display: inline-block;
      text-align: left;
      color: #3E4148;
      font-family: "Cardo", "Zen Old Mincho", serif;
      font-weight: 300;
      line-height: 1.2;
      font-size: 1.6rem;
      letter-spacing: 4px; }
    .foot_contact h2 span {
      display: inline-block;
      text-align: left;
      color: #585F6C;
      font-size: 0.95rem; }
  .foot_contact .tel {
    display: block;
    margin: 3rem auto 2rem auto;
    text-align: center; }
    .foot_contact .tel p.tt1 {
      display: block;
      font-size: 0.9rem;
      font-weight: 600; }
    .foot_contact .tel p.tt2 {
      display: block;
      font-size: 2.4rem;
      font-family: "Cardo", "Zen Old Mincho", serif;
      letter-spacing: 3px;
      margin: auto 1rem; }
    .foot_contact .tel p.tt3 {
      display: inline-block;
      font-size: 0.8rem;
      border-top: 1px solid #B6BECE;
      border-bottom: 1px solid #B6BECE; }
  .foot_contact .link {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 1rem; }
    .foot_contact .link a {
      display: flex !important;
      align-items: center !important;
      height: 4.5rem;
      background-color: #FFF;
      padding: 0 0 0 3rem !important;
      font-size: 0.9rem; }
      .foot_contact .link a::before, .foot_contact .link a::after {
        left: 1rem; }
      .foot_contact .link a p {
        font-family: "Zen Kaku Gothic Antique", sans-serif;
        line-height: 1.4;
        font-weight: 500;
        margin: 0;
        padding: 0; }
  @media screen and (min-width: 780px) {
    .foot_contact .tel {
      display: flex;
      align-items: center;
      justify-content: center; }
    .foot_contact .link {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr; } }

.footer {
  background-color: #000;
  color: #FFF;
  padding: 150px 0 50px 0;
  z-index: 100; }
  .footer a {
    color: #FFF; }

.foot_logo a {
  display: block;
  width: 250px;
  height: 45px;
  margin: 0 auto 40px;
  background-image: url("../images/h1_logo_white.png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat; }
  .foot_logo a p {
    display: none; }

.foot_sns {
  display: flex;
  justify-content: center;
  column-gap: 30px;
  margin: auto; }
  .foot_sns li {
    text-align: center; }
    .foot_sns li p {
      color: #FFF;
      font-size: 0.7em;
      text-align: center; }
    .foot_sns li a {
      display: block;
      margin: auto;
      width: 30px;
      height: 30px;
      background-position: center;
      background-size: contain;
      background-repeat: no-repeat; }
      .foot_sns li a.tx {
        background-image: url("../images/sns_x_w.svg"); }
      .foot_sns li a.ig {
        background-image: url("../images/sns_g_w.svg"); }
      .foot_sns li a.fb {
        background-image: url("../images/sns_f_w.svg"); }

.foot_menu {
  font-family: "Zen Old Mincho", serif;
  font-size: 1.06rem;
  margin: 60px auto; }
  .foot_menu ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 20px;
    margin: auto; }
    .foot_menu ul li {
      border-left: 1px solid #555;
      border-right: 1px solid #555;
      margin-left: -1px;
      padding: 0 20px; }
      .foot_menu ul li a {
        display: inline-block;
        text-decoration: none;
        position: relative; }
        .foot_menu ul li a::after {
          content: "";
          position: absolute;
          left: 0;
          bottom: -8px;
          width: 0;
          height: 1px;
          background-color: #FFF;
          transition: 0.5s; }
        .foot_menu ul li a:hover::after {
          content: "";
          width: 100%; }
  .foot_menu.lang {
    margin: 60px auto;
    font-size: 0.93rem; }
    .foot_menu.lang li:nth-child(1) {
      border-left: 0; }
    .foot_menu.lang li:nth-child(2) {
      border-right: 0; }

.foot_link {
  margin: 40px auto;
  font-size: 0.87rem;
  font-weight: 400; }
  .foot_link ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    column-gap: 20px;
    row-gap: 20px;
    margin: auto; }
    .foot_link ul li {
      flex-basis: 100%;
      text-align: center; }
    .foot_link ul a {
      display: inline-block;
      text-decoration: none;
      position: relative; }
      .foot_link ul a::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -8px;
        width: 0;
        height: 1px;
        background-color: #FFF;
        transition: 0.5s; }
      .foot_link ul a:hover::after {
        content: "";
        width: 100%; }

.foot_address {
  text-align: center;
  margin: 80px auto;
  font-size: 0.87rem; }
  .foot_address p {
    display: inline-block;
    text-align: left; }

.foot_copy {
  text-align: center;
  color: #C9A35A;
  font-size: 0.87rem; }
  .foot_copy p {
    display: inline-block;
    text-align: left; }

@media screen and (min-width: 780px) {
  .foot_link ul li {
    flex-basis: auto; } }
/* ======================================
   Header
======================================== */
/* ======================================
   Navigation
======================================== */
.header {
  display: block;
  width: 100%;
  min-height: 70px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999999; }
  .header.none {
    display: none; }
  .header.clone {
    position: fixed;
    z-index: 999999;
    top: 0;
    left: 0;
    right: 0;
    transform: translateY(-200%);
    transition: transform 0.3s ease-in-out; }
    .header.clone.set {
      transform: translateY(0); }
  .header.set {
    position: fixed;
    transform: translateY(-100%); }

.global_nav {
  width: 100%;
  height: 100%;
  padding: 0 80px 0 20px;
  border-top: 1px solid #DBE1EF;
  border-bottom: 1px solid #DBE1EF;
  z-index: 10000;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  transition: .5s; }
  .global_nav a.home {
    width: 340px;
    height: 70px;
    z-index: 10000;
    max-width: 80%; }
    .global_nav a.home h1 {
      width: 100%;
      height: 100%;
      margin: 0;
      mask-position: center center;
      mask-repeat: no-repeat;
      mask-size: contain;
      mask-image: url("../images/h1_logo_head.svg");
      background: #3E4148;
      transition: 1s; }
      .global_nav a.home h1 p {
        display: none; }
  .global_nav .head_wrap {
    display: flex;
    align-items: center; }
  .global_nav .head_link {
    display: none; }
    @media screen and (min-width: 960px) {
      .global_nav .head_link {
        display: flex;
        z-index: 10000;
        align-items: center;
        margin: auto 0 auto auto; }
        .global_nav .head_link li a {
          font-family: "Zen Old Mincho", serif;
          color: #3E4148;
          padding: 1rem; } }
  .global_nav .head_sns {
    padding: 1rem; }
    .global_nav .head_sns a.ig {
      display: block;
      width: 25px;
      height: 25px;
      margin: 0;
      mask-position: center center;
      mask-repeat: no-repeat;
      mask-size: contain;
      mask-image: url("../images/sns_g_w.svg");
      background: #3E4148; }
  .global_nav.open {
    background-color: white;
    border-top: 1px solid rgba(255, 255, 255, 0);
    border-top: 1px solid #DBE1EF !important;
    border-bottom: 1px solid #DBE1EF !important; }
    .global_nav.open a.home h1 {
      background: #3E4148 !important; }
    .global_nav.open .head_link li a {
      color: #3E4148 !important; }
    .global_nav.open .head_sns a.ig {
      background: #3E4148 !important; }
    .global_nav.open .hamburger_menu {
      border-left: 1px solid #DBE1EF; }

#page-top .global_nav {
  border-top: 1px solid white;
  border-bottom: 1px solid white; }
  #page-top .global_nav a.home h1 {
    background: #FFF; }
  #page-top .global_nav .head_link li a {
    color: #FFF; }
  #page-top .global_nav .head_sns a.ig {
    background: #FFF; }

.clone .global_nav {
  border-top: 1px solid #DBE1EF !important;
  border-bottom: 1px solid #DBE1EF !important;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px); }
  .clone .global_nav a.home h1 {
    background: #3E4148 !important; }
  .clone .global_nav .head_link li a {
    color: #3E4148 !important; }
  .clone .global_nav .head_sns a.ig {
    background: #3E4148 !important; }

.hamburger_menu {
  margin: 0 0 auto auto;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  flex-shrink: 0;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 100%;
  z-index: 10000;
  border-left: 1px solid #DBE1EF; }
  .hamburger_menu div {
    width: 30px;
    padding: 10px 0;
    position: relative; }
    .hamburger_menu div::before, .hamburger_menu div::after {
      content: "";
      display: block;
      height: 1px;
      background-color: #3E4148;
      transition: 0.5s;
      position: absolute; }
    .hamburger_menu div::before {
      width: 100%;
      top: 0; }
    .hamburger_menu div::after {
      width: 100%;
      bottom: 0; }
    .hamburger_menu div p {
      display: block;
      width: 100%;
      height: 1px;
      background-color: #3E4148;
      opacity: 1;
      transition: 0.5s; }

#page-top .hamburger_menu {
  border-left: 1px solid #FFF; }
  #page-top .hamburger_menu div::before, #page-top .hamburger_menu div::after {
    background-color: #FFF; }
  #page-top .hamburger_menu div p {
    background-color: #FFF; }

.clone .hamburger_menu {
  border-left: 1px solid #DBE1EF !important; }
  .clone .hamburger_menu div::before, .clone .hamburger_menu div::after {
    background-color: #3E4148 !important; }
  .clone .hamburger_menu div p {
    background-color: #3E4148 !important; }

.hamburger_menu.close {
  justify-content: center;
  border-left: 1px solid #DBE1EF !important; }
  .hamburger_menu.close div::before, .hamburger_menu.close div::after {
    content: "";
    width: 100%;
    transform-origin: center;
    background-color: #3E4148 !important; }
  .hamburger_menu.close div::before {
    transform: rotate(45deg);
    top: 50%; }
  .hamburger_menu.close div::after {
    background-color: transparent !important; }
  .hamburger_menu.close div p {
    transform: rotate(135deg);
    background-color: #3E4148 !important; }

/* ======================================
   Mega Menu
======================================== */
.nav_wrap {
  display: block;
  position: fixed;
  z-index: 999;
  opacity: 0;
  top: 0;
  left: 100%;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100vh;
  margin: 0;
  padding: 10rem 0;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  transition: opacity 0.5s;
  overflow: hidden; }
  .nav_wrap.open {
    left: 0;
    opacity: 1;
    overflow: auto; }
  .nav_wrap .contents {
    width: 1280px;
    max-width: 90%;
    margin: auto; }

ul.menu {
  margin: 0 !important;
  padding: 0 !important; }

.dirmenu > a {
  display: block;
  padding: 0 0 0 30px !important;
  position: relative;
  width: 100%;
  text-align: left;
  transition: 0.5s;
  overflow: hidden; }
  .dirmenu > a::before, .dirmenu > a::after {
    content: "";
    width: 1em;
    height: 1px;
    background-color: #3E4148;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto 0;
    transition: 0.5s; }
  .dirmenu > a::after {
    transform: rotate(90deg); }
  .dirmenu > a:hover::after {
    transform: rotate(360deg); }
  .dirmenu > a span {
    font-family: "Cardo", "Zen Old Mincho", serif;
    font-size: 2rem;
    letter-spacing: 3px;
    margin: 0 !important;
    line-height: 1; }
  .dirmenu > a p {
    font-family: "Zen Old Mincho", serif;
    font-size: 0.95rem; }
.dirmenu + .dirmenu {
  padding-top: 40px; }

.submenu {
  padding: 0 0 0 30px;
  padding: 0 0 0 30px; }
  .submenu ul li {
    padding: 2px 0; }
    .submenu ul li a {
      display: block;
      position: relative;
      padding: 0 0 0 20px; }
      .submenu ul li a::before, .submenu ul li a::after {
        content: "";
        width: 0.8em;
        height: 1px;
        background-color: #B6BECE;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        margin: auto 0;
        transition: 0.5s; }
      .submenu ul li a::after {
        transform: rotate(90deg); }
      .submenu ul li a:hover::after {
        transform: rotate(360deg); }
      .submenu ul li a p {
        font-family: "Zen Old Mincho", serif;
        font-size: 0.95rem; }

/* ==== BG Color ==== */
.white {
  background-color: #FFF; }

/* ==== Grid ==== */
.grid {
  display: grid;
  grid-gap: 60px 30px;
  justify-content: start;
  align-items: stretch;
  margin: 0; }
  .grid.mid {
    align-items: center; }
  .grid.btm {
    align-items: flex-end; }
  .grid.col1-1, .grid.col1-2, .grid.col1-3, .grid.col2-1, .grid.col2-3, .grid.col3-1, .grid.col3-2, .grid.col3-4, .grid.col4-3, .grid.col-2, .grid.col-3, .grid.col-4 {
    grid-template-columns: 100%; }
  .grid li {
    margin: 0 !important; }

@media screen and (min-width: 780px) {
  .grid.col-3 {
    grid-template-columns: repeat(2, 1fr); }
  .grid.col-4 {
    grid-template-columns: repeat(2, 1fr); } }
@media screen and (min-width: 960px) {
  .grid.col1-1 {
    grid-template-columns: 1fr 1fr; }
  .grid.col1-2 {
    grid-template-columns: 1fr 2fr; }
  .grid.col1-3 {
    grid-template-columns: 1fr 3fr; }
  .grid.col2-1 {
    grid-template-columns: 2fr 1fr; }
  .grid.col2-3 {
    grid-template-columns: 2fr 3fr; }
  .grid.col3-1 {
    grid-template-columns: 3fr 1fr; }
  .grid.col3-2 {
    grid-template-columns: 3fr 2fr; }
  .grid.col3-4 {
    grid-template-columns: 3fr 4fr; }
  .grid.col4-3 {
    grid-template-columns: 4fr 3fr; }
  .grid.col-2 {
    grid-template-columns: repeat(2, 1fr); }
  .grid.col-3 {
    grid-template-columns: repeat(3, 1fr); }
  .grid.col-4 {
    grid-template-columns: repeat(4, 1fr); } }
/* ==== Table ==== */
table[class^="style"] {
  width: 100%;
  line-height: 2; }
  table[class^="style"] th {
    width: 100%;
    font-weight: 600;
    vertical-align: top;
    text-align: left;
    padding: 15px 0;
    display: block; }
  table[class^="style"] td {
    width: 100%;
    font-weight: 400;
    vertical-align: top;
    padding: 15px 0;
    display: block; }
  table[class^="style"] + p {
    margin-top: 30px; }
    table[class^="style"] + p.cap {
      font-size: 0.87rem; }

table.styleA th {
  width: 100%;
  border-bottom: 0;
  padding: 15px 0 5px 0;
  font-weight: 600 !important;
  border-top: 1px solid #BCBCBC;
  margin-top: -1px; }
table.styleA td {
  border-bottom: 1px solid #BCBCBC;
  padding: 5px 0 15px 0;
  margin-top: -1px; }
table.styleB {
  border-bottom: 1px solid #C9A35A; }
  table.styleB th {
    width: 100%;
    border-top: 1px solid #C9A35A;
    border-bottom: 0; }
  table.styleB td {
    border-top: 1px solid #BCBCBC;
    border-bottom: 0; }

@media screen and (min-width: 780px) {
  table[class^="style"] {
    width: 100%;
    display: table; }
    table[class^="style"] th {
      width: auto;
      font-weight: 600;
      vertical-align: top;
      text-align: left;
      padding: 20px 0;
      display: table-cell;
      border-top: 0; }
    table[class^="style"] td {
      width: auto;
      font-weight: 400;
      vertical-align: top;
      padding: 20px 0;
      display: table-cell; }

  table.styleA th {
    width: 10em;
    border-bottom: 1px solid #BCBCBC; }
  table.styleA td {
    border-bottom: 1px solid #BCBCBC; }
  table.styleA.history th {
    width: 14em; }
    table.styleA.history th div {
      width: 11em;
      display: flex;
      justify-content: space-between; }
  table.styleB th {
    width: 14em;
    border-top: 1px solid #C9A35A;
    border-bottom: 1px solid #C9A35A; }
  table.styleB td {
    border-top: 1px solid #BCBCBC;
    border-bottom: 1px solid #BCBCBC; } }
/* ==== List ==== */
ul.styleA {
  margin-bottom: 60px; }
  ul.styleA > li {
    align-items: baseline;
    text-indent: -22px;
    padding-left: 22px; }
    ul.styleA > li + li {
      margin-top: 1.5em; }
    ul.styleA > li > p::before {
      content: "";
      display: inline-block;
      width: 12px;
      height: 12px;
      background-color: #C9A35A;
      margin-right: 10px; }
    ul.styleA > li > p span {
      font-weight: 600; }

/* ==== Link ==== */
a {
  display: inline;
  color: #3E4148;
  text-decoration: none;
  position: relative; }
  a.ul {
    border-bottom: 1px solid #C9A35A;
    transition: 0.2s; }
    a.ul:hover {
      border-bottom: 1px solid transparent; }

.arrow_gl {
  display: inline-block;
  color: #3E4148;
  text-decoration: none;
  padding-left: 40px;
  position: relative;
  margin: 10px auto 10px 0; }
  .arrow_gl p {
    font-weight: 500; }
  .arrow_gl i {
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    font-style: normal;
    width: 20px;
    height: 5px;
    transition: 0.5s; }
    .arrow_gl i::before {
      content: "";
      width: 100%;
      height: 1px;
      background-color: #C9A35A;
      position: absolute;
      bottom: 0;
      left: 0; }
    .arrow_gl i::after {
      content: "";
      display: block;
      text-decoration: none;
      height: 6px;
      width: 6px;
      clip-path: polygon(0 0, 100% 100%, 50% 100%);
      background-color: #C9A35A;
      position: absolute;
      bottom: 0;
      right: 0; }
  .arrow_gl:hover i {
    width: 30px; }

/* ==== Form ==== */
form {
  /* チェックボックス */
  /* ラジオボタン */
  /* テキスト */
  /* テキストエリア */
  /* ボタン */
  /* セレクター */
  /* ベーススタイル適用 */
  /*select,
  ::picker(select) {
    appearance: base-select;
  }*/ }
  form span.hissu {
    display: inline-block;
    background-color: #D78080;
    color: #FFF;
    font-size: 0.8rem;
    line-height: 1;
    padding: 0.3rem 0.5rem;
    margin: 0 0.5rem 0 0; }
  form .form_wrap {
    width: 100%;
    margin: 2rem 0 4rem 0;
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch; }
    @media screen and (min-width: 780px) {
      form .form_wrap {
        grid-template-columns: 16rem auto; } }
    form .form_wrap dt {
      background-color: #F4F1E9;
      padding: 1rem;
      display: flex;
      align-items: center;
      justify-content: flex-start;
      border-top: 1px solid #FFF;
      position: relative; }
      form .form_wrap dt:first-child {
        border-top: 1px solid #F4F1E9; }
      form .form_wrap dt span.hissu {
        margin: 0;
        position: absolute;
        right: 1rem; }
    form .form_wrap dd {
      border-top: 1px solid #F4F1E9;
      border-right: 1px solid #F4F1E9;
      border-left: 1px solid #F4F1E9;
      padding: 0; }
      form .form_wrap dd:last-child {
        border-bottom: 1px solid #F4F1E9; }
      form .form_wrap dd span.hissu {
        margin-right: 0.5rem; }
      form .form_wrap dd span.error {
        font-weight: normal;
        font-size: 0.85rem;
        display: block;
        color: #D78080;
        line-height: 1.4; }
      form .form_wrap dd ul {
        margin: 0;
        padding: 0; }
        @media screen and (max-width: 1280px) {
          form .form_wrap dd ul {
            grid-template-columns: 100% !important; } }
        form .form_wrap dd ul li {
          margin: 0;
          padding: 0; }
      form .form_wrap dd .name_wrap {
        display: grid;
        align-items: center;
        grid-template-columns: 5rem auto 10rem; }
        form .form_wrap dd .name_wrap input {
          width: 45%; }
          form .form_wrap dd .name_wrap input + input {
            margin-left: 2%; }
      form .form_wrap dd .tel_wrap,
      form .form_wrap dd .post_wrap {
        display: grid;
        align-items: center;
        grid-template-columns: auto 10rem; }
        form .form_wrap dd .tel_wrap input,
        form .form_wrap dd .post_wrap input {
          width: 30%; }
      form .form_wrap dd .ad_wrap {
        display: grid;
        align-items: center;
        grid-template-columns: auto 10rem; }
        form .form_wrap dd .ad_wrap input {
          width: 50%; }
      form .form_wrap dd .full_wrap {
        display: grid;
        align-items: center;
        grid-template-columns: auto 10rem; }
        form .form_wrap dd .full_wrap input {
          width: 95%; }
        form .form_wrap dd .full_wrap textarea {
          width: 95%; }
      form .form_wrap dd .radio_wrap li div {
        display: inline-block;
        vertical-align: middle; }
        form .form_wrap dd .radio_wrap li div input {
          margin: auto;
          vertical-align: middle; }
        form .form_wrap dd .radio_wrap li div p {
          display: inline-block;
          vertical-align: middle;
          margin: auto auto auto 0.5rem; }
        form .form_wrap dd .radio_wrap li div + div {
          margin-left: 2rem; }
      form .form_wrap dd .check_wrap li div {
        display: block;
        vertical-align: middle; }
        @media screen and (min-width: 960px) {
          form .form_wrap dd .check_wrap li div {
            display: inline-block; } }
        form .form_wrap dd .check_wrap li div input {
          margin: auto;
          vertical-align: middle; }
        form .form_wrap dd .check_wrap li div p {
          display: inline-block;
          vertical-align: middle;
          margin: auto auto auto 0.5rem; }
        form .form_wrap dd .check_wrap li div + div {
          margin-left: 0; }
          @media screen and (min-width: 960px) {
            form .form_wrap dd .check_wrap li div + div {
              margin-left: 2rem; } }
      form .form_wrap dd .date_wrap li input[type=date] {
        display: inline-block;
        width: 15rem;
        font-size: 1rem;
        font-style: normal;
        padding: 0.7rem 1rem;
        margin-right: 1rem; }
      form .form_wrap dd .date_wrap li div {
        display: inline-block;
        vertical-align: middle;
        width: 8rem !important; }
      form .form_wrap dd button {
        display: inline-block;
        border: none;
        border-radius: 5px;
        padding: 0.2rem 0.5rem;
        margin: 10px 0 0 0;
        background-color: #C9A35A;
        color: white;
        text-align: center;
        text-decoration: none;
        font-size: 0.9rem;
        cursor: pointer; }
      form .form_wrap dd label {
        display: inline-block;
        margin: 0;
        padding: 1rem;
        width: 100%;
        max-width: 100%; }
        form .form_wrap dd label + label {
          border-top: 1px solid #F4F1E9; }
  form .flex_wrap {
    display: flex;
    align-items: flex-start;
    flex: 0;
    margin: auto; }
    form .flex_wrap div {
      text-align: left; }
    form .flex_wrap p {
      font-size: 0.9rem; }
      form .flex_wrap p.bold {
        font-weight: 600; }
      form .flex_wrap p + p {
        margin-top: 0.5rem; }
    form .flex_wrap a {
      text-decoration: underline; }
  form button.submit {
    margin: 2rem auto;
    display: block;
    color: #FFF;
    padding: 1.5rem;
    text-align: center;
    background-color: #DABB7F;
    width: 300px;
    max-width: 100%;
    border: 0; }
    form button.submit p {
      position: relative;
      z-index: 999;
      font-size: 20px;
      letter-spacing: 0.2em;
      font-family: "Cardo", "Zen Old Mincho", serif; }
    form button.submit::after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: #C9A35A;
      transition: 0.5s; }
    form button.submit:hover::after {
      height: 0; }
  form .error input {
    border: 1px solid #BE1616; }
  form input,
  form textarea {
    display: block;
    font-size: 1.2rem;
    line-height: 1.4;
    color: #555555;
    background-color: #FCFAF5;
    border: 1px solid #E0E0E0;
    margin: 0;
    padding: 0.3rem;
    outline: 0;
    border-radius: 0; }
  form input::placeholder,
  form textarea::placeholder {
    color: #999999;
    font-weight: 400;
    font-size: 1rem; }
  form input:focus,
  form textarea:focus {
    border: 1px solid #BBB !important; }
  form input:-webkit-autofill {
    box-shadow: 0 0 0 1000px white inset; }
  form input[type=checkbox] {
    -webkit-appearance: none;
    cursor: pointer;
    display: inline-block;
    vertical-align: middle;
    height: 25px;
    width: 25px;
    margin: 0 0.5rem 0 0;
    position: relative;
    border: 0;
    line-height: 0;
    z-index: 0;
    border: 1px solid #E0E0E0; }
    form input[type=checkbox] + p {
      display: inline-block;
      vertical-align: middle; }
  form input[type=checkbox]::after {
    content: "";
    border-right: 3px solid #555;
    border-bottom: 3px solid #555;
    display: block;
    height: 13px;
    width: 7px;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 5px;
    left: 0;
    margin: auto;
    opacity: 0;
    transform: rotate(45deg);
    z-index: 20; }
  form input[type=checkbox]:checked::after {
    opacity: 1; }
  form input[type=radio] {
    -webkit-appearance: none;
    cursor: pointer;
    display: inline-block;
    vertical-align: middle;
    height: 24px;
    width: 24px;
    position: relative;
    padding: 0;
    margin: 0 0.5rem 0 0;
    line-height: 0;
    z-index: 0;
    border-radius: 50%;
    border: 1px solid #E0E0E0; }
  form input[type=radio]::after {
    content: "";
    background: #555;
    border-radius: 50%;
    content: '';
    display: block;
    height: 14px;
    width: 14px;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    opacity: 0;
    z-index: 20; }
  form input[type=radio]:checked::after {
    opacity: 1; }
  form input[type=text] {
    width: 100%;
    max-width: 100% !important;
    margin: 0.3em 0;
    display: inline-block; }
  form input[type=email] {
    max-width: 100% !important;
    width: 100%;
    margin: 0.3em 0;
    display: inline-block; }
  form textarea {
    width: 100%;
    max-width: 100% !important;
    margin: 0.3em 0; }
  form input[type=button] {
    width: auto;
    max-width: 100% !important;
    margin: 0.3em 0;
    color: #FFF;
    font-size: 1em;
    font-weight: 400;
    padding: 0.5em 1.5em;
    margin-left: 0.8rem; }
  form .select {
    display: inline-block;
    vertical-align: middle;
    width: 12em;
    height: 3em;
    max-width: 100%;
    margin: 0.3em 0.5em 0.3em 0;
    position: relative;
    z-index: 0; }
    form .select::before {
      content: '';
      display: block;
      position: absolute;
      right: 1em;
      left: auto;
      top: 0;
      bottom: 0;
      margin: auto;
      z-index: 100 !important;
      width: 10px;
      height: 8px;
      background-color: #C9A35A;
      clip-path: polygon(0 0, 50% 100%, 100% 0); }
    form .select select {
      -webkit-appearance: none;
      position: absolute !important;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      margin: auto;
      z-index: 10;
      border-radius: 0;
      outline: none;
      padding: 0.5rem 1rem;
      border: 1px solid #E0E0E0;
      background-color: #FCFAF5;
      color: #000 !important;
      font-size: 1rem !important; }

h6.style {
  margin: 2rem 0 0 0;
  color: #B18023;
  font-weight: 600; }
  h6.style + p {
    margin: 2rem 0 0 0;
    font-size: 0.9rem; }

ul.img_link {
  margin: 0; }
  ul.img_link li a {
    display: block;
    position: relative;
    text-decoration: none; }
    ul.img_link li a h3 {
      display: inline-block;
      text-align: center;
      font-family: "Cardo", "Zen Old Mincho", serif;
      font-weight: 300;
      color: #FFF;
      background-color: #3E4148;
      position: absolute;
      left: 0 !important;
      top: 0 !important;
      margin: 0;
      z-index: 9999;
      padding: 0.8rem 1rem;
      font-size: 2rem;
      line-height: 1; }
      ul.img_link li a h3 span {
        display: block;
        padding: 0;
        margin: 0 0 5px 0;
        font-size: 1rem; }
    ul.img_link li a p {
      position: relative;
      padding-bottom: 18px;
      line-height: 1.6;
      margin-top: 1rem;
      font-size: 0.95rem; }
      ul.img_link li a p::after {
        content: "";
        display: block;
        height: 1px;
        width: 40px;
        background-color: #B6BECE;
        position: absolute;
        bottom: 0;
        left: 0;
        transition: 0.5s; }
    ul.img_link li a div {
      width: 100%;
      aspect-ratio: 3 / 2;
      overflow: hidden; }
      ul.img_link li a div img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        transition: 0.5s;
        transform: scale(1);
        margin: auto; }
    ul.img_link li a:hover p::after {
      width: 100%; }
    ul.img_link li a:hover div img {
      transform: scale(1.2); }

.frame {
  width: 100vw; }
  .frame img {
    width: 96%;
    margin: auto;
    aspect-ratio: 5 / 4;
    object-fit: cover;
    object-position: center bottom; }
    @media screen and (min-width: 780px) {
      .frame img {
        aspect-ratio: 2 / 1; } }
