@charset "UTF-8";
/* fonts
------------------------------------------ */
@import url("https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800;1,400..800&family=Shippori+Mincho:wght@400;500;700&display=swap");
@font-face {
  font-family: "Noto Sans JP";
  src: url("../fonts/NotoSansCJKjp-Regular.woff") format("woff"), url("../fonts/NotoSansCJKjp-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans JP";
  src: url("../fonts/NotoSansCJKjp-Medium.woff") format("woff"), url("../fonts/NotoSansCJKjp-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans JP";
  src: url("../fonts/NotoSansCJKjp-Bold.woff") format("woff"), url("../fonts/NotoSansCJKjp-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
/* common
------------------------------------------ */
* {
  box-sizing: border-box;
}

body {
  font-family: YakuHanJP, "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  color: #000000;
  font-size: 3.7333333333vw;
  line-height: 1.7142857143;
}

@media screen and (min-width: 768px) {
  body {
    font-size: 16px;
    line-height: 1.75;
  }
}
img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.7;
}

.page {
  background-color: #ffffff;
  overflow: hidden;
}

.pc {
  display: none !important;
}

@media screen and (min-width: 768px) {
  .pc {
    display: block !important;
  }
  .sp {
    display: none !important;
  }
}
.container--md {
  padding: 0 5.3333333333vw;
}
.container--lg {
  padding: 0 5.3333333333vw;
}

@media screen and (min-width: 768px) {
  .container--md {
    max-width: 1000px;
    padding: 0 20px;
    margin: auto;
  }
  .container--lg {
    max-width: 1400px;
    padding: 0 20px;
    margin: auto;
  }
}
/* header
------------------------------------------ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100vw;
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ffffff;
  padding: 0 2.6666666667vw 0 5.3333333333vw;
  width: 100%;
  height: 16vw;
}
.header__logo {
  position: relative;
  z-index: 30;
  width: 33%;
}
.header__textbox {
  display: none;
  position: relative;
  position: fixed;
  top: 7%;
  right: 0;
  left: 0;
  margin: auto;
  height: 100vh;
  transition: all 0.2s ease;
  padding-bottom: 59.2vw;
}
.header__textbox::after {
  content: "";
  position: absolute;
  bottom: 30vw;
  left: 0;
  display: block;
  width: 100vw;
  height: 47.2vw;
  background-image: url("../img/menu_01_sp.jpg");
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}
.header__nav ul {
  padding: 0 5.3333333333vw;
  margin: 0 auto;
}
.header__nav ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 12.8vw;
  font-size: 4.2666666667vw;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #ffffff;
}
.header__nav ul li a::after {
  content: "";
  width: 5.0666666667vw;
  height: 5.0666666667vw;
  background-image: url("../img/common/icon_arrow_1.svg");
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}
.header__contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5.3333333333vw;
  margin-top: 4%;
}
.header .page__morebtn {
  margin: 0;
}
.header .page__morebtn > a {
  border-color: #ffffff;
  color: #ffffff;
  letter-spacing: 0 !important;
}
.header .page__morebtn > a::before {
  background-image: url("../img/icon_arrow_01_white.svg");
}
.header .page__morebtn > a::after {
  background-color: #ffffff;
}
.header__sns {
  width: 13.0666666667vw;
  height: 13.0666666667vw;
  margin-top: -1%;
}
.header__menu {
  align-items: center;
  cursor: pointer;
  display: flex;
  height: 13.3333333333vw;
  justify-content: center;
  position: relative;
  padding: 2.6666666667vw;
  z-index: 300;
}
.header__menu__wrap {
  height: 4.8vw;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  width: 6.1333333333vw;
}
.header__menu__wrap > span {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: block;
  width: 100%;
  height: 2px;
  margin: auto;
  transition: 0.2s ease-out;
}
.header__menu__wrap > span:nth-child(1) {
  bottom: auto;
  background-color: #d4ac5a;
}
.header__menu__wrap > span:nth-child(2) {
  background-color: #d4ac5a;
}
.header__menu__wrap > span:nth-child(3) {
  top: auto;
  background-color: #d4ac5a;
}
.header.is-open {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #d4ac5a;
  transform: translateY(0);
}
.header.is-open .header__inner {
  background-color: #d4ac5a;
}
.header.is-open .header__logo {
  opacity: 0;
}
.header.is-open .header__textbox {
  display: block;
}
.header.is-open .header__menu__wrap > span:nth-child(1) {
  transform: translateY(8px) rotate(-45deg);
  background-color: #ffffff;
}
.header.is-open .header__menu__wrap > span:nth-child(2) {
  transform: scaleX(0);
  background-color: #ffffff;
}
.header.is-open .header__menu__wrap > span:nth-child(3) {
  transform: translateY(-8px) rotate(45deg);
  background-color: #ffffff;
}

@media screen and (min-width: 768px) {
  .header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100vw;
  }
  .header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
    padding: 0 0 0 24px;
    width: 100%;
    height: 100px;
  }
  .header__logo {
    position: relative;
    z-index: 30;
    width: 220px;
  }
  .header__textbox {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
    top: 0;
    right: 0;
    margin: 0;
    height: 100px;
    transition: all 0.2s ease;
    padding-bottom: 0;
  }
  .header__textbox::after {
    display: none;
  }
  .header__nav {
    height: 100px;
  }
  .header__nav ul {
    display: flex;
    padding: 0;
    height: 100px;
    align-items: center;
    margin: 0 auto;
  }
  .header__nav ul li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 32px;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0;
    color: #000000;
  }
  .header__nav ul li a::after {
    content: "";
    width: 5.0666666667vw;
    height: 5.0666666667vw;
    background-image: url("../img/common/icon_arrow_1.svg");
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
  }
  .header__contact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    height: 100px;
    margin-top: 0;
  }
  .header .page__morebtn {
    margin: 0;
    width: 200px;
    height: 100px;
  }
  .header .page__morebtn > a {
    justify-content: center;
    width: 200px;
    height: 100px;
    padding: 0;
    border-color: transparent;
    color: #ffffff;
    background-color: #d4ac5a;
    font-size: 16px;
    border-radius: 0;
  }
  .header .page__morebtn > a::before {
    display: none;
  }
  .header .page__morebtn > a::after {
    display: none;
  }
  .header__sns {
    display: none;
  }
  .header__menu {
    display: none;
  }
}
/* footer
------------------------------------------ */
.footer {
  background-color: #d4ac5a;
}
.footer__inner {
  padding: 10% 0 8.5333333333vw;
}
.footer__logo {
  width: 68vw;
}
.footer__textbox {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 6%;
}
.footer__info {
  color: #ffffff;
  font-size: 4.2666666667vw;
  font-weight: 400;
  letter-spacing: 0.05em;
}
.footer__info a {
  text-decoration: underline;
}
.footer__sns {
  width: 13.0666666667vw;
  height: 13.0666666667vw;
}
.footer__img {
  margin-top: 6%;
}
.footer__nav {
  margin-top: 4%;
}
.footer__nav .nav__list {
  display: flex;
  flex-wrap: wrap;
}
.footer__nav .nav__item {
  width: 60%;
  font-size: 4.2666666667vw;
  color: #ffffff;
  padding: 2% 0;
}
.footer__nav .nav__item:nth-child(2n) {
  width: 40%;
}
.footer__operation {
  margin-top: 3%;
}
.footer__operation .operation__item {
  display: inline-block;
  font-size: 3.2vw;
  color: #ffffff;
  letter-spacing: 0.05em;
  line-height: 1.3;
}
.footer__operation .operation__item:nth-child(1), .footer__operation .operation__item:nth-child(2) {
  padding-right: 3%;
  border-right: 1px solid #ffffff;
}
.footer__operation .operation__item:nth-child(2), .footer__operation .operation__item:nth-child(3) {
  padding-left: 3%;
}
.footer__copyright {
  margin-top: 15%;
  color: #ffffff;
  font-size: 2.6666666667vw;
  letter-spacing: 0.05em;
}

@media screen and (min-width: 768px) {
  .footer {
    background-color: #d4ac5a;
  }
  .footer__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 85px 0 82px;
  }
  .footer__top {
    width: 24%;
  }
  .footer__logo {
    width: 255px;
  }
  .footer__textbox {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 40px;
  }
  .footer__info {
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.05em;
  }
  .footer__info a {
    text-decoration: underline;
  }
  .footer__sns {
    width: 49px;
    height: 49px;
    margin-top: 25px;
  }
  .footer__img {
    width: 60%;
    margin-top: 0;
  }
  .footer__middle {
    width: 16%;
  }
  .footer__nav {
    margin-top: 0;
  }
  .footer__nav .nav__list {
    display: block;
    text-align: right;
    margin-top: -4%;
  }
  .footer__nav .nav__item {
    width: auto;
    font-size: 16px;
    color: #ffffff;
    padding: 2% 0;
  }
  .footer__nav .nav__item:nth-child(2n) {
    width: auto;
  }
  .footer__bottom {
    width: 100%;
  }
  .footer__operation {
    margin-top: 48px;
  }
  .footer__operation .operation__list {
    display: flex;
    justify-content: flex-end;
  }
  .footer__operation .operation__item {
    display: inline-block;
    font-size: 12px;
    color: #ffffff;
    letter-spacing: 0.05em;
    line-height: 1.3;
  }
  .footer__operation .operation__item:nth-child(1), .footer__operation .operation__item:nth-child(2) {
    padding-right: 22px;
    border-right: 1px solid #ffffff;
  }
  .footer__operation .operation__item:nth-child(2), .footer__operation .operation__item:nth-child(3) {
    padding-left: 22px;
  }
  .footer__copyright {
    text-align: right;
    margin-top: 24px;
    color: #ffffff;
    font-size: 12px;
    letter-spacing: 0.05em;
    font-family: "EB Garamond", serif;
  }
}
/* parts
------------------------------------------ */
.page {
  margin-top: 16vw;
}
.page__thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: 40vw;
  text-align: center;
  color: #ffffff;
  font-family: "Shippori Mincho", serif;
  font-size: 6.4vw;
  letter-spacing: 0.1em;
  font-weight: 700;
  background-color: #e5cfa1;
}
.page__breadcrumb {
  padding: 3.7333333333vw 5.3333333333vw 0;
  margin: 0 0 3.7333333333vw;
}
.page__breadcrumb ul {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  word-break: keep-all;
  white-space: nowrap;
}
.page__breadcrumb li {
  padding-right: 7.4666666667vw;
  font-size: 3.2vw;
  font-weight: 500;
  color: #707070;
}
.page__breadcrumb li:not(:last-child) {
  position: relative;
}
.page__breadcrumb li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 2.6666666667vw;
  top: 0;
  bottom: 0;
  margin: auto;
  display: block;
  width: 2.4vw;
  height: 2.4vw;
  background-image: url("../img/icon_arrow_02_gray.svg");
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}
.page__morebtn, .page__backbtn, .page__connectbtn {
  width: 48.5333333333vw;
  height: 9.6vw;
  margin: 0 auto;
}
.page__morebtn > a, .page__backbtn > a, .page__connectbtn > a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
  padding-left: 17%;
  font-size: 3.2vw;
  color: #d4ac5a;
  font-family: "Shippori Mincho", serif;
  letter-spacing: 0.1em;
  font-weight: 400;
  line-height: 0;
  border-radius: 1.6vw;
  border: 1px solid #d4ac5a;
}
.page__morebtn > a::before, .page__backbtn > a::before, .page__connectbtn > a::before {
  content: "";
  position: absolute;
  top: 3%;
  bottom: 0;
  right: 7%;
  margin: auto;
  width: 2.6666666667vw;
  height: 2.6666666667vw;
  background-image: url("../img/icon_arrow_01.svg");
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}
.page__morebtn > a::after, .page__backbtn > a::after, .page__connectbtn > a::after {
  content: "";
  position: absolute;
  top: 3%;
  bottom: 0;
  right: 15%;
  width: 4.8vw;
  height: 1px;
  margin: auto;
  transform: rotate(90deg);
  transform-origin: center center;
  background-color: #d4ac5a;
}
.page__morebtn--yellow > a, .page__backbtn--yellow > a, .page__connectbtn--yellow > a {
  background-color: #d4ac5a;
  color: #ffffff;
}
.page__morebtn--yellow > a::before, .page__backbtn--yellow > a::before, .page__connectbtn--yellow > a::before {
  background-image: url("../img/icon_arrow_01_white.svg");
}
.page__morebtn--yellow > a::after, .page__backbtn--yellow > a::after, .page__connectbtn--yellow > a::after {
  background-color: #ffffff;
}
.page__backbtn > a {
  text-indent: 1.8666666667vw;
}
.page__backbtn > a::before {
  right: auto;
  left: 5.3333333333vw;
  transform: scale(-1);
}
.page__connectbtn {
  margin: 4.2666666667vw auto 0;
}
.page__connectbtn > a {
  background-color: #ffffff;
}
.page__connect {
  width: 80vw;
  padding: 6.6666666667vw 0;
  margin: 8.8vw auto 10.6666666667vw;
  background-color: #000000;
}
.page__connect__ttl {
  font-size: 4.2666666667vw;
  text-align: center;
  letter-spacing: 0.1em;
  font-weight: 700;
  line-height: 1.625;
}
.page__bg-plaid {
  background-image: url("../img/common/bg_plaid.jpg");
  background-size: 8%;
  background-position: top left;
  background-repeat: repeat;
}
.page__bg-gray {
  background-color: #000000;
}
.page__loop {
  display: flex;
  overflow: hidden;
  width: 100%;
}
.page__loop img {
  height: 100%;
  padding: 0 10px;
  width: auto;
}
.page__loop img:first-child {
  animation: slide1 100s linear -50s infinite reverse;
}
.page__loop img:last-child {
  animation: slide2 100s linear infinite reverse;
}
.page__loop.page__loop--left img:first-child {
  animation: slide1 100s linear -50s infinite normal;
}
.page__loop.page__loop--left img:last-child {
  animation: slide2 100s linear infinite normal;
}
@keyframes slide1 {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes slide2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
.page__tab {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 2.6666666667vw;
  margin-top: 5.0666666667vw;
}
.page__tab__item {
  width: calc(50% - 4px);
  height: 8.5333333333vw;
  margin-bottom: 2.1333333333vw;
}
.page__tab__item > a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
  padding: 0 0 0 2.6666666667vw;
  font-size: 3.2vw;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #000000;
  line-height: 1;
  border: 1px solid #000000;
  border-radius: 4.2666666667vw;
}
.page__tab__item > a::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 2.6666666667vw;
  display: block;
  width: 3.4666666667vw;
  height: 3.4666666667vw;
  margin: auto;
  background-image: url("../img/common/icon_arrow_4.svg");
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}
.page__tab__item > a > span.small {
  font-size: 2.6666666667vw;
}
.page__tab__item > a > span.middle {
  font-size: 2.1333333333vw;
}
.page__tab__item.small > a {
  font-size: 2.9333333333vw;
}
.page__contact-btn {
  width: 74.6666666667vw;
  height: 32vw;
  background-color: #ffffff;
  border-radius: 20px;
  margin: 6.4vw auto 0;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
}
.page__contact-btn a {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 5.6vw 3.4666666667vw 5.6vw 4.8vw;
}
.page__contact-btn a::before {
  content: "";
  flex-shrink: 0;
  width: 11.4666666667vw;
  height: 11.4666666667vw;
  background-image: url("../img/common/icon_phone_2.svg");
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}
.page__contact-btn a .textbox {
  width: 100%;
  text-align: center;
  margin-left: 1.6vw;
}
.page__contact-btn a .ttl {
  display: block;
  font-size: 4.2666666667vw;
  letter-spacing: 0.05em;
  font-weight: 700;
}
.page__contact-btn a .num {
  display: block;
  margin-top: 1.8666666667vw;
  font-size: 6.4vw;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #000000;
}
.page__contact-btn a .note {
  display: block;
  margin-top: 0.5333333333vw;
  font-size: 2.9333333333vw;
  letter-spacing: 0.05em;
  font-weight: 500;
  line-height: 1.6;
}
.page__contact-btn a .description {
  display: block;
  margin-top: 2.9333333333vw;
  font-size: 3.2vw;
  letter-spacing: 0.05em;
  font-weight: 500;
  line-height: 1.4166666667;
  text-align: center;
}
.page__contact-btn--faq a::before {
  background-image: url("../img/common/icon_faq.svg");
}
.page__photo-credit {
  position: relative;
}
.page__photo-credit::before {
  content: "写真撮影：中山保寛";
  position: absolute;
  right: 3px;
  bottom: 3px;
}

@media screen and (min-width: 768px) {
  .page {
    margin-top: 80px;
  }
  .page__thumb {
    height: 283px;
    font-size: 32px;
  }
  .page__breadcrumb {
    max-width: 1440px;
    display: flex;
    padding: 13px 20px 90px;
    margin: auto;
  }
  .page__breadcrumb li {
    padding-right: 28px;
    font-size: 12px;
  }
  .page__breadcrumb li:not(:last-child)::after {
    right: 13px;
    width: 3px;
    height: 6px;
  }
  .page__morebtn, .page__backbtn, .page__connectbtn {
    width: 220px;
    height: 40px;
    margin: 0 auto;
  }
  .page__morebtn > a, .page__backbtn > a, .page__connectbtn > a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    height: 100%;
    padding-left: 17%;
    font-size: 14px;
    color: #d4ac5a;
    font-family: "Shippori Mincho", serif;
    letter-spacing: 0.1em;
    font-weight: 400;
    line-height: 0;
    border-radius: 6px;
    border: 1px solid #d4ac5a;
  }
  .page__morebtn > a::before, .page__backbtn > a::before, .page__connectbtn > a::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 16px;
    margin: auto;
    width: 10px;
    height: 10px;
    background-image: url("../img/icon_arrow_01.svg");
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
  }
  .page__morebtn > a::after, .page__backbtn > a::after, .page__connectbtn > a::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 37px;
    width: 20px;
    height: 1px;
    margin: auto;
    transform: rotate(90deg);
    transform-origin: center center;
    background-color: #d4ac5a;
  }
  .page__morebtn--yellow > a, .page__backbtn--yellow > a, .page__connectbtn--yellow > a {
    background-color: #d4ac5a;
    color: #ffffff;
  }
  .page__morebtn--yellow > a::before, .page__backbtn--yellow > a::before, .page__connectbtn--yellow > a::before {
    background-image: url("../img/icon_arrow_01_white.svg");
  }
  .page__morebtn--yellow > a::after, .page__backbtn--yellow > a::after, .page__connectbtn--yellow > a::after {
    background-color: #ffffff;
  }
  .page__backbtn > a {
    text-indent: -5px;
  }
  .page__backbtn > a::before {
    right: auto;
    left: 21px;
  }
  .page__connectbtn {
    margin: 26px auto 0;
  }
  .page__connect {
    width: 95%;
    max-width: 1000px;
    padding: 47px 0;
    margin: 141px auto 80px;
  }
  .page__connect__ttl {
    font-size: 24px;
    line-height: 1.25;
  }
  .page__bg-plaid {
    background-size: 3%;
  }
  .page__tab {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1240px;
    padding: 0 20px;
    margin: 0 auto;
  }
  .page__tab__item {
    width: calc(25% - 20.25px);
    height: 56px;
    margin-bottom: 16px;
  }
  .page__tab__item > a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 0 1em 0 0;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #000000;
    line-height: 1;
    border: 1px solid #000000;
    border-radius: 28px;
  }
  .page__tab__item > a::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 24px;
    display: block;
    width: 22px;
    height: 22px;
    margin: auto;
    background-image: url("../img/common/icon_arrow_4.svg");
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
  }
  .page__tab__item > a > span.small {
    font-size: 16px;
  }
  .page__tab__item > a > span.middle {
    font-size: 13px;
    text-indent: -1em;
  }
  .page__tab__item.small > a {
    font-size: 16px;
  }
  .page__contact-btn {
    width: 320px;
    height: 130px;
    margin: 0 10px;
    background: #ffffff;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
  }
  .page__contact-btn a {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 17px;
  }
  .page__contact-btn a::before {
    width: 43px;
    height: 43px;
  }
  .page__contact-btn a .textbox {
    text-align: center;
    margin: 0;
  }
  .page__contact-btn a .ttl {
    font-size: 18px;
  }
  .page__contact-btn a .num {
    margin-top: 10px;
    font-size: 25px;
  }
  .page__contact-btn a .note {
    margin-top: 3px;
    font-size: 12px;
  }
  .page__contact-btn a .description {
    margin-top: 12px;
    font-size: 12px;
    line-height: 1.4285714286;
  }
  .page__contact-btn--faq a::before {
    background-image: url("../img/common/icon_faq.svg");
  }
}
@media screen and (min-width: 1100px) {
  .page {
    margin-top: 100px;
  }
  .page__thumb {
    height: 283px;
    font-size: 32px;
  }
  .page__breadcrumb {
    max-width: 1440px;
    display: flex;
    padding: 13px 20px 90px;
    margin: auto;
  }
  .page__breadcrumb li {
    padding-right: 28px;
    font-size: 12px;
  }
  .page__breadcrumb li:not(:last-child)::after {
    right: 13px;
    width: 3px;
    height: 6px;
  }
  .page__morebtn, .page__backbtn, .page__connectbtn {
    width: 220px;
    height: 40px;
    margin: 0 auto;
  }
  .page__morebtn > a, .page__backbtn > a, .page__connectbtn > a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    height: 100%;
    padding-left: 17%;
    font-size: 14px;
    color: #d4ac5a;
    font-family: "Shippori Mincho", serif;
    letter-spacing: 0.1em;
    font-weight: 400;
    line-height: 0;
    border-radius: 6px;
    border: 1px solid #d4ac5a;
  }
  .page__morebtn > a::before, .page__backbtn > a::before, .page__connectbtn > a::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 16px;
    margin: auto;
    width: 10px;
    height: 10px;
    background-image: url("../img/icon_arrow_01.svg");
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
  }
  .page__morebtn > a::after, .page__backbtn > a::after, .page__connectbtn > a::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 37px;
    width: 20px;
    height: 1px;
    margin: auto;
    transform: rotate(90deg);
    transform-origin: center center;
    background-color: #d4ac5a;
  }
  .page__morebtn--yellow > a, .page__backbtn--yellow > a, .page__connectbtn--yellow > a {
    background-color: #d4ac5a;
    color: #ffffff;
  }
  .page__morebtn--yellow > a::before, .page__backbtn--yellow > a::before, .page__connectbtn--yellow > a::before {
    background-image: url("../img/icon_arrow_01_white.svg");
  }
  .page__morebtn--yellow > a::after, .page__backbtn--yellow > a::after, .page__connectbtn--yellow > a::after {
    background-color: #ffffff;
  }
  .page__backbtn > a {
    text-indent: -5px;
  }
  .page__backbtn > a::before {
    right: auto;
    left: 21px;
  }
  .page__connectbtn {
    margin: 26px auto 0;
  }
  .page__connect {
    width: 95%;
    max-width: 1000px;
    padding: 47px 0;
    margin: 141px auto 80px;
  }
  .page__connect__ttl {
    font-size: 24px;
    line-height: 1.25;
  }
  .page__bg-plaid {
    background-size: 3%;
  }
  .page__tab {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1240px;
    padding: 0 20px;
    margin: 0 auto;
  }
  .page__tab__item {
    width: calc(25% - 20.25px);
    height: 56px;
    margin-bottom: 16px;
  }
  .page__tab__item > a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 0 1em 0 0;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #000000;
    line-height: 1;
    border: 1px solid #000000;
    border-radius: 28px;
  }
  .page__tab__item > a::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 24px;
    display: block;
    width: 22px;
    height: 22px;
    margin: auto;
    background-image: url("../img/common/icon_arrow_4.svg");
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
  }
  .page__tab__item > a > span.small {
    font-size: 16px;
  }
  .page__tab__item > a > span.middle {
    font-size: 13px;
    text-indent: -1em;
  }
  .page__tab__item.small > a {
    font-size: 16px;
  }
  .page__contact-btn {
    width: 320px;
    height: 223px;
    margin: 0 20px;
    background: #ffffff;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
  }
  .page__contact-btn a {
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 32px 0;
    margin: 0;
  }
  .page__contact-btn a::before {
    width: 51px;
    height: 51px;
  }
  .page__contact-btn a .textbox {
    text-align: center;
    margin: 11px 0 0;
  }
  .page__contact-btn a .ttl {
    font-size: 22px;
  }
  .page__contact-btn a .num {
    margin-top: 12px;
    font-size: 28px;
  }
  .page__contact-btn a .note {
    margin-top: 3px;
    font-size: 14px;
  }
  .page__contact-btn a .description {
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.4285714286;
  }
  .page__contact-btn--hidden {
    pointer-events: none;
  }
  .page__contact-btn--faq a::before {
    background-image: url("../img/common/icon_faq.svg");
  }
}
/* page-index
------------------------------------------ */
.page-index__ttl {
  font-size: 11.2vw;
  font-family: "EB Garamond", serif;
  text-align: center;
  color: #d4ac5a;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .page-index .page-index__ttl {
    font-size: 80px;
  }
}
.page-index .fv {
  display: flex;
  flex-direction: column-reverse;
  background-color: #d4ac5a;
}
.page-index .fv__ttl {
  margin-top: -6%;
  z-index: 10;
  padding: 0 5.3333333333vw 13.3333333333vw;
}
.page-index .fv__ttl .en {
  display: block;
  width: 85.8666666667vw;
  filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.45));
}
.page-index .fv__ttl .ja {
  display: block;
  margin-top: 7.2vw;
  font-size: 4.5333333333vw;
  font-family: "Shippori Mincho", serif;
  color: #ffffff;
  font-weight: 400;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.45);
  line-height: 1.8235294118;
}
.page-index .fv__slider.slick-initialized {
  visibility: visible;
  /*slick-initializedが付与されたら表示*/
}
@media screen and (min-width: 768px) {
  .page-index .fv {
    position: relative;
    display: flex;
    flex-direction: column-reverse;
    background-color: #d4ac5a;
    height: 840px;
  }
  .page-index .fv__ttl {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 5%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    margin: 0;
    z-index: 10;
    padding: 0;
  }
  .page-index .fv__ttl .en {
    width: 613px;
  }
  .page-index .fv__ttl .ja {
    display: block;
    margin-top: 24px;
    font-size: 30px;
    font-family: "Shippori Mincho", serif;
    color: #ffffff;
    font-weight: 400;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.45);
    line-height: 1.8235294118;
  }
  .page-index .fv__slider {
    position: absolute;
    top: 0;
    right: 0;
    width: 64.0625%;
    height: 840px;
  }
  .page-index .fv__slider .slick-list,
  .page-index .fv__slider .slick-track {
    width: 100%;
    height: 100%;
  }
  .page-index .fv__slider .slick-arrow {
    display: none !important;
  }
  .page-index .fv__slider li {
    position: relative;
    width: 100%;
    height: 100%;
  }
  .page-index .fv__slider li::before {
    content: "";
    display: block;
    padding-top: 68.2926829268%;
  }
  .page-index .fv__slider li img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.page-index .about {
  padding: 10.6666666667vw 0;
  background-color: #f5f0e5;
}
.page-index .about__ttl {
  width: 41.0666666667vw;
  margin: auto;
}
.page-index .about__intro {
  margin-top: 3%;
  font-size: 5.3333333333vw;
  text-align: center;
  letter-spacing: 0.1em;
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
}
.page-index .about__list {
  counter-reset: number 0;
}
.page-index .about__item {
  margin-top: 16%;
}
.page-index .about__item__img {
  position: relative;
  padding: 0 5.3333333333vw;
}
.page-index .about__item__num {
  position: absolute;
  top: -17%;
  left: -1%;
}
.page-index .about__item__num--1 {
  width: 24vw;
}
.page-index .about__item__num--2 {
  width: 24vw;
  top: auto;
  bottom: -14%;
  left: auto;
  right: -1%;
}
.page-index .about__item__num--3 {
  width: 24vw;
}
.page-index .about__item__ttl {
  margin-top: 8%;
  font-size: 4.8vw;
  letter-spacing: 0.1em;
  font-family: "Shippori Mincho", serif;
  text-align: center;
  font-weight: 700;
}
.page-index .about__item__desc {
  margin-top: 5%;
}
.page-index .about__cupid {
  background-color: #ffffff;
  padding: 8% 4%;
  margin-top: 10.1333333333vw;
}
.page-index .about__cupid__ttl {
  font-size: 4.8vw;
  letter-spacing: 0.05em;
  text-align: center;
  font-weight: 700;
  font-family: "Shippori Mincho", serif;
}
.page-index .about__cupid__desc {
  margin-top: 2%;
  font-size: 4.2666666667vw;
  text-align: center;
}
.page-index .about__cupid__img {
  width: 90%;
  margin: 3% auto 0;
}
@media screen and (min-width: 768px) {
  .page-index .about {
    padding: 112px 0 113px;
    background-color: #f5f0e5;
  }
  .page-index .about__ttl {
    width: 294px;
  }
  .page-index .about__intro {
    margin-top: 3%;
    font-size: 28px;
    text-align: center;
    letter-spacing: 0.1em;
    font-family: "Shippori Mincho", serif;
    font-weight: 700;
  }
  .page-index .about__list {
    display: flex;
    margin-right: -100px;
  }
  .page-index .about__item {
    width: calc(33.3333333333% - 66.6666666667px);
    margin-top: 6%;
    margin-right: 100px;
  }
  .page-index .about__item__img {
    position: relative;
    padding: 0;
  }
  .page-index .about__item__num {
    position: absolute;
    top: -19%;
    left: -8%;
  }
  .page-index .about__item__num--1 {
    width: 136px;
  }
  .page-index .about__item__num--2 {
    width: 136px;
    top: auto;
    bottom: -16%;
    left: auto;
    right: -14%;
  }
  .page-index .about__item__num--3 {
    width: 136px;
    top: -19%;
    left: auto;
    right: -7%;
  }
  .page-index .about__item__ttl {
    margin-top: 8%;
    font-size: 24px;
    letter-spacing: 0.1em;
    font-family: "Shippori Mincho", serif;
    text-align: center;
    font-weight: 700;
  }
  .page-index .about__item__desc {
    margin-top: 5%;
  }
  .page-index .about__cupid {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    padding: 22px 32px;
    margin-top: 10.1333333333vw;
  }
  .page-index .about__cupid__textbox {
    display: flex;
    align-items: center;
  }
  .page-index .about__cupid__ttl {
    font-size: 24px;
    letter-spacing: 0.05em;
    text-align: center;
    font-weight: 700;
    font-family: "Shippori Mincho", serif;
  }
  .page-index .about__cupid__desc {
    margin-top: 0;
    font-size: 16px;
    text-align: center;
  }
  .page-index .about__cupid__img {
    width: 20%;
    max-width: 292px;
    margin: 0;
  }
}
.page-index .product {
  padding: 13% 0 0;
}
.page-index .product__ttl {
  width: 58.1333333333vw;
  margin: 0 auto -2%;
}
.page-index .product__item {
  position: relative;
  margin-top: 8%;
}
.page-index .product__item::before {
  content: "";
  position: absolute;
  bottom: 0;
  display: block;
  background-color: #f5f0e5;
  width: 100vw;
  height: 62%;
}
.page-index .product__item__img {
  position: relative;
  z-index: 3;
  padding: 0 3.2vw;
}
.page-index .product__item:nth-child(odd)::before {
  left: 5.3333333333vw;
}
.page-index .product__item:nth-child(even)::before {
  right: 5.3333333333vw;
}
.page-index .product__item:nth-child(2)::before {
  height: 60%;
}
.page-index .product__item:nth-child(3)::before {
  height: 45%;
}
.page-index .product__item:nth-child(3) .product__item__img {
  width: 76vw;
  margin-right: 0;
  margin-left: auto;
}
.page-index .product__item__textbox {
  position: relative;
  z-index: 3;
  padding: 0 6.4vw;
}
.page-index .product__item__ttl .en .product__item__ttl__en {
  margin-top: 3%;
}
.page-index .product__item__ttl .en .product__item__ttl__en--1 {
  width: 14.9333333333vw;
}
.page-index .product__item__ttl .en .product__item__ttl__en--2 {
  width: 65.6vw;
}
.page-index .product__item__ttl .en .product__item__ttl__en--3 {
  width: 57.3333333333vw;
}
.page-index .product__item__ttl .ja {
  display: block;
  margin-top: 2%;
  font-size: 4.8vw;
  letter-spacing: 0.1em;
  font-weight: 700;
  font-family: "Shippori Mincho", serif;
}
.page-index .product__item__desc {
  margin-top: 1%;
  padding-bottom: 9%;
}
.page-index .product__item__desc .page__morebtn--yellow {
  margin-top: 5%;
  margin-left: 0;
}
.page-index .product__item__desc .page__morebtn--yellow > a {
  padding-left: 6%;
}
.page-index .product__item__desc .offer__links > li {
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
  margin-top: 5%;
}
.page-index .product__item__desc .note {
  font-size: 3.4666666667vw;
  margin-top: 2em;
}
@media screen and (min-width: 768px) {
  .page-index .product {
    padding: 112px 0 0;
  }
  .page-index .product__ttl {
    width: 414px;
    margin: 0 auto -2%;
  }
  .page-index .product__item {
    position: relative;
    margin-top: 8%;
  }
  .page-index .product__item::before {
    content: "";
    position: absolute;
    bottom: -8%;
    display: block;
    background-color: #f5f0e5;
    width: 61vw;
    height: 124%;
  }
  .page-index .product__item .container--lg {
    display: flex;
    align-items: center;
  }
  .page-index .product__item__img {
    position: relative;
    z-index: 3;
    padding: 0;
  }
  .page-index .product__item:nth-child(odd)::before {
    left: auto;
    right: 0;
  }
  .page-index .product__item:nth-child(odd) .product__item__img {
    margin-left: -3%;
  }
  .page-index .product__item:nth-child(even) .container--lg {
    flex-direction: row-reverse;
  }
  .page-index .product__item:nth-child(even)::before {
    right: 5.3333333333vw;
  }
  .page-index .product__item:nth-child(even) .product__item__img {
    margin-right: -3%;
  }
  .page-index .product__item:nth-child(even) .product__item__textbox {
    padding: 0 5vw 0 0;
  }
  .page-index .product__item:nth-child(1)::before {
    bottom: -9%;
  }
  .page-index .product__item:nth-child(2) {
    margin-top: 7vw;
  }
  .page-index .product__item:nth-child(2)::before {
    height: 90%;
    width: 62vw;
    bottom: -7%;
    left: 0;
  }
  .page-index .product__item:nth-child(2) .product__item__img {
    max-width: 737px;
    width: 78vw;
  }
  .page-index .product__item:nth-child(2) .product__item__ttl {
    margin-top: 18vw;
  }
  .page-index .product__item:nth-child(3) {
    margin-top: 8vw;
  }
  .page-index .product__item:nth-child(3)::before {
    width: 90vw;
    height: 80%;
    bottom: 14%;
  }
  .page-index .product__item:nth-child(3) .product__item__img {
    max-width: 737px;
    margin-right: 0;
    margin-left: 0;
  }
  .page-index .product__item__textbox {
    position: relative;
    z-index: 3;
    padding: 0 0 0 5vw;
  }
  .page-index .product__item__ttl .en .product__item__ttl__en {
    margin-top: 0;
  }
  .page-index .product__item__ttl .en .product__item__ttl__en--1 {
    width: 83px;
  }
  .page-index .product__item__ttl .en .product__item__ttl__en--2 {
    width: 335px;
  }
  .page-index .product__item__ttl .en .product__item__ttl__en--3 {
    width: 329px;
  }
  .page-index .product__item__ttl .ja {
    display: block;
    margin-top: -1%;
    font-size: 24px;
    letter-spacing: 0.1em;
    font-weight: 700;
    font-family: "Shippori Mincho", serif;
  }
  .page-index .product__item__desc {
    margin-top: 5%;
    padding-bottom: 9%;
  }
  .page-index .product__item__desc .page__morebtn--yellow {
    margin-top: 6%;
    margin-left: 0;
  }
  .page-index .product__item__desc .page__morebtn--yellow > a {
    padding-left: 6%;
  }
  .page-index .product__item__desc .offer__links {
    margin-top: 48px;
  }
  .page-index .product__item__desc .offer__links > li {
    width: 544px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
    margin-top: 24px;
  }
  .page-index .product__item__desc .note {
    font-size: 14px;
    margin-top: 2em;
  }
}
.page-index .news {
  padding-top: 13%;
  padding-bottom: 13.3333333333vw;
  border-bottom: 1px solid #dbdbdb;
}
.page-index .news__ttl {
  width: 35.4666666667vw;
  text-align: left;
  margin-right: auto;
  margin-left: 0;
}
.page-index .news__content {
  padding: 6.4vw 5.3333333333vw 12.8vw;
}
.page-index .news__list {
  position: relative;
  z-index: 1;
  display: flex;
  overflow-x: auto;
  padding: 0 0 4.2666666667vw;
}
.page-index .news__arrow {
  display: none;
}
.page-index .news__item {
  width: 70.6666666667vw;
  margin-right: 5.3333333333vw;
  flex-shrink: 0;
}
.page-index .news__item__img {
  position: relative;
}
.page-index .news__item__img:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.page-index .news__item__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-index .news__item__date {
  margin-top: 2%;
  font-size: 3.7333333333vw;
  font-weight: 400;
  text-align: right;
  font-family: "EB Garamond", serif;
}
.page-index .news__item__ttl {
  margin-top: 5%;
  font-size: 4.2666666667vw;
  font-weight: 700;
  font-family: "Shippori Mincho", serif;
  line-height: 1.3;
}
.page-index .news__item__desc {
  margin-top: 4%;
}
@media screen and (min-width: 768px) {
  .page-index .news {
    padding-top: 150px;
    padding-bottom: 13.3333333333vw;
    border-bottom: 1px solid #dbdbdb;
  }
  .page-index .news__ttl {
    width: 253px;
    text-align: left;
    margin-right: auto;
    margin-left: 0;
    margin-bottom: -64px;
  }
  .page-index .news__content {
    padding: 0;
  }
  .page-index .news__slider {
    width: min(100%, 1400px);
    margin: 0 auto;
    overflow-x: visible;
  }
  .page-index .news__slider__wrap {
    position: relative;
    width: calc(100% + (100vw - 100%) / 2);
    z-index: 3;
    padding: 124px 20px 0;
  }
  .page-index .news__arrow {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: min(100%, 1400px);
    height: 46px;
    margin: 0 auto;
  }
  .page-index .news__list {
    display: block;
    overflow-x: visible;
    margin: 0 auto;
    visibility: hidden;
  }
  .page-index .news__list.slick-initialized {
    visibility: visible;
    /*slick-initializedが付与されたら表示*/
  }
  .page-index .news .slick-arrow {
    position: absolute;
    top: 0;
    width: 46px;
    margin: auto;
    z-index: 100;
    cursor: pointer;
    transition: opacity 0.3s;
  }
  .page-index .news .slick-arrow:hover {
    opacity: 0.7;
  }
  .page-index .news .prev-arrow {
    right: 80px;
  }
  .page-index .news .next-arrow {
    right: 20px;
  }
  .page-index .news__item {
    width: 400px;
    margin-right: 40px;
  }
  .page-index .news__item__img {
    position: relative;
    width: 400px;
  }
  .page-index .news__item__img:before {
    content: "";
    display: block;
    padding-top: 100%;
  }
  .page-index .news__item__img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    width: 400px;
    height: 400px;
  }
  .page-index .news__item__date {
    margin-top: 16px;
    font-size: 12px;
    font-weight: 400;
    text-align: right;
    font-family: "EB Garamond", serif;
  }
  .page-index .news__item__ttl {
    margin-top: 30px;
    font-size: 18px;
    font-weight: 700;
    font-family: "Shippori Mincho", serif;
    line-height: 1.3;
  }
  .page-index .news__item__desc {
    margin-top: 18px;
  }
}
.page-index .shop {
  padding: 10.6666666667vw 0 16%;
}
.page-index .shop__ttl {
  width: 65.6vw;
  margin: auto;
}
.page-index .shop__desc {
  margin-top: 3%;
}
.page-index .shop .info__img {
  margin-top: 4%;
}
.page-index .shop .info__list {
  margin-top: 6%;
}
.page-index .shop .info__item {
  display: flex;
  font-size: 4.2666666667vw;
  margin-top: 4%;
}
.page-index .shop .info__item > dt {
  width: 30%;
  color: #d4ac5a;
  font-family: "Shippori Mincho", serif;
}
.page-index .shop .info__item > dd a {
  color: #3895ff;
  text-decoration: underline;
}
.page-index .shop .info__map {
  position: relative;
  margin-top: 6%;
}
.page-index .shop .info__map::before {
  content: "";
  display: block;
  padding-top: 40.1785714286%;
}
.page-index .shop .info__map > iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .page-index .shop {
    padding: 150px 0 172px;
  }
  .page-index .shop__ttl {
    width: 458px;
    margin: auto;
  }
  .page-index .shop__desc {
    margin-top: 37px;
    text-align: center;
  }
  .page-index .shop .info__img {
    margin-top: 56px;
  }
  .page-index .shop .info__list {
    margin-top: 6%;
    width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  .page-index .shop .info__item {
    display: flex;
    font-size: 18px;
    margin-top: 40px;
  }
  .page-index .shop .info__item > dt {
    width: 52%;
    color: #d4ac5a;
    font-family: "Shippori Mincho", serif;
  }
  .page-index .shop .info__item > dd a {
    color: #3895ff;
    text-decoration: underline;
  }
  .page-index .shop .info__map {
    position: relative;
    margin-top: 6%;
  }
  .page-index .shop .info__map::before {
    content: "";
    display: block;
    padding-top: 40.1785714286%;
  }
  .page-index .shop .info__map > iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}

/* page-news
------------------------------------------ */
.page-newsar {
  padding-bottom: 18.6666666667vw;
}
.page-newsar .newsar {
  padding: 0 5.3333333333vw;
}
.page-newsar .newsar__list {
  padding: 0 9.3333333333vw;
}
.page-newsar .newsar__item {
  position: relative;
  margin-top: 10.1333333333vw;
}
.page-newsar .newsar__item__img {
  position: relative;
}
.page-newsar .newsar__item__img::before {
  content: "";
  display: block;
  padding-top: 100%;
}
.page-newsar .newsar__item__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-newsar .newsar__item__date {
  margin-top: 2%;
  font-size: 3.7333333333vw;
  font-weight: 400;
  text-align: right;
  font-family: "EB Garamond", serif;
}
.page-newsar .newsar__item__ttl {
  margin-top: 5%;
  font-size: 4.2666666667vw;
  font-weight: 700;
  font-family: "Shippori Mincho", serif;
  line-height: 1.3;
}
.page-newsar .newsar__item__desc {
  margin-top: 4%;
}
.page-newsar .newsar__pagenation {
  margin-top: 10.6666666667vw;
}
.page-newsar .newsar__pagenation ul.page-numbers {
  display: flex;
  justify-content: center;
}
.page-newsar .newsar__pagenation ul.page-numbers .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 9.8666666667vw;
  height: 9.8666666667vw;
  margin: 0.5333333333vw;
  border: 1px solid #000000;
  border-radius: 6px;
  font-size: 3.2vw;
  font-weight: 700;
  font-family: "Shippori Mincho", serif;
  line-height: 0;
  color: #000000;
}
.page-newsar .newsar__pagenation ul.page-numbers .page-numbers.current {
  background-color: #000000;
  color: #ffffff;
}
.page-newsar .newsar__pagenation ul.page-numbers .page-numbers.prev,
.page-newsar .newsar__pagenation ul.page-numbers .page-numbers.next {
  font-size: 0;
  position: relative;
}
.page-newsar .newsar__pagenation ul.page-numbers .page-numbers.prev::before,
.page-newsar .newsar__pagenation ul.page-numbers .page-numbers.next::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  display: block;
  width: 2.4vw;
  height: 2.4vw;
  background-image: url("../img/common/icon_arrow_7.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.page-newsar .newsar__pagenation ul.page-numbers .page-numbers.prev {
  margin-right: 3.2vw;
}
.page-newsar .newsar__pagenation ul.page-numbers .page-numbers.prev::before {
  right: -1.0666666667vw;
}
.page-newsar .newsar__pagenation ul.page-numbers .page-numbers.next {
  margin-left: 3.2vw;
}
.page-newsar .newsar__pagenation ul.page-numbers .page-numbers.next::before {
  right: 1.0666666667vw;
  transform: scaleX(-1);
}
.page-newsar .page__morebtn {
  margin-top: 10.6666666667vw;
}

@media screen and (min-width: 768px) {
  .page-newsar {
    padding-bottom: 147px;
  }
  .page-newsar .newsar {
    max-width: 1320px;
    padding: 0 20px;
    margin: auto;
  }
  .page-newsar .newsar__list {
    display: flex;
    padding: 0;
    margin-right: -40px;
    margin-top: -40px;
  }
  .page-newsar .newsar__item {
    position: relative;
    width: calc(33.3333333333% - 26.6666666667px);
    margin-top: 80px;
    margin-right: 40px;
  }
  .page-newsar .newsar__item__img {
    position: relative;
  }
  .page-newsar .newsar__item__img::before {
    content: "";
    display: block;
    padding-top: 100%;
  }
  .page-newsar .newsar__item__img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .page-newsar .newsar__item__date {
    margin-top: 16px;
    font-size: 12px;
    font-weight: 400;
    text-align: right;
    font-family: "EB Garamond", serif;
  }
  .page-newsar .newsar__item__ttl {
    margin-top: 32px;
    font-size: 18px;
    font-weight: 700;
    font-family: "Shippori Mincho", serif;
    line-height: 1.3;
  }
  .page-newsar .newsar__item__desc {
    margin-top: 24px;
  }
  .page-newsar .newsar__pagenation {
    margin-top: 10.6666666667vw;
  }
  .page-newsar .newsar__pagenation ul.page-numbers {
    display: flex;
    justify-content: center;
  }
  .page-newsar .newsar__pagenation ul.page-numbers .page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 9.8666666667vw;
    height: 9.8666666667vw;
    margin: 0.5333333333vw;
    border: 1px solid #000000;
    border-radius: 6px;
    font-size: 3.2vw;
    font-weight: 700;
    font-family: "Shippori Mincho", serif;
    line-height: 0;
    color: #000000;
  }
  .page-newsar .newsar__pagenation ul.page-numbers .page-numbers.current {
    background-color: #000000;
    color: #ffffff;
  }
  .page-newsar .newsar__pagenation ul.page-numbers .page-numbers.prev,
  .page-newsar .newsar__pagenation ul.page-numbers .page-numbers.next {
    font-size: 0;
    position: relative;
  }
  .page-newsar .newsar__pagenation ul.page-numbers .page-numbers.prev::before,
  .page-newsar .newsar__pagenation ul.page-numbers .page-numbers.next::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    display: block;
    width: 2.4vw;
    height: 2.4vw;
    background-image: url("../img/common/icon_arrow_7.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .page-newsar .newsar__pagenation ul.page-numbers .page-numbers.prev {
    margin-right: 3.2vw;
  }
  .page-newsar .newsar__pagenation ul.page-numbers .page-numbers.prev::before {
    right: -1.0666666667vw;
  }
  .page-newsar .newsar__pagenation ul.page-numbers .page-numbers.next {
    margin-left: 3.2vw;
  }
  .page-newsar .newsar__pagenation ul.page-numbers .page-numbers.next::before {
    right: 1.0666666667vw;
    transform: scaleX(-1);
  }
  .page-newsar .page__morebtn {
    margin-top: 57px;
  }
}
/* page-news-single
------------------------------------------ */
.page-news-single {
  padding-bottom: 18.6666666667vw;
  background-color: #f5f0e5;
}
.page-news-single .content {
  width: 89.3333333333vw;
  margin: auto;
}
.page-news-single .content__wrap {
  background-color: #ffffff;
  padding: 6.4vw 8.5333333333vw 16vw;
}
.page-news-single .content__date {
  margin-top: 6.4vw;
  font-size: 3.7333333333vw;
  font-family: "EB Garamond", serif;
  color: #707070;
  font-weight: 700;
}
.page-news-single .content__ttl {
  font-size: 4.2666666667vw;
  line-height: 1.5555555556;
  font-weight: bold;
  font-family: "Shippori Mincho", serif;
}
.page-news-single .content__main {
  margin-top: 5.3333333333vw;
}
.page-news-single .content__main p:not(:has(img)) {
  font-size: 3.7333333333vw;
  letter-spacing: 0.1em;
  font-weight: 500;
  line-height: 1.8571428571;
  margin-top: 0.5em;
}
.page-news-single .content__main p:has(img) {
  margin: 8.5333333333vw 0;
}
.page-news-single .content__main p a {
  color: #1571da;
  text-decoration: underline;
}
.page-news-single .content__main h2 {
  font-size: 4.2666666667vw;
  font-weight: 500;
  margin-top: 6.4vw;
}
.page-news-single .content__main blockquote {
  position: relative;
  padding: 12.8vw 5.0666666667vw 5.3333333333vw;
  background-color: #f8f8f8;
  margin: 8.5333333333vw 0;
}
.page-news-single .content__main blockquote::before {
  content: "“";
  position: absolute;
  top: -15%;
  left: 6%;
  font-size: 24vw;
  font-weight: 500;
  color: #b4b4b4;
}
.page-news-single .content__main ol {
  padding-left: 2em;
  counter-reset: number 0;
  margin: 8.5333333333vw 0;
}
.page-news-single .content__main ol li {
  text-indent: -2em;
}
.page-news-single .content__main ol li::before {
  content: counter(number) ".　";
  counter-increment: number 1;
  font-weight: 700;
}
.page-news-single .content__main ul {
  padding-left: 2em;
  margin: 8.5333333333vw 0;
}
.page-news-single .content__main ul li {
  position: relative;
  text-indent: -2em;
}
.page-news-single .content__main ul li::before {
  content: "";
  display: inline-block;
  width: 2.9333333333vw;
  height: 2.9333333333vw;
  background-color: #000000;
  border-radius: 50%;
  margin-right: 1em;
}
.page-news-single .page__morebtn {
  margin-top: 10.6666666667vw;
}

@media screen and (min-width: 768px) {
  .page-news-single {
    padding-bottom: 236px;
  }
  .page-news-single .content {
    max-width: 1040px;
    padding: 0 20px;
    margin: auto;
  }
  .page-news-single .content__wrap {
    padding: 80px;
  }
  .page-news-single .content__date {
    font-size: 18px;
    margin-top: 45px;
  }
  .page-news-single .content__ttl {
    font-size: 32px;
  }
  .page-news-single .content__main {
    margin-top: 30px;
  }
  .page-news-single .content__main p:not(:has(img)) {
    font-size: 16px;
    letter-spacing: 0.1em;
    font-weight: 500;
    line-height: 1.8571428571;
    margin-top: 0.5em;
  }
  .page-news-single .content__main p:has(img) {
    max-width: 480px;
    margin: 40px auto;
  }
  .page-news-single .content__main p a {
    color: #1571da;
    text-decoration: underline;
  }
  .page-news-single .content__main h2 {
    font-size: 24px;
    font-weight: 500;
    margin-top: 40px;
  }
  .page-news-single .content__main blockquote {
    position: relative;
    padding: 30px;
    background-color: #f8f8f8;
    margin: 40px 0;
  }
  .page-news-single .content__main blockquote::before {
    content: "“";
    position: absolute;
    top: -15%;
    left: 6%;
    font-size: 90px;
    font-weight: 500;
    color: #b4b4b4;
  }
  .page-news-single .content__main ol {
    padding-left: 2em;
    counter-reset: number 0;
    margin: 40px 0;
  }
  .page-news-single .content__main ol li {
    text-indent: -2em;
  }
  .page-news-single .content__main ol li::before {
    content: counter(number) ".　";
    counter-increment: number 1;
    font-weight: 700;
  }
  .page-news-single .content__main ul {
    padding-left: 2em;
    margin: 40px 0;
  }
  .page-news-single .content__main ul li {
    position: relative;
    text-indent: -2em;
  }
  .page-news-single .content__main ul li::before {
    content: "";
    display: inline-block;
    width: 11px;
    height: 11px;
    background-color: #000000;
    border-radius: 50%;
    margin-right: 1em;
  }
  .page-news-single .btnarea {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 112px;
  }
  .page-news-single .page__backbtn {
    margin: 0 40px 0 0;
  }
  .page-news-single .page__morebtn {
    margin: 80px auto 0;
  }
}
/* page-notfound
------------------------------------------ */
.page-notfound {
  padding: 0 0 40%;
}
.page-notfound .notfound {
  padding-top: 10%;
}
.page-notfound .notfound__title {
  text-align: center;
  font-size: 4.2666666667vw;
  font-weight: 700;
  line-height: 1.4166666667;
  font-family: "Shippori Mincho", serif;
  letter-spacing: 0.1em;
}
.page-notfound .notfound__description {
  width: 74.6666666667vw;
  margin: 6% auto 14%;
  font-size: 3.7333333333vw;
  color: #000000;
  font-weight: 300;
  text-align: center;
  line-height: 1.7142857143;
}

@media screen and (min-width: 768px) {
  .page-notfound {
    padding: 0 0 182px;
  }
  .page-notfound .notfound__title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
  }
  .page-notfound .notfound__description {
    width: auto;
    margin: 63px 0 162px;
    font-size: 18px;
    text-align: center;
    line-height: 1.5555555556;
    font-weight: 400;
  }
}
/* page-privacy-policy
------------------------------------------ */
.page-privacy-policy {
  padding-bottom: 20%;
  overflow: hidden;
}

.privacy {
  padding: 0 2%;
  margin-top: 12%;
  padding-bottom: 14%;
}
.privacy__item {
  margin-top: 10%;
}
.privacy__item h3 {
  font-size: 4.2666666667vw;
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  margin-bottom: 5%;
}
.privacy__item h4 {
  font-size: 3.7333333333vw;
  font-weight: 600;
  margin-top: 4%;
  margin-bottom: 1%;
}
.privacy__item p + p {
  margin-top: 1em;
}
.privacy__item ol {
  list-style-type: decimal;
  padding-left: 1em;
}
.privacy__item ol li + li {
  margin-top: 0.5em;
}
.privacy__item ol li h4 {
  font-size: 4vw;
}
.privacy__item p + ol {
  margin-top: 1em;
}
.privacy__item table {
  width: 100%;
  border: 1px solid #707070;
}
.privacy__item table tr {
  border-bottom: 1px solid #707070;
}
.privacy__item table th {
  background-color: #dbdbdb;
  padding: 3%;
}
.privacy__item table th:nth-child(1) {
  width: 30%;
  border-right: 1px solid #707070;
}
.privacy__item table td {
  padding: 3%;
}
.privacy__item table td:nth-child(1) {
  border-right: 1px solid #707070;
}
.privacy__item table td ul li {
  position: relative;
  padding-left: 1em;
}
.privacy__item table td ul li::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}
.privacy__item p + table {
  margin-top: 1em;
}
.privacy__item table + p {
  margin-top: 2em;
}

@media screen and (min-width: 768px) {
  .page-privacy-policy {
    padding-bottom: 200px;
    overflow: hidden;
  }
  .privacy {
    padding: 0;
    margin-top: 80px;
    padding-bottom: 90px;
  }
  .privacy__item {
    margin-top: 56px;
  }
  .privacy__item h3 {
    font-size: 28px;
    font-family: "Shippori Mincho", serif;
    font-weight: 700;
    margin-bottom: 24px;
  }
  .privacy__item h4 {
    font-size: 16px;
    margin-top: 16px;
    margin-bottom: 4px;
  }
  .privacy__item p {
    line-height: 2.3;
  }
  .privacy__item p + p {
    margin-top: 1em;
  }
}
/* page-contact
------------------------------------------ */
.page-contact {
  padding-bottom: 22%;
  background-color: #f5f0e5;
}
.page-contact .contact {
  background-color: #ffffff;
  width: 89.3333333333vw;
  padding: 6.4vw 5.3333333333vw 14%;
  margin: auto;
}
.page-contact .contact__tel a {
  color: #1571da;
  text-decoration: underline;
}
.page-contact .contact__tel p + p {
  margin-top: 0.8em;
}
.page-contact .contact__form {
  margin-top: 2em;
}
.page-contact .contact__form__row {
  margin-bottom: 5%;
}
.page-contact .contact__form__head {
  margin-bottom: 2%;
  font-family: "Shippori Mincho", serif;
  font-size: 4.2666666667vw;
  font-weight: 700;
}
.page-contact .contact__form__head label {
  display: flex;
  align-items: center;
}
.page-contact .contact__form__tag {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 10.6666666667vw;
  height: 5.3333333333vw;
  font-family: YakuHanJP, "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  color: #ffffff;
  background-color: #d4ac5a;
  font-size: 3.2vw;
  font-weight: 500;
  line-height: 1;
  margin-left: 8px;
}
.page-contact .contact__form__data input,
.page-contact .contact__form__data textarea {
  width: 100%;
  padding: 3% 3.5%;
  background-color: #ffffff;
  border: 1px solid #dbdbdb;
  border-radius: 5px;
}
.page-contact .contact__form__data .select {
  position: relative;
  border: 1px solid #dbdbdb;
  display: flex;
  align-items: center;
  width: 100%;
  border-radius: 5px;
  line-height: 1.7;
}
.page-contact .contact__form__data .select::after {
  content: "";
  display: block;
  width: 2.9333333333vw;
  height: 2.9333333333vw;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 5%;
  margin: auto;
  pointer-events: none;
  background-image: url("../img/icon_arrow_03_black.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
.page-contact .contact__form__data .select select {
  width: 100%;
  height: 100%;
  padding: 3% 3.5%;
}
.page-contact .contact__form ::-moz-placeholder {
  color: #b4b4b4;
}
.page-contact .contact__form ::placeholder {
  color: #b4b4b4;
}
.page-contact .contact__form__privacy {
  text-align: center;
}
.page-contact .contact__form__privacy .window {
  color: #1571da;
}
.page-contact .contact__form__privacy .window::after {
  content: "";
  display: inline-block;
  width: 0.9em;
  height: 0.9em;
  margin: 0 0.1em;
  background-image: url("../img/icon_window_blue.svg");
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}
.page-contact .contact__form__submit {
  position: relative;
  width: 48.5333333333vw;
  height: 9.6vw;
  margin: 8.5333333333vw auto 0;
}
.page-contact .contact__form__submit input {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 48.5333333333vw;
  height: 9.6vw;
  margin: 0 auto;
  padding-left: 17%;
  font-size: 3.2vw;
  color: #d4ac5a;
  font-family: "Shippori Mincho", serif;
  letter-spacing: 0.1em;
  font-weight: 400;
  line-height: 0;
  border-radius: 1.6vw;
  border: 1px solid #d4ac5a;
}
.page-contact .contact__form__submit::before {
  content: "";
  position: absolute;
  top: 3%;
  bottom: 0;
  right: 7%;
  margin: auto;
  width: 2.6666666667vw;
  height: 2.6666666667vw;
  background-image: url("../img/icon_arrow_01.svg");
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}
.page-contact .contact__form__submit::after {
  content: "";
  position: absolute;
  top: 3%;
  bottom: 0;
  right: 15%;
  width: 4.8vw;
  height: 1px;
  margin: auto;
  transform: rotate(90deg);
  transform-origin: center center;
  background-color: #d4ac5a;
}
.page-contact .contact__form__submit--previous {
  margin: 8.5333333333vw auto -2.6666666667vw;
}
.page-contact .contact__form__submit--previous::before {
  scale: -1;
}
.page-contact .contact__form__confirm {
  margin-bottom: 2em;
}
.page-contact .contact__form__thanks h2 {
  padding-top: 4%;
  font-size: 4.8vw;
  text-align: center;
  font-family: "Shippori Mincho", serif;
  line-height: 1.4;
  font-weight: 700;
}
.page-contact .contact__form__thanks p {
  text-align: center;
  margin-top: 6%;
  margin-bottom: 16%;
}

@media screen and (min-width: 768px) {
  .page-contact {
    padding-bottom: 22%;
    background-color: #f5f0e5;
  }
  .page-contact .contact {
    background-color: #ffffff;
    width: 100%;
    padding: 72px 0 100px;
    margin: auto;
  }
  .page-contact .contact__tel {
    max-width: 680px;
    margin: auto;
  }
  .page-contact .contact__tel a {
    color: #1571da;
    text-decoration: underline;
  }
  .page-contact .contact__tel p + p {
    margin-top: 0.8em;
  }
  .page-contact .contact__form {
    max-width: 680px;
    margin: 40px auto 0;
  }
  .page-contact .contact__form__row {
    margin-bottom: 5%;
  }
  .page-contact .contact__form__head {
    margin-bottom: 10px;
    font-family: "Shippori Mincho", serif;
    font-size: 18px;
    font-weight: 700;
  }
  .page-contact .contact__form__head label {
    display: flex;
    align-items: center;
  }
  .page-contact .contact__form__tag {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 20px;
    font-family: "Shippori Mincho", serif;
    color: #ffffff;
    background-color: #d4ac5a;
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
    margin-left: 10px;
  }
  .page-contact .contact__form__data input,
  .page-contact .contact__form__data textarea {
    width: 100%;
    padding: 10px 16px;
    background-color: #ffffff;
    border: 1px solid #dbdbdb;
    border-radius: 5px;
  }
  .page-contact .contact__form__data .select {
    position: relative;
    display: block;
    border: 1px solid #dbdbdb;
    display: block;
    width: 100%;
    border-radius: 5px;
    line-height: 1.7;
  }
  .page-contact .contact__form__data .select::after {
    content: "";
    display: block;
    width: 11px;
    height: 11px;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 16px;
    margin: auto;
    pointer-events: none;
    background-image: url("../img/icon_arrow_03_black.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
  }
  .page-contact .contact__form__data .select select {
    padding: 10px 16px;
  }
  .page-contact .contact__form ::-moz-placeholder {
    color: #b4b4b4;
  }
  .page-contact .contact__form ::placeholder {
    color: #b4b4b4;
  }
  .page-contact .contact__form__privacy {
    text-align: center;
  }
  .page-contact .contact__form__privacy .window {
    color: #1571da;
  }
  .page-contact .contact__form__privacy .window::after {
    content: "";
    display: inline-block;
    width: 0.9em;
    height: 0.9em;
    margin: 0 0.1em;
    background-image: url("../img/icon_window_blue.svg");
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
  }
  .page-contact .contact__form__btns {
    display: flex;
    justify-content: center;
    margin-top: 80px;
  }
  .page-contact .contact__form__submit {
    position: relative;
    width: 220px;
    height: 40px;
    margin: 0 20px;
  }
  .page-contact .contact__form__submit input {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 220px;
    height: 40px;
    padding-left: 17%;
    font-size: 14px;
    color: #d4ac5a;
    font-family: "Shippori Mincho", serif;
    letter-spacing: 0.1em;
    font-weight: 400;
    line-height: 0;
    border-radius: 6px;
    border: 1px solid #d4ac5a;
  }
  .page-contact .contact__form__submit::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 16px;
    margin: auto;
    width: 10px;
    height: 10px;
    background-image: url("../img/icon_arrow_01.svg");
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
  }
  .page-contact .contact__form__submit::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 37px;
    width: 20px;
    height: 1px;
    margin: auto;
    transform: rotate(90deg);
    transform-origin: center center;
    background-color: #d4ac5a;
  }
  .page-contact .contact__form__submit--previous {
    margin: 0 20px;
  }
  .page-contact .contact__form__submit--previous::before {
    scale: -1;
  }
  .page-contact .contact__form__confirm {
    max-width: 680px;
    margin: auto;
  }
  .page-contact .contact__form__thanks h2 {
    padding-top: 4%;
    font-size: 42px;
    text-align: center;
    font-family: "Shippori Mincho", serif;
    line-height: 1.4;
    font-weight: 700;
  }
  .page-contact .contact__form__thanks p {
    text-align: center;
    margin-top: 47px;
    margin-bottom: 140px;
    letter-spacing: 0.1em;
  }
}
/* page-sitemap
------------------------------------------ */
.page-sitemap {
  padding: 0 0 40%;
}
.page-sitemap .sitemap {
  padding: 0 5.3333333333vw;
  margin-top: 10%;
  margin-bottom: 14%;
}
.page-sitemap .sitemap__item {
  position: relative;
  margin-bottom: 4.2666666667vw;
  font-size: 4.2666666667vw;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-family: "Shippori Mincho", serif;
}

@media screen and (min-width: 768px) {
  .page-sitemap {
    padding: 0 0 134px;
  }
  .page-sitemap .sitemap {
    display: flex;
    max-width: 1080px;
    padding: 0 20px;
    margin: 30px auto 156px;
  }
  .page-sitemap .sitemap__list {
    width: 33.3333333333%;
    height: 164px;
    padding-left: 32px;
    border-left: 1px solid #f8f8f8;
  }
  .page-sitemap .sitemap__item {
    margin-bottom: 38px;
    font-size: 18px;
    padding-left: 16px;
  }
  .page-sitemap .sitemap__item::before {
    width: 6px;
    height: 6px;
  }
}
/* page-sitemap
------------------------------------------ */
.page-company {
  background-color: #f5f0e5;
  padding: 0 0 24%;
}

.company {
  text-align: center;
  margin-bottom: 10%;
}
.company__content {
  margin-top: 5.3333333333vw;
  background-color: #ffffff;
  text-align: left;
  padding: 4.8vw 5.3333333333vw 7.4666666667vw;
}
.company__info {
  position: relative;
  margin-top: -4%;
}
.company__info__item {
  margin-top: 4%;
}
.company__info__item > dt {
  font-family: "Shippori Mincho", serif;
  color: #d4ac5a;
  font-size: 4.2666666667vw;
}
.company__info__item > dd .color-yellow {
  color: #d4ac5a;
}
.company__rule__ttl {
  font-size: 4.8vw;
  font-family: "Shippori Mincho", serif;
  letter-spacing: 0.05em;
  font-weight: 500;
  margin-bottom: -1%;
}
.company__rule__item {
  margin-top: 4%;
}
.company__rule__item > dt {
  font-family: "Shippori Mincho", serif;
  color: #d4ac5a;
  font-size: 4.2666666667vw;
}
.company__rule__item > dd ul {
  padding-left: 4.2666666667vw;
}
.company__rule__item > dd ul li {
  text-indent: -1em;
}
.company__rule__item > dd ul li::before {
  content: "・";
  padding-right: 0.5em;
}

@media screen and (min-width: 768px) {
  .page-company {
    background-color: #f5f0e5;
    padding: 0 0 133px;
  }
  .company {
    text-align: center;
    margin-bottom: 64px;
  }
  .company__content {
    margin-top: 32px;
    background-color: #ffffff;
    text-align: left;
    padding: 56px;
  }
  .company__info {
    position: relative;
    margin-top: -4%;
  }
  .company__info__item {
    display: flex;
    margin-top: 4%;
  }
  .company__info__item > dt {
    font-family: "Shippori Mincho", serif;
    color: #d4ac5a;
    font-size: 18px;
    width: 20%;
    flex-shrink: 0;
    margin-right: 3%;
  }
  .company__info__item > dd .color-yellow {
    color: #d4ac5a;
  }
  .company__rule {
    margin-top: 0;
  }
  .company__rule__ttl {
    font-size: 18px;
    font-family: "Shippori Mincho", serif;
    letter-spacing: 0.05em;
    font-weight: 500;
  }
  .company__rule__item {
    display: flex;
    margin-top: 4%;
  }
  .company__rule__item > dt {
    font-family: "Shippori Mincho", serif;
    color: #d4ac5a;
    font-size: 18px;
    width: 20%;
    flex-shrink: 0;
    margin-right: 3%;
  }
  .company__rule__item > dd ul {
    padding-left: 18px;
  }
  .company__rule__item > dd ul li {
    text-indent: -1em;
  }
  .company__rule__item > dd ul li::before {
    content: "・";
    padding-right: 0.5em;
  }
}