@charset "UTF-8";
/* ---------------------------------------
  基本情報
-----------------------------------------*/
*, ::after, ::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

html {
  font-size: 62.5%;
  overflow-y: scroll;
}
@media screen and (max-width: 1440px) {
  html {
    font-size: 0.6944444444vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 2.6666666667vw;
  }
}

body {
  margin: 0 auto;
  color: #231815;
  font-family: "Zen Old Mincho", serif;
  font-weight: normal;
  line-height: 1.6;
  line-break: strict;
}

body, h1, h2, h3, h4, h5, h6, p, address,
ul, ol, li, dl, dt, dd,
table, th, td, img, form {
  border: none;
  font-weight: inherit;
  list-style-type: none;
  word-break: break-word;
}

input, button, textarea, select {
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: "Zen Old Mincho", serif;
  color: #231815;
  font-weight: normal;
}

textarea {
  resize: vertical;
}

select::-ms-expand {
  display: none;
}

a {
  text-decoration: none;
  color: inherit;
  outline: none;
}

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

/* responsive
--------------------------------*/
@media print, screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
.aligncenter {
  display: block;
  margin: 0 auto;
}

.alignright {
  float: right;
}

.alignleft {
  float: left;
}

.tac {
  text-align: center;
}

.tar {
  text-align: right;
}

.tal {
  text-align: left;
}

@media print, screen and (min-width: 768px) {
  .tel-link {
    pointer-events: none;
  }
}

.dib {
  display: inline-block;
}

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

.u-gothic {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
}

#loader_wrap {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  top: 0;
  background-color: #fff;
  z-index: 999999;
}

.loader {
  width: 400px;
  height: 48px;
  background: url(../img/common/logo.svg) no-repeat;
  opacity: 0;
  background-size: contain;
  background-position: center;
  animation: blink 3s infinite linear;
}
@media screen and (max-width: 767px) {
  .loader {
    width: 200px;
    height: 24px;
  }
}

@keyframes blink {
  50% {
    opacity: 1;
  }
}
.loaded {
  opacity: 0;
  visibility: hidden;
}

.header {
  z-index: 1000;
  width: 100%;
  padding: 2rem 4rem 0;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .header {
    padding: 1.6rem 3.2rem 0 2rem;
  }
}
.header__wrap {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .header__wrap {
    align-items: center;
  }
}
.header__logo {
  width: 33.6rem;
}
@media screen and (max-width: 767px) {
  .header__logo {
    width: 14rem;
  }
}
@media print, screen and (min-width: 768px) {
  .header__logo a {
    cursor: pointer;
    transition: opacity 0.3s;
  }
  .header__logo a:hover {
    opacity: 0.7;
  }
}
.header__lang {
  display: flex;
  font-size: 2rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .header__lang {
    font-size: 1.2rem;
  }
}
.header__lang .item + .item::before {
  content: "/";
  margin: 0 0.5rem;
  display: inline-block;
}
.header__lang .item a {
  color: #A6A6A6;
}
@media print, screen and (min-width: 768px) {
  .header__lang .item a {
    cursor: pointer;
    transition: opacity 0.3s;
  }
  .header__lang .item a:hover {
    opacity: 0.7;
  }
}
.header__lang .item.active a {
  pointer-events: none;
  color: inherit;
}

.footer {
  padding: 4.8rem 6rem;
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 4.8rem 2rem 8.2rem;
  }
}
.footer__wrap {
  max-width: 132rem;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .footer__wrap {
    flex-direction: column;
  }
}
.footer__box {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .footer__box {
    display: contents;
  }
}
.footer__logo {
  width: 33.6rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .footer__logo {
    margin-bottom: 0rem;
  }
}
@media print, screen and (min-width: 768px) {
  .footer__logo a {
    cursor: pointer;
    transition: opacity 0.3s;
  }
  .footer__logo a:hover {
    opacity: 0.7;
  }
}
.footer__copy {
  margin-top: auto;
}
@media screen and (max-width: 767px) {
  .footer__copy {
    margin-top: 1.6rem;
    order: 3;
  }
}
.footer__copy small {
  display: block;
  font-size: 1.2rem;
  line-height: 1;
}
.footer__list {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 1rem 4rem;
}
@media screen and (max-width: 767px) {
  .footer__list {
    margin-top: 2rem;
    display: block;
  }
}
.footer__item {
  min-width: 32rem;
}
@media screen and (max-width: 767px) {
  .footer__item {
    min-width: initial;
  }
}
.footer__item a {
  min-height: 6rem;
  border-bottom: 1px solid #B3B3B3;
  padding-right: 3rem;
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  background: url(../img/common/icon_blank.svg) no-repeat right center/1.5rem auto;
}
@media print, screen and (min-width: 768px) {
  .footer__item a {
    cursor: pointer;
    transition: opacity 0.3s;
  }
  .footer__item a:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .footer__item a {
    padding-right: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .footer--en .footer__item a {
    font-size: 1.4rem;
  }
}

.fixed {
  z-index: 1000;
  position: fixed;
  top: 6rem;
  right: 0;
}
@media screen and (max-width: 767px) {
  .fixed {
    width: 100%;
    top: auto;
    bottom: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .fixed__list {
    display: flex;
    justify-content: center;
    gap: 1rem;
  }
}
.fixed__item {
  min-width: 26.4rem;
}
@media screen and (max-width: 767px) {
  .fixed__item {
    min-width: 15.2rem;
  }
}
.fixed__item + .fixed__item {
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .fixed__item + .fixed__item {
    margin-top: 0;
  }
}
.fixed__item a {
  min-height: 5.3rem;
  border-radius: 99rem 0 0 99rem;
  padding: 0 4rem 0.1rem;
  display: flex;
  align-items: center;
  transition: background 0.3s;
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
  font-weight: 500;
  background-color: #D91A2A;
}
@media screen and (max-width: 767px) {
  .fixed__item a {
    min-height: 4.2rem;
    border-radius: 99rem;
    padding: 0 2rem 0.1rem;
    justify-content: center;
    font-size: 1.6rem;
    text-align: center;
  }
}
.fixed__item a:hover {
  background-color: #231815;
}
.fixed__item--type2 a {
  background-color: #231815;
}
.fixed__item--type2 a:hover {
  background-color: #D91A2A;
}
@media print, screen and (min-width: 768px) {
  .fixed--en .fixed__item {
    min-width: 24rem;
  }
  .fixed--en .fixed__item a {
    padding: 0 2rem 0.1rem;
  }
}

.modal {
  max-width: 84rem;
  width: 94.5%;
  margin: auto;
  border-radius: 2rem;
  padding: 8rem;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .modal {
    border-radius: 1rem;
    padding: 2rem;
  }
}
.modal__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.modal__ttl {
  font-size: 3.2rem;
  line-height: 1.4;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .modal__ttl {
    font-size: 2rem;
  }
}
.modal__close {
  cursor: pointer;
  width: 2rem;
  height: 2rem;
  position: relative;
}
@media print, screen and (min-width: 768px) {
  .modal__close {
    cursor: pointer;
    transition: opacity 0.3s;
  }
  .modal__close:hover {
    opacity: 0.7;
  }
}
.modal__close::before, .modal__close::after {
  content: "";
  width: 2.5rem;
  height: 0.2rem;
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: #000;
}
.modal__close::before {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.modal__close::after {
  transform: translate(-50%, -50%) rotate(45deg);
}
.modal__txt {
  margin-top: 0.8rem;
  padding-left: 1em;
  font-size: 1.2rem;
  line-height: 1.6;
  text-indent: -1em;
}
@media screen and (max-width: 767px) {
  .modal__txt {
    margin-top: 0.6rem;
    font-size: 0.8rem;
  }
}
.modal__list {
  margin-top: 1.6rem;
}
@media screen and (max-width: 767px) {
  .modal__list {
    border-top: 1px solid #BBB;
  }
}
.modal__item {
  border-bottom: 1px solid #BBB;
  padding: 3rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .modal__item {
    padding: 2rem 0;
    align-items: flex-end;
    gap: 1rem;
  }
}
.modal__item-box {
  flex: 1;
}
.modal__item-ttl {
  font-size: 2.8rem;
  line-height: 1.4;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .modal__item-ttl {
    margin-right: -10rem;
    font-size: 1.6rem;
  }
}
.modal__item-address {
  margin-top: 1.2rem;
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: 500;
  font-style: normal;
}
@media screen and (max-width: 767px) {
  .modal__item-address {
    font-size: 1.2rem;
    line-height: 1.4;
  }
}
@media screen and (max-width: 767px) {
  .modal__item-address--small {
    font-size: 1rem;
  }
}
.modal__item-btn {
  flex-shrink: 0;
}
.modal__item-btn a {
  width: 20rem;
  height: 5rem;
  border-radius: 99rem;
  padding-bottom: 0.1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background 0.3s;
  color: #fff;
  font-size: 1.8rem;
  line-height: 1.2;
  font-weight: 500;
  text-align: center;
  background-color: #D91A2A;
}
@media screen and (max-width: 767px) {
  .modal__item-btn a {
    min-width: 9.6rem;
    width: auto;
    min-height: 3.9rem;
    height: auto;
    padding: 0 2rem 0.1rem;
    font-size: 1.4rem;
  }
}
.modal__item-btn a:hover {
  background-color: #231815;
}
.modal--en .modal__item {
  padding: 2rem 0;
  align-items: flex-end;
}
@media screen and (max-width: 767px) {
  .modal--en .modal__item {
    padding: 1rem 0;
  }
}
@media screen and (max-width: 767px) {
  .modal--en .modal__item-ttl {
    margin-right: -3rem;
  }
}
@media screen and (max-width: 767px) {
  .modal--en .modal__item-btn a {
    min-width: 11.7rem;
    padding: 0.7rem 2rem 0.8rem;
  }
}

.mfp-wrap {
  overflow-y: auto;
}

.mfp-content {
  padding: 2rem 0;
}
