@charset "UTF-8";
/*======================================
    Font size
======================================*/
/*======================================
    media
======================================*/
/*======================================
    color
======================================*/
/*======================================
    font
======================================*/
/*======================================
    animation
======================================*/
@keyframes scrollDown {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  60% {
    opacity: 1;
  }
  90% {
    opacity: 0;
  }
  100% {
    transform: translateY(150%);
    opacity: 0;
  }
}
@keyframes scrollLine {
  0% {
    transform: scale(1, 0);
  }
  100% {
    transform: scale(1, 1);
  }
}
@keyframes pagination {
  0% {
    left: 0;
  }
  100% {
    left: calc(100% - 0.625rem);
  }
}
@keyframes fadeIn {
  0% {
    transform: translateY(2.5rem);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
/*======================================
    mixin
======================================*/
/*======================================
    common
======================================*/
html {
  font-size: 1rem;
  font-family: "Yu Mincho", "游明朝体", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Noto Serif JP", serif;
  color: #1a1a1a;
}

body {
  background-color: #fff;
  background-image: url(../img/common/bg.jpg);
  background-repeat: repeat;
  background-size: 124.875rem 85.875rem;
}
body.is-locked {
  overflow: hidden;
}

img {
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  cursor: pointer;
}

button {
  cursor: pointer;
}

@media (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
  }
}
@media screen and (max-width: 767px) {
  br.is_pc {
    display: none;
  }
}

br.is_sp {
  display: none;
}
@media screen and (max-width: 767px) {
  br.is_sp {
    display: block;
  }
}

.bg_color {
  background-color: rgba(199, 191, 0, 0.08);
}

/*======================================
    layout
======================================*/
.container {
  overflow: hidden;
}

.inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 65rem;
  width: 90%;
}
@media screen and (max-width: 767px) {
  .inner {
    width: 78.67%;
  }
}

.inner_md {
  max-width: 78.75rem;
}
@media screen and (max-width: 767px) {
  .inner_md {
    width: 94.67%;
  }
}

.inner_lg {
  max-width: 88.75rem;
}
@media screen and (max-width: 767px) {
  .inner_lg {
    width: 94.67%;
  }
}

/*======================================
    text
======================================*/
.en {
  font-family: "EB Garamond", serif;
}

.text_vertical {
  writing-mode: vertical-rl;
}

.text_upright {
  text-combine-upright: all;
}

.text_color {
  color: #603813;
}

.sp_space {
  display: inline-block;
  height: 0.5em;
  width: 0.5em;
}
@media screen and (min-width: 768px) {
  .sp_space {
    display: none;
  }
}

.c-link_underline {
  display: inline-block;
  border-bottom: 1px solid rgba(173, 167, 37, 0.5);
}

.c-link_out {
  display: inline-block;
  padding-right: 1em;
  position: relative;
}
.c-link_out:hover::after {
  transform: translate(10%, -60%);
}
.c-link_out::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 0.6em;
  aspect-ratio: 1/1;
  transform: translateY(-50%);
  background: url(../img/common/icon_out.svg) no-repeat center/contain;
  transition: transform 0.3s ease;
}

.kome {
  display: inline-block;
  position: relative;
  padding-left: 1em;
}
.kome::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
  font-weight: inherit;
  color: inherit;
}

.bold {
  font-weight: 700;
}

/*======================================
    section
======================================*/
.section_title_gr {
  display: flex;
  flex-direction: column-reverse;
  row-gap: 0.625rem;
}
@media screen and (max-width: 767px) {
  .section_title_gr {
    row-gap: 0;
  }
}
.section_title_gr.-vertical {
  writing-mode: vertical-rl;
}
@media screen and (max-width: 767px) {
  .section_title_gr.-vertical {
    row-gap: 0.625rem;
  }
  .section_title_gr.-vertical.-sp_center {
    transform: translateX(0.75rem);
  }
}
.section_title_gr.-right {
  align-items: flex-end;
}
.section_title_gr.-center {
  align-items: center;
}
.section_title_gr h2, .section_title_gr h3 {
  font-size: 1.875rem;
  line-height: 1.6666666667;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 767px) {
  .section_title_gr h2, .section_title_gr h3 {
    font-size: 1.3125rem;
  }
}
@media screen and (max-width: 767px) {
  .section_title_gr h2, .section_title_gr h3 {
    line-height: 1.8095238095;
  }
}
.section_title_gr p {
  color: #c7bf00;
  font-size: 1rem;
  line-height: 1.75;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .section_title_gr p {
    font-size: 0.75rem;
    line-height: 1.75;
  }
}

.section_text {
  color: #603813;
  font-size: 0.875rem;
  line-height: 2.2857142857;
  font-weight: 500;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .section_text {
    line-height: 1.7142857143;
    font-feature-settings: "palt";
  }
}

.section_text_en {
  color: #603813;
  font-size: 0.6875rem;
  font-weight: 500;
  font-family: "Jost", sans-serif;
  letter-spacing: 0.02em;
  font-feature-settings: "palt";
  line-height: 1.8181818182;
}

.tab-section {
  filter: drop-shadow(0 0 0.625rem rgba(0, 0, 0, 0.2));
  background-color: #fff;
  overflow: hidden;
}
.tab-section.-bg-color {
  background-color: #e7e7df;
}

.tab-section_head {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  justify-content: center;
  min-height: 17.875rem;
}
@media screen and (max-width: 767px) {
  .tab-section_head {
    min-height: 5rem;
  }
}

.tab-section_head_img {
  grid-column: 1/2;
  grid-row: 1/2;
  height: 100%;
  position: relative;
}
.tab-section_head_img.-dark::before {
  content: "";
  position: absolute;
  top: 0;
  inset: 0;
  background-color: rgba(179, 179, 179, 0.7);
  mix-blend-mode: multiply;
}
.tab-section_head_img img {
  height: 100%;
  object-fit: cover;
}

.tab-section_title {
  grid-column: 1/2;
  grid-row: 1/2;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  row-gap: 1.25rem;
  color: #fff;
  padding: 0.625rem;
}
@media screen and (max-width: 767px) {
  .tab-section_title {
    row-gap: 0.25rem;
  }
}
.tab-section_title h2 {
  font-weight: 500;
  font-size: 1.875rem;
  line-height: 1.3333333333;
  letter-spacing: 0.16em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .tab-section_title h2 {
    font-size: 1.3125rem;
  }
}
.tab-section_title h2 span.sm {
  font-size: 0.9375rem;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .tab-section_title h2 span.sm {
    font-size: 0.75rem;
    margin-top: 0.25rem;
  }
}
@media screen and (max-width: 767px) {
  .tab-section_title h2 {
    font-size: 0.9375rem;
  }
}
.tab-section_title p {
  font-size: 1rem;
  font-family: "EB Garamond", serif;
  letter-spacing: 0.02em;
  line-height: 1.75;
  font-family: "EB Garamond", serif;
}
@media screen and (max-width: 767px) {
  .tab-section_title p {
    font-size: 0.5625rem;
  }
}

.tab-section_body {
  padding: 2.875rem 2.5rem;
}
.tab-section_body .inner {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .tab-section_body {
    padding: 1.25rem;
  }
}

.c-parallax {
  height: 34.375rem;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-parallax {
    height: 9rem;
  }
}

.c-parallax_img {
  position: absolute;
  inset: 0;
  height: 180%;
}
.c-parallax_img img {
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

/*======================================
    button
======================================*/
.button_more {
  display: block;
  width: fit-content;
  font-size: 1.25rem;
  font-family: "EB Garamond", serif;
  letter-spacing: 0.02em;
  padding-left: 1.8em;
  position: relative;
  transition: opacity 0.3s ease;
  line-height: 1.4;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .button_more {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 767px) {
  .button_more {
    font-size: 1rem;
  }
}
.button_more.button_more_right {
  padding-left: 0;
  padding-right: 1.8em;
}
.button_more.button_more_right::before {
  left: unset;
  right: 1px;
}
.button_more:hover {
  opacity: 0.7;
}
.button_more:hover::before {
  transform: translate(0.15em, -50%);
}
.button_more::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 1px;
  transform: translate(0, -50%);
  width: 1.4em;
  aspect-ratio: 1/1;
  background: url(../img/common/icon_arrow_right.svg) no-repeat center/contain;
  transition: transform 0.3s ease;
}
.button_more.-center {
  margin-left: auto;
  margin-right: auto;
}
.button_more.-right {
  margin-left: auto;
}

.button_square {
  background-color: #c7bf00;
  font-size: 1.25rem;
  max-width: 15.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 4.375rem;
  font-family: "Zen Old Mincho", serif;
  font-feature-settings: "palt";
  padding: 0.625rem;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 767px) {
  .button_square {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 767px) {
  .button_square {
    min-height: 2.5rem;
    max-width: 8.875rem;
    font-size: 0.6875rem;
  }
}
.button_square.-center {
  margin-left: auto;
  margin-right: auto;
}
.button_square.-right {
  margin-left: auto;
}
.button_square.button_square_md {
  max-width: 22.25rem;
  min-height: 6.25rem;
}
@media screen and (max-width: 767px) {
  .button_square.button_square_md {
    min-height: 2.5rem;
    max-width: 11.875rem;
  }
}
.button_square.-border {
  border: 1px solid rgba(51, 51, 51, 0.7);
}
.button_square:hover {
  opacity: 0.7;
}
.button_square:hover .arrow::before {
  transform: translate(0.15em, -50%);
}
.button_square .arrow {
  display: inline-block;
  padding-right: 1.8em;
  position: relative;
}
.button_square .arrow.-black::before {
  background-image: url(../img/common/icon_arrow_black.svg);
}
.button_square .arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 1px;
  transform: translate(0, -50%);
  width: 1.4em;
  aspect-ratio: 1/1;
  background: url(../img/common/icon_arrow_right.svg) no-repeat center/contain;
  transition: transform 0.3s ease;
}

.button_underline {
  display: block;
  width: fit-content;
  position: relative;
  padding: 0 1em 0.5em;
  transition: opacity 0.3s ease;
}
.button_underline:hover {
  opacity: 0.7;
}
.button_underline.-center {
  margin-left: auto;
  margin-right: auto;
}
.button_underline.-right {
  margin-left: auto;
}
.button_underline::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: url(../img/common/toc_line_color.svg) repeat-x center/17.5rem 0.1875rem;
}

.fined_button {
  position: fixed;
  right: 1.25rem;
  bottom: min(8.3vh, 5.625rem);
  z-index: 200;
}
@media screen and (max-width: 767px) {
  .fined_button {
    right: 50%;
    bottom: 0.625rem;
    transform: translateX(50%);
  }
}

.fined_button_link {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 62.5rem;
  background-color: #c7bf00;
  font-size: 0.9375rem;
  font-weight: 700;
  font-family: "Zen Old Mincho", serif;
  letter-spacing: 0.1em;
  width: 4.375rem;
  height: 19.125rem;
  position: relative;
  transition: filter 0.3s ease;
}
@media screen and (max-width: 767px) {
  .fined_button_link {
    writing-mode: horizontal-tb;
    font-size: 0.875rem;
    width: 90%;
    max-width: 20.25rem;
    height: 2.5rem;
    border: 1px solid rgba(51, 51, 51, 0.7);
  }
}
.fined_button_link:hover {
  filter: brightness(1.1);
}
.fined_button_link:hover::after {
  transform: translateX(calc(-50% + 0.15em));
}
@media screen and (max-width: 767px) {
  .fined_button_link:hover::after {
    transform: translate(0.15em, -50%);
  }
}
.fined_button_link::before {
  content: "";
  position: absolute;
  top: 1.73em;
  left: 50%;
  transform: translateX(-50%);
  aspect-ratio: 26/20;
  background: url(../img/common/icon_online.svg) no-repeat center/contain;
  width: 1.73em;
}
@media screen and (max-width: 767px) {
  .fined_button_link::before {
    top: 50%;
    transform: translate(-6.875rem, -40%);
    width: 1em;
  }
}
.fined_button_link::after {
  content: "";
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translate(-50%, 0);
  aspect-ratio: 1/1;
  width: 1.867em;
  background: url(../img/common/icon_arrow_right.svg) no-repeat center/contain;
  transition: transform 0.3s ease;
}
@media screen and (max-width: 767px) {
  .fined_button_link::after {
    width: 1rem;
    left: unset;
    right: 1.25rem;
    transform: translateY(-50%);
    bottom: unset;
    top: 50%;
  }
}

.button_top {
  position: fixed;
  bottom: 0.375rem;
  right: 1.25rem;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/1;
  font-size: 0.9375rem;
  font-family: "Zen Old Mincho", serif;
  letter-spacing: 0.02em;
  line-height: 0.9166666667;
  text-align: center;
  width: 4.375rem;
  background-color: #c7bf00;
  border-radius: 50%;
  padding-top: 0.375rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
@media screen and (min-width: 768px) {
  .button_top {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .button_top {
    font-size: 0.75rem;
    width: 2.625rem;
    bottom: 3.75rem;
    right: 1.875rem;
  }
  .button_top.is-show {
    opacity: 1;
    visibility: visible;
  }
}
.button_top:hover {
  opacity: 0.7;
}
.button_top::before {
  content: "";
  position: absolute;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%) rotate(-45deg);
  width: 0.375rem;
  aspect-ratio: 1/1;
  border-top: 1px solid #1a1a1a;
  border-right: 1px solid #1a1a1a;
}
@media screen and (max-width: 767px) {
  .button_top::before {
    top: 0.5rem;
  }
}

/*======================================
    page
======================================*/
.c-page_fv {
  display: grid;
  grid-template-columns: 1fr;
  color: #fff;
  width: 100%;
  align-items: center;
  justify-content: center;
}

.c-page_fv_img {
  grid-column: 1/2;
  grid-row: 1/2;
  height: 32.625rem;
  width: 100%;
}
.c-page_fv_img.-dark {
  position: relative;
}
.c-page_fv_img.-dark::before {
  content: "";
  position: absolute;
  top: 0;
  inset: 0;
  background-color: rgb(179, 179, 179);
  mix-blend-mode: multiply;
}
@media screen and (max-width: 767px) {
  .c-page_fv_img {
    height: 8.5rem;
  }
}
.c-page_fv_img img {
  height: 100%;
  object-fit: cover;
}

.c-page_fv_title {
  grid-column: 1/2;
  grid-row: 1/2;
  position: relative;
  z-index: 2;
  text-align: center;
  font-size: 1.875rem;
  letter-spacing: 0.16em;
  line-height: 1.3333333333;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .c-page_fv_title {
    font-size: 1.3125rem;
  }
}
@media screen and (max-width: 767px) {
  .c-page_fv_title {
    font-size: 1rem;
    line-height: 1.25;
  }
}

/*======================================
    TOC
======================================*/
.c-toc {
  position: sticky;
  top: 5.375rem;
  left: 0;
  width: 100%;
  z-index: 300;
  height: 3.125rem;
  display: flex;
  align-items: center;
  transition: background-color 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
}
.c-toc.active {
  box-shadow: 0 0.625rem 0.625rem rgba(0, 0, 0, 0.2);
}
@media screen and (min-width: 768px) {
  .c-toc.active {
    background-color: #fff;
  }
}
.c-toc.active-drawer {
  opacity: 0;
  visibility: hidden;
}
@media screen and (max-width: 767px) {
  .c-toc {
    top: 3.125rem;
    background-color: #c7bf00;
    overflow: hidden;
  }
  .c-toc .inner {
    width: 94.67%;
  }
}

.c-toc_swiper {
  width: fit-content;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .c-toc_swiper {
    overflow: visible;
  }
}

.c-toc_swiper_slide {
  width: 13.75rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-toc_swiper_slide {
    width: fit-content;
  }
}
.c-toc_swiper_slide::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: url(../img/common/toc_line.svg) repeat-x center/13.75rem 0.125rem;
}
@media screen and (max-width: 767px) {
  .c-toc_swiper_slide::before {
    display: none;
  }
}
.c-toc_swiper_slide.is-active::before {
  background-image: url(../img/common/toc_line_color.svg);
  background-size: 17.5rem 0.125rem;
}
.c-toc_swiper_slide.is-active span.arrow::before {
  border-width: 2px;
  border-color: #c7bf00;
}
@media screen and (max-width: 767px) {
  .c-toc_swiper_slide.is-active .arrow::before {
    opacity: 1;
  }
}

.c-toc_swiper_slide_link {
  display: block;
  height: 1.875rem;
  font-weight: 500;
  text-align: center;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 767px) {
  .c-toc_swiper_slide_link {
    font-size: 1.25rem;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2.5rem;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .c-toc_swiper_slide_link {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 767px) {
  .c-toc_swiper_slide_link:hover {
    opacity: 0.7;
  }
}
@media screen and (min-width: 768px) {
  .c-toc_swiper_slide_link:hover span.arrow::before {
    transform: translateY(calc(-50% + 0.15em)) rotate(45deg);
  }
}
.c-toc_swiper_slide_link span.arrow {
  font-weight: inherit;
  display: inline-block;
  position: relative;
  padding-right: 1.2em;
}
@media screen and (max-width: 767px) {
  .c-toc_swiper_slide_link span.arrow {
    padding-right: 0;
    padding-bottom: 0.5em;
  }
}
.c-toc_swiper_slide_link span.arrow::before {
  content: "";
  position: absolute;
}
@media screen and (min-width: 768px) {
  .c-toc_swiper_slide_link span.arrow::before {
    top: 50%;
    right: 0;
    width: 0.4em;
    aspect-ratio: 1/1;
    border-bottom: 1px solid #1a1a1a;
    border-right: 1px solid #1a1a1a;
    transform: translateY(-50%) rotate(45deg);
    transition: transform 0.3s ease;
  }
}
@media screen and (max-width: 767px) {
  .c-toc_swiper_slide_link span.arrow::before {
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: url(../img/common/toc_line_color.svg) repeat-x center/13.75rem 0.125rem;
    opacity: 0;
  }
}

/*======================================
    parts
======================================*/
.c-list-disc li {
  padding-left: 1.25em;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-list-disc li {
    padding-left: 1em;
  }
}
.c-list-disc li::before {
  content: "";
  position: absolute;
  top: 1em;
  left: 0;
  transform: translateY(-50%);
  width: 0.875rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #c7bf00;
}
@media screen and (max-width: 767px) {
  .c-list-disc li::before {
    width: 0.625rem;
    top: 0.75em;
  }
}

/*======================================
    animation
======================================*/
.fadeIn {
  transform: translateY(2.5rem);
  opacity: 0;
}
.fadeIn.trigger {
  animation: fadeIn 1s ease forwards;
}

/*======================================
    modal
======================================*/
.modal-open {
  cursor: pointer;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 300;
  color: #fff;
  transition: transform 0.3s ease, background-color 0.3s ease, filter 0.3s ease, color 0.3s ease;
}
.header.active {
  background-color: #fff;
  filter: drop-shadow(0 0 0.625rem rgba(0, 0, 0, 0.2));
  color: #1a1a1a;
}
.header.active .h_logo {
  writing-mode: horizontal-tb;
  align-self: center;
  margin-top: 0;
}
.header.active .h_icon_bar {
  background-color: rgba(0, 0, 0, 0.5);
}
.header.active-drawer, .header.active.active-drawer {
  color: #1a1a1a;
}
@media screen and (min-width: 768px) {
  .header.active-drawer, .header.active.active-drawer {
    background-color: unset;
    filter: none;
  }
  .header.active-drawer .h_logo, .header.active.active-drawer .h_logo {
    writing-mode: vertical-rl;
    align-self: flex-start;
    margin-top: 1.25rem;
  }
}
.header.active-drawer .h_icon_bar, .header.active.active-drawer .h_icon_bar {
  background-color: rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 767px) {
  .header.active-drawer, .header.active.active-drawer {
    background-color: #fff;
    filter: drop-shadow(0 0 0.625rem rgba(0, 0, 0, 0.2));
    color: #1a1a1a;
  }
  .header.active-drawer .h_logo, .header.active.active-drawer .h_logo {
    writing-mode: horizontal-tb;
    align-self: center;
    margin-top: 0;
  }
}

.h_inner {
  height: 5.375rem;
  display: flex;
  align-items: center;
  padding: 0 1.25rem;
}
@media screen and (max-width: 767px) {
  .h_inner {
    height: 3.125rem;
    padding: 0 0.625rem;
  }
}

.h_logo {
  font-size: 1.25rem;
  font-family: "Zen Old Mincho", serif;
  letter-spacing: 0.22em;
  margin-left: 1.25rem;
  align-self: flex-start;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .h_logo {
    font-size: 0.75rem;
    margin-left: 0;
    margin-top: 0.625rem;
  }
}
.h_logo a {
  font-weight: inherit;
  display: block;
  white-space: nowrap;
}

.h_icon {
  display: block;
  margin-left: auto;
  width: 4rem;
}
@media screen and (max-width: 767px) {
  .h_icon {
    width: 2.5rem;
  }
}
.h_icon.active-drawer .h_icon_bar.bar1, .h_icon.active-drawer .h_icon_bar.bar2, .h_icon.active-drawer .h_icon_bar.bar3 {
  top: 50%;
}
.h_icon.active-drawer .h_icon_bar.bar1, .h_icon.active-drawer .h_icon_bar.bar2 {
  transform: translate(-50%, -50%) rotate(20deg);
}
.h_icon.active-drawer .h_icon_bar.bar3 {
  transform: translate(-50%, -50%) rotate(-20deg);
}

.h_icon_bars {
  width: 100%;
  height: 1.375rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .h_icon_bars {
    height: 0.875rem;
  }
}

.h_icon_bar {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 1px;
  background-color: #fff;
  transition: transform 0.3s ease, top 0.3s ease, background-color 0.3s ease;
}
.h_icon_bar.bar2 {
  top: 50%;
}
.h_icon_bar.bar3 {
  top: 100%;
}

.h_icon_text {
  margin-top: 0.625rem;
  text-align: center;
  font-size: 1.25rem;
  font-family: "EB Garamond", serif;
  letter-spacing: 0.03em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .h_icon_text {
    font-size: 0.75rem;
    margin-top: 0.25rem;
  }
}

/*======================================
    drawer
======================================*/
.drawer {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  z-index: 299;
  display: flex;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.drawer.active-drawer {
  opacity: 1;
  visibility: visible;
}
@media screen and (max-width: 767px) {
  .drawer {
    display: block;
  }
}

.d_img {
  height: 100%;
  flex: 1;
}
.d_img img {
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}
@media screen and (max-width: 767px) {
  .d_img {
    display: none;
  }
}

.d_contents {
  width: 100%;
  max-width: 45rem;
  height: 100svh;
  position: relative;
  overflow: auto;
  z-index: 1;
}

.d_contents_wrap {
  padding: 6.875rem 0 3.75rem;
  background-image: url(../img/common/bg.jpg);
  background-repeat: repeat;
  background-size: 124.875rem 85.875rem;
  position: relative;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .d_contents_wrap {
    padding: 3.75rem 0;
  }
}
.d_contents_wrap::before {
  content: "";
  position: absolute;
  top: 0;
  inset: 0;
  background-color: rgba(199, 191, 0, 0.08);
}

.d_contents_inner {
  max-width: 34.625rem;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.d_nav_list {
  padding: 1.625rem 0;
  display: flex;
  justify-content: space-between;
  column-gap: 3.75rem;
  flex-wrap: wrap;
  row-gap: 0.625rem;
  position: relative;
}
.d_nav_list::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: url(../img/common/toc_line_color.svg) repeat-x center/17.5rem 0.1875rem;
}
.d_nav_list a {
  transition: opacity 0.3s ease;
}
.d_nav_list a:hover {
  opacity: 0.7;
}

.d_nav_list_link {
  display: block;
  font-size: 1rem;
  font-family: "Zen Old Mincho", serif;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
.d_nav_list_link .en {
  display: block;
  font-size: 0.75rem;
  color: #ada725;
  font-family: "EB Garamond", serif;
  letter-spacing: 0.02em;
  line-height: 1.7142857143;
}

.d_nav_sub_lists {
  min-width: 18.75rem;
  display: grid;
  grid-template-columns: auto 10.125rem;
  column-gap: 1.25rem;
}

.d_nav_sub_list_link {
  display: block;
  line-height: 1.7142857143;
  font-feature-settings: "palt";
  padding-left: 1em;
  font-size: 0.875rem;
  position: relative;
}
.d_nav_sub_list_link::before {
  content: "";
  position: absolute;
  top: 0.85em;
  left: 0;
  transform: translateY(-50%);
  width: 0.5em;
  height: 1px;
  background-color: #1a1a1a;
}

.d_links {
  margin-top: 3.125rem;
}

.d_link {
  min-height: 3.875rem;
  font-size: 0.875rem;
  min-width: 15.125rem;
}

.d_privacy {
  display: block;
  font-size: 0.75rem;
  font-family: "Zen Old Mincho", serif;
  font-weight: 300;
  text-decoration: underline;
  margin-top: 2.5rem;
  transition: opacity 0.3s ease;
}
.d_privacy:hover {
  opacity: 0.7;
}

.d_sns_wrap.f_sns_wrap {
  margin-top: 1.25rem;
}

.footer {
  padding: 10rem 0 5rem;
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 1.5rem 0 4.375rem;
  }
}

.f_wrap {
  display: flex;
  flex-direction: row-reverse;
  column-gap: 3.75rem;
}
@media screen and (max-width: 767px) {
  .f_wrap {
    column-gap: 2.5rem;
  }
}

.f_head_name {
  font-family: "Zen Old Mincho", serif;
  font-size: 1.875rem;
  letter-spacing: 0.22em;
}
@media screen and (max-width: 767px) {
  .f_head_name {
    font-size: 1.3125rem;
  }
}
@media screen and (max-width: 767px) {
  .f_head_name {
    font-size: 0.8125rem;
  }
}

.f_head_text {
  line-height: 1.75;
  font-family: "Zen Old Mincho", serif;
  font-size: 1.25rem;
  letter-spacing: 0.22em;
  line-height: 1.75;
  margin-right: 2.5rem;
  color: #603813;
}
@media screen and (max-width: 767px) {
  .f_head_text {
    font-size: 0.875rem;
  }
}
.f_head_text .text_upright {
  display: inline-block;
  transform: translateX(-10%);
}
.f_head_text span.line {
  transform: translateX(16%);
  display: inline-block;
  margin-top: 0.3em;
}
@media screen and (max-width: 767px) {
  .f_head_text {
    font-size: 0.75rem;
    line-height: 1.75;
    letter-spacing: 0.04em;
    margin-right: 0.75rem;
  }
}

.f_head_map {
  display: block;
  padding-top: 1.9em;
  position: relative;
  transition: opacity 0.3s ease;
}
.f_head_map:hover {
  opacity: 0.7;
}
.f_head_map:hover::before {
  transform: translate(-50%, 0.15em);
}
.f_head_map::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1em;
  aspect-ratio: 20/26;
  background: url(../img/common/icon_pin.svg) no-repeat center/contain;
  transition: transform 0.3s ease;
}

.f_body {
  padding-top: 1.25rem;
  flex: 1;
}
@media screen and (max-width: 767px) {
  .f_body {
    padding-top: 0;
  }
}

.f_links {
  display: flex;
  flex-wrap: wrap;
  column-gap: 1.75rem;
  row-gap: 0.875rem;
}

.f_link {
  width: 22.25rem;
}

.f_infos {
  margin-top: 8.125rem;
}
@media screen and (max-width: 767px) {
  .f_infos {
    margin-top: 1.25rem;
  }
}

.f_info {
  display: grid;
  grid-template-columns: 4rem auto;
}
@media screen and (max-width: 767px) {
  .f_info {
    grid-template-columns: 1.75rem auto;
  }
}
.f_info dt, .f_info dd {
  font-size: 1rem;
  line-height: 1.75;
  letter-spacing: 0.02em;
  font-family: "EB Garamond", serif;
}
@media screen and (max-width: 767px) {
  .f_info dt, .f_info dd {
    font-size: 0.8125rem;
    line-height: 1.7692307692;
  }
}
.f_info dt a, .f_info dd a {
  font-weight: inherit;
}

.f_sns_wrap {
  margin-top: 2.5rem;
  display: flex;
  column-gap: 1.25rem;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .f_sns_wrap {
    column-gap: 1rem;
    margin-top: 1.25rem;
  }
}

.f_sns_link {
  display: block;
  width: 1.5625rem;
  transition: opacity 0.3s ease;
}
.f_sns_link:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .f_sns_link {
    width: 1.875rem;
  }
}

.f_copy {
  font-size: 0.6875rem;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .f_copy {
    margin-top: 1.875rem;
  }
}
.f_copy small {
  font-size: inherit;
  font-weight: 500;
  letter-spacing: 0.02em;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}

/*======================================
    top
======================================*/
.t-fv {
  display: grid;
  grid-template-columns: 1fr;
  color: #fff;
}

.t-fv_imgs {
  grid-column: 1/2;
  grid-row: 1/2;
  position: relative;
  z-index: 1;
  height: 100svh;
  min-width: 0;
}
@media screen and (max-width: 767px) {
  .t-fv_imgs::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(to bottom, #7d7d7d, rgba(255, 255, 255, 0));
    mix-blend-mode: multiply;
  }
}

.t-fv_swiper_slide {
  background-image: url(../img/common/bg.jpg);
  background-repeat: repeat;
  background-size: 124.875rem 85.875rem;
}

.t-fv_swiper_slide_img {
  height: 100svh;
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 60%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 60%, transparent 100%);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}
@media screen and (max-width: 767px) {
  .t-fv_swiper_slide_img {
    height: 100svh;
  }
}
.t-fv_swiper_slide_img img {
  height: 100%;
  object-fit: cover;
}

.t-fv_inner {
  grid-column: 1/2;
  grid-row: 1/2;
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.t-fv_text {
  max-width: 11.125rem;
  margin-left: auto;
  margin-right: auto;
  justify-self: center;
  margin-top: min(18.0555555556vw, 16.25rem);
}
@media screen and (max-width: 767px) {
  .t-fv_text {
    max-width: 6.25rem;
    margin-top: min(44vw, 10.3125rem);
  }
}

.t-fv_scroll {
  text-align: center;
  display: flex;
  column-gap: 0.625rem;
  align-items: center;
  font-size: 1.25rem;
  font-family: "EB Garamond", serif;
  letter-spacing: 0.02em;
  line-height: 1.75;
  margin-top: auto;
  margin-bottom: 6.25rem;
}
@media screen and (max-width: 767px) {
  .t-fv_scroll {
    margin-bottom: 5rem;
  }
}
.t-fv_scroll .icon {
  display: block;
  width: 1px;
  height: 8.75rem;
  background-color: #fff;
  animation: scrollLine 2s ease infinite;
  transform-origin: center top;
}

@media screen and (max-width: 767px) {
  .t-intro {
    position: relative;
    z-index: 2;
  }
}

.t-intro_head {
  display: grid;
  grid-template-columns: 22.75rem auto;
}
@media screen and (max-width: 767px) {
  .t-intro_head {
    display: flex;
    flex-direction: column;
    row-gap: 1.25rem;
  }
}

.t-intro_head_title {
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .t-intro_head_title {
    transform: translateX(-0.5rem);
  }
  .t-intro_head_title .section_title_gr {
    row-gap: 2.875rem;
  }
  .t-intro_head_title .section_title_gr h2 {
    padding-top: 1em;
    letter-spacing: 0.3em;
  }
}
@media screen and (max-width: 767px) {
  .t-intro_head_title {
    display: flex;
    justify-content: center;
  }
  .t-intro_head_title .section_title_gr {
    row-gap: 1.25rem;
  }
  .t-intro_head_title .section_title_gr h2 {
    padding-top: 1.5em;
  }
}

.t-intro_img {
  aspect-ratio: 674/416;
  align-self: flex-end;
}
@media screen and (min-width: 768px) {
  .t-intro_img {
    padding-bottom: 3.125rem;
  }
}
.t-intro_img img {
  height: 100%;
  object-fit: cover;
}

.t-intro_body {
  display: grid;
  grid-template-columns: 58.65% auto;
  margin-top: 8.75rem;
}
@media screen and (max-width: 767px) {
  .t-intro_body {
    display: flex;
    flex-direction: column-reverse;
    margin-top: 1.5rem;
  }
}

.t-intro_body_imgs {
  min-width: 0;
  max-width: min(32rem, 90%);
}
@media screen and (max-width: 767px) {
  .t-intro_body_imgs {
    max-width: 100%;
    margin-top: 1.625rem;
  }
}

.t-intro_body_img:nth-child(n+2) {
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .t-intro_body_img:nth-child(n+2) {
    margin-top: 0.625rem;
  }
}

.t-intro_body_texts {
  min-width: 0;
  display: flex;
  flex-direction: column;
  row-gap: 2.25rem;
}
@media screen and (max-width: 767px) {
  .t-intro_body_texts {
    row-gap: 1rem;
  }
}

.t-intro_body_en {
  max-width: 20rem;
  font-feature-settings: "palt";
  letter-spacing: 0.02em;
  line-height: 1.7272727273;
}
@media screen and (max-width: 767px) {
  .t-intro_body_en {
    font-size: 0.8125rem;
    line-height: 1.2307692308;
  }
}

.t-ama {
  margin-top: 11.875rem;
}
@media screen and (max-width: 767px) {
  .t-ama {
    margin-top: 1.875rem;
  }
}

.t-ama_wrap {
  display: grid;
  grid-template-columns: 22.5rem auto;
  column-gap: 2.5rem;
  row-gap: 7.125rem;
}
@media screen and (max-width: 767px) {
  .t-ama_wrap {
    display: block;
  }
}

.t-ama_texts {
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .t-ama_texts {
    display: contents;
  }
}
.t-ama_texts .section_title_gr {
  text-align: center;
}

.t-ama_title {
  grid-column: 1/2;
  grid-row: 1/2;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.t-ama_text {
  grid-column: 1/2;
  grid-row: 2/3;
}
@media screen and (min-width: 768px) {
  .t-ama_text .section_text {
    line-height: 2;
  }
}
@media screen and (max-width: 767px) {
  .t-ama_text {
    writing-mode: horizontal-tb;
    margin-top: 1.25rem;
  }
}

.t-ama_map {
  max-width: 18.25rem;
  grid-column: 1/2;
  grid-row: 3/4;
}
@media screen and (max-width: 767px) {
  .t-ama_map {
    width: 56%;
    position: absolute;
    bottom: 0;
    right: 0.625rem;
    transform: translateY(106%);
    z-index: 2;
  }
}

.t-ama_img {
  max-width: 35.875rem;
  margin-left: auto;
  grid-column: 2/3;
  grid-row: 2/4;
}
@media screen and (max-width: 767px) {
  .t-ama_img {
    max-width: 100%;
    margin-top: 1.875rem;
  }
}

.t-gallery {
  margin-top: 18.125rem;
}
@media screen and (max-width: 767px) {
  .t-gallery {
    margin-top: 1.25rem;
  }
}

.t-gallery_swiper .swiper-wrapper {
  transition-timing-function: linear;
}

.t-gallery_swiper_slide {
  aspect-ratio: 424/300;
  width: 26.5rem;
}
@media screen and (max-width: 767px) {
  .t-gallery_swiper_slide {
    width: 9.125rem;
  }
}
.t-gallery_swiper_slide img {
  height: 100%;
  object-fit: cover;
}

.t-gallery_swiper_buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 0.875rem;
  margin-top: 4.375rem;
}
@media screen and (max-width: 767px) {
  .t-gallery_swiper_buttons {
    display: none;
  }
}

.t-gallery_swiper_button {
  width: 2.75rem;
  aspect-ratio: 1/1;
  background-repeat: no-repeat;
  background-size: contain;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.t-gallery_swiper_button:hover {
  opacity: 0.7;
}

.t-gallery_swiper_button_prev {
  background-image: url(../img/common/icon_arrow_prev.svg);
}

.t-gallery_swiper_button_next {
  background-image: url(../img/common/icon_arrow_next.svg);
}

.t-learning {
  margin-top: 11.875rem;
}
@media screen and (max-width: 767px) {
  .t-learning {
    margin-top: 3.125rem;
  }
}

.t-learning_head {
  width: fit-content;
  margin-left: auto;
}

.t-learning_head_lead {
  margin-top: 2.125rem;
}
@media screen and (max-width: 767px) {
  .t-learning_head_lead {
    margin-top: 0;
    text-align: right;
  }
}

.t-learning_lists {
  max-width: 90rem;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 1.25rem;
  margin-top: 8.125rem;
}
@media screen and (max-width: 767px) {
  .t-learning_lists {
    margin-top: 1.25rem;
    column-gap: 0;
    width: 94.67%;
  }
}

@media screen and (min-width: 768px) {
  .t-learning_list:nth-child(1) .t-learning_list_head {
    transform: translateX(70%);
  }
  .t-learning_list:nth-child(2) .t-learning_list_head {
    transform: translateX(16%);
  }
  .t-learning_list:nth-child(3) .t-learning_list_head {
    transform: translateX(-40%);
  }
  .t-learning_list:nth-child(4) .t-learning_list_head {
    transform: translateX(-92%);
  }
}

.t-learning_list_link {
  display: block;
  transition: opacity 0.3s ease;
}
.t-learning_list_link:hover {
  opacity: 0.7;
}
.t-learning_list_link:hover .t-learning_list_more::before {
  transform: translate(-50%, 0.15em);
}
.t-learning_list_link:hover .t-learning_list_img img {
  transform: scale(1.05);
}

.t-learning_list_head {
  display: flex;
  column-gap: 1.25rem;
  justify-content: space-between;
  align-items: center;
  height: 24.375rem;
  position: relative;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1.25rem 2.25rem;
}
@media screen and (max-width: 767px) {
  .t-learning_list_head {
    height: 16.25rem;
    padding: 0 0.625rem 1.5rem;
  }
}
.t-learning_list_head::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0.125rem;
  height: calc(100% + 2.5rem);
  background: url(../img/top/learning_line.svg) repeat-y center/cover;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .t-learning_list_head::before {
    height: calc(100% + 0.625rem);
  }
}

.t-learning_list_title {
  font-size: 1.25rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .t-learning_list_title {
    font-size: 0.875rem;
  }
}

.t-learning_list_more {
  font-size: 1.25rem;
  font-family: "EB Garamond", serif;
  letter-spacing: 0.02em;
  padding-top: 1.9em;
  position: relative;
}
@media screen and (max-width: 767px) {
  .t-learning_list_more {
    font-size: 0.875rem;
  }
}
.t-learning_list_more::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  width: 1.4em;
  aspect-ratio: 1/1;
  background: url(../img/common/icon_arrow_down.svg) no-repeat center/contain;
  transition: transform 0.3s ease;
}

.t-learning_list_img {
  overflow: hidden;
  aspect-ratio: 344/480;
}
@media screen and (max-width: 767px) {
  .t-learning_list_img {
    aspect-ratio: 88/188;
  }
}
.t-learning_list_img img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.t-learning_more {
  margin-top: 4.375rem;
}
@media screen and (max-width: 767px) {
  .t-learning_more {
    margin-top: 1.5rem;
  }
}

.t-people {
  margin-top: 6.25rem;
  padding: 3.75rem 0 6.875rem;
}
@media screen and (max-width: 767px) {
  .t-people {
    margin-top: 1.875rem;
    padding: 1.875rem 0 3.125rem;
  }
  .t-people .section_title_gr {
    row-gap: 0.625rem;
  }
  .t-people .section_title_gr h2 {
    letter-spacing: 0.1em;
  }
}

.t-people_section {
  margin-top: 6.875rem;
}
@media screen and (max-width: 767px) {
  .t-people_section {
    margin-top: 3.5rem;
  }
}
.t-people_section.-staff {
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .t-people_section.-staff {
    margin-top: 1rem;
  }
}

.t-people_section_title {
  font-size: 1.5625rem;
  font-weight: 500;
  color: #603813;
  letter-spacing: 0.16em;
  text-align: center;
  font-feature-settings: "palt";
  margin-bottom: 4.375rem;
}
@media screen and (max-width: 767px) {
  .t-people_section_title {
    font-size: 1.25rem;
    margin-bottom: 1.625rem;
  }
}

.t-people_staff_wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 3.125rem;
  row-gap: 3.5rem;
}
@media screen and (max-width: 767px) {
  .t-people_staff_wrap {
    column-gap: 0.625rem;
    row-gap: 1.5rem;
  }
}

.t-people_staff_pickup {
  display: grid;
  grid-template-columns: 46.15% auto;
  column-gap: 3.75rem;
  min-width: 0;
  grid-column: 1/3;
  grid-row: 1/2;
}
@media screen and (max-width: 767px) {
  .t-people_staff_pickup {
    grid-template-columns: 1fr;
  }
}

.t-people_staff_pickup_img {
  aspect-ratio: 480/300;
}
.t-people_staff_pickup_img img {
  height: 100%;
  object-fit: cover;
}

.t-people_staff_pickup_texts {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .t-people_staff_pickup_texts .t-people_intro {
    margin-top: 0.375rem;
  }
}

.t-people_intro {
  font-size: 0.625rem;
  font-weight: 500;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  letter-spacing: 0.02em;
  margin-bottom: 0.75rem;
  color: #4d4d4d;
}
@media screen and (max-width: 767px) {
  .t-people_intro {
    margin-bottom: 0.5rem;
  }
}

.t-people_name {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  column-gap: 1em;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .t-people_name {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 767px) {
  .t-people_name {
    letter-spacing: 0.02em;
  }
}
.t-people_name .en {
  display: block;
  font-size: 0.5em;
  font-family: "Jost", sans-serif;
  letter-spacing: 0.2em;
  font-weight: 500;
  color: #603813;
}
@media screen and (max-width: 767px) {
  .t-people_name .en {
    font-size: 0.625rem;
  }
}

.t-people_excerpt {
  line-height: 2;
  letter-spacing: 0.04em;
  margin-bottom: 1.25rem;
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .t-people_excerpt {
    letter-spacing: normal;
    font-size: 0.8125rem;
    line-height: 1.6153846154;
    margin-top: 0.625rem;
    margin-bottom: 0.625rem;
  }
}

.t-people_more {
  margin-top: auto;
}

.t-people_staff_list {
  display: grid;
  grid-template-columns: 43% auto;
  column-gap: 2.5rem;
  min-width: 0;
}
@media screen and (max-width: 767px) {
  .t-people_staff_list {
    grid-template-columns: 1fr;
    row-gap: 0.625rem;
  }
}

.t-people_staff_list_img {
  aspect-ratio: 214/286;
}
@media screen and (max-width: 767px) {
  .t-people_staff_list_img {
    aspect-ratio: 144/90;
  }
}
.t-people_staff_list_img img {
  height: 100%;
  object-fit: cover;
}

.t-people_staff_list_texts {
  display: flex;
  flex-direction: column;
}

.t-people_card_swiper_wrap {
  position: relative;
  display: grid;
  grid-template-columns: 4.375rem auto 4.375rem;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .t-people_card_swiper_wrap {
    grid-template-columns: auto 5.75rem;
    row-gap: 1.25rem;
  }
}

.t-people_card_swiper {
  min-width: 0;
  width: 100%;
  max-width: 65rem;
  margin-left: auto;
  margin-right: auto;
  grid-column: 2/3;
  grid-row: 1/2;
}
@media screen and (max-width: 767px) {
  .t-people_card_swiper {
    grid-column: 1/3;
    grid-row: 1/2;
  }
}

.t-people_card_swiper_slide {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .t-people_card_swiper_slide {
    width: 20.75rem;
  }
}
@media screen and (max-width: 767px) {
  .t-people_card_swiper_slide {
    padding-bottom: 0.625rem;
  }
}
.t-people_card_swiper_slide .t-people_intro {
  margin-top: 1.25rem;
  margin-bottom: 0.25rem;
}
@media screen and (max-width: 767px) {
  .t-people_card_swiper_slide .t-people_intro {
    margin-top: 0.625rem;
  }
}
.t-people_card_swiper_slide .t-people_name {
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .t-people_card_swiper_slide .t-people_name {
    margin-bottom: 0.5rem;
  }
}
.t-people_card_swiper_slide:hover .t-people_card_swiper_slide_img img {
  transform: scale(1.05);
}
.t-people_card_swiper_slide:hover .button_more::before {
  transform: translate(0.15em, -50%);
}

.t-people_card_swiper_slide_img {
  aspect-ratio: 336/210;
  overflow: hidden;
}
.t-people_card_swiper_slide_img img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.t-people_swiper_pagination_wrap {
  position: relative;
  max-width: 25rem;
  width: 100%;
  width: 25rem;
  display: flex;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  grid-column: 1/4;
  grid-row: 2/3;
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .t-people_swiper_pagination_wrap {
    grid-column: 1/2;
    grid-row: 2/3;
    max-width: 100%;
    width: 100%;
    margin-top: 0;
    height: 100%;
  }
}

.t-people_swiper_pagination_dot {
  position: absolute;
  left: 0;
  top: 50%;
  width: 0.625rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #333333;
  transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform;
}

.t-people_swiper_pagination {
  width: 100%;
  position: static !important;
  display: flex;
}
@media screen and (max-width: 767px) {
  .t-people_swiper_pagination {
    display: flex;
    align-items: center;
  }
}
.t-people_swiper_pagination .swiper-pagination-bullet {
  border-radius: 0;
  width: auto;
  height: 1px;
  background: #333333;
  opacity: 1;
  display: block;
  flex: 1;
  margin: 0 !important;
  position: relative;
}
.t-people_swiper_pagination .swiper-pagination-bullet::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  display: none;
}
.t-people_swiper_pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  display: block;
  animation-name: pagination;
  animation-duration: 1s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
  animation-direction: alternate;
}

.t-people_card_swiper_buttons {
  grid-column: 2/3;
  grid-row: 2/3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .t-people_card_swiper_buttons {
    display: contents;
  }
}

.t-people_card_swiper_button {
  width: 3.5rem;
  aspect-ratio: 1/1;
  background-repeat: no-repeat;
  background-size: contain;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .t-people_card_swiper_button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
}
@media screen and (max-width: 767px) {
  .t-people_card_swiper_button {
    width: 2.5rem;
  }
}

.t-people_card_swiper_button_prev {
  background-image: url(../img/common/icon_arrow_prev.svg);
  grid-column: 1/2;
  grid-row: 1/2;
}
@media screen and (min-width: 768px) {
  .t-people_card_swiper_button_prev {
    left: 0;
  }
}

.t-people_card_swiper_button_next {
  background-image: url(../img/common/icon_arrow_next.svg);
  grid-column: 3/4;
  grid-row: 1/2;
}
@media screen and (min-width: 768px) {
  .t-people_card_swiper_button_next {
    right: 0;
  }
}

.t-voice {
  margin-top: 10.875rem;
}
@media screen and (max-width: 767px) {
  .t-voice {
    margin-top: 3.125rem;
  }
  .t-voice .section_title_gr h2 {
    line-height: 1;
  }
}

.t-voice_wrap {
  margin-right: calc(50% - 50vw);
  display: flex;
}

.t-voice_head {
  width: 11rem;
}
@media screen and (max-width: 767px) {
  .t-voice_head {
    width: 4.125rem;
  }
}

.t-voice_swiper_buttons {
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
  margin-top: 6rem;
}
@media screen and (max-width: 767px) {
  .t-voice_swiper_buttons {
    row-gap: 0.625rem;
    margin-top: 1.875rem;
  }
}

.t-voice_swiper_button {
  width: 2.75rem;
  aspect-ratio: 1/1;
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
}
@media screen and (max-width: 767px) {
  .t-voice_swiper_button {
    width: 1.875rem;
  }
}

.t-voice_swiper_button_prev {
  background-image: url(../img/common/icon_arrow_prev.svg);
}

.t-voice_swiper_button_next {
  background-image: url(../img/common/icon_arrow_next.svg);
}

.t-voice_body {
  width: calc(100% - 11rem);
  margin-top: 4.375rem;
}
@media screen and (max-width: 767px) {
  .t-voice_body {
    width: calc(100% - 4.125rem);
    margin-top: 0.375rem;
  }
}

.t-voice_swiper {
  width: 100%;
}

.t-voice_swiper_slide {
  width: 20.75rem;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .t-voice_swiper_slide {
    width: 12.5rem;
    padding-bottom: 0.625rem;
  }
}
.t-voice_swiper_slide .t-people_intro {
  margin-top: 1.25rem;
  margin-bottom: 0.25rem;
}
@media screen and (max-width: 767px) {
  .t-voice_swiper_slide .t-people_intro {
    margin-top: 0.625rem;
  }
}
.t-voice_swiper_slide .t-people_name {
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .t-voice_swiper_slide .t-people_name {
    margin-bottom: 0.375rem;
  }
}
.t-voice_swiper_slide:hover .t-voice_swiper_slide_img img {
  transform: scale(1.05);
}
.t-voice_swiper_slide:hover .button_more::before {
  transform: translate(0.15em, -50%);
}

.t-voice_swiper_slide_img {
  aspect-ratio: 336/210;
  overflow: hidden;
}
.t-voice_swiper_slide_img img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.t-voice_swiper_slide_lead {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5555555556;
  color: #603813;
}
@media screen and (max-width: 767px) {
  .t-voice_swiper_slide_lead {
    font-size: 0.8125rem;
    line-height: 1.3846153846;
  }
}

.t-voice_swiper_slide_excerpt {
  color: #4d4d4d;
  line-height: 2;
  margin-top: 1.25rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 767px) {
  .t-voice_swiper_slide_excerpt {
    font-size: 0.75rem;
    line-height: 1.5;
    font-feature-settings: "palt";
    -webkit-line-clamp: 4;
    max-width: 8.75rem;
    margin-top: 0.375rem;
    margin-bottom: 0.625rem;
  }
}

.t-handbook {
  margin-top: 9.375rem;
}
@media screen and (max-width: 767px) {
  .t-handbook {
    margin-top: 2.5rem;
  }
}

.t-handbook_wrap {
  display: grid;
  grid-template-columns: 10rem auto;
  column-gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .t-handbook_wrap {
    grid-template-columns: 1fr;
    row-gap: 0.625rem;
  }
}

.t-handbook_lists {
  max-width: 50rem;
  margin-left: auto;
}

.t-handbook_list {
  border-bottom: 1px solid rgba(51, 51, 51, 0.7);
}
.t-handbook_list:first-child {
  border-top: 1px solid rgba(51, 51, 51, 0.7);
}

.t-handbook_list_link {
  display: flex;
  align-items: center;
  align-content: center;
  min-height: 6.25rem;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 767px) {
  .t-handbook_list_link {
    min-height: 4.25rem;
    flex-wrap: wrap;
    row-gap: 0;
    padding-right: 2.5rem;
    row-gap: 0.375rem;
    position: relative;
  }
  .t-handbook_list_link:hover::before {
    transform: translate(0.15em, -50%);
  }
  .t-handbook_list_link::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0.125rem;
    transform: translateY(-50%);
    width: 1.25rem;
    aspect-ratio: 1/1;
    background: url(../img/common/icon_arrow_right.svg) no-repeat center/contain;
    transition: transform 0.3s ease;
  }
}
.t-handbook_list_link:hover {
  opacity: 0.7;
}
.t-handbook_list_link:hover .t-handbook_list_more::before {
  transform: translate(0.15em, -50%);
}

.t-handbook_list_date {
  color: #c7bf00;
  font-family: "EB Garamond", serif;
  letter-spacing: 0.02em;
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .t-handbook_list_date {
    font-size: 0.625rem;
  }
}

.t-handbook_list_cat,
.t-handbook_title {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5555555556;
}

.t-handbook_list_cat {
  color: #4d4d4d;
  margin-left: 1em;
}
@media screen and (max-width: 767px) {
  .t-handbook_list_cat {
    font-size: 0.6875rem;
    margin-left: 0.5em;
    flex: 1;
  }
}

.t-handbook_title {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  color: #603813;
}
@media screen and (min-width: 768px) {
  .t-handbook_title {
    flex: 1;
    margin-left: 1em;
    margin-right: 2.5em;
  }
}
@media screen and (max-width: 767px) {
  .t-handbook_title {
    width: 100%;
    font-size: 0.75rem;
  }
}

.t-handbook_list_more {
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .t-handbook_list_more {
    display: none;
  }
}

.t-movie {
  margin-top: 15rem;
  padding-bottom: 6.875rem;
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0) 30%, rgba(199, 191, 0, 0.08) 31%, rgba(199, 191, 0, 0.08) 100%);
}
@media screen and (max-width: 767px) {
  .t-movie {
    margin-top: 3.125rem;
    padding-top: 1.25rem;
    padding-bottom: 1.875rem;
    background: rgba(199, 191, 0, 0.08);
  }
  .t-movie .section_title_gr {
    writing-mode: horizontal-tb;
    text-align: center;
    row-gap: 0;
  }
}

.t-movie_wrap {
  display: flex;
  flex-direction: row-reverse;
  column-gap: 4.375rem;
}
@media screen and (max-width: 767px) {
  .t-movie_wrap {
    display: block;
  }
}

.t-movie_body {
  aspect-ratio: 880/496;
  flex: 1;
  margin-top: 0.625rem;
}
.t-movie_body iframe,
.t-movie_body video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t-instagram {
  margin-top: 8.75rem;
}
@media screen and (max-width: 767px) {
  .t-instagram {
    margin-top: 1.5rem;
  }
}

.t-instagram_head {
  text-align: right;
}
@media screen and (max-width: 767px) {
  .t-instagram_head .button_more {
    padding-left: 1.8em;
    padding-right: 0;
  }
  .t-instagram_head .button_more::before {
    right: unset;
    left: 0;
  }
}

.t-instagram_title {
  font-size: 1.875rem;
  letter-spacing: 0.16em;
  line-height: 1.3333333333;
  font-family: "EB Garamond", serif;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 767px) {
  .t-instagram_title {
    font-size: 1.3125rem;
  }
}
@media screen and (max-width: 767px) {
  .t-instagram_title {
    letter-spacing: 0.3em;
    margin-bottom: 0.625rem;
  }
}

.t-instagram_body {
  margin-top: 2.5rem;
  max-width: 44.375rem;
}
@media screen and (max-width: 767px) {
  .t-instagram_body {
    margin-top: 1.25rem;
  }
}

.t-cta {
  margin-top: 13.75rem;
}
@media screen and (max-width: 767px) {
  .t-cta {
    margin-top: 3.125rem;
  }
}

.t-cta_international {
  margin-top: 1.25rem;
  letter-spacing: 0.05em;
  font-size: 1.25rem;
}
@media screen and (max-width: 767px) {
  .t-cta_international {
    font-size: 0.875rem;
  }
}

.t-cooperating {
  margin-top: 13.75rem;
  margin-bottom: 12.5rem;
}
@media screen and (max-width: 767px) {
  .t-cooperating {
    margin-top: 3.125rem;
    margin-bottom: 3.125rem;
  }
}

.t-cooperating_wrap {
  width: fit-content;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 6.25rem;
  row-gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .t-cooperating_wrap {
    column-gap: 2.5rem;
    flex-direction: column;
  }
}

.t-cooperating_logos {
  flex: 1;
  display: flex;
  align-items: center;
  column-gap: 6.25rem;
}
@media screen and (max-width: 767px) {
  .t-cooperating_logos {
    column-gap: 3.75rem;
  }
}

.t-cooperating_logo {
  display: block;
  transition: opacity 0.3s ease;
}
.t-cooperating_logo.-logo1 {
  max-width: 12.5rem;
}
@media screen and (max-width: 767px) {
  .t-cooperating_logo.-logo1 {
    max-width: 7.5rem;
  }
}
.t-cooperating_logo.-logo2 {
  max-width: 7.5rem;
}
@media screen and (max-width: 767px) {
  .t-cooperating_logo.-logo2 {
    max-width: 5rem;
  }
}

/*======================================
    course
======================================*/
.p-course_message {
  padding: 3.125rem 0 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-course_message {
    padding: 1.25rem 0 1.875rem;
  }
}

.p-course_langs {
  width: fit-content;
  margin-left: auto;
  margin-bottom: 1.25rem;
  display: flex;
}

.p-course_lang {
  letter-spacing: 0.02em;
  font-family: "EB Garamond", serif;
}
@media screen and (max-width: 767px) {
  .p-course_lang {
    font-size: 0.8125rem;
  }
}
.p-course_lang:nth-child(n+2) {
  position: relative;
  margin-left: 1.5em;
}
.p-course_lang:nth-child(n+2)::before {
  content: "/";
  position: absolute;
  top: 0;
  left: -0.75em;
  transform: translateX(-50%);
}
.p-course_lang .current {
  display: inline-block;
  border-bottom: 1px solid #c7bf00;
}
.p-course_lang a {
  transition: opacity 0.3s ease;
}
.p-course_lang a:hover {
  opacity: 0.7;
}

.p-course_message_text {
  font-size: 1.125rem;
  font-weight: 500;
  color: #603813;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-course_message_text {
    font-size: 0.75rem;
  }
}

.p-course_sections {
  margin-bottom: 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-course_sections {
    margin-bottom: 3.75rem;
  }
}
.p-course_sections .tab-section {
  margin-top: 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-course_sections .tab-section {
    margin-top: 2.5rem;
  }
}

.p-course-entry_flow_wrap {
  margin-top: 3.375rem;
}
@media screen and (max-width: 767px) {
  .p-course-entry_flow_wrap {
    margin-top: 0.625rem;
  }
}

.p-course-entry_flow {
  background-color: #fff;
  padding: 2.5rem 5.625rem;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .p-course-entry_flow {
    padding: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-course-entry_flow {
    padding: 1.25rem;
  }
}
.p-course-entry_flow:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 4.375rem;
  left: 5.625rem;
  width: 2px;
  height: calc(100% - 4.375rem + 3.125rem);
  background: url(../img/common/line_vertical_color.svg) repeat-y center/0.125rem 23.375rem;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .p-course-entry_flow:not(:last-child)::before {
    left: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-course-entry_flow:not(:last-child)::before {
    left: 1.25rem;
    top: 1.25rem;
    height: calc(100% - 1.25rem + 0.625rem);
  }
}
.p-course-entry_flow:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 65%);
  background-color: #c7bf00;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  width: 3.25rem;
  height: 1.625rem;
}
@media screen and (max-width: 767px) {
  .p-course-entry_flow:not(:last-child)::after {
    transform: translate(-50%, 50%);
    width: 1rem;
    height: 0.5rem;
  }
}
.p-course-entry_flow:nth-child(n+2) {
  margin-top: 6.875rem;
}
@media screen and (max-width: 767px) {
  .p-course-entry_flow:nth-child(n+2) {
    margin-top: 1.875rem;
  }
}

.p-course-entry_flow_num {
  font-size: 3.25rem;
  font-weight: 600;
  font-family: "EB Garamond", serif;
  letter-spacing: 0.02em;
  width: 6.125rem;
  aspect-ratio: 1/1;
  background-color: #c7bf00;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  position: absolute;
  left: 5.625rem;
  top: 0;
  transform: translate(-50%, -50%);
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .p-course-entry_flow_num {
    left: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-course-entry_flow_num {
    left: 1.25rem;
    font-size: 1rem;
    width: 1.875rem;
  }
}

.p-course-entry_flow_contents {
  padding-left: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-course-entry_flow_contents {
    padding-left: 1rem;
  }
}

.p-course-entry_flow_title {
  font-size: 1.375rem;
  font-family: "Zen Old Mincho", serif;
  line-height: 1.9090909091;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-course-entry_flow_title {
    font-size: 0.9375rem;
    line-height: 1.4;
  }
}
.p-course-entry_flow_title.-right {
  margin-right: -1.5em;
}
@media screen and (max-width: 767px) {
  .p-course-entry_flow_title.-right {
    margin-right: 0;
  }
}

.p-course-section_text {
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 2;
  color: #603813;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-course-section_text {
    font-size: 0.875rem;
    line-height: 1.5;
    letter-spacing: 0.05em;
    margin-top: 1em;
    font-feature-settings: "palt";
    text-align: justify;
  }
}
.p-course-section_text a {
  color: #603813;
}
.p-course-section_text .en {
  font-family: "EB Garamond", serif;
  color: inherit;
}

.p-course-plan_head {
  background-color: #fff;
  padding: 2.5rem 5.625rem;
  position: relative;
  margin-top: 3.375rem;
}
@media screen and (max-width: 767px) {
  .p-course-plan_head {
    margin-top: 0.625rem;
  }
}
.p-course-plan_head::before {
  content: "";
  position: absolute;
  top: 0;
  right: 5.625rem;
  width: 6.125rem;
  aspect-ratio: 1/1;
  background-color: #c7bf00;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  z-index: 2;
  transform: translateY(-50%);
}
@media screen and (max-width: 1024px) {
  .p-course-plan_head::before {
    right: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-course-plan_head::before {
    right: 1.25rem;
    width: 1.875rem;
  }
}
@media screen and (max-width: 1024px) {
  .p-course-plan_head {
    padding: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-course-plan_head {
    padding: 1.25rem;
  }
}

.p-course-plan_head_title.-en h3 {
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-course-plan_head_title h3 {
    font-size: 0.9375rem;
  }
  .p-course-plan_head_title p {
    font-size: 0.5625rem;
  }
}

.p-course-plan_head_lead {
  font-size: 1.0625rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.7647058824;
  color: #603813;
}
@media screen and (max-width: 767px) {
  .p-course-plan_head_lead {
    font-size: 0.875rem;
    line-height: 1.5;
    font-feature-settings: "palt";
    margin-top: 0.25rem;
  }
}

.p-course-plan_head_price {
  position: relative;
  color: #ada725;
  padding: 1.25rem 0 1.25rem;
  margin: 1.25rem 0;
}
@media screen and (max-width: 767px) {
  .p-course-plan_head_price {
    padding: 0.625rem 0;
    margin: 0.625rem 0;
  }
}
.p-course-plan_head_price::before, .p-course-plan_head_price::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background-size: 53.75rem 0.1875rem;
  background-repeat: repeat-x;
}
.p-course-plan_head_price::before {
  top: 0;
  background-image: url(../img/page/course_plan_price_line_top.svg);
}
.p-course-plan_head_price::after {
  bottom: 0;
  background-image: url(../img/page/course_plan_price_line_bottom.svg);
}

.p-course-plan_head_price_normal {
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  column-gap: 1em;
  row-gap: 1em;
}
@media screen and (max-width: 767px) {
  .p-course-plan_head_price_normal {
    font-size: 1rem;
    row-gap: 0.5em;
    font-feature-settings: "palt";
    letter-spacing: normal;
    margin-right: -1em;
  }
}
.p-course-plan_head_price_normal .price {
  font-size: 3.067em;
  transform: translateY(25%);
}
@media screen and (max-width: 767px) {
  .p-course-plan_head_price_normal .price {
    font-size: 1.875em;
  }
}
.p-course-plan_head_price_normal .price img {
  width: auto;
  height: 1em;
  object-fit: contain;
}
.p-course-plan_head_price_rent {
  font-size: 1.375rem;
  font-family: "Zen Old Mincho", serif;
  letter-spacing: 0.1em;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-course-plan_head_price_rent {
    font-size: 1rem;
    margin-top: 0.375rem;
  }
}
.p-course-plan_head_price_rent .price {
  font-size: 0.91em;
  transform: translateY(25%);
}
@media screen and (max-width: 767px) {
  .p-course-plan_head_price_rent .price {
    font-size: 0.875em;
  }
}
.p-course-plan_head_price_rent .price img {
  width: auto;
  height: 1em;
  object-fit: contain;
}

.p-course-plan_head_systems .p-course-plan_head_system {
  font-size: 1.4375rem;
  font-weight: 500;
  line-height: 1.3043478261;
  padding-left: 0.75em;
}
@media screen and (max-width: 767px) {
  .p-course-plan_head_systems .p-course-plan_head_system {
    font-size: 0.875rem;
    padding-left: 0.5em;
    font-feature-settings: "palt";
  }
  .p-course-plan_head_systems .p-course-plan_head_system.-right {
    margin-right: -2em;
  }
  .p-course-plan_head_systems .p-course-plan_head_system.-right .p-course-section_text {
    margin-right: 1.5em;
  }
}
.p-course-plan_head_systems .p-course-plan_head_system:nth-child(n+2) {
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-course-plan_head_systems .p-course-plan_head_system:nth-child(n+2) {
    margin-top: 1.625rem;
  }
}
.p-course-plan_head_systems .p-course-plan_head_system::before {
  top: 0.65em;
}
@media screen and (max-width: 767px) {
  .p-course-plan_head_systems .p-course-plan_head_system::before {
    width: 0.3125rem;
  }
}
.p-course-plan_head_systems .p-course-plan_head_system .p-course-section_text {
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-course-plan_head_systems .p-course-plan_head_system .p-course-section_text {
    margin-right: 1.5em;
  }
}

.p-course-plan_head_button {
  margin-top: 0.625rem;
  max-width: 13.75rem;
}
@media screen and (max-width: 767px) {
  .p-course-plan_head_button {
    max-width: 8.875rem;
  }
}

.p-course-plan_list {
  display: grid;
  grid-template-columns: 3.5rem auto;
  column-gap: 1.125rem;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-course-plan_list {
    grid-template-columns: 2.5rem auto;
    column-gap: 0.625rem;
    margin-top: 1.875rem;
  }
}
.p-course-plan_list .p-course-section_text {
  margin-top: 0.625rem;
}

.p-course-plan_list_head {
  width: 3.5rem;
  aspect-ratio: 1/1;
  background-color: #c7bf00;
  color: #fff;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 1.875rem;
  font-weight: 600;
  transform: translateY(-25%);
}
@media screen and (max-width: 767px) {
  .p-course-plan_list_head {
    width: 2.5rem;
    font-size: 1.3125rem;
  }
}

.p-course-plan_list_title {
  font-size: 1.4375rem;
  font-weight: 500;
  line-height: 1.3043478261;
  font-family: "Zen Old Mincho", serif;
}
@media screen and (max-width: 767px) {
  .p-course-plan_list_title {
    font-size: 0.9375rem;
    line-height: 1.4;
  }
  .p-course-plan_list_title.-right {
    margin-right: -1.5em;
    font-feature-settings: "palt";
  }
}

.p-course-plan_table {
  width: 100%;
  border-collapse: collapse;
  max-width: 54.25rem;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-course-plan_table {
    table-layout: fixed;
  }
}
.p-course-plan_table.-en * {
  text-align: left !important;
  text-align-last: left !important;
}
@media screen and (max-width: 767px) {
  .p-course-plan_table {
    margin-left: -3.125rem;
    width: calc(100% + 2.5rem + 0.625rem);
  }
}
.p-course-plan_table.-sm th {
  width: 9rem;
}
@media screen and (max-width: 767px) {
  .p-course-plan_table.-sm th {
    width: 4rem;
  }
}
.p-course-plan_table th {
  width: 11.875rem;
  text-align: justify;
  text-align-last: justify;
}
@media screen and (max-width: 767px) {
  .p-course-plan_table th {
    width: 3.75rem;
    writing-mode: vertical-rl;
    text-align: left;
    text-align-last: center;
  }
  .p-course-plan_table th span.sp-justify {
    text-align-last: justify;
    display: inline-block;
  }
}
.p-course-plan_table th, .p-course-plan_table td {
  font-weight: 500;
  font-size: 0.9375rem;
  line-height: 2;
  color: #603813;
  border: 1px solid #1a1a1a;
  vertical-align: middle;
  letter-spacing: 0.1em;
  padding: 1.25rem;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-course-plan_table th, .p-course-plan_table td {
    padding: 0.625rem 0.5rem;
    font-size: 0.875rem;
    line-height: 1.5;
    letter-spacing: 0.05em;
  }
}
.p-course-plan_table td {
  padding-right: 0.625rem;
}
.p-course-plan_table .note {
  font-size: 0.867em;
  font-weight: 500;
  line-height: 1.7692307692;
}
@media screen and (max-width: 767px) {
  .p-course-plan_table .note {
    font-size: 1em;
    line-height: 1.5;
    margin-top: 0.5em;
  }
}
.p-course-plan_table .mt {
  margin-top: 1em;
}

.p-course-path_lists {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 5rem;
  row-gap: 3.75rem;
}
@media screen and (max-width: 1024px) {
  .p-course-path_lists {
    column-gap: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-course-path_lists {
    grid-template-columns: repeat(auto-fill, minmax(13.75rem, 1fr));
    row-gap: 1.25rem;
  }
}

.p-course-path_list .p-course-section_text {
  margin-top: 0.375rem;
}

.p-course-path_list_img {
  aspect-ratio: 480/320;
}
.p-course-path_list_img img {
  height: 100%;
  object-fit: cover;
}

.p-course-path_list_title {
  font-size: 1.375rem;
  font-family: "Zen Old Mincho", serif;
  letter-spacing: 0.2em;
  line-height: 1.9090909091;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-course-path_list_title {
    font-size: 0.9375rem;
    line-height: 1.7333333333;
  }
}

.p-course-path_voice {
  margin-top: 4.375rem;
}
@media screen and (max-width: 767px) {
  .p-course-path_voice {
    margin-top: 2.5rem;
  }
}

.p-course-path_button {
  margin: 6.875rem auto 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-course-path_button {
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
  }
}
@media screen and (min-width: 768px) {
  .p-course-path_button.button_square_md {
    max-width: 25.9375rem;
  }
}
@media screen and (max-width: 767px) {
  .p-course-path_button.button_square_md {
    max-width: 13.75rem;
  }
}

/*======================================
    single handbook
======================================*/
.s-head {
  padding-top: 5.625rem;
}
@media screen and (max-width: 767px) {
  .s-head {
    padding-top: 1.875rem;
  }
}

.s-head_inner {
  display: grid;
  grid-template-columns: 70% auto;
  column-gap: 2.5rem;
  display: flex;
  flex-direction: column-reverse;
}
@media screen and (max-width: 767px) {
  .s-head_inner {
    display: flex;
    flex-direction: column-reverse;
  }
}

.s-head_texts {
  height: 100%;
  min-width: 0;
}
.s-head_meta {
  display: flex;
  column-gap: 0.625rem;
  position: relative;
  margin-bottom: 0.625rem;
}

.s-head_date {
  color: #ada725;
  font-family: "EB Garamond", serif;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .s-head_date {
    font-size: 0.625rem;
  }
}

.s-head_cat {
  font-size: 1.125rem;
  font-weight: 500;
  color: #4d4d4d;
}
@media screen and (max-width: 767px) {
  .s-head_cat {
    font-size: 0.875rem;
  }
}

.s-head_meta_line {
  flex: 1;
  position: relative;
  margin-top: 1.25rem;
  position: relative;
  display: none;
}
.s-head_meta_line::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  background: url(../img/common/line_vertical_color.svg) repeat-y center/0.125rem 23.25rem;
}
.s-head_meta_line::before {
  left: 50%;
  height: calc(100% + 8.125rem);
}
@media screen and (max-width: 767px) {
  .s-head_meta_line {
    display: none;
  }
}

.s-head_title {
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1.2727272727;
  color: #603813;
  margin-right: 7.5rem;
  padding-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .s-head_title {
    font-size: 0.875rem;
    line-height: 1.2857142857;
    margin-right: 0;
    margin-top: 0.625rem;
    padding-bottom: 0;
  }
}

.s-head_eye {
  height: 100%;
}
@media screen and (max-width: 767px) {
  .s-head_eye {
    margin-top: 1.25rem;
  }
}
.s-head_eye img {
  height: auto;
  max-height: 100%;
  object-fit: contain;
}

.s-contents {
  padding: 3.75rem 0 6.25rem;
  font-size: 0.875rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .s-contents {
    padding: 1.25rem 0 2.5rem;
    line-height: 1.5;
  }
}
.s-contents * {
  font-weight: 500;
}
.s-contents h2 {
  font-size: 2.125rem;
  line-height: 1.5882352941;
}
.s-contents h3 {
  font-size: 1.625rem;
}
.s-contents h4 {
  font-size: 1.375rem;
}
.s-contents h5 {
  font-size: 1.125rem;
}
.s-contents h6 {
  font-size: 1rem;
}
.s-contents h2, .s-contents h3, .s-contents h4, .s-contents h5, .s-contents h6 {
  color: #603813;
  margin-bottom: 1em;
}
@media screen and (max-width: 767px) {
  .s-contents h2, .s-contents h3, .s-contents h4, .s-contents h5, .s-contents h6 {
    font-size: 1em;
  }
}
.s-contents p {
  margin-bottom: 2em;
}
.s-contents ul li {
  padding-left: 1.25em;
  position: relative;
}
@media screen and (max-width: 767px) {
  .s-contents ul li {
    padding-left: 1em;
  }
}
.s-contents ul li::before {
  content: "";
  position: absolute;
  top: 1em;
  left: 0;
  transform: translateY(-50%);
  width: 0.875rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #c7bf00;
}
@media screen and (max-width: 767px) {
  .s-contents ul li::before {
    width: 0.625rem;
    top: 0.75em;
  }
}
.s-contents ol {
  list-style: decimal;
}
.s-contents ul, .s-contents ol {
  margin: 2.5rem 0;
}
.s-contents img {
  display: block;
  margin: 2.5rem 0;
}
.s-contents a {
  display: inline-block;
  border-bottom: 1px solid rgba(173, 167, 37, 0.5);
  color: #c7bf00;
}
.s-contents a[target=_blank] {
  padding-right: 1em;
  position: relative;
}
.s-contents a[target=_blank]:hover::after {
  transform: translate(10%, -60%);
}
.s-contents a[target=_blank]::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 0.6em;
  aspect-ratio: 1/1;
  transform: translateY(-50%);
  background: url(../img/common/icon_out.svg) no-repeat center/contain;
  transition: transform 0.3s ease;
}
.s-contents .wp-element-button {
  background-color: #c7bf00;
  font-size: 1.25rem;
  min-width: 13.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 4.375rem;
  font-family: "Zen Old Mincho", serif;
  font-feature-settings: "palt";
  padding: 0.625rem;
  padding-right: 3.75rem;
  position: relative;
  transition: opacity 0.3s ease;
  color: #1a1a1a;
  border-radius: 0;
  transition: opacity 0.3s ease;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .s-contents .wp-element-button {
    font-size: 0.875rem;
  }
}
.s-contents .wp-element-button:hover {
  opacity: 0.7;
}
.s-contents .wp-element-button:hover::before {
  transform: translate(0.15em, -50%);
}
.s-contents .wp-element-button::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translate(0, -50%);
  width: 1.4em;
  aspect-ratio: 1/1;
  background: url(../img/common/icon_arrow_right.svg) no-repeat center/contain;
  transition: transform 0.3s ease;
}
@media screen and (max-width: 767px) {
  .s-contents .wp-element-button {
    min-height: 2.5rem;
    font-size: 0.6875rem;
    padding-right: 2.5rem;
  }
}

.s-pagination {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  font-size: 1.25rem;
  padding-top: 2.5rem;
  margin-bottom: 13.75rem;
}
.s-pagination::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 3px;
  background-size: 53.75rem 0.1875rem;
  background-repeat: repeat-x;
  background-image: url(../img/page/course_plan_price_line_top.svg);
}
@media screen and (max-width: 767px) {
  .s-pagination {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 767px) {
  .s-pagination {
    font-size: 1rem;
    padding-top: 0.625rem;
    margin-bottom: 3.75rem;
  }
}
.s-pagination a {
  transition: opacity 0.3s ease;
}
.s-pagination a:hover {
  opacity: 0.7;
}

.s-pagination_prev,
.s-pagination_next {
  letter-spacing: 0.1em;
  font-family: "Zen Old Mincho", serif;
  position: relative;
  display: block;
}
@media screen and (max-width: 767px) {
  .s-pagination_prev,
  .s-pagination_next {
    font-size: 0.625rem;
    color: rgba(255, 255, 255, 0);
  }
}
.s-pagination_prev::before,
.s-pagination_next::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  aspect-ratio: 1/1;
  width: 1.4em;
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.3s ease;
}
@media screen and (max-width: 767px) {
  .s-pagination_prev::before,
  .s-pagination_next::before {
    width: 1rem;
  }
}

.s-pagination_prev {
  grid-column: 3/4;
  text-align: right;
  padding-right: 2em;
}
.s-pagination_prev:hover::before {
  transform: translate(0.15em, -50%);
}
.s-pagination_prev::before {
  right: 0;
  background-image: url(../img/common/icon_arrow_next.svg);
}

.s-pagination_all {
  grid-column: 2/3;
  text-align: center;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  font-family: "EB Garamond", serif;
  display: block;
  padding-bottom: 0.25em;
  position: relative;
}
.s-pagination_all::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: url(../img/common/toc_line_color.svg) repeat-x center/17.5rem 0.1875rem;
}

.s-pagination_next {
  grid-column: 1/2;
  padding-left: 2em;
}
.s-pagination_next:hover::before {
  transform: translate(-0.15em, -50%);
}
.s-pagination_next::before {
  left: 0;
  background-image: url(../img/common/icon_arrow_prev.svg);
}

/*======================================
    archive
======================================*/
.archive {
  padding: 6.875rem 0 13.75rem;
}
@media screen and (max-width: 767px) {
  .archive {
    padding: 2.5rem 0 3.75rem;
  }
}

.a-pagination {
  margin-top: 5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 0.625rem;
}
@media screen and (max-width: 767px) {
  .a-pagination {
    margin-top: 2.5rem;
  }
}
.a-pagination a {
  transition: opacity 0.3s ease;
}
.a-pagination a:hover {
  opacity: 0.7;
}
.a-pagination .page-numbers {
  font-size: 1.3125rem;
  font-weight: 500;
  line-height: 1.3333333333;
  padding: 0 0.3125rem;
  color: #603813;
  border-bottom: 1px solid rgba(255, 255, 255, 0);
}
@media screen and (max-width: 767px) {
  .a-pagination .page-numbers {
    font-size: 1rem;
  }
}
.a-pagination .page-numbers.current {
  border-color: #c7bf00;
}
.a-pagination .page-numbers.next, .a-pagination .page-numbers.prev {
  aspect-ratio: 1/1;
  width: 1.75rem;
}
.a-pagination .page-numbers.next {
  background: url(../img/common/icon_arrow_next.svg) no-repeat center/contain;
  margin-left: 1.25rem;
}
.a-pagination .page-numbers.prev {
  background: url(../img/common/icon_arrow_prev.svg) no-repeat center/contain;
  margin-right: 1.25rem;
}

/*======================================
    contact
======================================*/
.p-contact {
  max-width: 54rem;
  margin-left: auto;
  margin-right: auto;
  padding: 6.25rem 0 13.75rem;
}
@media screen and (max-width: 767px) {
  .p-contact {
    padding: 2.5rem 0 6.25rem;
  }
}

.form_check_area {
  display: none;
}

.p-contact_required {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.p-contact_required span.icon {
  color: #ff0000;
  font-size: 1.42em;
  line-height: 1;
}

.p-contact_list {
  display: grid;
  grid-template-columns: 10rem auto;
  column-gap: 1.25rem;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-contact_list {
    grid-template-columns: 1fr;
    row-gap: 0.625rem;
  }
}
.p-contact_list:nth-child(n+2) {
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-contact_list:nth-child(n+2) {
    margin-top: 2.5rem;
  }
}
.p-contact_list.-column {
  grid-template-columns: 1fr;
  row-gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-contact_list.-column {
    row-gap: 0.625rem;
  }
}
.p-contact_list dt {
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .p-contact_list dt {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-contact_list dt {
    font-size: 0.875rem;
  }
}
.p-contact_list dd input,
.p-contact_list dd textarea,
.p-contact_list dd span.input-check {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  width: 100%;
  box-shadow: none;
  border-radius: 0.3125rem;
  background-color: #fff;
  padding: 0.625rem 0.625rem;
  font-size: 1rem;
  font-weight: 500;
  color: #1a1a1a;
  font-family: "Yu Mincho", "游明朝体", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Noto Serif JP", serif;
  letter-spacing: 0.05em;
  line-height: 1.4;
  border: 1px solid #000;
  background-color: #fff;
  display: block;
  min-height: 3.125rem;
}
.p-contact_list dd input::placeholder,
.p-contact_list dd textarea::placeholder,
.p-contact_list dd span.input-check::placeholder {
  font-size: 1em;
  color: #808080;
}
.p-contact_list dd span.input-check {
  border: none;
}
.p-contact_list dd textarea {
  resize: vertical;
  height: 16rem;
}

.form_back_button {
  display: block;
  text-align: center;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  margin-top: 2.5rem;
  font-weight: 500;
  padding-bottom: 0.25em;
  border-bottom: 1px solid #1a1a1a;
  transition: opacity 0.3s ease;
}
.form_back_button:hover {
  opacity: 0.7;
}

.wpcf7-not-valid-tip {
  margin-top: 0.625rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .wpcf7-not-valid-tip {
    font-size: 0.625rem;
  }
}

.p-contact_privacy {
  margin-top: 3.125rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-contact_privacy {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-contact_privacy {
    font-size: 0.875rem;
  }
}
.p-contact_privacy label {
  display: flex;
  flex-wrap: nowrap;
}
.p-contact_privacy .wpcf7-list-item {
  margin-left: 0;
}
.p-contact_privacy .wpcf7-list-item-label {
  letter-spacing: 0.05em;
  line-height: 1.4;
  font-weight: 500;
  font-feature-settings: "palt";
  position: relative;
  display: inline-block;
  padding-left: 0.625rem;
  flex: 1;
  text-align: left;
}
.p-contact_privacy a {
  text-decoration: underline;
  transition: opacity 0.3s ease;
  font-weight: inherit;
}
.p-contact_privacy a:hover {
  opacity: 0.7;
}
.p-contact_privacy input {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  width: 1rem;
  height: 1rem;
  border: 1px solid #000;
  background-color: #fff;
  display: block;
  position: relative;
}
.p-contact_privacy input:checked::before {
  opacity: 1;
}
.p-contact_privacy input::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1.25rem;
  height: 0.375rem;
  border-bottom: 3px solid #c7bf00;
  border-left: 3px solid #c7bf00;
  transform: translateY(-50%) rotate(-45deg);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.p-contact_button {
  margin-top: 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-contact_button {
    margin-top: 3.125rem;
  }
}
.p-contact_button input,
.p-contact_button button {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 18.25rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  min-height: 4.375rem;
  background-color: #c7bf00;
  font-size: 1.25rem;
  min-height: 4.375rem;
  font-family: "Zen Old Mincho", serif;
  font-feature-settings: "palt";
  padding: 0.625rem;
  border: none;
  background-image: url(../img/common/icon_arrow_right.svg);
  background-repeat: no-repeat;
  background-size: 1.75rem 1.75rem;
  background-position: right 1.25rem center;
  transition: background-position 0.3s ease, opacity 0.3s ease;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-contact_button input,
  .p-contact_button button {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 767px) {
  .p-contact_button input,
  .p-contact_button button {
    background-size: 0.9375rem 0.9375rem;
    background-position: right 0.625rem center;
  }
}
.p-contact_button input:disabled,
.p-contact_button button:disabled {
  filter: grayscale(1);
}
.p-contact_button input:hover,
.p-contact_button button:hover {
  opacity: 0.7;
  background-position: right 0.875rem center;
}
@media screen and (max-width: 767px) {
  .p-contact_button input:hover,
  .p-contact_button button:hover {
    background-position: right 0.375rem center;
  }
}
@media screen and (max-width: 767px) {
  .p-contact_button input,
  .p-contact_button button {
    min-height: 2.5rem;
    max-width: 8.875rem;
    font-size: 0.6875rem;
  }
}

.p-thanks_title {
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #603813;
  font-feature-settings: "palt";
  margin-bottom: 2em;
}
@media screen and (max-width: 767px) {
  .p-thanks_title {
    font-size: 0.875rem;
  }
}

.p-thanks_text {
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-thanks_text {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-thanks_text {
    font-size: 0.875rem;
  }
}

.p-thanks_button {
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-thanks_button {
    margin-top: 2.5rem;
  }
}

.p-contact_recaptcha {
  text-align: center;
  line-height: 1.5;
  font-size: 0.75rem;
  margin-top: 3.125rem;
}

.grecaptcha-badge {
  display: none !important;
  visibility: hidden;
}

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