@charset "UTF-8";
/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

/****************************************************************
  *** variables - 変数の定義
  ****************************************************************/
/*** Color ***/
/****************************************************************
  *** base - Webサイト全体のベース・リセットしたスタイルの調整
  ****************************************************************/
/****************************************************************
  *** mixin - 使い回し可能なスタイルを定義
  ****************************************************************/
/*** Media Query ***/
/*** Contents ***/
/****************************************************************
 *** Header
 ****************************************************************/
.header {
  padding: 20px 30px 30px 26px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 998;
  width: 100%;
  height: 118px;
}
@media screen and (max-width: 768px) {
  .header {
    padding: 16px 20px;
    height: 80px;
  }
}
@media screen and (max-width: 526px) {
  .header {
    padding: 3px 10px 10px 14px;
  }
}
.header_nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .header_nav {
    margin-left: 20px;
  }
}
@media screen and (max-width: 526px) {
  .header_nav {
    margin-left: 0;
  }
}
.header_nav h1 {
  width: clamp(15.4rem, 11.984rem + 9.11vw, 25.1rem);
  margin-top: 6px;
  height: auto;
  line-height: 0;
}
.header_nav h1 a {
  width: 100%;
  height: 100%;
}
.header_nav h1 img {
  width: 100%;
  height: 100%;
  vertical-align: bottom;
}
.header_nav nav {
  display: flex;
  gap: 20px;
  padding-right: 68px;
  padding-top: 20px;
  position: relative;
}
.header_nav nav .navi {
  display: flex;
  text-wrap: nowrap;
  padding-right: 25px;
}
@media screen and (max-width: 768px) {
  .header_nav nav .navi {
    display: none;
  }
}
.header_nav nav .navi_item > p a {
  display: block;
  width: 126px;
  padding: 14px 0;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  text-wrap: nowrap;
  background-color: #222;
  color: #fff;
}
.header_nav nav .navi .beigh_btn a {
  background-color: #AFA86F;
  font-family: "Viga", sans-serif;
}
.header_nav nav .navi li + li {
  padding-left: 22px;
}
.header_nav nav .burger_btn {
  width: 52px;
  height: 45px;
  display: block;
  margin-top: 5px;
  cursor: pointer;
  position: absolute;
  top: 15px;
  right: -2px;
  z-index: 889;
  transition: 0.4s all ease-in;
}
@media screen and (max-width: 768px) {
  .header_nav nav .burger_btn {
    width: 42px;
    height: 34px;
    top: 28px;
  }
}
@media screen and (max-width: 526px) {
  .header_nav nav .burger_btn {
    width: 32px;
    height: 30px;
    top: 9px;
    right: 1px;
  }
}
.header_nav nav .burger_btn span {
  display: block;
  width: 100%;
  border-top: 2px solid #fff;
  transition: 0.4s all ease-in;
}
.header_nav nav .burger_btn span:nth-child(1) {
  transform: translateY(-8px);
}
.header_nav nav .burger_btn span:nth-child(2) {
  transform: translateY(6px);
}
@media screen and (max-width: 768px) {
  .header_nav nav .burger_btn span:nth-child(2) {
    transform: translateY(4px);
  }
}
@media screen and (max-width: 526px) {
  .header_nav nav .burger_btn span:nth-child(2) {
    transform: translateY(0px);
  }
}
.header_nav nav .burger_btn span:nth-child(3) {
  transform: translateY(20px);
}
@media screen and (max-width: 768px) {
  .header_nav nav .burger_btn span:nth-child(3) {
    transform: translateY(16px);
  }
}
@media screen and (max-width: 526px) {
  .header_nav nav .burger_btn span:nth-child(3) {
    transform: translateY(6px);
  }
}
.header_nav nav .burger_btn.active {
  right: -4px;
  top: 9px;
}
.header_nav nav .burger_btn.active span {
  border-color: #222;
}
.header_nav nav .burger_btn.active span:nth-child(1) {
  transform: translateY(15px) rotate(45deg);
}
.header_nav nav .burger_btn.active span:nth-child(2) {
  display: none;
}
.header_nav nav .burger_btn.active span:nth-child(3) {
  transform: translateY(15px) rotate(-45deg);
}
.header_nav nav .burger_btn.active p {
  display: none;
}
.header_nav nav .burger_btn p {
  margin-top: 25px;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 400;
  text-transform: uppercase;
  color: #fff;
  font-family: "Viga", sans-serif;
}
@media screen and (max-width: 768px) {
  .header_nav nav .burger_btn p {
    margin-top: 18px;
  }
}
@media screen and (max-width: 526px) {
  .header_nav nav .burger_btn p {
    margin-top: 12px;
    font-size: 1rem;
  }
}
.header.head_white {
  background-color: #fff;
  margin-top: 0px;
  box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.25);
  padding-top: 7px;
  padding-right: 20px;
  top: 5px;
}
.header.head_white .header_nav h1 svg path {
  fill: black;
}
.header.head_white nav .nav li + li {
  padding-left: 16px;
}
.header.head_white .burger_btn {
  top: 17px;
}
.header.head_white .burger_btn span {
  border-color: #222;
}
.header.head_white .burger_btn p {
  color: #222;
}

.child_header {
  padding-top: 22px;
  padding-bottom: 20px;
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  .child_header {
    padding: 17px 14px 10px;
  }
}
.child_header nav {
  padding-top: 17px;
}
.child_header nav .burger_btn {
  margin-top: 4px;
}
@media screen and (max-width: 768px) {
  .child_header nav .burger_btn {
    top: 24px;
  }
}
@media screen and (max-width: 526px) {
  .child_header nav .burger_btn {
    top: 32px;
  }
}
.child_header nav .burger_btn span {
  border-color: #222;
}
.child_header nav .burger_btn p {
  color: #222;
}

/****************************************************************
 *** Child-Header
 ****************************************************************/
.child_header {
  background-color: #fff;
  position: static;
}
.child_header .header_nav {
  max-width: 1386px;
  margin-inline: auto;
}

.child_mv {
  margin-top: 0px;
}
.child_mv .child_image {
  width: 100vw;
  height: clamp(300px, 32.5vw, 339px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-size: cover;
  background-position: center;
  padding-top: 3px;
}
.child_mv .child_image img {
  object-fit: cover;
  object-position: center, center;
  background-position: center, center;
}
.child_mv .about_img {
  background: url(/images/about/about-fv.jpg) no-repeat;
  background-size: cover;
}
.child_mv .staff_img {
  background: url(/images/staff/staff-fv.jpg) no-repeat;
  background-size: cover;
}
.child_mv .blog_img {
  background: url(/images/blog/blog-fv.jpg) no-repeat;
  background-size: cover;
}
.child_mv .benefit_img {
  background: url(/images/benefit/benefits-fv.jpg) no-repeat;
  background-size: cover;
}
.child_mv .career_img {
  background: url(/images/career/carrer-fv.jpg) no-repeat;
  background-size: cover;
}
.child_mv .details_img {
  background: url(/images/details-fv.jpg) no-repeat;
  background-size: cover;
}
.child_mv .faq_img {
  background: url(/images/faq-fv1.jpg) no-repeat;
  background-size: cover;
}
.child_mv_text {
  width: fit-content;
}
.child_mv_text .mv_title {
  font-size: 6.4rem;
  line-height: 1;
  font-weight: 400;
  padding: 0.07em 0.18em;
  background-color: #fff;
  margin-bottom: 20px;
  color: #222;
  width: fit-content;
  font-family: "Viga", sans-serif;
}
@media screen and (max-width: 768px) {
  .child_mv_text .mv_title {
    font-size: 4.2rem;
  }
}
@media screen and (max-width: 526px) {
  .child_mv_text .mv_title {
    font-size: 3.8rem;
  }
}
.child_mv_text .mv_text_l {
  font-size: 2.4rem;
  line-height: 1;
  font-weight: 700;
  padding: 3px 10px;
  background-color: #fff;
  margin-bottom: 18px;
  display: inline-block;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 768px) {
  .child_mv_text .mv_text_l {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 526px) {
  .child_mv_text .mv_text_l {
    font-size: 2rem;
  }
}
.child_mv_text .mv_text_m {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  padding: 5px 10px;
  background-color: #fff;
  color: #988C2C;
  width: fit-content;
  margin-bottom: 32px;
  margin-top: 0px;
}
@media screen and (max-width: 526px) {
  .child_mv_text .mv_text_m {
    font-size: 1.4rem;
  }
}

.b_link {
  width: 100%;
  padding: 20px 0;
  background-color: #F0F0F0;
}
@media screen and (max-width: 526px) {
  .b_link {
    padding: 10px;
  }
}
.b_link .breadcrumb {
  display: flex;
  align-items: center;
}
.b_link .breadcrumb span {
  font-size: 1.4rem;
  line-height: 1;
  padding-right: 5px;
  padding-left: 4px;
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .b_link .breadcrumb span {
    line-height: 1.5;
  }
}
.b_link .breadcrumb span:first-child {
  padding-left: 0;
  position: relative;
}
.b_link .breadcrumb span:last-child {
  padding-right: 0;
}
.b_link .breadcrumb .post-page.current-item {
  text-transform: uppercase;
}

/****************************************************************
 ***  footer
 ****************************************************************/
.footer_image {
  width: 100%;
  height: clamp(320px, 33.8vw, 488px);
}
.footer_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.footer_nav {
  position: relative;
}
.footer_nav_list {
  height: auto;
  padding: 12.25em 12.2% 4em;
  margin: 0 64px 64px;
  background-color: #FAF7F1;
}
@media screen and (max-width: 768px) {
  .footer_nav_list {
    margin: 0 48px 32px;
  }
}
@media screen and (max-width: 992px) {
  .footer_nav_list {
    margin: 0 26px 24px;
  }
}
@media screen and (max-width: 526px) {
  .footer_nav_list {
    margin: 0 20px 24px;
    padding: 5.25em 12.2% 4em;
  }
}
.footer_nav_list h1 {
  line-height: 0;
  width: 251px;
  height: auto;
}
@media screen and (max-width: 768px) {
  .footer_nav_list h1 {
    margin-top: 62px;
    margin-bottom: 0;
  }
}
.footer_nav_list h1 img {
  object-fit: contain;
}
.footer_nav_list_item {
  display: flex;
  padding-top: 13px;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 40px 22px;
  width: 40vw;
  font-weight: 700;
  margin-inline: auto;
  margin-top: 15px;
  max-width: 500px;
}
.footer_nav_list_item a {
  text-wrap: nowrap;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .footer_nav_list_item {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 24px;
  }
}
@media screen and (max-width: 526px) {
  .footer_nav_list_item {
    gap: 20px 22px;
    text-wrap: nowrap;
  }
}
.footer_nav_flex {
  width: 100%;
  display: flex;
  height: auto;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 980px;
  margin-inline: auto;
  padding-right: 23px;
}
@media screen and (max-width: 992px) {
  .footer_nav_flex {
    flex-direction: column-reverse;
    justify-content: flex-start;
    align-items: center;
    gap: 48px;
  }
}
@media screen and (max-width: 526px) {
  .footer_nav_flex {
    padding-right: 0;
  }
}
.footer_bottom {
  margin-top: 62px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 980px;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .footer_bottom {
    margin-top: 40px;
    justify-content: center;
  }
}
@media screen and (max-width: 526px) {
  .footer_bottom {
    margin-top: 40px;
    justify-content: center;
  }
}
.footer_bottom p {
  font-size: 1.2rem;
  line-height: 1;
  color: #999;
  font-family: "Viga", sans-serif;
}
@media screen and (max-width: 992px) {
  .footer_bottom p {
    text-align: center;
  }
}
.footer_bottom .sns_list {
  display: flex;
  gap: 17px;
  padding-right: 3px;
}
@media screen and (max-width: 768px) {
  .footer_bottom .sns_list {
    position: absolute;
    bottom: 26%;
    left: 50%;
    transform: translateX(-50%);
    padding-right: 0;
    gap: 15px;
  }
}
@media screen and (max-width: 526px) {
  .footer_bottom .sns_list {
    bottom: 31%;
  }
}
.footer_bottom .sns_list i {
  font-size: 2.4rem;
}
.footer_float {
  width: clamp(312px, 66.3vw, 956px);
  height: 273px;
  border-radius: 1.25em;
  background-color: #fff;
  text-align: center;
  padding-top: 3.125em;
  position: absolute;
  top: -137px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 333;
}
@media screen and (max-width: 768px) {
  .footer_float {
    padding-top: 2.125em;
    width: 86vw;
  }
}
@media screen and (max-width: 526px) {
  .footer_float {
    height: 238px;
    width: 91vw;
    top: -187px;
  }
}
.footer_float .float_text {
  line-height: 1.5;
  font-weight: 700;
  margin-bottom: 31px;
}
@media screen and (max-width: 768px) {
  .footer_float .float_text {
    margin-bottom: 22px;
    line-height: 2.2;
  }
}
@media screen and (max-width: 526px) {
  .footer_float .float_text {
    margin-bottom: 21px;
    font-size: 1.4rem;
    line-height: 2.4;
  }
}
.footer_float .brown_btn a {
  width: clamp(221px, 38.6vw, 556px);
  background-color: #AFA86F;
  border: none;
  font-size: 1.4rem;
}
@media screen and (max-width: 526px) {
  .footer_float .brown_btn a {
    width: clamp(201px, 38.6vw, 556px);
  }
}

/****************************************************************
 *** parts
 ****************************************************************/
.primary_btn {
  text-align: center;
  margin: 0 auto;
  width: fit-content;
}
.primary_btn a {
  font-size: 2rem;
  line-height: 1;
  width: 355px;
  text-align: center;
  display: block;
  padding: 28px 0;
  color: #222;
  border: 1px solid #222;
  position: relative;
  transition: 0.2s ease;
  font-family: "Viga", sans-serif;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 526px) {
  .primary_btn a {
    font-size: 1.4rem;
    padding: 23px 0;
    width: 277px;
  }
}
.primary_btn a:hover, .primary_btn a:focus {
  background-color: #222;
  color: #fff;
}
.primary_btn a:hover::before, .primary_btn a:focus::before {
  right: 25px;
  border-color: #fff;
}
.primary_btn a::before {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 3px solid #222;
  border-right: 3px solid #222;
  transition: 0.2s ease;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  right: 27px;
}
@media screen and (max-width: 526px) {
  .primary_btn a::before {
    right: 20px;
  }
}
.primary_btn a::before:hover, .primary_btn a::before:focus {
  right: 10px;
  border-color: #fff;
}

.sec_bg {
  position: relative;
  display: inline-block;
}
.sec_bg .bg_title {
  font-size: clamp(8rem, 6.028rem + 8.41vw, 13.6rem);
  line-height: 1;
  font-weight: 400;
  color: rgba(151, 151, 151, 0.1);
  font-family: "Poppins", sans-serif;
}
@media screen and (max-width: 526px) {
  .sec_bg .bg_title {
    font-size: 8rem;
  }
}
.sec_bg .sec_title {
  font-size: clamp(3.2rem, 2.496rem + 3vw, 5.2rem);
  font-weight: 700;
  line-height: 1;
  color: #222;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 111;
  text-wrap: nowrap;
}
@media screen and (max-width: 526px) {
  .sec_bg .sec_title {
    font-size: 3.2rem;
  }
}
.sec_bg .sec_title::before {
  content: "";
  width: 1em;
  height: 2px;
  background-color: #222;
  position: absolute;
  left: 0;
  bottom: -5px;
}
@media screen and (max-width: 526px) {
  .sec_bg .sec_title {
    left: 40%;
  }
}

.child_title {
  text-align: center;
  font-weight: 700;
  font-size: 3.2rem;
  line-height: 1;
}
@media screen and (max-width: 992px) {
  .child_title {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 526px) {
  .child_title {
    font-size: 2.4rem;
  }
}

.bg-white {
  background-color: #fff !important;
}

/****************************************************************
 *** drawer-menu
 ****************************************************************/
.head_navigation {
  width: 100vw;
  height: fit-content;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 876;
  padding: 30px 30px 208px;
  background-color: #FAF7F1;
  transition: 0.4s all ease-in;
  opacity: 0;
  visibility: hidden;
}
@media screen and (max-width: 992px) {
  .head_navigation {
    padding-bottom: 148px;
  }
}
@media screen and (max-width: 526px) {
  .head_navigation {
    height: 100vh;
    padding: 0px 10px;
  }
}
.head_navigation.is_active {
  opacity: 1;
  visibility: visible;
}
.head_navigation .navigation_head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1382px;
  margin-inline: auto;
}
.head_navigation .navigation_head h1 {
  width: 251px;
  height: 66px;
}
@media screen and (max-width: 526px) {
  .head_navigation .navigation_head h1 {
    width: 150px;
    height: 40px;
    padding-left: 1%;
    margin-top: -4px;
  }
}
.head_navigation .navigation_head h1 img {
  object-fit: contain;
}
.head_navigation .navigation_head .navi {
  display: flex;
  text-wrap: nowrap;
  padding-right: 93px;
  margin-top: 9px;
}
@media screen and (max-width: 768px) {
  .head_navigation .navigation_head .navi {
    display: none;
  }
}
.head_navigation .navigation_head .navi_item > p a {
  display: block;
  width: 126px;
  padding: 14px 41px;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  text-wrap: nowrap;
  background-color: #222;
  color: #fff;
}
.head_navigation .navigation_head .navi .beigh_btn a {
  background-color: #AFA86F;
}
.head_navigation .navigation_head .navi li + li {
  padding-left: 22px;
}
.head_navigation .navigation_body {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 85px;
  max-width: 1440px;
  margin-inline: auto;
}
@media screen and (max-width: 992px) {
  .head_navigation .navigation_body {
    margin-top: 43px;
  }
}
@media screen and (max-width: 768px) {
  .head_navigation .navigation_body {
    display: block;
    margin-top: 43px;
  }
}
@media screen and (max-width: 526px) {
  .head_navigation .navigation_body {
    display: block;
    margin-top: 0;
  }
}
.head_navigation .navigation_body .body_logo {
  padding-right: 4.6%;
  flex: 0 0 50%;
  min-width: 260px;
  margin-top: 27px;
}
@media screen and (max-width: 768px) {
  .head_navigation .navigation_body .body_logo {
    display: none;
  }
}
@media screen and (max-width: 526px) {
  .head_navigation .navigation_body .body_logo {
    margin-top: 0;
  }
}
.head_navigation .navigation_body .body_logo h1 {
  line-height: 0;
  width: 100%;
  max-width: 251px;
  height: auto;
  aspect-ratio: 3.8/1;
  margin-left: auto;
}
.head_navigation .navi_link {
  border-left: 1px solid #222;
  padding-left: 4.4%;
  flex: 0 0 50%;
  padding-right: 7.5%;
  padding-top: 19px;
}
@media screen and (max-width: 992px) {
  .head_navigation .navi_link {
    width: 100%;
    padding-right: 0;
    padding-left: 2%;
  }
}
@media screen and (max-width: 768px) {
  .head_navigation .navi_link {
    border: none;
    width: 100%;
    margin-top: 36px;
  }
}
@media screen and (max-width: 526px) {
  .head_navigation .navi_link {
    margin-top: 19px;
    padding-right: 16px;
    padding-left: 0;
  }
}
.head_navigation .navi_link nav {
  padding-top: 6px;
}
.head_navigation .navi_link ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 50px;
  width: 100%;
}
@media screen and (max-width: 1080px) {
  .head_navigation .navi_link ul {
    width: 400px;
  }
}
@media screen and (max-width: 992px) {
  .head_navigation .navi_link ul {
    width: 100%;
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (max-width: 526px) {
  .head_navigation .navi_link ul {
    margin-bottom: 52px;
  }
}
.head_navigation .navi_link ul li {
  width: calc(50% - 13px);
  padding: 23px 0;
  border-top: 1px solid #AFA86F;
  text-wrap: nowrap;
}
@media screen and (max-width: 992px) {
  .head_navigation .navi_link ul li {
    width: 70%;
  }
}
@media screen and (max-width: 768px) {
  .head_navigation .navi_link ul li {
    width: 100%;
  }
}
@media screen and (max-width: 526px) {
  .head_navigation .navi_link ul li {
    padding: 12px 0 10px;
  }
}
.head_navigation .navi_link ul li:nth-child(5) {
  border-bottom: 1px solid #AFA86F;
}
@media screen and (max-width: 992px) {
  .head_navigation .navi_link ul li:nth-child(5) {
    border-bottom: none;
  }
}
.head_navigation .navi_link ul li:nth-child(6) {
  border-bottom: 1px solid #AFA86F;
}
.head_navigation .navi_link ul li .link_ttl {
  font-size: 3rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
  font-family: "Viga", sans-serif;
}
@media screen and (max-width: 526px) {
  .head_navigation .navi_link ul li .link_ttl {
    font-size: 1.8rem;
  }
}
.head_navigation .navi_link ul li .link_ttl span {
  display: block;
  font-size: 1.6rem;
  line-height: 1;
  margin-top: 12px;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 526px) {
  .head_navigation .navi_link ul li .link_ttl span {
    font-size: 1.2rem;
    font-weight: 700;
  }
}
.head_navigation .navi_link .btn_list {
  display: flex;
  gap: 6%;
}
@media screen and (max-width: 992px) {
  .head_navigation .navi_link .btn_list {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}
@media screen and (max-width: 768px) {
  .head_navigation .navi_link .btn_list {
    align-items: flex-start;
    gap: 16px;
  }
}
.head_navigation .navi_link .btn_list .btn {
  width: calc(54% - 36px);
  max-width: 264px;
  text-align: center;
  border-radius: 0;
  padding-block: 8px;
  font-size: 1.4rem;
  letter-spacing: 0;
  padding-inline: 30px;
}
@media screen and (max-width: 992px) {
  .head_navigation .navi_link .btn_list .btn {
    width: 100%;
    max-width: 246px;
  }
}
@media screen and (max-width: 768px) {
  .head_navigation .navi_link .btn_list .btn {
    width: 100%;
    max-width: 246px;
  }
}
@media screen and (max-width: 526px) {
  .head_navigation .navi_link .btn_list .btn {
    width: 100%;
    max-width: 248px;
    padding: 14px 0 !important;
    font-size: 1.4rem;
    line-height: 1;
  }
}
.head_navigation .navi_link .btn_list .btn:last-child {
  background-color: #AFA86F;
}
.head_navigation .navi_link .btn_list .btn.brown_btn {
  font-family: "Viga", sans-serif;
  font-weight: 400;
}
.head_navigation .navi_link .btn_list .btn.brown_btn:hover, .head_navigation .navi_link .btn_list .btn.brown_btn:focus {
  background-color: #AFA86F;
  color: #fff;
}
.head_navigation .navi_link .btn_list .btn.brown_btn a:hover, .head_navigation .navi_link .btn_list .btn.brown_btn a:focus {
  background-color: transparent;
  color: #fff;
}

/****************************************************************
 *** hover
 ****************************************************************/
.beigh_btn {
  opacity: 0.7;
  transition: 0.2s ease;
  font-family: "Viga", sans-serif;
  font-weight: 400;
}
.beigh_btn:hover, .beigh_btn:focus {
  opacity: 1;
}

.brown_btn a {
  transition: 0.2s ease;
  font-family: "Viga", sans-serif;
  font-weight: 400;
}
.brown_btn a:hover, .brown_btn a:focus {
  background-color: #222;
  color: #fff;
}
.brown_btn a::before:hover, .brown_btn a::before:focus {
  transform: translateY(-20px);
  border-color: #fff;
}

[data-scroll-animation=fadein] {
  opacity: 0;
}

[data-scroll-animation=fadein].active {
  animation: fadein-animation 1s 0.3s forwards;
}

[data-scroll-animation=fadeup] {
  opacity: 0;
}

[data-scroll-animation=fadeup].active {
  animation: fadeup-animation 1s 0.3s forwards;
  transform: translateY(100px);
}

[data-scroll-animation=fadeleft] {
  opacity: 0;
  transform: translateX(-100px);
}

[data-scroll-animation=fadeleft].active {
  animation: fadeleft-animation 1s 0.5s forwards;
}

@keyframes fadeup-animation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeleft-animation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadein-animation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.not-found {
  padding: 83px 3% 57px;
  background-color: #FAF7F1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-height: calc(100vh - 441px);
  height: 100vh;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .not-found {
    padding: 18px 5% 32px;
    padding-bottom: 82px;
  }
}
@media screen and (max-width: 526px) {
  .not-found {
    padding: 12px 3% 24px;
    padding-bottom: 62px;
  }
}
.not-found_block {
  width: 100%;
  padding: 68px 0 95px;
  background-color: #fff;
  text-align: center;
  max-width: 883px;
}
@media screen and (max-width: 768px) {
  .not-found_block {
    padding: 32px 0 62px;
  }
}
@media screen and (max-width: 526px) {
  .not-found_block {
    padding: 24px 0 45px;
  }
}
.not-found_block .title {
  font-size: 8.6rem;
  line-height: 1;
  font-weight: 700;
  margin-bottom: 51px;
}
@media screen and (max-width: 768px) {
  .not-found_block .title {
    font-size: 2.4rem;
    margin-bottom: 32px;
  }
}
@media screen and (max-width: 526px) {
  .not-found_block .title {
    font-size: 2rem;
    margin-bottom: 26px;
  }
}
.not-found_block .text {
  line-height: 1.6;
}

/****************************************************************
  *** base - Webサイト全体のベース・リセットしたスタイルの調整
  ****************************************************************/
* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  scroll-margin-top: 150px;
}

body {
  margin: 0;
  padding: 0;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  color: #222;
  overflow-x: hidden;
  scroll-margin-top: -150px;
}
@media screen and (max-width: 526px) {
  body {
    font-size: 1.4rem;
  }
}

p {
  line-height: 1.75;
}
@media screen and (max-width: 526px) {
  p {
    line-height: 1.6;
  }
}

.en {
  font-family: "Viga", serif;
}

.other {
  font-family: "Poppins", serif;
}

a {
  color: unset;
  text-decoration: unset;
}

ul,
li {
  list-style-type: none;
}

img {
  width: 100%;
  max-width: 100%;
  background-size: cover;
  vertical-align: bottom;
}

button {
  border: unset;
}

.wrapper {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}
@media screen and (max-width: 992px) {
  .wrapper {
    max-width: unset;
    width: 100%;
    padding: 0 5%;
  }
}
@media screen and (max-width: 768px) {
  .wrapper {
    max-width: unset;
    width: 100%;
    padding: 0 5%;
  }
}
@media screen and (max-width: 526px) {
  .wrapper {
    max-width: unset;
    width: 100%;
    padding: 0 5%;
  }
}

.child_wrapper {
  width: 92%;
  max-width: 800px;
  margin: 0 auto;
}
@media screen and (max-width: 526px) {
  .child_wrapper {
    width: 94.3%;
  }
}

.staff_wrapper {
  width: 92%;
  max-width: 700px;
  margin-left: 0;
}
@media screen and (max-width: 526px) {
  .staff_wrapper {
    width: 94.3%;
  }
}

.small_inner {
  width: 92%;
  max-width: 800px;
  margin: 0 auto;
}
@media screen and (max-width: 526px) {
  .small_inner {
    width: 94.3%;
  }
}

.swiper_inner {
  width: 100%;
  max-width: 84%;
  margin-left: 16%;
}
@media screen and (max-width: 526px) {
  .swiper_inner {
    max-width: unset;
    width: 90%;
    margin-left: 10%;
  }
}

.flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 526px) {
  .flex {
    flex-direction: column;
  }
}

a:hover {
  text-decoration: underline;
}

.contents {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row-reverse;
}

.sub_current {
  font-weight: 700;
  position: relative;
}
.sub_current::before {
  content: "";
  width: 40px;
  height: 1px;
  background-color: #E60012;
  position: absolute;
  top: 50%;
  left: 60%;
}

body.is-fixed {
  overflow-y: hidden;
}

/****************************************************************
  *** main - ページのスタイルを記述
  ****************************************************************/
/********************
 * - Common
 * - Header
 * - Footer
 * - Content
 ********************/
/****************************************************************
 *** Common
 ****************************************************************/
.pc-only {
  display: block;
}
@media screen and (max-width: 526px) {
  .pc-only {
    display: none;
  }
}

.sp-only {
  display: none;
}
@media screen and (max-width: 526px) {
  .sp-only {
    display: block;
  }
}

.clearfix {
  display: block;
  content: "";
  clear: both;
}

.b {
  font-weight: 700;
}

.circle {
  border-radius: 50%;
}

.btn {
  display: inline-block;
  position: relative;
  z-index: 1;
  border-radius: 5px;
  background-color: #222;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #fff;
  padding-top: 9px;
  padding-right: 40px;
  padding-bottom: 10px;
  padding-left: 20px;
}
.btn::before {
  position: absolute;
  top: 0;
  right: unset;
  bottom: unset;
  left: 0;
  content: "";
  z-index: -1;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: #E60012;
  transition: 0.4s;
  transform-origin: left top;
  transform: scale(0, 1);
}
@media screen and (max-width: 526px) {
  .btn {
    display: block;
    width: 100%;
    padding: 12px 0 13px;
    font-size: 3.94vw;
    text-align: center;
  }
}

.line-blue {
  position: relative;
}
.line-blue::after {
  position: absolute;
  top: unset;
  right: unset;
  bottom: -3px;
  left: 0;
  content: "";
  width: 0;
  height: 10px;
  background-color: #1192D4;
  transition: 1s;
}
@media screen and (max-width: 526px) {
  .line-blue::after {
    height: 6px;
  }
}
.line-blue.active::after {
  width: 100%;
}

.bg-yellow {
  background: linear-gradient(transparent 60%, #FFF20D 60%) no-repeat bottom left;
  background-size: 0;
  transition: 1s;
}
.bg-yellow.active {
  background-size: 100%;
}

/****************************************************************
 *** staff
 ****************************************************************/
.staff_block {
  display: flex;
  flex-wrap: wrap;
  gap: 50px 40px;
  margin: 128px auto 139px;
}
@media screen and (max-width: 992px) {
  .staff_block {
    justify-content: center;
  }
}
@media screen and (max-width: 768px) {
  .staff_block {
    gap: 34px;
    margin: 82px auto 82px;
  }
}
@media screen and (max-width: 526px) {
  .staff_block {
    gap: 24px;
    margin: 62px auto 61px;
  }
}
.staff_block .member_item_img {
  min-width: 300px;
  width: 300px;
  height: auto;
  position: relative;
  transition: 0.4s all ease-in;
}
@media screen and (max-width: 526px) {
  .staff_block .member_item_img {
    min-width: 240px;
    width: 240px;
    height: auto;
    aspect-ratio: 1/1.33;
  }
}
.staff_block .member_item_img img {
  height: 100%;
  margin-bottom: 0;
  vertical-align: bottom;
  object-fit: cover;
  transition: 0.2s all ease-in;
}
.staff_block .member_item_img .text {
  font-weight: 700;
  line-height: 1;
  margin-top: 32px;
  font-size: 1.6rem;
}
@media screen and (max-width: 526px) {
  .staff_block .member_item_img .text {
    font-size: 1.4rem;
    margin-top: 20px;
  }
}
.staff_block .member_item_img .member_name {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  margin-top: 16px;
}
@media screen and (max-width: 526px) {
  .staff_block .member_item_img .member_name {
    font-size: 2rem;
    margin-top: 8px;
  }
}
.staff_block .member_item_img .member_image {
  width: 100%;
  height: 379px;
  overflow: hidden;
  transition: 0.2s all ease-in;
  border-radius: 30px;
}
@media screen and (max-width: 526px) {
  .staff_block .member_item_img .member_image {
    height: 100%;
  }
}
.staff_block .member_item_img:hover .member_image img, .staff_block .member_item_img:focus .member_image img {
  transform: scale(1.2);
}
.staff_block .member_block_text {
  position: absolute;
  bottom: 70px;
  left: 0;
  z-index: 222;
}
@media screen and (max-width: 526px) {
  .staff_block .member_block_text {
    bottom: 50px;
  }
}
.staff_block .member_block_text span {
  font-size: 2rem;
  line-height: 1;
  font-weight: 700;
  color: #222;
  padding: 5px 7px 6px;
  background-color: #AFA86F;
  display: block;
  margin-bottom: 4px;
  width: fit-content;
}
@media screen and (max-width: 526px) {
  .staff_block .member_block_text span {
    font-size: 1.6rem;
  }
}

/****************************************************************
 *** staff-detail
 ****************************************************************/
.child_detail {
  margin-top: 0;
  width: 100%;
  height: auto;
  background-color: #FAF7F1;
  padding-top: 71px;
  padding-bottom: 43px;
}
@media screen and (max-width: 526px) {
  .child_detail {
    padding-top: 25px;
    padding-bottom: 23px;
  }
}
.child_detail .detail_block {
  display: flex;
}
@media screen and (max-width: 768px) {
  .child_detail .detail_block {
    flex-direction: column-reverse;
    gap: 32px;
  }
}
@media screen and (max-width: 768px) {
  .child_detail .detail_block {
    gap: 24px;
  }
}
.child_detail .detail_image {
  flex: 0 0 286px;
  width: 100%;
  max-width: 286px;
  min-width: 286px;
  height: auto;
  aspect-ratio: 1/1.28;
  border-radius: 0 !important;
  margin-top: -20px;
}
.child_detail .detail_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 !important;
}
@media screen and (max-width: 768px) {
  .child_detail .detail_image {
    max-width: 342px;
    aspect-ratio: 1/1;
  }
}
@media screen and (max-width: 526px) {
  .child_detail .detail_image {
    max-width: 236px;
  }
}
.child_detail .detail_text {
  flex: 1 1 auto;
  padding-right: 8.3%;
}
.child_detail .detail_text .detail_title {
  font-size: 3.6rem;
  line-height: 1.6;
  font-weight: 700;
  white-space: nowrap;
  width: fit-content;
}
.child_detail .detail_text .detail_title .span_title {
  background-color: #fff;
  font-size: 3.6rem;
  margin-top: 0;
  padding: 4px 11px;
  line-height: 1;
  white-space: nowrap;
}
@media screen and (max-width: 526px) {
  .child_detail .detail_text .detail_title .span_title {
    font-size: 2.4rem;
  }
}
.child_detail .detail_text .detail_title .span_child {
  display: block;
  font-size: 2.4rem;
  line-height: 1;
  margin-top: 9px;
  padding: 4px 11px;
  width: fit-content;
  background-color: #fff;
}
@media screen and (max-width: 526px) {
  .child_detail .detail_text .detail_title .span_child {
    font-size: 2rem;
    margin-top: 20px;
  }
}
.child_detail .detail_text .sub_text {
  margin-top: 28px;
}
@media screen and (max-width: 526px) {
  .child_detail .detail_text .sub_text {
    margin-top: 15px;
  }
}
.child_detail .detail_text .sub_text .position {
  font-size: 1.4rem;
  line-height: 1;
  color: #AFA86F;
  margin-bottom: 12px;
}
.child_detail .detail_text .sub_text .detail_name {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 526px) {
  .child_detail .detail_text .sub_text .detail_name {
    font-size: 2rem;
  }
}
.child_detail .detail_text .sub_text .detail_name span {
  font-size: 1.6rem;
  line-height: 1;
  font-weight: 400;
  margin-left: 20px;
}
@media screen and (max-width: 526px) {
  .child_detail .detail_text .sub_text .detail_name span {
    font-size: 1.4rem;
  }
}
.child_detail .detail_text .sub_text .text {
  margin-top: 12px;
  line-height: 1.8;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .child_detail .detail_text .sub_text .text {
    width: 100%;
  }
}

.detail {
  margin-top: 80px;
  margin-bottom: 139px;
}
.detail p {
  line-height: 1.8;
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 4px;
}
@media screen and (max-width: 526px) {
  .detail p {
    margin-bottom: 26px;
    font-size: 1.4rem;
  }
}
.detail_main {
  padding-right: 8%;
}
@media screen and (max-width: 768px) {
  .detail {
    margin-top: 82px;
    margin-bottom: 91px;
  }
}
@media screen and (max-width: 526px) {
  .detail {
    margin-top: 44px;
    margin-bottom: 51px;
  }
}
.detail .wp-block-heading {
  font-size: 2.4rem;
  line-height: 1;
  font-weight: 700;
  margin-bottom: 51px;
  scroll-margin-top: 140px;
  padding-top: 19px;
  margin-top: -1px;
  position: relative;
}
.detail .wp-block-heading::before {
  content: "";
  width: calc((100vw - 700px) / 2);
  height: 1px;
  background-color: #000;
  position: absolute;
  top: 75%;
  transform: translateY(-50%);
  right: 102%;
}
@media screen and (max-width: 768px) {
  .detail .wp-block-heading {
    scroll-margin-top: 100px;
  }
}
@media screen and (max-width: 526px) {
  .detail .wp-block-heading {
    font-size: 2rem;
    scroll-margin-top: 90px;
    margin-bottom: 24px;
  }
}
.detail .wp-block-list {
  margin-top: 24px;
  padding-left: 0px;
  list-style-position: outside;
  margin-bottom: -38px;
}
.detail .wp-block-list li {
  line-height: 1.6;
  font-size: 1.6rem;
  font-weight: 700;
  list-style-position: inside;
  margin-bottom: 31px;
}
.detail .wp-block-list li .list-text {
  line-height: 1.8;
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: -1px;
  margin-top: 6px;
  font-weight: 400;
}
.detail .wp-block-list li:last-child {
  margin-top: -25px;
  margin-bottom: 41px;
}
.detail .list-text {
  line-height: 1.8;
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: -1px !important;
  margin-top: 6px !important;
}
.detail ol li {
  list-style: decimal;
  font-weight: 700;
  font-size: 1.6rem;
  margin-left: 0;
}
.detail ol li .dl_title {
  font-size: 1.6rem;
  font-weight: 700;
}
.detail ol li .dl_text {
  font-weight: 400;
  margin-left: -1.5em;
}
@media screen and (max-width: 526px) {
  .detail ol li .dl_text {
    font-size: 1.4rem;
  }
}
.detail ul li {
  margin-left: 1em;
  list-style: disc;
  margin-top: 30px;
  margin-bottom: 0;
}
.detail_card {
  margin-top: 107px;
}
@media screen and (max-width: 526px) {
  .detail_card {
    margin-top: 42px;
  }
}
.detail_card .dl_title {
  text-align: center;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.8;
  color: #222;
}
.detail_card .staff_block {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin: 50px auto 0;
}
@media screen and (max-width: 768px) {
  .detail_card .staff_block .member_block_text {
    bottom: 72px;
  }
}

.content_block {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media screen and (max-width: 1080px) {
  .content_block {
    gap: 34px;
  }
}
@media screen and (max-width: 768px) {
  .content_block {
    flex-direction: column-reverse;
  }
}

aside {
  position: sticky;
  top: 160px;
  margin-top: 20px;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  aside {
    position: static;
    top: 0;
  }
}
aside .sub_title {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 13px;
}
@media screen and (max-width: 768px) {
  aside .sub_title {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 526px) {
  aside .sub_title {
    font-size: 2rem;
  }
}
aside .sub_nav li {
  list-style: disc;
  margin-left: 1em;
  font-size: 1.4rem;
  font-weight: 400;
  margin-top: 0;
  line-height: 1.5;
  margin-bottom: 14px;
  color: #999;
  text-wrap: nowrap;
}
@media screen and (max-width: 768px) {
  aside .sub_nav li {
    font-size: 2rem;
  }
}
@media screen and (max-width: 526px) {
  aside .sub_nav li {
    font-size: 1.6rem;
    margin-bottom: 8px;
    margin-left: 2em;
  }
}
aside .sub_nav li.active {
  font-weight: 700;
  color: #222;
}

/****************************************************************
  *** main - ページのスタイルを記述
  ****************************************************************/
/********************
 * - Common
 * - Header
 * - Footer
 * - Content
 ********************/
/****************************************************************
 *** Common
 ****************************************************************/
.pc-only {
  display: block;
}
@media screen and (max-width: 526px) {
  .pc-only {
    display: none;
  }
}

.sp-only {
  display: none;
}
@media screen and (max-width: 526px) {
  .sp-only {
    display: block;
  }
}

.clearfix {
  display: block;
  content: "";
  clear: both;
}

.b {
  font-weight: 700;
}

.circle {
  border-radius: 50%;
}

.btn {
  display: inline-block;
  position: relative;
  z-index: 1;
  border-radius: 5px;
  background-color: #222;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #fff;
  padding-top: 9px;
  padding-right: 40px;
  padding-bottom: 10px;
  padding-left: 20px;
}
.btn::before {
  position: absolute;
  top: 0;
  right: unset;
  bottom: unset;
  left: 0;
  content: "";
  z-index: -1;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: #E60012;
  transition: 0.4s;
  transform-origin: left top;
  transform: scale(0, 1);
}
@media screen and (max-width: 526px) {
  .btn {
    display: block;
    width: 100%;
    padding: 12px 0 13px;
    font-size: 3.94vw;
    text-align: center;
  }
}

.line-blue {
  position: relative;
}
.line-blue::after {
  position: absolute;
  top: unset;
  right: unset;
  bottom: -3px;
  left: 0;
  content: "";
  width: 0;
  height: 10px;
  background-color: #1192D4;
  transition: 1s;
}
@media screen and (max-width: 526px) {
  .line-blue::after {
    height: 6px;
  }
}
.line-blue.active::after {
  width: 100%;
}

.bg-yellow {
  background: linear-gradient(transparent 60%, #FFF20D 60%) no-repeat bottom left;
  background-size: 0;
  transition: 1s;
}
.bg-yellow.active {
  background-size: 100%;
}

/****************************************************************
 *** blog
 ****************************************************************/
.blog {
  margin-bottom: 136px;
}
.blog.blog_detail {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .blog {
    margin-bottom: 82px;
  }
}
@media screen and (max-width: 526px) {
  .blog {
    margin-bottom: 62px;
  }
}
.blog_card_list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 23px 52px;
  margin-top: 130px;
  margin-left: 0px;
}
@media screen and (max-width: 1080px) {
  .blog_card_list {
    justify-content: center;
    gap: 23px 24px;
  }
}
@media screen and (max-width: 768px) {
  .blog_card_list {
    margin-top: 82px;
  }
}
@media screen and (max-width: 526px) {
  .blog_card_list {
    margin-top: 62px;
  }
}
.blog .post-categories {
  position: relative;
  padding-left: 4px;
  font-size: 1.4rem;
}
.blog_card {
  display: block;
  width: 452px;
  height: max(100%, 180px);
  display: flex;
  transition: 0.2s all ease-in;
  overflow: hidden;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .blog_card {
    height: min(100%, 180px);
  }
}
@media screen and (max-width: 526px) {
  .blog_card {
    height: min(100%, 120px);
  }
}
.blog_card .blog_image {
  width: 156px;
  min-width: 156px;
  height: 100%;
  overflow: hidden;
  border-radius: 10px 0 0px 10px;
}
.blog_card:hover, .blog_card:focus {
  box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.2);
}
.blog_card:hover .blog_image, .blog_card:focus .blog_image {
  width: 156px;
  min-width: 156px;
  height: 100%;
  overflow: hidden;
}
.blog_card:hover .blog_image img, .blog_card:focus .blog_image img {
  transform: scale(1.2);
}
.blog_card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s all ease-in;
}
.blog_card_text {
  padding: 16px 25px 23px 21px;
  background-color: #FAF7F1;
  display: flex;
  flex-direction: column;
  width: 100%;
  border-radius: 0px 10px 10px 0px;
}
.blog_card_text .cat-date {
  display: flex;
  align-items: center;
}
.blog_card_text .cat-icon {
  width: 14px;
  height: 14px;
}
.blog_card_text .cat-icon img {
  width: 14px;
  height: 14px;
}
.blog_card_text .copy {
  font-size: 1.4rem;
  line-height: 1;
  padding-left: 4px;
}
@media screen and (max-width: 526px) {
  .blog_card_text .copy {
    font-size: 1.2rem;
  }
}
.blog_card_text .title {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.6;
  margin-top: 22px;
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .blog_card_text .title {
    font-size: 1.6rem;
    margin-top: 14px;
  }
}
@media screen and (max-width: 768px) {
  .blog_card_text .title {
    font-size: 1.4rem;
  }
}
.blog_card_text .date {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1;
  margin-top: auto;
}
.blog .wp-pagenavi {
  display: flex;
  justify-content: center;
  margin-top: 95px;
  gap: 35px;
}
@media screen and (max-width: 768px) {
  .blog .wp-pagenavi {
    margin-top: 62px;
    gap: 24px;
  }
}
@media screen and (max-width: 526px) {
  .blog .wp-pagenavi {
    margin-top: 51px;
    gap: 18px;
  }
}
.blog .wp-pagenavi a, .blog .wp-pagenavi span {
  padding: 20px 23px;
  border-radius: 50%;
  border: 1px solid #222;
  text-align: center;
  font-size: 1.4rem;
  line-height: 1;
}
@media screen and (max-width: 526px) {
  .blog .wp-pagenavi a, .blog .wp-pagenavi span {
    font-size: 1.2rem;
    padding: 16px 18px;
  }
}
.blog .current {
  background-color: #222;
  color: #fff;
}

/****************************************************************
 *** blog-detail
 ****************************************************************/
.blog-detail {
  background-color: #FAF7F1;
  padding: 34px 0 0;
}
@media screen and (max-width: 526px) {
  .blog-detail {
    padding: 24px 3%;
  }
}

.blog_content {
  padding: 19px 40px 23px;
  border-radius: 10px;
  background-color: #fff;
  margin-bottom: 139px;
}
@media screen and (max-width: 768px) {
  .blog_content {
    margin-bottom: 51px;
  }
}
@media screen and (max-width: 526px) {
  .blog_content {
    padding: 21px 30px 13px;
    margin-bottom: 42px;
  }
}
.blog_content .detail_top li {
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  vertical-align: baseline;
}
@media screen and (max-width: 526px) {
  .blog_content .detail_top li {
    margin-bottom: 0px;
    gap: 2px;
  }
}
.blog_content .detail_top li .copy {
  margin-left: 3px;
  position: relative;
}
.blog_content .detail_top li .copy::before {
  content: "";
  width: 14px;
  height: 14px;
  background: url(/images/categorry.svg) no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -16px;
}
.blog_content .detail_top li .date {
  margin-top: 0;
  line-height: 1;
  margin-left: 19px;
}
.blog_content .title {
  font-size: 3.2rem;
  line-height: 1;
  font-weight: 700;
  margin-bottom: 41px;
  margin-top: 8px;
}
@media screen and (max-width: 768px) {
  .blog_content .title {
    font-size: 2.8rem;
    margin-bottom: 31px;
    line-height: 1.5;
  }
}
@media screen and (max-width: 526px) {
  .blog_content .title {
    font-size: 2.4rem;
    margin-bottom: 21px;
  }
}
.blog_content img {
  width: 100%;
  max-width: 720px;
  height: 411px;
  margin-bottom: 0;
  object-fit: cover;
}
@media screen and (max-width: 526px) {
  .blog_content img {
    height: 311px;
  }
}
.blog_content p {
  margin-top: 50px;
  line-height: 1.8;
}
@media screen and (max-width: 526px) {
  .blog_content p {
    margin-top: 24px;
  }
}
.blog_content p:first-of-type {
  margin-top: 45px;
}
@media screen and (max-width: 526px) {
  .blog_content p:first-of-type {
    margin-top: 20px;
  }
}
.blog_content .wp-block-heading {
  font-size: 2.4rem;
  line-height: 1;
  font-weight: 700;
  margin-top: 23px;
}
@media screen and (max-width: 526px) {
  .blog_content .wp-block-heading {
    font-size: 2rem;
    margin-top: 14px;
  }
}
.blog_content .wp-block-list {
  margin-top: 50px;
}
@media screen and (max-width: 526px) {
  .blog_content .wp-block-list {
    margin-top: 24px;
  }
}
.blog_content .wp-block-list li {
  list-style: none;
  list-style-position: inside;
  list-style: 1px;
  line-height: 1.8;
  position: relative;
  margin-left: 1.5em;
}
.blog_content .wp-block-list li::before {
  content: "";
  width: 4px;
  height: 4px;
  background-color: #333;
  border-radius: 50%;
  position: absolute;
  top: 55%;
  transform: translateX(-50%);
  left: -11px;
}

.pagelink {
  width: 100vw;
  margin-left: 0;
  height: 96px;
  background-color: #F0F0F0;
  padding: 20px 0;
}
.pagelink_list {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  position: relative;
}
@media screen and (max-width: 1080px) {
  .pagelink_list {
    gap: 24px;
  }
}
.pagelink_list li {
  border: none;
  display: flex;
  flex-direction: column;
  position: relative;
  line-height: 1.4;
  gap: 6px;
  font-size: 1.4rem;
  padding-top: 0;
}
@media screen and (max-width: 1080px) {
  .pagelink_list li {
    font-size: 1.2rem;
  }
}
.pagelink_list li:first-child {
  width: 50%;
  padding-right: 4%;
}
.pagelink_list li:last-child {
  padding-left: 4%;
}
@media screen and (max-width: 768px) {
  .pagelink_list li:last-child {
    padding-right: 4%;
  }
}

.list_inner {
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 6.4%;
  position: relative;
}
.list_inner::before {
  content: "";
  width: 1px;
  height: 100%;
  background-color: #333;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.arrow-right,
.arrow-left {
  position: relative;
  background-color: aquamarine;
  width: 40px;
  height: 40px;
}
.arrow-right a > span,
.arrow-left a > span {
  font-size: 1.2rem;
}
.arrow-right::before,
.arrow-left::before {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #4B4B4B;
  position: absolute;
  top: 110%;
  left: -43px;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .arrow-right::before,
  .arrow-left::before {
    left: -32px;
  }
}
.arrow-right::after,
.arrow-left::after {
  content: "";
  width: 7px;
  height: 7px;
  border-top: 2px solid #4B4B4B;
  border-right: 2px solid #4B4B4B;
  position: absolute;
  top: 111%;
  left: -35px;
  transform: translateY(-50%) rotate(-135deg);
}
@media screen and (max-width: 768px) {
  .arrow-right::after,
  .arrow-left::after {
    left: -23px;
  }
}

.arrow-right::before {
  right: calc(100% - 227px);
  left: unset;
}
@media screen and (max-width: 1080px) {
  .arrow-right::before {
    right: calc(100% - 199px);
  }
}
@media screen and (max-width: 768px) {
  .arrow-right::before {
    right: calc(100% - 188px);
  }
}
@media screen and (max-width: 526px) {
  .arrow-right::before {
    right: calc(100% - 159px);
  }
}
.arrow-right::after {
  right: calc(100% - 217px);
  left: unset;
  transform: translateY(-50%) rotate(45deg);
}
@media screen and (max-width: 1080px) {
  .arrow-right::after {
    right: calc(100% - 190px);
  }
}
@media screen and (max-width: 768px) {
  .arrow-right::after {
    right: calc(100% - 179px);
  }
}
@media screen and (max-width: 526px) {
  .arrow-right::after {
    right: calc(100% - 150px);
  }
}

.post-date {
  font-size: 1.2rem;
}

.cat-icon {
  width: 14px;
  height: 14px;
}
.cat-icon img {
  width: 100%;
  height: 100%;
}

/****************************************************************
  *** main - ページのスタイルを記述
  ****************************************************************/
/********************
 * - Common
 * - Header
 * - Footer
 * - Content
 ********************/
/****************************************************************
 *** Common
 ****************************************************************/
.pc-only {
  display: block;
}
@media screen and (max-width: 526px) {
  .pc-only {
    display: none;
  }
}

.sp-only {
  display: none;
}
@media screen and (max-width: 526px) {
  .sp-only {
    display: block;
  }
}

.clearfix {
  display: block;
  content: "";
  clear: both;
}

.b {
  font-weight: 700;
}

.circle {
  border-radius: 50%;
}

.btn {
  display: inline-block;
  position: relative;
  z-index: 1;
  border-radius: 5px;
  background-color: #222;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #fff;
  padding-top: 9px;
  padding-right: 40px;
  padding-bottom: 10px;
  padding-left: 20px;
}
.btn::before {
  position: absolute;
  top: 0;
  right: unset;
  bottom: unset;
  left: 0;
  content: "";
  z-index: -1;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: #E60012;
  transition: 0.4s;
  transform-origin: left top;
  transform: scale(0, 1);
}
@media screen and (max-width: 526px) {
  .btn {
    display: block;
    width: 100%;
    padding: 12px 0 13px;
    font-size: 3.94vw;
    text-align: center;
  }
}

.line-blue {
  position: relative;
}
.line-blue::after {
  position: absolute;
  top: unset;
  right: unset;
  bottom: -3px;
  left: 0;
  content: "";
  width: 0;
  height: 10px;
  background-color: #1192D4;
  transition: 1s;
}
@media screen and (max-width: 526px) {
  .line-blue::after {
    height: 6px;
  }
}
.line-blue.active::after {
  width: 100%;
}

.bg-yellow {
  background: linear-gradient(transparent 60%, #FFF20D 60%) no-repeat bottom left;
  background-size: 0;
  transition: 1s;
}
.bg-yellow.active {
  background-size: 100%;
}

/****************************************************************
 *** mv
 ****************************************************************/
.about {
  margin-top: 66px;
  /****************************************************************
   *** message
   ****************************************************************/
}
@media screen and (max-width: 992px) {
  .about {
    margin-top: 42px;
  }
}
@media screen and (max-width: 526px) {
  .about {
    margin-top: 32px;
  }
}
.about .child_title {
  margin-bottom: 86px;
}
@media screen and (max-width: 992px) {
  .about .child_title {
    margin-bottom: 42px;
  }
}
@media screen and (max-width: 526px) {
  .about .child_title {
    margin-bottom: 32px;
  }
}
.about_card {
  width: 100%;
  padding: 1.6em 5em 2em;
  background-color: #FAF7F1;
  margin-bottom: 40px;
  border-radius: 0.625em;
}
@media screen and (max-width: 768px) {
  .about_card {
    padding: 1.25em 2.125em;
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 526px) {
  .about_card {
    margin-bottom: 18px;
  }
}
.about_card:last-of-type {
  margin-bottom: 125px;
}
@media screen and (max-width: 992px) {
  .about_card:last-of-type {
    margin-bottom: 82px;
  }
}
@media screen and (max-width: 526px) {
  .about_card:last-of-type {
    margin-bottom: 64px;
  }
}
.about_card_title {
  font-weight: 700;
  font-size: 2rem;
  line-height: 1;
  margin-left: 0;
}
@media screen and (max-width: 992px) {
  .about_card_title {
    margin-top: 12px;
    line-height: 1.8;
  }
}
@media screen and (max-width: 526px) {
  .about_card_title {
    font-size: 1.6rem;
    margin-top: 2px;
  }
}
.about_card_title span {
  font-size: 1.8rem;
  line-height: 1;
  display: inline-block;
  padding: 0.8em 0.98em;
  border-radius: 50%;
  border: 1px solid #222;
  margin-right: 21px;
}
@media screen and (max-width: 526px) {
  .about_card_title span {
    font-size: 1.5rem;
  }
}
.about_card_text {
  line-height: 1.5;
  margin-top: 20px;
}
.about .about_message {
  margin-top: 119px;
}
@media screen and (max-width: 768px) {
  .about .about_message {
    margin-top: 82px;
  }
}
@media screen and (max-width: 526px) {
  .about .about_message {
    margin-top: 56px;
  }
}
.about .message_block {
  height: 649px;
  display: flex;
  position: relative;
  padding-top: 20px;
}
@media screen and (max-width: 526px) {
  .about .message_block {
    height: fit-content;
  }
}
.about .message_image {
  width: 484px;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .about .message_image {
    width: 100%;
  }
}
@media screen and (max-width: 526px) {
  .about .message_image {
    width: 100%;
    height: 442px;
  }
}
.about .message_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about .message_text_block {
  width: min(100%, 479px);
  padding-left: 16px;
  margin-top: 8px;
}
@media screen and (max-width: 768px) {
  .about .message_text_block {
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 222;
    padding-right: 10px;
    background-image: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.6) 80%);
  }
}
@media screen and (max-width: 526px) {
  .about .message_text_block {
    bottom: -150px;
  }
}
.about .message_title {
  margin-top: 16px;
  font-size: 3.2rem;
  line-height: 1.4;
  font-weight: 700;
  margin-left: -84px;
  text-wrap: nowrap;
}
@media screen and (max-width: 768px) {
  .about .message_title {
    margin-left: 0;
    font-size: 2.4rem;
    text-align: right;
  }
}
@media screen and (max-width: 526px) {
  .about .message_title {
    font-size: 2rem;
  }
}
.about .message_text {
  line-height: 2;
  margin-top: 32px;
}
.about .message_text:first-of-type {
  margin-top: 48px;
}
.about .message_text:nth-of-type(3) {
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  .about .message_text {
    line-height: 1.6;
    margin-bottom: 21px;
  }
}
@media screen and (max-width: 526px) {
  .about .message_text {
    margin-bottom: 11px;
  }
}
.about .message_name {
  width: 185px;
  height: auto;
  margin-top: 21px;
}
.about .message_name img {
  width: 100%;
  height: 100%;
  vertical-align: bottom;
}

/****************************************************************
 *** introduct
 ****************************************************************/
.about_profile {
  margin-top: 191px;
  text-align: left !important;
  margin-bottom: 20px;
}
@media screen and (max-width: 526px) {
  .about_profile {
    margin-top: 182px;
  }
}
.about_profile .child_title {
  text-align: left;
  margin-bottom: 0;
}
.about_profile .text {
  margin-top: 42px;
  line-height: 1.5;
}

.profile_card {
  display: flex;
  align-items: center;
  padding: 56px 0 48px;
  border-bottom: 1px solid #AFA86F;
}
@media screen and (max-width: 992px) {
  .profile_card {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 32px;
  }
}
@media screen and (max-width: 768px) {
  .profile_card {
    gap: 24px;
    padding: 32px 0;
  }
}
@media screen and (max-width: 526px) {
  .profile_card {
    gap: 18px;
    padding: 24px 0;
  }
}
.profile_card:last-of-type {
  border: none;
  margin-bottom: 94px;
}
@media screen and (max-width: 768px) {
  .profile_card:last-of-type {
    margin-bottom: 124px;
  }
}
@media screen and (max-width: 526px) {
  .profile_card:last-of-type {
    margin-bottom: 83px;
  }
}
.profile_card img {
  width: 457px;
  height: 260px;
  margin-bottom: 0;
}
.profile_card .profile_text {
  margin-left: 47px;
  padding-right: 42px;
}
@media screen and (max-width: 992px) {
  .profile_card .profile_text {
    margin-left: 0;
    padding-right: 0;
  }
}
.profile_card .profile_text .cl_title {
  font-size: 3.2rem;
  line-height: 1;
  color: #AFA86F;
  margin-top: 16px;
}
@media screen and (max-width: 992px) {
  .profile_card .profile_text .cl_title {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 526px) {
  .profile_card .profile_text .cl_title {
    font-size: 2.4rem;
  }
}
.profile_card .profile_text .title {
  font-size: 2.4rem;
  line-height: 1.5;
  font-weight: 700;
  margin-top: 40px;
}
@media screen and (max-width: 992px) {
  .profile_card .profile_text .title {
    font-size: 2rem;
    margin-top: 20px;
  }
}
@media screen and (max-width: 526px) {
  .profile_card .profile_text .title {
    font-size: 1.8rem;
    margin-top: 10px;
  }
}
.profile_card .profile_text .text {
  line-height: 1.5;
  margin-top: 40px;
}
@media screen and (max-width: 992px) {
  .profile_card .profile_text .text {
    margin-top: 20px;
    width: 70%;
  }
}
@media screen and (max-width: 768px) {
  .profile_card .profile_text .text {
    width: 100%;
  }
}
@media screen and (max-width: 526px) {
  .profile_card .profile_text .text {
    margin-top: 10px;
  }
}

/****************************************************************
 *** company
 ****************************************************************/
.about_company {
  text-align: left;
}
.about_company .child_title {
  text-align: left !important;
}
.about_company .company_list {
  margin-top: 63px;
  margin-bottom: 133px;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .about_company .company_list {
    margin-top: 82px;
    margin-bottom: 91px;
  }
}
@media screen and (max-width: 526px) {
  .about_company .company_list {
    margin-top: 52px;
    margin-bottom: 61px;
  }
}
.about_company .company_list dt {
  flex: 0 0 23.5%;
  font-weight: 700;
  line-height: 1;
  padding: 36px 0 36px;
  border-bottom: 1px dashed #222;
  white-space: nowrap;
}
.about_company .company_list dt:first-of-type {
  padding-top: 26px;
}
@media screen and (max-width: 768px) {
  .about_company .company_list dt {
    flex: 0 0 34.5%;
  }
}
@media screen and (max-width: 526px) {
  .about_company .company_list dt {
    padding: 18px 0;
  }
}
.about_company .company_list dd {
  flex: 1 1 76.5%;
  font-weight: 400;
  line-height: 1.5;
  padding: 36px 0 31px;
  border-bottom: 1px dashed #222;
}
.about_company .company_list dd:first-of-type {
  padding-top: 26px;
}
@media screen and (max-width: 768px) {
  .about_company .company_list dd {
    flex: 1 1 65.5%;
  }
}
@media screen and (max-width: 526px) {
  .about_company .company_list dd {
    padding: 18px 0;
  }
}
.about_company .company_list dd ul li {
  list-style: disc;
  list-style-position: inside;
  line-height: 1.5;
}

/****************************************************************
  *** main - ページのスタイルを記述
  ****************************************************************/
/********************
 * - Common
 * - Header
 * - Footer
 * - Content
 ********************/
/****************************************************************
 *** Common
 ****************************************************************/
.pc-only {
  display: block;
}
@media screen and (max-width: 526px) {
  .pc-only {
    display: none;
  }
}

.sp-only {
  display: none;
}
@media screen and (max-width: 526px) {
  .sp-only {
    display: block;
  }
}

.clearfix {
  display: block;
  content: "";
  clear: both;
}

.b {
  font-weight: 700;
}

.circle {
  border-radius: 50%;
}

.btn {
  display: inline-block;
  position: relative;
  z-index: 1;
  border-radius: 5px;
  background-color: #222;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #fff;
  padding-top: 9px;
  padding-right: 40px;
  padding-bottom: 10px;
  padding-left: 20px;
}
.btn::before {
  position: absolute;
  top: 0;
  right: unset;
  bottom: unset;
  left: 0;
  content: "";
  z-index: -1;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: #E60012;
  transition: 0.4s;
  transform-origin: left top;
  transform: scale(0, 1);
}
@media screen and (max-width: 526px) {
  .btn {
    display: block;
    width: 100%;
    padding: 12px 0 13px;
    font-size: 3.94vw;
    text-align: center;
  }
}

.line-blue {
  position: relative;
}
.line-blue::after {
  position: absolute;
  top: unset;
  right: unset;
  bottom: -3px;
  left: 0;
  content: "";
  width: 0;
  height: 10px;
  background-color: #1192D4;
  transition: 1s;
}
@media screen and (max-width: 526px) {
  .line-blue::after {
    height: 6px;
  }
}
.line-blue.active::after {
  width: 100%;
}

.bg-yellow {
  background: linear-gradient(transparent 60%, #FFF20D 60%) no-repeat bottom left;
  background-size: 0;
  transition: 1s;
}
.bg-yellow.active {
  background-size: 100%;
}

/****************************************************************
 *** mv
 ****************************************************************/
.benefit {
  margin-top: 142px;
}
@media screen and (max-width: 768px) {
  .benefit {
    margin-top: 82px;
  }
}
@media screen and (max-width: 526px) {
  .benefit {
    margin-top: 52px;
  }
}
.benefit .bl_title {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .benefit .bl_title {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 526px) {
  .benefit .bl_title {
    font-size: 2rem;
  }
}
.benefit .bene_list {
  margin-top: 87px;
  margin-bottom: 147px;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .benefit .bene_list {
    margin-top: 82px;
    margin-bottom: 82px;
  }
}
@media screen and (max-width: 526px) {
  .benefit .bene_list {
    margin-top: 52px;
    margin-bottom: 53px;
  }
}
.benefit .bene_list dt {
  width: 24%;
  font-weight: 700;
  padding: 32px 0 28px;
  border-bottom: 1px dashed #222;
  line-height: 1;
  white-space: nowrap;
}
.benefit .bene_list dt:first-child {
  padding: 24px 0 24px;
}
@media screen and (max-width: 992px) {
  .benefit .bene_list dt:first-child {
    padding: 24px;
  }
}
@media screen and (max-width: 526px) {
  .benefit .bene_list dt:first-child {
    padding: 18px 18px 18px 0;
  }
}
.benefit .bene_list dt:last-child {
  padding: 49px 0 37px;
}
@media screen and (max-width: 768px) {
  .benefit .bene_list dt {
    padding: 24px;
    line-height: 1.5;
  }
}
@media screen and (max-width: 526px) {
  .benefit .bene_list dt {
    padding: 18px 18px 18px 0;
  }
}
.benefit .bene_list dd {
  width: 76%;
  padding: 32px 0 28px;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1;
  border-bottom: 1px dashed #222;
}
@media screen and (max-width: 526px) {
  .benefit .bene_list dd {
    font-size: 1.4rem;
    line-height: 1.5;
  }
}
.benefit .bene_list dd:first-child {
  padding: 24px 0 24px;
}
.benefit .bene_list dd:last-child {
  padding: 49px 0 37px;
}
@media screen and (max-width: 768px) {
  .benefit .bene_list dd {
    padding: 24px;
  }
}
@media screen and (max-width: 526px) {
  .benefit .bene_list dd {
    padding: 18px;
  }
}
.benefit .bene_list dd ul {
  margin-bottom: 1px;
}
.benefit .bene_list dd ul li {
  list-style: none;
  line-height: 1.5;
  margin-left: 0.8em;
  position: relative;
}
.benefit .bene_list dd ul li::before {
  content: "";
  width: 4px;
  height: 4px;
  background-color: #000;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -9px;
}
.benefit_block {
  margin-top: 22px;
  margin-bottom: 36px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 526px) {
  .benefit_block {
    margin-top: 20px;
    margin-bottom: 28px;
  }
}
.benefit_item {
  width: 47.7%;
  height: auto;
}
.benefit_item .deta {
  font-weight: 700;
  color: #988C2C;
  line-height: 1;
}
.benefit_item .name_title {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  margin-top: 8px;
}
@media screen and (max-width: 526px) {
  .benefit_item .name_title {
    font-size: 2rem;
  }
}
.benefit_item .name_text {
  font-size: 1.6rem;
  line-height: 1.8;
  margin-top: 25px;
}
@media screen and (max-width: 526px) {
  .benefit_item .name_text {
    font-size: 1.4rem;
  }
}
.benefit_image {
  width: 100%;
  height: 560px;
  margin-bottom: 139px;
}
@media screen and (max-width: 768px) {
  .benefit_image {
    margin-bottom: 83px;
    height: 424px;
  }
}
@media screen and (max-width: 526px) {
  .benefit_image {
    height: 323px;
    margin-bottom: 62px;
  }
}
.benefit_image img {
  width: 100%;
  height: 100%;
  margin-bottom: 0;
  object-fit: cover;
}

/****************************************************************
  *** main - ページのスタイルを記述
  ****************************************************************/
/********************
 * - Common
 * - Header
 * - Footer
 * - Content
 ********************/
/****************************************************************
 *** Common
 ****************************************************************/
.pc-only {
  display: block;
}
@media screen and (max-width: 526px) {
  .pc-only {
    display: none;
  }
}

.sp-only {
  display: none;
}
@media screen and (max-width: 526px) {
  .sp-only {
    display: block;
  }
}

.clearfix {
  display: block;
  content: "";
  clear: both;
}

.b {
  font-weight: 700;
}

.circle {
  border-radius: 50%;
}

.btn {
  display: inline-block;
  position: relative;
  z-index: 1;
  border-radius: 5px;
  background-color: #222;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #fff;
  padding-top: 9px;
  padding-right: 40px;
  padding-bottom: 10px;
  padding-left: 20px;
}
.btn::before {
  position: absolute;
  top: 0;
  right: unset;
  bottom: unset;
  left: 0;
  content: "";
  z-index: -1;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: #E60012;
  transition: 0.4s;
  transform-origin: left top;
  transform: scale(0, 1);
}
@media screen and (max-width: 526px) {
  .btn {
    display: block;
    width: 100%;
    padding: 12px 0 13px;
    font-size: 3.94vw;
    text-align: center;
  }
}

.line-blue {
  position: relative;
}
.line-blue::after {
  position: absolute;
  top: unset;
  right: unset;
  bottom: -3px;
  left: 0;
  content: "";
  width: 0;
  height: 10px;
  background-color: #1192D4;
  transition: 1s;
}
@media screen and (max-width: 526px) {
  .line-blue::after {
    height: 6px;
  }
}
.line-blue.active::after {
  width: 100%;
}

.bg-yellow {
  background: linear-gradient(transparent 60%, #FFF20D 60%) no-repeat bottom left;
  background-size: 0;
  transition: 1s;
}
.bg-yellow.active {
  background-size: 100%;
}

/****************************************************************
 *** career
 ****************************************************************/
.career {
  margin-top: 145px;
}
@media screen and (max-width: 992px) {
  .career {
    margin-top: 92px;
  }
}
@media screen and (max-width: 768px) {
  .career {
    margin-top: 72px;
  }
}
@media screen and (max-width: 526px) {
  .career {
    margin-top: 42px;
  }
}
.career .bl_title {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 111px;
}
@media screen and (max-width: 992px) {
  .career .bl_title {
    margin-bottom: 92px;
    line-height: 1.5;
  }
}
@media screen and (max-width: 768px) {
  .career .bl_title {
    margin-bottom: 72px;
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 526px) {
  .career .bl_title {
    margin-bottom: 42px;
    font-size: 2.2rem;
  }
}
.career .career_image .text {
  margin-bottom: 52px;
  line-height: 1;
}
@media screen and (max-width: 992px) {
  .career .career_image .text {
    margin-bottom: 32px;
  }
}
@media screen and (max-width: 768px) {
  .career .career_image .text {
    margin-bottom: 24px;
    line-height: 1.5;
  }
}
@media screen and (max-width: 526px) {
  .career .career_image .text {
    margin-top: 42px;
  }
}
.career .career_image .image {
  width: 100%;
  height: auto;
  aspect-ratio: 1.33/1;
  margin-bottom: 28px;
}
.career .career_image .image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.career .career_block {
  margin-top: 93px;
  margin-bottom: 176px;
}
@media screen and (max-width: 768px) {
  .career .career_block {
    margin-top: 62px;
    margin-bottom: 92px;
  }
}
@media screen and (max-width: 526px) {
  .career .career_block {
    margin-top: 42px;
    margin-bottom: 67px;
  }
}
.career .career_block .career_title {
  padding: 12px 0;
  width: 100%;
  border-radius: 10px;
  background-color: #AFA86F;
  font-size: 2.4rem;
  line-height: 1;
  font-weight: 700;
  padding-left: 21px;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .career .career_block .career_title {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 526px) {
  .career .career_block .career_title {
    margin-bottom: 20px;
    font-size: 2rem;
  }
}
.career .career_block .text {
  line-height: 1.8;
  margin-bottom: 38px;
}
@media screen and (max-width: 768px) {
  .career .career_block .text {
    padding-bottom: 24px;
  }
}
@media screen and (max-width: 526px) {
  .career .career_block .text {
    padding-bottom: 18px;
  }
}

/****************************************************************
  *** main - ページのスタイルを記述
  ****************************************************************/
/********************
 * - Common
 * - Header
 * - Footer
 * - Content
 ********************/
/****************************************************************
 *** Common
 ****************************************************************/
.pc-only {
  display: block;
}
@media screen and (max-width: 526px) {
  .pc-only {
    display: none;
  }
}

.sp-only {
  display: none;
}
@media screen and (max-width: 526px) {
  .sp-only {
    display: block;
  }
}

.clearfix {
  display: block;
  content: "";
  clear: both;
}

.b {
  font-weight: 700;
}

.circle {
  border-radius: 50%;
}

.btn {
  display: inline-block;
  position: relative;
  z-index: 1;
  border-radius: 5px;
  background-color: #222;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #fff;
  padding-top: 9px;
  padding-right: 40px;
  padding-bottom: 10px;
  padding-left: 20px;
}
.btn::before {
  position: absolute;
  top: 0;
  right: unset;
  bottom: unset;
  left: 0;
  content: "";
  z-index: -1;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: #E60012;
  transition: 0.4s;
  transform-origin: left top;
  transform: scale(0, 1);
}
@media screen and (max-width: 526px) {
  .btn {
    display: block;
    width: 100%;
    padding: 12px 0 13px;
    font-size: 3.94vw;
    text-align: center;
  }
}

.line-blue {
  position: relative;
}
.line-blue::after {
  position: absolute;
  top: unset;
  right: unset;
  bottom: -3px;
  left: 0;
  content: "";
  width: 0;
  height: 10px;
  background-color: #1192D4;
  transition: 1s;
}
@media screen and (max-width: 526px) {
  .line-blue::after {
    height: 6px;
  }
}
.line-blue.active::after {
  width: 100%;
}

.bg-yellow {
  background: linear-gradient(transparent 60%, #FFF20D 60%) no-repeat bottom left;
  background-size: 0;
  transition: 1s;
}
.bg-yellow.active {
  background-size: 100%;
}

/****************************************************************
 *** details
 ****************************************************************/
.details {
  margin-top: 140px;
  margin-bottom: 140px;
}
@media screen and (max-width: 992px) {
  .details {
    margin-top: 92px;
  }
}
@media screen and (max-width: 768px) {
  .details {
    margin-top: 72px;
  }
}
@media screen and (max-width: 526px) {
  .details {
    margin-top: 52px;
  }
}
.details .content_article {
  scroll-margin-top: 180px;
}
.details .bl_title {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 86px;
  margin-top: 0;
}
.details .bl_title.bl_main {
  margin-bottom: 113px;
}
@media screen and (max-width: 768px) {
  .details .bl_title {
    margin-bottom: 71px;
    font-size: 2.4rem;
    line-height: 1.5;
    text-align: center;
  }
}
@media screen and (max-width: 526px) {
  .details .bl_title {
    margin-bottom: 32px;
    font-size: 2rem;
  }
}
.details .text {
  margin-bottom: 72px;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .details .text {
    margin-bottom: 42px;
    line-height: 1.5;
  }
}
@media screen and (max-width: 526px) {
  .details .text {
    margin-bottom: 31px;
  }
}
.details .tag_list {
  display: flex;
  justify-content: space-between;
  max-width: 100%;
  width: 100%;
  margin-inline: auto;
}
@media screen and (max-width: 1080px) {
  .details .tag_list {
    max-width: 900px;
  }
}
@media screen and (max-width: 768px) {
  .details .tag_list {
    flex-direction: column;
    align-items: center;
    margin-bottom: 54px;
    gap: 24px;
  }
}
.details .tag_list .tag_item {
  display: block;
  text-align: center;
  font-size: clamp(1.4rem, 1.9rem + 0.9vw, 2rem);
  width: clamp(12.8rem, 6.992rem + 15.59vw, 29.4rem);
  min-width: 230px;
  font-weight: 700;
  line-height: 1;
  padding: 0.9em 0 0.9em 0;
  border: 1px solid #222;
  border-radius: 2em;
  background-color: #FAF7F1;
  position: relative;
  cursor: pointer;
  margin-bottom: 97px;
  white-space: nowrap;
}
@media screen and (max-width: 1080px) {
  .details .tag_list .tag_item {
    font-size: 1.8rem;
    padding: 0.9em 2em 0.9em 1em;
  }
}
@media screen and (max-width: 768px) {
  .details .tag_list .tag_item {
    font-size: 1.6rem;
    margin-bottom: 0px;
    padding: 0.9em 2em 0.9em 1em;
    font-size: 1.6rem;
    max-width: 240px;
  }
}
@media screen and (max-width: 526px) {
  .details .tag_list .tag_item {
    font-size: 1.2rem;
    margin-bottom: 0px;
  }
}
.details .tag_list .tag_item a {
  position: relative;
}
.details .tag_list .tag_item a .fa-arrow-down {
  padding-left: 12px;
  position: absolute;
}
.details .content_list {
  margin-bottom: 40px;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .details .content_list {
    margin-top: 72px;
    margin-bottom: 52px;
  }
}
@media screen and (max-width: 526px) {
  .details .content_list {
    margin-top: 52px;
    margin-bottom: 23px;
  }
}
.details .content_list:last-of-type {
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .details .content_list:last-of-type {
    margin-bottom: 72px;
  }
}
@media screen and (max-width: 526px) {
  .details .content_list:last-of-type {
    margin-bottom: 52px;
  }
}
.details .content_list dt {
  width: 24%;
  font-weight: 700;
  padding: 27.7px 0 43px;
  font-size: 1.6rem;
  line-height: 1;
  border-bottom: 1px dotted #222;
}
@media screen and (max-width: 768px) {
  .details .content_list dt {
    padding: 24px 0;
    width: 100px;
  }
}
@media screen and (max-width: 526px) {
  .details .content_list dt {
    padding: 16px 0;
  }
}
.details .content_list dd {
  width: 76%;
  padding: 27.7px 0 43px;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1;
  border-bottom: 1px dotted #222;
}
@media screen and (max-width: 768px) {
  .details .content_list dd {
    padding: 24px 0;
    width: calc(100% - 100px);
    line-height: 1.5;
  }
}
@media screen and (max-width: 526px) {
  .details .content_list dd {
    padding: 16px 0;
  }
}

/****************************************************************
  *** main - ページのスタイルを記述
  ****************************************************************/
/********************
 * - Common
 * - Header
 * - Footer
 * - Content
 ********************/
/****************************************************************
 *** Common
 ****************************************************************/
.pc-only {
  display: block;
}
@media screen and (max-width: 526px) {
  .pc-only {
    display: none;
  }
}

.sp-only {
  display: none;
}
@media screen and (max-width: 526px) {
  .sp-only {
    display: block;
  }
}

.clearfix {
  display: block;
  content: "";
  clear: both;
}

.b {
  font-weight: 700;
}

.circle {
  border-radius: 50%;
}

.btn {
  display: inline-block;
  position: relative;
  z-index: 1;
  border-radius: 5px;
  background-color: #222;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #fff;
  padding-top: 9px;
  padding-right: 40px;
  padding-bottom: 10px;
  padding-left: 20px;
}
.btn::before {
  position: absolute;
  top: 0;
  right: unset;
  bottom: unset;
  left: 0;
  content: "";
  z-index: -1;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: #E60012;
  transition: 0.4s;
  transform-origin: left top;
  transform: scale(0, 1);
}
@media screen and (max-width: 526px) {
  .btn {
    display: block;
    width: 100%;
    padding: 12px 0 13px;
    font-size: 3.94vw;
    text-align: center;
  }
}

.line-blue {
  position: relative;
}
.line-blue::after {
  position: absolute;
  top: unset;
  right: unset;
  bottom: -3px;
  left: 0;
  content: "";
  width: 0;
  height: 10px;
  background-color: #1192D4;
  transition: 1s;
}
@media screen and (max-width: 526px) {
  .line-blue::after {
    height: 6px;
  }
}
.line-blue.active::after {
  width: 100%;
}

.bg-yellow {
  background: linear-gradient(transparent 60%, #FFF20D 60%) no-repeat bottom left;
  background-size: 0;
  transition: 1s;
}
.bg-yellow.active {
  background-size: 100%;
}

/****************************************************************
 *** career
 ****************************************************************/
.faq {
  margin-top: 140px;
}
@media screen and (max-width: 992px) {
  .faq {
    margin-top: 92px;
  }
}
@media screen and (max-width: 768px) {
  .faq {
    margin-top: 72px;
  }
}
@media screen and (max-width: 526px) {
  .faq {
    margin-top: 52px;
  }
}
.faq .content_article {
  scroll-margin-top: 150px;
}
.faq .bl_title {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 113px;
}
@media screen and (max-width: 768px) {
  .faq .bl_title {
    margin-bottom: 71px;
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 526px) {
  .faq .bl_title {
    margin-bottom: 32px;
    font-size: 2rem;
  }
}
.faq .text {
  margin-bottom: 70px;
}
@media screen and (max-width: 768px) {
  .faq .text {
    margin-bottom: 42px;
  }
}
@media screen and (max-width: 526px) {
  .faq .text {
    margin-bottom: 31px;
  }
}
.faq .tag_list {
  display: flex;
  justify-content: space-between;
  max-width: 100%;
  width: 100%;
  margin-inline: auto;
  padding-top: 3px;
}
@media screen and (max-width: 1080px) {
  .faq .tag_list {
    max-width: 900px;
  }
}
@media screen and (max-width: 768px) {
  .faq .tag_list {
    flex-direction: column;
    align-items: center;
    margin-bottom: 54px;
    gap: 24px;
  }
}
.faq .tag_list .tag_item {
  display: block;
  text-align: center;
  font-size: clamp(1.4rem, 1.9rem + 0.9vw, 2rem);
  width: clamp(12.8rem, 6.992rem + 15.59vw, 29.4rem);
  min-width: 230px;
  font-weight: 700;
  line-height: 1;
  padding: 0.9em 0 0.9em 0;
  border: 1px solid #222;
  border-radius: 2em;
  background-color: #FAF7F1;
  position: relative;
  cursor: pointer;
  margin-bottom: 97px;
  white-space: nowrap;
}
.faq .tag_list .tag_item a {
  position: relative;
}
.faq .tag_list .tag_item a .fa-arrow-down {
  padding-left: 12px;
  position: absolute;
}
@media screen and (max-width: 1080px) {
  .faq .tag_list .tag_item {
    font-size: 1.8rem;
    padding: 0.9em 2em 0.9em 1em;
  }
}
@media screen and (max-width: 768px) {
  .faq .tag_list .tag_item {
    font-size: 1.6rem;
    margin-bottom: 0px;
    padding: 0.9em 2em 0.9em 1em;
    font-size: 1.6rem;
    max-width: 240px;
  }
}
@media screen and (max-width: 526px) {
  .faq .tag_list .tag_item {
    font-size: 1.2rem;
    margin-bottom: 0px;
  }
}
.faq .acordion_list {
  margin-top: 56px;
  margin-bottom: 0px;
}
@media screen and (max-width: 768px) {
  .faq .acordion_list {
    margin-top: 42px;
    margin-bottom: 52px;
  }
}
@media screen and (max-width: 526px) {
  .faq .acordion_list {
    margin-top: 22px;
    margin-bottom: 23px;
  }
}
.faq .acordion_list:first-of-type {
  margin-top: 113px;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .faq .acordion_list:first-of-type {
    margin-top: 42px;
    margin-bottom: 52px;
  }
}
@media screen and (max-width: 526px) {
  .faq .acordion_list:first-of-type {
    margin-top: 22px;
    margin-bottom: 23px;
  }
}
.faq .acordion_list:last-of-type {
  margin-bottom: 113px;
}
@media screen and (max-width: 768px) {
  .faq .acordion_list:last-of-type {
    margin-bottom: 72px;
  }
}
@media screen and (max-width: 526px) {
  .faq .acordion_list:last-of-type {
    margin-bottom: 52px;
  }
}
.faq .acordion_list dt {
  width: 100%;
  font-weight: 400;
  padding: 36px 14px 26px 0px;
  font-size: 1.6rem;
  border-bottom: 1px dotted #222;
  position: relative;
  cursor: pointer;
  transition: 0.4s all ease;
  line-height: 1;
  display: flex;
}
.faq .acordion_list dt.active {
  border-bottom: none;
  padding-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .faq .acordion_list dt {
    padding: 24px 24px;
    line-height: 1.5;
  }
}
@media screen and (max-width: 526px) {
  .faq .acordion_list dt {
    padding: 16px 12px;
  }
}
.faq .acordion_list dt span {
  font-size: 2.4rem;
  line-height: 1;
  font-weight: 400;
  color: #AFA86F;
  font-family: "Viga", sans-serif;
}
.faq .acordion_list dt p {
  margin-left: 20px;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .faq .acordion_list dt p {
    line-height: 1.5;
  }
}
.faq .acordion_list dt::before {
  content: "";
  width: 16px;
  height: 1px;
  background-color: #222;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  transition: 0.4s all ease;
}
.faq .acordion_list dt::after {
  content: "";
  width: 16px;
  height: 1px;
  background-color: #222;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  right: 0;
  transition: 0.4s all ease;
}
.faq .acordion_list .one_line::after {
  transform: translateY(-50%) rotate(0deg);
  opacity: 0;
}
.faq .acordion_list dd {
  width: 100%;
  padding: 0 0 22px;
  line-height: 1;
  font-size: 1.6rem;
  font-weight: 400;
  border-bottom: 1px dotted #222;
  display: none;
}
@media screen and (max-width: 768px) {
  .faq .acordion_list dd {
    padding: 24px 0;
  }
}
@media screen and (max-width: 526px) {
  .faq .acordion_list dd {
    padding: 16px 0;
  }
}
.faq .acordion_list dd p {
  margin-left: 37px;
}

.sample_image {
  width: 500px;
  height: 500px;
  padding: 20px;
  background-color: aqua;
  margin: 200px auto;
  background-image: url(/images/career/carrer-fv.jpg);
  background-repeat: no-repeat;
  background-size: 120%;
  background-position: left center;
  height: auto;
}
.sample_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left 150px/top;
  opacity: 0;
}

#asistant {
  margin-bottom: 166px;
}

/****************************************************************
  *** main - ページのスタイルを記述
  ****************************************************************/
/********************
 * - Common
 * - Header
 * - Footer
 * - Content
 ********************/
/****************************************************************
 *** Common
 ****************************************************************/
.pc-only {
  display: block;
}
@media screen and (max-width: 526px) {
  .pc-only {
    display: none;
  }
}

.sp-only {
  display: none;
}
@media screen and (max-width: 526px) {
  .sp-only {
    display: block;
  }
}

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

.clearfix {
  display: block;
  content: "";
  clear: both;
}

.b {
  font-weight: 700;
}

.circle {
  border-radius: 50%;
}

.btn {
  display: inline-block;
  position: relative;
  z-index: 1;
  border-radius: 5px;
  background-color: #222;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #fff;
  padding-top: 9px;
  padding-right: 40px;
  padding-bottom: 10px;
  padding-left: 20px;
}
.btn::before {
  position: absolute;
  top: 0;
  right: unset;
  bottom: unset;
  left: 0;
  content: "";
  z-index: -1;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: #E60012;
  transition: 0.4s;
  transform-origin: left top;
  transform: scale(0, 1);
}
@media screen and (max-width: 526px) {
  .btn {
    display: block;
    width: 100%;
    padding: 12px 0 13px;
    font-size: 3.94vw;
    text-align: center;
  }
}

.line-blue {
  position: relative;
}
.line-blue::after {
  position: absolute;
  top: unset;
  right: unset;
  bottom: -3px;
  left: 0;
  content: "";
  width: 0;
  height: 10px;
  background-color: #1192D4;
  transition: 1s;
}
@media screen and (max-width: 526px) {
  .line-blue::after {
    height: 6px;
  }
}
.line-blue.active::after {
  width: 100%;
}

.bg-yellow {
  background: linear-gradient(transparent 60%, #FFF20D 60%) no-repeat bottom left;
  background-size: 0;
  transition: 1s;
}
.bg-yellow.active {
  background-size: 100%;
}

/****************************************************************
 *** career
 ****************************************************************/
.thanks {
  padding: 23px 3% 57px;
  background-color: #FAF7F1;
  margin-bottom: 139px;
}
@media screen and (max-width: 768px) {
  .thanks {
    padding: 18px 5% 32px;
    margin-bottom: 82px;
  }
}
@media screen and (max-width: 526px) {
  .thanks {
    padding: 12px 3% 24px;
    margin-bottom: 62px;
  }
}
.thanks_block {
  width: 100%;
  padding: 68px 0 95px;
  background-color: #fff;
  text-align: center;
  max-width: 883px;
}
@media screen and (max-width: 768px) {
  .thanks_block {
    padding: 32px 0 62px;
  }
}
@media screen and (max-width: 526px) {
  .thanks_block {
    padding: 24px 0 45px;
  }
}
.thanks_block .title {
  font-size: 3.2rem;
  line-height: 1;
  font-weight: 700;
  margin-bottom: 51px;
}
@media screen and (max-width: 768px) {
  .thanks_block .title {
    font-size: 2.4rem;
    margin-bottom: 32px;
  }
}
@media screen and (max-width: 526px) {
  .thanks_block .title {
    font-size: 2rem;
    margin-bottom: 26px;
  }
}
.thanks_block .text {
  line-height: 1.6;
}

.contact {
  padding: 32px 5% 27px;
  background-color: #FAF7F1;
  padding-bottom: 198px;
}
@media screen and (max-width: 768px) {
  .contact {
    padding: 18px 5% 32px;
    margin-bottom: 82px;
  }
}
@media screen and (max-width: 768px) {
  .contact {
    padding: 18px 5% 32px;
    margin-bottom: 82px;
  }
}
@media screen and (max-width: 526px) {
  .contact {
    padding: 12px 3% 24px;
    margin-bottom: 62px;
  }
}
.contact_block {
  width: 100%;
  padding: 58px 5% 23px;
  background-color: #fff;
  text-align: center;
  max-width: 880px !important;
}
@media screen and (max-width: 768px) {
  .contact_block {
    padding: 41px 4% 62px;
  }
}
@media screen and (max-width: 526px) {
  .contact_block {
    padding: 24px 4% 45px;
  }
}
.contact_block .copy {
  margin-bottom: 29px;
  font: 400 2.4rem/1 "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 768px) {
  .contact_block .copy {
    margin-bottom: 22px;
    font: 400 2rem/1 "Noto Sans JP", sans-serif;
  }
}
@media screen and (max-width: 526px) {
  .contact_block .copy {
    margin-bottom: 16px;
    font: 400 1.8rem/1 "Noto Sans JP", sans-serif;
  }
}
.contact_block .c_title {
  font-size: 3.2rem;
  line-height: 1;
  font-weight: 700;
  margin-bottom: 49px;
}
@media screen and (max-width: 768px) {
  .contact_block .c_title {
    margin-bottom: 31px;
    font-size: 2.6rem;
    line-height: 1.5;
  }
}
@media screen and (max-width: 526px) {
  .contact_block .c_title {
    margin-bottom: 24px;
    font-size: 2rem;
  }
}
.contact_block .c_title span {
  color: #AFA86F;
}
.contact_block .text {
  text-align: left;
  margin: 0 auto;
  width: fit-content;
  text-wrap: nowrap;
  position: relative;
  line-height: 1.6;
  margin-bottom: 90px;
}
@media screen and (max-width: 768px) {
  .contact_block .text {
    margin-bottom: 62px;
  }
}
@media screen and (max-width: 526px) {
  .contact_block .text {
    margin-bottom: 42px;
  }
}
.contact_block .form_block {
  padding-top: 100px;
  width: 100%;
  border-top: 1px solid #AFA86F;
}
@media screen and (max-width: 768px) {
  .contact_block .form_block {
    padding-top: 62px;
  }
}
@media screen and (max-width: 526px) {
  .contact_block .form_block {
    padding-top: 43px;
  }
}
.contact_block .form_block .form {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  vertical-align: middle;
  width: 100%;
}
@media screen and (max-width: 992px) {
  .contact_block .form_block .form {
    flex-direction: column;
  }
}
.contact_block .form_block .form dt {
  flex: 0 0 calc(100% - 580px);
  text-align: left;
  line-height: 1.5;
  margin-bottom: 27px;
  padding-top: 10px;
  vertical-align: middle;
  padding-right: 1em;
}
@media screen and (max-width: 992px) {
  .contact_block .form_block .form dt {
    flex: 1 1 100%;
    width: 100%;
  }
}
@media screen and (max-width: 526px) {
  .contact_block .form_block .form dt {
    margin-bottom: 14px;
  }
}
.contact_block .form_block .form dd {
  flex: 1 1 580px;
  margin-bottom: 28px;
  margin-left: 0;
  text-align: left;
  vertical-align: middle;
  font-size: 1.6rem;
  line-height: 1;
  position: relative;
  letter-spacing: 0.078em;
}
.contact_block .form_block .form dd:nth-last-child(4) {
  padding-top: 5px;
}
@media screen and (max-width: 992px) {
  .contact_block .form_block .form dd {
    flex: 1 1 100%;
    width: 100%;
  }
}
@media screen and (max-width: 526px) {
  .contact_block .form_block .form dd {
    margin-bottom: 14px;
  }
}
.contact_block .form_block .form .radio-label {
  margin-top: -1px;
  margin-bottom: 13px;
}
.contact_block .form_block .form .check-label {
  padding-top: 8px;
}
.contact_block .form_block input[type=text],
.contact_block .form_block input[type=email],
.contact_block .form_block input[type=tel] {
  width: 100%;
  height: 56px;
  padding: 20px;
  border: 1px solid #AFA86F;
  background-color: #FAF7F1;
  border-radius: 10px;
}
.contact_block .form_block input[type=text] ::placeholder,
.contact_block .form_block input[type=email] ::placeholder,
.contact_block .form_block input[type=tel] ::placeholder {
  color: #757575;
  font-size: 1.6rem;
  line-height: 1;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
}
.contact_block .form_block input[type=radio] {
  width: 22px;
  height: 22px;
  border: 1px solid #AFA86F;
  background-color: #FAF7F1;
  box-sizing: border-box;
  cursor: pointer;
  margin-left: 0px;
  margin-right: 15px;
  margin-top: 1px;
}
.contact_block .form_block .wpcf7-radio .wpcf7-list-item {
  margin-left: 0;
}
.contact_block .form_block .wpcf7-radio span {
  display: block;
  margin-bottom: 17px;
  padding-left: 0;
}
.contact_block .form_block .wpcf7-radio span label {
  display: flex;
  align-items: center;
  position: relative;
}
.contact_block .form_block .wpcf7-radio span label::before {
  content: "";
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid #AFA86F;
  background-color: #FAF7F1;
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0px;
  cursor: pointer;
  color: transparent;
}
.contact_block .form_block .wpcf7-radio span label::before:checked {
  opacity: 1;
  border-color: brown;
  border-width: 20px;
}
.contact_block .form_block .wpcf7-radio span label::before:checked .wpcf7-checkbox span label::after {
  opacity: 1;
}
.contact_block .form_block .wpcf7-radio span label::after {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #222;
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 5px;
  opacity: 0;
  visibility: hidden;
}
.contact_block .form_block .wpcf7-radio span label.active::after {
  visibility: visible;
  opacity: 1;
}
.contact_block .form_block .wpcf7-radio span:last-of-type {
  margin-bottom: -6px;
}
.contact_block .form_block .wpcf7-radio .wpcf7-form-control-wrap {
  display: block;
  margin-top: -7px;
}
.contact_block .form_block .wpcf7-checkbox span {
  display: block;
  margin-left: 0;
}
.contact_block .form_block .wpcf7-checkbox span label {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  padding-left: 0;
  position: relative;
  cursor: pointer;
}
.contact_block .form_block .wpcf7-checkbox span label::before {
  content: "";
  width: 24px;
  height: 24px;
  border: 1px solid #AFA86F;
  background-color: #FAF7F1;
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0px;
  cursor: pointer;
  color: transparent;
}
.contact_block .form_block .wpcf7-checkbox span label::after {
  content: "";
  width: 12px;
  height: 12px;
  background-color: #222;
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 5px;
  opacity: 0;
  visibility: hidden;
}
.contact_block .form_block .wpcf7-checkbox span label.active::after {
  visibility: visible;
  opacity: 1;
}
.contact_block .form_block input[type=checkbox]:checked .wpcf7-checkbox > span > label::after {
  opacity: 1;
  position: relative;
  z-index: 100;
}
.contact_block .form_block input[type=text].my_year,
.contact_block .form_block .my_day {
  width: 168px;
  height: 56px;
  padding: 20px;
  border: 1px solid #AFA86F;
  background-color: #FAF7F1;
  border-radius: 10px;
  margin-bottom: 15px;
  margin-right: 10px;
  vertical-align: baseline;
  appearance: none;
}
@media screen and (max-width: 992px) {
  .contact_block .form_block input[type=text].my_year,
  .contact_block .form_block .my_day {
    width: 80%;
  }
}
.contact_block .form_block .day2 {
  width: 168px;
  height: 56px;
  padding: 20px;
  border: 1px solid #AFA86F;
  background-color: #FAF7F1;
  border-radius: 10px;
  margin-bottom: 15px;
  margin-right: 10px;
  margin-left: 0;
  vertical-align: baseline;
  appearance: none;
}
@media screen and (max-width: 992px) {
  .contact_block .form_block .day2 {
    width: 80%;
  }
}
.contact_block .form_block textarea {
  width: 100%;
  height: 240px;
  padding: 20px;
  border: 1px solid #AFA86F;
  background-color: #FAF7F1;
  border-radius: 10px;
  margin-top: 21px;
}
.contact_block .form_block input[type=checkbox] {
  width: 24px;
  height: 24px;
  border: 1px solid #AFA86F;
  background-color: #FAF7F1;
  box-sizing: border-box;
  margin-right: 16px;
  color: transparent;
  border-width: 0px;
  margin-left: 0;
  opacity: 1;
}
.contact_block .form_block .year,
.contact_block .form_block .day {
  vertical-align: middle;
  line-height: 1;
  position: relative;
}
@media screen and (max-width: 992px) {
  .contact_block .form_block .year {
    width: 100%;
  }
}
@media screen and (max-width: 992px) {
  .contact_block .form_block .day {
    width: 100%;
    max-width: 326px;
  }
}
.contact_block .form_block .day_label {
  position: absolute;
  top: 39%;
  transform: translateY(-50%);
  right: -13px;
}
@media screen and (max-width: 992px) {
  .contact_block .form_block .day_label {
    right: 32px;
  }
}
.contact_block .form_block .day:last-of-type {
  margin-left: 34px;
}
@media screen and (max-width: 992px) {
  .contact_block .form_block .day:last-of-type {
    margin-left: 0;
  }
}
.contact_block .form_block .col {
  display: block;
  margin-bottom: 19px;
}
.contact_block .form_block .check_block {
  display: block;
  text-align: center;
  margin: 0 auto;
  margin-left: 15.5%;
  width: fit-content;
  margin-top: 49px;
}
.contact_block .form_block .check_block span label {
  font-size: 1.3rem;
}
.contact_block .form_block .check_block span label::before {
  width: 18px !important;
  height: 18px !important;
  left: 12px !important;
}
.contact_block .form_block .check_block span label input[type=checkbox] {
  width: 18px;
  height: 18px;
  margin-left: 12px;
  margin-right: 12px;
}
.contact_block .form_block .check_block span label::after {
  left: 15px !important;
}
@media screen and (max-width: 768px) {
  .contact_block .form_block .check_block {
    margin-top: 32px;
  }
}
.contact_block .form_block input[type=submit] {
  display: block;
  width: 256px;
  padding: 20px 0;
  text-align: center;
  line-height: 1;
  border: 1px solid #222;
  background-color: transparent;
  cursor: pointer;
  margin: 19px auto 0;
  margin-left: 13%;
  letter-spacing: 0.15em;
}
@media screen and (max-width: 768px) {
  .contact_block .form_block input[type=submit] {
    margin-top: 32px;
    text-align: center;
    margin-inline: auto;
  }
}
@media screen and (max-width: 526px) {
  .contact_block .form_block input[type=submit] {
    margin-top: 24px;
  }
}

.day_flex {
  display: flex;
  align-items: center;
  margin-top: -21px;
  gap: 5px;
}
@media screen and (max-width: 992px) {
  .day_flex {
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
  }
}

.day_first {
  width: fit-content;
  display: flex;
  align-items: center;
}

[data-name=select] {
  position: relative;
}
[data-name=select]::before {
  content: "";
  width: 8px;
  height: 8px;
  border-bottom: 1px solid #333;
  border-right: 1px solid #333;
  transform: translateY(-50%) rotate(45deg);
  position: absolute;
  top: 7px;
  right: 26px;
}

input[name=check] {
  width: 18px;
  height: 18px;
  margin-left: 12px;
  margin-right: 12px;
  opacity: 0;
}

.wpcf7-form-control-wrap textarea::placeholder {
  color: #757575;
  font-size: 1.6rem;
  line-height: 1;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif !important;
}

.wpcf7-form input[required]::placeholder {
  color: #757575;
  font-size: 1.6rem;
  line-height: 1;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
}

.wpcf7-form input[required]::-webkit-input-placeholder { /* Chrome/Safari/Opera */
  color: #757575;
  font-size: 1.6rem;
  line-height: 1;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
}

::placeholder {
  color: #757575;
  font-size: 1.6rem;
  line-height: 1;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif !important;
}/*# sourceMappingURL=child-style.css.map */