@charset "UTF-8";
/*
====================================================================
 Fonts
====================================================================
*/
/* Noto Serif Bold */
@font-face {
  font-display: swap;
  font-family: "Noto Serif";
  font-style: normal;
  font-weight: 600;
  src: local(""), url("./fonts/noto-serif-jp-bold.woff2") format("woff2");
}
/* Noto Serif Medium */
@font-face {
  font-display: swap;
  font-family: "Noto Serif";
  font-style: normal;
  font-weight: 500;
  src: local(""), url("./fonts/noto-serif-jp-medium.woff2") format("woff2");
}
/* Cormorant Bold */
@font-face {
  font-display: swap;
  font-family: "Cormorant";
  font-style: normal;
  font-weight: 600;
  src: local(""), url("./fonts/cormorant-bold.woff2") format("woff2");
}
/* Cormorant Medium */
@font-face {
  font-display: swap;
  font-family: "Cormorant";
  font-style: normal;
  font-weight: 500;
  src: local(""), url("./fonts/cormorant-bold.woff2") format("woff2");
}
/* Bodoni Regular */
@font-face {
  font-display: swap;
  font-family: "Bodoni Moda";
  font-style: normal;
  font-weight: 400;
  src: local(""), url("./fonts/bodoni-moda-regular.woff2") format("woff2");
}
/*
====================================================================
 Colors
====================================================================
*/
/*
====================================================================
 Mixins
====================================================================
*/
/*
====================================================================
 BASIC
====================================================================
*/
html,
body {
  min-width: 1080px;
  min-height: 100%;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Yu Gothic", "游ゴシック", YuGothic, sans-serif;
  text-rendering: optimizeLegibility;
  vertical-align: baseline;
  font-size: 18px;
  line-height: 1.75;
  position: relative;
  color: #333;
}

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

img {
  max-width: 100%;
  vertical-align: bottom;
}

em {
  font-style: normal;
  font-weight: 800;
}

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  color: #000;
  text-decoration: none;
}

button {
  transition: all 0.3s;
  cursor: pointer;
  line-height: 1;
  -webkit-tap-highlight-color: transparent;
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  transform: scale(1);
}
button:active, button:focus {
  transform: none !important;
}

small {
  font-size: 70%;
}

sup {
  font-size: 50%;
}

@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
/*
====================================================================
 HEADER
====================================================================
*/
header {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  transition: background-color 0.5s;
}
header.visible {
  background-color: white;
}
header .logo {
  width: -moz-fit-content;
  width: fit-content;
  height: 68px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/*
====================================================================
 GLOBAL NAVIGATION
====================================================================
*/
.global-navigation {
  display: grid;
  grid-template-columns: repeat(5, 154px) 168px;
  padding-right: 14px;
}
.global-navigation__item {
  height: 68px;
  display: flex;
  align-items: center;
  transition: opacity 0.3s linear;
}
.global-navigation__item span {
  display: block;
  text-align: center;
  font-size: 16px;
}
.global-navigation__item span.en {
  font-family: "Bodini 72", "Bodini MT", "Bodoni Moda", serif;
  font-weight: 500;
  transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}
.global-navigation__item span.jp {
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
  transform: translateY(100%) translateX(-50%);
  transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}
.global-navigation__item a {
  position: relative;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  height: 100%;
  white-space: nowrap;
  color: #000;
}
.global-navigation__item a:hover span.en {
  opacity: 0;
  transform: translateY(-100%);
}
.global-navigation__item a:hover span.jp {
  opacity: 1;
  transform: translate(-50%, -50%);
}
.global-navigation__item--contact {
  display: flex;
  align-items: center;
}
.global-navigation__item--contact a {
  display: block;
  background-color: #000;
  border: 1px solid #000;
  position: relative;
  width: 100%;
  transition: background-color 0.5s;
}
.global-navigation__item--contact a:hover {
  background-color: white;
}
.global-navigation__item--contact a:hover span.en {
  opacity: 0;
}
.global-navigation__item--contact a:hover span.jp {
  opacity: 1;
}
.global-navigation__item--contact span {
  display: block;
  font-size: 16px;
}
.global-navigation__item--contact span.en {
  color: white;
  text-align: center;
  font-family: "Bodini 72", "Bodini MT", "Bodoni Moda", serif;
  font-weight: 500;
  transition: opacity 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
.global-navigation__item--contact span.jp {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  padding-top: 2px;
  transition: opacity 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  color: #000;
}

/*
====================================================================
 COMMON
====================================================================
*/
main {
  width: 100%;
  overflow-x: hidden;
}

section {
  padding: 80px 0;
}
section .container {
  width: 1000px;
  margin: 0 auto;
  position: relative;
}

h2 {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 60px auto;
  position: relative;
}
h2::after {
  content: "";
  display: block;
  position: absolute;
  width: 40px;
  height: 3px;
  left: calc(50% - 20px);
  bottom: -26px;
  background-color: #c9a412;
  transform: scale(0);
}
h2 span {
  display: block;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s, transform 1s;
}
h2 span.en {
  margin-bottom: 0;
}
h2 span.jp {
  font-family: "Hiragino Mincho ProN", "Noto Serif", serif;
  font-weight: 550;
  font-size: 40px;
  padding: 0 30px;
  line-height: 1.2;
}
.in-viewport h2 span {
  opacity: 1;
  transform: translateY(0);
}
.in-viewport h2::after {
  animation: spread 0.5s ease-out forwards;
  animation-delay: 0.8s;
}
@keyframes spread {
  0% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}

.button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 252px;
  height: 65px;
  position: relative;
  font-family: "Cormorant";
  border: 1px solid #333;
  background-color: white;
  transition: background-color 0.5s;
}
.button__text {
  display: block;
  font-size: 20px;
  transition: color 0.5s;
}
.button__icon {
  position: absolute;
}
.button__icon--arrow {
  right: 10px;
  top: 15px;
  height: 35px;
  width: 65px;
  text-align: right;
}
.button__icon--head {
  left: 14px;
  top: 21px;
  height: 23px;
  width: 23px;
}
.button__icon svg {
  height: 100%;
  fill: #333;
  transition: fill 0.5s;
  vertical-align: top;
}
.button:hover {
  background-color: #333;
}
.button:hover .button__text {
  color: white;
}
.button:hover .button__icon svg {
  fill: white;
}

.nowrap {
  white-space: nowrap;
}

/*
====================================================================
 PAGES
====================================================================
*/
.page-title {
  position: relative;
}
.page-title h1 {
  display: flex;
  flex-direction: column;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  align-items: center;
  justify-content: center;
}
.page-title h1 span {
  display: block;
  font-family: "Hiragino Mincho ProN", "Noto Serif", serif;
  font-weight: 550;
  font-size: 56px;
  line-height: 1.5;
}
.page-title .background {
  width: 100%;
  height: 400px;
  background: url(../images/common/bg_page_title.png) center center/cover no-repeat;
}

.breadcrumbs {
  padding: 0 15px;
  font-family: "Hiragino Mincho ProN", "Noto Serif", serif;
}
.breadcrumbs ul {
  display: flex;
  align-items: center;
}
.breadcrumbs ul li {
  font-size: 14px;
  padding: 5px 0 3px 0;
}
.breadcrumbs ul li a {
  display: block;
}
.breadcrumbs ul li a::after {
  content: "＞";
}

/*
====================================================================
 CONTENTS
====================================================================
*/
.common-section-contents {
  padding-top: 120px;
}
.common-section-contents .container {
  display: grid;
  grid-template-columns: 318px 1fr;
}

.contents-list {
  border-bottom: 1px solid black;
}
.contents-list__item {
  border-top: 1px solid black;
}
.contents-list__item a {
  display: block;
  padding: 23px 0;
  background: url(../images/common/icon_btn_arrow.svg) right center/auto 40px no-repeat;
  transition: background-image 0.5s, color 0.5s;
}
.contents-list__item a:hover {
  color: #c9a412;
  background: url(../images/common/icon_btn_arrow_over.svg) right center/auto 40px no-repeat;
  transition: background-image 0.5s, color 0.5s;
}

.common-section-access {
  padding-bottom: 0;
}
.common-section-access p {
  text-align: center;
  font-weight: 600;
}

.map {
  margin-top: 40px;
}

/*
====================================================================
 FOOTER
====================================================================
*/
.footer-container {
  position: relative;
  display: grid;
  grid-template-columns: 490px 1fr;
}
.footer-navigation {
  display: grid;
  width: 730px;
  grid-auto-flow: column;
  grid-template-columns: repeat(4, minmax(162px, auto));
  grid-template-rows: repeat(4, auto);
  gap: 20px;
  padding: 80px 0 54px 0;
}
.footer-navigation__item:first-child {
  grid-row: 1/5;
}
.footer-navigation__item a {
  display: grid;
  grid-template-columns: 1fr 32px;
  align-items: center;
  -moz-column-gap: 8px;
       column-gap: 8px;
}
.footer-navigation__item a span {
  font-size: 16px;
  padding-top: 3px;
}
.footer-navigation__item a::after {
  content: "";
  display: block;
  position: static;
  width: 32px;
  height: 32px;
  background: transparent url(../images/common/icon_arrow_plain.svg) center center/16px no-repeat;
  border: 1px solid #333;
  border-radius: 50%;
  transition: background-image 0.5s, background-color 0.5s;
}
.footer-navigation__item a:hover::after {
  background-color: #333;
  background-image: url(../images/common/icon_arrow_plain_white.svg);
}
.footer-navigation__block {
  width: 100%;
  margin-top: 80px;
  background-color: #f8f5f3;
  order: 2;
  padding-left: 80px;
}
.footer-logo__block {
  order: 1;
  background-color: #333;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 80px 40px 40px 40px;
}
.footer-information {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
}
.footer-sns {
  display: flex;
  -moz-column-gap: 40px;
       column-gap: 40px;
}

.copyright {
  padding: 38px 0;
  text-align: right;
  font-size: 14px;
  border-top: 1px solid #333;
  width: calc(100% - 100px);
  min-width: 730px;
}

/*----------------------------------------------------------------*/
@media (max-width: 767px) {
  /*----------------------------------------------------------------*/
  /*
  ====================================================================
   SP / BASIC
  ====================================================================
  */
  html,
  body {
    min-width: initial;
  }
  body {
    -webkit-text-size-adjust: 100%;
  }
  .nowrap {
    white-space: normal;
  }
  .pc {
    display: none !important;
  }
  /*
  ====================================================================
   SP / HEADER
  ====================================================================
  */
  header .logo {
    height: 60px;
    padding: 0 15px;
    position: relative;
    z-index: 99;
  }
  header .logo img {
    height: 41.5px;
  }
  header.is-open {
    background-color: white;
  }
  header button {
    position: relative;
    z-index: 99;
    width: 60px;
    height: 60px;
    background: black url(../images/sp/common/icon_menu_close.svg) center center/60px 60px no-repeat;
  }
  header button img {
    transition: opacity 0.5s;
  }
  header button.is-active img {
    opacity: 0;
  }
  header nav {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    height: calc(100vh - 60px);
    background: black;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.5s, visibility 0.5s;
  }
  header nav.is-active {
    visibility: visible;
    opacity: 1;
  }
  /*
  ====================================================================
   SP / GLOBAL NAVIGATION
  ====================================================================
  */
  .global-navigation {
    display: block;
    padding: 0;
  }
  .global-navigation__item {
    border-bottom: 1px solid white;
    height: 52px;
  }
  .global-navigation__item span {
    display: inline-block;
    text-align: left;
    color: white;
  }
  .global-navigation__item span.jp {
    position: static;
    opacity: 1;
    transform: none;
  }
  .global-navigation__item span.jp::before {
    content: "/";
    margin: 0 0.25em;
  }
  .global-navigation__item a {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    padding: 0 15px;
    width: 100%;
  }
  .global-navigation__item a::after {
    content: "";
    display: block;
    position: absolute;
    width: 25px;
    height: 25px;
    background: transparent url(../images/common/icon_arrow_plain_white.svg) center center/auto 6px no-repeat;
    border: 1px solid white;
    border-radius: 50%;
    right: 15px;
    top: calc(50% - 12.5px);
  }
  .global-navigation__item a:hover span.en,
  .global-navigation__item a:hover span.jp {
    opacity: 1;
    transform: none;
  }
  .global-navigation__item--contact {
    padding: 25px 15px;
  }
  .global-navigation__item--contact a {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    border: none;
    height: 50px;
  }
  .global-navigation__item--contact a:hover {
    background-color: white;
  }
  .global-navigation__item--contact a:hover span.en,
  .global-navigation__item--contact a:hover span.jp {
    opacity: 1;
  }
  .global-navigation__item--contact a::after {
    content: "";
    display: block;
    position: absolute;
    width: 25px;
    height: 25px;
    background: transparent url(../images/common/icon_arrow_plain.svg) center center/auto 6px no-repeat;
    border: 1px solid black;
    border-radius: 50%;
    right: 15px;
    top: calc(50% - 12.5px);
  }
  .global-navigation__item--contact span {
    display: inline-block;
    font-size: 16px;
  }
  .global-navigation__item--contact span.en {
    color: #000;
  }
  .global-navigation__item--contact span.jp {
    position: static;
    transform: none;
    opacity: 1;
    color: #000;
  }
  .global-navigation__item--contact span.jp::before {
    content: "/";
    margin: 0 0.25em;
  }
  /*
  ====================================================================
   SP / COMMON
  ====================================================================
  */
  section {
    padding: 40px 0;
    scroll-margin-top: 50px;
  }
  section .container {
    width: 100%;
    padding: 0 15px;
  }
  h2 {
    margin: 0 auto 65px auto;
  }
  h2::after {
    width: 30px;
    left: calc(50% - 15px);
    bottom: -23px;
  }
  h2 span.en img {
    height: 22px;
  }
  h2 span.jp {
    text-align: center;
    font-size: 30px;
    padding: 0 25px;
  }
  .button {
    width: 100%;
    height: 64px;
    z-index: 1;
  }
  .button__text {
    font-size: 16px;
  }
  .button__icon--arrow {
    right: 7px;
    top: 50%;
    transform: translateY(-50%);
    height: 36px;
    width: 30%;
  }
  /*
  ====================================================================
   SP / PAGES
  ====================================================================
  */
  .page-title h1 span {
    font-size: 30px;
  }
  .page-title h1 span.en {
    transform: scale(0.5);
    transform-origin: bottom;
  }
  .page-title .background {
    height: auto;
    background: none;
  }
  /*
  ====================================================================
   SP / CONTENTS
  ====================================================================
  */
  .common-section-contents {
    padding-top: 90px;
  }
  .common-section-contents .container {
    display: block;
  }
  .contents-list__item a {
    padding: 24px 0;
    background-size: auto 36px;
    font-size: 18px;
  }
  .contents-list__item a:hover {
    color: #c9a412;
    background: url(../images/common/icon_btn_arrow_over.svg) right center/auto 40px no-repeat;
    transition: background-image 0.5s, color 0.5s;
  }
  .map {
    width: 100%;
    padding-bottom: 67%;
    position: relative;
  }
  .map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  /*
  ====================================================================
   SP / FOOTER
  ====================================================================
  */
  .btn-scroll {
    display: none;
  }
  .footer-container {
    display: block;
  }
  .footer-navigation {
    display: block;
    width: 100%;
    padding: 40px 0;
  }
  .footer-navigation__item {
    margin-top: 20px;
  }
  .footer-navigation__item:first-child {
    margin-top: 0;
  }
  .footer-navigation__item a {
    display: grid;
    grid-template-columns: 1fr 30px;
  }
  .footer-navigation__item a::after {
    width: 30px;
    height: 30px;
    background-size: 15px auto;
  }
  .footer-navigation__block {
    margin-top: 0;
    padding: 0 15px;
  }
  .footer-logo__block {
    padding: 40px 15px 0 15px;
  }
  .footer-information {
    align-items: center;
  }
  .footer-information a {
    width: 100%;
    padding: 0 25px;
  }
  .footer-information img {
    width: 100%;
  }
  .footer-sns {
    display: flex;
    -moz-column-gap: 38px;
         column-gap: 38px;
    margin-top: 40px;
  }
  .copyright {
    width: 100%;
    margin-top: 34px;
    padding: 18px 0;
    text-align: center;
    border-top: 1px solid white;
    color: white;
  }
  /*----------------------------------------------------------------*/
}
/*----------------------------------------------------------------*/
/*----------------------------------------------------------------*/
@media (min-width: 768px) and (max-width: 1080px) {
  /*----------------------------------------------------------------*/
  .global-navigation {
    grid-template-columns: repeat(5, fit-content(100%)) 168px;
    -moz-column-gap: 60px;
         column-gap: 60px;
  }
  .footer-navigation__block {
    padding-left: 40px;
  }
  /*----------------------------------------------------------------*/
}
/*----------------------------------------------------------------*/
/*----------------------------------------------------------------*/
@media (min-width: 768px) and (max-width: 1260px) {
  /*----------------------------------------------------------------*/
  .footer-container {
    grid-template-columns: 37.7% 62.3%;
    width: 100%;
  }
  .footer-navigation {
    padding-top: 54px;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
  }
  .footer-navigation__block {
    padding-right: 40px;
    margin-top: 60px;
  }
  .footer-navigation__item a {
    -moz-column-gap: 0;
         column-gap: 0;
  }
  .footer-navigation__item:first-child {
    grid-row: unset;
  }
  .footer-logo__block {
    padding-top: 54px;
  }
  .copyright {
    width: 100%;
    min-width: unset;
  }
  /*----------------------------------------------------------------*/
}
/*----------------------------------------------------------------*//*# sourceMappingURL=common.css.map */