@font-face {
  /* フォント */
  font-family: 'Yumincho';
  src: url('/path/to/fonts/yumincho.woff2') format('woff2'),
    url('/path/to/fonts/yumincho.woff') format('woff'),
    url('/path/to/fonts/yumincho.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;

  /* フォント */
  /* font-family: 'Didot';
  src: url('/path/to/fonts/Didot.woff2') format('woff2'),
    url('/path/to/fonts/Didot.woff') format('woff'),
    url('/path/to/fonts/Didot.ttf') format('truetype');
  font-weight: normal;
  font-style: normal; */
}

/* フォントを使用する箇所で指定 */
html[lang="ja"] body {
  /* font-family: 'Yumincho', serif !important; */
  font-family: 'Noto Serif JP', "Crimson Text", serif !important;
  font-weight: 400 !important;
  margin: 0;
  padding: 0;
  letter-spacing: 0.1em;
}

html[lang="zh-Hans"] body {
  font-family: "Noto Serif SC", "Crimson Text", serif !important;
  font-weight: 400 !important;
}

p {
  margin: 0;
}

a {
  text-decoration: none !important;
}

/* 共通箇所 */
body {
  letter-spacing: 0.08em;
  font-feature-settings: "palt";
  line-height: 1.8;
}

main {
  padding-top: 60px;
  position: relative;
  background-color: #FCF9F4;
}

header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
}

.header a {
  display: flex;
}

#languageForm {
  margin-bottom: 0 !important;
}

.language-switch {
  position: relative;
  display: flex;
}

.language-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .4s;
  border-radius: 34px;
}

.slider:before {
  position: absolute;
  content: "";
  left: 4px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: #9E9170;
}

input:checked + .slider:before {
  transform: translateX(26px);
}

.language-label {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  font-weight: bold;
  color: #fff;
}

.language-label:nth-child(3) {
  left: 8px;
}

.language-label:nth-child(4) {
  right: 8px;
}

/* splide.js共通 */
.splide__list {
  height: auto;
}
.splide__track--nav>.splide__list>.splide__slide.is-active {
  border: none;
}
.splide__track--nav>.splide__list>.splide__slide {
  border: none;
}

.footer_signature {
  border-top: 1px solid grey;
  padding-block-start: 20px;
  color: lightgrey!important;
}
.footer_signature .footer_signature_flex {
  display: flex;
  gap: 20px;
}
.footer_signature h4,
.footer_signature p {
  margin: 0;
  font-size: 13px;
}
.footer_signature h4 {
  margin-block-end: 20px;
  font-size: 16px;
}

/* スマートフォン対応 */
@media (max-width: 767px) {
  .header {
    background: linear-gradient(to bottom, rgba(255, 255, 255, .8), rgba(255, 255, 255, 0));
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* height: 80px; */
    padding: 15px 20px;
  }

  .header a img {
    width: 120px;
  }

  .header span {
    font-size: 12px;
    /* border-top: 1px solid #9E9170; */
    /* border-bottom: 1px solid #9E9170; */
    color: #9E9170;
    padding: 6px 0;
    /* font-family: Didot; */
    font-style: italic;
    cursor: pointer;
  }

  #menuButton {
    border-top: 1px solid #9E9170;
    border-bottom: 1px solid #9E9170;
  }

  /* メニューモーダルのスタイル */
  .menu-modal {
    position: fixed;
    top: -300%;
    /* left: 0;
    width: 100%; */
    right: 0;
    width: 90%;
    /* height: 100%; */
    background-color: #19191B;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: top 0.5s ease;
    z-index: 1000;
    overflow-y: auto;
    border-radius: 0 0 0 20px;
    border-left: #9E9170 solid 3px;
    border-bottom: #9E9170 solid 3px;
  }

  .menu-modal p {
    font-size: 20px;
    margin-top: 20px;
  }

  .menus {
    /* max-height: 90vh;
    top: 50px;
    width: 100%;
    margin: 100px 20px 50px;
    max-width: 500px;
    padding: 0px 0 50px; */
    width: 100%;
    max-width: 500px;
    /* margin-top: 130px; */
    overflow: scroll;
    height: 500px;
  }

  .close-button {
    position: sticky;
    top: 0;
    left: 0;
    border: none;
    color: white;
    font-size: 14px;
    cursor: pointer;
    /* font-family: Didot; */
    font-style: italic;
    width: 100%;
    padding-block: 20px;
    background: #19191B;
    border-bottom: 1px solid #2A2A2A;
  }

  .menublock {
    border-bottom: 1px solid #2A2A2A;
    padding: 20px;
  }

  .menublock ._menu-title {
    color: #9E9170;
    font-size: 12px;
    /* font-family: Didot; */
    font-style: italic;
  }

  .special-btn a {
    color: #FFF;
  }

  .menudiv {
    display: flex;
    flex-direction: column;
    padding-block: 10px;
    width: 100%;
  }

  .menudiv p {
    font-size: 14px;
    color: #FFF;
    margin: 0;
  }

  .menudiv span {
    font-size: 12px;
    color: #9E9170;
    /* font-family: Didot; */
    font-style: normal;
  }

  .line {
    display: flex;
    border-bottom: 1px solid #2A2A2A;
    position: relative;
    font-size: 14px;
    width: 100%;
  }

  .line div {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 20px 0;
  }

  .line hr {
    position: absolute;
    left: 10px;
    height: 60px;
    border: 1px solid #2A2A2A;
    top: -8px;
    left: 50%;
  }

  /* モーダル表示時のスタイル */
  .menu-modal.show {
    top: 0;
  }

  /* モーダルのスタイル */
.modal {
  display: none; /* デフォルトで非表示 */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
  background-color: #fff;
  margin: 10% auto;
  padding: 20px;
  width: 80%;
  max-width: 500px;
}

.modal-dl img {
  width: 100%;
}

.modal-dl a {
  text-align: center;
  display: flex;
  justify-content: center;
  font-size: 14px;
  color: black;
  margin-block-start: 20px;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}


  .menufoot_fixed {
    position: sticky;
    bottom: 0;
    padding: 10px;
    display: flex;
    flex-direction: column;
    background: rgba(0 0 0 / 80%);
    gap: 10px;
    padding-block: 20px;
  }

  .menufoot_fixed-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }

  .menufoot_fixed p {
    margin: 0;
    font-size: 14px;
  }

  .menufoot_fixed span {
    font-size: 12px;
    color: #9E9170;
  }

  .menufoot_fixed-btn {
    display: flex;
    /* padding-block: 30px; */
    justify-content: space-between;
  }

  .menufoot_fixed-btn ._wechat {
    display: flex;
    width: 100%;
    justify-content: center;
    padding-block: 20px;
    border-right: 1px solid #2A2A2A;
    cursor: pointer;
  }

  .menufoot_fixed-btn ._wechat img {
    width: 100px;
  }

  .menufoot_fixed-btn ._tel {
    display: flex;
    width: 100%;
    justify-content: center;
    padding-block: 20px;
    color: darkgrey;
  }

  .footer {
    padding: 40px 0;
    background-color: #19191B;
    color: #fff;
    padding-block-end: 100px;
  }

  .footer-title {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    margin-block-end: 40px;
  }

  .footer-title .special_link {
    color: #9E9170;
  }

  .footer_sns_area {
    display: flex;
    width: 100%;
    position: relative;
    gap: 20px;
    justify-content: center;
    align-items: center;
  }

  .footer_sns_area img {
    width: 40px;
  }

  .footer-title p {
    margin-top: 42px;
    color: #9E9170;
    font-size: 14px;
  }

  .footer-menu {
    padding: 0 20px;
  }

  .footer-flex {
    width: 100%;
  }

  .footer-div {
    /* display: flex; */
    /* align-items: flex-start; */
    /* color: white; */
  }

  .footer-div .footer-div_title {
    width: 60px;
  }

  .footer-div span {
    font-size: 12px;
    color: #9E9170;
    margin: -5px 8px 0 0;
    letter-spacing: 0;
    /* font-family: Didot; */
  }

  .footer-div .menudiv {
    gap: 6px;
  }

  .footer-list {
    display: flex;
    border-top: 1px solid grey;
    padding-block: 20px;
    column-gap: 40px;
    padding-inline: 10px;
  }

  .right-area {
    display: flex;
    gap: 10px
  }

  .switch-area {
    display: flex;
    align-items: center;
  }

  .switch-jp {
    display: flex;
    align-items: center;
    padding: 0 5px;
    font-size: 12px;
  }

  .switch-zh {
    display: flex;
    align-items: center;
    padding: 0 5px;
    font-size: 12px;
  }

  .slider:before {
    height: 20px;
    width: 20px;
    bottom: 4px;
  }

  .language-switch {
    width: 60px;
    height: 28px;
  }

  .slider {
    left: 5;
  }

  .fixed-contact-btn {
    position: fixed;
    bottom: 10px;
    width: 100%;
    background-color: #ffffff00;
    /* box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1); */
    z-index: 1000;
    padding-inline: 10px;
}

.fixed-contact-btn .fixed-contact-btn_flex {
    display: flex;
    justify-content: center;
    align-items: center;
    /* gap: 20px; */
    background: rgba(0 0 0 / 90%);
    border-radius: 6px;
    box-shadow: 1px 1px 4px rgba(0 0 0 / 50%);
}

.fixed-contact-btn ._wechat {
  display: flex;
  width: 100%;
  justify-content: center;
  padding-block: 20px;
  border-right: 1px solid #2A2A2A;
  cursor: pointer;
}

.fixed-contact-btn ._wechat img {
  width: 100px;
}

.fixed-contact-btn ._line {
  padding-inline: 16px;
  padding-block: 18px;
  cursor: pointer;
}

.fixed-contact-btn ._line img {
  width: 30px;
}

.fixed-contact-btn ._tel {
  display: flex;
  width: 100%;
  justify-content: center;
  padding-block: 20px;
  border-left: 1px solid #2A2A2A;
  color: darkgrey;
}

.footer_signature .footer_signature_flex {
  flex-direction: column;
}

.footer_signature {
  padding-inline: 10px;
    text-align: center;
}

}

/* パソコン向け */
@media (min-width: 768px) {

  .header {
    background: linear-gradient(to bottom, rgba(255, 255, 255, .8), rgba(255, 255, 255, 0));
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
  }

  .header span {
    font-size: 18px;
    /* border-top: 1px solid #9E9170; */
    /* border-bottom: 1px solid #9E9170; */
    color: #9E9170;
    padding: 6px 0;
    /* font-family: Didot; */
    font-style: italic;
    cursor: pointer;
  }

  #menuButton {
    border-top: 1px solid #9E9170;
    border-bottom: 1px solid #9E9170;
  }

  /* メニューモーダルのスタイル */
  .menu-modal {
    position: fixed;
    top: -1000%;
    right: 0;
    width: 100%;
    /* height: 100%; */
    background-color: #19191B;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: top 0.5s ease;
    z-index: 1000;
    overflow-y: auto;
    max-width: 500px;
    border-radius: 0 0 0 20px;
    border-left: #9E9170 solid 3px;
    border-bottom: #9E9170 solid 3px;
  }

  .menu-modal p {
    font-size: 20px;
    margin-top: 20px;
  }

  .menus {
    /* max-height: 90vh;
    top: 50px;
    width: 100%;
    margin: 100px 20px 50px;
    max-width: 500px;
    padding: 0px 0 50px; */
    width: 100%;
    max-width: 500px;
    /* margin-top: 130px; */
    height: 500px;
    overflow: scroll;
  }

  .close-button {
    position: sticky;
    top: 0;
    left: 0;
    border: none;
    color: white;
    font-size: 14px;
    cursor: pointer;
    /* font-family: Didot; */
    font-style: italic;
    width: 100%;
    padding-block: 20px;
    background: #19191B;
    border-bottom: 1px solid #2A2A2A;
  }

  .menublock {
    border-bottom: 1px solid #2A2A2A;
    padding: 20px;
  }

  .menublock ._menu-title {
    color: #9E9170;
    font-size: 12px;
    /* font-family: Didot; */
    font-style: italic;
  }

  .special-btn a {
    color: #FFF;
  }

  .menudiv {
    display: flex;
    flex-direction: column;
    padding-block: 10px;
    width: 100%;
  }

  .menudiv p {
    font-size: 14px;
    color: #FFF;
    margin: 0;
  }

  .menudiv span {
    font-size: 12px;
    color: #9E9170;
    /* font-family: Didot; */
    font-style: normal;
  }

  .line {
    display: flex;
    border-bottom: 1px solid #2A2A2A;
    position: relative;
    font-size: 14px;
    width: 100%;
  }

  .line div {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 20px 0;
  }

  .line hr {
    position: absolute;
    left: 10px;
    height: 60px;
    border: 1px solid #2A2A2A;
    top: -8px;
    left: 50%;
  }

  /* モーダル表示時のスタイル */
  .menu-modal.show {
    top: 0;
  }

  .menufoot_fixed {
    position: sticky;
    bottom: 0;
    padding: 10px;
    display: flex;
    flex-direction: column;
    background: rgba(0 0 0 / 80%);
    gap: 10px;
    padding-block: 20px;
  }

  .menufoot_fixed-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }

  .menufoot_fixed p {
    margin: 0;
    font-size: 14px;
  }

  .menufoot_fixed span {
    font-size: 12px;
    color: #9E9170;
  }

  .menufoot_fixed-btn {
    display: flex;
    /* padding-block: 30px; */
    justify-content: space-between;
  }

  .menufoot_fixed-btn ._wechat {
    display: flex;
    width: 100%;
    justify-content: center;
    padding-block: 20px;
    border-right: 1px solid #2A2A2A;
    cursor: pointer;
  }

  .menufoot_fixed-btn ._wechat img {
    width: 100px;
  }

  .menufoot_fixed-btn ._tel {
    display: flex;
    width: 100%;
    justify-content: center;
    padding-block: 20px;
    color: darkgrey;
  }

  /* モーダルのスタイル */
  .modal {
    display: none; /* デフォルトで非表示 */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
  }

  .modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 20px;
    width: 80%;
    max-width: 500px;
  }

  .modal-dl img {
    width: 100%;
  }

  .modal-dl a {
    text-align: center;
    display: flex;
    justify-content: center;
    font-size: 14px;
    color: black;
    margin-block-start: 20px;
  }

  .close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
  }


  .footer {
    padding: 40px 0;
    background-color: #19191B;
    color: #fff;
    padding-block-end: 100px;
  }

  .footer-title {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    margin-block-end: 40px;
  }

  .footer-title .special_link {
    color: #9E9170;
  }

  .footer_sns_area {
    display: flex;
    width: 100%;
    position: relative;
    gap: 20px;
    justify-content: center;
    align-items: center;
  }

  .footer_sns_area img {
    width: 40px;
  }

  .footer-title p {
    margin-top: 42px;
    color: #9E9170;
    font-size: 18px;
  }

  .footer-menu {
    padding: 0 20px;
    max-width: 1200px;
    margin: auto;
  }

  .footer-flex {
    width: 100%;
    display: flex;
    border-top: 1px solid grey;
    justify-content: space-around;
    padding-block-start: 20px;
    padding-inline-start: 20px;
  }

  .footer-div {
    display: block;
    align-items: flex-start;
    color: white;
    margin-bottom: 20px;
  }

  .footer-div .footer-div_title {
    width: 60px;
  }

  .footer-div span {
    font-size: 16px;
    color: #9E9170;
    margin: -5px 8px 0 0;
    letter-spacing: 0;
    /* font-family: Didot; */
  }

  .footer-div .menudiv {
    gap: 8px;
  }

  .footer-list {
    display: contents;
    border-top: 1px solid white;
    width: 100%;
  }

  .right-area {
    display: flex;
    gap: 20px
  }

  .switch-area {
    display: flex;
    align-items: center;
  }

  .switch-jp {
    display: flex;
    align-items: center;
    padding: 0 15px;
  }

  .switch-zh {
    display: flex;
    align-items: center;
    padding: 0 15px;
  }

  .slider:before {
    height: 26px;
    width: 26px;
    bottom: 4px;
  }

  .language-switch {
    width: 60px;
    height: 34px;
  }

  .slider {
    left: 0;
  }

  .fixed-contact-btn {
    position: fixed;
    bottom: 10px;
    width: 100%;
    background-color: #ffffff00;
    /* box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1); */
    z-index: 1000;
    padding-inline: 10px;
}

.fixed-contact-btn .fixed-contact-btn_flex {
    display: flex;
    justify-content: center;
    align-items: center;
    /* gap: 20px; */
    background: rgba(0 0 0 / 90%);
    max-width: 400px;
    margin-inline: auto;
    border-radius: 6px;
    box-shadow: 1px 1px 4px rgba(0 0 0 / 50%);
}

.fixed-contact-btn ._wechat {
  display: flex;
  width: 100%;
  justify-content: center;
  padding-block: 20px;
  border-right: 1px solid #2A2A2A;
  cursor: pointer;
}

.fixed-contact-btn ._wechat img {
  width: 100px;
}

.fixed-contact-btn ._line {
  padding-inline: 16px;
  padding-block: 18px;
  cursor: pointer;
}

.fixed-contact-btn ._line img {
  width: 30px;
}

.fixed-contact-btn ._tel {
  display: flex;
  width: 100%;
  justify-content: center;
  padding-block: 20px;
  border-left: 1px solid #2A2A2A;
  color: darkgrey;
}

.footer_signature {
  padding-inline-start: 20px;
}
}
