@charset "UTF-8";
html {
  overflow-x: hidden;
  box-sizing: border-box;
  width: 100%;
  margin: 0;
}
html body {
  font-family: "Noto Sans JP";
  position: relative;
  overflow-x: hidden;
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  color: #0F0F0F;
}
html body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.8s ease;
}
html body header {
  position: fixed;
  top: 0;
  z-index: 10;
  width: 100%;
  background-color: #fff;
  padding-left: 3.75rem;
}
@media screen and (max-width: 1199px) {
  html body header {
    padding-left: 2rem;
  }
}
@media screen and (max-width: 991px) {
  html body header {
    padding-left: 0;
  }
}
html body header .header-inner {
  display: flex;
  align-items: center;
  height: 90px;
}
@media screen and (max-width: 1199px) {
  html body header .header-inner {
    height: 70px;
    width: 100%;
    position: relative;
  }
}
@media screen and (max-width: 991px) {
  html body header .header-inner .logo-wrapper {
    position: absolute;
    margin-left: 0;
    margin-right: 0;
    left: 0;
    right: 0;
    text-align: center;
  }
}
html body header .header-inner .logo-wrapper a {
  display: inline-block;
}
html body header .header-inner .logo-wrapper img {
  width: 249px;
}
html body header .header-inner > p {
  font-family: "ten-mincho", serif;
  font-size: 32px;
  font-weight: 400;
  margin: auto;
}
@media screen and (max-width: 1600px) {
  html body header .header-inner > p {
    font-size: 24px;
    font-size: 1.5vw;
  }
}
@media screen and (max-width: 991px) {
  html body header .header-inner > p {
    display: none;
  }
}
html body header .header-inner .pc-nav {
  margin-left: auto;
}
@media screen and (max-width: 1199px) {
  html body header .header-inner .pc-nav {
    display: none;
  }
}
html body header .header-inner .pc-nav figure {
  display: none;
}
html body header .header-inner .pc-nav nav ul {
  display: flex;
  gap: 50px;
  align-items: center;
  padding-right: 40px;
}
@media screen and (max-width: 1600px) {
  html body header .header-inner .pc-nav nav ul {
    gap: 50px;
    gap: 3.125vw;
  }
}
html body header .header-inner .pc-nav nav ul li {
  text-align: center;
  font-family: "ten-mincho", serif;
  font-size: 22px;
  line-height: 1.5;
  font-weight: 400;
  display: inline-block;
}
@media screen and (max-width: 1600px) {
  html body header .header-inner .pc-nav nav ul li {
    font-size: 16px;
    font-size: 1vw;
  }
}
html body header .header-inner .pc-nav nav ul li a {
  transition: 0.3s all ease;
}
html body header .header-inner .pc-nav nav ul li a:hover {
  opacity: 0.6;
}
html body header .header-inner .pc-nav nav ul li span {
  display: block;
  font-family: futura-pt, sans-serif;
  font-size: 12px;
  font-weight: 700;
}
@media screen and (max-width: 1600px) {
  html body header .header-inner .pc-nav nav ul li span {
    font-size: 12px;
    font-size: 0.75vw;
  }
}
html body header .header-inner .pc-nav nav ul li.drop-menu {
  position: relative;
}
html body header .header-inner .pc-nav nav ul li.drop-menu > a {
  position: relative;
  z-index: 0;
}
html body header .header-inner .pc-nav nav ul li.drop-menu ul {
  position: absolute;
  top: 100%;
  left: -75%;
  transform: scaleY(0);
  /* ドロップダウンメニューの非表示 */
  transform-origin: center top;
  /* 変形を適応する基準を設定 */
  transition: transform 0.3s;
  /* 表示の変化をアニメーション化 */
  background: rgba(0, 0, 0, 0.47);
  flex-direction: column;
  align-items: flex-start;
  width: max-content;
  padding: 30px 12px;
  border-top: 10px solid #fff;
  gap: 10px;
}
html body header .header-inner .pc-nav nav ul li.drop-menu ul li {
  width: 100%;
}
html body header .header-inner .pc-nav nav ul li.drop-menu ul li a {
  padding: 1em;
  text-align: center;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 22px;
  line-height: 2.0454545455;
}
@media screen and (max-width: 1600px) {
  html body header .header-inner .pc-nav nav ul li.drop-menu ul li a {
    font-size: 16px;
    font-size: 1vw;
  }
}
html body header .header-inner .pc-nav nav ul li.drop-menu:hover ul {
  transform: scaleY(1);
  /* ドロップダウンメニューの表示 */
}
html body header .header-inner .menu-button-wrapper {
  margin-left: auto;
  margin-right: 10px;
  z-index: 11;
  display: none;
}
@media screen and (max-width: 1199px) {
  html body header .header-inner .menu-button-wrapper {
    display: block;
  }
}
html body header .header-inner .menu-button-wrapper #menuButton {
  color: #fff;
  text-align: center;
  line-height: 1;
  display: inline-block;
  padding: 0;
  width: 28px;
  height: 28px;
  z-index: 1;
  position: relative;
  transition: 0.4s;
  cursor: pointer;
}
html body header .header-inner .menu-button-wrapper #menuButton span {
  display: inline-block;
  position: relative;
  width: 100%;
  height: 1px;
  background-color: #454646;
  transition: 0.4s;
}
html body header .header-inner .menu-button-wrapper #menuButton span::before {
  content: "";
  position: absolute;
  top: -8px;
  right: 0;
  width: 100%;
  height: 1px;
  background-color: #454646;
  opacity: 1;
  transition: 0.4s;
}
html body header .header-inner .menu-button-wrapper #menuButton span::after {
  content: "";
  position: absolute;
  bottom: -8px;
  right: 0;
  width: 100%;
  height: 1px;
  background-color: #454646;
  transition: 0.4s;
}
html body header .header-inner .menu-button-wrapper {
  /* #menu-open */
}
html body header .header-inner .menu-button-wrapper.menu-open #menuButton span {
  animation: none;
  width: 18px;
  transition: 0.4s;
  transform: translate(0, 2px) rotate(45deg);
}
html body header .header-inner .menu-button-wrapper.menu-open #menuButton span::before {
  transition: 0.4s;
  opacity: 0;
}
html body header .header-inner .menu-button-wrapper.menu-open #menuButton span::after {
  animation: none;
  width: 18px;
  transition: 0.4s;
  transform: translate(0px, -8px) rotate(90deg);
}
html body header .header-inner .sp-nav {
  position: fixed;
  right: 0;
  top: 0;
  height: 100%;
  width: 0;
  transition: 0.4s ease-in;
  z-index: 10;
  opacity: 0;
}
html body header .header-inner .sp-nav nav {
  height: 100%;
  background-color: #fff;
  padding: 0;
  overflow-y: scroll;
}
html body header .header-inner .sp-nav nav figure {
  width: 100%;
  height: 70px;
  display: grid;
  place-content: center;
  border-bottom: 1px solid #707070;
}
html body header .header-inner .sp-nav nav figure img {
  width: 249px;
}
html body header .header-inner .sp-nav nav ul li {
  text-align: center;
  padding: 0;
  opacity: 0;
  transition: 0.6s;
  font-family: "ten-mincho", serif;
  font-weight: 400;
  font-size: 22px;
  letter-spacing: 0.1em;
  border-bottom: 1px solid #707070;
}
html body header .header-inner .sp-nav nav ul li span {
  display: block;
  font-family: futura-pt, sans-serif;
  font-weight: 700;
  font-size: 12px;
  margin-top: 5px;
}
html body header .header-inner .sp-nav nav ul li a {
  display: block;
  padding: 20px 0 20px;
}
html body header .header-inner .sp-nav nav ul li.drop-menu.active ul {
  display: block;
}
html body header .header-inner .sp-nav nav ul li.drop-menu ul {
  display: none;
}
html body header .header-inner .sp-nav nav ul li.drop-menu li {
  font-size: 20px;
}
html body header .header-inner .sp-nav nav ul li.drop-menu li:not(:last-child) {
  border-bottom: 1px solid #FAF5F5;
}
html body header .header-inner .sp-nav nav ul li.drop-menu li a {
  background-color: #777777;
  color: #FCF7F7;
  padding: 30px 0;
  font-family: "Noto Sans JP", sans-serif;
}
html body header .header-inner .sp-nav.menu-open {
  opacity: 1;
  width: 100%;
  height: 100%;
  transition: 0.4s ease-in;
}
html body header .header-inner .sp-nav.menu-open nav ul li {
  opacity: 1;
  transition: 0.6s;
}
html body main {
  padding-top: 90px;
}
@media screen and (max-width: 1199px) {
  html body main {
    padding-top: 70px;
  }
}
html body footer {
  background-color: #462004;
  padding: 35px 0 0;
}
@media screen and (max-width: 767px) {
  html body footer img {
    width: 220px;
  }
}
html body footer .copyright {
  background-color: #000;
  text-align: center;
  margin-top: 30px;
  padding: 20px 1rem;
  color: #fff;
  font-size: 12px;
}
@media screen and (max-width: 767px) {
  html body footer .copyright {
    padding: 10px 1rem;
  }
}
html body .subvisual {
  background-color: #FBF2E2;
  height: 250px;
  display: grid;
  place-content: center;
}
@media screen and (max-width: 1400px) {
  html body .subvisual {
    height: 250px;
    height: 17.8571428571vw;
  }
}
@media screen and (max-width: 767px) {
  html body .subvisual {
    height: 90px;
  }
}
html body .subvisual h1 {
  color: #0F0F0F;
  text-align: center;
  font-family: "ten-mincho", serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 1.475;
  letter-spacing: 0;
}
@media screen and (max-width: 1400px) {
  html body .subvisual h1 {
    font-size: 40px;
    font-size: 2.8571428571vw;
  }
}
@media screen and (max-width: 767px) {
  html body .subvisual h1 {
    font-size: 23px;
  }
}
html body .subvisual h1 span {
  display: block;
  color: #2F2D2C;
  font-family: futura-pt, sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.3333333333;
}
@media screen and (max-width: 1400px) {
  html body .subvisual h1 span {
    font-size: 24px;
    font-size: 1.7142857143vw;
  }
}
@media screen and (max-width: 767px) {
  html body .subvisual h1 span {
    font-size: 16px;
  }
}
html body .contents-breadcrumb {
  margin-top: 1rem;
  line-height: 1.5;
}
html body .contents-breadcrumb.single-breadcrumb {
  margin-top: 1rem;
}
html body .contents-breadcrumb .breadcrumb a {
  border-bottom: 1px solid #555;
}
html body .contents-breadcrumb .breadcrumb span.bread-list {
  padding: 0 0.625rem;
}
html body .contents-breadcrumb .breadcrumb span.bread-nolink {
  padding: 0 0.625rem;
}
html body .contents-breadcrumb .breadcrumb span.current-item {
  padding: 0 0.625rem;
}
html body .pagetop {
  position: fixed;
  z-index: 11;
  right: 20px;
  bottom: 60px;
  display: none;
  width: 55px;
  height: 55px;
}
@media screen and (max-width: 575px) {
  html body .pagetop {
    width: 40px;
    height: 40px;
    right: 15px;
    bottom: 40px;
  }
}
html body .pagetop::after {
  content: "";
  position: absolute;
  top: 14px;
  left: calc(50% - 8px);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 8px 12px 8px;
  border-color: transparent transparent #fff transparent;
  z-index: -1;
}
@media screen and (max-width: 991px) {
  html body .pagetop::after {
    top: 10px;
    left: calc(50% - 6px);
    border-width: 0 6px 10px 6px;
  }
}
html body .pagetop span {
  color: #fff;
  font-size: 0.75rem;
  display: inline-block;
}
@media screen and (max-width: 991px) {
  html body .pagetop span {
    font-size: 0.625rem;
  }
}
html body .contents {
  color: #0F0F0F;
  font-family: "ten-mincho", serif;
  padding: 4rem 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  html body .contents {
    padding: 3.75rem 0;
  }
}
html body .contents h2 {
  text-align: center;
  font-family: "ten-mincho", serif;
  font-size: 34px;
  line-height: 1.4705882353;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  html body .contents h2 {
    font-size: 23px;
    margin-bottom: 30px;
  }
}
html body .contents h2 span {
  display: block;
  font-family: futura-pt, sans-serif;
  font-size: 24px;
  line-height: 1.3333333333;
}
@media screen and (max-width: 767px) {
  html body .contents h2 span {
    font-size: 16px;
  }
}
html body .contents h3.h3-ttl-1 {
  text-align: center;
  font-family: "ten-mincho", serif;
  font-weight: 400;
  font-size: 34px;
  line-height: 1.4705882353;
  margin-bottom: 75px;
}
@media screen and (max-width: 767px) {
  html body .contents h3.h3-ttl-1 {
    font-size: 23px;
    margin-bottom: 60px;
  }
}
html body .contents h3.h3-ttl-1 span {
  display: block;
  font-family: futura-pt, sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.3333333333;
}
@media screen and (max-width: 767px) {
  html body .contents h3.h3-ttl-1 span {
    font-size: 16px;
  }
}
html body .contents h3.h3-ttl-2 {
  text-align: center;
  font-family: "ten-mincho", serif;
  font-weight: 400;
  font-size: 45px;
  line-height: 1.4888888889;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  html body .contents h3.h3-ttl-2 {
    font-size: 30px;
    margin-bottom: 15px;
  }
}
html body .contents p,
html body .contents li,
html body .contents dd {
  font-size: 1rem;
  letter-spacing: 0.1em;
  line-height: 2em;
  margin-bottom: 1.5em;
}
@media screen and (max-width: 767px) {
  html body .contents p,
  html body .contents li,
  html body .contents dd {
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    line-height: 1.8em;
  }
}
html body .contents p:last-child,
html body .contents li:last-child,
html body .contents dd:last-child {
  margin-bottom: 0;
}
html body .contents .more a {
  color: #888;
  display: inline-block;
  position: relative;
  margin-top: 60px;
}
@media screen and (max-width: 1199px) {
  html body .contents .more a {
    margin-top: 40px;
  }
}
html body .contents .more a:hover::after {
  width: 0;
  transition: 0.6s;
}
html body .contents .more a::before {
  content: "";
  position: absolute;
  bottom: -20px;
  right: -22px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 8px 8px 0;
  border-color: transparent transparent #888 transparent;
}
html body .contents .more a::after {
  content: "";
  position: absolute;
  right: -20px;
  bottom: -20px;
  height: 1px;
  width: calc(100% + 20px);
  background-color: #888;
  transition: 0.6s;
}
html body .wrapper {
  max-width: calc(1200px + 2rem);
  margin: 0 auto;
  padding: 0 1rem;
}
html body img {
  height: auto;
  max-width: 100%;
}
html body .cf::before, html body .cf::after {
  display: table;
  clear: both;
  content: "";
}
html body .alpha {
  transition: opacity 250ms;
}
html body .alpha:hover {
  opacity: 0.75;
}
html body figure {
  text-align: center;
}
html body br.pc {
  display: none;
}
@media screen and (min-width: 376px) {
  html body br.pc {
    display: block;
  }
}
html body br.sp {
  display: none;
}
@media screen and (max-width: 575px) {
  html body br.sp {
    display: block;
  }
}
html body .pc_only {
  display: block;
}
@media screen and (max-width: 767px) {
  html body .pc_only {
    display: none;
  }
}
html body .sp_only {
  display: none;
}
@media screen and (max-width: 767px) {
  html body .sp_only {
    display: block;
  }
}
html body .t_r {
  text-align: right;
}

/*# sourceMappingURL=common.css.map */
