@charset "UTF-8";
/*-----------------------------------------
    Color
-----------------------------------------*/
/*-----------------------------------------
    font-family
-----------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap)");
/*-----------------------------------------
    Reset
-----------------------------------------*/
/*! destyle.css v4.0.1 | MIT License | https://github.com/nicolas-cusan/destyle.min.css */
*, ::before, ::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
  min-width: 0;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
}

main {
  display: block;
}

p, table, blockquote, address, pre, iframe, form, figure, dl {
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

dt {
  font-weight: 700;
}

dd {
  margin-left: 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

pre {
  font-family: monospace, monospace;
  font-size: inherit;
}

address {
  font-style: inherit;
}

a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

abbr[title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

b, strong {
  font-weight: bolder;
}

code, kbd, samp {
  font-family: monospace, monospace;
  font-size: inherit;
}

small {
  font-size: 80%;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

svg, img, embed, object, iframe {
  vertical-align: bottom;
}

button, input, optgroup, select, textarea {
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
}

button, [type=button], [type=reset], [type=submit] {
  cursor: pointer;
}

button:disabled, [type=button]:disabled, [type=reset]:disabled, [type=submit]:disabled {
  cursor: default;
}

:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

option {
  padding: 0;
}

fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

[type=number] {
  -moz-appearance: textfield;
}

label[for] {
  cursor: pointer;
}

details {
  display: block;
}

summary {
  display: list-item;
}

[contenteditable]:focus {
  outline: auto;
}

table {
  border-color: inherit;
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td, th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: 700;
}

input,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

input[type=submit] {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

/*-----------------------------------------
    font-size
-----------------------------------------*/
/*-----------------------------------------
    Width
-----------------------------------------*/
/*-----------------------------------------
    Height
-----------------------------------------*/
/*-----------------------------------------
    z-index
-----------------------------------------*/
/*-----------------------------------------
    Mixin
-----------------------------------------*/
/*-----------------------------------------
    スマホでhover無効化
-----------------------------------------*/
* {
  line-height: 1.7;
  font-family: "futura-pt", "Noto Sans JP", sans-serif;
}

/*** フェードインアニメーション  ***/
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
body {
  animation: fadeIn 3s forwards;
  position: relative;
  overflow-x: hidden;
  margin: 0 auto;
}

body.is-fixed {
  overflow: clip; /* hiddenでもいいけど相変わらずsafariでは無効のはず */
  overscroll-behavior: none;
}

.bg-gray {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #eee;
  z-index: -9999;
  pointer-events: none;
}
.bg-gray::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(img/texture.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.05;
  z-index: -9998;
}

html {
  width: 100vw;
  overflow-x: hidden;
}

img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

h2 {
  line-height: 1.6;
  letter-spacing: 0.2rem;
}

h3 {
  color: #2E3941;
  font-weight: 400;
  letter-spacing: 0.1rem;
  font-size: 1.125rem;
}

p {
  letter-spacing: 0.05rem;
  font-size: 0.813rem;
  line-height: 2;
  font-weight: 300;
}

li {
  letter-spacing: 0.05rem;
  font-weight: 300;
}

button {
  font-weight: 500;
  letter-spacing: 0.1rem;
}

/* ===============================================
# animation
=============================================== */
.contents-hidden {
  opacity: 0;
  visibility: hidden;
  transform: translateY(3rem);
  transition: opacity 1s ease, visibility 1s ease, transform 1s ease;
}

.fadein {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.contents-hidden-right_side {
  opacity: 0;
  visibility: hidden;
  transform: translateX(3rem);
  transition: opacity 1s ease, visibility 1s ease, transform 1s ease;
}

.contents-fadein-right_side {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.contents-hidden-left_side {
  opacity: 0;
  visibility: hidden;
  transform: translateX(-2rem);
  transition: opacity 1s ease, visibility 1s ease, transform 1s ease;
}

.contents-fadein-left_side {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.hide {
  transition: all 0.3s ease;
  transform: translateY(-100%); /* 上に消えるようにする */
}

.contents-hidden_out {
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s;
}

.contents-hidden_in {
  opacity: 1;
  visibility: visible;
}

@keyframes text_anime_on {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.animate-wrapper {
  overflow: hidden;
  display: inline-block;
}

.animate-inner {
  display: inline-block;
  opacity: 0;
  transform: translateX(100%);
}

/* 右から左へのアニメーション */
.slide-right {
  opacity: 0;
}

.slide-in-from-right {
  animation: slideFromRight 0.8s forwards;
}

@keyframes slideFromRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
.ani-wrap_l {
  opacity: 0;
  overflow: hidden;
  position: relative;
}
.ani-wrap_l::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #F0F0F0;
  z-index: 1;
  pointer-events: none;
  transform: translateX(0);
  transition: none;
  opacity: 1;
}
.ani-wrap_l img {
  transition: none;
}

.ani_wrap_l_scroll {
  opacity: 1;
}
.ani_wrap_l_scroll::before {
  animation: img-wrap 1.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.ani_wrap_l_scroll img {
  animation: img-scale 1.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes img-wrap {
  100% {
    transform: translateX(100%);
    opacity: 0;
  }
}
.bg-video-wrap {
  background: #fff;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  max-width: 480px;
  height: 100vh;
  z-index: -100;
  pointer-events: none;
  overflow: hidden;
}

.bg-video {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  max-width: 480px;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -100;
  pointer-events: none;
  opacity: 0.25;
}

/* ===============================================
# pcの時に表示する
=============================================== */
.pc-top-wrap__left,
.pc-top-wrap__right {
  display: none;
}

@media screen and (min-width: 1024px) {
  .pc-top-wrap__left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 10.4166666667dvh;
    position: fixed;
    top: 0;
    left: 0;
    width: calc((100vw - 480px) / 2);
    height: 100%;
    padding-top: 10vh;
    padding-bottom: 5vw;
    padding-left: 5vw;
    padding-right: 5vw;
  }
  .pc-top-wrap__left.is-fixed-width {
    margin: 0 auto;
  }
  .site-logo {
    display: block;
    text-align: center;
    max-width: 400px;
  }
  .site-logo img {
    width: 14rem;
    height: auto;
    display: inline-block;
  }
  .pc-top-wrap__left-bottom {
    bottom: 2rem;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
    max-width: 400px;
  }
  .pc-top-wrap__right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 10.4166666667dvh;
    position: fixed;
    top: 0;
    right: 0;
    width: calc((100vw - 480px) / 2);
    height: 100%;
    padding-top: 10vh;
    padding-left: 5vw;
    padding-right: 5vw;
  }
  .pc-top-wrap__right.is-fixed-width {
    margin: 0 auto;
  }
  .pc-top-house-img {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .pc-top-house-img img {
    max-width: 300px;
  }
}
.pc-entry-btn {
  display: inline-flex;
  justify-content: center;
  padding: 1rem 3rem 1rem 2rem;
  background-color: #7A7E80;
  color: #f8fafc;
  position: relative;
  transition: background-color 0.3s ease;
  width: 100%;
  margin-top: 3rem;
}
.pc-entry-btn::before {
  content: "";
  position: absolute;
  right: 1.5rem;
  top: 50%;
  width: 1.25rem;
  height: 0.06rem;
  background-color: #f8fafc;
  transform: translateY(-50%);
  transition: right 0.3s ease;
}
.pc-entry-btn::after {
  content: "";
  position: absolute;
  right: 1.5rem;
  top: 50%;
  width: 0.5rem;
  height: 0.5rem;
  border-top: 0.08rem solid #f8fafc;
  transition: width 0.3s ease;
  transform: translateY(-50%) rotate(45deg);
  transition: right 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .pc-entry-btn:hover {
    background-color: rgb(97.112, 100.296, 101.888);
  }
  .pc-entry-btn:hover::before, .pc-entry-btn:hover::after {
    right: 1.2rem;
  }
}

.pc-insta-link {
  width: 1.5rem;
  transition: opacity 0.2s ease;
}
.pc-insta-link img {
  -o-object-fit: contain;
     object-fit: contain;
}
@media (hover: hover) and (pointer: fine) {
  .pc-insta-link:hover {
    opacity: 0.7;
  }
}

.pc-footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.pc-footer-links a {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
}
.pc-footer-links a img {
  width: 0.875rem;
  -o-object-fit: contain;
     object-fit: contain;
}

.sp-width {
  max-width: 480px;
  margin: auto;
  position: relative;
  box-shadow: -6px 0 12px rgba(0, 0, 0, 0.05), 6px 0 12px rgba(0, 0, 0, 0.05);
}

/* ===============================================
# header
=============================================== */
.header {
  position: fixed;
  top: 0;
  z-index: 1200;
  height: 5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  max-width: 480px;
}
@media screen and (min-width: 1024px) {
  .header {
    display: none;
  }
}
.header .header__logo {
  width: 7rem;
}
.header .openbtn {
  position: relative;
  cursor: pointer;
  width: 2.8rem;
  height: 2.8rem;
  z-index: 1900;
}
.header .openbtn span {
  display: inline-block;
  transition: all 0.3s;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 0.06rem;
  background: #2E3941;
  width: 100%;
}
.header .openbtn span:nth-of-type(1) {
  top: 0.9rem;
}
.header .openbtn span:nth-of-type(2) {
  top: 1.5rem;
}
.header .openbtn span:nth-of-type(3) {
  top: 2.1rem;
}
.header .openbtn.active span:nth-of-type(1) {
  transform: translate(-50%, 0) rotate(30deg);
  top: 1.5rem;
}
.header .openbtn.active span:nth-of-type(2) {
  opacity: 0;
}
.header .openbtn.active span:nth-of-type(3) {
  transform: translate(-50%, 0) rotate(-30deg);
  top: 1.5rem;
}
.header .header-g-nav {
  position: fixed;
  z-index: 1100;
  top: 0;
  left: 50%;
  width: 100%;
  height: 100vh;
  opacity: 0;
  display: flex;
  pointer-events: none;
  transition: 0.3s ease-in;
  transform: translateX(-50%);
}
.header .header-g-nav.panelactive {
  opacity: 1;
  pointer-events: auto;
  transition: 0.3s ease-in;
}
.header .header-g-nav .g-nav__inner {
  opacity: 0;
  transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
  transition-delay: 0.3s;
}
.header .header-g-nav.panelactive .g-nav__inner {
  opacity: 1;
  transform: translateY(0);
}
.header .g-nav__wrapper {
  background-color: #f8fafc;
  max-width: 480px;
  width: 100%;
  height: 100%;
  padding: 6rem 4%;
  overflow-y: scroll;
  margin: auto;
}
.header .g-nav__wrapper .menu__inner {
  width: 100%;
}
.header .g-nav__wrapper .menu__inner p {
  font-size: 1rem;
  letter-spacing: 0.15rem;
  font-weight: 500;
}
.header .g-nav-btn {
  margin: 2.5rem auto;
}
.header .g-nav-btn .btn-txt {
  font-size: 1rem;
}

.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.1);
  z-index: -1;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-in;
}
.menu-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.g-nav__inner .g-nav__item a {
  display: block;
  color: #2E3941;
  font-weight: 400;
  margin-bottom: 1.25rem;
  font-size: 1rem;
  border-bottom: 0.05rem solid #BABFC3;
  padding-bottom: 1rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

.g-nab-entry-btn {
  display: inline-flex;
  justify-content: center;
  padding: 1rem 3rem 1rem 2rem;
  background-color: #7A7E80;
  color: #f8fafc;
  position: relative;
  transition: background-color 0.3s ease;
  width: 100%;
  margin-top: 2.5rem;
}
.g-nab-entry-btn::before {
  content: "";
  position: absolute;
  right: 1.5rem;
  top: 50%;
  width: 1.25rem;
  height: 0.06rem;
  background-color: #f8fafc;
  transform: translateY(-50%);
  transition: right 0.3s ease;
}
.g-nab-entry-btn::after {
  content: "";
  position: absolute;
  right: 1.5rem;
  top: 50%;
  width: 0.5rem;
  height: 0.5rem;
  border-top: 0.08rem solid #f8fafc;
  transition: width 0.3s ease;
  transform: translateY(-50%) rotate(45deg);
  transition: right 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .g-nab-entry-btn:hover {
    background-color: rgb(97.112, 100.296, 101.888);
  }
  .g-nab-entry-btn:hover::before, .g-nab-entry-btn:hover::after {
    right: 1.2rem;
  }
}

.gmenu__sns {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 2.5rem;
}

.gmenu__sns img {
  width: 28px;
  -o-object-fit: contain;
     object-fit: contain;
}

.gmenu__privacy {
  margin-top: 1.5rem;
  text-align: center;
}

.gmenu__privacy a {
  font-size: 0.813rem;
  color: #2E3941;
  text-decoration: none;
}

.gmenu__sns {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

.gmenu__sns img {
  width: 28px;
  -o-object-fit: contain;
     object-fit: contain;
}

.gmenu__privacy {
  margin-top: 1.5rem;
  text-align: center;
}

.gmenu__privacy a {
  font-size: 0.813rem;
  color: #2E3941;
  text-decoration: none;
}

.color-change-hover a {
  transition: color 0.2s ease-in-out;
}
@media (hover: hover) and (pointer: fine) {
  .color-change-hover a:hover {
    color: #AC9675;
  }
  .color-change-hover a:hover svg {
    color: #AC9675;
  }
}
.color-change-hover svg {
  transition: color 0.2s ease-in-out;
}

.opacity-hover a {
  opacity: 1;
  transition: opacity 0.2s ease-in-out;
}
@media (hover: hover) and (pointer: fine) {
  .opacity-hover a:hover {
    opacity: 0.6;
  }
}

.img-hover .item-title {
  transition: color 0.2s ease;
}
@media (hover: hover) and (pointer: fine) {
  .img-hover:hover .item-title {
    color: #AC9675;
  }
  .img-hover:hover .thumbnail img {
    opacity: 0.7;
    transform: scale(1.05);
  }
}
.img-hover .thumbnail {
  aspect-ratio: 4/3;
  background-color: #f8fafc;
  overflow: hidden;
}
.img-hover .thumbnail img {
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.accent-color {
  color: #C16C80;
  font-weight: 500;
}

.dli-chevron-down {
  display: inline-block;
  vertical-align: middle;
  color: #f8fafc;
  line-height: 1;
  width: 0.5rem;
  height: 0.5rem;
  margin-left: 0.65rem;
  border: 0.1rem solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(-25%) rotate(135deg);
}

.underline {
  text-decoration: underline;
}

ƒ .icon-wrap {
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2rem;
  height: 2rem;
}

.icon {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 100%;
}

.icon:before,
.icon:after {
  position: absolute;
  content: "";
  display: block;
  transition: all 0.4s;
  background: #2E3941;
  left: 50%;
  top: 50%;
  width: 50%;
  height: 0.08rem;
  transform: translate(-50%, -50%);
}

/* そのうち1本を縦にする */
.icon:before {
  transform: translate(-50%, -50%) rotate(90deg);
}

/* プラスアイコンクリック後、マイナスにする */
.icon.open:before {
  transform: translate(-50%, -50%) rotate(0deg);
}

.request-btn {
  opacity: 0;
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 6rem;
  height: 6rem;
  border: none;
  background: none;
  z-index: 100;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s;
}
@media screen and (min-width: 1024px) {
  .request-btn {
    display: none;
  }
}
.request-btn .mail-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #2E3941;
  width: 2.5rem;
  height: 2.5rem;
  z-index: 2;
}
.request-btn .circle-text-svg {
  position: absolute;
  overflow: visible;
  top: 0;
  left: 0;
  width: 6rem;
  height: 6rem;
  z-index: 2;
  animation: rotate-circle-text 6s linear infinite;
}
@media (hover: hover) and (pointer: fine) {
  .request-btn:hover .circle-text-svg {
    animation-play-state: paused;
  }
}

@keyframes rotate-circle-text {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* ===============================================
# top-view
=============================================== */
.top-view__wrapper {
  position: relative;
  padding: 5rem 4% 0;
  width: 100%;
  height: 100vh;
}
@media screen and (min-width: 1024px) {
  .top-view__wrapper {
    padding: 3rem 4% 0;
  }
}

.top-view-title {
  padding-top: 3vh;
  height: 200px;
}
.top-view-title h1 {
  font-size: 2rem;
  line-height: 1.4;
  font-weight: 300;
  letter-spacing: 0.2rem;
}
.top-view-title span {
  letter-spacing: 0.1rem;
  padding-top: 1.25rem;
  font-weight: 300;
}

.img-slider {
  width: 100%;
  height: calc(100vh - 5rem - 200px);
  overflow: hidden;
  position: relative;
  max-width: 100%;
}
@media screen and (min-width: 1024px) {
  .img-slider {
    height: calc(100vh - 4% - 200px);
  }
}
.img-slider .img-slider__item {
  padding: 5rem 4% 2rem;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 10;
  opacity: 0;
  animation-name: slide-fade;
  animation-duration: 18s;
  animation-iteration-count: infinite;
  transform: scale(1.1);
}
.img-slider .img-slider__item:first-of-type {
  background-image: url(img/top-img01.jpg);
}
.img-slider .img-slider__item:nth-of-type(2) {
  animation-delay: 6s;
  background-image: url(img/top-img02.jpg);
}
.img-slider .img-slider__item:nth-of-type(3) {
  animation-delay: 12s;
  background-image: url(img/top-img03.jpg);
}
.img-slider::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 50%;
  background: linear-gradient(to top, rgb(116, 116, 116), rgba(116, 116, 116, 0));
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 11;
}

@keyframes slide-fade {
  0% {
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  90% {
    opacity: 0;
    transform: scale(1); /* ここで画像サイズを1に戻す */
  }
  100% {
    opacity: 0;
    z-index: 0;
  }
}
/* top-view end */
.section__wrapper {
  padding-top: 4.5rem;
  color: #2E3941;
}

.section__inner {
  max-width: 87.5rem;
  margin: auto;
  padding-left: 4%;
  padding-right: 4%;
}

.scroll_down {
  position: relative;
}
.scroll_down span {
  position: absolute;
  right: 0;
  bottom: 2rem;
  z-index: 20;
  width: 0.6rem;
  padding: 0.625rem 0.625rem 5rem;
  line-height: 0;
  letter-spacing: 0.2em;
  writing-mode: vertical-lr;
  transition: 6s;
  margin: auto;
  font-weight: 300;
}
.scroll_down span::before {
  content: "";
  position: absolute;
  left: 52%;
  top: 0;
  width: 0.4rem;
  height: 0.4rem;
  border: 0.06rem solid #2E3941;
  border-radius: 50%;
  transform: translateX(-50%);
  animation: scroll-dot-move 2.5s cubic-bezier(1, 0, 0, 1) infinite;
  z-index: 2;
}
.scroll_down span:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0.04rem;
  height: 4rem;
  background: #2E3941;
}

@keyframes scroll-dot-move {
  0% {
    top: 52%;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  80% {
    top: 98%;
    opacity: 1;
  }
  100% {
    top: 98%;
    opacity: 0;
  }
}
/* ===============================================
# news
=============================================== */
#news .section__wrapper {
  padding-top: 0;
}
#news h2 {
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  color: #2E3941;
}
#news .news-list__item {
  display: block;
  padding-bottom: 1.5rem;
  border-bottom: 0.05rem solid #BABFC3;
}
#news .news-list__item .news-meta {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding-top: 1rem;
}
#news .news-list__item .news-meta .news-date {
  font-size: 0.75rem;
  color: #2E3941;
  letter-spacing: 0.05rem;
}
#news .news-list__item .news-meta .news-cat {
  font-size: 0.75rem;
  color: #f8fafc;
  background: #888C8E;
  padding: 0.1rem 1rem;
}
#news .news-list__item .news-title {
  font-size: 0.813rem;
  color: #2E3941;
  padding-top: 0.625rem;
}

/* ===============================================
# concept
=============================================== */
.title-anime {
  width: 100%;
  overflow: hidden;
  transform: translate(-100%, 0);
  transition: transform cubic-bezier(0.4, 0, 0.2, 1) 2s;
}
.title-anime .section-title__cp {
  display: flex;
  align-items: center;
  gap: 1rem;
  transform: translate(100%, 0);
  transition: transform cubic-bezier(0.4, 0, 0.2, 1) 2s;
}
.title-anime .main-title {
  display: block;
  transform: translate(100%, 0);
  transition: transform cubic-bezier(0.4, 0, 0.2, 1) 2s;
}
.title-anime.-visible {
  transform: translate(0, 0);
}
.title-anime.-visible .section-title__cp,
.title-anime.-visible .main-title {
  transform: translate(0, 0);
}

.section-title__line {
  content: "";
  display: inline-block;
  width: 2rem;
  height: 0.1rem;
}
.section-title__text {
  font-size: 1rem;
  letter-spacing: 0.2em;
  color: #AD5757;
  font-weight: 700;
}
.section-title h2 {
  width: 100%;
  font-size: clamp(1.5rem, 1.125rem + 1.2vw, 2rem);
}

.concept-img {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  margin-top: 4rem;
}
.concept-img .ani-wrap_l {
  width: 40%;
}
.concept-img .ani-wrap_l:first-child {
  width: 55%;
  margin-bottom: 4rem;
}

#concept .section-title {
  font-weight: 300;
  margin-top: 3rem;
  font-size: 1.5rem;
  padding-left: 4%;
  padding-right: 4%;
  letter-spacing: 0.1rem;
}
#concept .text {
  margin-top: 1.5rem;
  font-size: 15px;
  padding-left: 4%;
  padding-right: 4%;
}
#concept .section__inner {
  margin: 0;
}
#concept .section__inner .concept__item {
  padding-top: 10vh;
}
#concept .section__inner .concept__item:last-child {
  padding-bottom: 30vh;
}

/*画像のブロック*/
.images {
  display: none;
  width: 38vw;
  height: 100vh;
  align-items: center;
  position: sticky;
  position: -webkit-sticky;
  top: 0;
}
@media screen and (min-width: 1024px) {
  .images {
    display: flex;
  }
}
.images p {
  width: 38vw;
  margin: auto;
  display: block;
  visibility: hidden;
  /* 画像が透過pngの時は背景色が必要です */
  position: absolute;
  /* フェード速度 */
  transition: 0.8s;
  opacity: 0;
}
.images img:first-child {
  padding-left: 5rem;
}
.images img:last-child {
  width: 25vw;
  margin-top: 3rem;
}

.images p:first-child,
.images p.active {
  visibility: visible;
  opacity: 1;
}

/* ===============================================
# parallax
=============================================== */
.parallax-container {
  position: relative;
  overflow: hidden;
  height: 70vh;
  width: 480px; /* 必要に応じて調整 */
}
@media screen and (min-width: 1024px) {
  .parallax-container {
    height: 600px;
  }
}

.parallax-item {
  min-height: 100vh;
  width: 100%;
  will-change: transform;
}
@media screen and (min-width: 1024px) {
  .parallax-item {
    min-height: 800px;
  }
}

/* ===============================================
# future
=============================================== */
#future .section__wrapper {
  padding-top: 6.5rem;
  padding-bottom: 4.5rem;
}
#future .section-title {
  font-size: 1rem;
  text-align: center;
  line-height: 1.4;
  position: relative;
}
#future .section-title::before {
  content: "";
  position: absolute;
  width: 250px;
  height: 140px;
  border: 0.05rem solid #2E3941;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-20deg);
  z-index: -1;
}
#future .section-title span {
  font-size: 180%;
}
#future .text {
  padding-top: 1.5rem;
  font-size: 0.813rem;
}
#future .text:first-of-type {
  padding-top: 5rem;
}

/* ===============================================
# important
=============================================== */
#important {
  height: 100vh;
  position: relative;
  overflow: hidden;
}
#important .section__wrapper {
  padding-top: 10vh;
}
#important .section-title {
  position: sticky;
  top: 0;
  font-size: 1rem;
  text-align: center;
  line-height: 1.4;
  position: relative;
}
#important .section-title span {
  font-size: 180%;
}
#important .section-title .box {
  display: inline-block;
  color: #f8fafc;
  background-color: #888C8E;
  padding: 0 2rem;
  margin-top: 1rem;
}
#important .section-title .box span {
  font-size: 180%;
  font-style: italic;
}
#important .important__inner {
  position: absolute;
  bottom: 0;
  width: 100%;
  min-height: 65vh;
}
#important .important__item {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: #f8fafc;
  border-radius: 0.5rem 0.5rem 0 0;
  padding: 8vh 1.5rem;
}
#important .important__item:nth-child(2) {
  z-index: 2;
}
#important .important__item:nth-child(3) {
  z-index: 3;
}
#important .important__item::after {
  content: "01";
  position: absolute;
  top: 3vh;
  left: 2rem;
  font-size: 8rem;
  font-weight: 400;
  color: #dedfe1;
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
  line-height: 1;
  letter-spacing: 0.1rem;
}
#important .important__item:nth-child(2)::after {
  content: "02";
}
#important .important__item:nth-child(3)::after {
  content: "03";
}
#important .important__item .section-title {
  font-size: 2.6vh;
  text-align: left;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 700px) {
  #important .important__item .section-title {
    font-size: 1.5rem;
  }
}
#important .important__item .text {
  margin-top: 2.5vh;
  margin-left: 5vh;
  position: relative;
  z-index: 1;
  font-size: 1.8vh;
}

/* ===============================================
# company
=============================================== */
#company .section-title {
  text-align: center;
  font-size: 2rem;
  line-height: 1.4;
  margin-bottom: 2rem;
}
#company .section-title .section-cp {
  font-size: 0.75rem;
  color: #888C8E;
  display: block;
}
#company .company__inner {
  padding-top: 1.5rem;
  font-size: 0.813rem;
}
#company .company__inner dt {
  font-weight: 400;
  color: #888C8E;
  padding: 1rem 0.5rem 0;
}
#company .company__inner dd {
  font-weight: 300;
  padding: 0.25rem 0.5rem 1rem;
  border-bottom: 0.05rem solid #BABFC3;
}

.view-website-btn {
  display: inline-flex;
  justify-content: center;
  padding: 1rem 3rem 1rem 2rem;
  background-color: #7A7E80;
  color: #f8fafc;
  position: relative;
  transition: background-color 0.3s ease;
  width: 100%;
  margin-top: 3rem;
}
.view-website-btn::before {
  content: "";
  position: absolute;
  right: 1.5rem;
  top: 50%;
  width: 1.25rem;
  height: 0.06rem;
  background-color: #f8fafc;
  transform: translateY(-50%);
  transition: right 0.3s ease;
}
.view-website-btn::after {
  content: "";
  position: absolute;
  right: 1.5rem;
  top: 50%;
  width: 0.5rem;
  height: 0.5rem;
  border-top: 0.08rem solid #f8fafc;
  transition: width 0.3s ease;
  transform: translateY(-50%) rotate(45deg);
  transition: right 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .view-website-btn:hover {
    background-color: rgb(97.112, 100.296, 101.888);
  }
  .view-website-btn:hover::before, .view-website-btn:hover::after {
    right: 1.2rem;
  }
}

/* ===============================================
# interview
=============================================== */
#interview {
  background-color: rgba(250, 250, 250, 0.8);
}
#interview .section__wrapper {
  margin-top: 4.5rem;
  padding-bottom: 4.5rem;
}
#interview .section-title {
  text-align: center;
  font-size: 2rem;
  line-height: 1.4;
}
#interview .section-title .section-cp {
  font-size: 0.75rem;
  color: #888C8E;
  display: block;
}
#interview .interview-faqs .interview-faq {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 0.05rem solid #BABFC3;
}
#interview .interview-faqs .interview-faq .interview-faq__q {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
#interview .interview-faqs .interview-faq .interview-faq__q .interview-faq__qnum {
  font-size: 1rem;
  color: #AC9675;
  font-weight: 400;
}
#interview .interview-faqs .interview-faq .interview-faq__q .interview-faq__qtitle {
  display: inline-block;
  background: #fff;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 1rem;
  font-weight: 400;
  margin: 0;
}
#interview .interview-faqs .interview-faq .interview-faq__answer {
  font-size: 0.813rem;
  color: #2E3941;
  margin-top: 0.75rem;
  line-height: 2;
}
#interview .custom-arrow {
  border: none;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  transform: translateY(-50%);
  z-index: 2;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
  top: 15rem;
}
#interview .custom-arrow::before {
  content: "";
  display: block;
  width: 1.2rem;
  height: 1.2rem;
  border: solid #222;
  border-width: 0 0.18rem 0.18rem 0;
  padding: 0;
  background: none;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-60%, -50%) rotate(135deg);
  transition: border-color 0.2s;
}
#interview .slick-prev.custom-arrow {
  left: -0.5rem;
}
#interview .slick-prev.custom-arrow::before {
  transform: translate(-60%, -50%) rotate(135deg);
}
#interview .slick-next.custom-arrow {
  right: -0.5rem;
}
#interview .slick-next.custom-arrow::before {
  transform: translate(-40%, -50%) rotate(-45deg);
}

.interview-slider-wrapper {
  max-width: 440px;
  margin: 2rem auto 0;
}

.interview-slider .interview-slide {
  aspect-ratio: 3/4;
  margin: 0 auto;
  position: relative;
}
.interview-slider .interview-slide .interview__img {
  width: 80%;
  height: auto;
  margin: auto;
}

.interview__img-caption {
  margin-top: 2rem;
}
.interview__img-caption .interview__img-label {
  font-size: 0.75rem;
  color: #888C8E;
  font-weight: 500;
}
.interview__img-caption .interview__img-role {
  font-size: 1.5rem;
  color: #2E3941;
}

/* ===============================================
# faq
=============================================== */
#faq .section__wrapper {
  padding-bottom: 4.5rem;
}
#faq .section-title {
  text-align: center;
  font-size: 2rem;
  line-height: 1.4;
}
#faq .section-title .section-cp {
  font-size: 0.75rem;
  color: #888C8E;
  display: block;
}
#faq .faq__inner {
  margin-top: 2rem;
}
#faq .faq__item {
  padding: 2.5rem 1.5rem 5rem;
  margin-bottom: 1.5rem;
  background: rgba(250, 250, 250, 0.8);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(116, 128, 137, 0.1);
  position: relative;
}
#faq .q-mark {
  color: #AC9675;
  font-size: 1.5rem;
  font-weight: 300;
}
#faq .a-mark {
  color: #AD5757;
  font-size: 1.5rem;
  font-weight: 300;
}
#faq .faq__question {
  font-size: 1rem;
  padding-bottom: 1rem;
  margin-bottom: 0.5rem;
  border-bottom: 0.05rem solid #BABFC3;
}
#faq .faq__answer-imgs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 2rem;
}
#faq .faq__answer-imgs .faq__answer-img {
  width: calc(50% - 1rem);
  text-align: center;
}
@media screen and (min-width: 1024px) {
  #faq .faq__answer-imgs .faq__answer-img {
    width: calc(45% - 1rem);
  }
}
#faq .faq__answer-imgs p {
  padding-top: 0.25rem;
}
#faq .view-more {
  position: absolute;
  right: 0;
  bottom: 2rem;
  display: flex;
  align-items: center;
  font-size: 1rem;
  color: #2E3941;
  font-weight: 300;
  gap: 0.5rem;
}
#faq .view-more::after {
  content: "";
  display: inline-block;
  width: 2rem;
  height: 0.05rem;
  background-color: #2E3941;
  margin-left: 0.5rem;
  transition: width 0.3s ease;
}

.faq-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  display: none;
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.faq-modal.active {
  display: block;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.4s;
  display: flex;
  overscroll-behavior: contain;
  overflow-y: scroll;
}
.faq-modal__content {
  position: relative;
  transition: opacity 0.4s;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 700px) {
  .faq-modal__content {
    width: 600px;
  }
}
.faq-modal__body {
  background: #f8fafc;
  max-width: 90%;
  margin: 10vh auto;
  padding: 1.5rem;
  max-height: 80vh;
  overflow-y: auto;
}
.faq-modal .modalClose {
  font-size: 1rem;
  cursor: pointer;
  width: 100%;
  line-height: 1;
  text-align: center;
  display: block;
  background: #7A7E80;
  color: #f8fafc;
  padding: 1rem;
  margin-top: 1.5rem;
  transition: opacity 0.4s;
}
.faq-modal .welfare-item {
  margin-top: 1rem;
  margin-bottom: 1rem;
  position: relative;
  font-size: 0.813rem;
  border-top: 0.05rem solid #BABFC3;
  padding-top: 1rem;
}
.faq-modal .welfare-title {
  font-size: 0.813rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  letter-spacing: 0.1em;
  position: relative;
}
.faq-modal p {
  line-height: 1.7;
}
.faq-modal .welfare-text {
  line-height: 1.7;
}

/* ===============================================
# job
=============================================== */
#job {
  background-color: rgba(250, 250, 250, 0.8);
}
#job .section__wrapper {
  padding-bottom: 4.5rem;
}
#job .section-title {
  text-align: center;
  font-size: 2rem;
  line-height: 1.4;
}
#job .section-title .section-cp {
  font-size: 0.75rem;
  color: #888C8E;
  display: block;
}
#job .job__inner {
  margin-top: 2rem;
}
#job .job__item {
  border-top: 0.05rem solid #BABFC3;
  padding: 0 0.5rem;
}
#job .job__item:last-child {
  border-bottom: 0.05rem solid #BABFC3;
}
#job .job__item .job-title {
  font-size: 15px;
}
#job .job__item .text {
  font-size: 0.813rem;
}
#job .job__item h4 {
  font-size: 15px;
  color: #888C8E;
}
#job .job__item .text {
  padding-top: 0.25rem;
  line-height: 1.7;
}
#job .job-section:not(:first-of-type) {
  position: relative;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 0.05rem solid #BABFC3;
}
#job .ac-content {
  padding-bottom: 1rem;
  position: relative;
  top: 0;
  z-index: 0;
}
#job .ac-content .button-circle {
  margin-top: 1.5rem;
  margin-left: 0;
}
#job .ac-label {
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
}
#job .ac-content {
  display: none;
}
#job .faq-menu {
  margin-top: 2.5rem;
}
#job .faq-menu li {
  color: #f8fafc;
}
#job .faq-menu li:not(:first-child) {
  margin-top: 1.5rem;
}
#job .faq-menu li .ac-label {
  position: relative;
  background-color: #AC9675;
  padding: 1rem 2rem 1rem 4rem;
  z-index: 1;
}
#job .faq-menu li .ac-label h3 {
  color: #f8fafc;
  padding-right: 2.5rem;
  font-size: 1rem;
}
#job .faq-menu p {
  color: #2E3941;
}
#job .icon-wrap {
  right: 1rem;
  width: 1.5rem;
}
#job .job-table {
  margin: 1rem 0;
  font-size: 0.813rem;
}
#job .job-table .job-table__row {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.5rem;
}
#job .job-table .job-table__label {
  min-width: 6rem;
  font-weight: 400;
  color: #2E3941;
  margin-right: 1.5em;
}
#job .job-table .job-table__value {
  color: #2E3941;
}

/* ===============================================
# flow
=============================================== */
#flow .section-title {
  text-align: center;
  font-size: 2rem;
  line-height: 1.4;
}
#flow .section-title .section-cp {
  font-size: 0.75rem;
  color: #888C8E;
  display: block;
}
#flow .flow__inner {
  position: relative;
}
#flow .flow-item {
  display: flex;
  gap: 0.5rem;
  position: relative;
  padding-top: 2rem;
}
#flow .flow-item:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 2rem;
  top: 3.8rem;
  width: 0.05rem;
  height: calc(100% - 2rem - 0.4rem);
  background-color: #AC9675;
  z-index: 1;
}
#flow .flow-item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 1.8rem;
  bottom: -1.8rem;
  width: 0.4rem;
  height: 0.4rem;
  border: 0.08rem solid #AC9675;
  border-radius: 50%;
}
#flow .flow-item__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 4.5rem;
}
#flow .flow-item__step .step-label {
  font-size: 0.75rem;
  color: #AC9675;
  margin-top: 0.2rem;
  margin-bottom: 0.5rem;
  letter-spacing: 0.1rem;
}
#flow .flow-item__content {
  flex: 1;
}
#flow .flow-item__content .flow-title {
  font-size: 1rem;
  color: #888C8E;
}
#flow .flow-item__content .flow-text {
  font-size: 0.813rem;
  color: #2E3941;
  line-height: 1.7;
  padding-top: 0.5rem;
}

/* ===============================================
# form
=============================================== */
#entry-form {
  background-color: rgba(240, 240, 240, 0.7);
}
#entry-form .section__wrapper {
  margin-top: 4.5rem;
  padding-bottom: 4.5rem;
}
#entry-form .section-title {
  text-align: center;
  font-size: 2rem;
  line-height: 1.4;
}
#entry-form .section-title .section-cp {
  font-size: 0.75rem;
  color: #888C8E;
  display: block;
}
#entry-form .form__inner {
  padding-top: 2rem;
}
#entry-form .form-notes {
  background: #F9F9F9;
  padding: 1.5rem 2rem;
  list-style: disc inside;
  color: #2E3941;
  font-size: 0.75rem;
}
#entry-form .form-notes li {
  margin-bottom: 0.8em;
  line-height: 1.7;
}
#entry-form .form-attention {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  padding-left: 1rem;
  border-bottom: 0.05rem solid #5F6161;
}
#entry-form .form-attention li {
  list-style: disc;
}
#entry-form .form-attention li p {
  font-size: clamp(0.75rem, 0.625rem + 0.4vw, 0.875rem);
}
#entry-form .form-rirekisyo .form-rirekisyo-cp {
  font-size: 0.75rem;
}
#entry-form .p-country-name {
  display: none;
}
#entry-form .CF7_table {
  margin: auto;
}
#entry-form .CF7_table .form-title {
  font-size: 1.5rem;
  border-bottom: 0.08rem solid #2E3941;
  padding-bottom: 0.25rem;
  letter-spacing: 0.15rem;
  margin-bottom: clamp(2.5rem, 2rem + 1.6vw, 3rem);
}
#entry-form .CF7_table .form-main-title {
  font-weight: 600;
  padding: clamp(1.5rem, 0.5rem + 3.2vw, 2.5rem);
  letter-spacing: 0.1rem;
  border-top: 0.08rem solid #888C8E;
  border-bottom: 0.08rem solid #888C8E;
  text-align: center;
}
#entry-form .CF7_table h3 {
  display: flex;
  align-items: center;
  gap: 0 0.25rem;
  flex-wrap: wrap;
  font-weight: 400;
  color: #2E3941;
  margin-bottom: 1rem;
  font-size: 1rem;
}
#entry-form .CF7_table .CF7_req {
  color: #aa2626;
  font-size: clamp(0.625rem, 0.5rem + 0.4vw, 0.75rem);
}
#entry-form .CF7_table .form-item {
  padding: 1.5rem 1rem;
  border-bottom: 0.05rem solid #5F6161;
}
@media screen and (min-width: 1024px) {
  #entry-form .CF7_table .form-item {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
#entry-form .CF7_table .form-item a {
  margin-left: 0.625rem;
  padding: 6px 15px;
  background-color: #2E3941;
}
#entry-form .CF7_table .form-item p {
  margin-bottom: 0.625rem;
}
#entry-form .CF7_table .form-item textarea {
  width: 100%;
  height: 16rem;
  resize: vertical;
  border: 0.1rem solid #D9D7D2;
  background-color: #F9F9F9;
  padding: 0.625rem;
}
#entry-form .CF7_table input,
#entry-form .CF7_table select {
  border: 0.1rem solid #D9D7D2;
  background-color: #F9F9F9;
  padding: 1rem 1.25rem;
  width: 100%;
  font-size: clamp(0.75rem, 0.5rem + 0.8vw, 1rem);
  position: relative;
}
#entry-form .CF7_table input[name=last_name],
#entry-form .CF7_table input[name=first_name],
#entry-form .CF7_table input[name=last_name_kana],
#entry-form .CF7_table input[name=first_name_kana] {
  width: calc(420px - 3rem);
  max-width: 100%;
}
#entry-form .CF7_table input[name=personal_postal_code] {
  width: 100%;
}
#entry-form .CF7_table input[type=submit]:disabled {
  background-color: #ddd;
  text-align: center;
}
#entry-form .CF7_table input[type=submit] {
  padding: 1rem;
  width: 80%;
  border: 0;
  background-color: #7A7E80;
  color: #f8fafc;
}
#entry-form .CF7_table input[type=checkbox] {
  position: relative;
  width: 0.875rem;
  height: 0.875rem;
  border: 0.08rem solid #2E3941;
  padding: 0;
  margin-right: 0.25rem;
}
#entry-form .CF7_table input[type=checkbox]:checked {
  border: 0.08rem solid #AC9675;
  background-color: #AC9675;
}
#entry-form .CF7_table input[type=checkbox]:checked:before {
  position: absolute;
  top: 0.05rem;
  left: 0.25rem;
  transform: rotate(50deg);
  width: 0.25rem;
  height: 0.5rem;
  border-right: 0.1rem solid #f8fafc;
  border-bottom: 0.1rem solid #f8fafc;
  content: "";
}
#entry-form .CF7_table input::-moz-placeholder {
  color: #888C8E;
}
#entry-form .CF7_table input::placeholder {
  color: #888C8E;
}
#entry-form .CF7_table span[data-name=date_1],
#entry-form .CF7_table span[data-name=date_2],
#entry-form .CF7_table span[data-name=job] {
  position: relative;
}
#entry-form .CF7_table span[data-name=date_1] input,
#entry-form .CF7_table span[data-name=date_2] input,
#entry-form .CF7_table span[data-name=date_1] select,
#entry-form .CF7_table span[data-name=date_2] select {
  width: 100%;
}
#entry-form .CF7_table span[data-name=form_4a] select,
#entry-form .CF7_table span[data-name=form_6a] select {
  width: 100%;
}
#entry-form .CF7_table .form-item-box1 {
  margin-bottom: 1.5rem;
}
#entry-form .CF7_table .form-item-m {
  display: block;
  font-size: clamp(0.75rem, 0.625rem + 0.4vw, 0.875rem);
  color: #2E3941;
  margin-top: 1rem;
}
#entry-form .form-acceptance .CF7_req {
  margin: 0 0.25rem;
}
#entry-form .form-policy__wrapper .policy__inner {
  padding: 3rem 2.5rem;
}
#entry-form .form-policy__wrapper .poricy-cp {
  padding-bottom: 1.875rem;
}
#entry-form .form-policy__wrapper h2 {
  font-size: clamp(1rem, 0.75rem + 0.8vw, 1.25rem);
  border-bottom: 0.1rem solid #888C8E;
  padding-top: 2.5rem;
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}
#entry-form .form-policy__wrapper p {
  font-size: clamp(0.75rem, 0.625rem + 0.4vw, 0.875rem);
}
#entry-form .wpcf7-form-control-wrap[data-name=question] {
  width: 100%;
}
#entry-form input[type=date] {
  position: relative;
}
#entry-form input[type=date]::-webkit-calendar-picker-indicator {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.CF7_btn {
  text-align: center;
  margin: auto;
}

div.wpcf7 .wpcf7-spinner {
  display: none !important;
}

.form-item-name-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 0 2rem;
}
.form-item-name-flex .form-item-input {
  display: flex;
  align-items: center;
}
.form-item-name-flex .form-item-input .name {
  width: 3rem;
}

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

span[data-name=time1] .wpcf7-list-item label,
span[data-name=time2] .wpcf7-list-item label,
span[data-name=form_1a] .wpcf7-list-item label {
  display: flex;
  align-items: center;
  min-width: 25%;
}

span[data-name=time1] label,
span[data-name=time2] label,
span[data-name=form_1a] label,
span[data-name=date] label {
  padding: 0.85rem 1rem !important;
  border-radius: 2px;
  border: 0.1rem solid #D9D7D2;
  background-color: #F9F9F9;
  display: block;
}

span[data-name=way] label {
  padding: 0.85rem 1rem;
  border-radius: 2px;
  border: 0.1rem solid #D9D7D2;
  background-color: #F9F9F9;
  display: block;
}

input[type=radio]:checked ~ label,
label:has(input[type=radio]:checked) {
  background-color: #BABFC3;
}

span[data-name=form_1a] label,
span[data-name=date] label {
  display: flex;
}

.CF7_table input[type=radio] {
  -webkit-appearance: none;
  width: 1rem;
  height: 1rem;
  border: 1px solid #2E3941;
  border-radius: 15px;
  background: transparent;
  opacity: 1;
  padding: 0;
  margin-right: 0.25rem;
  position: relative;
}

input[type=radio]:checked {
  background-color: #f8fafc;
}
input[type=radio]:checked::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0.5rem;
  height: 0.5rem;
  background-color: #AC9675;
  border-radius: 50%;
}

.wpcf7-list-item-label::before,
.wpcf7-list-item-label::after {
  content: "";
}

.form-acceptance {
  padding-top: 1rem;
  padding-bottom: 1rem;
  text-align: center;
}
.form-acceptance .wpcf7-list-item {
  margin: 0;
}

.form-acceptance p {
  text-align: center;
  margin: auto;
}

.form-acceptanc label {
  padding: 0;
  border-radius: 0;
  border: 0;
}

.form-policy__wrapper {
  width: 100%;
  height: 14rem;
  background-color: #5F6161;
  overflow: scroll;
  overflow-x: hidden;
  border: 0.1rem solid #888C8E;
  border-radius: 0.2rem;
}

.form-policy__wrapper .contents-policy__item h2 {
  text-align: left;
  font-size: clamp(1rem, 0.75rem + 0.8vw, 1.25rem);
  padding: 0.5rem 0;
  font-weight: 500;
  background-color: #5F6161;
  color: #2E3941;
}

.form-policy__wrapper .contents-policy__item:not(:last-child) {
  padding-bottom: 2.5rem;
}

.recaptcha-text {
  font-size: 0.625rem;
  text-align: center;
  padding-top: 1rem;
  width: 85%;
  margin: auto;
}

.recaptcha-text a {
  font-size: 0.625rem;
  text-decoration: underline;
  color: #2E3941;
}

span[data-name=form_4a],
span[data-name=form_6a] {
  width: 10rem;
  position: relative;
}

span[data-name=date_1]::after,
span[data-name=date_2]::after,
span[data-name=form_4a]::after,
span[data-name=form_6a]::after,
span[data-name=job]::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1rem;
  width: 0.5rem;
  height: 0.5rem;
  border-right: 0.1rem solid #2E3941;
  border-bottom: 0.1rem solid #2E3941;
  transform: rotate(45deg) translateY(-50%);
}

span[data-name=form_4a]::after,
span[data-name=form_6a]::after {
  top: 0.25rem;
}

.time-select {
  margin-top: 1.5rem;
}
.time-select p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.wpcf7-form-control-wrap {
  position: inherit;
}

span[data-name=acceptance] label {
  display: block;
  padding: 0.625rem;
}

/* ===============================================
footer
=============================================== */
.footer .section__wrapper {
  padding-top: 0;
}
.footer h1 {
  text-align: center;
  color: #f8fafc;
  margin-bottom: 2.5rem;
  width: 6rem;
  margin: auto;
  padding-top: 3rem;
}
.footer p {
  padding-top: 2.5rem;
  line-height: 1.7;
  text-align: center;
}
.footer p span {
  font-weight: 400;
}
.footer .footer-sns {
  padding-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.footer .footer-sns a {
  width: 1.5rem;
}

.footer-copyright {
  font-size: 0.75rem;
  color: #f8fafc;
  background-color: #5F6161;
  padding: 1rem 4%;
  text-align: center;
  letter-spacing: 0.1rem;
  margin-top: 3rem;
}

form.sent table,
form.sent .CF7_btn {
  display: none;
}

/* ===============================================
# 404
=============================================== */
.page-error {
  text-align: center;
}
.page-error .section__wrapper {
  padding-bottom: 4.5rem;
}
.page-error h1 {
  font-size: 6rem;
  color: #888C8E;
  letter-spacing: 0.2rem;
  font-weight: 500;
  line-height: 1.2;
}
@media screen and (min-width: 700px) {
  .page-error h1 {
    font-size: 3rem;
  }
}
.page-error p {
  margin-top: 1rem;
}
.page-error .button-circle a {
  display: block;
  border: 0.1rem solid #2E3941;
  border-radius: 2.5rem;
  margin-top: 3rem;
  padding: 1rem 5rem;
  transition: 0.2s ease-in;
}
@media (hover: hover) and (pointer: fine) {
  .page-error .button-circle a:hover {
    color: #f8fafc;
    background-color: #2E3941;
  }
}/*# sourceMappingURL=style.css.map */