@charset "UTF-8";
/* rem size  */
/* Media Quary */
/* ====================================================
config vw
// ----
// * ex) width: vw**(200)
// ----
==================================================== */
/* ====================================================
@mixin output
// ----
// * ex) @include mixin_menu();
// ----
==================================================== */
/* ====================================================
Transiton
==================================================== */
/* ====================================================
opacity
==================================================== */
/* ====================================================
flexbox
==================================================== */
/* ====================================================
other
==================================================== */
/* ====================================================
extend
// ----
// * ex) @extend %extend;
// ----
==================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

/* デフォルトマージン削除*/
body, p, ul, td, th {
  margin: 0;
  padding: 0;
}

body, h1, h2, h3, h4, p,
figure, blockquote, dl, dd {
  margin-block-end: 0;
}

h1, h2, h3, h4 {
  line-height: 1.6;
  margin-block-start: 0;
}

/* リスト・ロールのリストスタイル削除 */
ul[role=list],
ol[role=list] {
  list-style: none;
}

body {
  min-height: 100vh;
  line-height: 1.5;
}

/* 見出し、インタラクティブ要素の行の高さ */
button, input, label {
  line-height: 1.1;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  color: currentColor;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
}

/* Inherit fonts for inputs and buttons */
input, button,
textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* rows属性のないtextareasが小さくならないようにする  */
textarea:not([rows]) {
  min-height: 10em;
}

/* アンカーにスクロールマージン */
:target {
  scroll-margin-block: 5ex;
}

:root {
  --black: #1e1e1e;
  --main_color: #820000;
  --gray: #808080;
  --pale_cyan: #e6eceb;
}

body {
  background-color: #f4f8f7;
  color: var(--black);
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, system-ui;
  font-size: 0.875rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  line-height: 2.4;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 0.75rem;
    line-height: 2;
  }
}

body.locked {
  overflow: hidden;
}

h1, h2, h3, h4 {
  font-weight: 500;
}

a {
  text-decoration: none;
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.7;
}

ul, ol {
  list-style: none;
}

img {
  height: auto;
}

img.w100 {
  width: 100%;
}

iframe, video {
  max-width: 100%;
}

input::placeholder {
  color: #c2c7cb;
}

@media screen and (min-width: 768px) {
  .sp {
    display: none;
  }
}

@media screen and (min-width: 769px) {
  .sp2 {
    display: none;
  }
}

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

@media screen and (max-width: 768px) {
  .pc2 {
    display: none;
  }
}

.page_move_anim {
  height: 100lvh;
  background: var(--main_color);
  width: 100%;
  opacity: 0;
  position: fixed;
  top: 0;
  z-index: -1;
  transform: scale(1, 0);
  transform-origin: left center;
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), z-index 0.8s, transform 1s;
}

.page_move_anim.is-active {
  opacity: 1;
  z-index: 200;
  transform-origin: left center;
  transform: scale(1, 1);
  transition: opacity 0.6s ease, z-index 0.2s, transform 0.2s;
}

.c_heading {
  display: inline-block;
}
.c_heading .text_en {
  position: relative;
  opacity: 0;
}
.c_heading .text_en::before {
  content: "";
  width: 0;
  height: 128%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: var(--main_color);
}
.c_heading .text_ja {
  position: relative;
  opacity: 0;
}
.c_heading .text_ja::before {
  content: "";
  width: 0;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: var(--main_color);
}

.c_heading.is-animated .text_en {
  animation: fadeOp 1s cubic-bezier(0.77, 0, 0.175, 1) forwards;
  animation-delay: 0.3s;
}
.c_heading.is-animated .text_en::before {
  animation: animOverlay 1s cubic-bezier(0.77, 0, 0.175, 1) forwards;
  animation-delay: 0.2s;
  transform-origin: left;
}
.c_heading.is-animated .text_ja {
  animation: fadeOp 1s cubic-bezier(0.77, 0, 0.175, 1) forwards;
  animation-delay: 0.5s;
}
.c_heading.is-animated .text_ja::before {
  animation: animOverlay 1s cubic-bezier(0.77, 0, 0.175, 1) forwards;
  animation-delay: 0.4s;
  transform-origin: left;
}

.c_page_kv-img_wrap {
  position: relative;
  opacity: 0;
}
@media screen and (min-width: 768px) {
  .c_page_kv-img_wrap {
    height: 470px;
  }
}
.c_page_kv-img_wrap img {
  height: 100%;
}
.c_page_kv-img_wrap::before, .c_page_kv-img_wrap::after {
  content: "";
  width: 0;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.c_page_kv-img_wrap::before {
  background-color: #fff;
}
.c_page_kv-img_wrap::after {
  background-color: var(--main_color);
}

.c_page_kv-img_wrap.is-animated {
  animation: fadeOp 1s cubic-bezier(0.77, 0, 0.175, 1) forwards;
  animation-delay: 1.6s;
}
.c_page_kv-img_wrap.is-animated::before {
  animation: animOverlay 1.3s cubic-bezier(0.77, 0, 0.175, 1) forwards;
  animation-delay: 0.6s;
  transform-origin: left;
}
.c_page_kv-img_wrap.is-animated::after {
  animation: animOverlay 1.3s cubic-bezier(0.77, 0, 0.175, 1) forwards;
  animation-delay: 1.2s;
  transform-origin: left;
}

.para_img_wrap {
  overflow: hidden;
}

img.js-parallax {
  scale: 1.4;
}

.js-fade {
  opacity: 0;
  transform: translateY(50px);
}
.js-fade.is-animated {
  animation: fadeUp 0.6s ease-out forwards;
}

.js-fade_delay {
  opacity: 0;
  transform: translateY(50px);
}

.js-txt_slide {
  display: inline-block;
  position: relative;
  opacity: 0;
}
.js-txt_slide::before {
  content: "";
  width: 0;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: var(--main_color);
}

.js-txt_slide.is-animated {
  animation: fadeOp 1s cubic-bezier(0.77, 0, 0.175, 1) forwards;
  animation-delay: 0.7s;
}
.js-txt_slide.is-animated::before {
  animation: animOverlay 1.2s cubic-bezier(0.77, 0, 0.175, 1) forwards;
  animation-delay: 0.4s;
  transform-origin: left;
}

.txt_after_ol {
  display: inline-block;
  position: relative;
  opacity: 0;
}
.txt_after_ol::before {
  content: "";
  width: 0;
  height: 80%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: var(--main_color);
}

.js-txt_slide_multi.is-animated .txt_after_ol {
  animation: fadeOp 1s cubic-bezier(0.77, 0, 0.175, 1) forwards;
  animation-delay: 0.6s;
}
.js-txt_slide_multi.is-animated .txt_after_ol::before {
  animation: animOverlay 1.2s cubic-bezier(0.77, 0, 0.175, 1) forwards;
  animation-delay: 0.4s;
  transform-origin: left;
}
.js-txt_slide_multi.is-animated .txt_after_ol.txt_2 {
  animation-delay: 0.7s;
}
.js-txt_slide_multi.is-animated .txt_after_ol.txt_2::before {
  animation-delay: 0.5s;
}
.js-txt_slide_multi.is-animated .txt_after_ol.txt_3 {
  animation-delay: 0.8s;
}
.js-txt_slide_multi.is-animated .txt_after_ol.txt_3::before {
  animation-delay: 0.6s;
}

.js-img_slide {
  position: relative;
  opacity: 0;
}
.js-img_slide img {
  height: 100%;
}
.js-img_slide::before, .js-img_slide::after {
  content: "";
  width: 0;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.js-img_slide::before {
  background-color: #fff;
}
.js-img_slide::after {
  background-color: var(--main_color);
}

.js-img_slide.is-animated {
  animation: fadeOp 1s cubic-bezier(0.77, 0, 0.175, 1) forwards;
  animation-delay: 0.5s;
}
.js-img_slide.is-animated::before {
  animation: animOverlay 1.3s cubic-bezier(0.77, 0, 0.175, 1) forwards;
  animation-delay: 0.2s;
  transform-origin: left;
}
.js-img_slide.is-animated::after {
  animation: animOverlay 1.3s cubic-bezier(0.77, 0, 0.175, 1) forwards;
  animation-delay: 0.3s;
  transform-origin: left;
}

@keyframes animOverlay {
  0% {
    left: 0;
    width: 0;
  }
  50% {
    left: 0;
    width: 100%;
  }
  100% {
    left: 100%;
    width: 0;
  }
}
@keyframes slideIn {
  0% {
    left: 0;
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@keyframes slideInVertical {
  0% {
    height: 0;
  }
  100% {
    height: 100%;
  }
}
@keyframes fadeOp {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.hover_after {
  visibility: hidden;
}

.c_btn {
  background-color: #fff;
  border: 1px solid #fff;
  color: var(--main_color);
  display: inline-block;
  font-family: "Cormorant Infant", serif;
  font-size: 0.9375rem;
  letter-spacing: 0.03em;
  position: relative;
  width: 360px;
  height: 80px;
  z-index: 2;
  transform-origin: right top;
  transition: transform 0.3s ease, border 1s, color 0.2s ease, background-color 0.5s;
}
@media screen and (max-width: 767px) {
  .c_btn {
    width: 68%;
    height: 68px;
    max-width: 450px;
  }
}

.c_btn::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--main_color);
  left: 0;
  top: 0;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.3s ease-in;
  z-index: -1;
}

.c_btn_inner {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.c_btn_arrow {
  position: absolute;
  top: calc(50% - 3px);
  right: 0;
  transform: translateX(50%);
  z-index: 1;
  transition: 0.2s ease-in;
}
@media screen and (max-width: 767px) {
  .c_btn_arrow {
    width: 24%;
  }
}

.c_btn_arrow.hover_after {
  background: rgba(130, 0, 0, 0.6);
  display: inline-block;
  width: 70px;
  height: 1px;
  top: calc(50% + 1px);
}
@media screen and (max-width: 767px) {
  .c_btn_arrow.hover_after {
    width: 36px;
  }
}

.c_btn:hover {
  background-color: transparent;
  border-color: transparent;
  color: #fff;
  opacity: 1;
}
.c_btn:hover .hover_before {
  opacity: 0;
}
.c_btn:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}
.c_btn:hover .c_btn_arrow.hover_after {
  visibility: visible;
  background: rgba(255, 255, 255, 0.6);
  transform: translateX(-20px);
  transition: 0.3s ease-in;
}
@media screen and (max-width: 767px) {
  .c_btn:hover .c_btn_arrow.hover_after {
    transform: translateX(-14px);
  }
}

.c_btn.type02 {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
}
.c_btn.type02::before {
  background: #fff;
}
.c_btn.type02 .c_btn_arrow.hover_after {
  background: rgba(130, 0, 0, 0.6);
}

.c_btn.type02:hover {
  border-color: transparent;
  color: var(--main_color);
}

.c_btn.type03 {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
}
.c_btn.type03::before {
  background: rgba(130, 0, 0, 0.9);
}

.c_btn.type03:hover {
  border-color: transparent;
}

.c_btn02 {
  background: var(--main_color);
  color: #fff;
  display: inline-block;
  font-family: "Noto Serif JP", serif;
  font-size: 0.875rem;
  letter-spacing: 0.03em;
  position: relative;
  width: 220px;
  height: 70px;
  z-index: 2;
}

.c_btn02::before {
  content: "";
  display: block;
  position: absolute;
  background: #fff;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.3s;
  z-index: -1;
}

.c_btn02:hover {
  color: var(--main_color);
  opacity: 1;
}
.c_btn02:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}

/*
 scroll_down
 見出し
*/
.text_en {
  font-family: "Cormorant Infant", serif;
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 0.8;
}

.text_ja {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  letter-spacing: 0.1em;
}

.privacy_p_text {
  cursor: pointer;
}

.scroll_down {
  position: absolute;
  left: 3%;
}
@media screen and (max-width: 767px) {
  .scroll_down {
    display: none;
  }
}

.c_page_kv .scroll_down {
  opacity: 0;
  top: 90%;
  animation: fadeOp 0.6s 2.6s ease forwards;
}

.scroll_down_text {
  color: #fff;
  display: inline-block;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: 20px;
  padding: 5px 7px 180px;
  transition: 0.2s;
  overflow: hidden;
  margin: auto;
  writing-mode: vertical-lr;
  white-space: nowrap;
}

.scroll_down_text:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 2px;
  height: 150px;
  background: rgba(255, 255, 255, 0.6);
}

.scroll_down_text:after {
  content: "";
  position: absolute;
  bottom: 80px;
  left: 50%;
  width: 2px;
  height: 50px;
  background: #fff;
}

.scroll_down_text:after {
  animation: sdl01 1.5s ease infinite;
}

@keyframes sdl01 {
  0% {
    bottom: 100px;
    transform-origin: 0 0;
  }
  100% {
    bottom: 0px;
    transform-origin: 0 100%;
  }
}
.page_top {
  opacity: 0;
  position: fixed;
  left: 3%;
  bottom: 6%;
  cursor: pointer;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .page_top {
    display: none;
  }
}

.page_top.is-active {
  opacity: 1;
}

.page_top:after {
  content: "";
  position: absolute;
  bottom: 6em;
  left: 50%;
  width: 2px;
  height: 150px;
  background: rgba(255, 255, 255, 0.6);
  opacity: 0.6;
}

.page_top_text {
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  writing-mode: vertical-lr;
  width: 20px;
}

.c_heading.color_white {
  color: #fff;
}
.c_heading.color_white .text_en {
  color: #fff;
}
.c_heading .text_en {
  color: var(--main_color);
  font-size: 1.875rem;
  display: block;
}
@media screen and (max-width: 767px) {
  .c_heading .text_en {
    font-size: clamp(30px, 8vw, 60px);
  }
}
.c_heading .text_ja {
  font-size: 1rem;
  font-weight: 500;
  display: block;
  margin-top: 14px;
}
@media screen and (max-width: 767px) {
  .c_heading .text_ja {
    font-size: clamp(14px, 3.74vw, 22px);
  }
}

.c_heading.heading_size02 .text_en {
  font-size: 2.5rem;
}
@media screen and (max-width: 767px) {
  .c_heading.heading_size02 .text_en {
    font-size: 1.875rem;
  }
}
.c_heading.heading_size02 .text_ja {
  font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
  .c_heading.heading_size02 .text_ja {
    font-size: 0.75rem;
  }
}

.c_cont_heading {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(1.25rem, 2.84vw, 2.125rem);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .c_cont_heading {
    font-size: clamp(20px, 4.54vw, 34px);
  }
}

.c_under_heading_text {
  margin-top: 2.5rem;
}
.c_under_heading_text p:not(:last-of-type) {
  margin-bottom: 1.7em;
}
@media screen and (max-width: 767px) {
  .c_under_heading_text {
    margin-top: 1.875rem;
  }
}

@media screen and (max-width: 768px) {
  .c_detail_text_wrap {
    margin-top: 3.125rem;
  }
}
.c_detail_text_wrap p:not(:last-of-type) {
  margin-bottom: 1.8em;
}

/*
共通リストスタイル01
共通リストスタイル02
共通内部リンク（背景画像と一つのリンク）


 ページ下部内部リンクリスト
 共通リードエリア
 コンテンツレイアウト01
 共通テーブルスタイル
 ローディングコンテンツ
*/
.alternative {
  position: fixed !important;
  inset: 0 !important;
  display: block !important;
  inline-size: 4px !important;
  block-size: 4px !important;
  contain: strict !important;
  pointer-events: none !important;
  opacity: 0 !important;
}

.c_inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 92%;
}
@media screen and (max-width: 767px) {
  .c_inner {
    width: 86%;
  }
}

.c_padding {
  padding: 9.375rem 0;
}
@media screen and (max-width: 768px) {
  .c_padding {
    padding: 5rem 0;
  }
}

.c_padding_top {
  padding-top: 9.375rem;
}
@media screen and (max-width: 768px) {
  .c_padding_top {
    padding-top: 5rem;
  }
}

.c_margin {
  margin-top: 9.375rem;
}
@media screen and (max-width: 768px) {
  .c_margin {
    margin-top: 5rem;
  }
}

.c_margin02 {
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  .c_margin02 {
    margin-top: 3.75rem;
  }
}

.bg_change_main {
  background: var(--pale_cyan);
}

.c_list_item {
  border-bottom: 1px solid rgba(181, 192, 190, 0.6);
  padding: 5rem 0;
}
@media screen and (max-width: 767px) {
  .c_list_item {
    padding: 3.125rem 0;
  }
}
.c_list_item:first-of-type {
  border-top: 1px solid rgba(181, 192, 190, 0.6);
}
.c_list_item .num {
  color: var(--main_color);
  font-size: 2.25rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .c_list_item .num {
    font-size: 1.875rem;
  }
}

.c_list_item_inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0 80px;
}
@media screen and (max-width: 767px) {
  .c_list_item_inner {
    gap: 0 20px;
    align-items: flex-start;
  }
}

.c_list_item_ttl {
  font-family: "Noto Serif JP", serif;
  font-size: 1.25rem;
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 767px) {
  .c_list_item_ttl {
    font-size: 1.125rem;
  }
}

.c_list_column {
  display: flex;
  justify-content: space-between;
  margin-top: 5rem;
  gap: 60px 4%;
}
@media screen and (max-width: 767px) {
  .c_list_column {
    flex-direction: column;
  }
}

@media screen and (min-width: 768px) {
  .c_list_column-item {
    width: 48%;
  }
}
.c_list_column-item .img_and_num {
  position: relative;
}
.c_list_column-item .num {
  color: var(--main_color);
  font-size: 3.125rem;
  position: absolute;
  bottom: -0.1em;
}
.c_list_column-item .js-anim_child {
  opacity: 0;
  transform: translateY(50px);
}
.c_list_column-item .js-anim_child.is-animated {
  animation: fadeUp 0.6s ease-out forwards;
}

.c_list_column-title {
  color: var(--main_color);
  font-size: 1.125rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  margin: 2.5rem 0 1.875rem;
  opacity: 0;
  transform: translateY(50px);
}

.c_lead-wrap {
  position: relative;
  display: flex;
}
@media screen and (min-width: 768px) {
  .c_lead-wrap {
    justify-content: space-between;
  }
}
@media screen and (max-width: 767px) {
  .c_lead-wrap {
    flex-direction: column-reverse;
    align-items: flex-end;
  }
}
@media screen and (min-width: 768px) {
  .c_lead-wrap .c_cont_heading {
    white-space: nowrap;
  }
}
@media screen and (max-width: 767px) {
  .c_lead-wrap .c_cont_heading {
    margin-top: 3.75rem;
  }
}

.c_lead-hero_text {
  color: var(--main_color);
  font-family: "Cormorant Infant", serif;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 0.8;
  position: relative;
  z-index: 2;
  margin-bottom: 3.125rem;
}
@media screen and (min-width: 768px) {
  .c_lead-hero_text {
    white-space: nowrap;
  }
}
@media screen and (max-width: 767px) {
  .c_lead-hero_text {
    position: absolute;
    top: 10px;
  }
}

.c_lead-img_area {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .c_lead-img_area {
    width: 41%;
  }
}
@media screen and (max-width: 767px) {
  .c_lead-img_area {
    right: -8%;
    width: 70%;
  }
}

.c_internal_link_with_bg {
  max-width: 1500px;
  width: 92%;
  margin: 11.25rem auto 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c_internal_link_with_bg {
    width: 86%;
    margin: 6.25rem auto 0;
  }
}

.c_internal_link_bg-wrap {
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .c_internal_link_bg-wrap {
    height: 450px;
  }
}

.c_internal_link_bg {
  max-width: inherit;
  vertical-align: bottom;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .c_internal_link_bg {
    position: absolute;
    z-index: 2;
    height: 100%;
    width: 100%;
    top: 0;
  }
}

.c_internal_link {
  color: #fff;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .c_internal_link {
    padding-top: 86%;
  }
}

.c_internal_link_cont {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .c_internal_link_cont {
    width: 86%;
  }
}
.c_internal_link_cont .ttl_en_lg {
  font-size: 3.75rem;
  font-size: clamp(3.125rem, 5vw, 3.75rem);
  line-height: 1.2;
}
.c_internal_link_cont .ttl_ja_sm {
  margin: 10px 0 50px;
}
@media screen and (max-width: 767px) {
  .c_internal_link_cont .ttl_ja_sm {
    margin: 10px 0 34px;
  }
}

@media screen and (max-width: 767px) {
  .c_internal_link .c_btn {
    width: 80%;
    max-width: 450px;
    height: 66px;
  }
}

.c_table {
  border-collapse: collapse;
  width: 100%;
}
.c_table th, .c_table td {
  border-top: 1px solid rgba(181, 192, 190, 0.6);
  border-bottom: 1px solid rgba(181, 192, 190, 0.6);
  font-weight: 400;
  padding: 30px 0;
}
.c_table th {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 0.9375rem;
  width: 24%;
  text-align: left;
  vertical-align: top;
}
@media screen and (max-width: 767px) {
  .c_table th {
    font-size: 0.8125rem;
    padding: 16px 2% 16px 0;
  }
}
.c_table td {
  width: 78%;
}
@media screen and (max-width: 767px) {
  .c_table td {
    font-size: 0.75rem;
    padding: 16px 0;
  }
}

.c_page_kv {
  color: #fff;
  position: relative;
}
.c_page_kv::before {
  content: "";
  display: block;
  background: var(--main_color);
  position: absolute;
  top: 20%;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: -1;
}

.c_page_kv-inner {
  max-width: 1400px;
  width: 92%;
  position: relative;
}

.c_page_kv-img_wrap {
  max-width: 1200px;
  width: 96%;
}
@media screen and (max-width: 767px) {
  .c_page_kv-img_wrap {
    height: 60vw;
  }
}

.c_page_kv-img {
  object-fit: cover;
  vertical-align: bottom;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .c_page_kv-img {
    width: auto;
    height: 100%;
  }
}

.c_page_kv-title {
  position: absolute;
  bottom: 16%;
  right: -0.3em;
  z-index: 2;
  opacity: 0;
  animation: 0s ease-in 1s forwards fadeOp;
}
@media screen and (max-width: 767px) {
  .c_page_kv-title {
    bottom: 9%;
    right: -0.5em;
  }
}
.c_page_kv-title .text_en, .c_page_kv-title .text_ja {
  display: block;
  text-align: right;
}
.c_page_kv-title .text_en span, .c_page_kv-title .text_ja span {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.3s;
  display: inline-block;
  will-change: transform;
}
.c_page_kv-title .text_en {
  font-size: clamp(3.125rem, 10vw, 7.5rem);
}
@media screen and (max-width: 767px) {
  .c_page_kv-title .text_en {
    font-size: clamp(3.75rem, 18.67vw, 7.5rem);
  }
  .c_page_kv-title .text_en.long_word {
    font-size: clamp(3.75rem, 16.8vw, 7.5rem);
  }
}
.c_page_kv-title .text_en span.is-active {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.3s;
}
.c_page_kv-title .text_ja {
  font-size: clamp(0.875rem, 1.5vw, 1.125rem);
  margin-top: 30px;
  opacity: 0;
  animation: 0.5s ease-in 2.4s forwards fadeOp;
}
@media screen and (max-width: 767px) {
  .c_page_kv-title .text_ja {
    margin-top: 20px;
  }
}
.c_page_kv-title .sp_break {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}

@keyframes fadeOp {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.c_page_kv-under_sec {
  max-width: 1200px;
  width: 92%;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  padding: 50px 0;
}
@media screen and (max-width: 1399px) {
  .c_page_kv-under_sec {
    padding-left: 2%;
  }
}
@media screen and (max-width: 767px) {
  .c_page_kv-under_sec {
    padding: 34px 0;
  }
}

.c_page_kv-internal_link {
  font-size: 0.8125rem;
  display: flex;
  align-items: center;
  gap: 10px 40px;
}
@media screen and (max-width: 768px) {
  .c_page_kv-internal_link {
    display: none;
  }
}
.c_page_kv-internal_link li {
  line-height: 1.6;
}
.c_page_kv-internal_link li::before {
  content: "";
  width: 4px;
  height: 4px;
  background: #fff;
  display: inline-block;
  vertical-align: middle;
  margin-right: 14px;
  position: relative;
  top: -1px;
}

.breadcrumb {
  font-family: "Noto Serif JP", serif;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .breadcrumb {
    font-size: 0.625rem;
    justify-content: flex-end;
    width: 100%;
  }
}
.breadcrumb li:not(:first-of-type)::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 1px;
  background: rgba(246, 246, 246, 0.6);
  vertical-align: middle;
  margin: 0 20px;
}
@media screen and (max-width: 767px) {
  .breadcrumb li:not(:first-of-type)::before {
    width: 14px;
    margin: 0 14px;
  }
}
.breadcrumb .current_text {
  opacity: 0.3;
}

.header {
  color: var(--black);
  padding: 30px 100px 30px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.header_flex {
  display: flex;
  align-items: center;
}

.c_header_img_logo {
  height: auto;
  vertical-align: bottom;
}
@media screen and (max-width: 767px) {
  .c_header_img_logo {
    width: 50%;
  }
}

.header_logo_side_text {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  word-break: keep-all;
  margin-left: 30px;
}
@media screen and (max-width: 1100px) {
  .header_logo_side_text {
    display: none;
  }
}

.header_nav {
  color: var(--black);
  font-family: "Noto Serif JP", serif;
  font-size: clamp(0.625rem, 1.17vw, 0.875rem);
  font-weight: 500;
  display: flex;
  justify-content: flex-end;
  gap: 10px 2.8em;
  margin-left: 16px;
  white-space: nowrap;
}
.header_nav .link_text {
  color: inherit;
}
.header_nav .link_text._current {
  color: var(--main_color);
}

.header_btn_menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: fixed;
  right: 1em;
  z-index: 100;
}
.header_btn_menu .text_menu {
  color: var(--main_color);
  font-family: "Cormorant Infant", serif;
  line-height: 1;
  writing-mode: vertical-lr;
  position: absolute;
  bottom: -4em;
  left: calc(50% - 0.5em);
}
@media screen and (max-width: 767px) {
  .header_btn_menu .text_menu {
    display: none;
  }
}

.header_btn {
  background-color: #fff;
  border-radius: 5em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 60px;
  width: 60px;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .header_btn {
    height: 50px;
    width: 50px;
  }
}

.header_btn_elm_wrap {
  width: 20px;
  height: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.header_btn_elm {
  display: block;
  width: 4px;
  height: 4px;
  background: var(--main_color);
}
@media screen and (max-width: 767px) {
  .header_btn_elm {
    width: 3px;
    height: 3px;
  }
}
.header_btn_elm:not(:first-child) {
  margin-top: 4px;
}
@media screen and (max-width: 767px) {
  .header_btn_elm:not(:first-child) {
    margin-top: 3px;
  }
}

.header_open {
  background-color: var(--main_color);
  overflow-y: scroll;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}
.header_open .header_btn_elm_wrap {
  width: 16px;
  height: 16px;
  left: 1px;
}
.header_open .header_btn_elm_wrap .header_btn_elm {
  width: 100%;
  height: 1px;
}
.header_open .header_btn_elm_wrap .header_btn_elm:first-of-type {
  transform: rotate(45deg) translateY(0px) scale(1.3, 1.6);
  transition: transform 0.3s ease-out;
  transform-origin: top left;
}
.header_open .header_btn_elm_wrap .header_btn_elm:last-of-type {
  transform: rotate(-45deg) translateY(0px) scale(1.3, 1.6);
  transition: transform 0.3s ease-out;
  transform-origin: bottom left;
}
.header_open .header_btn_menu .text_menu {
  color: #fff;
}

.header.js-open .header_nav {
  opacity: 0;
}
.header.js-open + .header_open {
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
  transition: 0.5s;
}

.header_open_head {
  color: #fff;
  padding: 30px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.header_open_nav_wrap {
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  padding-top: 6vh;
  padding-bottom: 6em;
}

.header_open_nav {
  color: #fff;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .header_open_nav {
    width: 46%;
  }
}
.header_open_nav li {
  width: 100%;
}

.header_open_nav_link {
  color: currentColor;
}

.header_open_main_link {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .header_open_main_link {
    display: flex;
    justify-content: space-between;
    gap: 4%;
  }
}
.header_open_main_link .header_open_nav_link {
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 26px 0;
  width: 100%;
}

.header_open_menu_text {
  line-height: 1.6;
}
.header_open_menu_text .text_en {
  font-family: "Cormorant Infant", serif;
  font-size: 1.75rem;
  font-weight: 400;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .header_open_menu_text .text_en {
    font-size: 1.25rem;
  }
}
.header_open_menu_text .text_ja {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-top: 6px;
}
@media screen and (max-width: 767px) {
  .header_open_menu_text .text_ja {
    font-size: 0.75rem;
  }
}

@media screen and (max-width: 920px) {
  .header_logo_side_text {
    display: none;
  }
  .header_nav {
    display: none;
  }
}
.header_open_contact_wrap {
  margin-top: 5.625rem;
  text-align: center;
  position: relative;
}
@media screen and (min-width: 768px) {
  .header_open_contact_wrap {
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .header_open_contact_wrap {
    margin-top: 3.75rem;
  }
}
.header_open_contact_wrap .c_btn {
  font-size: 1.25rem;
}
@media screen and (max-width: 767px) {
  .header_open_contact_wrap .c_btn {
    font-size: 1rem;
    height: 70px;
  }
}
@media screen and (min-width: 768px) {
  .header_open_contact_wrap .privacy_p_text {
    position: absolute;
    white-space: nowrap;
    right: 0;
    bottom: -0.5em;
  }
}
@media screen and (max-width: 767px) {
  .header_open_contact_wrap .privacy_p_text {
    margin-top: 20px;
  }
}

.footer {
  background: #212424;
  padding: 12.5rem 0 5rem;
  position: relative;
  margin-top: 12.5rem;
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 12.5rem 0 3.75rem;
  }
}

.footer_contact_box {
  background: #fff;
  color: #202020;
  display: block;
  padding: 5rem 0;
  position: absolute;
  max-width: 1500px;
  width: 92%;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
  transition: 0.3s ease-in;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .footer_contact_box {
    padding: 2.5rem 0;
    width: 86%;
  }
}

.footer_contact_box::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: calc(100% + 2px);
  background: var(--main_color);
  left: 0;
  bottom: 0;
  top: 0;
  margin: auto;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.3s;
  z-index: -1;
}

@media screen and (max-width: 767px) {
  .footer_contact_box .c_btn_arrow {
    width: 19%;
  }
}
.footer_contact_box .c_btn_arrow.hover_before {
  transform: translateX(0);
}
.footer_contact_box .c_btn_arrow.hover_after {
  background: rgba(255, 255, 255, 0.6);
}

.footer_contact_box:hover {
  color: #fff;
  opacity: 1;
}
.footer_contact_box:hover .hover_before {
  opacity: 0;
}
.footer_contact_box:hover .hover_after {
  visibility: visible;
  transform: translateX(0);
  transition: 0.3s ease-in;
}
.footer_contact_box:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}

.footer_contact_inner {
  max-width: 1300px;
  width: 92%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .footer_contact_inner {
    width: 84%;
    flex-direction: column;
    align-items: flex-start;
  }
}
.footer_contact_inner .text_en {
  color: inherit;
}

.footer_contact_text {
  margin-left: 9%;
}
@media screen and (min-width: 768px) {
  .footer_contact_text {
    width: 58%;
  }
}
@media screen and (max-width: 767px) {
  .footer_contact_text {
    margin-left: 0;
    margin-top: 20px;
  }
}

.footer_inner {
  color: var(--gray);
  max-width: 1400px;
  width: 92%;
  margin: 0 auto;
}

.footer_upper_cont {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.footer_logo_addr {
  min-width: 170px;
}

.footer_nav_list {
  font-size: 0.8125rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 20px 50px;
  margin-top: 3.75rem;
  margin-left: 10px;
}
@media screen and (max-width: 767px) {
  .footer_nav_list {
    display: none;
  }
}
.footer_nav_list a {
  color: var(--gray);
}

.footer_addr {
  font-size: 0.75rem;
  line-height: 3;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .footer_addr {
    line-height: 2;
  }
}

.footer_under {
  border-top: 1px solid rgba(79, 79, 79, 0.6);
  font-family: "Cormorant Infant", serif;
  font-size: 0.75rem;
  text-align: center;
  margin-top: 5rem;
  padding-top: 3.75rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .footer_under {
    margin-top: 5rem;
    padding-top: 3.75rem;
  }
}
.footer_under .privacy_p_text {
  font-size: 0.75rem;
  line-height: 1.6;
  position: absolute;
  right: 30px;
  bottom: 0;
}
@media screen and (max-width: 767px) {
  .footer_under .privacy_p_text {
    display: none;
  }
}

.p-contact_lead {
  padding: 6.25rem 0 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-contact_lead {
    padding: 5rem 0 1.25rem;
  }
}

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

.p-contact_item {
  border-top: 1px solid rgba(181, 192, 190, 0.6);
  display: flex;
  align-items: flex-start;
  font-size: 0.875rem;
  padding: 30px 0;
}
@media screen and (max-width: 767px) {
  .p-contact_item {
    flex-direction: column;
  }
}

.p-contact_title {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  font-family: "Noto Serif JP", serif;
  font-size: 0.9375rem;
  font-weight: 500;
  cursor: auto;
}
@media screen and (min-width: 768px) {
  .p-contact_title {
    width: 25%;
    height: 60px;
  }
}
.p-contact_title .required, .p-contact_title .optional {
  display: inline-block;
  font-size: 0.6875rem;
  letter-spacing: 0;
  margin-right: 3em;
  padding: 5px 6px 6px;
}
@media screen and (max-width: 767px) {
  .p-contact_title .required, .p-contact_title .optional {
    margin-right: 1.6em;
  }
}
.p-contact_title .required {
  background: var(--main_color);
  color: #fff;
}
.p-contact_title .optional {
  background: #787f7f;
  color: #fff;
}

.p-contact_input {
  background: #fff;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-contact_input {
    margin-top: 16px;
  }
}
.p-contact_input input, .p-contact_input textarea {
  border: 1px solid rgba(181, 192, 190, 0.6);
  width: 100%;
  padding: 19px;
  display: block;
}
.p-contact_input input {
  height: 100%;
}

.wpcf7-not-valid-tip {
  font-size: 0.8125rem;
  position: absolute;
  white-space: nowrap;
}

@media screen and (max-width: 767px) {
  .p-contact_select_column .wpcf7-not-valid-tip {
    font-size: 10px;
    white-space: nowrap;
  }
}

.p-contact_radio_item,
.p-contact_check_item {
  padding: 20px 12px 20px 0;
}

.wpcf7-radio, .wpcf7-checkbox {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 20px;
}

.wpcf7-select {
  background: #fff;
  padding: 20px;
}
@media screen and (max-width: 767px) {
  .wpcf7-select {
    padding: 12px;
  }
}

.wpcf7-list-item {
  margin: 0;
}

.wpcf7-list-item-label {
  font-family: "Noto Serif JP", serif;
  font-size: 0.9375rem;
  font-weight: 500;
  position: relative;
  padding-left: 2.6em;
  padding-top: 2px;
  margin-right: 30px;
  display: flex;
  align-items: center;
}
.wpcf7-list-item-label::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: #f5f5f5;
  width: 20px;
  height: 20px;
  border: 1px solid rgba(181, 192, 190, 0.6);
}

input:checked + .wpcf7-list-item-label::before {
  border: 1px solid var(--main_color);
}

input:checked + .wpcf7-list-item-label::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  z-index: 2;
}

.p-contact_radio_item input,
.p-contact_check_item input {
  display: none;
}

.p-contact_radio_item .wpcf7-radio label {
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.p-contact_radio_item .wpcf7-radio input:checked + .wpcf7-list-item-label::after {
  background: var(--main_color);
  border: 1px solid var(--main_color);
  border-radius: 50%;
  transform: scale(0.6);
}
.p-contact_radio_item .wpcf7-list-item-label::before {
  border: 1px solid #f5f5f5;
  border-radius: 50%;
}

.p-contact_check_item input:checked + .wpcf7-list-item-label::before {
  background: var(--main_color);
}
.p-contact_check_item input:checked + .wpcf7-list-item-label::after {
  left: 7px;
  top: 3px;
  width: 6px;
  height: 11px;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}
.p-contact_check_item .wpcf7-list-item-label::before {
  background: #fff;
}

.p-contact_select_column {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}
.p-contact_select_column .select_item {
  width: 32%;
}
.p-contact_select_column .wpcf7-form-control-wrap {
  display: inline-block;
  width: calc(100% - 3em);
  margin-right: 1em;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-contact_select_column .wpcf7-form-control-wrap {
    width: calc(100% - 2em);
    margin-right: 10px;
    margin-top: 16px;
  }
}
.p-contact_select_column .wpcf7-form-control-wrap::after {
  content: "";
  display: block;
  width: 8px;
  height: 4px;
  background-color: var(--main_color);
  -webkit-clip-path: polygon(50% 4px, 0% 0%, 8px 0%);
          clip-path: polygon(50% 4px, 0% 0%, 8px 0%);
  position: absolute;
  top: 46%;
  right: 10px;
}
@media screen and (max-width: 767px) {
  .p-contact_select_column .wpcf7-form-control-wrap::after {
    right: 5px;
  }
}
.p-contact_select_column select {
  border: none;
  width: 100%;
  -webkit-appearance: none;
          appearance: none;
}

.p-contact_privacy_item {
  border-top: 1px solid rgba(176, 185, 198, 0.2);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 3.75rem;
}
.p-contact_privacy_item .wpcf7-list-item-label {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, system-ui;
  font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
  .p-contact_privacy_item {
    padding-top: 2.5rem;
  }
}

.privacy_popup_text {
  cursor: pointer;
  color: var(--main_color);
  text-decoration: underline;
  text-decoration-color: var(--main_color);
  text-underline-offset: 5px;
  letter-spacing: 0.05em;
}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
  border: none;
  color: #dc3232;
}

.p-contact_submit_wrap {
  margin-top: 40px;
  text-align: center;
  position: relative;
}
.p-contact_submit_wrap .wpcf7-spinner {
  position: absolute;
  top: 0;
}

.wpcf7-submit {
  background: transparent;
  border: none;
  color: #fff;
  display: inline-block;
  font-family: "Noto Serif JP", serif;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  width: auto;
  min-width: 360px;
  height: 86px;
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .wpcf7-submit {
    min-width: 280px;
    width: 80%;
    height: 70px;
  }
}

.submit_btn_wrap {
  background: var(--main_color);
  border: 1px solid transparent;
  display: inline-block;
  position: relative;
  overflow: hidden;
  z-index: 2;
}
.submit_btn_wrap .hover_after {
  display: none;
}

.submit_btn_wrap.abled_wrap::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: calc(100% + 2px);
  background: #fff;
  left: 0;
  bottom: 0;
  top: 0;
  margin: auto;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.3s;
  z-index: -1;
}
.submit_btn_wrap.abled_wrap:hover .wpcf7-submit {
  color: var(--main_color);
}
.submit_btn_wrap.abled_wrap:hover .hover_before {
  display: none;
}
.submit_btn_wrap.abled_wrap:hover .hover_after {
  display: inline-block;
}
.submit_btn_wrap.abled_wrap:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}

.submit_btn_wrap.disabled_wrap {
  background: #dfdddd;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}
.submit_btn_wrap.disabled_wrap::before {
  content: none;
}

.wpcf7 form .wpcf7-response-output {
  margin: 2em 0.5em 1em;
  padding: 0.2em 1em;
  border: none;
  max-width: 800px;
  margin: 60px auto 0;
}

#popup-wrapper {
  background: rgba(0, 0, 0, 0.7);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: none;
  z-index: 300;
}

#popup-inside {
  width: 100%;
  max-width: 1000px;
  height: 100%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  padding: 60px 0;
}
@media screen and (max-width: 767px) {
  #popup-inside {
    width: 96%;
  }
}

.privacy_inner {
  background: #fff;
  padding: 60px;
  width: 100%;
  height: 100%;
  overflow-y: scroll;
}
@media screen and (max-width: 767px) {
  .privacy_inner {
    padding: 40px 30px;
  }
}

.privacy_title {
  line-height: 1.6;
}
.privacy_title .text_en, .privacy_title .text_ja {
  display: block;
}
.privacy_title .text_en {
  font-size: 2.5rem;
}
@media screen and (max-width: 767px) {
  .privacy_title .text_en {
    font-size: 1.875rem;
  }
}
.privacy_title .text_ja {
  margin-top: 16px;
}

.privacy_contet {
  font-size: 0.875rem;
  margin-top: 3.75rem;
}
.privacy_contet .mt {
  margin-top: 30px;
}

#close_popup {
  position: absolute;
  top: 30px;
  right: 5px;
  cursor: pointer;
  color: #fff;
  z-index: 2;
}

.close_cont {
  display: flex;
  align-items: center;
  position: relative;
  line-height: 1;
  top: -0.5em;
}
.close_cont .text_close {
  font-family: "Cormorant Infant", serif;
  font-size: 0.875rem;
}
.close_cont .menu_buger {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 1.25rem;
  width: 1.25rem;
  margin-right: 6px;
  cursor: pointer;
}
.close_cont .menu_buger_line {
  position: absolute;
  left: 0;
  display: block;
  width: 1.25rem;
  height: 1px;
  background: #fff;
  transition: transform 0.3s ease-out;
  transform-origin: left;
}
.close_cont .menu_buger_line:first-of-type {
  top: 3px;
  transform: rotate(45deg) translateY(0px) scale(1, 1.4);
  transition: transform 0.3s ease-out;
}
.close_cont .menu_buger_line:last-of-type {
  bottom: 2px;
  transform: rotate(-45deg) translateY(0px) scale(1, 1.4);
  transition: transform 0.3s ease-out;
}

/*
  KV
  ボタンの共通スタイル
  About
  Business
  Performance
  Company
  Recruit
*/
.splash_screen {
  background: #f4f8f7;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  transition: opacity 3s, z-index 2s ease;
}

.top_kv {
  color: #fff;
  position: relative;
  height: calc(100vh - 92px);
}
@media screen and (max-width: 767px) {
  .top_kv {
    height: calc(100vh - 90px);
    z-index: 2;
  }
}

.top_kv::before {
  content: "";
  position: absolute;
  top: inherit;
  bottom: -1px;
  left: 0;
  background: var(--main_color);
  display: block;
  width: 100%;
  height: 61.3333333333%;
  z-index: -1;
  opacity: 0;
  animation: fadeOp 1.6s cubic-bezier(0.77, 0, 0.175, 1) forwards, topKvBg 1s ease forwards;
  animation-delay: 3.2s;
  transform: scale(1, 3);
  transform-origin: bottom;
  transition: transform 5s;
}
@media screen and (max-width: 767px) {
  .top_kv::before {
    height: 78%;
  }
}

@keyframes topKvBg {
  0% {
    transform: scale(1, 3);
  }
  100% {
    transform: scale(1, 1);
  }
}
.top_kv_inner {
  max-width: 1550px;
  width: 96%;
  margin-right: auto;
  height: 84%;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top_kv_inner {
    width: 94%;
  }
}

.top_kv_img_wrap {
  max-width: 1500px;
  width: 96%;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.top_kv_img_wrap::after {
  content: "";
  width: 0;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.top_kv_img_wrap::after {
  background-color: var(--main_color);
  animation: animOverlay 1.3s cubic-bezier(0.77, 0, 0.175, 1) forwards;
  animation-delay: 4.3s;
  transform-origin: left;
}
@media screen and (max-width: 767px) {
  .top_kv_img_wrap {
    width: 92%;
  }
}
.top_kv_img_wrap video, .top_kv_img_wrap img {
  width: 100%;
  height: 100%;
  vertical-align: bottom;
  object-fit: cover;
  opacity: 0;
  animation: fadeOp 1s cubic-bezier(0.77, 0, 0.175, 1) forwards;
  animation-delay: 5s;
}

.top_kv_text_wrap {
  font-size: clamp(100px, 12.5vw, 10.625rem);
  position: absolute;
  right: 0;
  bottom: -0.72em;
}
@media screen and (max-width: 767px) {
  .top_kv_text_wrap {
    font-size: clamp(66px, 18.94vw, 9.125rem);
  }
}
@media screen and (max-width: 767px) {
  .top_kv_text_wrap {
    bottom: -0.8em;
  }
}

.top_kv_item-01 {
  line-height: 0.9;
  font-size: inherit;
  font-weight: 300;
  letter-spacing: 0;
}
.top_kv_item-01 .text01 {
  font-family: "Josefin Sans", serif;
  display: block;
  opacity: 0;
  animation: fadeOp 0.6s cubic-bezier(0.77, 0, 0.175, 1) forwards;
  animation-delay: 5.6s;
}
.top_kv_item-01 .text02, .top_kv_item-01 .text03 {
  font-family: "Cormorant Infant", serif;
  display: inline-block;
  vertical-align: bottom;
  opacity: 0;
  animation: fadeOp 1s cubic-bezier(0.77, 0, 0.175, 1) forwards;
  animation-delay: 6s;
}
.top_kv_item-01 .text03 {
  font-weight: 600;
  font-style: italic;
}

.top_kv_item-02 {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(18px, 2.34vw, 1.875rem);
  font-weight: 500;
  letter-spacing: 0.15em;
  line-height: 1.6;
  position: absolute;
  top: 0.5em;
  right: 0;
  text-align: right;
  opacity: 0;
  animation: fadeOp 1s cubic-bezier(0.77, 0, 0.175, 1) forwards;
  animation-delay: 6.4s;
}
@media screen and (max-width: 767px) {
  .top_kv_item-02 {
    font-size: clamp(14px, 3.74vw, 1.75rem);
  }
}

.top_kv_item-03 {
  font-family: "Josefin Sans", serif;
  font-size: 2.125rem;
  font-weight: 300;
  letter-spacing: 0.28em;
  line-height: 1.8;
  opacity: 0;
  animation: fadeOp 1s cubic-bezier(0.77, 0, 0.175, 1) forwards;
  animation-delay: 6.8s;
}
@media screen and (max-width: 767px) {
  .top_kv_item-03 {
    font-size: clamp(18px, 4.54vw, 2.125rem);
  }
}

.top_kv_news {
  font-weight: 300;
  line-height: 1.6;
  max-width: 1400px;
  margin: 7vw auto 0;
  width: 86%;
}
@media screen and (min-width: 768px) {
  .top_kv_news {
    opacity: 0;
    animation: fadeOp 1s cubic-bezier(0.77, 0, 0.175, 1) forwards;
    animation-delay: 7.2s;
  }
}
@media screen and (min-width: 1300px) {
  .top_kv_news {
    margin: 3% auto 0;
  }
}
@media screen and (max-width: 767px) {
  .top_kv_news {
    width: 86%;
    margin-top: 6.25rem;
  }
}

@media screen and (min-width: 768px) {
  .top_kv_news_inner {
    display: flex;
    align-items: center;
  }
}

.top_kv_news_link {
  color: currentColor;
  display: flex;
  align-items: center;
  position: relative;
}
@media screen and (min-width: 1300px) {
  .top_kv_news_link {
    max-width: 38%;
  }
}
@media screen and (max-width: 767px) {
  .top_kv_news_link {
    border-top: 1px solid rgba(148, 73, 73, 0.6);
    padding-top: 20px;
    margin-top: 16px;
  }
}
.top_kv_news_link::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 1.5em;
  width: 1px;
  background: rgba(148, 73, 73, 0.6);
  margin: 0 30px;
}
@media screen and (max-width: 767px) {
  .top_kv_news_link::before {
    content: none;
  }
}
.top_kv_news_link .date {
  font-size: 0.75rem;
}
.top_kv_news_link .cont_ttl {
  font-size: 0.8125rem;
  margin-left: 30px;
}
@media screen and (max-width: 767px) {
  .top_kv_news_link .cont_ttl {
    font-size: 0.75rem;
    margin-left: 14px;
  }
}
.top_kv_news_link .arrow {
  margin-left: 30px;
}
@media screen and (max-width: 767px) {
  .top_kv_news_link .arrow {
    margin-left: auto;
    width: 3.125rem;
  }
}

.top_kv_news_head_txt {
  font-family: "Cormorant Infant", serif;
  font-size: 1.125rem;
}
@media screen and (max-width: 767px) {
  .top_kv_news_head_txt {
    font-size: clamp(16px, 2.67vw, 20px);
  }
}

@media screen and (max-width: 767px) {
  .top_c_btn_wrap {
    text-align: center;
  }
}

.p-top_aboutus {
  background-color: var(--main_color);
  color: #fff;
  padding: 9.375rem 0 13.125rem;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-top_aboutus {
    padding: 9.375rem 0 10rem;
  }
}
.p-top_aboutus .c_heading .text_en::before {
  background-color: #fff;
}
.p-top_aboutus .c_heading .text_ja::before {
  background-color: #fff;
}

.p-top_aboutus-bg_text {
  font-family: "Cormorant Infant", serif;
  font-size: 11.25rem;
  font-weight: 300;
  letter-spacing: 0.03em;
  line-height: 0.8;
  white-space: nowrap;
  position: absolute;
  top: 50%;
  z-index: 1;
  opacity: 0.05;
}
@media screen and (max-width: 768px) {
  .p-top_aboutus-bg_text {
    writing-mode: vertical-lr;
    top: 150px;
  }
}

.p-top_aboutus-inner_wrap {
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 767px) {
  .p-aboutus-head_flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  .p-aboutus-head_flex .c_heading {
    margin-top: 12%;
  }
}

.p-top_aboutus-img_area {
  width: 46%;
}
.p-top_aboutus-img_area img {
  width: 100%;
}
.p-top_aboutus-img_area .img02 {
  position: absolute;
  width: 83%;
}
@media screen and (min-width: 768px) {
  .p-top_aboutus-img_area {
    float: right;
    position: relative;
  }
  .p-top_aboutus-img_area .img02 {
    bottom: -30%;
    left: -10%;
  }
}
@media screen and (max-width: 767px) {
  .p-top_aboutus-img_area {
    position: relative;
    right: -8%;
    width: 56%;
  }
  .p-top_aboutus-img_area .img02 {
    bottom: -22%;
    left: -26%;
  }
}

.p-top_aboutus-text_area {
  margin-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .p-top_aboutus-text_area {
    width: 47%;
  }
}
@media screen and (max-width: 767px) {
  .p-top_aboutus-text_area {
    margin-top: 6.25rem;
  }
}
.p-top_aboutus-text_area .top_c_btn_wrap {
  margin-top: 3.75rem;
}

.p-top_aboutus-title {
  font-family: "Noto Serif JP", serif;
  font-size: 1.625rem;
  font-size: clamp(1.125rem, 2.17vw, 1.625rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 2;
  margin-bottom: 1.875rem;
  word-break: keep-all;
}
@media screen and (max-width: 767px) {
  .p-top_aboutus-title {
    font-size: clamp(0.875rem, 3.74vw, 1.875rem);
  }
}

.p-top_business {
  padding: 9.375rem 0 6.25rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top_business {
    padding: 0 0 2.5rem;
  }
  .p-top_business .c_heading {
    width: 62%;
    align-self: center;
    margin: 32% auto 20px 14%;
  }
  .p-top_business .c_heading .text_en {
    line-height: 1;
  }
  .p-top_business .sp_layout01 {
    display: flex;
    align-items: flex-end;
    margin-top: -10%;
    width: 92%;
    margin-right: auto;
  }
  .p-top_business .sp_layout02 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  .p-top_business .sp_layout02 .desc_text {
    width: 100%;
    margin-right: 10%;
  }
}

.p-top_business_desc {
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-top_business_desc {
    width: 92%;
    margin: 3.125rem 0 0 auto;
  }
}
.p-top_business_desc .top_c_btn_wrap {
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-top_business_desc .top_c_btn_wrap {
    margin-right: 6%;
  }
}

@media screen and (min-width: 768px) {
  .p-top_business_text-wrap {
    max-width: 800px;
    width: 50%;
    margin: 0 18.75% 0 31.25%;
  }
  .p-top_business_text-inner {
    max-width: 500px;
    width: 92%;
    margin: 0 auto;
  }
  .p-top_business_img {
    position: absolute;
  }
  .p-top_business_img.bg_img01 {
    left: 0;
    width: 31.25%;
    top: -50px;
    object-fit: cover;
    max-width: 500px;
  }
  .p-top_business_img.bg_img02 {
    right: 0;
    width: 18.75%;
    top: 50%;
    transform: translateY(-50%);
    max-width: 300px;
  }
}
@media screen and (max-width: 767px) {
  .p-top_business_img.bg_img01 {
    width: 100%;
  }
  .p-top_business_img.bg_img02 {
    right: 0;
    width: 18.75%;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-top_business_img.bg_img02 {
    width: 100%;
  }
}
.swiper-wrapper {
  transition-timing-function: linear;
}

/* 画像のサイズ調整 */
.swiper-slide img {
  height: auto;
  width: 100%;
}

.performance_slide {
  margin-top: 10rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .performance_slide {
    margin-top: 6.25rem;
  }
}

@media screen and (min-width: 768px) {
  .p-top_perform_cont_wrap {
    display: flex;
    justify-content: space-between;
  }
}
.p-top_perform_desc {
  margin-top: 3.125rem;
  margin-bottom: 3.75rem;
}

@media screen and (min-width: 768px) {
  .p-top_perform_text_area {
    width: 40%;
  }
}

@media screen and (min-width: 768px) {
  .p-top_perform_link_area {
    width: 50%;
  }
}
.p-top_perform_link_area .link_wrap {
  display: flex;
}
@media screen and (max-width: 767px) {
  .p-top_perform_link_area .link_wrap {
    flex-direction: column;
  }
}
.p-top_perform_link_area + .top_c_btn_wrap {
  margin-top: 5rem;
}

.p-top_perform-link_item_wrap {
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top_perform-link_item_wrap {
    margin-top: 2px;
  }
}
.p-top_perform-link_item_wrap .link_bg {
  vertical-align: bottom;
  scale: 1.5;
}

.p-top_perform-link_item {
  display: block;
  overflow: hidden;
}
.p-top_perform-link_item::before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transition: 0.3s ease;
  z-index: 2;
}

.p-top_perform-text_in {
  position: absolute;
  bottom: 30px;
  color: #fff;
  width: 86%;
  left: 7%;
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .p-top_perform-text_in {
    display: flex;
    justify-content: space-between;
    align-items: center;
    top: 50%;
    transform: translateY(-40%);
    bottom: inherit;
  }
}
.p-top_perform-text_in .text_en, .p-top_perform-text_in .text_ja {
  display: block;
}
.p-top_perform-text_in .text_en {
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .p-top_perform-text_in .text_en {
    font-size: 0.875rem;
  }
}
.p-top_perform-text_in .text_ja {
  font-size: 0.875rem;
  margin-top: 6px;
}
.p-top_perform-text_in .arrow_line_wrap {
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-top_perform-text_in .arrow_line_wrap {
    margin-top: 1.875rem;
  }
}
.p-top_perform-text_in .arrow {
  display: block;
  transform: translateX(0);
  transition: 0.3s ease;
}
.p-top_perform-text_in .hover_line {
  transform: translateX(-100%);
  opacity: 0;
  display: inline-block;
  height: 1px;
  background: rgba(255, 255, 255, 0.6);
  width: 40px;
  transition: 0.3s ease;
  position: absolute;
  left: 0;
  bottom: 2px;
}

.p-top_perform-link_item:hover {
  opacity: 1;
}
.p-top_perform-link_item:hover::before {
  background: rgba(130, 0, 0, 0.8);
  transition: 0.3s ease;
}
.p-top_perform-link_item:hover .arrow {
  transform: translateX(100%);
  opacity: 0;
  transition: 0.3s ease;
}
.p-top_perform-link_item:hover .hover_line {
  opacity: 1;
  transform: translateX(0);
  transition: 0.3s ease;
}

.p-top_company {
  margin-top: 8.75rem;
}
@media screen and (max-width: 767px) {
  .p-top_company {
    margin-top: 5rem;
  }
}

.p-top_company-cont_wrap {
  display: flex;
  justify-content: space-between;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-top_company-cont_wrap {
    flex-direction: column;
  }
}

@media screen and (min-width: 768px) {
  .p-top_company_text_area {
    width: 50%;
  }
}

.p-top_company-desc {
  margin-bottom: 3.75rem;
}

.p-top_company_link_area {
  width: 38%;
}
@media screen and (max-width: 767px) {
  .p-top_company_link_area {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 2%;
    margin-bottom: 5rem;
  }
  .p-top_company_link_area li {
    width: 46%;
  }
}

.p-top_company_link-inner {
  color: var(--black);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(30, 30, 30, 0.6);
  padding: 38px 0 28px;
  position: relative;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-top_company_link-inner {
    padding: 0 0 18px;
  }
}
.p-top_company_link-inner .text_en, .p-top_company_link-inner .text_ja {
  display: block;
}
.p-top_company_link-inner .text_en {
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .p-top_company_link-inner .text_en {
    font-size: 0.875rem;
  }
}
.p-top_company_link-inner .arrow {
  position: absolute;
  top: calc(50% - 3px);
  right: 0;
  z-index: 1;
  transition: 0.2s ease-in;
}
@media screen and (max-width: 767px) {
  .p-top_company_link-inner .arrow {
    width: 30%;
    max-width: 70px;
  }
}
.p-top_company_link-inner .arrow.hover_after {
  background: rgba(130, 0, 0, 0.6);
  display: inline-block;
  width: 70px;
  height: 1px;
  top: calc(50% + 1px);
}
@media screen and (max-width: 767px) {
  .p-top_company_link-inner .arrow.hover_after {
    width: 36px;
  }
}

.p-top_company_link-inner:hover {
  color: var(--main_color);
  opacity: 1;
}
.p-top_company_link-inner:hover .hover_before {
  opacity: 0;
}
.p-top_company_link-inner:hover .arrow.hover_after {
  visibility: visible;
  transform: translateX(-20px);
  transition: 0.3s ease-in;
}
@media screen and (max-width: 767px) {
  .p-top_company_link-inner:hover .arrow.hover_after {
    transform: translateX(-14px);
  }
}

@media screen and (min-width: 768px) {
  .p-top_company_link_area li:first-of-type .p-top_company_link-inner {
    border-top: 1px solid rgba(30, 30, 30, 0.6);
  }
}
.p-top_recruit {
  color: #fff;
  max-width: 1500px;
  width: 92%;
  margin: 11.25rem auto 0;
  padding-bottom: 6.25rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top_recruit {
    width: 86%;
    margin: 8.125rem auto 0;
  }
}

.p-top_recruit_bg {
  position: absolute;
  height: 100%;
}

.p-top_recruit-heading {
  font-size: 7.5rem;
  text-align: center;
  position: relative;
  top: -0.5em;
}
@media screen and (max-width: 767px) {
  .p-top_recruit-heading {
    font-size: clamp(3.75rem, 20vw, 9.375rem);
  }
}
.p-top_recruit-heading .text_en, .p-top_recruit-heading .text_ja {
  display: block;
}
.p-top_recruit-heading .text_ja {
  font-size: 0.875rem;
  margin-top: 20px;
}

.p-top_recruit-text_inner {
  width: 92%;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top_recruit-text_inner .c_btn {
    width: 86%;
  }
}

.p-top_recruit-title {
  font-family: "Noto Serif JP", serif;
  font-size: 1.875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .p-top_recruit-title {
    font-size: 1.25rem;
  }
}

.p-top_recruit-desc {
  margin: 1.25rem 0 4.375rem;
}
@media screen and (max-width: 767px) {
  .p-top_recruit-desc {
    font-size: 0.75rem;
    text-align: left;
    width: 86%;
    margin: 1.875rem auto 3.75rem;
  }
}

@media screen and (min-width: 768px) {
  .p-company_msg {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
}

.p-company_msg_img img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-company_msg_img {
    width: 40%;
  }
}

.p-company_msg_text_wrap {
  display: grid;
  grid-template-rows: 9em 1fr;
}
@media screen and (min-width: 768px) {
  .p-company_msg_text_wrap {
    width: 50%;
  }
}

.p-company_msg_text {
  font-size: 1rem;
  font-family: "Noto Serif JP", serif;
  line-height: 2.8;
}
@media screen and (max-width: 767px) {
  .p-company_msg_text {
    font-size: 0.875rem;
    line-height: 2;
    margin-top: 30px;
  }
}

.p-company_msg_sign {
  font-size: 1rem;
  font-family: "Noto Serif JP", serif;
  justify-self: end;
  margin-top: 20px;
}

@media screen and (max-width: 767px) {
  .p-company_table.c_table th {
    width: 28%;
  }
}

.p-company_access_head_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-company_access_head_wrap {
    flex-wrap: wrap;
  }
}
.p-company_access_head_wrap .c_btn02 {
  width: 220px;
  margin-left: auto;
}

.p-company_accedd_head01 {
  display: flex;
  align-items: center;
  width: 100%;
}
.p-company_accedd_head01 .addr_text {
  margin-left: 16%;
}

.p-company_map_wrap {
  margin-top: 5rem;
  position: relative;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-company_map_wrap {
    padding-top: 75%;
  }
  .p-company_map_wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}

.p-about_lead {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (min-width: 769px) {
  .p-about_lead .c_cont_heading {
    font-size: clamp(1.75rem, 2.84vw, 2.125rem);
    width: 36%;
    min-width: 12em;
    line-height: 2.1;
  }
  .p-about_lead .c_detail_text_wrap {
    width: 56%;
  }
}
@media screen and (max-width: 768px) {
  .p-about_lead {
    flex-direction: column;
    align-items: flex-start;
  }
}

.p-about_content_before_wrap01 {
  background: linear-gradient(to bottom, #f4f8f7 0, #f4f8f7 45%, transparent 45%, transparent 100%);
}

.p-about_content_before_wrap02 {
  background: linear-gradient(to bottom, var(--pale_cyan) 0, var(--pale_cyan) 45%, transparent 45%, transparent 100%);
}

.p-about_content_before_img {
  width: 96%;
}
.p-about_content_before_img.right_side {
  margin-left: auto;
}
.p-about_content_before_img.left_side {
  margin-right: auto;
}
.p-about_content_before_img img {
  width: 100%;
}

.p-about_cont_wrap {
  background: var(--pale_cyan);
  width: 100%;
  position: relative;
  margin-top: -100px;
  padding: clamp(2.5rem, 8.34vw, 6.25rem);
  padding-top: clamp(5rem, 13.34vw, 10rem);
  padding-bottom: clamp(5rem, 13.34vw, 10rem);
}

.p-about_origin .p-about_cont_wrap {
  background: linear-gradient(to right, var(--pale_cyan) 0, var(--pale_cyan) 92%, transparent 92%, transparent 100%);
}
.p-about_origin .p-about_cont_box {
  margin-right: 8%;
}

.p-about_vision .p-about_cont_wrap {
  background: linear-gradient(to left, #f4f8f7 0, #f4f8f7 92%, transparent 92%, transparent 100%);
  margin-left: auto;
  padding-bottom: 0;
}
.p-about_vision .p-about_cont_box {
  margin-left: 8%;
}

.p-about_cont_box {
  max-width: 1200px;
  width: 92%;
  margin: 0 auto;
}

.p-about_ttl_cont {
  display: flex;
}
@media screen and (max-width: 767px) {
  .p-about_ttl_cont {
    flex-direction: column;
  }
}
.p-about_ttl_cont .c_heading {
  white-space: nowrap;
}

@media screen and (min-width: 768px) {
  .p-about_cont_lead {
    margin-left: 10%;
  }
}

.p-about_vision_sub_ttl {
  font-family: "Noto Serif JP", serif;
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-about_vision_sub_ttl {
    font-size: clamp(1.25rem, 4vw, 1.875rem);
    margin-top: 2.5rem;
  }
}

.p-about_detail_list {
  margin-top: 5rem;
}

.p-about_origin_item {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-about_origin_item {
    align-items: flex-start;
  }
}
.p-about_origin_item:not(:first-of-type) {
  margin-top: 40px;
}

.p-about_origin-letter {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1.2em;
  height: 1.2em;
  background: #fff;
  border-radius: 5em;
  color: var(--main_color);
  font-family: "Cormorant Infant", serif;
  font-size: 5rem;
  font-weight: 700;
  line-height: 0.8;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-about_origin-letter {
    font-size: 3.125rem;
  }
}
.p-about_origin-letter::before {
  content: "";
  display: block;
  height: 1px;
  width: 30px;
  position: absolute;
  top: 50%;
  right: -20px;
  background: var(--main_color);
}
@media screen and (max-width: 767px) {
  .p-about_origin-letter::before {
    width: 20px;
    right: -10px;
  }
}

.p-about_origin-detail {
  margin-left: 50px;
  width: calc(100% - 50px - 90px);
}
@media screen and (max-width: 767px) {
  .p-about_origin-detail {
    margin-left: 30px;
    width: calc(100% - 50px - 60px);
  }
}
.p-about_origin-detail .detail_head_wrap {
  line-height: 1.4;
  margin-bottom: 10px;
}
.p-about_origin-detail .text01 {
  font-family: "Cormorant Infant", serif;
  font-size: 1.5rem;
  letter-spacing: 0.03em;
  font-weight: 400;
}
.p-about_origin-detail .text02 {
  font-family: "Noto Serif JP", serif;
  font-size: 1.0625rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-left: 1em;
}
@media screen and (max-width: 767px) {
  .p-about_origin-detail .text02 {
    margin-left: 0;
  }
}

@media screen and (min-width: 768px) {
  .p-business_lead .c_lead-text_area {
    width: 42%;
  }
}
.p-business_lead .c_lead-hero_text {
  font-size: clamp(5.625rem, 12.34vw, 9.25rem);
}
@media screen and (max-width: 767px) {
  .p-business_lead .c_lead-hero_text {
    font-size: clamp(4.625rem, 19.74vw, 9.25rem);
  }
}
.p-business_lead .c_lead-img_area .img02 {
  align-self: flex-start;
  position: relative;
  left: -70px;
  margin-top: -70px;
}
@media screen and (max-width: 767px) {
  .p-business_lead .c_lead-img_area .img02 {
    left: -42%;
  }
}

@media screen and (min-width: 769px) {
  .p-business_estate_heading {
    display: flex;
    justify-content: space-between;
  }
  .p-business_estate_heading .c_heading {
    white-space: nowrap;
  }
  .p-business_estate_heading .desc {
    width: 65%;
    margin-left: 1em;
  }
}
@media screen and (max-width: 768px) {
  .p-business_estate_heading .desc {
    margin-top: 3.75rem;
  }
}

.p-business_estate_under_sec {
  border-top: 1px solid rgba(181, 192, 190, 0.6);
  font-family: "Noto Serif JP", serif;
  font-size: 1rem;
  margin-top: 5.625rem;
  padding-top: 5.625rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-business_estate_under_sec {
    font-size: 0.8125rem;
    margin-top: 3.75rem;
    padding-top: 3.75rem;
  }
}
.p-business_estate_under_sec .btn_wrap {
  margin-top: 2.5rem;
}

.p-business_msg {
  position: relative;
}

.p-business_msg_bg_wrap01 {
  position: absolute;
  left: 0;
  top: 0;
  width: 23%;
  height: 490px;
}
@media screen and (max-width: 1360px) {
  .p-business_msg_bg_wrap01 {
    height: 36vw;
  }
}
@media screen and (max-width: 767px) {
  .p-business_msg_bg_wrap01 {
    left: -8%;
    top: 2%;
    width: 40%;
    height: 67vw;
    max-height: 400px;
  }
}

.p-business_msg_bg {
  position: absolute;
}
.p-business_msg_bg.img01 {
  top: 0;
}
.p-business_msg_bg.img02 {
  bottom: 0;
  right: -16%;
}
.p-business_msg_bg.img03 {
  right: 0;
  width: 25%;
}
@media screen and (max-width: 767px) {
  .p-business_msg_bg.img03 {
    top: -4%;
    width: 33%;
  }
}

.p-business_msg-text_area {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-business_msg-text_area {
    padding-top: 10%;
  }
}

.p-business_msg-hero_text {
  color: var(--main_color);
  font-size: clamp(5.625rem, 12.34vw, 9.25rem);
  margin-left: 18%;
}
@media screen and (max-width: 767px) {
  .p-business_msg-hero_text {
    font-size: clamp(4.625rem, 19.74vw, 9.25rem);
    letter-spacing: 0;
    margin-left: 21%;
  }
}

.p-business_msg-title {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(1.125rem, 2.67vw, 2rem);
  margin-left: 35%;
}
@media screen and (max-width: 767px) {
  .p-business_msg-title {
    font-size: clamp(19px, 5.07vw, 38px);
    width: 8.8em;
    margin-left: auto;
  }
}
.p-business_msg-title .text_sm {
  font-size: 1rem;
  display: block;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-business_msg-title .text_sm {
    font-size: 0.875rem;
    margin-top: 1.875rem;
  }
}
.p-business_msg-title .text_lg {
  font-weight: 400;
  display: block;
  margin: 2.5rem 0;
}
@media screen and (max-width: 767px) {
  .p-business_msg-title .text_lg {
    margin: 1.875rem 0;
    margin-bottom: 14vw;
  }
}

@media screen and (min-width: 768px) {
  .p-business_msg-main_cont {
    margin-left: 35%;
  }
}

@media screen and (min-width: 768px) {
  .p-recruit_lead .c_lead-text_area {
    width: 49%;
  }
}
.p-recruit_lead .c_lead-hero_text {
  font-size: clamp(3.5rem, 6.67vw, 5rem);
  line-height: 1.1;
}
@media screen and (max-width: 767px) {
  .p-recruit_lead .c_lead-hero_text {
    font-size: clamp(3.125rem, 10.67vw, 5rem);
  }
}

.p-recruit_content_before_wrap01 {
  background: linear-gradient(to bottom, var(--pale_cyan) 0, var(--pale_cyan) 45%, transparent 45%, transparent 100%);
}

.p-recruit_content_before_wrap02 {
  background: linear-gradient(to bottom, var(--pale_cyan) 0, var(--pale_cyan) 45%, transparent 45%, transparent 100%);
}

.p-recruit_content_before_img {
  width: 96%;
}
.p-recruit_content_before_img.right_side {
  margin-left: auto;
}
.p-recruit_content_before_img.left_side {
  margin-right: auto;
}
.p-recruit_content_before_img img {
  width: 100%;
  vertical-align: bottom;
}

.p-recruit_interview-hero {
  font-size: 9.25rem;
  line-height: 0.8;
  margin-top: -0.5em;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-recruit_interview-hero {
    font-size: 4.625rem;
  }
}
.p-recruit_interview-hero .text_en, .p-recruit_interview-hero .text_ja {
  display: block;
}
.p-recruit_interview-hero .text_en {
  color: var(--main_color);
}
.p-recruit_interview-hero .text_ja {
  font-size: 1rem;
  margin-top: 20px;
}

.interviewee_name {
  margin-top: 1.25rem;
}

.p-recruit_interview-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 9.375rem;
}
@media screen and (max-width: 768px) {
  .p-recruit_interview-list {
    margin-bottom: 5rem;
  }
}

.p-recruit_interview-list_item {
  margin-top: 6.25rem;
}
@media screen and (min-width: 769px) {
  .p-recruit_interview-list_item {
    width: 48%;
  }
  .p-recruit_interview-list_item:last-of-type {
    width: 100%;
  }
}
.p-recruit_interview-list_item .js-anim_child {
  opacity: 0;
  transform: translateY(50px);
}
.p-recruit_interview-list_item .js-anim_child.is-animated {
  animation: fadeUp 0.6s ease-out forwards;
}

.interview_head {
  position: relative;
  margin-bottom: 1.875rem;
}

.interview_num {
  color: rgba(30, 30, 30, 0.0784313725);
  position: absolute;
  left: 10px;
  bottom: -0.14em;
  z-index: -1;
  font-family: "Cormorant Infant", serif;
  font-size: 6.25rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 0.8;
}

.interview_q {
  font-family: "Noto Serif JP", serif;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
}
.interview_q::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 1px;
  background: var(--main_color);
  margin-right: 20px;
  position: relative;
  top: 1px;
}

@media screen and (min-width: 768px) {
  .p-recruit_workflow-head_detail {
    display: flex;
    justify-content: space-between;
  }
}

.p-recruit_workflow-detail {
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-recruit_workflow-detail {
    width: 75%;
    display: flex;
    gap: 40px;
  }
}
@media screen and (max-width: 767px) {
  .p-recruit_workflow-detail {
    margin-top: 4.375rem;
  }
}
.p-recruit_workflow-detail::before {
  content: "";
  background: var(--main_color);
  display: block;
  position: absolute;
}
@media screen and (min-width: 768px) {
  .p-recruit_workflow-detail::before {
    width: 0;
    height: 30px;
    left: 1px;
    top: 50%;
    transform: translateY(-50%);
  }
}
@media screen and (max-width: 767px) {
  .p-recruit_workflow-detail::before {
    height: 0;
    width: 30px;
    left: 50%;
    transform: translateX(-50%);
  }
}
.p-recruit_workflow-detail li {
  background: #fff;
  padding: 40px 4%;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-recruit_workflow-detail li {
    width: calc(25% - 20px);
  }
}
@media screen and (max-width: 767px) {
  .p-recruit_workflow-detail li {
    padding: 30px 8%;
  }
  .p-recruit_workflow-detail li:not(:first-of-type) {
    margin-top: 30px;
  }
}
.p-recruit_workflow-detail .todo_time {
  color: var(--main_color);
  font-family: "Noto Serif JP", serif;
  font-size: clamp(0.875rem, 1.67vw, 1.125rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.6;
  position: relative;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .p-recruit_workflow-detail .todo_time {
    text-align: center;
    flex-direction: column;
    gap: 20px;
  }
}
.p-recruit_workflow-detail .todo_time::before {
  content: "";
  width: 8px;
  height: 8px;
  display: inline-block;
  background: var(--main_color);
  border-radius: 8px;
}
@media screen and (max-width: 767px) {
  .p-recruit_workflow-detail .todo_time::before {
    margin-right: 14px;
  }
}
.p-recruit_workflow-detail .workflow_text {
  border-top: 1px solid rgba(181, 192, 190, 0.6);
  margin-top: 30px;
  padding-top: 30px;
}
@media screen and (min-width: 768px) {
  .p-recruit_workflow-detail .workflow_text {
    writing-mode: vertical-rl;
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
  }
}
@media screen and (max-width: 767px) {
  .p-recruit_workflow-detail .workflow_text {
    font-size: 0.75rem;
    margin-top: 20px;
    padding-top: 20px;
  }
}

@media screen and (min-width: 768px) {
  .p-recruit_workflow-detail.is-animated::before {
    animation: slideIn 0.8s 1s ease forwards;
  }
}
@media screen and (max-width: 767px) {
  .p-recruit_workflow-detail.is-animated::before {
    animation: slideInVertical 0.8s 1.6s ease forwards;
  }
}

.p-performance_lead {
  padding: 6.25rem 0 5rem;
}
@media screen and (max-width: 767px) {
  .p-performance_lead {
    padding: 5rem 0 3.75rem;
  }
}

.p-performance_cat_index {
  border-top: 1px solid rgba(181, 192, 190, 0.6);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 5rem;
  padding: 6.25rem 0 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-performance_cat_index {
    flex-direction: column;
    padding: 4.375rem 0 1.25rem;
  }
}
@media screen and (min-width: 768px) {
  .p-performance_cat_index .c_heading {
    width: 30%;
  }
}
.p-performance_cat_index .c_heading .text_en {
  font-size: 1.75rem;
}
@media screen and (max-width: 767px) {
  .p-performance_cat_index .c_heading .text_en {
    font-size: clamp(26px, 6.67vw, 38px);
  }
}

@media screen and (min-width: 768px) {
  .p-performance_post_wrap {
    width: 68%;
  }
}
@media screen and (max-width: 767px) {
  .p-performance_post_wrap {
    margin-top: 2.5rem;
  }
}
.p-performance_post_wrap .more_link_wrap {
  text-align: center;
  margin-top: 2.5rem;
}
.p-performance_post_wrap .c_btn02 {
  width: 220px;
  padding: 1.2em 1em;
}

.p-perform_post_cont_wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.performance_item_kodate,
.performance_item_apart {
  opacity: 1;
  visibility: visible;
  transform: scale(1, 1);
  width: 48%;
  transition: 0.5s ease;
  transform-origin: top left;
  margin-bottom: 4%;
  height: 21.2vw;
  max-height: 280px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .performance_item_kodate,
  .performance_item_apart {
    height: 29.2vw;
  }
}
.performance_item_kodate img,
.performance_item_apart img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
}
.performance_item_kodate a,
.performance_item_apart a {
  display: inline;
}
.performance_item_kodate .wp-element-caption,
.performance_item_apart .wp-element-caption {
  opacity: 0;
  height: 0;
}

.performance_item_kodate.is-hidden,
.performance_item_apart.is-hidden {
  opacity: 0;
  visibility: hidden;
  height: 0;
  transform: scale(1, 0);
  transition: 0.5s ease;
  transform-origin: top left;
}

.post_more_btn {
  cursor: pointer;
}

#slb_viewer_wrap .slb_theme_slb_baseline .slb_data_content {
  display: flex;
  flex-wrap: wrap;
}

#slb_viewer_wrap .slb_theme_slb_default .slb_data_title .slb_template_tag_item_title, #slb_viewer_wrap .slb_theme_slb_default .slb_group_status {
  font-size: 0.875rem;
}

#slb_viewer_wrap .slb_theme_slb_default .slb_group_status {
  margin-left: auto;
}

#slb_viewer_wrap .slb_theme_slb_default .slb_group_status .slb_template_tag {
  font-family: "Cormorant Infant", serif;
  font-size: 0.875rem;
  letter-spacing: 0.03em;
}/*# sourceMappingURL=main.css.map */