html {
  scroll-behavior: smooth;
}

body {
  display: none;
  overflow-x: hidden;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  color: #000;
  background: #fffafa;
  font-family: 'Noto Sans JP', sans-serif;
}

body.bg_ability {
  background: #fffafa;
}

body.bg_adjust {
  background: #fffafa;
}

body::before {
  content: none;
  top: 0;
  right: 0;
  position: fixed;
  z-index: -1;
  width: 50%;
  height: 100vh;
  border-radius: 20% 0 0 20%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: rgba(206, 206, 206, 0.5);
  background-blend-mode: multiply;
}

/* 共通の背景スタイル */
.body::before {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: rgba(206, 206, 206, 0.5);
  background-blend-mode: multiply;
}

/* 各セクション固有の背景画像 */
.body_top::before {
  content: "";
  background-image: url(../img/bg_img_top.png);
}

.body_about::before {
  content: "";
  background-image: url(../img/bg_img_about.png);
}

.body_about-ability::before {
  content: "";
  background-image: url(../img/bg_img_ability.png);
}

.body_about-adjust::before {
  content: "";
  background-image: url(../img/bg_img_adjust.png);
}

.body_recruit::before {
  content: "";
  background-image: url(../img/bg_img_recruit.png);
}

.body_recruit-ability::before {
  content: "";
  background-image: url(../img/bg_img_recruit-ability.png);
}

.body_recruit-adjust::before {
  content: "";
  background-image: url(../img/bg_img_recruit-adjust.png);
}

.body_recruit-staff::before {
  content: "";
  background-image: url(../img/bg_img_recruit-staff.png);
}

.body_staff::before {
  content: "";
  background-image: url(../img/bg_img_staff.png);
}

.body_staff-ability::before {
  content: "";
  background-image: url(../img/bg_img_staff-ability.png);
}

.body_staff-adjust::before {
  content: "";
  background-image: url(../img/bg_img_staff-adjust.png);
}



#main {
  width: 100%;
  min-height: 100vh;
  max-width: 390px;
  margin: 0 auto;
  background: #fff;
  position: relative;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.3);
}

@media screen and (max-width: 512px) {
  #main {
    max-width: unset;
    box-shadow: none;
  }
}

a {
  text-decoration: none;
}

.pc {
  display: inherit !important;
}

.sp {
  display: none !important;
}

.grecaptcha-badge { visibility: hidden; }

/* Header Styles */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
}

header .header_sp {
  display: none;
  justify-content: space-between;
  transition: 0.2s;
  background: #fff;
}

@media screen and (max-width: 990px) {
  header .header_sp {
    display: flex;
  }
}

header .header_sp.hidden {
  transform: translateY(-100%);
}

header .header_logo {
  display: flex;
  align-items: center;
  width: 100px;
  margin-left: 16px;
  margin-right: 4px;
}

.header_nav_contact {
  display: flex;
  gap: 4px;
  padding-bottom: 8px;
  margin-left: auto;
  margin-right: 8px;
}

.header_nav_contact > a {
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  padding: 2px 0;
  width: 78px;
  color: #fff;
  text-align: center;
  font-size: 11px;
  border-radius: 0 0 4px 4px;
}

.header_nav_contact > a svg {
  margin: 4px auto 2px;
}

.header_nav_contact .header_nav_contact_left {
  background: #483F43;
}

.header_nav_contact .header_nav_contact_right {
  background: #E3AAAA;
}

.header_nav_btn {
  width: 50px;
  height: 50px;
  background: #E3AAAA;
  padding-top: 13px;
}

.header_nav_btn span {
  display: block;
  height: 2px;
  width: 22px;
  background: #fff;
  margin: 0 auto 8px;
  opacity: 1;
  transition: 0.5s;
}

.header_nav_btn.sp_nav_btn_active span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.header_nav_btn.sp_nav_btn_active span:nth-child(2) {
  transform: rotate(-45deg);
}

.header_nav_btn.sp_nav_btn_active span:nth-child(3) {
  transform: translateY(-10px) rotate(135deg);
}

/* Mobile Navigation Area */
#sp_nav_area {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 5;
  width: 100%;
  height: 100vh;
  background: #fff;
  transform: translateX(100%);
  transition: 0.5s;
  padding: 120px 0;
  overflow-y: scroll;
}

#sp_nav_area.sp_nav_area_active {
  transform: translateX(0%);
}

.sp_nav {
  width: 75%;
  margin: 0 auto 4rem;
  max-width: 360px;
}

.sp_nav a,
.sp_nav li > span {
  display: block;
  font-size: 18px;
  line-height: 1em;
  padding: 20px 0.5em;
  border-bottom: solid 1px #DBDBDB;
  color: #575757;
  position: relative;
}

.sp_nav a.sp_nav_arrow::after {
  position: absolute;
  content: "";
  width: 1em;
  height: 1em;
  background-image: url(../img/arrow_right.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  top: 50%;
  right: 0.5em;
  transform: translateY(-50%);
}

.sp_nav_plus a {
  display: inline-block!important;
  width: calc(100% - 2em);
}

.sp_nav_plus span {
  display: inline-block!important;
}

.sp_nav .sp_nav_plus a::after {
  content: none;
}

.sp_nav_plus .sp_nav_plus_btn::before,
.sp_nav_plus .sp_nav_plus_btn::after {
  position: absolute;
  content: "";
  width: 1em;
  height: 1em;
  background-image: url(../img/plus_minus.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  top: 50%;
  right: 0.5em;
  transform: translateY(-50%);
  transition: 0.5s;
}

.sp_nav_plus .sp_nav_plus_btn::after {
  transform: translateY(-50%) rotate(-90deg);
}

.sp_nav_plus .sp_nav_minus_btn::after {
  transform: translateY(-50%);
}

.sp_nav .sp_nav_link_2 {
  display: inline-block;
  text-align: center;
}

.sp_nav a .sp_nav_link_2 > span {
  font-size: 10px;
}

.sp_nav_sns {
  display: flex;
  gap: 1.5rem;
  width: 75%;
  margin: 0 auto;
  max-width: 360px;
}

.sp_nav ul li ul li a {
  border: none;
  padding: 15px 0 15px 2em;
}

.sp_nav_sub_menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.sp_nav_sub_menu.open {
  max-height: 500px; /* 適宜調整 */
}

/* PC navigation Area */
.header_nav_btn.sp_nav_btn_active span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.header_nav_btn.sp_nav_btn_active span:nth-child(2) {
  transform: rotate(-45deg);
}

.header_nav_btn.sp_nav_btn_active span:nth-child(3) {
  transform: translateY(-10px) rotate(135deg);
}

/* Mobile Navigation Area */
#pc_nav_area {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: fixed;
  top: 50%;
  left: calc((100vw - 390px) / 4);
  z-index: 5;
  width: 300px;
  height: 90vh;
  max-height: 700px;
  transform: translate(-50% , -50%);
}

@media screen and (max-width : 990px) {
  #pc_nav_area {
    display: none;
  }
}

#pc_nav_area::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Operaでのスクロールバーを非表示 */
}

#pc_nav_area .pc_nav_logo {
  text-align: center;
  margin-bottom: 3rem;
}

#pc_nav_area .pc_nav_logo a {
  display: inline-block;
  width: 70%;
}

#pc_nav_area .pc_nav_logo a  img {
  width: 100%;
}

.pc_nav {
  width: 75%;
  margin: 0 auto;
}

.pc_nav a,
.pc_nav li > span {
  display: block;
  font-size: 16px;
  line-height: 1em;
  padding: 16px 0.5em;
  border-bottom: solid 1px #DBDBDB;
  color: #575757;
  position: relative;
}

.pc_nav a.pc_nav_arrow::after {
  position: absolute;
  content: "";
  width: 1em;
  height: 1em;
  background-image: url(../img/arrow_right.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  top: 50%;
  right: 0.5em;
  transform: translateY(-50%);
}

.pc_nav .pc_nav_plus a {
  display: inline-block;
  width: calc(100% - 2em);
}

.pc_nav .pc_nav_plus span {
  display: inline-block;
}

.pc_nav .pc_nav_plus a::after {
  content: none;
}

.pc_nav .pc_nav_plus .pc_nav_plus_btn::before,
.pc_nav .pc_nav_plus .pc_nav_plus_btn::after {
  position: absolute;
  content: "";
  width: 1em;
  height: 1em;
  background-image: url(../img/plus_minus.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  top: 50%;
  left: 0.5em;
  transform: translateY(-50%);
  transition: 0.5s;
}

.pc_nav .pc_nav_plus .pc_nav_plus_btn::after {
  transform: translateY(-50%) rotate(-90deg);
}

.pc_nav .pc_nav_plus .pc_nav_minus_btn::after {
  transform: translateY(-50%);
}

.pc_nav .pc_nav_link_2 {
  display: inline-block;
  text-align: center;
}

.pc_nav a .pc_nav_link_2 > span {
  font-size: 10px;
}

.pc_nav_sns {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  width: 75%;
  margin: 0 auto;
}

.pc_nav ul li ul li a {
  border: none;
  padding: 15px 0 15px 2em;
}

.pc_nav_sub_menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.pc_nav_sub_menu.open {
  max-height: 500px; /* 適宜調整 */
}

.pc_nav_contact {
  display: flex;
  justify-content: space-between;
  margin-top: 3rem;
}

.pc_nav_contact .pc_nav_contact_left,
.pc_nav_contact .pc_nav_contact_right {
  width: 49%;
  color: #fff;
  font-weight: bold;
  text-align: center;
  padding: 1em 0;
  border-radius: 4px;
}

.pc_nav_contact .pc_nav_contact_left {
  background: #483F43;
}

.pc_nav_contact .pc_nav_contact_right {
  background: #E3AAAA;
}

.pc_nav_contact .pc_nav_contact_left svg,
.pc_nav_contact .pc_nav_contact_right svg {
  display: inline;
  margin-right: .5em;
}


/* Back to Top Button */
.topBtn {
  position: absolute;
  right: 1.5%;
  top: -75px;
  z-index: 2;
}

/* Footer Styles */
footer {
  text-align: center;
  line-height: 2em;
  background: url(../img/footerBg.png);
  background-color: rgba(111, 52, 69, 0.9);
  background-blend-mode: multiply;
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 3rem 0 0;
  position: relative;
}

.footerMenu {
  font-size: 15px;
  margin: 3rem auto;
  line-height: 2em;
}

.footer_copyRight {
  font-size: 12px;
}

/* Top Section */
.top_fv {
  width: 100%;
  height: 100svh;
  max-width: 390px;
  background-image: url(../img/fv_bg.png);
  background-position: center;
  background-size: cover;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

@media screen and (max-width: 512px) {
  .top_fv {
    max-width: unset;
  }
}


.top_fv_inner {
  width: 100%;
  height: 100%;
  position: relative;
}

.top_fv svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -30%);
}

/* Main Content */
.main-content {
  position: relative;
  background-color: #fff;
  padding: 20px 0 6rem;
  margin-top: 100svh;
  overflow: hidden;
  z-index: 1;
}

.container {
  position: relative;
  overflow: hidden;
  z-index: 1;
  margin-top: 45px;
}

@media screen and (max-width: 512px) {
  .container {
    padding-top: 45px;
  }
}

.main-content > div {
  position: relative;
}

/* Media Queries */
@media screen and (max-width: 512px) {
  .pc {
    display: none !important;
  }

  .sp {
    display: inherit !important;
  }
}

/* Loading Screen */
#loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(#fff 0%, #fff 100%);
  z-index: 100;
  opacity: 1;
  transition: opacity 1s ease;
  animation: loading 1s;
}

#loading p {
  font-size: 1.8rem;
  text-align: center;
  font-weight: bold;
  line-height: 2em;
  letter-spacing: 0.2em;
  animation: loading_p 1s;
  transition: 1s;
}

#loading p strong {
  color: #E3AAAA;
}

#loading.loaded {
  opacity: 0;
}

#loading.loaded p {
  transform: scale(1.2);
}

@keyframes loading {
  0% {
    transform: scale(2);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes loading_p {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@media screen and (max-width: 512px) {
  #loading p {
    font-size: 6vw;
  }
}

/* Breadcrumbs */
.breadcrumbs {
  display: flex;
  font-size: 12px;
  padding: 0 1em 1em;
  color: #E3AAAA;
}

.breadcrumbs li {
  padding: 0 0.5em;
}

/* Buttons */
.btn {
  display: block;
  width: 75%;
  margin: 0 auto 1rem;
  padding: 0.75em 0;
  text-align: center;
  border-radius: 999px;
  color: #fff;
  background-color: #E3AAAA;
}

.btn::before,
.btn::after {
  font-size: 0.9em;
}

.btn::before {
  content: "　";
  margin-right: 0.3em;
}

.btn::after {
  content: "▶︎";
  margin-left: 0.3em;
}

.btn_a {
  background-color: #E3AAAA;
}

.btn_b {
  background-color: #E3AAAA;
}

/* Objects */
.object {
  position: absolute;
  z-index: -1;
}

.object1,
.object2,
.object3 {
  transition: transform 1s ease-out;
}

/* Top Vision */
#top_vision {
  padding: 3rem 0;
  text-align: center;
}

#top_vision h2 {
  line-height: 2.7em;
  font-size: 1.5rem;
  letter-spacing: 0.2em;
  margin-bottom: 2em;
  padding: 72px 0;
}

#top_vision h2 strong {
  color: #E3AAAA;
}

#top_vision p {
  line-height: 2em;
  font-size: 1.2rem;
  font-weight: bold;
  letter-spacing: 0.1em;
}

.eachTextAnime span {
  opacity: 0;
  display: inline-block;
  transform: translateZ(0);
}

.eachTextAnime.appeartext span {
  animation: text_anime_on 1s ease-out forwards;
}

@keyframes text_anime_on {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.color-green {
  color: #E3AAAA;
}

@media screen and (max-width: 512px) {
  #top_vision h2 {
    font-size: 6vw;
  }

  #top_vision p {
    font-size: 5vw;
  }
}

/* Top About */
#top_about {
  padding: 5rem 0 10rem;
  text-align: center;
}

#top_about h2 {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.5em;
  letter-spacing: 0.2em;
  margin: 3em auto 2em;
}

#top_about p {
  width: 75%;
  margin: 0 auto 2rem;
  line-height: 2em;
}

#top_about .btn {
  margin-bottom: 5rem;
}

@media screen and (max-width: 512px) {
  #top_about h2 {
    font-size: 6vw;
  }
}

/* Slider */
#top_about .swiper-wrapper {
  transition-timing-function: linear;
}

#top_about .swiper-slide {
  transform: scale(0.85) !important;
  transition: 12s;
}

#top_about .swiper-slide.swiper-slide-active {
  transform: scale(1) !important;
}

#top_about .swiperRight .swiper-slide {
  right: calc(330px - 100%);
}

/* Services */
#top_service {
  padding: 1rem 0 5rem;
  text-align: center;
}

#top_service h2 {
  font-size: 25px;
  letter-spacing: 0.1em;
  margin: 0 auto 6rem;
}

.service_card {
  width: 100%;
  margin: 0 auto 3rem;
}

.service_card img {
  width: 100%;
}

.service_card p {
  width: 75%;
  font-size: 20px;
  text-align: center;
  font-weight: bold;
  margin: 2rem auto;
}

.service_card p span {
  font-size: 15px;
  font-weight: 300;
}

/* Staff Introduction */
#top_staff {
  padding: 5rem 0;
  background: #E3AAAA;
  text-align: center;
}

#top_staff > h2 {
  margin: 0 auto 5rem;
  font-size: 25px;
  letter-spacing: 0.1em;
  color: #fff;
}

#top_staff > p {
  font-size: 15px;
  line-height: 1.8em;
  color: #fff;
}

.swiperStaff {
  margin: 40px auto;
  position: relative;
}

.swiperStaff .swiper-slide {
  text-align: left;
  color: #fff;
}

.swiperStaff .staff-thumbnail img {
  width: 100%;
  height: 270px;
  object-fit: cover;
}

.swiperStaff .swiper-slide h2 {
  font-size: 20px;
  font-weight: 300;
  margin: 0 auto;
  line-height: 1.7em;
}

.swiperStaff .swiper-slide p {
  font-size: 15px;
}

.swiperStaff .swiper-slide p svg {
  display: inline;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  top: unset;
  bottom: 0;
  font-size: 15px;
  font-weight: bold;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  top: 40%!important;
  left: 11.5%!important;
  height: auto!important;
  width: auto!important;
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  top: 40%!important;
  right: 11.5%!important;
  height: auto!important;
  width: auto!important;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: url(../img/staff_prev.svg)!important;
}

.swiper-button-next:after {
  content: url(../img/staff_next.svg)!important;
}

#top_staff .btn {
  color: #E3AAAA;
  background: #fff;
}

/* News Section */
#top_news {
  padding: 13rem 0 1rem;
  text-align: center;
}

#top_news h2 {
  margin: 0 auto 5rem;
  font-size: 25px;
  letter-spacing: 0.1em;
}

#top_news .top_news_card {
  width: 75%;
  text-align: left;
  margin: 0 auto 2rem;
}

.post .post-details {
  line-height: 1.75em;
}

#top_news .top_news_card .post-details .post-category {
  font-size: 12px;
  line-height: 1em;
  padding: 0.3em 0.5em;
  background-color: #E3AAAA;
  color: #fff;
  border-radius: 999px;
  display: inline-block;
  margin-top: 16px;
  margin-bottom: 10px;
}

#top_news .top_news_card .post-details .post-date {
  font-size: 12px;
}

#top_news .top_news_card .post-details .post-title {
  font-size: 15px;
}

.footer_sns {
  width: 100%;
  display: flex;
  gap: 25px;
  justify-content: center;
}

/* Page Title */
.page-title {
  font-size: 25px;
  text-align: center;
  padding: 2em 0;
  font-weight: bold;
  letter-spacing: 0.1em;
}

.page-title_object {
  padding: 3em 0;
  position: relative;
}

.first-block {
  position: relative;
  width: 100%;
  padding: 4rem 0;
}

.first-block h2 {
  font-size: 18px;
  line-height: 2em;
  text-align: center;
  margin-bottom: 2em;
}

.first-block h2 strong {
  color: #E3AAAA;
}

.ability .first-block h2 strong {
  color: #E3AAAA;
}

.adjust .first-block h2 strong {
  color: #E3AAAA;
}

.first-block p {
  width: 75%;
  margin: 0 auto 2rem;
  font-size: 15px;
  line-height: 2em;
}

.first-block img {
  display: block;
  margin: 0 auto 2rem;
}

/* About FIDIA PARTNERS */
#three_field {
  margin: 0 auto 2rem;
}

.three_field {
  opacity: 0;
  transition: opacity 0.5s ease-in;
}

.three_field.visible {
  opacity: 1;
}

/* Three Points */

#threePoints {
  padding: 5rem 0 1rem;
  background: #E3AAAA;
  text-align: center;
}

.ability #threePoints {
  background: #E3AAAA;
}

.adjust #threePoints {
  background: #E3AAAA;
}

#threePoints > h2 {
  margin: 0 auto 5rem;
  font-size: 25px;
  letter-spacing: 0.1em;
  color: #fff;
}

.threePoints_container {
  position: relative;
}

.threePoints_card {
  background: #fff;
  padding: 2rem 10%;
  margin: -2rem auto 5rem;
  width: 90%;
  position: relative;
  z-index: 1;
  text-align: left;
}

.ability .threePoints_container > img,
.adjust .threePoints_container > img {
  border-radius: 8px 8px 0 0;
  margin: 0 auto;
  background: #fff;
}

.ability .threePoints_card,
.adjust .threePoints_card {
  border-radius: 0 0 8px 8px;
  margin: 0 auto 3rem;
}

.threePoints_card > span {
  background: #E3AAAA;
  color: #fff;
  padding: 0.25em 1em;
  border-radius: 4px;
  margin-bottom: 1em;
  display: inline-block;
}

.ability .threePoints_card > span {
  background: #E3AAAA;
}

.adjust .threePoints_card > span {
  background: #E3AAAA;
}

.threePoints_container .threePoints_card > h3 {
  font-size: 24px;
  display: flex;
  justify-content: center;
  margin: 0 auto 1rem;
  letter-spacing: 0.05em;
}

.threePoints_container .threePoints_card > h3 > span {
  display: inline-block;
}

.threePoints_container .threePoints_card > p {
  font-size: 15px;
  line-height: 2em;
}

.threePoints_container img {
  width: 90%;
  display: block;
  position: relative;
  z-index: 0;
}

.threePoints_container:nth-of-type(even) img {
  margin-left: auto;
}

.threePoints_detail_btn a {
  display: block;
  width: 90%;
  line-height: 1.75em;
  color: #fff;
  background: transparent;
  border: solid 2px #fff;
  border-radius: 999px;
  padding: 1em 0;
  margin: 0 auto 2rem;
  position: relative;
  transition: 0.3s;
}

.threePoints_detail_btn a svg {
  position: absolute;
  right: 3em;
  top: 50%;
  transform: translateY(-50%);
}

.threePoints_detail_btn a:hover {
  background-color: #fff;
}

.ability .threePoints_detail_btn a:hover {
  color: #E3AAAA;
}

.ability .threePoints_detail_btn a:hover svg path {
  fill: #E3AAAA;
}

.adjust .threePoints_detail_btn a:hover {
  color: #E3AAAA;
}

.adjust .threePoints_detail_btn a:hover svg path {
  fill: #E3AAAA;
}

.fadeIn {
  opacity: 0;
  transition: opacity 1s ease-out;
}

.fadeIn.visible {
  opacity: 1;
}

/* Message Section */
#message {
  padding: 5rem 0;
  text-align: center;
  position: relative;
}

#message > h2 {
  margin: 0 auto 5rem;
  font-size: 25px;
  letter-spacing: 0.1em;
}

.main-message {
  font-weight: bold;
  line-height: 2em;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  padding: 72px 0;
}

#message > p:not(.eachTextAnime) {
  width: 75%;
  text-align: left;
  line-height: 2em;
  margin: 0 auto 2rem;
}

.message_sub_img {
  display: block;
  width: 87.5%;
  margin: 0 auto 2rem;
}

.message_sub_img:nth-of-type(odd) {
  margin-right: 0;
}

.message_sub_img:nth-of-type(even) {
  margin-left: 0;
}

.message_credit {
  letter-spacing: 0.05em;
}

.message_credit strong {
  font-size: 1.5em;
  font-weight: bold;
}

@media screen and (max-width: 512px) {
  .main-message {
    font-size: 6vw;
  }
}

/* Company Info */
#about_company {
  padding: 1rem 0 5rem;
  text-align: center;
  position: relative;
}

#about_company > h2 {
  margin: 0 auto 5rem;
  font-size: 25px;
  letter-spacing: 0.1em;
}

.company-info {
  width: 90%;
  border-collapse: collapse;
  margin: 0 auto 1rem;
}

.company-info th,
.company-info td {
  border-style: solid;
  border-color: #E3AAAA;
  border-width: 1px 0;
  padding: 1.5em 1em;
  text-align: left;
  font-size: 15px;
}

.company-info th {
  text-align: center;
  background-color: #faefef;
  color: #E3AAAA;
  width: 30%;
  vertical-align: top;
}

.company-info td {
  background-color: #fff;
  width: 70%;
}

/* GroupService */
#groupService {
  padding: 5rem 0;
  text-align: center;
  position: relative;
  background: #faefef;
}

#groupService > h2 {
  margin: 0 auto 5rem;
  font-size: 25px;
  letter-spacing: 0.1em;
}

.groupService_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 12px;
  width: 75%;
  margin: 0 auto;
}

.groupService_card {
  width: calc((100% - 12px) / 2);
  display: block;
}

.groupService_logo {
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
}

.groupService_logo img {
  width: 70%;
}

.groupService_card > p {
  font-size: 11px;
  margin-top: 0.5em;
}

/* OfficeInformation */
.officeInformation {
  padding: 3rem 0;
  text-align: center;
  position: relative;
}

.officeInformation > h2 {
  margin: 0 auto 3rem;
  font-size: 25px;
  letter-spacing: 0.1em;
}

.officeInformation_adjust {
  background: #fff9f9;
}

.officeInformation_ability {
  background: #fffafa;
}

.officeInformation > img {
  display: block;
  width: 40%;
  margin: 0 auto 2rem;
}

.officeInformation button {
  display: block;
  width: 75%;
  margin: 0 auto 13px;
  padding: 1em;
  border-radius: 999px;
  color: #fff;
  position: relative;
}

.officeInformation button::after {
  position: absolute;
  content: url(../img/btn_plus.svg);
  right: 1.5em;
  top: 50%;
  transform: translateY(-50%);
}

.officeInformation_adjust button {
  background: #E3AAAA;
}

.officeInformation_ability button {
  background: #E3AAAA;
}

.officeInformation_title {
  font-size: 15px;
  font-weight: bold;
  margin: 1.5em auto .5em;
  color: #666;
}

.office_noimg {
  margin-bottom: 2rem;
}

/* Popup Container */
.popup-container {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease;
  opacity: 0;
  z-index: 30;
}

.popup-container.show {
  display: flex;
  opacity: 1;
}

/* Popup Content */
.popup-content {
  background-color: #fff;
  padding: 0;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  position: fixed;
  z-index: 40;
  transform: translate(-50%, 120%);
  transition: transform 0.5s ease;
  bottom: 0;
  left: 50%;
  width: 100%;
  height: 92%;
  max-width: 450px;
  max-height: 768px;
}

.popup-content.show {
  transform: translate(-50%, 0);
}

.close-button {
  position: absolute;
  top: -5%;
  right: 10px;
  font-size: 20px;
  cursor: pointer;
}

#popup-body {
  height: 100%;
  overflow-y: scroll;
}

.officeInformation_pop_adjust {
  background: #fff9f9;
  padding: 2rem 0;
  width: 100%;
  height: 100%;
}

.officeInformation_pop_ability {
  background: #fffafa;
  padding: 2rem 0;
  width: 100%;
  height: 100%;
}

/* Popup Body */
#popup-body h3,
#popup-body h4,
#popup-body p {
  width: 80%;
  margin: 0 auto;
  font-weight: 300;
  line-height: 2em;
}

#popup-body p {
  font-size: 15px;
}

.officeInformation_pop_adjust p a {
  color: #E3AAAA;
}

.officeInformation_pop_ability p a {
  color: #E3AAAA;
}

.officeInformation_tell {
  margin-bottom: 2rem;
}

.officeInformation_tell::before {
  content: url(../img/tell.svg);
  margin-right: 0.2em;
}

.officeInformation_pop_adjust h4 span,
.officeInformation_pop_ability h4 span {
  background-color: inherit;
  color: #fff;
  padding: 0.25em 1em;
  border-radius: 999px;
}

.officeInformation_pop_adjust h4 span {
}

.officeInformation_pop_ability h4 span {
  background-color: #E3AAAA;
}

.swiper_officeInfomation {
  padding-bottom: 3rem!important;
}

.swiper_officeInfomation img {
  width: 100%;
}

.swiper_officeInfomation .swiper-pagination {
  bottom: 1em;
  top: auto;
  font-size: 15px;
  font-weight: bold;
  width: 85%;
  text-align: right;
}

/* History */
#history {
  padding: 5rem 0;
  text-align: center;
  position: relative;
}

#history > h2 {
  margin: 0 auto 3rem;
  font-size: 25px;
  letter-spacing: 0.1em;
}

.swiper_history {
  margin-left: 12.5%!important;
}

.swiper_history .swiper-wrapper {
  padding-top: 3px;
}

.swiper_history .swiper-slide {
  border-top: solid 2px #E3AAAA;
  position: relative;
  text-align: left;
  height: auto !important;
}

.swiper_history .swiper-slide::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #E3AAAA;
  position: absolute;
  top: -5px;
  left: 0;
}

.swiper_history .swiper-inner {
  height: 100%;
}

.swiper_history .swiper-slide h3 {
  font-size: 23px;
  color: #E3AAAA;
  letter-spacing: 0.1em;
  padding: 0.2em 0 1.2em;
}

.swiper_history .swiper-slide p {
  width: 93%;
  font-size: 14px;
  line-height: 2em;
  margin-bottom: 0.5em;
}

.swiper_history .swiper-slide p .history_month {
  font-weight: bold;
}

.swiper_history .swiper-slide img {
  width: 93%;
  display: block;
}

/* Recruit Button */
.recruitBtn_container,.entryBtn_container {
  padding: 5rem 0;
  position: relative;
}

.recruitBtn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  padding-left: 1em;
  margin: 0 auto 2rem;
  color: #fff;
  border-radius: 24px;
  font-size: 20px;
  overflow: hidden;
  position: relative;
  transition: 0.3s;
  height: 6.3em;
}

.recruitBtn::before {
  content: url(../img/recruitBtn_bg_logo.svg);
  position: absolute;
  right: -2%;
  bottom: -35%;
  opacity: 0.2;
}

.recruitBtn > span {
  position: relative;
  display: inline-block;
  height: 100%;
  display: flex;
  align-items: center;
}

.recruitBtn > span::after {
  content: url(../img/btn_right.svg);
  position: absolute;
  top: 50%;
  right: -2em;
  transform: translateY(-45%);
}

.recruitBtn_ability {
  background-color: #E3AAAA;
}

.recruitBtn_ability:hover {
  background-color: #d29292;
}

.recruitBtn_adjust {
  background-color: #E3AAAA;
}

.recruitBtn_adjust:hover {
  background-color: #d29292;
}

.recruitBtn_staff {
  background-color: #E3AAAA;
}

.recruitBtn_staff:hover {
  background-color: #d29292;
}

.recruitBtn_entry {
  background-color: #E3AAAA;
}

.recruitBtn_entry:hover {
  background-color: #d29292;
}

/* Recruit Block */
.recruit-block {
  position: relative;
  width: 100%;
  padding: 4rem 0;
}

.recruit-block h2 {
  font-size: 18px;
  line-height: 2em;
  text-align: left;
  width: 75%;
  margin: 0 auto 2em;
  text-wrap: unset;
}

.recruit-block p {
  width: 75%;
  margin: 0 auto 2rem;
  font-size: 15px;
  line-height: 2em;
}

.recruit-block img {
  display: block;
  margin: 0 auto 2rem;
}

/* feature */
#feature {
  padding: 4rem 0;
  text-align: center;
  position: relative;
  background: #E3AAAA;
}

.ability #feature {
  background: #E3AAAA;
}

.adjust #feature {
  background: #E3AAAA;
}

#feature > h2 {
  margin: 0 auto 5rem;
  font-size: 25px;
  letter-spacing: 0.1em;
  color: #fff;
}

#feature .feature_card {
  width: 90%;
  line-height: 2em;
  display: flex;
  height: 12em;
  justify-content: center;
  align-items: center;
  background: #fff;
  margin: -2em auto 0;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  position: relative;
  transition: opacity 1s ease-out, transform 1s ease-out;
}

#feature .feature_card:nth-child(2) {
  z-index: 3; /* 最初のカードを最上位に */
}

#feature .feature_card:nth-child(3) {
  z-index: 2; /* 次のカードをその下に */
}

#feature .feature_card:nth-child(4) {
  z-index: 1; /* 最後のカードを最下位に */
}

#feature .feature_card_left {
  margin-left: 0;
  border-radius: 0 999px 999px 0;
  transform: translateX(-100%);
}

#feature .feature_card_right {
  margin-right: 0;
  border-radius: 999px 0 0 999px;
  transform: translateX(100%);
}

#feature .feature_card.visible {
  transform: translateX(0);
}

#feature .feature_card > span {
  display: inline-block;
  text-align: center;
  color: #E3AAAA;
}

.ability #feature .feature_card > span {
  color: #E3AAAA;
}

.adjust #feature .feature_card > span {
  color: #E3AAAA;
}

/* Job Description */
#job {
  padding: 7rem 0;
  text-align: center;
  position: relative;
}

#job > h2 {
  margin: 0 auto 5rem;
  font-size: 25px;
  letter-spacing: 0.1em;
}

.job_container {
  width: 90%;
  margin: 0 auto 1rem;
  border: solid 2px #E3AAAA;
  border-radius: 16px;
  overflow: hidden;
}

.job_btn {
  background-color: #E3AAAA;
  color: #fff;
  font-size: 21px;
  padding: 1.3em 0;
  position: relative;
  line-height: 1.2em;
  width: 100%;
}

.job_btn.job_btn_2 {
  padding: .7em 0;
}

.job_btn::before {
  content: "";
  background: #fff;
  width: 1em;
  height: 2px;
  position: absolute;
  right: 1em;
  top: 50%;
  transform: translateY(-50%);
}

.job_btn::after {
  content: "";
  background: #fff;
  width: 2px;
  height: 1em;
  position: absolute;
  right: calc(1.5em - 1px);
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s;
}

.job_btn.job_btn_open::after {
  transform: translateY(-50%) rotate(-90deg);
}

.job_inner {
  background: #faefef;
  padding: 2em 1.5em;
  color: #E3AAAA;
}

.job_inner h4 {
  margin-bottom: 1em;
}

.job_inner p {
  text-align: left;
  margin-bottom: 2em;
}

.job_inner p:last-of-type {
  margin-bottom: 0;
}

/* Ability & Adjust Variants */
.ability .job_container {
  border-color: #E3AAAA;
}

.adjust .job_container {
  border-color: #E3AAAA;
}

.ability .job_btn {
  background: #ecb9b9;
}

.adjust .job_btn {
  background: #E3AAAA;
}

.ability .job_inner {
  background: #fff9f9;
  color: #E3AAAA;
}

.adjust .job_inner {
  background: #fff9f9;
  color: #E3AAAA;
}

/* recruit table */
#recruitTable {
  padding: 3rem 0 6rem;
  text-align: center;
  position: relative;
}

#recruitTable > h2 {
  margin: 0 auto 2rem;
  font-size: 25px;
  letter-spacing: 0.1em;
}

#recruitTable table {
  width: 90%;
  margin: 0 auto;
}

#recruitTable table tr th,
#recruitTable table tr td {
  text-align: left;
  padding: 0 5%;
}

#recruitTable table tr th {
  font-size: 15px;
  padding-top: 1.5rem;
  padding-bottom: .3rem;
}

#recruitTable table tr td {
  font-size: 12px;
  padding-bottom: 1.5rem;
}

#recruitTable table tr:not(:last-child) td {
  border-bottom: solid 1px #000;
}

/* Flow */
.flow {
  padding: 5rem 0;
  text-align: center;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.flow_inner {
  position: absolute;
  width: 300px;
  height: 35em;
  left: 50%;
  top: 50vh;
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 512px) {
  .flow_inner {
    width: 80%;
  }
}

.flow > h2 {
  margin: 0 auto 3rem;
  font-size: 25px;
  letter-spacing: 0.1em;
}

/* Recruit Flow */
.recruit-flow {
  background: #faefef;
}

.ability .recruit-flow {
  background: #fffafa;
}

.adjust .recruit-flow {
  background: #fff9f9;
}

/* Flow Card */
.flow_card {
  opacity: 0;
  transition: 0.5s;
  position: absolute;
  left: 50%;
  top: 5.5em;
  transform: translate(-50%, 0);
  width: 100%;
}

.flow_card_active {
  opacity: 1;
}

.flow_fix .flow_inner {
  position: fixed;
  top: 50vh;
}

.flow_end .flow_inner {
  position: absolute;
  top: auto;
  bottom: 50vh;
  transform: translate(-50%, 50%);
}

.flow_card_step {
  font-size: 21px;
  line-height: 2em;
}

.flow_card_step span {
  padding: 0.1em 1em;
  background: #E3AAAA;
  color: #fff;
  font-weight: bold;
}

.ability .flow_card_step span {
  background: #E3AAAA;
}

.adjust .flow_card_step span {
  background: #E3AAAA;
}

.flow_card img {
  display: block;
  margin: 2rem auto;
}

.flow_card h3 {
  font-size: 21px;
  margin-bottom: 0.5em;
}

.flow_card p:not(.flow_card_step) {
  font-size: 14px;
  line-height: 2em;
  text-align: left;
  height: 4em;
  max-width: 480px;
  margin: 0 auto;
}

/* Service Flow */
.service-flow {
  background: #faefef;
  color: #fff;
}

.ability .service-flow {
  background: #E3AAAA;
}

.adjust .service-flow {
  background: #fff9f9;
  color: #000;
}

.flow.service-flow .flow_card_step span {
  background: #fff;
  color: #E3AAAA;
}

.ability .flow.service-flow .flow_card_step span {
  color: #E3AAAA;
}

.adjust .flow.service-flow .flow_card_step span {
  background: #E3AAAA;
  color: #fff;
}

.flow.service-flow .flow_inner {
  height: 35em;
}

.flow.recruit-staff-flow .flow_inner {
  height: 33em;
}

/* medelCase */
#model {
  padding: 5rem 0;
  text-align: center;
  position: relative;
}

#model > h2 {
  margin: 0 auto 5rem;
  font-size: 25px;
  letter-spacing: 0.1em;
}

#model .modelCase_wrap {
  overflow-x: auto;
  white-space: nowrap;
  margin-left: 5%;
  -ms-overflow-style: none;
  scrollbar-width: none;
  cursor: grab; /* ドラッグ時のカーソルを変更 */
}

#model .modelCase_wrap:active {
  cursor: grabbing; /* ドラッグ中のカーソルを変更 */
}

#model .modelCase_wrap::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Operaでのスクロールバーを非表示 */
}

#model .modelCase_wrap .scroll_area {
  display: inline-block;
  width: 150%;
  padding-right: 4%;
}

#model .modelCase_wrap img {
  width: 100%;
  display: block;
  user-drag: none; /* ユーザードラッグを無効にする */
  -webkit-user-drag: none; /* Webkitブラウザのユーザードラッグを無効にする */
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

/* Staff Search */
/* Staff List */
.staff-archive {
  padding-bottom: 4rem;
}
.staff-list {
  list-style: none;
  padding: 0;
}

.staff-list-container {
  background: #E3AAAA;
  padding: 1rem 0 2rem;
}

.staff-search-form button {
  background: #fff;
  padding: 0 0.5em 0 1em;
}

.staff-search-form .search-field {
  border: none;
  margin: 0;
  padding: 0.25em;
  background: #fff;
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.staff-search-form .search-field:focus {
  border: none !important;
  outline: none !important;
  box-shadow: none;
}

:where(input, button, textarea, select) {
  border: none;
  outline: none;
}

.staff-list-comment {
  text-align: center;
  font-size: 15px;
  color: #fff;
  margin: 4rem auto;
  line-height: 2em;
}

.staff-item {
  width: 60%;
  margin: 0 auto 2rem;
  display: block;
  padding: 0;
  color: #fff;
}

.staff-item .staff-thumbnail img {
  width: 100%;
}

.staff-item h2 {
  font-weight: 300;
  margin: 0;
}

.staff-item .staff-excerpt svg {
  display: inline-block;
}

.staff-content {
  display: flex;
  justify-content: space-between;
  flex: 1;
}

.staff-content > svg {
  margin-right: 1em;
}

/* Dropdown */
.dropdown {
  position: relative;
  display: block;
  width: 75%;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.1em;
}

.dropdown-toggle {
  background-color: #fff;
  box-sizing: border-box;
  color: #333;
  padding: 0.5em 1.5em;
  border: none;
  cursor: pointer;
  width: 100%;
  border-radius: 6px;
  position: relative;
  transition: 0.3s;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.2);
}

.dropdown-toggle.dropdown-active {
  border-radius: 6px 6px 0 0;
}

.dropdown-toggle.dropdown-toggle_ability {
  color: #E3AAAA;
}

.dropdown-toggle.dropdown-toggle_adjust {
  color: #E3AAAA;
}

.dropdown-toggle::after {
  position: absolute;
  content: url(../img/staff_dropDown.svg);
  top: 50%;
  right: 1.5em;
  transform: translateY(-50%);
  transition: 0.3s;
}

.dropdown-toggle.dropdown-active::after {
  transform: translateY(-50%) rotate(180deg);
}

.dropdown-menu {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  width: 100%;
  border-radius: 0 0 6px 6px;
  padding-bottom: 1em;
}

.dropdown-menu a {
  color: black;
  padding: 0.75em 1.5em;
  text-decoration: none;
  display: block;
}

.dropdown-menu a:hover {
  background-color: #fff;
}

.dropdown-menu a.list_ability {
  color: #E3AAAA;
  padding: 0.3em 1.5em;
}

.dropdown-menu a.list_adjust {
  color: #E3AAAA;
  padding: 0.3em 1.5em;
}

.dropdown-menu a:not(.list_adjust, .list_ability):not(:first-of-type) {
  margin-top: 0.5em;
}

/* Custom Select */
.custom-select-container {
  position: relative;
  display: inline-block;
  width: 100%;
}

.custom-select {
  display: none;
}

.custom-dropdown {
  position: relative;
  width: 100%;
}

.custom-dropdown-trigger {
  display: block;
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #fff;
  cursor: pointer;
}

.custom-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 1000;
  display: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  max-height: 200px;
  overflow-y: auto;
}

.custom-dropdown-menu.show {
  display: block;
}

.custom-dropdown-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.custom-dropdown-list li {
  padding: 10px;
  cursor: pointer;
}

.custom-dropdown-list li:hover {
  background-color: #f5f5f5;
}

/* staff-detail */
.post {
  width: 100%;
  margin: 0 auto 48px;
  margin-top: 45px;
  padding: 50px 0 1rem;
  text-align: left;
}

@media screen and (max-width : 768px) {
  .post {
    margin-top: 0;
    padding: 100px 0 1rem;
  }
}

.post .post-header {
  position: relative;
}

.post .post-header > img {
  width: 80%;
  margin: 0 12.5% 0 7.5%;
  padding-bottom: 7rem;
}

.post .post-profile {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 87.5%;
  background: #68A8E4;
  padding: 1.5em;
  color: #fff;
  border-radius: 8px 0 0 8px;
}

.post .post-profile > h1,
.post .post-profile > p {
  padding: 0 1.5rem;
}

.post .post-profile > h1 {
  line-height: 1.6em;
  font-size: 25px;
}

.post .post-profile > p > svg {
  display: inline-block;
  margin-right: 0.3em;
}

.post .post-profile .post-profile-office {
  font-size: 15px;
}

.post .post-profile .post-profile-position {
  font-size: 16px;
  padding-bottom: 0.5em;
  border-bottom: 1px solid #fff;
  margin-bottom: 0.5em;
}

.post .post-profile .post-profile-officeType {
  font-size: 25px;
  font-weight: bold;
}

.post .post-profile .post-profile-type {
  font-size: 16px;
}

.post .post-profile > p:last-of-type {
  font-size: 20px;
}

.post-content {
  padding: 0 0 3rem;
  position: relative;
}

.post-content-container {
  width: 85%;
  margin: 0 auto 2rem;
  padding: 2em 5%;
  border: 2px solid #68A8E4;
  background: #E5EDF4;
  border-radius: 12px;
}

.post-content-container h2 {
  text-align: center;
  font-size: 20px;
  padding-bottom: 0.5em;
  margin-bottom: 0.7em;
  position: relative;
}

.post-content-container h2::after {
  content: "";
  position: absolute;
  height: 4px;
  width: 3em;
  background: #E3AAAA;
  border-radius: 999px;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
}

.post-content-container p {
  font-size: 15px;
  line-height: 2em;
}

.post-comment {
  padding: 3rem;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  line-height: 2em;
  letter-spacing: 0.1em;
}

.post-comment .color-green {
  color: #E3AAAA;
}

.adjust .post-profile {
  background: #E3AAAA;
}

.adjust .post-comment .color-green {
  color: #E3AAAA;
}

.adjust .post-content-container {
  border-color: #E3AAAA;
  background: #fff9f9;
}

.adjust .post-content-container h2::after {
  background: #E3AAAA;
}

.adjust .post-header .object1 ellipse,
.adjust .post-content .object3 ellipse,
.adjust .post-content .object2 path {
  fill: #E3AAAA;
}

/* privacy-policy */
.privacy-policy {
  padding-bottom: 8rem;
}

.privacy-policy h2,
.privacy-policy h3,
.privacy-policy p,
.privacy-policy > ul {
  width: 75%;
  margin: 0 auto 1rem;
  line-height: 2em;
}

.privacy-policy h2 {
  font-size: 1.2rem;
  margin: 2rem auto 1rem;
}

.privacy-policy h3 {
  font-size: 1rem;
  margin: 2rem auto 0;
}

.privacy-policy ul:not(.parent_ul) li {
  text-indent: -1em;
  padding-left: 1em;
}

.privacy-policy ul:not(.parent_ul) li::before {
  content: "・";
}

/* contact */
/* Contact Form */
span.wpcf7-not-valid-tip,
.wpcf7-response-output {
  display: none !important;
}

.contact > p {
  width: 75%;
  margin: 0 auto 4rem;
  line-height: 2em;
  font-size: 15px;
}

.contact .contact_wrap {
  width: 75%;
  margin: 0 auto 2rem;
}

.required {
  background: #FF0000;
  color: #fff;
  padding: 0 0.5em;
  margin-right: 0.2em;
  border-radius: 4px;
}

.contact .contact_wrap dl dt {
  font-weight: bold;
  font-size: 15px;
}

.contact .contact_wrap dl dd {
  padding: 1em 0 1.5em;
}

.contact .contact_wrap dl dd select,
.contact .contact_wrap dl dd input,
.contact .contact_wrap dl dd textarea {
  width: 100%;
  border: 1.5px solid #000;
  padding: 0.5em;
  border-radius: 4px;
  background: #fff;
}

.contact .contact_wrap dl dd select:focus,
.contact .contact_wrap dl dd input:focus,
.contact .contact_wrap dl dd textarea:focus {
  outline: 2px ;
  box-shadow: none;
}

.contact .contact_wrap dl dd select {
  -moz-appearance: none;
  -webkit-appearance: none;
}

.contact .contact_wrap dl dt .required {
  margin-left: 0.5em;
}

.contact .contact_wrap .formError .formErrorContent {
  background: unset;
  color: #f00;
}

.contact .contact_wrap form > p {
  font-size: 15px;
  line-height: 2em;
  margin-bottom: 1rem;
}

.contact .contact_wrap a {
  color: #E3AAAA;
  text-decoration: underline;
}

.contact .contact_wrap .wpcf7-list-item {
  margin-left: 0;
}

.contact .wpcf7-list-item input {
  border: 1px solid #000;
  width: 1em;
  height: 1em;
  vertical-align: middle;
  margin-right: 0.5em;
  background: #fff;
  color-scheme: initial;
}

.contact .wpcf7-submit {
  width: 100%;
  margin: 2rem auto;
  text-align: center;
  display: block;
  background: #E3AAAA;
  color: #fff;
  padding: 1em 0;
  border-radius: 999px;
  transition: 0.3s;
  border: 2px solid #E3AAAA;
}

.wpcf7 .wpcf7-submit:disabled {
  background: #ccc;
  border: 2px solid #ccc;
}

.contact .wpcf7-previous {
  width: 100%;
  margin: -3rem auto 2rem;
  text-align: center;
  display: block;
  background: #fff;
  color: #E3AAAA;
  padding: 1em 0;
  border-radius: 999px;
  transition: 0.3s;
  border: 2px solid #E3AAAA;
}

.contact .contact_wrap dl dd span[data-name="classification"] select {
  background-image: url(../img/staff_dropDown.svg);
  background-repeat: no-repeat;
  background-size: .8em auto;
  background-position: right 12px center;
}

/* Form Birthday */
.form_birthday p {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.form_birthday p > span {
  display: block;
  position: relative;
}

.form_birthday p > span:nth-of-type(1) {
  width: 100%;
}

.form_birthday p > span:nth-of-type(2),
.form_birthday p > span:nth-of-type(3) {
  width: calc((100% - 10px) / 2);
}

.form_birthday #birth-error {
  color: #f00;
  font-size: 11px;
  transition: 0.3s;
  padding: 4px 10px;
  opacity: 0;
}

.form_birthday p > span select {
  -webkit-appearance: none;
  appearance: none;
  text-align: right;
  padding-right: 2.5em !important;
}

.form_birthday p > span::after {
  position: absolute;
  top: 50%;
  right: 1em;
  transform: translateY(-50%);
}

.form_birthday p > span:nth-of-type(1)::after {
  content: "年";
}

.form_birthday p > span:nth-of-type(2)::after {
  content: "月";
}

.form_birthday p > span:nth-of-type(3)::after {
  content: "日";
}


/* News Page */
.news {
  padding-bottom: 4rem;
}

.news-list {
  width: 75%;
  margin: 0 auto;
}

.news-item {
  margin-bottom: 5rem;
}

.news-item .post-date {
  font-size: 12px;
  line-height: 2em;
  margin-top: 10px;
}

.news-item .news-title {
  font-size: 15px;
  font-weight: 300;
  margin-bottom: 10px;
}

.news-btn {
  display: block;
  width: 100%;
  padding: 0.75em 0;
  background: #E3AAAA;
  color: #fff;
  text-align: center;
  border-radius: 999px;
}

.news-individual {
  width: 75%;
  margin: 0 auto;
  padding-bottom: 5rem;
}

.news-individual .news-header .news-meta {
  font-size: 12px;
  line-height: 2em;
  margin-top: 10px;
}

.news-individual .news-header .news-title {
  font-size: 15px;
  font-weight: 300;
  margin-bottom: 3rem;
}

.news-individual .news-content p {
  font-size: 15px;
  line-height: 2.2em;
  margin: 0 auto 1em;
}

.news-individual .news-content img {
  display: block;
  margin: 0 auto 1em;
}

.news-individual .news-btn {
  margin-top: 4rem;
}

/* FAQ */
.faq_container {
  width: 85%;
  margin: 0 auto 5rem;
}

.faq_card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.2);
  margin: 0 auto 23px;
  padding: 8px;
  min-height: 3em;
}

.faq_q, .faq_a {
  padding: 0 2em;
  font-size: 15px;
  position: relative;
  line-height: 1.3em;
}

.faq_q {
  font-weight: bold;
}

.faq_a {
  line-height: 1.5em;
}

.faq_q::before, .faq_q::after {
  content: "";
  position: absolute;
  width: 1em;
  height: 2px;
  border-radius: 999px;
  top: 50%;
  right: 0.5em;
  transform: translateY(-50%);
  background: #E3AAAA;
  transition: 0.3s;
}

.faq_q::after {
  transform: translateY(-50%) rotate(90deg);
}

.faq_q.faq_q_open::after {
  transform: translateY(-50%) rotate(0deg);
}

.faq_a {
  display: none;
  margin-top: 1em;
}

.faq_q .faq_icon, .faq_a .faq_icon {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  line-height: 2em;
  width: 2em;
  text-align: center;
}

.faq_q .faq_icon {
  border-right: 1px solid #E3AAAA;
  color: #E3AAAA;
  font-weight: bolder;
}

.faq_a .faq_icon {
  border-right: 1px solid #E3AAAA;
  color: #E3AAAA;
  top: 1em;
  font-weight: bolder;
}

.faq_q .faq_txt, .faq_a .faq_txt {
  padding-left: 1em;
  padding-right: 1em;
}

.faq_q .faq_txt {
  display: flex;
  height: 2.5em;
  align-items: center;
}

.faq_a .faq_txt {
  display: block;
  padding-top: 0.25em;
}

@media screen and (max-width : 390px) {
  .faq_q, .faq_a {
    font-size: 3.8vw;
  }
}

/* 404 */
.page404 {
  padding: 7rem 0;
}

.page404 h1 {
  font-size: 57px;
  text-align: center;
  margin: 0 auto 3rem;
}

.page404 p {
  width: 75%;
  margin: 0 auto 2rem;
  font-size: 15px;
  line-height: 2em;
}

.page404 p.page404_main {
  font-weight: bold;
  font-size: 20px;
}