@charset "UTF-8";
/*
 * foundation
 */
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
  padding: 0;
  line-height: 1.8;
}

ul[role=list],
ol[role=list] {
  list-style: none;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

img,
picture {
  max-width: 100%;
  display: block;
  height: auto;
  border: none;
}

input,
button,
textarea,
select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
:focus:not(:focus-visible) {
  outline: 0; /* キーボード操作"以外"でフォーカスされた際はoutlineを消す */
}

:root {
  --content-space: 16px;
  --content-negative-space: -16px;
  --content-width: 1200px;
  --u-content-width: 1000px;
  --content-max-width: calc(var(--content-width) + (var(--content-space) * 2));
  --content-narrow-width: 1000px;
  --content-narrow-max-width: calc(var(--content-narrow-width) + (var(--content-space) * 2));
  --color-white:#ffffff;
  --color-grey:#727272;
  --color-grey-light:#b2b2b2;
  --color-text:#181818;
  --color-main:#3A9D74;
  --color-sub:#abe2d6;
  --color-accent:#F97F2D;
  --color-dark:#656565;
  --color-light:#edfcf9;
  --font-main:"Noto Sans JP", "ヒラギノ角ゴ Pro W3", 'Hiragino Kaku Gothic Pro', "ヒラギノ角ゴシック", "メイリオ", sans-serif;
}

@media screen and (max-width: 767px) {
  :root {
    --content-space: 7.729vw;
    --content-negative-space: -7.729vw;
    --content-width: 100%;
    --u-content-width: 92%;
    --content-max-width: 100%;
    --content-narrow-width: 100%;
    --content-narrow-max-width: 100%;
  }
}
html,
body {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
}

body {
  width: 100%;
  margin: 0;
  color: var(--color-text);
  font-family: var(--font-main);
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  min-width: 1320px;
  background-image: url(../img/top/main-bg-left.png);
  background-position: left top;
  background-repeat: no-repeat;
}

body.page {
  background-image: url(../img/page/page-bg-left.png), url(../img/page/page-bg-right.png);
  background-position: left top, right 210px;
  background-repeat: no-repeat no-repeat;
  background-size: auto;
}

body.single {
  background-image: none;
}

a {
  text-decoration: underline;
  color: inherit;
}

@media screen and (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
/* 好みで使用してください
p, dl, dt, dd, ul, li{
    line-height: 1.5;
    font-feature-settings : "palt";
    text-align:justify; 
    text-justify: inter-ideograph;
}
*/
li {
  line-height: 1.8;
  font-size: 1rem;
}

.sp {
  display: none !important;
}

.no-mt {
  margin-top: 0 !important;
}

p {
  font-size: 1.125rem;
  line-height: 1.8;
}

@media screen and (max-width: 767px) {
  body {
    min-width: 100%;
    background-image: url(../img/top/sp-bg-img.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left top;
  }
  body.page {
    background-image: url(../img/page/page-bg-sp.png);
    background-position: left top;
    background-repeat: no-repeat no-repeat;
    background-size: 100% auto;
  }
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
  img {
    max-width: 100%;
    height: auto;
  }
}
/* ブロックスキップ */
.skip-link {
  position: absolute;
  top: -40px; /* 見えないように上に隠す */
  left: 0;
  background: var(--color-main);
  color: #fff;
  padding: 5px 16px;
  z-index: 1000;
  text-decoration: none;
  font-size: 16px;
  transition: top 0.3s;
}

.skip-link:focus {
  top: 0; /* フォーカス時に表示 */
}

@media screen and (max-width: 767px) {
  .skip-link:focus {
    top: 80px;
  }
}
/* Autoprefixerを使用した場合の書き方 */
input[type=submit],
input[type=button] {
  border-radius: 0;
  box-sizing: content-box;
  appearance: button;
  border: none;
  cursor: pointer;
}

/*
 * layout
 */
/* header -------------------------------------- */
.l-header {
  width: 100%;
  height: 142px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 100;
  top: 0;
  transition: height 0.3s ease-out;
}

.site-logo {
  margin-top: 10px;
  margin-left: 40px;
}
.site-logo img {
  transition: 0.3s;
}

.l-header__body {
  display: flex;
  margin-right: 40px;
}

.hdr-contact-area {
  width: 800px;
  margin-top: 28px;
  margin-right: 22px;
}
.hdr-contact-area .hdr-contact {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  color: var(--color-dark);
  font-size: 2vw;
}
.hdr-contact-area .hdr-contact img {
  margin-right: 10px;
}
.hdr-contact-area .hdr-contact span {
  font-size: 1rem;
  line-height: 1.6;
  margin-right: 26px;
  font-weight: 700;
}
.hdr-contact-area .hdr-contact a.btn-contact {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-size: 1.25rem;
  color: var(--color-main);
  margin-left: 30px;
}
.hdr-contact-area .hdr-contact a.btn-contact:hover {
  color: var(--color-dark);
}

.hdr-btn {
  display: flex;
  margin-top: 21px;
}
.hdr-btn a:nth-of-type(1) {
  display: flex;
  width: 184px;
  height: 100px;
  justify-content: center;
  align-items: center;
  border: 3px solid #00AAEB;
  border-radius: 60px;
  transition: 0.3s;
}
.hdr-btn a:nth-of-type(1) img {
  width: 158px;
}
.hdr-btn a:nth-of-type(1):hover {
  opacity: 0.7;
}
.hdr-btn a:nth-last-of-type(1) {
  width: 184px;
  height: 100px;
  background-color: var(--color-main);
  color: #fff;
  border: 3px solid #46C691;
  border-radius: 5px;
  text-align: center;
  text-decoration: none;
  font-size: 1.25rem;
  text-align: center;
  line-height: 1.3;
  padding-top: 14px;
  margin-left: 14px;
  border-radius: 60px;
  transition: 0.3s;
}
.hdr-btn a:nth-last-of-type(1) span {
  font-size: 1rem;
  display: block;
}
.hdr-btn a:nth-last-of-type(1) img {
  margin: 8px auto 0;
}
.hdr-btn a:nth-last-of-type(1):hover {
  background-color: #46C691;
}
.hdr-btn a:nth-last-of-type(1):nth-last-of-type(1) img {
  margin-top: 10px;
}

.c-nav {
  margin-top: 15px;
}
.c-nav .c-nav-list {
  border-top: 2px solid var(--color-sub);
  display: flex;
  gap: 17px;
  margin: 0;
  padding: 0;
}
.c-nav .c-nav-list > li {
  list-style: none;
  position: relative;
  margin: 10px 0;
  padding: 3px 10px;
  text-decoration: none;
  font-size: 1.125rem;
}
.c-nav .c-nav-list > li:after {
  content: url(../img/common/icon-nav-down.svg);
  margin-left: 5px;
}
.c-nav .c-nav-list > li > a {
  display: inline-block;
}
.c-nav .c-nav-list > li > a:hover {
  background-color: var(--color-light);
}
.c-nav .c-nav-list > li.has-sub {
  position: relative;
}
.c-nav .c-nav-list > li .c-nav-list-lv2 {
  display: none;
  position: absolute;
  left: -44px;
  top: 2em;
  margin: 0;
  padding: 20px;
  width: 248px;
  z-index: 3;
  background-color: #fff;
  border-radius: 10px;
}
.c-nav .c-nav-list > li .c-nav-list-lv2 > li {
  list-style: none;
  margin-bottom: 10px;
}
.c-nav .c-nav-list > li .c-nav-list-lv2 > li a {
  text-decoration: none;
}
.c-nav .c-nav-list > li .c-nav-list-lv2 > li a:hover {
  color: var(--color-main);
}
.c-nav .c-nav-list > li .c-nav-list-lv2 li.head-menu {
  color: var(--color-main);
  font-weight: 700;
}
.c-nav .c-nav-list > li .c-nav-list-lv2 li.hr {
  border-bottom: 1px solid var(--color-main);
  margin-bottom: 10px;
  padding-bottom: 10px;
}

.c-nav-list-lv2__link {
  display: block;
  font-size: 15px;
  line-height: 2;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  text-decoration: none;
}
.c-nav-list-lv2__link:hover {
  color: #BF7939;
  opacity: 1;
}
.c-nav-list-lv2__link span {
  font-size: 26px;
  line-height: 1;
  color: var(--color-light);
}

.l-header.fix {
  position: sticky;
  top: 37px;
  left: 2%;
  width: 96%;
  min-width: 1320px;
  height: 100px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid #FFFFFF;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(4px);
  z-index: 1000;
  transform: translateY(0);
  transition: all 0.3s ease-out;
  animation: headerFloat 0.5s ease-out;
}
.l-header.fix .site-logo {
  margin-left: 40px;
  width: 11vw;
  min-width: 180px;
}
.l-header.fix .site-logo img {
  height: auto;
}
.l-header.fix .l-header__body {
  margin-right: 0;
}
.l-header.fix .hdr-contact-area {
  width: auto;
  max-width: 800px;
  display: flex;
  align-items: center;
  margin-top: 0;
}
.l-header.fix .hdr-contact-area .hdr-contact {
  display: none;
}
.l-header.fix .hdr-contact-area .c-nav {
  margin-top: 0;
}
.l-header.fix .hdr-contact-area .c-nav .c-nav-list {
  border-top: initial;
}
.l-header.fix .hdr-contact-area .c-nav .c-nav-list > li {
  font-size: 1rem;
  padding: 3px;
}
.l-header.fix .hdr-btn {
  margin: 15px;
}
.l-header.fix .hdr-btn a {
  width: auto;
  height: 70px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.l-header.fix .hdr-btn a span.wrap {
  display: block;
}
.l-header.fix .hdr-btn a img {
  margin: 0 0 0 10px;
}
.l-header.fix .hdr-btn a:nth-last-of-type(1) span {
  font-size: 0.8125rem;
}
@keyframes headerFloat {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@media screen and (max-width: 1600px) {
  .site-logo {
    width: 20vw;
    min-width: 260px;
  }
  .hdr-contact-area {
    width: auto;
    max-width: 800px;
  }
  .hdr-contact-area .hdr-contact span {
    font-size: clamp(0.9rem, 0.9rem + 0.2 * (100vw - 375px) / 1345, 1.1rem);
  }
  .hdr-contact-area .hdr-contact a.btn-contact {
    font-size: clamp(1rem, 1rem + 0.2 * (100vw - 375px) / 1345, 1.1rem);
  }
  .l-header:not(.fix) .hdr-btn {
    display: block;
    margin-top: 8px;
  }
  .l-header:not(.fix) .hdr-btn a:nth-of-type(1) {
    width: 188px;
    height: 60px;
    border-radius: 50px;
  }
  .l-header:not(.fix) .hdr-btn a:nth-last-of-type(1) {
    display: flex;
    justify-content: space-between;
    width: 188px;
    height: 60px;
    border-radius: 50px;
    margin-top: 6px;
    margin-left: 0;
    padding: 5px 3px 5px 30px;
  }
  .l-header:not(.fix) .hdr-btn a:nth-last-of-type(1) span.wrap {
    font-size: 1.125rem;
    text-align: left;
  }
  .l-header:not(.fix) .hdr-btn a:nth-last-of-type(1) span.wrap span {
    font-size: 0.9375rem;
  }
  .c-nav .c-nav-list > li > a {
    font-size: clamp(0.9rem, 0.9rem + 0.2 * (100vw - 375px) / 1345, 1.1rem);
  }
  .l-header.fix nav ul.c-nav-list {
    gap: 5px;
  }
}
@media screen and (max-width: 1300px) {
  .site-logo {
    margin-left: 20px;
  }
}
@media screen and (max-width: 1270px) {
  .hdr-contact-area {
    min-width: 360px;
    justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  .l-header {
    position: fixed;
    width: 100%;
    height: 60px;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: transparent;
    z-index: 100;
    transition: 0.3s;
  }
  .l-header.fix {
    display: none;
  }
  .site-logo {
    width: 65vw;
    margin-top: 10px;
    margin-left: 16px;
  }
  .site-logo img {
    width: 100%;
    height: auto;
    max-height: 50px;
  }
}
.l-main {
  overflow-x: clip;
}

.fix-side {
  position: fixed;
  width: 70px;
  height: 260px;
  right: -300px;
  top: calc(50vh - 130px);
  background-color: var(--color-dark);
  z-index: 99999;
  transition: 0.3s all;
}
.fix-side.active {
  right: 0px;
}
.fix-side a {
  display: block;
  width: 65px;
  height: 250px;
  margin: 5px 0 5px 5px;
  border: 1px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  writing-mode: vertical-lr;
  text-decoration: none;
  color: #fff;
  font-size: 1.25rem;
  transition: 0.3s;
}
.fix-side a img {
  margin-top: 10px;
}
.fix-side a:hover {
  background-color: var(--color-dark);
}

/* footer -------------------------------------- */
.l-footer {
  padding: 64px 0 40px;
}

.ftr-banner {
  width: 1200px;
  margin: 0 auto;
  border-radius: 30px;
  border: 2px solid var(--color-sub);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 28px 0;
  gap: 0 50px;
}
.ftr-banner a {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.ftr-banner a:hover {
  text-decoration: underline;
}
.ftr-banner a p {
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.5;
  width: 155px;
}
.ftr-banner a:nth-last-of-type(1) p {
  width: 180px;
  margin-left: 15px;
}

.ftr-data {
  width: 1200px;
  margin: 53px auto;
}
.ftr-data .wrap {
  display: flex;
}
.ftr-data .wrap .addr ul {
  display: flex;
  padding: 0;
  margin: 0;
}
.ftr-data .wrap .addr ul li {
  list-style-type: none;
  font-size: 0.875rem;
  margin-right: 50px;
}
.ftr-data .wrap .addr ul li:nth-last-of-type(1) {
  margin-right: 0;
}

.sns {
  padding-top: 50px;
  display: flex;
  gap: 0 19px;
  width: 284px;
}

.ftr-link {
  width: 100%;
  border-top: 1px solid var(--color-main);
  padding-top: 44px;
}
.ftr-link nav {
  display: flex;
  width: 1200px;
  margin: 0 auto;
  justify-content: space-between;
}
.ftr-link nav ul {
  margin-right: 40px;
  padding: 0;
}
.ftr-link nav ul li {
  margin-bottom: 10px;
  margin-left: 0;
  list-style-type: none;
}
.ftr-link nav ul li.home-link a {
  font-size: 1rem;
  font-weight: 700;
}
.ftr-link nav ul li.head {
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-main);
}
.ftr-link nav ul li.sub a {
  font-size: 0.9375rem;
  color: var(--color-main);
}
.ftr-link nav ul li.second a {
  font-size: 0.875rem;
}
.ftr-link nav ul li.second a::before {
  content: "ー";
  color: var(--color-main);
  margin-right: 5px;
}
.ftr-link nav ul li a {
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 700;
}
.ftr-link nav ul li a:hover {
  text-decoration: underline;
}

.other {
  width: 1200px;
  margin: 44px auto;
  display: flex;
  justify-content: flex-end;
}
.other a {
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 700;
  margin-left: 22px;
}
.other a:hover {
  text-decoration: underline;
}

.ftr-copy-wrap {
  width: 100%;
  padding-top: 35px;
}
.ftr-copy-wrap .inner {
  width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ftr-copy-wrap .inner .blank-link {
  display: flex;
  align-items: center;
  gap: 40px;
  margin: 0;
  padding: 0;
}
.ftr-copy-wrap .inner .blank-link a {
  display: inline-block;
  padding: 0 0 5px 0;
  text-decoration: none;
  border-bottom: 1px solid var(--color-main);
  position: relative;
}
.ftr-copy-wrap .inner .blank-link a::after {
  content: "";
  display: inline-block;
  margin-left: 8px;
  width: 14px;
  height: 14px;
  background: url(../img/common/icon-ftr-blank.png) no-repeat 0 0/contain;
}
.ftr-copy-wrap .inner .blank-link a:hover {
  text-decoration: underline;
}
.ftr-copy-wrap .copyright {
  font-size: 0.75rem;
}

.ftr-fix {
  display: none;
}

#page_top {
  position: fixed;
  bottom: -200px;
  right: 24px;
  width: 100px;
  height: 100px;
  border-radius: 50px;
  background: rgba(191, 127, 63, 0.8);
}

#page_top a {
  display: flex;
  width: 100px;
  height: 100px;
  font-size: 16px;
  color: #fff;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .l-footer {
    padding: 34px 0;
  }
  .l-footer .inner {
    width: 89%;
    margin: 0 auto;
  }
  .l-footer .ftr-copy-wrap {
    padding-top: 0;
  }
  .ftr-banner {
    width: 92%;
    display: block;
    padding: 10px 0;
  }
  .ftr-banner a {
    padding: 0 15px 15px;
  }
  .ftr-banner a .image {
    width: 50%;
  }
  .ftr-banner a .image img {
    margin: 0 auto;
  }
  .ftr-banner a p {
    width: 50%;
  }
  .ftr-data .wrap {
    display: block;
  }
  .ftr-data .wrap .ftr-logo {
    width: 100%;
    text-align: left;
  }
  .ftr-data .wrap .sns {
    width: 100%;
    margin-top: 32px;
    padding-top: 0;
  }
  .ftr-data .wrap .sns img {
    width: 32px;
  }
  .ftr-data .wrap .ftr-logo2 {
    margin-top: 28px;
  }
  .ftr-data .wrap .addr ul {
    display: block;
  }
  .ftr-data .wrap .addr ul li {
    text-align: left;
    margin-top: 25px;
  }
  .other-link a {
    display: block;
    padding: 10px 0;
    text-decoration: none;
  }
  .sns {
    display: flex;
    gap: 0 26px;
  }
  .sns img {
    width: 32px;
  }
  .f-link {
    width: 100%;
    background: #452309;
    padding-top: 17px;
    height: 45px;
    color: #fff;
  }
  .copyright {
    width: 100%;
    padding: 30px 0;
    text-align: center;
    display: block;
    border-top: 2px solid var(--color-sub);
  }
  /* sp-nav */
  .ftr-link {
    margin-left: 10vw;
  }
  .ftr-link .first {
    margin-bottom: 20px;
  }
  .ftr-link .first ul {
    padding-left: 4%;
  }
  .ftr-link .first ul li {
    margin-bottom: 16px;
    margin-left: 0;
    list-style-type: none;
  }
  .ftr-link .first ul li::before {
    content: "●";
    font-size: 8px;
    color: var(--color-main);
    line-height: 1.3;
    margin-right: 5px;
  }
  .ftr-link .first ul li a {
    text-decoration: none;
    font-size: 0.9375rem;
  }
  .ftr-link .first ul li a:hover {
    color: var(--color-dark);
  }
  .ftr-link .second {
    margin-bottom: 20px;
  }
  .ftr-link .second ul {
    padding-left: 4%;
  }
  .ftr-link .second ul li {
    margin-bottom: 16px;
    margin-left: 0;
    list-style-type: none;
  }
  .ftr-link .second ul li::before {
    content: "●";
    font-size: 8px;
    color: var(--color-light);
    line-height: 1.3;
    margin-right: 5px;
  }
  .ftr-link .second ul li a {
    text-decoration: none;
    font-size: 0.9375rem;
  }
  .ftr-link .second ul li a:hover {
    color: var(--color-dark);
  }
  .ftr-link .bnr {
    margin: 24px 0;
    width: 90%;
    background-color: #666;
    background-size: cover;
    background-repeat: no-repeat;
    color: #fff;
    height: 21vw;
    display: flex;
    align-items: center;
    border-radius: 12px;
    font-size: 0.9375rem;
  }
  .ftr-link .bnr a {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    padding-left: 30px;
  }
  .ftr-link .bnr a::before {
    content: "●";
    font-size: 8px;
    color: var(--color-main);
    line-height: 1.3;
    margin-right: 5px;
  }
  .ftr-data {
    width: 100%;
    margin: 40px auto;
    border-top: 1px solid var(--color-main);
    padding: 30px 5%;
  }
  .ftr-data .ftr-logo {
    width: 100%;
    margin: 0 auto;
  }
  .ftr-data .addr {
    margin-top: 30px;
    text-align: center;
    font-size: 1rem;
  }
  .ftr-data .tel {
    text-align: center;
    color: var(--color-dark);
    font-size: 1.5rem;
    margin-top: 28px;
  }
  .ftr-data .tel img {
    display: inline-block;
    vertical-align: middle;
  }
  .ftr-fix {
    width: 96%;
    position: sticky;
    bottom: -200px;
    z-index: 9999;
    display: flex;
    justify-content: space-between;
    transition: 0.3s all;
    margin-left: 2%;
  }
  .ftr-fix.active {
    bottom: 10px;
  }
  .ftr-fix a:nth-of-type(1) {
    display: flex;
    width: 49%;
    height: 70px;
    background-color: #fff;
    border: 2px solid #009DE8;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
  }
  .ftr-fix a:nth-of-type(1) img {
    width: 84%;
    height: auto;
    margin: 0 auto;
  }
  .ftr-fix a:nth-last-of-type(1) {
    display: flex;
    width: 49%;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    background-color: var(--color-main);
    font-size: 1.0625rem;
    color: #fff;
    text-decoration: none;
    line-height: 1.3;
    border: 3px solid #46C691;
    border-radius: 50px;
    padding: 0 20px 0 28px;
  }
  .ftr-fix a:nth-last-of-type(1) span.wrap {
    margin-right: 10px;
  }
  .ftr-fix a:nth-last-of-type(1) span.wrap span {
    display: block;
    font-size: 3.7vw;
  }
  .ftr-fix a:nth-last-of-type(1) img {
    width: 20px;
    height: auto;
    display: inline-block;
    vertical-align: middle;
  }
}
/*
 * object
 */
/*下層パンくず*/
ol.breadcrumbs {
  width: 100%;
  padding: 20px 40px;
  display: flex;
  flex-wrap: wrap;
}
ol.breadcrumbs li {
  list-style: none;
}
ol.breadcrumbs li::before {
  content: none;
  margin-left: 0;
}
ol.breadcrumbs li::after {
  content: ">";
  font-size: 10px;
  padding: 0 5px;
}
ol.breadcrumbs li a {
  font-size: 0.875rem;
  color: var(--color-main);
}
ol.breadcrumbs li span {
  font-size: 0.875rem;
  font-weight: normal;
}
ol.breadcrumbs li:nth-last-of-type(1)::after {
  content: none;
}

@media screen and (max-width: 767px) {
  /*下層パンくず*/
  ol.breadcrumbs {
    width: 92%;
    margin: 60px auto 0;
    padding: 14px 0;
    display: flex;
    flex-wrap: wrap;
  }
  ol.breadcrumbs li {
    list-style: none;
  }
  ol.breadcrumbs li::before {
    content: none;
    margin-left: 0;
  }
  ol.breadcrumbs li::after {
    content: ">";
    font-size: 10px;
    padding: 0 5px;
  }
  ol.breadcrumbs li a {
    font-size: 0.875rem;
    color: var(--color-main);
  }
  ol.breadcrumbs li span {
    font-size: 0.875rem;
    font-weight: normal;
  }
  ol.breadcrumbs li:nth-last-of-type(1)::after {
    content: none;
  }
}
/*ハンバーガー */
/*ボタン外側※レイアウトによってpositionや形状は適宜変更してください*/
/*activeクラスが付与されると線が回転して×に*/
.openbtn.active span:nth-of-type(1) {
  top: 30px;
  left: 28px;
  transform: translateY(6px) rotate(-45deg);
  width: 35%;
}
.openbtn.active span:nth-of-type(2) {
  top: 42px;
  left: 28px;
  transform: translateY(-6px) rotate(45deg);
  width: 35%;
}

.mm-menu {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: #fbfbfb;
  z-index: 9000;
  top: 0;
  right: -200%;
  transition: 0.8s;
  opacity: 0.2;
  overflow: auto;
  background-image: url(../img/top/sp-bg-img.png);
}

.mm-menu.active {
  top: 0;
  right: 0;
  opacity: 1;
}

.mm-page {
  position: relative;
  z-index: 8000;
}

.sp-nav-close {
  opacity: 0;
  position: fixed;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  top: 0;
  transition: 0.8s;
  pointer-events: none;
}
.sp-nav-close.active {
  opacity: 1;
  pointer-events: all;
}

@media screen and (max-width: 767px) {
  /*ハンバーガー */
  /*ボタン外側※レイアウトによってpositionや形状は適宜変更してください*/
  .openbtn {
    position: fixed;
    /*ボタン内側の基点となるためrelativeを指定*/
    width: 60px;
    height: 60px;
    cursor: pointer;
    z-index: 99999;
    right: 0;
    top: 0;
    transition: 0.3s;
    border: none;
    background-color: transparent;
  }
  /*ボタン内側*/
  .openbtn span {
    display: inline-block;
    transition: all 0.4s;
    /*アニメーションの設定*/
    position: absolute;
    left: 16px;
    height: 1px;
    background-color: var(--color-main);
  }
  .openbtn span:nth-of-type(1) {
    top: 20px;
    width: 50%;
  }
  .openbtn span:nth-of-type(2) {
    top: 28px;
    width: 30%;
  }
  /*activeクラスが付与されると線が回転して×に*/
  .openbtn.active span:nth-of-type(1) {
    top: 20px;
    left: 19px;
    transform: translateY(6px) rotate(-45deg);
    width: 35%;
  }
  .openbtn.active span:nth-of-type(2) {
    top: 32px;
    left: 19px;
    transform: translateY(-6px) rotate(45deg);
    width: 35%;
  }
  .openbtn span.menu {
    padding-top: 6px;
    font-size: 0.625rem;
    color: var(--color-main);
    background-color: transparent;
  }
  .mm-menu {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #fbfbfb;
    z-index: 9000;
    right: -200%;
    transition: 0.8s;
    opacity: 0.2;
    overflow-y: scroll;
    padding: 60px 0 40px;
    top: 0;
  }
  .mm-menu.active {
    right: 0;
    opacity: 1;
  }
  .mm-page {
    position: relative;
    z-index: 8000;
  }
}
@media screen and (max-width: 767px) {
  .mm-menu .sp-menu-link {
    min-width: 100%;
    height: auto;
    padding-top: 0;
  }
  .mm-menu .sp-menu-link .inner {
    display: block;
    width: calc(100% - 64px);
    margin: 0 auto;
  }
  .mm-menu .sp-menu-link .inner ul {
    padding-left: 0;
  }
  .mm-menu .sp-menu-link .inner ul li {
    padding: 10px 0;
    list-style-type: none;
  }
  .mm-menu .sp-menu-link .inner ul li a {
    text-decoration: none;
    font-weight: 600;
  }
  .mm-menu .sp-menu-link .inner ul li.head, .mm-menu .sp-menu-link .inner ul li .grn {
    color: var(--color-main);
  }
  .mm-menu .sp-menu-link .inner ul li.head {
    background-image: url(../img/common/icon-sp-menu.png);
    background-repeat: no-repeat;
    background-position: right 24px;
    background-size: 15px 7px;
    border-bottom: 2px solid #ccc;
    font-weight: 600;
  }
  .mm-menu .sp-menu-link .inner ul li.head.active {
    background-image: url(../img/common/icon-sp-menu-open.png);
  }
  .mm-menu .sp-menu-link .inner ul li.sub, .mm-menu .sp-menu-link .inner ul li .sub-title {
    color: var(--color-main);
    font-size: 0.9375rem;
    font-weight: 600;
  }
  .mm-menu .sp-menu-link .inner ul li.u-line {
    border-bottom: 2px solid #ccc;
  }
  .mm-menu .sp-menu-link .inner ul li.second {
    font-size: 0.9375rem;
    padding: 5px 0;
    padding-left: 10px;
  }
  .mm-menu .sp-menu-link .inner ul li ul.sub {
    display: none;
    padding-left: 0;
    margin-top: 10px;
  }
  .mm-menu .sp-menu-link .inner ul li ul.sub li a {
    font-size: 0.9375rem;
    color: var(--color-text);
  }
  .mm-menu .sp-menu-link .inner ul li.before a::before {
    content: "ー";
    color: var(--color-main);
    margin-right: 5px;
  }
  .mm-menu .sp-menu-link .inner .blank-link {
    margin: 60px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .mm-menu .sp-menu-link .inner .blank-link a {
    width: 44%;
    text-decoration: none;
    display: inline-block;
    padding: 0 0 5px 0;
    text-decoration: none;
    border-bottom: 1px solid var(--color-main);
    position: relative;
    font-size: 3.4vw;
    margin-bottom: 20px;
  }
  .mm-menu .sp-menu-link .inner .blank-link a::after {
    content: "";
    display: inline-block;
    margin-left: 8px;
    width: 14px;
    height: 14px;
    background: url(../img/common/icon-ftr-blank.png) no-repeat 0 0/contain;
  }
}
.related-posts {
  margin-top: 20px;
}
.related-posts .card-container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.related-posts .card-container .card {
  display: block;
  width: calc(33.333% - 20px);
  border: 1px solid #ddd;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.related-posts .card-container .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.related-posts .card-container .card .image img {
  width: 100%;
  height: auto;
  display: block;
}
.related-posts .card-container .card .content {
  padding: 15px;
}
.related-posts .card-container .card .content h3 {
  font-size: 1.2em;
  margin: 0 0 10px;
  color: #0073aa;
}
.related-posts .card-container .card .content h3:hover {
  text-decoration: underline;
}
.related-posts .card-container .card .content .categories {
  font-size: 0.9em;
  color: #555;
}
.related-posts .card-container .card .content .categories .category {
  display: inline-block;
  margin-right: 5px;
  background-color: #f4f4f4;
  padding: 3px 8px;
  border-radius: 3px;
}
@media screen and (max-width: 767px) {
  .related-posts .card-container {
    flex-direction: column;
    gap: 15px;
  }
  .related-posts .card-container .card {
    width: 100%;
  }
}

.p-cta {
  position: relative;
  height: auto;
  width: 100%;
  padding: 40px 0 0;
}
.p-cta .wrap {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 10;
}
.p-cta .wrap .box {
  width: 48%;
  margin: 0 1%;
  text-align: center;
  background-color: #f4f4f4;
  border-radius: 10px;
  padding: 40px 20px;
}
.p-cta .wrap .box .en {
  font-size: 3.75rem;
  line-height: 1;
  margin-top: -11px;
}
.p-cta .wrap .box p {
  margin-top: 26px;
  font-size: 1.25rem;
}
.p-cta .wrap .box p.title {
  font-size: 1.875rem;
  line-height: 1.4;
  font-weight: bold;
}
.p-cta .wrap .box p.tel {
  font-size: 2.75rem;
  line-height: 1;
  font-weight: bold;
}
.p-cta .wrap .box p.tel span {
  font-size: 2rem;
}
.p-cta .wrap .box p.fax {
  font-size: 1.5625rem;
  line-height: 1;
  font-weight: bold;
}
.p-cta .wrap .box .c-for-list {
  margin: 56px auto 0;
}
.p-cta .wrap .box .c-for-list a {
  margin: 0 auto;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .p-cta {
    position: relative;
    height: auto;
    background-image: url(../img/top/cta-bg-sp.jpg);
    background-size: cover;
    width: 100%;
    padding: 42px 0;
  }
  .p-cta .wrap {
    display: block;
    position: relative;
    z-index: 10;
  }
  .p-cta .wrap .box {
    width: 92%;
    margin: 0 auto 40px;
    text-align: center;
    background-color: #f4f4f4;
    border-radius: 10px;
    background-position: left bottom;
    padding-bottom: 30px;
  }
  .p-cta .wrap .box .en {
    font-size: 2.8125rem;
    line-height: 1;
    text-align: center;
  }
  .p-cta .wrap .box p {
    margin: 0 4%;
    margin-top: 26px;
    font-size: 1rem;
    text-align: left;
  }
  .p-cta .wrap .box p a {
    text-decoration: none;
  }
  .p-cta .wrap .box p.title {
    font-size: 1.375rem;
    line-height: 1.4;
    font-weight: bold;
    text-align: center;
  }
  .p-cta .wrap .box p.tel {
    font-size: 2.0625rem;
    line-height: 1;
    font-weight: bold;
    text-align: center;
    margin-top: 12px;
  }
  .p-cta .wrap .box p.tel span {
    font-size: 1.25rem;
  }
  .p-cta .wrap .box p.fax {
    font-size: 1.25rem;
    line-height: 1;
    font-weight: bold;
    text-align: center;
  }
  .p-cta .wrap .box .c-for-list {
    margin: 30px auto 0;
  }
  .p-cta .wrap .box .c-for-list a {
    margin: 0 auto;
    color: #fff;
  }
  .p-cta .wrap .box:nth-last-of-type(1) {
    margin-bottom: 0;
  }
}
.c-heading-lv2 + *,
.c-heading-lv3 + *,
.c-heading-lv4 + *,
.c-heading-lv5 + *,
.c-heading-lv6 + *,
:where(.u-editor) h2:where(:not(.is-reset-wp-block)) + *,
:where(.u-editor) h3:where(:not(.is-reset-wp-block)) + *,
:where(.u-editor) h4:where(:not(.is-reset-wp-block)) + *,
:where(.u-editor) h5:where(:not(.is-reset-wp-block)) + *,
:where(.u-editor) h6:where(:not(.is-reset-wp-block)) + * {
  margin-top: 0 !important;
}

.c-heading-lv2,
:where(.u-editor) h2:where(:not(.is-reset-wp-block)) {
  margin: 120px 0 0;
  font-size: 1.75rem;
  line-height: 1.5;
  padding: 24px 0;
  position: relative;
}
.c-heading-lv2::before,
:where(.u-editor) h2:where(:not(.is-reset-wp-block))::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 190px;
  height: 3px;
  background-color: var(--color-sub);
  z-index: 1;
}
.c-heading-lv2:after,
:where(.u-editor) h2:where(:not(.is-reset-wp-block)):after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 60px;
  height: 3px;
  background-color: var(--color-main);
  z-index: 2;
}

.c-heading-lv3,
:where(.u-editor) h3:where(:not(.is-reset-wp-block)) {
  margin: 72px 0 16px;
  font-size: 1.5rem;
  line-height: 1.5;
}
.c-heading-lv3::before,
:where(.u-editor) h3:where(:not(.is-reset-wp-block))::before {
  content: url(../img/top/icon-h3-closs.svg);
  vertical-align: super;
  margin-right: 10px;
}

.c-heading-lv4,
:where(.u-editor) h4:where(:not(.is-reset-wp-block)) {
  margin: 56px 0 16px;
  font-size: 1.25rem;
  border-left: 4px solid var(--color-main);
  line-height: 1.5;
  padding: 0 0 0 16px;
  margin-bottom: 26px;
}

.c-heading-lv5,
:where(.u-editor) h5:where(:not(.is-reset-wp-block)) {
  margin: 40px 0 16px;
  font-size: 1.125rem;
  line-height: 1.5;
  color: #727272;
}

.c-heading-lv6,
:where(.u-editor) h6:where(:not(.is-reset-wp-block)) {
  margin: 20px 0 16px;
  font-size: 1.0625rem;
  line-height: 1.5;
}

@media screen and (max-width: 767px) {
  .c-heading-lv2,
  :where(.u-editor) h2:where(:not(.is-reset-wp-block)) {
    font-size: 1.5rem;
  }
  .c-heading-lv3,
  :where(.u-editor) h3:where(:not(.is-reset-wp-block)) {
    font-size: 1.25rem;
  }
  .c-heading-lv4,
  :where(.u-editor) h4:where(:not(.is-reset-wp-block)) {
    font-size: 1.25rem;
  }
  .c-heading-lv5,
  :where(.u-editor) h5:where(:not(.is-reset-wp-block)) {
    font-size: 1.125rem;
  }
}
.c-paragraph,
:where(.u-editor) p {
  margin-top: 1.2em;
  line-height: 2;
  font-size: 1rem;
}

.c-lead {
  margin-top: 24px;
  line-height: 2;
  color: var(--color-main);
  text-align: center;
  font-size: 1.125rem;
  font-weight: 700;
}

.c-lead02 {
  margin-top: 120px;
  line-height: 1.5;
  color: var(--color-main);
  text-align: center;
  font-size: 1.875rem;
  font-weight: 700;
}

.c-lead03 {
  margin-top: 8px;
  line-height: 1.5;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 500;
}

.c-lead04 {
  margin-top: 24px;
  line-height: 2;
  font-size: 1.5rem;
}

@media screen and (max-width: 767px) {
  .c-paragraph,
  :where(.u-editor) p {
    margin-top: 1em;
    line-height: 1.8;
  }
  .c-lead {
    line-height: 1.7;
    text-align: left;
  }
  .c-lead02 {
    margin-top: 60px;
    text-align: left;
    font-size: 1.375rem;
  }
  .c-lead03 {
    text-align: left;
    font-size: 1.125rem;
  }
  .c-lead04 {
    line-height: 1.8;
    font-size: 1.1875rem;
  }
}
.c-unordered-list,
:where(.u-editor) ul:where(:not(.is-reset-wp-block)) {
  margin-top: 40px;
  padding: 0;
}
.c-unordered-list li,
:where(.u-editor) ul:where(:not(.is-reset-wp-block)) li {
  list-style-type: none;
  text-indent: -0.9em;
  margin-left: 0.9em;
}
.c-unordered-list li:before,
:where(.u-editor) ul:where(:not(.is-reset-wp-block)) li:before {
  content: url(../img/page/icon-list.svg);
  margin-right: 10px;
}

.c-order-list,
:where(.u-editor) ol:where(:not(.is-reset-wp-block)) {
  list-style-type: none;
  counter-reset: count 0;
  margin-top: 40px;
  padding: 0;
}
.c-order-list li,
:where(.u-editor) ol:where(:not(.is-reset-wp-block)) li {
  text-indent: -1.4em;
  margin-left: 1.4em;
}
.c-order-list li a,
:where(.u-editor) ol:where(:not(.is-reset-wp-block)) li a {
  text-decoration: none;
}
.c-order-list li a:hover,
:where(.u-editor) ol:where(:not(.is-reset-wp-block)) li a:hover {
  color: var(--color-main);
}
.c-order-list li:before,
:where(.u-editor) ol:where(:not(.is-reset-wp-block)) li:before {
  content: counter(count) ". ";
  counter-increment: count 1;
  color: var(--color-main);
  font-weight: bold;
}

dt,
dd {
  font-size: 1rem;
}

@media screen and (max-width: 767px) {
  .c-unordered-list,
  :where(.u-editor) ul:where(:not(.is-reset-wp-block)) {
    margin-top: 40px;
  }
  .c-order-list,
  :where(.u-editor) ol:where(:not(.is-reset-wp-block)) {
    list-style-type: none;
    counter-reset: count 0;
    margin-top: 40px;
  }
  .c-order-list li a,
  :where(.u-editor) ol:where(:not(.is-reset-wp-block)) li a {
    text-decoration: none;
  }
  .c-order-list li a:hover,
  :where(.u-editor) ol:where(:not(.is-reset-wp-block)) li a:hover {
    color: var(--color-main);
  }
  .c-order-list li:before,
  :where(.u-editor) ol:where(:not(.is-reset-wp-block)) li:before {
    content: counter(count) ". ";
    counter-increment: count 1;
    color: var(--color-main);
    padding-left: 3px;
    margin-right: 5px;
    font-weight: bold;
  }
}
.c-for-list,
.wp-block-button:where(:not(.is-reset-wp-block)) {
  text-align: center;
  margin: 30px auto 0;
}
.c-for-list a,
.wp-block-button:where(:not(.is-reset-wp-block)) a {
  display: inline-block;
  position: relative;
  color: var(--color-text);
  font-size: 1.125rem;
  background: var(--color-white);
  padding: 28px 92px 30px 40px;
  border-radius: 47px;
  text-decoration: none;
  font-weight: bold;
  border: 2px solid var(--color-sub);
  box-shadow: 0 3px 10px 0 #ABE2D6;
  transition: 0.3s;
}
.c-for-list a::after,
.wp-block-button:where(:not(.is-reset-wp-block)) a::after {
  content: url(../img/common/icon-arrow-btn.png);
  right: 30px;
  position: absolute;
  top: 50%;
  transform: translateY(-37%);
}
.c-for-list a:hover,
.wp-block-button:where(:not(.is-reset-wp-block)) a:hover {
  background: var(--color-main);
  color: var(--color-white);
  font-weight: bold;
}
.c-for-list a:hover::after,
.wp-block-button:where(:not(.is-reset-wp-block)) a:hover::after {
  content: url(../img/common/icon-button-white.png);
}
.c-for-list.red a,
.wp-block-button:where(:not(.is-reset-wp-block)).red a {
  background-color: var(--color-main);
  color: #fff;
  border-color: var(--color-main);
}
.c-for-list.red a::after,
.wp-block-button:where(:not(.is-reset-wp-block)).red a::after {
  content: url(../img/common/icon-red-white.png);
}
.c-for-list.red a:hover,
.wp-block-button:where(:not(.is-reset-wp-block)).red a:hover {
  background: var(--color-main);
  color: var(--color-main);
  font-weight: bold;
}
.c-for-list.red a:hover::after,
.wp-block-button:where(:not(.is-reset-wp-block)).red a:hover::after {
  content: url(../img/common/icon-red.png);
  background-color: var(--color-main);
}

.c-for-list {
  margin: 40px auto 0;
}

:where(.u-editor) .wp-block-buttons:where(:not(.is-reset-wp-block)) {
  margin-top: 40px;
}

.entry-btn a {
  display: flex;
  width: 100%;
  align-items: center;
  height: 117px;
  background-color: var(--color-main);
  position: relative;
  color: #fff;
  font-size: 1.5625rem;
  font-weight: 700;
  line-height: 1;
  transition: 0.3s;
  border-radius: 60px;
  text-decoration: none;
  text-align: left;
  padding: 40px;
  box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.1);
}
.entry-btn a::after {
  content: url(../img/common/icon-arrow-white.png);
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
}
.entry-btn a:hover {
  background: #46C691;
}

@media screen and (max-width: 767px) {
  .c-for-list,
  .wp-block-button:where(:not(.is-reset-wp-block)) {
    text-align: center;
    margin: 30px auto 64px;
    display: block !important;
  }
  .c-for-list a,
  .wp-block-button:where(:not(.is-reset-wp-block)) a {
    position: relative;
    display: block;
    width: 89%;
    font-size: 1.125rem;
    padding: 17px 84px 17px 30px;
    margin: 0 auto;
    text-align: left;
    line-height: 1.2;
  }
  .c-for-list a::after,
  .wp-block-button:where(:not(.is-reset-wp-block)) a::after {
    transform: translateY(-50%);
    right: 24px;
  }
  :where(.u-editor) .wp-block-buttons:where(:not(.is-reset-wp-block)) {
    margin-top: 30px;
  }
}
.c-blockquote,
:where(.u-editor) blockquote:where(:not(.is-reset-wp-block)) {
  margin-top: 40px;
  line-height: 1.8;
  font-size: 1rem;
  padding: 26px 80px;
  background-color: var(--color-light);
  border-radius: 30px;
  position: relative;
}
.c-blockquote cite,
:where(.u-editor) blockquote:where(:not(.is-reset-wp-block)) cite {
  display: block;
  text-align: right;
  margin-top: 20px;
  color: var(--color-grey);
  font-size: 0.875rem;
}
.c-blockquote::before,
:where(.u-editor) blockquote:where(:not(.is-reset-wp-block))::before {
  content: url(../img/page/icon-blockquote.svg);
  position: absolute;
  top: -10px;
  left: 20px;
}
.c-blockquote::after,
:where(.u-editor) blockquote:where(:not(.is-reset-wp-block))::after {
  content: url(../img/page/icon-blockquote-end.svg);
  position: absolute;
  bottom: -20px;
  right: 20px;
}

@media screen and (max-width: 767px) {
  .c-blockquote,
  :where(.u-editor) blockquote:where(:not(.is-reset-wp-block)) {
    width: 90%;
    margin: 40px auto 0;
    line-height: 1.8;
    font-size: 0.875rem;
    padding: 30px 19px;
    position: relative;
  }
  .c-blockquote cite,
  :where(.u-editor) blockquote:where(:not(.is-reset-wp-block)) cite {
    display: block;
    text-align: right;
    margin-top: 20px;
    font-size: 0.75rem;
  }
}
.c-image,
:where(.u-editor) .wp-block-image:where(:not(.is-reset-wp-block)) {
  margin-top: 40px;
  line-height: 1;
}
.c-image img,
:where(.u-editor) .wp-block-image:where(:not(.is-reset-wp-block)) img {
  max-width: 100%;
  height: auto;
  border-radius: 30px;
}
.c-image figcaption,
:where(.u-editor) .wp-block-image:where(:not(.is-reset-wp-block)) figcaption {
  line-height: 1.7;
  font-size: 0.75rem;
  margin-top: 16px;
}

.c-image.is-no-radius img,
:where(.u-editor) .wp-block-image:where(:not(.is-reset-wp-block)).is-no-radius img {
  border-radius: 0;
}

@media screen and (max-width: 767px) {
  .c-image,
  :where(.u-editor) .wp-block-image:where(:not(.is-reset-wp-block)) {
    margin-top: 40px;
  }
  .c-image img,
  :where(.u-editor) .wp-block-image:where(:not(.is-reset-wp-block)) img {
    max-width: 100%;
    height: auto;
  }
  .c-image figcaption,
  :where(.u-editor) .wp-block-image:where(:not(.is-reset-wp-block)) figcaption {
    font-size: 0.75rem;
    margin-top: 16px;
  }
}
.c-iframe,
:where(.u-editor) iframe {
  max-width: 100%;
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
}

.wp-block-embed-youtube {
  margin-top: 30px;
}

.u-editor {
  --table-border-color: #B2B2B2;
  --table-bg-color: #EDFCF9;
}
.u-editor .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table,
.u-editor table {
  width: 100%;
  margin-top: 40px;
  border-collapse: collapse;
}
.u-editor .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr,
.u-editor table tr {
  border-bottom: 1px solid var(--table-border-color);
}
.u-editor .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr th,
.u-editor .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr td,
.u-editor table tr th,
.u-editor table tr td {
  line-height: 1.3;
  font-size: 1rem;
  padding: 15px 30px;
  text-align: left;
  border-color: var(--table-border-color);
}
.u-editor .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table thead th,
.u-editor table thead th {
  background-color: var(--table-bg-color);
  border-right: 1px solid var(--table-border-color);
}
.u-editor .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table thead th:nth-last-of-type(1),
.u-editor table thead th:nth-last-of-type(1) {
  border-right: none;
}
.u-editor .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tbody th,
.u-editor table tbody th {
  background-color: var(--table-bg-color);
  border-right: none;
}
.u-editor .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tbody td,
.u-editor table tbody td {
  border-right: 1px solid var(--table-border-color);
}
.u-editor .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tbody tr:nth-last-of-type(1),
.u-editor table tbody tr:nth-last-of-type(1) {
  border-bottom: none;
}

@media screen and (max-width: 767px) {
  .u-editor .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table.has-fixed-layout:not(.is-stacked-on-mobile) {
    width: max-content !important;
  }
  .u-editor .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table,
  .u-editor table {
    margin-top: 40px;
    border-collapse: collapse;
    border: 1px solid var(--table-border-color);
  }
  .u-editor .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr,
  .u-editor table tr {
    border-bottom: 1px solid var(--table-border-color);
  }
  .u-editor .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr th,
  .u-editor .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr td,
  .u-editor table tr th,
  .u-editor table tr td {
    line-height: 1.3;
    font-size: 1rem;
    padding: 4%;
    text-align: left;
    border-color: var(--table-border-color);
  }
  .u-editor .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table thead th,
  .u-editor table thead th {
    background-color: var(--table-bg-color);
    border-right: 1px solid var(--table-border-color);
  }
  .u-editor .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tbody th,
  .u-editor table tbody th {
    background-color: var(--table-bg-color);
    border-right: 1px solid var(--table-border-color);
  }
  .u-editor .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tbody td,
  .u-editor table tbody td {
    border-right: 1px solid var(--table-border-color);
  }
}
.wp-block-media-text {
  gap: 36px;
  margin: 80px 0 0;
}

.wp-block-media-text > .wp-block-media-text__content {
  padding: 0 !important;
}

@media screen and (max-width: 767px) {
  .wp-block-media-text {
    gap: 18px;
    margin: 60px 0 0;
  }
}
.wp-block-gallery.has-nested-images.is-layout-flex {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 50px 0 0;
}

.wp-block-gallery > .wp-block-image {
  width: 100% !important;
}

.wp-block-group.is-layout-grid {
  gap: 40px;
}

@media screen and (max-width: 767px) {
  .wp-block-gallery.has-nested-images.is-layout-flex {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 30px 0 0;
  }
  .wp-block-group.is-layout-grid {
    gap: 20px;
  }
  .is-layout-grid.is-sp-1col {
    grid-template-columns: 1fr;
  }
  .wp-block-columns.is-sp-column-reverse {
    flex-direction: column-reverse;
  }
}
.wp-pagenavi {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 88px auto 0;
  text-align: center;
}
.wp-pagenavi span {
  border: none !important;
}
.wp-pagenavi span,
.wp-pagenavi a {
  display: block;
  margin: 0;
  padding: 18px 20px;
  line-height: 2;
  color: var(--color-main);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
}
.wp-pagenavi span.current,
.wp-pagenavi a.current {
  background-color: var(--color-main);
  color: var(--color-white);
  font-weight: 500;
}
.wp-pagenavi .pages,
.wp-pagenavi .extend {
  padding: 0;
}
.wp-pagenavi .pages {
  border: none;
}
.wp-pagenavi span.current,
.wp-pagenavi a {
  min-width: 40px;
  border: 1px solid var(--color-main) !important;
}
.wp-pagenavi a {
  border: 1px solid var(--color-main) !important;
}
.wp-pagenavi a:hover {
  background-color: var(--color-main);
  color: #fff;
}

.next-prev {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  margin: 60px auto 0;
}
.next-prev .prev,
.next-prev .next {
  max-width: 384px;
}
.next-prev .prev a,
.next-prev .next a {
  display: inline-block;
  position: relative;
  line-height: 2;
  color: var(--color-main);
  font-size: 1rem;
  font-weight: 500;
  transition: 0.3s;
}
.next-prev .prev a:hover,
.next-prev .next a:hover {
  text-decoration: none;
}
.next-prev .prev a::before,
.next-prev .next a::before {
  position: absolute;
}
.next-prev .prev {
  margin-right: auto;
}
.next-prev .prev a {
  padding-left: 1em;
}
.next-prev .prev a::before {
  content: "«";
  top: 0;
  left: 0;
}
.next-prev .next {
  margin-left: auto;
}
.next-prev .next a {
  padding-right: 1em;
}
.next-prev .next a::before {
  content: "»";
  position: absolute;
  top: 0;
  right: 0;
}

@media screen and (max-width: 767px) {
  .wp-pagenavi {
    margin: 70px auto 0;
    text-align: center;
    gap: 8px;
  }
  .wp-pagenavi .pages {
    display: none;
  }
  .next-prev {
    flex-direction: column;
    margin: 42px auto 0;
  }
  .next-prev .prev,
  .next-prev .next {
    max-width: none;
  }
}
.fadein {
  opacity: 0;
  transform: translate(0, 200px);
  transition: all 1s;
}

.fadein.active {
  opacity: 1;
  transform: translate(0, 0);
}

.js-delay-fadein {
  opacity: 0;
  transform: translate(0, 200px);
  transition: all 1s;
}
.js-delay-fadein.active {
  opacity: 1;
  transform: translate(0, 0);
}

.js-delay-fadein-only {
  opacity: 0;
  transition: opacity 2s;
}
.js-delay-fadein-only.active {
  opacity: 1;
}

.fadein-right {
  opacity: 0;
  transform: translateX(80px);
  transition: transform 1s ease, opacity 1s ease;
}
.fadein-right.active {
  opacity: 1;
  transform: translateX(0);
}

:where(.u-editor) .wp-block-column > :first-child,
:where(.u-editor) .wp-block-group__inner-container > :first-child,
:where(.u-editor) .wp-block-media-text__content > :first-child,
:where(.u-editor) blockquote.wp-block-quote > :first-child {
  margin-top: 0 !important;
}
:where(.u-editor) .wp-block-column > :last-child,
:where(.u-editor) .wp-block-group__inner-container > :last-child,
:where(.u-editor) .wp-block-media-text__content > :last-child,
:where(.u-editor) blockquote.wp-block-quote > :last-child {
  margin-bottom: 0 !important;
}

.c-slider .splide__slide,
.c-slider--sp .splide__slide {
  list-style: none;
}
.c-slider .splide__slide::before,
.c-slider--sp .splide__slide::before {
  display: none !important;
}

.c-slider02 .splide__slide {
  height: 590px;
  list-style: none;
}
.c-slider02 .splide__slide::before {
  display: none !important;
}

.c-slider,
.c-slider--sp {
  margin-top: 50px;
}
.c-slider .splide__controls,
.c-slider--sp .splide__controls {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.c-slider .splide__toggle .splide__toggle__play,
.c-slider .splide__toggle .splide__toggle__pause,
.c-slider--sp .splide__toggle .splide__toggle__play,
.c-slider--sp .splide__toggle .splide__toggle__pause {
  width: 32px;
  height: 32px;
  text-indent: -9999px;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 12px auto;
}
.c-slider .splide__toggle .splide__toggle__play,
.c-slider--sp .splide__toggle .splide__toggle__play {
  background-image: url(../img/common/icon-slider-play01.png);
}
.c-slider .splide__toggle .splide__toggle__pause,
.c-slider--sp .splide__toggle .splide__toggle__pause {
  background-image: url(../img/common/icon-slider-stop01.png);
}
.c-slider .splide__toggle:not(.is-active) .splide__toggle__play,
.c-slider--sp .splide__toggle:not(.is-active) .splide__toggle__play {
  display: block;
}
.c-slider .splide__toggle.is-active .splide__toggle__pause,
.c-slider--sp .splide__toggle.is-active .splide__toggle__pause {
  display: block;
}
.c-slider .splide__pagination button,
.c-slider .splide__toggle,
.c-slider--sp .splide__pagination button,
.c-slider--sp .splide__toggle {
  appearance: none;
  margin: 0;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  cursor: pointer;
}
.c-slider .splide__pagination,
.c-slider--sp .splide__pagination {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 10px;
  padding: 0;
}
.c-slider .splide__pagination button,
.c-slider--sp .splide__pagination button {
  display: block;
  width: 10px;
  height: 10px;
  background: var(--color-grey);
  border-radius: 10px;
}
.c-slider .splide__pagination button.is-active,
.c-slider--sp .splide__pagination button.is-active {
  background: var(--color-accent);
}
.c-slider .splide__pagination > li,
.c-slider--sp .splide__pagination > li {
  margin: 0;
  padding: 0;
}
.c-slider .splide__pagination > li::before,
.c-slider--sp .splide__pagination > li::before {
  display: none !important;
}

.c-slider--sp {
  margin-top: 50px;
}

.c-slider02 {
  margin-top: 50px;
}

.c-slider02__main img,
.c-slider02__thumbnail img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.c-slider02__main {
  position: relative;
}
.c-slider02__main .splide__arrows {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.c-slider02__main .splide__arrow {
  --arrow-space: 26px;
  appearance: none;
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
  padding: 0;
  width: 40px;
  height: 40px;
  background-color: #fff;
  border-radius: 20px;
  text-indent: -9999px;
  overflow: hidden;
  border: none;
  cursor: pointer;
  pointer-events: visible;
}
.c-slider02__main .splide__arrow::before {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 8px);
  width: 16px;
  height: 16px;
  border-top: 3px solid #000;
}
.c-slider02__main .splide__arrow--prev {
  left: var(--arrow-space);
}
.c-slider02__main .splide__arrow--prev::before {
  left: 36%;
  border-left: 3px solid #000;
  transform: rotate(-45deg);
}
.c-slider02__main .splide__arrow--next {
  right: var(--arrow-space);
}
.c-slider02__main .splide__arrow--next::before {
  right: 36%;
  border-right: 3px solid #000;
  transform: rotate(45deg);
}

.c-slider__img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
}

.c-slider02__thumbnail {
  margin-top: 40px;
}
.c-slider02__thumbnail .splide__slide {
  width: 160px;
  height: 153px;
  transition: opacity 0.2s ease-in-out;
  cursor: pointer;
  /* Safari用のハードウェアアクセラレーション */
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  will-change: opacity;
}
.c-slider02__thumbnail .splide__slide:not(.is-active) {
  opacity: 0.3;
}
.c-slider02__thumbnail .splide__slide.is-active {
  opacity: 1;
}

.c-card-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px 24px;
  margin: 40px 0 0;
  padding: 0;
}
.c-card-wrap > li {
  list-style: none;
  padding: 0;
}
.c-card-wrap > li::before {
  display: none;
}
.c-card-wrap > .c-card {
  margin: 0;
}

.c-card-wrap.c-card-wrap--columns3 {
  grid-template-columns: repeat(3, 1fr);
}

.c-card {
  margin-top: 50px;
}

.c-card__type {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-decoration: none;
}
.c-card__type:hover .c-card__img {
  opacity: 0.6;
}
.c-card__type > :first-child {
  margin-top: 0 !important;
}
.c-card__type > :last-child {
  margin-bottom: 0 !important;
}

.c-card__type.c-card__type--horizon {
  flex-direction: row;
  gap: 24px;
}

.c-card__img {
  aspect-ratio: 317/220;
  overflow: hidden;
  transition: 0.2s opacity;
}
:where(.c-card__type--horizon) > .c-card__img {
  width: 317px;
}
.c-card__img > img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.c-card__detail {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.c-card__prop {
  display: flex;
  align-items: center;
  gap: 12px;
}
:where(.c-card__type--horizon > .c-card__detail) > .c-card__prop {
  flex-direction: column;
  align-items: flex-start;
}

.c-card__date {
  line-height: 1.5;
  color: var(--color-main);
  font-size: 1.4rem;
}

.c-card__category-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin: 0;
  padding: 0;
}
.c-card__category-wrap > li {
  list-style: none;
}

.c-card__category {
  padding: 8px 10px;
  line-height: 1;
  font-size: 1.2rem;
  font-weight: 500;
  border: 1px solid var(--color-grey);
}
.c-card__category.c-card__category--tag {
  color: var(--color-white);
  background-color: var(--color-main);
}

.c-card__title {
  line-height: 1.5;
  font-size: 1rem;
}

.c-card__tag-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 10px;
  margin: 10px 0 0;
  padding: 0;
}
.c-card__tag-wrap > li {
  list-style: none;
}

.c-card__tag {
  color: var(--color-grey);
  font-size: 1.4rem;
}

.c-simple-posts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin: 30px 0 0;
  padding: 0;
}

.c-simple-posts__item {
  list-style: none;
  border-bottom: 1px solid #e0e0e0;
  text-indent: 0;
  margin-left: 0;
}
.c-simple-posts__item::before {
  content: none;
  margin-right: 0;
}

.c-simple-posts__item-link {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-bottom: 16px;
  text-decoration: none;
}

.c-simple-posts__prop {
  display: flex;
  align-items: baseline;
  gap: 15px;
}

.c-simple-posts__date {
  flex-shrink: 0;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--color-grey);
}

.c-simple-posts__category-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.c-simple-posts__category {
  display: inline-block;
  color: var(--color-main);
  padding: 8px 10px;
  line-height: 1;
  font-size: 0.875rem;
  background-color: var(--color-white);
  border: 1px solid var(--color-grey);
  border-radius: 5px;
  font-weight: 700;
}

.c-simple-posts__tag-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 50px 10px;
  margin: 10px 0 0;
  padding: 0;
}
.c-simple-posts__tag-wrap > li {
  list-style: none;
}

.c-simple-posts__tag {
  color: var(--color-grey);
  font-size: 1.4rem;
}

.c-simple-posts__title {
  margin: 0;
  line-height: 1.6;
  color: var(--color-text);
  font-size: 1.125rem;
  font-weight: 500;
}
.c-simple-posts__title .c-simple-posts__item-link:hover {
  text-decoration: underline;
  color: var(--color-main);
}

@media screen and (min-width: 768px) {
  .c-slider--sp .splide__list {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .c-slider--sp .splide__controls {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .c-slider .splide__slide,
  .c-slider02 .splide__slide,
  .c-slider--sp .splide__slide {
    height: 55vw;
  }
  .c-slider--sp .splide__controls {
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }
  .c-slider02__thumbnail {
    margin-top: 10px;
  }
  .c-slider02__thumbnail .splide__slide {
    height: 12vw;
    transition: opacity 0.2s ease-in-out;
    /* Safari用のハードウェアアクセラレーション */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    will-change: opacity;
  }
  .c-card-wrap,
  .c-card-wrap.c-card-wrap--columns3 {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  :where(.c-card__type--horizon) > .c-card__img {
    width: 50%;
  }
  .c-card__prop {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .c-card__category-wrap {
    gap: 4px;
  }
  .c-card__category {
    font-size: 1.4rem;
  }
}
.c-qa-layout {
  margin-top: 51px;
}

.c-qa-layout + .c-qa-layout {
  margin-top: 15px;
}

.c-qa-layout__head,
.c-qa-layout__body {
  display: flex;
  align-items: baseline;
  gap: 20px;
}

.c-qa-layout__head {
  margin: 0;
  padding: 16px 32px 16px 16px;
  background-color: var(--color-light);
  border-radius: 36px;
  align-items: center;
}
.c-qa-layout__head::before {
  content: none;
}

.c-qa-layout__body {
  padding: 10px 16px;
  background-color: var(--color-white);
}

.c-qa-layout__head__pref,
.c-qa-layout__body__pref {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  color: transparent;
  text-indent: -9999px;
  text-align: center;
}

.c-qa-layout__head__pref {
  background-image: url(../img/page/icon_q.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}

.c-qa-layout__body__pref {
  background-image: url(../img/page/icon_a.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}

.c-qa-layout__title {
  flex-grow: 1;
  line-height: 1.4;
  font-size: 1.125rem;
  font-weight: 700;
}

.c-qa-layout__detail {
  flex-grow: 1;
}
.c-qa-layout__detail > :first-child {
  margin-top: 0 !important;
}
.c-qa-layout__detail > :last-child {
  margin-bottom: 0 !important;
}

.c-box {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 48px 0 0;
  padding: 40px;
  background-color: var(--color-light);
  border-radius: 30px;
}

:where(.wp-block-column) .c-box {
  height: 100%;
}

.c-box__head > :first-child,
.c-box__detail > :first-child,
.c-box-v2__head > :first-child,
.c-box-v2__detail > :first-child {
  margin-top: 0 !important;
}
.c-box__head > :last-child,
.c-box__detail > :last-child,
.c-box-v2__head > :last-child,
.c-box-v2__detail > :last-child {
  margin-bottom: 0 !important;
}

.c-box__title {
  line-height: 1.5;
  text-align: center;
  font-size: 1.75rem;
  font-weight: 700;
}

.c-box-v2 {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  margin: 64px 0 0;
  padding: 67px 64px;
  background-color: var(--color-light);
  border-radius: 60px;
}

.c-box-v2__decoration {
  position: absolute;
  top: 0;
  left: 50%;
  width: 443px;
  transform: translateX(-50%);
}

.c-box-v2__title {
  display: flex;
  justify-content: center;
  width: 100%;
  line-height: 1.5;
  text-align: center;
  font-size: 1.75rem;
  font-weight: 700;
}

.c-link-box {
  position: relative;
  margin: 24px auto 0;
  overflow: hidden;
  border-radius: 30px;
}

.c-link-box__type {
  display: flex;
  align-items: center;
  gap: 39px;
  padding: 15px 80px;
  min-height: 200px;
  text-decoration: none;
  color: var(--color-white);
}

.c-link-box__img {
  flex-shrink: 0;
  max-width: 146px;
}

.c-link-box__detail {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.c-link-box__detail > :first-child {
  margin-top: 0 !important;
}
.c-link-box__detail > :last-child {
  margin-bottom: 0 !important;
}

.c-link-box__lead,
.c-link-box__text {
  letter-spacing: 0.05em;
  line-height: 1.5;
  font-weight: 700;
}

.c-link-box__lead {
  font-size: 1.875rem;
}

.c-link-box__text {
  font-size: 1.5rem;
}

.c-link-box__bg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  transition: 0.3s ease;
}
.c-link-box__bg img {
  display: block;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
:where(a:hover) .c-link-box__bg {
  opacity: 0.7;
  transform: scale(1.1);
}

.c-point-box-list {
  display: flex;
  justify-content: center;
  margin: 40px 0 0;
  padding: 0;
  gap: 24px;
}
.c-point-box-list > li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 16px;
  width: 232px;
  list-style: none;
  background-color: var(--color-light);
  border-radius: 30px;
}

.c-point-box-list__pref {
  padding: 0 10px;
  line-height: 1.5;
  color: var(--color-main);
  font-size: 1.25rem;
  font-weight: 700;
  border-bottom: 3px solid var(--color-sub);
}

.c-point-box-list__number {
  font-size: 1.875rem;
}

.c-point-box-list__text {
  line-height: 1.4;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .c-box {
    margin: 30px 0 0;
    padding: 40px 32px;
    border-radius: 60px;
  }
  .c-box__title {
    font-size: 1.375rem;
  }
  .c-box-v2 {
    gap: 40px;
    margin: 64px calc(-64 / 828 * 100vw) 0;
    padding: 60px calc(64 / 828 * 100vw);
  }
  .c-box-v2__decoration {
    width: 313px;
    top: 32px;
  }
  .c-box-v2__title {
    font-size: 1.375rem;
  }
  .c-link-box__type {
    gap: 18px;
    padding: 19px 20px;
    min-height: 152px;
  }
  .c-link-box__img {
    max-width: 100px;
  }
  .c-link-box__lead {
    font-size: 4.8309178744vw;
  }
  .c-link-box__text {
    font-size: 3.8647342995vw;
  }
  .c-point-box-list {
    flex-direction: column;
    gap: 8px;
  }
  .c-point-box-list > li {
    gap: 10px;
    padding: 12px 16px 30px;
    width: 100%;
  }
  .c-point-box-list__text {
    line-height: 1.5;
    font-size: 1.1875rem;
  }
}
.c-flow-list {
  display: grid;
  justify-items: center;
  grid-template-columns: repeat(6, 1fr);
  gap: 3rem;
  margin: 50px 0 0;
}
.c-flow-list > li {
  margin: 0;
  padding: 30px 15px;
  text-indent: 0;
}

.c-flow-list__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
  background-color: var(--color-light-base);
  border: 1px solid var(--color-main);
}
.c-flow-list__item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -2.3rem;
  margin: 0;
  width: 1rem;
  height: 1.5rem;
  font-size: inherit;
  transform: translateY(-50%);
  background-color: var(--color-main);
  clip-path: polygon(0 0, 0 100%, 100% 50%);
}
.c-flow-list__item:first-child::before {
  display: none;
}

.c-flow-list__text {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
}

.c-cta-section {
  background-color: var(--color-light);
  padding-bottom: 42px;
}
.c-cta-section h2 img {
  margin: 0 auto;
}

.c-cta-section__title {
  margin: 20px auto 46px;
  font-size: 1.5625rem;
  font-weight: 700;
  text-align: center;
}

.c-cta-card-wrap {
  width: 1000px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 66px;
  margin: 0 auto;
}

.c-cta-card {
  width: 467px;
  height: 240px;
  text-align: center;
  margin: 0;
  padding: 0;
}

.c-cta-card__type {
  display: block;
  text-align: center;
  padding: 40px 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-white);
  border-radius: 15px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.c-cta-card__type p.title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 36px;
}
.c-cta-card__type p.sub {
  font-size: 0.875rem;
  margin-top: 36px;
}
.c-cta-card__type p img {
  margin: 0 auto;
}
.c-cta-card__type:hover {
  opacity: 0.7;
}
.c-cta-card__type > :first-child {
  margin-top: 0 !important;
}
.c-cta-card__type > :last-child {
  margin-bottom: 0 !important;
}

.c-cta-card-wrap .c-cta-card:nth-last-of-type(1) p.title {
  margin-bottom: 15px;
}
.c-cta-card-wrap .c-cta-card:nth-last-of-type(1) p.sub {
  margin-top: 12px;
}
.c-cta-card-wrap .c-cta-card:nth-last-of-type(1) p.kochira {
  font-weight: 700;
}
.c-cta-card-wrap .c-cta-card:nth-last-of-type(1) p.kochira img {
  display: inline-block;
  vertical-align: middle;
  margin-left: 10px;
}

.c-sns-list {
  display: flex;
  gap: 24px;
  margin: 75px 0 0;
  padding: 0;
}
.c-sns-list > li {
  list-style: none;
}

.c-sns-list--contact {
  justify-content: center;
}

.c-sns__type {
  display: block;
}

@media screen and (max-width: 767px) {
  .c-flow-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 500px;
    margin-inline: auto;
    padding-right: 20px;
  }
  .c-flow-list > li {
    padding: 15px;
  }
  .c-flow-list__item::before {
    left: calc(100% + 12px);
    width: 10px;
    height: 15px;
  }
  .c-flow-list__item:first-child::before {
    display: block;
  }
  .c-flow-list__item:last-child::before {
    display: none;
  }
  .c-flow-list__text {
    font-size: 1rem;
  }
  .c-cta-card-wrap {
    grid-template-columns: 1fr;
    width: 89%;
    display: block;
    margin: 0 auto;
  }
  .c-cta-card {
    width: 100%;
    height: auto;
  }
  .c-cta-card:nth-of-type(1) {
    margin-bottom: 20px;
  }
  .c-cta-card p.kochira {
    font-size: 1rem;
  }
  .c-cta-card__type {
    padding: 15px 10px;
    min-height: 100px;
  }
  .c-cta-card__type p.title {
    font-size: 1.1875rem;
    margin-bottom: 9px;
  }
  .c-cta-card__type p.sub {
    font-size: 0.875rem;
    margin-top: 13px;
  }
  .c-cta-card__heading__icon {
    width: 30px;
  }
  .c-cta-card__heading__title {
    font-size: 2rem;
  }
  .c-cta-card__heading__title--tel {
    font-size: 3rem;
  }
  .c-cta-card__text {
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
  }
  .c-cta-card__lead {
    font-size: 2.2rem;
  }
  .c-cta-section .inner {
    width: 89%;
    margin: 0 auto;
  }
  .c-cta-section__title {
    font-size: 21px;
    margin-bottom: 25px;
  }
}
.c-schedule-wrap {
  display: flex;
  flex-direction: column;
}

.c-schedule {
  display: flex;
  align-items: center;
  padding: 6px 0;
}
.c-schedule + .c-schedule {
  border-top: 1px solid var(--color-grey-light);
}
.c-schedule > dt,
.c-schedule > dd {
  margin: 0;
  font-size: 1rem;
}
.c-schedule > dt {
  flex-shrink: 0;
  width: 80px;
  line-height: 1.8;
  color: var(--color-main);
  font-weight: 700;
}
.c-schedule > dd {
  flex-grow: 1;
  line-height: 1.4;
}

.c-bubbleGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 24px;
  margin: 24px 0 0;
}

.c-bubbleGrid__item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  gap: 0;
}
.c-bubbleGrid__item > :first-child {
  margin-top: 0 !important;
}
.c-bubbleGrid__item > :last-child {
  margin-bottom: 0 !important;
}

.c-bubbleGrid__desc {
  margin: 12px 0 0;
  line-height: 1.6;
  font-size: 0.9375rem;
}

.c-bubble {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  margin: 0;
  padding: 8px 20px;
  border-radius: 30px;
  background-color: var(--color-white);
  border: 4px solid var(--color-sub);
}

.c-bubble__dt,
.c-bubble__dd {
  margin: 0;
  text-align: center;
  font-size: 1.125rem;
}

.c-bubble__dt {
  padding-bottom: 2px;
  line-height: 1.6;
  color: var(--color-main);
  font-weight: 700;
  border-bottom: 2px solid var(--color-sub);
}

.c-bubble__dd {
  line-height: 1.3;
  font-weight: 500;
}

.c-bubble-heading {
  margin: 120px 0 24px;
  padding: 24px;
  line-height: 1.4;
  text-align: center;
  color: var(--color-main);
  font-size: 1.75rem;
  font-weight: 700;
  background-color: var(--color-light);
  border-radius: 30px;
}
.c-bubble-heading + * {
  margin-top: 0 !important;
}

.c-section {
  margin-top: 120px;
}

.c-section-v2 {
  margin-top: 120px;
  padding-block: 120px;
  position: relative;
}
.c-section-v2::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: calc(-50vw - 100%);
  right: calc(-50vw - 100%);
  height: 100%;
  background: var(--color-light);
  z-index: -1;
}
.c-section-v2 > :first-child {
  margin-top: 0 !important;
}
.c-section-v2 > :last-child {
  margin-bottom: 0 !important;
}

.c-comment-box {
  margin: 56px 0 0;
  border: 2px solid var(--color-main);
  border-radius: 30px;
  overflow: hidden;
}

.c-comment-box__head,
.c-comment-box__body {
  padding: 24px 40px;
}
.c-comment-box__head > :first-child,
.c-comment-box__body > :first-child {
  margin-top: 0 !important;
}
.c-comment-box__head > :last-child,
.c-comment-box__body > :last-child {
  margin-bottom: 0 !important;
}

.c-comment-box__head {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 88px;
  background-color: var(--color-main);
}

.c-comment-box__body {
  background-color: var(--color-white);
}

.c-comment-box__title {
  line-height: 1.4;
  color: var(--color-white);
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
}

.c-comment-box__desc {
  line-height: 1.5;
  text-align: center;
  font-size: 1.4375rem;
  font-weight: 700;
}

.c-prof {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.c-prof__title {
  flex-shrink: 0;
  padding: 4px 12px 6px;
  line-height: 1.5;
  color: var(--color-white);
  font-size: 1.25rem;
  font-weight: 700;
  background-color: var(--color-main);
  border-radius: 8px;
}

.c-prof__text {
  flex-grow: 1;
  line-height: 1.5;
  font-weight: 500;
}

.c-point-box {
  display: flex;
  margin: 64px 0 0;
  border: 4px solid var(--color-sub);
  border-radius: 30px;
  overflow: hidden;
}

.c-point-box__head,
.c-point-box__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.c-point-box__head {
  flex-shrink: 0;
  padding: 15px;
  min-width: 117px;
  min-height: 106px;
  line-height: 1.6;
  text-align: center;
  color: var(--color-white);
  font-size: 1.125rem;
  font-weight: 700;
  background-color: var(--color-main);
  border-right: 2px solid var(--color-sub);
}

.c-point-box__body {
  flex-grow: 1;
  padding: 15px 24px;
  line-height: 1.6;
  font-size: 1.125rem;
  background-color: var(--color-white);
}

.c-columns {
  margin-top: 24px;
}

@media screen and (max-width: 767px) {
  .c-bubbleGrid {
    grid-template-columns: 1fr;
  }
  .c-bubble-heading {
    font-size: 1.375rem;
  }
  .c-section {
    margin-top: 60px;
  }
  .c-section-v2 {
    margin-top: 60px;
    padding-block: 60px;
  }
  .c-section.wp-block-columns {
    gap: 60px;
  }
  .c-comment-box {
    margin: 32px 0 0;
  }
  .c-comment-box__head {
    padding: 16px;
  }
  .c-comment-box__body {
    padding: 20px 20px 32px;
  }
  .c-comment-box__title {
    font-size: 1.1875rem;
  }
  .c-comment-box__desc {
    text-align: left;
    font-size: 1rem;
  }
  .c-prof {
    flex-direction: column;
  }
  .c-point-box {
    flex-direction: column;
    margin: 16px 0 0;
    width: 100%;
    border-radius: 30px;
    overflow: hidden;
  }
  .c-point-box__head,
  .c-point-box__body {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .c-point-box__head {
    padding: 10px 15px;
    min-height: 54px;
    text-transform: uppercase;
    border-right: none;
    border-bottom: 2px solid var(--color-sub);
  }
  .c-point-box__body {
    padding: 8px 15px 16px;
    text-align: center;
  }
}
.c-faq .wp-block-lct-qa-block {
  margin: 50px 0;
}
.c-faq .wp-block-lct-qa-block .question {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
  padding: 20px 16px 20px 71px;
  background-color: var(--color-light);
  border-radius: 16px;
  position: relative;
}
.c-faq .wp-block-lct-qa-block .question::before {
  content: url(../img/page/icon_q.svg);
  position: absolute;
  left: 16px;
  top: 16px;
  height: 24px;
}
.c-faq .wp-block-lct-qa-block .answer {
  font-size: 1rem;
  line-height: 1.5;
  padding: 0 16px 0 71px;
  position: relative;
}
.c-faq .wp-block-lct-qa-block .answer::before {
  content: url(../img/page/icon_a.svg);
  position: absolute;
  left: 16px;
  top: 0;
  height: 24px;
}

/*
 * pages
 */
.c-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin: 20px 0 0;
  padding: 0;
}
.c-tag-list > li {
  list-style: none;
}

.c-tag {
  font-size: 1.8rem;
}

.c-tag__type {
  text-decoration: none;
}
.c-tag__type:hover {
  text-decoration: underline;
}

.cat-area {
  width: var(--content-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
}
.cat-area p.date {
  font-size: 1rem;
  margin-right: 26px;
  margin-top: 0;
}
.cat-area .cat {
  display: flex;
  align-items: center;
}
.cat-area .cat a {
  display: inline-block;
  padding: 5px 10px;
  font-size: 0.875rem;
  background-color: #fff;
  border: 1px solid #B2B2B2;
  line-height: 1;
  text-decoration: none;
  border-radius: 15px;
  font-weight: bold;
  transition: 0.3s;
  margin-right: 10px;
}
.cat-area .cat a:hover {
  background-color: #fff;
  color: #000;
}
.cat-area ul.cat {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 0;
  padding: 0;
}
.cat-area ul.cat li {
  list-style: none;
  text-indent: 0;
  margin-left: 0;
}
.cat-area ul.cat li::before {
  content: none;
}
.cat-area ul.cat li a {
  display: inline-block;
  margin: 0;
  padding: 10px 24px;
  font-size: 1.125rem;
  background-color: #fff;
  color: var(--color-main);
  line-height: 1;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
  border-radius: 5px;
}
.cat-area ul.cat li a:hover {
  background-color: var(--color-main);
  color: #fff;
}
.cat-area ul.cat li span.current {
  display: inline-block;
  padding: 10px 24px;
  font-size: 1.125rem;
  background-color: var(--color-main);
  color: #fff;
  line-height: 1;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
  border-radius: 5px;
}

.no-posts {
  margin-top: 60px;
  text-align: center;
  font-size: 1rem;
}

@media screen and (max-width: 767px) {
  .cat-area {
    width: 100%;
    margin: 10px auto 0;
  }
  .cat-area p.date {
    font-size: 0.875rem;
    line-height: 1;
    margin-bottom: 8px;
  }
  .cat-area .cat {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  .cat-area .cat a {
    display: inline-block;
    padding: 5px 10px;
    font-size: 0.75rem;
    line-height: 1;
    text-decoration: none;
    border-radius: 15px;
    font-weight: bold;
    transition: 0.3s;
    margin-bottom: 8px;
  }
  .cat-area .cat a:hover {
    background-color: #fff;
    color: #000;
  }
  .cat-area ul.cat {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  .cat-area ul.cat li::before {
    content: none;
  }
  .cat-area ul.cat li a {
    display: inline-block;
    padding: 10px 20px;
    margin-bottom: 0;
    font-size: 0.875rem;
  }
  .cat-area ul.cat li a:active {
    background-color: var(--color-main);
    color: #fff;
    filter: brightness(1);
  }
  .cat-area ul.cat li span.current {
    padding: 10px 20px;
    font-size: 1rem;
  }
}
/* 社員が語る職場の魅力 */
.single-attractive .wp-block-image {
  width: 792px;
  margin: 0 auto 60px;
}
.single-attractive .wp-block-image img {
  width: 100%;
  height: auto;
  border-radius: 0;
}
.attractive-list {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  margin-top: 40px;
  width: 100%;
}

.tax-attractive_category h2.attractive-list-title {
  margin-top: 40px;
}

.attractive-list__item {
  width: calc(50% - 18px);
}
.attractive-list__item > a {
  display: block;
  text-decoration: none;
}
.attractive-list__item > a .attractive-img {
  transition: 0.3s opacity;
}
.attractive-list__item > a h3 {
  margin: 0;
}
.attractive-list__item > a h3::before {
  content: none;
}
.attractive-list__item > a:hover .attractive-title {
  text-decoration: underline;
}
.attractive-list__item > a:hover .attractive-img {
  opacity: 0.7;
}

.attractive-img {
  margin-bottom: 15px;
}
.attractive-img img {
  height: auto;
}

.attractive-category {
  margin: 10px 0;
  font-size: 16px;
  line-height: 1;
}

.attractive-title {
  margin-bottom: 0;
  padding-bottom: 0;
  font-size: 20px;
  font-weight: bold;
}

.addtoany_share_save_container {
  padding: 20px;
  margin: 40px auto !important;
  text-align: center;
  background: #eee;
}
.addtoany_share_save_container::before {
  content: "シェアをお願いいたします";
  font-size: 16px;
  margin-right: 24px;
}

@media screen and (max-width: 767px) {
  .single-attractive .wp-block-image {
    width: 100%;
    margin: 0 auto 40px;
  }
  .attractive-category {
    font-size: 14px;
  }
  .attractive-title {
    font-size: 18px;
  }
}
.single-main {
  text-align: center;
  padding: 60px 0;
  margin-bottom: 64px;
  background-color: var(--color-light);
}
.single-main .single-main-inner {
  width: 1000px;
  margin: 0 auto;
}
.single-main .single-main-inner h1 {
  width: var(--content-width);
  margin: 0 auto;
  font-size: 2rem;
  text-align: left;
  line-height: 1.5;
  font-weight: 700;
  margin-top: 28px;
}

.p-works__description {
  font-size: 1.8rem;
}

.p-works-point-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
  margin: 50px 0 0;
}

.p-works-point-grid__item > :first-child {
  margin-top: 0 !important;
}
.p-works-point-grid__item > :last-child {
  margin-bottom: 0 !important;
}

.p-works-point__image {
  position: relative;
}

.p-works-point__badge {
  position: absolute;
  display: inline-block;
  padding: 8px 15px;
  top: 22px;
  left: 35px;
  line-height: 1;
  color: var(--color-white);
  text-transform: uppercase;
  font-size: 2rem;
  font-weight: 700;
  background-color: var(--color-main);
  border-radius: 30px;
}

.p-works-point__description {
  margin-top: 10px;
  line-height: 1.4;
  font-size: 1.4rem;
}

.p-works-gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin: 50px 0 0;
}

.p-works-gallery-grid__item > :first-child {
  margin-top: 0 !important;
}
.p-works-gallery-grid__item > :last-child {
  margin-bottom: 0 !important;
}

.p-works-gallery-grid__before-after {
  --gap: 36px;
  --gap-half: calc(var(--gap) / 2);
  display: flex;
  gap: var(--gap);
  margin: 50px 0 0;
}

.p-works-gallery-grid__ba {
  position: relative;
}
.p-works-gallery-grid__ba > :first-child {
  margin-top: 0 !important;
}
.p-works-gallery-grid__ba > :last-child {
  margin-bottom: 0 !important;
}

.p-works-gallery-grid__ba--before {
  width: calc(30% - var(--gap-half));
}

.p-works-gallery-grid__ba--after {
  flex-shrink: 0;
  margin-left: auto;
  width: calc(70% - var(--gap-half));
}

.p-works-gallery-grid__ba__badge {
  position: absolute;
  display: inline-block;
  padding: 8px 15px;
  top: 0;
  left: 0;
  line-height: 1;
  color: var(--color-white);
  text-transform: uppercase;
  font-size: 2.4rem;
  font-weight: 700;
  background-color: var(--color-main);
}

.p-works-gallery-grid__ba__badge--before,
.p-works-gallery-grid__ba__badge--after {
  text-transform: uppercase;
}

.p-works-gallery__image__caption {
  margin-top: 20px;
  line-height: 1.4;
  font-size: 1.4rem;
}

.p-works-about__data {
  --border-color: var(--color-dark);
  display: grid;
  grid-template-columns: repeat(2, 50%);
  border-top: 1px solid var(--border-color);
  border-left: 1px solid var(--border-color);
}

.p-works-about__data__dl {
  display: grid;
  grid-template-columns: 30% 70%;
  background-color: #fff;
  border-right: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.p-works-about__data__dl__title {
  padding: 10px 15px;
  font-weight: 700;
  background-color: var(--color-grey);
}

.p-works-about__data__dl__detail {
  border-left: 1px solid var(--border-color);
  padding: 10px 15px;
}

.p-vice-mv {
  margin: 100px auto 0;
  width: fit-content;
}

.single .top-entry {
  margin-top: 0;
}

.p-career-recruit-lead {
  margin: 1.5em 0 6px;
  line-height: 1.5;
  font-size: 1.125rem;
  font-weight: 700;
}
.p-career-recruit-lead + p:not(.p-career-recruit-lead) {
  margin-top: 0;
}

.p-career-recruit-lead02 {
  margin: 30px 0 0;
  font-size: 1.125rem;
  text-align: center;
  font-weight: 700;
}

.p-career-recruit-img {
  margin: 10px auto 60px;
  width: fit-content;
}

@media screen and (max-width: 767px) {
  .single-main {
    text-align: center;
    text-align: left;
    padding: 32px 0;
    margin-bottom: 52px;
  }
  .single-main .single-main-inner {
    width: 92%;
  }
  .single-main .single-main-inner h1 {
    width: 100%;
    margin: 0 auto;
    font-size: 1.4375rem;
    border-bottom: none;
    text-align: left;
    line-height: 1.5;
  }
  .p-works-point-grid {
    grid-template-columns: 1fr;
  }
  .p-works-point__badge {
    top: 10px;
    left: 10px;
    font-size: 1rem;
  }
  .p-works-gallery-grid__ba__badge {
    font-size: 1rem;
  }
  .p-works-about__data {
    grid-template-columns: 1fr;
  }
  .single .top-entry,
  .error404 .top-entry {
    margin-top: 0;
  }
}
.u-main {
  width: 100%;
  height: 260px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.u-main .h1-wrap {
  width: var(--u-content-width);
  margin: 0 auto;
  text-align: left;
}
.u-main .h1-wrap h1 {
  font-size: 2.5rem;
  color: var(--color-main);
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
.u-main .h1-wrap h1 span {
  font-size: 1.25rem;
  margin-left: 10px;
}

.u-contents .inner {
  width: var(--u-content-width);
  margin: 0 auto 144px;
}
.u-contents .inner p.u-content-txt-intro {
  margin: 0;
  padding: 20px 40px;
}

.page .top-entry,
.error404 .top-entry,
.blog .top-entry,
.category .top-entry {
  margin-top: 0;
}

/* 404 */
.not-found-wrap p.not-found {
  text-align: left;
  margin-top: 0;
}

.p-staff-mv {
  display: grid;
  grid-template-columns: 461px 205px auto;
  align-items: end;
  max-width: 1920px;
  width: 100%;
  position: relative;
}

.p-staff-mv__img,
.p-staff-mv__detail {
  grid-row: 1/2;
}
.p-staff-mv__img > :first-child,
.p-staff-mv__detail > :first-child {
  margin-top: 0 !important;
}
.p-staff-mv__img > :last-child,
.p-staff-mv__detail > :last-child {
  margin-bottom: 0 !important;
}

.p-staff-mv__img {
  grid-column: 2/4;
  margin-bottom: 80px;
  max-width: 1460px;
  width: 100%;
  height: 520px;
  border-radius: 60px 0 0 60px;
  overflow: hidden;
}
.p-staff-mv__img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.p-staff-mv__detail {
  grid-column: 1/3;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 34px 80px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 0 60px 60px 0;
}

.p-staff-mv__en {
  display: flex;
  justify-content: center;
  position: absolute;
  bottom: 100%;
  left: 0;
  margin: 0;
  width: 100%;
  line-height: 1;
  text-align: center;
  color: var(--color-sub);
  font-size: 2.625rem;
}

.p-staff-mv__title {
  margin: 0;
  line-height: 1.5;
  letter-spacing: 0.1em;
  color: var(--color-main);
  font-size: 1.875rem;
  font-weight: 700;
}

.p-staff-mv__name {
  margin: 0;
  line-height: 1.5;
  font-size: 1.875rem;
  font-weight: 700;
}

.p-staff-mv__list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0;
  padding: 0;
}

.p-staff-mv__list > li {
  padding: 5px 12px;
  line-height: 1.5;
  list-style: none;
  font-size: 1.25rem;
  font-weight: 500;
  border-radius: 8px;
}

.p-staff-mv__list__tag {
  background-color: var(--color-sub);
}

.p-staff-mv__list__tag02 {
  color: var(--color-main);
  background-color: #fff;
  border: 1px solid var(--color-main);
}

.p-staff-mv__date {
  margin: 0;
  line-height: 1.5;
  font-size: 0.875rem;
}

.p-staff-heading {
  position: relative;
  margin: 120px 0 24px;
  padding: 20px 50px;
  background-color: #EDFCF9;
  border-radius: 30px;
}
.p-staff-heading::before, .p-staff-heading::after {
  content: "";
  display: block;
  position: absolute;
  width: 32px;
  height: 24px;
  background-repeat: no-repeat;
  background-size: contain;
}
.p-staff-heading::before {
  top: -10px;
  left: 0;
  background-image: url(../img/page/icon-blockquote.svg);
}
.p-staff-heading::after {
  bottom: -10px;
  right: 0;
  background-image: url(../img/page/icon-blockquote-end.svg);
}

@media screen and (max-width: 767px) {
  .u-main {
    width: 100%;
    height: auto;
    min-height: calc(464 / 828 * 100vw);
    margin: 0 auto 50px;
    padding: 32px 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .u-main .h1-wrap {
    text-align: left;
    width: calc(100% - 64 / 828 * 100vw * 2);
  }
  .u-main .h1-wrap h1 {
    font-size: 2.1875rem;
    font-weight: bold;
  }
  .u-contents .inner {
    margin: 0 auto 100px;
    width: calc(100% - 64 / 828 * 100vw * 2);
  }
  .u-contents .inner p.u-content-txt-intro {
    margin: 0;
    padding-left: 7.729468599vw;
    padding-right: 7.729468599vw;
  }
  .not-found-wrap p.not-found {
    text-align: left;
    margin-top: 0;
  }
  .p-staff-mv {
    display: flex;
    flex-direction: column;
    align-items: end;
  }
  .p-staff-mv__img {
    margin: 0 0 0 var(--content-space);
    width: calc(100% - var(--content-space));
    height: 205px;
    border-radius: 30px 0 0 30px;
    overflow: hidden;
  }
  .p-staff-mv__img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }
  .p-staff-mv__detail {
    grid-column: 1/3;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 20px var(--content-space);
    background-color: transparent;
  }
  .p-staff-mv__en {
    font-size: 1.3125rem;
  }
  .p-staff-mv__en img {
    margin: 0 auto;
    width: 60.14%;
  }
  .p-staff-mv__title {
    font-size: 1.25rem;
  }
  .p-staff-mv__name {
    font-size: 1.125rem;
  }
  .p-staff-mv__list {
    gap: 7px;
  }
  .p-staff-mv__list > li {
    padding: 4px 9px;
    font-size: 0.875rem;
    border-radius: 6px;
  }
  .p-staff-mv__date {
    font-size: 0.8125rem;
  }
  .p-staff-heading {
    margin: 60px 0 24px;
    padding: 20px;
    border-radius: 30px;
    font-size: 1.25rem;
  }
}
.page-numbers .u-main .h1-wrap,
.page-welfare .u-main .h1-wrap,
.page-about .u-main .h1-wrap,
.page-business .u-main .h1-wrap,
.page-evaluation .u-main .h1-wrap,
.page-staff-discussion .u-main .h1-wrap {
  position: relative;
}
.page-numbers .u-main .h1-wrap:before,
.page-welfare .u-main .h1-wrap:before,
.page-about .u-main .h1-wrap:before,
.page-business .u-main .h1-wrap:before,
.page-evaluation .u-main .h1-wrap:before,
.page-staff-discussion .u-main .h1-wrap:before {
  content: "";
  display: block;
  width: var(--u-content-width);
  background: url(../img/page/page-bg-left.svg) no-repeat top left/auto 100%;
  position: absolute;
  left: 0;
  top: 68px;
  height: 464px;
  z-index: -1;
}

@media screen and (max-width: 767px) {
  .page-numbers .u-main .h1-wrap:before,
  .page-welfare .u-main .h1-wrap:before,
  .page-about .u-main .h1-wrap:before,
  .page-business .u-main .h1-wrap:before,
  .page-evaluation .u-main .h1-wrap:before,
  .page-staff-discussion .u-main .h1-wrap:before {
    content: none;
  }
}
.p-numbers-intro {
  margin-bottom: 64px;
  padding-top: 64px !important;
}
.p-numbers-intro__lead {
  font-size: 1.125rem;
  line-height: 2;
}
.p-numbers-intro__note {
  margin-top: 0;
  line-height: 2;
}

@media screen and (max-width: 767px) {
  .p-numbers-intro {
    margin-bottom: calc(120 / 828 * 100vw);
    padding-top: 0 !important;
  }
}
.p-numbers-grid {
  display: grid;
  gap: 40px;
  margin-top: 40px;
}
.p-numbers-grid figure {
  margin: 0;
}
.p-numbers-grid__text {
  font-size: 0.875rem;
  line-height: 1.5;
  margin-top: 0.625rem;
}
.p-numbers-grid__text a {
  color: var(--color-main);
}

.p-numbers-grid--first {
  grid-template-columns: repeat(2, 1fr);
  position: relative;
  padding-bottom: 102px;
}
.p-numbers-grid--first:after {
  content: "";
  display: block;
  width: var(--u-content-width);
  background: url(../img/numbers/img01.svg) no-repeat top center/auto 100%;
  position: absolute;
  left: 0;
  bottom: -7px;
  height: 143px;
}

.p-numbers-grid--col1 {
  grid-template-columns: 1fr !important;
}

.p-numbers-grid--col2 {
  grid-template-columns: repeat(2, 1fr);
}

@media screen and (max-width: 767px) {
  .p-numbers-grid {
    grid-template-columns: 1fr !important;
    gap: calc(40 / 828 * 100vw);
    margin-top: calc(40 / 828 * 100vw);
  }
  .p-numbers-grid__text {
    font-size: 0.9375rem;
    text-align: left !important;
    margin-top: calc(16 / 828 * 100vw);
  }
  .p-numbers-grid--first {
    padding-bottom: calc(240 / 828 * 100vw);
  }
  .p-numbers-grid--first:after {
    width: calc(486 / 828 * 100vw);
    left: 0;
    right: 0;
    margin: auto;
    bottom: calc(32 / 828 * 100vw);
    height: calc(236 / 828 * 100vw);
  }
}
.c-mv__inner {
  max-width: 1000px;
  margin: auto;
  position: relative;
}
.c-mv__inner .wp-block-image {
  margin-right: calc(-50vw + 500px + var(--scrollbar-width) / 2);
  border-radius: 60px 0 0 60px;
  overflow: hidden;
}
.c-mv__inner .wp-block-image img {
  border-radius: 0 !important;
}
.c-mv__text {
  background: rgba(255, 255, 255, 0.9);
  position: absolute;
  bottom: 0;
  border-radius: 0 30px 0 60px;
  padding: 40px;
  width: 570px;
  font-size: 1.125rem;
  line-height: 2;
  margin: 0;
}

@media screen and (max-width: 1320px) {
  .c-mv__inner .wp-block-image {
    margin-right: -160px;
  }
}
@media screen and (max-width: 767px) {
  .c-mv__inner .wp-block-image {
    margin: -50px 0 0 calc(64 / 828 * 100vw);
    border-radius: calc(60 / 828 * 100vw) 0 0 calc(60 / 828 * 100vw);
  }
  .c-mv__text {
    position: relative;
    margin-top: calc(-20 / 828 * 100vw);
    border-radius: 0 calc(60 / 828 * 100vw) 0 0;
    padding: calc(64 / 828 * 100vw);
    bottom: auto;
    top: 0;
    width: calc(764 / 828 * 100vw);
    font-size: 1.0625rem;
    line-height: 1.8;
  }
}
.page-welfare .inner,
.page-about .inner,
.page-business .inner,
.page-evaluation .inner,
.page-staff-discussion .inner,
.page-yamajukai-discussion .inner,
.page-internship .inner {
  width: 100%;
}

.c-anc-wrap {
  position: relative;
}
.c-anc-wrap > .wp-block-group__inner-container {
  position: relative;
  -webkit-overflow-scrolling: touch;
  display: grid;
  grid-template-columns: 340px 1fr;
  align-items: start;
}

@media screen and (max-width: 1300px) {
  .c-anc-wrap > .wp-block-group__inner-container {
    min-width: 1320px;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .c-anc-wrap > .wp-block-group__inner-container {
    min-width: 100%;
  }
}
.c-anc-list {
  position: sticky;
  align-self: flex-start;
  top: 0;
  left: 0;
  padding: 0 50px;
  z-index: 2;
}
.c-anc-list__head {
  display: block;
  width: 102px;
  height: auto;
  position: relative;
  padding-top: 161px;
}
.c-anc-list__head:after {
  content: "";
  display: block;
  width: 256px;
  height: 256px;
  background: #EDFCF9;
  filter: blur(36.2034px);
  position: absolute;
  top: 0;
  left: -33px;
  z-index: -1;
}
.c-anc-list .wp-block-list {
  margin-top: 28px;
}
.c-anc-list__items {
  list-style: none;
  padding: 0;
  margin: 0;
}
.c-anc-list__link {
  display: block;
  color: #727272;
  font-weight: 500;
  line-height: 1.4;
  font-size: 0.9375rem;
  margin: 0 0 16px;
  padding: 12px 0 12px 28px;
  position: relative;
  text-indent: 0;
}
.c-anc-list__link:before {
  content: none;
  display: block;
  background: url(../img/common/icon-plus01.svg) no-repeat center/contain;
  width: 11px !important;
  height: 11px !important;
  position: absolute;
  left: 5px;
  top: 17px;
}
.c-anc-list__link a {
  text-decoration: none;
  text-underline-offset: 0.2em;
  display: block;
}
.c-anc-list__link a:hover {
  opacity: 0.8;
}
.c-anc-list__link.is-active {
  color: #181818;
}
.c-anc-list__link.is-active:before {
  content: "";
}
.c-anc-list__link.is-active a {
  text-decoration: underline;
}

@media screen and (max-width: 1300px) {
  .c-anc-list {
    margin: 0 auto;
    max-width: 1000px;
    position: static;
    padding-left: 0;
  }
  .c-anc-list__link:before {
    content: "";
    background-image: url(../img/common/icon-nav-down.svg);
    top: 19px;
  }
  .c-anc-list__link a {
    color: #181818;
    text-decoration: none !important;
  }
}
@media screen and (max-width: 767px) {
  .c-anc-list {
    display: block;
    position: static;
    padding-left: calc(64 / 828 * 100vw);
    padding-right: calc(64 / 828 * 100vw);
    padding-bottom: 0;
  }
  .c-anc-list__head {
    width: calc(290 / 828 * 100vw);
    margin-top: calc(-24 / 828 * 100vw) !important;
    padding-top: calc(134 / 828 * 100vw);
  }
  .c-anc-list__head:after {
    width: calc(220 / 828 * 100vw);
    height: calc(220 / 828 * 100vw);
    filter: blur(calc(36 / 828 * 100vw));
    top: calc(36 / 828 * 100vw);
  }
  .c-anc-list .wp-block-list {
    margin-top: calc(32 / 828 * 100vw);
  }
  .c-anc-list__link {
    border-bottom: 2px solid #ABE2D6;
    font-size: 1.0625rem;
    line-height: 1.4;
    padding: calc(39 / 828 * 100vw) calc(56 / 828 * 100vw) calc(38 / 828 * 100vw);
  }
  .c-anc-list__link:before {
    top: calc(52 / 828 * 100vw);
  }
}
.c-anc-contents {
  width: 1000px;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .c-anc-contents {
    width: calc(100% - 64 / 828 * 100vw * 2);
    margin: calc(200 / 828 * 100vw) calc(64 / 828 * 100vw) 0;
  }
}
.wp-block-group.p-welfare-section {
  margin-top: 120px !important;
}
.wp-block-group.p-welfare-section > .wp-block-group__inner-container > .wp-block-heading {
  padding: 18px 0;
}

@media screen and (max-width: 767px) {
  .wp-block-group.p-welfare-section {
    margin-top: calc(200 / 828 * 100vw) !important;
  }
  .wp-block-group.p-welfare-section .wp-block-heading {
    font-size: 1.375rem;
    padding: calc(36 / 828 * 100vw) 0;
  }
}
.p-welfare-item {
  padding-bottom: 72px;
}
.p-welfare-item > .wp-block-group__inner-container {
  display: grid;
  grid-template-columns: 148px 1fr;
  column-gap: 40px;
  row-gap: 16px;
}
.p-welfare-item__head, .p-welfare-item__body {
  grid-column: 2;
}
.p-welfare-item__img {
  grid-column: 1;
  grid-row: 1/span 2;
  margin: 0;
}
.p-welfare-item__head {
  display: contents;
}
.p-welfare-item__head > .wp-block-group__inner-container {
  display: contents;
}
.p-welfare-item__head .wp-block-image {
  grid-column: 1;
  grid-row: 1/span 2; /* 見出し+本文を跨がせる */
  margin: 0;
}
.p-welfare-item__head .wp-block-heading {
  grid-column: 2;
  margin: 0;
}
.p-welfare-item__body {
  grid-column: 2;
}
.p-welfare-item__body .wp-block-list, .p-welfare-item__body p {
  margin-top: 24px;
}
.p-welfare-item__body .wp-block-list li, .p-welfare-item__body p li {
  line-height: 1.7;
}
.p-welfare-item__body a {
  color: #3A9D74;
}
.p-welfare-item__lead {
  border-radius: 24px;
  display: inline-block;
  padding: 6px 24px !important;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 2;
  margin: 0 0 !important;
}

@media (max-width: 767px) {
  .p-welfare-item {
    padding-bottom: calc(104 / 828 * 100vw);
  }
  .p-welfare-item > .wp-block-group__inner-container {
    grid-template-columns: 1fr;
    align-items: center;
    row-gap: calc(40 / 828 * 100vw);
  }
  .p-welfare-item__img, .p-welfare-item__head, .p-welfare-item__body {
    grid-column: 1;
    grid-row: auto;
  }
  .p-welfare-item__body .wp-block-list, .p-welfare-item__body p {
    margin-top: calc(40 / 828 * 100vw);
    line-height: 2;
  }
  .p-welfare-item__head > .wp-block-group__inner-container {
    display: flex;
    column-gap: calc(40 / 828 * 100vw);
    align-items: center;
  }
  .p-welfare-item__head figure {
    display: block;
    width: calc(180 / 828 * 100vw);
  }
  .p-welfare-item__head .wp-block-heading {
    width: calc(100% - 40 / 828 * 100vw - 180 / 828 * 100vw);
    font-size: 1.25rem !important;
    display: flex;
    align-items: center;
  }
  .p-welfare-item__head .wp-block-heading:before {
    vertical-align: middle;
  }
  .p-welfare-item__img {
    grid-row: auto;
  }
  .p-welfare-item__lead {
    padding: calc(24 / 828 * 100vw) calc(48 / 828 * 100vw) !important;
    font-weight: 700;
    line-height: 1.6 !important;
    border-radius: calc(48 / 828 * 100vw);
    margin: 0 0 !important;
  }
}
.p-welfare-image figure {
  margin-top: 0 !important;
}

.page-about .c-anc-wrap,
.page-business .c-anc-wrap {
  margin-top: 106px;
}
.page-about #sec03 .p-about-color-block__inner,
.page-business #sec03 .p-about-color-block__inner {
  padding-bottom: 24px;
}

@media screen and (max-width: 767px) {
  .page-about .c-anc-wrap,
  .page-business .c-anc-wrap {
    margin-top: 0;
  }
  .page-about .c-anc-contents,
  .page-business .c-anc-contents {
    margin-top: calc(180 / 828 * 100vw);
  }
  .page-about .h1-wrap h1,
  .page-business .h1-wrap h1 {
    width: 8em;
  }
}
.c-imgmodal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.75);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s cubic-bezier(0.22, 0.61, 0.36, 1), visibility 0.35s;
}
.c-imgmodal.is-open {
  opacity: 1;
  visibility: visible;
}
.c-imgmodal.is-open .c-imgmodal__img {
  transform: scale(1);
  opacity: 1;
}
.c-imgmodal__img {
  max-width: 95vw;
  max-height: 80vh;
  width: auto;
  height: auto;
  border-radius: 0;
  background: #fff;
  transform: scale(0.92);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.35s ease;
}
.c-imgmodal__close {
  position: fixed;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  font-size: 22px;
  cursor: pointer;
}

.c-popup-block {
  width: 1000px;
  margin: 0 auto;
  padding: 24px 40px 40px;
  border-radius: 30px;
  margin-top: 54px;
}
.c-popup-block .wp-block-group__inner-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.c-popup-block__head {
  font-size: 1.375rem;
  font-weight: 700;
}
.c-popup-block__note {
  font-size: 0.875rem;
  font-weight: 400;
}
.c-popup-block__list {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}
.c-popup-block__list .wp-block-image {
  width: calc((100% - 30px) / 4);
}
.c-popup-block__list .wp-block-image img {
  border-radius: 0;
}

@media screen and (max-width: 767px) {
  .c-popup-block {
    width: calc(700 / 828 * 100vw);
    padding: calc(24 / 828 * 100vw) calc(40 / 828 * 100vw) calc(40 / 828 * 100vw);
  }
  .c-popup-block__head {
    font-size: 1.125rem;
  }
  .c-popup-block__note {
    font-size: 0.875rem;
    margin-top: 0;
  }
  .c-popup-block__list {
    gap: calc(10 / 828 * 100vw);
    margin-top: 8px;
  }
  .c-popup-block__list .wp-block-image {
    width: calc((100% - 10 / 828 * 100vw * 3) / 4);
  }
  .c-popup-block__list .wp-block-image img {
    border-radius: 0;
  }
}
.p-about-section {
  margin-top: 160px;
}

.p-about-mv .wp-block-image {
  margin-right: calc(-50vw + 500px + var(--scrollbar-width) / 2);
  border-radius: 60px 0 0 60px;
  overflow: hidden;
}
.p-about-mv .wp-block-image img {
  border-radius: 0 !important;
}

@media screen and (max-width: 767px) {
  .p-about-mv .wp-block-image {
    margin: 0 calc(-64 / 828 * 100vw) 0 0;
    border-radius: calc(60 / 828 * 100vw) 0 0 calc(60 / 828 * 100vw);
  }
}
.p-about-top3 {
  gap: 28px;
  margin-top: 64px;
}
.p-about-top3__item {
  border-radius: 30px;
  width: calc((100% - 56px) / 3);
  padding: 16px 25px 39px;
}
.p-about-top3__item__num {
  color: #3A9D74;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  border-bottom: 3px solid #ABE2D6;
  min-width: 72px;
  text-align: center;
  width: fit-content;
  margin: 0 auto;
}
.p-about-top3__item__num strong {
  font-size: 1.875rem;
}
.p-about-top3__item .wp-block-media-text {
  margin-top: 20px;
  gap: 14px;
  grid-template-columns: 90px 1fr;
}
.p-about-top3__item__text {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
}

@media screen and (max-width: 767px) {
  .p-about-top3 {
    gap: calc(16 / 828 * 100vw);
    margin-top: calc(80 / 828 * 100vw);
  }
  .p-about-top3__item {
    border-radius: calc(60 / 828 * 100vw);
    width: 100%;
    padding: calc(15 / 828 * 100vw) calc(40 / 828 * 100vw) calc(15 / 828 * 100vw);
  }
  .p-about-top3__item__num {
    font-size: 1.25rem;
    border-bottom: 3px solid #ABE2D6;
    min-width: calc(143 / 828 * 100vw);
  }
  .p-about-top3__item__num strong {
    font-size: 1.875rem;
  }
  .p-about-top3__item .wp-block-media-text {
    margin-top: 0;
    gap: calc(20 / 828 * 100vw);
    grid-template-columns: calc(180 / 828 * 100vw) 1fr;
  }
  .p-about-top3__item__text {
    font-size: 1.1875rem;
  }
}
.p-about-head {
  padding: 20px 48px;
  position: relative;
  border-radius: 30px;
  gap: 32px;
  margin-top: 72px;
}
.p-about-head__num {
  color: #3A9D74;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  border-bottom: 3px solid #ABE2D6;
  min-width: 52px;
  text-align: center;
  width: fit-content;
  margin: 0 auto;
}
.p-about-head__num strong {
  font-size: 1.875rem;
}
.p-about-head__title {
  font-size: 1.5rem;
  line-height: 1.5;
}
.p-about-head__title:before {
  content: none;
}
.p-about-head__bg {
  position: absolute;
  width: 90px;
  right: 20px;
  bottom: 0;
  z-index: -1;
}
.p-about-head__bg img {
  border-radius: 0;
}

@media screen and (max-width: 767px) {
  .p-about-head {
    padding: calc(40 / 828 * 100vw) calc(32 / 828 * 100vw);
    position: relative;
    border-radius: 30px;
    gap: calc(43 / 828 * 100vw);
    margin-top: calc(104 / 828 * 100vw);
    flex-wrap: nowrap !important;
  }
  .p-about-head__num {
    font-size: 1.25rem;
    min-width: calc(103 / 828 * 100vw);
    margin: 0;
  }
  .p-about-head__num strong {
    font-size: 1.875rem;
  }
  .p-about-head__title {
    font-size: 1.375rem;
  }
  .p-about-head__bg {
    width: calc(180 / 828 * 100vw);
    right: 0;
    top: 0;
  }
}
.p-about-block {
  margin-top: 24px;
}
.p-about-block + .p-about-block {
  margin-top: 56px;
}
.p-about-block .wp-block-heading {
  margin-bottom: 16px;
}

@media screen and (max-width: 767px) {
  .p-about-block {
    margin-top: calc(24 / 828 * 100vw);
  }
  .p-about-block + .p-about-block {
    margin-top: calc(80 / 828 * 100vw);
  }
  .p-about-block .wp-block-heading {
    margin-bottom: calc(32 / 828 * 100vw);
  }
}
.p-about-bln {
  gap: 8px 40px !important;
  grid-template-columns: repeat(2, 1fr);
  align-items: stretch;
}
.p-about-bln__item {
  gap: 8px !important;
  grid-template-columns: 90px 1fr !important;
  align-items: stretch !important;
}
.p-about-bln__data {
  flex-direction: column;
  gap: 6px;
  width: 90px;
  justify-content: center;
  align-items: center !important;
}
.p-about-bln__img {
  width: 56px;
}
.p-about-bln__name {
  font-size: 0.75rem;
  line-height: 1.4;
  width: 100%;
}
.p-about-bln__text {
  border: 2px solid #ABE2D6;
  background-color: #FFF;
  padding: 22px 16px;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.p-about-bln__text:before {
  content: "";
  width: 15px;
  height: 14px;
  display: block;
  background: url(../img/about/bln_arrow.png) no-repeat center/contain;
  left: -14px;
  top: 0;
  bottom: 0;
  margin: auto;
  position: absolute;
}
.p-about-bln__text p {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.p-about-bln__text strong {
  text-decoration: underline;
}

@media screen and (max-width: 767px) {
  .p-about-bln {
    gap: calc(16 / 828 * 100vw) !important;
    grid-template-columns: 1fr !important;
  }
  .p-about-bln__item {
    gap: calc(24 / 828 * 100vw) !important;
    grid-template-columns: calc(160 / 828 * 100vw) 1fr !important;
  }
  .p-about-bln__data {
    gap: calc(6 / 828 * 100vw);
    width: calc(160 / 828 * 100vw);
    justify-content: center;
    align-items: center !important;
  }
  .p-about-bln__img {
    width: calc(96 / 828 * 100vw);
  }
  .p-about-bln__name {
    font-size: 0.75rem;
  }
  .p-about-bln__text {
    padding: calc(40 / 828 * 100vw) calc(32 / 828 * 100vw);
    border-radius: calc(30 / 828 * 100vw);
  }
  .p-about-bln__text:before {
    width: 15px;
    height: 14px;
    left: -14px;
  }
  .p-about-bln__text p {
    font-size: 1rem;
  }
}
.p-about-image {
  margin-top: 72px;
}

.c-accordion {
  border-radius: 30px;
  padding: 0 40px;
  margin-top: 56px;
  margin-bottom: 56px;
}
.c-accordion__trigger {
  width: 100%;
  text-align: left;
  background: none;
  padding: 22px 14px 22px 0;
  border: 0;
  cursor: pointer;
  position: relative;
  font-size: 1.25rem;
  font-weight: 700;
}
.c-accordion__trigger::after {
  content: "";
  position: absolute;
  background: url(../img/common/icon-nav-down.svg) no-repeat center/contain;
  right: 0;
  width: 14px;
  height: 14px;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: transform 0.3s ease;
}
.c-accordion__trigger.is-open::after {
  transform: rotate(180deg);
}
.c-accordion__content {
  overflow: hidden;
  height: 0;
  transition: padding 0.4s ease, opacity 0.3s ease;
  opacity: 0;
  padding: 0 0;
  border-top: 2px solid #ABE2D6;
}
.c-accordion.is-open .c-accordion__content {
  height: auto;
  opacity: 1;
  padding: 24px 0 40px;
}

.c-accordion-v2 {
  margin: 0;
  padding: 0 40px;
  background-color: #fff;
  border-radius: 0;
}
.c-accordion-v2:has(.c-accordion-v2__trigger.active) {
  border-radius: 0 0 30px 30px;
}
.c-accordion-v2__trigger {
  width: 100%;
  text-align: center;
  background: none;
  padding: 22px 14px 22px 0;
  border: 0;
  cursor: pointer;
  position: relative;
  color: var(--color-main);
  line-height: 2;
  font-size: 1.25rem;
  font-weight: 700;
}
.c-accordion-v2__trigger::after {
  content: "";
  position: absolute;
  background: url(../img/common/icon-nav-down.svg) no-repeat center/contain;
  right: 0;
  width: 14px;
  height: 14px;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: transform 0.3s ease;
}
.c-accordion-v2__trigger.active::after {
  transform: rotate(180deg);
}
.c-accordion-v2__content {
  padding: 48px 0 40px;
  border-top: 2px solid var(--color-sub);
  border-radius: 0 0 30px 30px;
}
.c-accordion-v2__content > :first-child {
  margin-top: 0 !important;
}
.c-accordion-v2__content > :first-child {
  margin-bottom: 0 !important;
}
.c-accordion-v2__content-wrap {
  display: none;
}

@media screen and (max-width: 767px) {
  .c-accordion {
    border-radius: calc(30 / 828 * 100vw);
    padding: 0 calc(40 / 828 * 100vw);
    margin-top: calc(56 / 828 * 100vw);
    margin-bottom: calc(80 / 828 * 100vw);
  }
  .c-accordion__trigger {
    padding: calc(40 / 828 * 100vw) 0 calc(32 / 828 * 100vw);
    font-size: 1.25rem;
  }
  .c-accordion__trigger::after {
    right: 0;
    width: calc(26 / 828 * 100vw);
    height: calc(26 / 828 * 100vw);
  }
  .c-accordion__content {
    padding: 0;
  }
  .c-accordion.is-open .c-accordion__content {
    padding: calc(32 / 828 * 100vw) 0 calc(40 / 828 * 100vw);
  }
  .c-accordion-v2 {
    padding: 0 calc(40 / 828 * 100vw);
  }
  .c-accordion-v2:has(.c-accordion-v2__trigger.active) {
    border-radius: 0 0 15px 15px;
  }
  .c-accordion-v2__trigger {
    padding: calc(40 / 828 * 100vw) 0 calc(32 / 828 * 100vw);
    font-size: 1.25rem;
  }
  .c-accordion-v2__trigger::after {
    right: 0;
    width: calc(26 / 828 * 100vw);
    height: calc(26 / 828 * 100vw);
  }
  .c-accordion-v2__content {
    padding: calc(32 / 828 * 100vw) 0 calc(40 / 828 * 100vw);
  }
}
.p-about-color-block {
  border: 2px solid #3A9D74;
  border-radius: 30px;
  overflow: hidden;
  margin-top: 56px;
}
.p-about-color-block__head {
  font-size: 1.5rem;
  line-height: 1.4;
  font-weight: 700;
  margin: 0;
  padding: 25px !important;
}
.p-about-color-block__head:before {
  content: none;
}
.p-about-color-block__inner {
  padding: 24px 40px 40px;
}
.p-about-color-block__text {
  font-size: 1rem;
  line-height: 2;
  font-weight: 400;
}
.p-about-color-block__text a {
  color: #3A9D74;
}
.p-about-color-block__image {
  margin-top: 24px;
}
.p-about-color-block__text-bottom {
  font-size: 1rem;
  line-height: 2;
  font-weight: 400;
  margin-top: 24px;
}
.p-about-color-block .wp-block-buttons {
  margin-top: 0;
}
.p-about-color-block .wp-block-buttons .wp-block-button__link {
  margin-top: 24px;
  padding: 19px 90px 20px 38px;
}
.p-about-color-block__btn-list {
  gap: 0 20px;
}
.p-about-color-block__btn-list a {
  margin-top: 20px;
  box-shadow: none;
  border: none;
  border-bottom: 1px solid #3A9D74;
  border-radius: 0;
  padding: 0 40px 8px 8px !important;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 500;
}
.p-about-color-block__btn-list a:after {
  content: "";
  background: url(../img/common/icon-arrow-btn.png) no-repeat center/contain;
  right: 8px;
  top: auto;
  bottom: 9px;
  transform: translate(0);
  max-width: 24px;
  width: 24px;
  height: 24px;
}
.p-about-color-block__btn-list a:hover {
  background: #FFF;
  color: #181818;
  opacity: 0.7;
}
.p-about-color-block__btn-list a:hover:after {
  content: "";
}

@media screen and (max-width: 767px) {
  .p-about-color-block {
    border-radius: calc(60 / 828 * 100vw);
    margin-top: calc(64 / 828 * 100vw);
  }
  .p-about-color-block__head {
    font-size: 1.1875rem;
    padding: calc(32 / 828 * 100vw) calc(32 / 828 * 100vw) !important;
  }
  .p-about-color-block__inner {
    padding: calc(40 / 828 * 100vw) calc(39 / 828 * 100vw) calc(64 / 828 * 100vw) !important;
  }
  .p-about-color-block__text {
    font-size: 0.9375rem;
    line-height: 1.8;
  }
  .p-about-color-block__image {
    margin-top: calc(48 / 828 * 100vw);
  }
  .p-about-color-block__text-bottom {
    font-size: 0.9375rem;
    line-height: 1.8;
    margin-top: calc(48 / 828 * 100vw);
  }
  .p-about-color-block .wp-block-buttons .wp-block-button__link {
    margin-top: calc(48 / 828 * 100vw);
    padding-right: calc(140 / 828 * 100vw);
    padding-left: calc(60 / 828 * 100vw);
  }
  .p-about-color-block__btn-list {
    gap: 0 calc(40 / 828 * 100vw);
    justify-content: flex-start !important;
  }
  .p-about-color-block__btn-list a {
    margin-top: calc(40 / 828 * 100vw);
    padding: 0 calc(80 / 828 * 100vw) calc(16 / 828 * 100vw) calc(16 / 828 * 100vw) !important;
  }
  .p-about-color-block__btn-list a:after {
    right: calc(16 / 828 * 100vw);
    bottom: calc(17 / 828 * 100vw);
    width: calc(48 / 828 * 100vw);
    height: calc(48 / 828 * 100vw);
  }
}
.p-about-section-question {
  margin-top: 160px;
  position: relative;
  border-radius: 60px;
  padding: 45px 16px 45px 56px;
}
.p-about-section-question:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin-right: calc(-50vw + 500px + var(--scrollbar-width) / 2);
  z-index: -1;
  background: #EDFCF9;
}
.p-about-section-question .wp-block-image {
  margin: 0 !important;
}
.p-about-section-question__image {
  margin-top: 30px !important;
}

@media screen and (max-width: 767px) {
  .p-about-section-question {
    margin: calc(180 / 828 * 100vw) calc(-64 / 828 * 100vw);
    border-radius: calc(120 / 828 * 100vw);
    padding: calc(80 / 828 * 100vw) 0 calc(80 / 828 * 100vw);
  }
  .p-about-section-question:after {
    content: none;
  }
  .p-about-section-question__head {
    width: calc(740 / 828 * 100vw);
    margin: 0 auto !important;
  }
  .p-about-section-question__image {
    width: calc(705 / 828 * 100vw);
    margin: 0 auto !important;
  }
}
.page-yamajukai-discussion .p-yamajukai-discussion-intro {
  width: var(--u-content-width);
  margin: 0 auto;
}
.page-yamajukai-discussion .wp-block-group.p-yamajukai-discussion-section {
  margin-top: 120px !important;
}
.page-yamajukai-discussion .wp-block-group.p-yamajukai-discussion-section > .wp-block-group__inner-container > .wp-block-heading {
  padding: 18px 0;
}

@media screen and (max-width: 767px) {
  .wp-block-group.p-yamajukai-discussion-section {
    margin-top: calc(200 / 828 * 100vw) !important;
  }
  .wp-block-group.p-yamajukai-discussion-section .wp-block-heading {
    font-size: 1.375rem;
    padding: calc(36 / 828 * 100vw) 0;
  }
}
.page-staff-discussion .inner {
  margin-bottom: -100px;
}
.page-staff-discussion .c-mv__text {
  width: 853px;
}
.page-staff-discussion #sec02 {
  position: relative;
  padding-top: 128px;
  padding-bottom: 290px;
  margin-top: 245px;
}
.page-staff-discussion #sec02:before {
  content: "";
  background: #EDFCF9;
  left: 0;
  right: 0;
  top: 0;
  height: 100%;
  display: block;
  position: absolute;
  left: calc(-50vw + 500px - 340px + var(--scrollbar-width) / 2);
  right: calc(-50vw + 500px + 170px + var(--scrollbar-width) / 2);
  z-index: -1;
}
.page-staff-discussion #sec02 .p-discussion-bln__text:before {
  background-image: url(../img/staff-discussion/bln_arrow_wt.svg);
}

@media screen and (max-width: 1300px) {
  .page-staff-discussion .c-mv {
    padding-bottom: calc(514 / 828 * 100vw);
  }
  .page-staff-discussion #sec02:before {
    left: calc(-150px - var(--scrollbar-width));
    right: calc(-150px - var(--scrollbar-width));
  }
}
@media screen and (max-width: 767px) {
  .page-staff-discussion .c-mv__text {
    width: 92.270531401vw;
  }
  .page-staff-discussion #sec02 {
    margin-top: calc(180 / 828 * 100vw);
    padding-top: calc(180 / 828 * 100vw);
  }
  .page-staff-discussion #sec02:before {
    left: calc(-64 / 828 * 100vw);
    right: calc(-64 / 828 * 100vw);
  }
}
.p-discussion__head {
  font-size: 1.75rem;
  line-height: 1.5;
  border-radius: 50px;
  padding: 24px 10px !important;
}
.p-discussion__head:before, .p-discussion__head:after {
  content: none;
}

@media screen and (max-width: 767px) {
  .p-discussion__head {
    font-size: 1.4375rem;
    border-radius: calc(100 / 828 * 100vw);
    padding: calc(48 / 828 * 100vw) 0 !important;
  }
}
.p-discussion-member {
  background: url(../img/page/page-bg-right.png) no-repeat left 10px/362px auto;
  gap: 48px !important;
  padding: 40px 84px 80px;
}
.p-discussion-member__item .wp-block-group__inner-container {
  gap: 0 !important;
}
.p-discussion-member__position {
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 16px 0 0 !important;
}
.p-discussion-member__name {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
  margin: 0 !important;
}
.p-discussion-member__before {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 3px 0 0 !important;
  color: #727272;
}
.p-discussion-member__note {
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.4;
  margin: 3px 0 0 !important;
}

@media screen and (max-width: 767px) {
  .p-discussion-member {
    background-position: left calc(-117 / 828 * 100vw);
    background-size: calc(480 / 828 * 100vw) auto;
    gap: calc(40 / 828 * 100vw) !important;
    grid-template-columns: repeat(2, 1fr) !important;
    padding: calc(40 / 828 * 100vw) 0 calc(160 / 828 * 100vw);
  }
  .p-discussion-member__item .wp-block-group__inner-container {
    gap: 0 !important;
  }
  .p-discussion-member__img {
    width: calc(280 / 828 * 100vw);
    margin: 0 auto;
  }
  .p-discussion-member__position {
    font-size: 0.9375rem;
    margin: calc(16 / 828 * 100vw) 0 0 !important;
  }
  .p-discussion-member__name {
    font-size: 0.9375rem;
    margin: 0 !important;
  }
}
@media screen and (max-width: 767px) {
  .p-discussion-topic figure {
    margin-top: 0;
  }
}
.p-discussion-bln {
  gap: 24px !important;
  margin-top: 40px;
}
.p-discussion-bln__item {
  gap: 52px !important;
  grid-template-columns: 110px 1fr !important;
  align-items: stretch !important;
}
.p-discussion-bln__item.-rev {
  grid-template-columns: 1fr 110px !important;
  justify-items: start;
}
.p-discussion-bln__item.-rev .p-discussion-bln__text:before {
  left: auto;
  right: -25px;
  transform: scale(-1);
}
.p-discussion-bln__item.all-member {
  grid-template-columns: 1fr !important;
  justify-content: flex-end;
}
.p-discussion-bln__item.all-member .p-discussion-bln__text:before {
  content: none;
}
.p-discussion-bln__item.all-member .p-discussion-bln__text p {
  font-size: 1.25rem;
}
.p-discussion-bln__data {
  flex-direction: column;
  gap: 6px;
  justify-content: center;
  align-items: center !important;
}
.p-discussion-bln__img {
  width: 100%;
}
.p-discussion-bln__name {
  font-size: 0.875rem;
  line-height: 1.4;
  font-weight: 500;
  width: 100%;
}
.p-discussion-bln__text {
  padding: 40px 32px;
  width: 100%;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.p-discussion-bln__text:before {
  content: "";
  width: 25px;
  height: 32px;
  display: block;
  background: url(../img/staff-discussion/bln_arrow.svg) no-repeat center/contain;
  left: -25px;
  top: 0;
  bottom: 0;
  margin: auto;
  position: absolute;
}
.p-discussion-bln__text p {
  font-size: 1rem;
  line-height: 2;
  font-weight: 400;
}
.p-discussion-bln__text strong {
  color: #3A9D74;
}
.p-discussion-bln + .p-discussion-topic {
  margin-top: 120px;
}

@media screen and (max-width: 767px) {
  .p-discussion-bln {
    gap: calc(48 / 828 * 100vw) !important;
    grid-template-columns: 1fr !important;
    margin-top: calc(80 / 828 * 100vw);
  }
  .p-discussion-bln__item {
    gap: calc(42 / 828 * 100vw) !important;
    grid-template-columns: calc(120 / 828 * 100vw) 1fr !important;
  }
  .p-discussion-bln__item.-rev {
    grid-template-columns: 1fr calc(120 / 828 * 100vw) !important;
  }
  .p-discussion-bln__item.-rev .p-discussion-bln__text:before {
    right: calc(-34 / 828 * 100vw);
  }
  .p-discussion-bln__item.all-member .p-discussion-bln__text p {
    font-size: 1.125rem;
    text-indent: -3em;
    padding-left: 3em;
  }
  .p-discussion-bln__data {
    gap: calc(6 / 828 * 100vw);
    width: calc(120 / 828 * 100vw);
    justify-content: flex-start;
    align-items: center !important;
  }
  .p-discussion-bln__img {
    width: calc(120 / 828 * 100vw);
  }
  .p-discussion-bln__name {
    font-size: 0.875rem;
  }
  .p-discussion-bln__text {
    padding: calc(40 / 828 * 100vw) calc(40 / 828 * 100vw);
    border-radius: calc(30 / 828 * 100vw);
  }
  .p-discussion-bln__text:before {
    width: calc(34 / 828 * 100vw);
    height: calc(40 / 828 * 100vw);
    top: calc(40 / 828 * 100vw);
    bottom: auto;
    left: calc(-34 / 828 * 100vw);
  }
  .p-discussion-bln__text p {
    font-size: 0.9375rem;
    line-height: 1.8;
  }
  .p-discussion-bln + .p-discussion-topic {
    margin-top: calc(160 / 828 * 100vw);
  }
}
.p-discussion-supplementary {
  border: 4px solid #3A9D74;
  border-radius: 30px;
  margin: 40px auto;
  padding: 20px 60px 20px;
  max-width: 800px;
}
.p-discussion-supplementary__head {
  font-size: 1.25rem;
  line-height: 2;
  font-weight: 700;
  border-bottom: 2px solid #ABE2D6;
  padding-bottom: 5px;
  margin-bottom: 0;
}
.p-discussion-supplementary__head:before {
  content: none;
}
.p-discussion-supplementary__text {
  font-size: 1rem;
  line-height: 2;
  font-weight: 400;
  margin-top: 5px !important;
}
.p-discussion-supplementary + .p-discussion-topic {
  margin-top: 120px;
}

.wp-block-media-text.p-business-media {
  gap: 0;
  position: relative;
}

.p-business-lead {
  margin: 64px 0 0;
  line-height: 1.5;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 500;
}

.p-business-lead02 {
  margin: 8px 0 0;
  line-height: 1.5;
  color: var(--color-main);
  text-align: center;
  font-size: 1.875rem;
  font-weight: 700;
}

.p-career-recruit-table th, .p-career-recruit-table td {
  border: 1px solid var(--table-border-color);
}
.p-career-recruit-table th {
  width: 200px;
}

@media screen and (max-width: 767px) {
  .p-discussion-supplementary {
    margin: calc(80 / 828 * 100vw) auto;
    padding: calc(24 / 828 * 100vw) calc(64 / 828 * 100vw) calc(48 / 828 * 100vw);
  }
  .p-discussion-supplementary + .p-discussion-topic {
    margin-top: calc(160 / 828 * 100vw);
  }
  .wp-block-media-text.p-business-media {
    display: flex;
    flex-direction: column;
  }
  .wp-block-media-text.p-business-media .wp-block-media-text__media {
    margin-left: auto;
    width: 55%;
  }
  .wp-block-media-text.p-business-media .c-prof {
    position: absolute;
    left: 0;
    bottom: calc(167 / 828 * 100vw);
  }
  .p-business-lead {
    margin: 60px 0 0;
    text-align: left;
    font-size: 1.125rem;
  }
  .p-business-lead02 {
    text-align: left;
    font-size: 1.375rem;
  }
  .p-career-recruit-table {
    display: block;
  }
  .p-career-recruit-table tbody, .p-career-recruit-table tr, .p-career-recruit-table th, .p-career-recruit-table td {
    display: block !important;
  }
  .p-career-recruit-table th, .p-career-recruit-table td {
    width: 100%;
    border-right: none !important;
  }
}
.p-discussion-image {
  margin-top: 80px;
}

.page-evaluation .c-mv__text {
  position: relative;
  width: 980px;
  margin: -120px auto 0 !important;
  padding: 64px 80px;
  border-radius: 40px;
  gap: 0;
}
@media screen and (max-width: 767px) {
  .page-evaluation .c-mv__text {
    width: 92vw;
    margin: -40px 0 0 !important;
    border-radius: 0 30px 0 0;
    padding: 32px;
  }
}
.page-evaluation .c-mv__text-head {
  font-size: 1.875rem;
  font-weight: bold;
  text-align: center;
  color: var(--color-main);
  margin: 0 auto 32px;
}
@media screen and (max-width: 767px) {
  .page-evaluation .c-mv__text-head {
    font-size: 1.5625rem;
    text-align: left;
    margin-bottom: 16px;
  }
}
.page-evaluation .c-mv__text-cnt {
  font-size: 1.125rem;
  line-height: 250%;
}
@media screen and (max-width: 767px) {
  .page-evaluation .c-mv__text-cnt {
    line-height: 220%;
  }
}
.page-evaluation .c-mv__text-cnt em {
  font-weight: bold;
  font-style: normal;
  color: var(--color-main);
}

.p-evaluation-note {
  width: 800px;
  margin: 40px auto 0;
  border: 2px solid var(--color-sub);
  padding: 24px 40px;
  border-radius: 30px;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .p-evaluation-note {
    width: 100%;
    margin-top: 32px;
    padding: 20px;
    flex-direction: column;
    gap: 8px;
    border-width: 4px;
  }
}
.p-evaluation-note__text {
  width: calc(100% - 320px);
}
@media screen and (max-width: 767px) {
  .p-evaluation-note__text {
    width: 100%;
  }
}
.p-evaluation-note__img {
  width: 296px;
}
.p-evaluation-note__img img {
  border-radius: 0;
}
@media screen and (max-width: 767px) {
  .p-evaluation-note__img {
    width: 100%;
  }
}

.p-evaluation-pillar {
  padding: 40px;
  background: var(--color-light);
  border-radius: 60px;
  margin-top: 40px;
  gap: 26px;
}
@media screen and (max-width: 767px) {
  .p-evaluation-pillar {
    padding: 20px;
    border-radius: 30px;
    margin-top: 32px;
    gap: 16px;
  }
}
.p-evaluation-pillar__head {
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-evaluation-pillar__head {
    font-size: 1.25rem;
  }
}
.p-evaluation-pillar__items {
  align-items: stretch !important;
  gap: 28px;
}
@media screen and (max-width: 767px) {
  .p-evaluation-pillar__items {
    flex-direction: column;
    gap: 14px;
  }
}
.p-evaluation-pillar__item {
  width: calc((100% - 56px) / 3);
  padding: 20px 20px 32px;
  background: #fff;
  border-radius: 30px;
  border: 4px solid var(--color-sub);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (max-width: 767px) {
  .p-evaluation-pillar__item {
    width: 100%;
    padding: 16px;
    border-radius: 15px;
    border-width: 2px;
  }
}
.p-evaluation-pillar__ttl {
  width: 100%;
  font-size: 1.875rem;
  font-weight: bold;
  line-height: 150%;
  text-align: center;
  color: var(--color-main);
  border-bottom: 3px solid var(--color-sub);
}
@media screen and (max-width: 767px) {
  .p-evaluation-pillar__ttl {
    font-size: 1.25rem;
    border-width: 2px;
  }
}
.p-evaluation-pillar__lead {
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 140%;
  min-height: 84px;
}
@media screen and (max-width: 767px) {
  .p-evaluation-pillar__lead {
    font-size: 1.125rem;
    min-height: auto;
  }
}
.p-evaluation-pillar__img {
  width: 37%;
}
@media screen and (max-width: 767px) {
  .p-evaluation-pillar__img {
    width: 22%;
  }
}
.p-evaluation-pillar__text {
  width: 63%;
  padding-left: 4%;
  line-height: 140%;
}
@media screen and (max-width: 767px) {
  .p-evaluation-pillar__text {
    width: 78%;
    padding-left: 2%;
    font-size: 0.875rem;
  }
}

.p-evaluation-goal {
  margin-top: 56px;
  gap: 40px;
  align-items: stretch !important;
}
@media screen and (max-width: 767px) {
  .p-evaluation-goal {
    margin-top: 40px;
    gap: 40px;
    flex-direction: column;
  }
}
.p-evaluation-goal > div {
  width: calc((100% - 40px) / 2);
}
@media screen and (max-width: 767px) {
  .p-evaluation-goal > div {
    width: 100%;
  }
  .p-evaluation-goal > div h4 {
    font-size: 1.1875rem;
  }
}

.p-evaluation-point__head {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 100%;
  text-align: center;
  width: 100%;
  padding: 32px;
  border-radius: 30px 30px 0 0;
  background: var(--color-main);
  color: #fff;
  margin-top: 120px;
}
@media screen and (max-width: 767px) {
  .p-evaluation-point__head {
    font-size: 1.1875rem;
    line-height: 140%;
    padding: 16px;
    margin-top: 60px;
  }
}
.p-evaluation-point__cnt {
  padding: 40px;
  gap: 40px;
  border: 2px solid var(--color-main);
  border-top: none;
  border-radius: 0 0 30px 30px;
}
@media screen and (max-width: 767px) {
  .p-evaluation-point__cnt {
    padding: 20px;
    gap: 24px;
    border-width: 2px;
  }
}
.p-evaluation-point__cnt .c-point-box-list {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-evaluation-point__cnt .c-point-box-list {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .p-evaluation-point__cnt .c-point-box-list__pref {
    white-space: nowrap;
    font-size: 0.96em;
  }
  .p-evaluation-point__cnt .c-point-box-list__text {
    text-align: left;
    line-height: 140%;
  }
}
.p-evaluation-point__cnt .c-point-box-list > li {
  width: calc((100% - 72px) / 4);
}
@media screen and (max-width: 767px) {
  .p-evaluation-point__cnt .c-point-box-list > li {
    width: calc((100% - 8px) / 2);
    padding: 14px;
  }
}
.p-evaluation-point__items {
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .p-evaluation-point__items {
    flex-direction: column;
    gap: 20px;
  }
}
.p-evaluation-point__items > div {
  width: calc((100% - 40px) / 2);
}
@media screen and (max-width: 767px) {
  .p-evaluation-point__items > div {
    width: 100%;
  }
}
.p-evaluation-point__ttl {
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 100%;
  color: var(--color-main);
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .p-evaluation-point__ttl {
    font-size: 1.1875rem;
    line-height: 150%;
  }
}

.p-evaluation-message {
  width: 100%;
  padding: 64px 80px;
  background: var(--color-light);
  border-radius: 40px;
  text-align: center;
  align-items: center !important;
  gap: 0;
}
@media screen and (max-width: 767px) {
  .p-evaluation-message {
    padding: 40px 20px;
    border-radius: 30px;
  }
}
.p-evaluation-message__head {
  display: inline-block;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-evaluation-message__head {
    font-weight: bold;
    line-height: 150%;
  }
}
.p-evaluation-message__head::before, .p-evaluation-message__head::after {
  content: "";
  width: 32px;
  height: 2px;
  background: var(--color-main);
  position: absolute;
  left: -50px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .p-evaluation-message__head::before, .p-evaluation-message__head::after {
    height: 1px;
    left: -40px;
  }
}
.p-evaluation-message__head::after {
  left: auto;
  right: -50px;
}
@media screen and (max-width: 767px) {
  .p-evaluation-message__head::after {
    right: -40px;
  }
}
.p-evaluation-message__lead {
  width: 100%;
  font-size: 1.875rem;
  font-weight: bold;
  line-height: 180%;
  color: var(--color-main);
  margin: 16px auto 32px !important;
}
@media screen and (max-width: 767px) {
  .p-evaluation-message__lead {
    font-size: 1.25rem;
    line-height: 180%;
    margin: 8px auto 16px !important;
  }
}
@media screen and (max-width: 767px) {
  .p-evaluation-message__text {
    line-height: 200%;
    text-align: left;
  }
}

.p-evaluation-small {
  font-size: 0.875rem;
}

.p-evaluation-model {
  gap: 40px;
  margin-top: 56px;
}
@media screen and (max-width: 767px) {
  .p-evaluation-model {
    margin-top: 40px;
    flex-direction: column;
    gap: 40px;
  }
}
.p-evaluation-model > div {
  width: calc((100% - 40px) / 2);
}
@media screen and (max-width: 767px) {
  .p-evaluation-model > div {
    width: 100%;
  }
}
.p-evaluation-model .c-popup-block__list .wp-block-image {
  width: 100%;
  margin-top: 16px !important;
}

.p-evaluation-growth {
  gap: 40px;
  align-items: stretch !important;
  margin: 40px auto;
}
@media screen and (max-width: 767px) {
  .p-evaluation-growth {
    flex-direction: column;
    gap: 20px;
  }
}
.p-evaluation-growth > div {
  width: calc((100% - 40px) / 2);
  padding: 40px;
  background: var(--color-light);
  border-radius: 30px;
  gap: 0;
}
@media screen and (max-width: 767px) {
  .p-evaluation-growth > div {
    width: 100%;
    padding: 40px 20px;
  }
}
.p-evaluation-growth__head {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 150%;
  text-align: center;
  width: 100%;
  margin-bottom: 24px !important;
}
@media screen and (max-width: 767px) {
  .p-evaluation-growth__head {
    font-size: 1.25rem;
  }
}
.p-evaluation-growth__ttl {
  font-weight: bold;
  line-height: 150%;
  margin: 24px 0 16px !important;
}
.p-evaluation-growth__ttl.top {
  margin-top: 0 !important;
}
.p-evaluation-growth .wp-block-list li + li {
  margin-top: 16px;
}
.p-evaluation-growth__text {
  font-size: 1.125rem;
  font-weight: bold;
  color: var(--color-main);
  text-align: center;
  margin-top: 40px !important;
}
@media screen and (max-width: 767px) {
  .p-evaluation-growth__text {
    margin-top: 24px !important;
  }
}

.main-image {
  width: 100%;
  height: calc(100vh - 142px);
  max-height: 810px;
  min-height: 600px;
}
.main-image .inner {
  width: 84%;
  height: 100%;
  margin: 0 auto;
  border-radius: 0 0 180px 180px;
  overflow: hidden;
  position: relative;
}

.main-copy {
  position: relative;
  z-index: 12;
  margin: 37px 0 0 45px;
}

.main-point {
  width: 76%;
  max-width: 1200px;
  display: flex;
  justify-content: center;
  position: absolute;
  bottom: 45px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 12;
  gap: 10px;
}
.main-point img {
  width: 16.6666666667%;
}

.main-image .bg-movie {
  width: 100%;
  height: 100vh;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
}

.main-image .bg-movie video {
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.main-image .bg-grey {
  width: 100%;
  height: 100%;
  background-color: #7f7f7f;
  position: absolute;
  z-index: 11;
  mix-blend-mode: multiply;
}

@keyframes mvScroll {
  0% {
    opacity: 0;
  }
  10% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(15px);
    opacity: 0;
  }
}
.p-top-mv__scroll {
  position: absolute;
  bottom: 0;
  right: 30px;
  height: 63px;
  z-index: 2;
}

.p-top-mv__scroll::after {
  content: "";
  display: block;
  position: absolute;
  text-transform: uppercase;
  top: 18px;
  left: calc(50% - 1px);
  width: 1px;
  height: calc(100% - 18px);
  background-color: var(--color-main);
  animation-name: mvScroll;
  animation-duration: 2.2s;
  animation-timing-function: cubic-bezier(0.15, 0.41, 0.69, 0.94);
  animation-iteration-count: infinite;
}

.top-section .inner {
  width: 1320px;
  margin: 0 auto;
}
.top-section .inner .h2-wrap {
  text-align: center;
}
.top-section .inner .h2-wrap img {
  margin: 0 auto 51px;
}
.top-section .inner .h2-wrap h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
}
.top-section .inner .h2-wrap h2 span {
  font-size: 1.875rem;
}
.top-section .inner p.copy {
  text-align: center;
  font-size: 1.875rem;
  line-height: 1.8;
  font-weight: 700;
  color: var(--color-main);
  margin: 80px 0 0;
}
.top-section .inner p.sub-copy {
  width: 600px;
  margin: 12px auto 0;
  line-height: 2.5;
}
.top-section .link-box-wrap {
  display: flex;
  margin-top: 104px;
}
.top-section .top-message {
  margin-top: 74px;
  padding-bottom: 105px;
}
.top-section .top-message .inner {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 10;
}
.top-section .top-message .inner .txt {
  margin-right: 38px;
}

.top-intro {
  padding: 160px 0;
  position: relative;
}
.top-intro img.intro-left {
  position: absolute;
  right: 50%;
  margin-right: 30vw;
  top: 187px;
  max-width: 398px;
  width: 20vw;
  z-index: 1;
}
.top-intro img.intro-right {
  position: absolute;
  left: 50%;
  margin-left: 30vw;
  top: 244px;
  max-width: 418px;
  width: 20vw;
  z-index: 1;
}
.top-intro img.intro-bg {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: auto;
  z-index: 0;
}
.top-intro .inner {
  width: 724px;
  margin: 0 auto;
}
.top-intro .inner p {
  margin-top: 46px;
  line-height: 2.5;
  font-size: 1.25rem;
}
.top-intro h2 {
  font-size: 2.5rem;
  color: var(--color-main);
  font-weight: 700;
  text-align: center;
  line-height: 2;
  margin-bottom: 83px;
}
.top-intro p.sub-title {
  font-size: 1.4375rem;
  color: var(--color-text);
  line-height: 1.9;
  text-align: center;
  font-weight: 700;
}
.top-intro p.sub-title span.underline {
  border-bottom: 4px solid var(--color-main);
  font-size: 1.625rem;
}
.top-intro ul {
  padding-left: 0;
}
.top-intro ul li {
  list-style-type: none;
  display: flex;
  margin-bottom: 10px;
  font-size: 1.25rem;
}
.top-intro ul li::before {
  content: "";
  margin-right: 10px;
  display: block;
  width: 20px;
  height: 25px;
  background-image: url(../img/top/icon-intro-list.png);
  margin-top: 3px;
}
.top-intro .comment {
  width: 861px;
  margin: 121px auto 0;
  display: flex;
  justify-content: space-between;
  position: relative;
}
.top-intro .comment p {
  width: 400px;
  height: 294px;
  background-color: #fff;
  border-radius: 30px;
  padding: 45px 33px;
  line-height: 1.9;
}
.top-intro .comment p:nth-last-of-type(1) {
  margin-top: 58px;
}
.top-intro .intro-end {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.8;
  margin-top: 92px;
}

@media screen and (max-width: 1300px) {
  img.intro-left {
    display: none;
  }
  img.intro-right {
    display: none;
  }
}
.top-about {
  padding: 107px 0;
  border-radius: 120px 120px 0 0;
  background-color: #fff;
  margin-top: -120px;
  position: relative;
  z-index: 2;
  background-image: url(../img/top/pattern_recruit_pc.png);
  background-repeat: no-repeat;
  background-position: right 94px;
}
.top-about .copy-wrap {
  position: relative;
  width: 1320px;
  padding-top: 0;
}
.top-about .copy-wrap img.about-left {
  position: absolute;
  left: 0;
  top: -100px;
}
.top-about .copy-wrap img.about-right {
  position: absolute;
  right: 0;
  top: -100px;
}
.top-about .link-box-wrap {
  width: 1202px;
  margin: 104px auto 0;
  flex-wrap: wrap;
  justify-content: space-between;
}
.top-about .link-box-wrap .box {
  width: 588px;
  height: 262px;
  background-color: #fff;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  margin-bottom: 24px;
  transition: opacity 0.3s ease;
}
.top-about .link-box-wrap .box a {
  text-decoration: none;
  z-index: 1;
  position: relative;
}
.top-about .link-box-wrap .box a::after {
  content: url(../img/top/icon-arrow-aboutbox.png);
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 10;
  line-height: 1;
  pointer-events: none;
}
.top-about .link-box-wrap .box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.5s ease;
  z-index: 0;
}
.top-about .link-box-wrap .box:nth-of-type(1)::before {
  background-image: url(../img/top/about-01.jpg);
}
.top-about .link-box-wrap .box:nth-of-type(2)::before {
  background-image: url(../img/top/about-02.jpg);
}
.top-about .link-box-wrap .box:nth-of-type(3)::before {
  background-image: url(../img/top/about-03.jpg);
}
.top-about .link-box-wrap .box:nth-of-type(4)::before {
  background-image: url(../img/top/about-04.jpg);
}
.top-about .link-box-wrap .box .txt {
  display: block;
  width: 280px;
  height: 262px;
  background-color: rgba(9, 133, 81, 0.8);
  display: flex;
  align-items: center;
  padding-left: 35px;
  position: relative;
  overflow: hidden;
  transition: 0.3s ease;
  position: relative;
  z-index: 10;
  color: #fff;
}
.top-about .link-box-wrap .box .txt h3 {
  font-size: 1.625rem;
  z-index: 1;
  isolation: isolate;
}
.top-about .link-box-wrap .box:hover::before {
  transform: scale(1.1);
}
.top-about .link-box-wrap .box:hover {
  opacity: 0.7;
}
.top-about .feature {
  width: 1200px;
  height: 200px;
  margin: 24px auto 0;
  position: relative;
  overflow: hidden;
  border-radius: 30px;
}
.top-about .feature::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(../img/top/feature-bg.jpg);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: 0.3s ease;
}
.top-about .feature:hover::before {
  opacity: 0.7;
  transform: scale(1.1);
}
.top-about .feature a {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  text-align: center;
  width: 100%;
  height: 100%;
  color: #fff;
  font-size: 1.5rem;
}
.top-about .feature a img {
  margin-right: 39px;
}
.top-about .about-comment {
  margin-top: 84px;
  width: 100%;
  height: 430px;
  background-image: url(../img/top/about-cont-bg.png);
  background-size: cover;
  background-position: left top;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
}
.top-about .about-comment .inner {
  width: 1200px;
  height: 430px;
  margin: 0 auto;
  padding-top: 109px;
  padding-left: 425px;
}

.top-work {
  background-color: var(--color-light);
  position: relative;
  z-index: 2;
  background-image: url(../img/top/work-bg.png);
  background-repeat: no-repeat;
  background-position: left top;
}
.top-work .copy-wrap {
  position: relative;
  width: 1320px;
}
.top-work .copy-wrap img.about-left {
  position: absolute;
  left: 0;
  top: -100px;
}
.top-work .copy-wrap img.about-right {
  position: absolute;
  right: 0;
  top: -100px;
}
.top-work .link-box-wrap {
  width: 1202px;
  margin: 104px auto 0;
  flex-wrap: wrap;
  justify-content: center;
}
.top-work .link-box-wrap .box {
  width: 375px;
  height: 200px;
  border-radius: 30px;
  margin-right: 38px;
  overflow: hidden;
  position: relative;
  margin-bottom: 36px;
  transition: opacity 0.3s ease;
}
.top-work .link-box-wrap .box::after {
  content: url(../img/top/icon-arrow-aboutbox.png);
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 10;
  line-height: 1;
  pointer-events: none;
}
.top-work .link-box-wrap .box:nth-of-type(3), .top-work .link-box-wrap .box:nth-of-type(5) {
  margin-right: 0;
}
.top-work .link-box-wrap .box a {
  text-decoration: none;
  z-index: 1;
  position: relative;
}
.top-work .link-box-wrap .box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.5s ease;
  z-index: 0;
}
.top-work .link-box-wrap .box:nth-of-type(1)::before {
  background-image: url(../img/top/work01.jpg);
}
.top-work .link-box-wrap .box:nth-of-type(2)::before {
  background-image: url(../img/top/work02.jpg);
}
.top-work .link-box-wrap .box:nth-of-type(3)::before {
  background-image: url(../img/top/work03.jpg);
}
.top-work .link-box-wrap .box:nth-of-type(4)::before {
  background-image: url(../img/top/work04.jpg);
}
.top-work .link-box-wrap .box:nth-of-type(5)::before {
  background-image: url(../img/top/work05.jpg);
}
.top-work .link-box-wrap .box .txt {
  display: block;
  width: 100px;
  height: 200px;
  background-color: rgba(9, 133, 81, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  transition: 0.3s ease;
  z-index: 10;
  color: #fff;
  writing-mode: vertical-rl;
  text-orientation: upright;
}
.top-work .link-box-wrap .box .txt h3 {
  font-size: 1.625rem;
  z-index: 1;
  line-height: 1.3;
  isolation: isolate;
}
.top-work .link-box-wrap .box:hover::before {
  transform: scale(1.1);
}
.top-work .link-box-wrap .box:hover {
  opacity: 0.7;
}
.top-work .link-box-wrap .box:nth-of-type(1) .txt h3 {
  text-indent: 0.8em;
}
.top-work .feature {
  width: 1200px;
  height: 200px;
  margin: 24px auto 0;
  position: relative;
  overflow: hidden;
  border-radius: 30px;
}
.top-work .feature::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(../img/top/feature-bg.jpg);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: 0.3s ease;
}
.top-work .feature:hover::before {
  opacity: 0.7;
  transform: scale(1.1);
}
.top-work .feature a {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  width: 100%;
  height: 100%;
  color: #fff;
  font-size: 1.5rem;
  text-align: center;
}
.top-work .feature a img {
  margin-right: 39px;
}
.top-work .work-message {
  position: relative;
}
.top-work .work-message img.work-m-bg {
  position: absolute;
  top: -120px;
  left: 0;
  z-index: 0;
}

.top-interview {
  padding: 148px 0 178px;
  background-color: #fff;
  position: relative;
  z-index: 2;
  background-image: url(../img/top/pattern_recruit_pc.png);
  background-repeat: no-repeat;
  background-position: right top;
}
.top-interview .inner {
  width: 100%;
}
.top-interview .inner p.copy {
  margin-top: 14px;
  text-align: left;
  line-height: 2;
}
.top-interview .txt-wrap {
  display: flex;
  margin-top: 40px;
}
.top-interview .txt-wrap .copy-wrap {
  position: relative;
  width: 500px;
  margin-left: 75px;
}
.top-interview .txt-wrap .copy-wrap .sub-copy {
  width: 500px;
  line-height: 2.5;
}
.top-interview .interview-image {
  margin-top: 40px;
  width: 51.2vw;
  min-width: 670px;
  display: flex;
  height: 676px;
  border-radius: 0 100px 100px 0;
  overflow: hidden;
}
.top-interview .interview-image p {
  width: 33.3333333333%;
  overflow: hidden;
}
.top-interview .interview-image p img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.top-interview .interview-message {
  position: relative;
}
.top-interview .interview-message img.work-m-bg {
  position: absolute;
  top: -120px;
  right: 20%;
  z-index: 0;
}
.top-interview .interview-message .inner {
  flex-direction: row-reverse;
}
.top-interview .interview-message .inner .txt {
  margin-right: 0;
  margin-left: 96px;
}

.top-environment {
  background-color: var(--color-light);
  position: relative;
  z-index: 2;
  background-image: url(../img/top/work-bg.png);
  background-repeat: no-repeat;
  background-position: left top;
}
.top-environment .copy-wrap {
  position: relative;
  width: 1320px;
}
.top-environment .copy-wrap img.about-left {
  position: absolute;
  left: 0;
  top: -100px;
}
.top-environment .copy-wrap img.about-right {
  position: absolute;
  right: 0;
  top: -100px;
}
.top-environment .link-box-wrap {
  width: 1202px;
  margin: 104px auto 0;
  flex-wrap: wrap;
  justify-content: center;
}
.top-environment .link-box-wrap .box {
  width: 375px;
  height: 262px;
  border-radius: 30px;
  margin-right: 38px;
  overflow: hidden;
  position: relative;
  margin-bottom: 36px;
  transition: opacity 0.3s ease;
}
.top-environment .link-box-wrap .box::after {
  content: url(../img/top/icon-arrow-aboutbox.png);
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 10;
  line-height: 1;
  pointer-events: none;
}
.top-environment .link-box-wrap .box:nth-of-type(3), .top-environment .link-box-wrap .box:nth-of-type(5) {
  margin-right: 0;
}
.top-environment .link-box-wrap .box a {
  text-decoration: none;
  z-index: 1;
  position: relative;
}
.top-environment .link-box-wrap .box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.5s ease;
  z-index: 0;
}
.top-environment .link-box-wrap .box:nth-of-type(1)::before {
  background-image: url(../img/top/environment01.jpg);
}
.top-environment .link-box-wrap .box:nth-of-type(2)::before {
  background-image: url(../img/top/environment02.jpg);
}
.top-environment .link-box-wrap .box:nth-of-type(3)::before {
  background-image: url(../img/top/environment03.jpg);
}
.top-environment .link-box-wrap .box .txt {
  display: block;
  width: 100px;
  height: 262px;
  background-color: rgba(9, 133, 81, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  transition: 0.3s ease;
  z-index: 10;
  color: #fff;
  writing-mode: vertical-rl;
  text-orientation: upright;
}
.top-environment .link-box-wrap .box .txt h3 {
  font-size: 1.625rem;
  z-index: 1;
  line-height: 1.3;
  isolation: isolate;
}
.top-environment .link-box-wrap .box:hover::before {
  transform: scale(1.1);
}
.top-environment .link-box-wrap .box:hover {
  opacity: 0.7;
}
.top-environment .work-message {
  position: relative;
}
.top-environment .work-message img.work-m-bg {
  position: absolute;
  top: -220px;
  left: 200px;
  z-index: 0;
  pointer-events: none;
}

.top-news {
  width: 100%;
  padding: 60px 0 148px;
  border-radius: 0 0 100px 100px;
  text-align: center;
  background-color: var(--color-light);
  position: relative;
  z-index: 10;
}
.top-news .inner {
  width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.top-news .inner .blog-list {
  width: 520px;
  text-align: left;
}
.top-news .inner .blog-list h2 {
  font-size: 1.75rem;
  margin-bottom: 44px;
}
.top-news .inner .blog-list h2:before {
  content: url(../img/top/icon-h3-closs.svg);
  vertical-align: super;
  margin-right: 10px;
}
.top-news .inner .blog-list article dl {
  padding: 16px 0;
  border-bottom: 1px solid #999;
}
.top-news .inner .blog-list article dl dt {
  font-size: 0.875rem;
  color: #868686;
}
.top-news .inner .blog-list article dl dd h3 {
  line-height: 1.4;
}
.top-news .inner .blog-list article dl dd h3 a {
  text-decoration: none;
  font-size: 1rem;
}
.top-news .inner .blog-list article dl dd h3 a:hover {
  color: var(--color-main);
}
.top-news .inner .blog-list .c-for-list {
  margin-top: 67px;
  text-align: left;
}
.top-news .for-family {
  width: 1200px;
  height: 200px;
  margin: 150px auto 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.top-news .for-family::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(../img/top/for-family-bg.jpg);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  transition: 0.3s ease;
}
.top-news .for-family:hover::before {
  opacity: 0.7;
  transform: scale(1.1);
}
.top-news .for-family a {
  display: flex;
  width: 1200px;
  height: 200px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 10;
  text-decoration: none;
  line-height: 1;
}
.top-news .for-family a p {
  width: 100%;
  line-height: 1;
  color: #fff;
  font-size: 1.75rem;
}
.top-news .for-family a img {
  display: block;
  margin: 0 auto 10px;
}

.entry-up-image {
  width: 100%;
  height: 828px;
  margin-top: -100px;
  position: relative;
  z-index: 9;
}
.entry-up-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.top-entry {
  background-color: var(--color-main);
  position: relative;
  z-index: 10;
  background-image: url(../img/top/entry-bg.png);
  background-repeat: no-repeat;
  background-position: right top;
  border-radius: 100px 100px 0 0;
  margin-top: -100px;
  padding-bottom: 78px;
}
.top-entry .h2-wrap {
  text-align: center;
}
.top-entry .h2-wrap h2 {
  font-size: 2.5rem;
  color: #fff;
  font-weight: 700;
}
.top-entry .h2-wrap span img {
  margin: 0 auto;
}
.top-entry .wrap {
  width: 1200px;
  margin: 45px auto;
  display: flex;
  justify-content: space-between;
}
.top-entry .wrap .box {
  width: 580px;
  padding: 64px 30px;
  background-color: #fff;
  border-radius: 45px;
  border: 10px solid var(--color-light);
  text-align: center;
}
.top-entry .wrap .box p.title {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 40px;
  color: var(--color-main);
}
.top-entry .wrap .box .entry-btn {
  margin-bottom: 63px;
}
.top-entry .wrap .box:has(.entry-btn a:hover) {
  border-color: #7AD1F2;
}
.top-entry .wrap .box .c-for-list a {
  display: block;
  padding: 20px 74px 20px 40px;
  margin-bottom: 17px;
  font-size: 1.125rem;
}
.top-entry .wrap .box:nth-of-type(1) .entry-btn:nth-of-type(1) a:nth-of-type(1) {
  border: 4px solid #009DE8;
  background-color: #fff;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 500px;
  height: 117px;
}
.top-entry .wrap .box:nth-of-type(1) .entry-btn:nth-of-type(1) a:nth-of-type(1):after {
  content: none;
}

@media screen and (max-width: 767px) {
  .main-image {
    width: 100%;
    height: auto;
    margin-top: 60px;
  }
  .main-image .inner {
    width: calc(100% - 64px);
    height: 100vw;
    margin: 0 auto;
    z-index: 9;
    border-radius: 0 0 175px 175px;
  }
  .main-image .bg-movie {
    height: 100vw;
    border-radius: 0 0 175px 175px;
    overflow: hidden;
  }
  .main-image .bg-movie video {
    height: 100vw;
  }
  .main-image .bg-grey {
    border-radius: 0 0 175px 175px;
  }
  .main-copy {
    width: 72vw;
    margin: 10px auto;
  }
  .main-point-sp {
    position: relative;
    z-index: 12;
    margin-top: -20vw;
  }
  .top-section .link-box-wrap {
    display: block;
    width: 100%;
  }
  .top-section .inner {
    width: 89vw;
    margin: 0 auto;
  }
  .top-section .inner p.copy {
    font-size: 1.5625rem;
    margin-top: 20px;
  }
  .top-section .inner p.sub-copy {
    width: 100%;
    font-size: 1rem;
    line-height: 2.2;
  }
  .top-section .inner .h2-wrap h2 {
    font-size: 2.1875rem;
    line-height: 1.5;
    margin-bottom: 20px;
  }
  .top-section .inner .h2-wrap h2 span {
    font-size: 1.5625rem;
  }
  .top-section .inner .h2-wrap img {
    margin-bottom: 20px;
  }
  .top-section .inner .h3-wrap h3 {
    font-size: 1.625rem;
    text-align: center;
    margin: 0 auto;
    text-align: center;
    border-bottom: 4px solid #452309;
    font-weight: bold;
    display: inline-block;
    text-align: center;
    padding-bottom: 10px;
    line-height: 2;
  }
  .top-section .inner .h3-wrap span {
    color: #a0a0a0;
    font-size: 1rem;
    margin-top: 16px;
    display: block;
    line-height: 1;
  }
  .top-section .top-message {
    padding-bottom: 60px;
  }
  .top-section .top-message .inner {
    display: block;
  }
  .top-section .top-message .inner .txt {
    width: 100%;
    margin: 0;
  }
  .top-section .top-message .inner .txt img {
    width: 100%;
    height: auto;
  }
  .top-section .top-message .inner .image img {
    margin-left: auto;
  }
  .top-intro {
    background-image: url(../img/top/top-intro-bg-sp.png), url(../img/top/intro-bg-sp.png);
    background-repeat: no-repeat;
    background-position: left 38px, left bottom;
    background-size: 240px auto, 100% auto;
    padding-top: 13vw;
    padding-bottom: 38vw;
  }
  .top-intro h2 {
    font-size: 1.5625rem;
    line-height: 1.5;
    margin-bottom: 27px;
  }
  .top-intro p.sub-title {
    font-size: 1.25rem;
    margin-top: 32px;
  }
  .top-intro p.sub-title span.underline {
    font-size: 1.5rem;
  }
  .top-intro .inner p {
    font-size: 3.9vw;
    line-height: 2;
    margin-top: 20px;
  }
  .top-intro .inner ul li {
    font-size: 3.9vw;
  }
  .top-intro .inner img.intro-right-sp {
    margin-top: 48px;
  }
  .top-intro .comment {
    width: 100%;
    display: block;
    margin-top: 35vw;
  }
  .top-intro .comment p {
    width: 92%;
    height: auto;
    margin: 0 auto;
    padding: 20px;
    font-size: 3.4vw;
  }
  .top-intro .comment p:nth-last-of-type(1) {
    margin-top: 12px;
  }
  .top-intro .intro-end {
    width: 92%;
    margin: 32px auto 0;
    font-size: 4.1vw;
    text-align: left;
  }
  .top-about {
    border-radius: 60px 60px 0 0;
    padding-top: 40px;
    padding-bottom: 80px;
    background-image: url(../img/top/top-intro-bg-sp.png);
    background-size: 240px auto;
  }
  .top-about .inner .h2-wrap span img {
    zoom: 0.5;
  }
  .top-about .copy-wrap {
    width: 100%;
  }
  .top-about .link-box-wrap {
    width: 100%;
    display: block;
    margin-top: 40px;
  }
  .top-about .link-box-wrap .box {
    width: 100%;
    height: 32vw;
    margin-bottom: 20px;
    border-radius: 18px;
  }
  .top-about .link-box-wrap .box .txt {
    width: 50%;
    height: 32vw;
    padding-left: 20px;
  }
  .top-about .link-box-wrap .box .txt h3 {
    font-size: 1.125rem;
    line-height: 1.4;
  }
  .top-about .link-box-wrap .box a::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-image: linear-gradient(to right, rgb(194, 194, 194), rgba(115, 115, 115, 0));
    z-index: 10;
  }
  .top-about .link-box-wrap .box a::after {
    content: "";
    display: block;
    width: 25px;
    height: 25px;
    position: absolute;
    right: 8px;
    bottom: 8px;
    background-image: url(../img/top/icon-arrow-aboutbox-sp.png);
    background-size: cover;
  }
  .top-about .link-box-wrap .box:nth-of-type(1)::before {
    background-image: url(../img/top/about-01-sp.jpg);
  }
  .top-about .link-box-wrap .box:nth-of-type(2)::before {
    background-image: url(../img/top/about-02-sp.jpg);
  }
  .top-about .link-box-wrap .box:nth-of-type(3)::before {
    background-image: url(../img/top/about-03-sp.jpg);
  }
  .top-about .link-box-wrap .box:nth-of-type(4)::before {
    background-image: url(../img/top/about-04-sp.jpg);
  }
  .top-about .feature {
    width: 100%;
    height: auto;
    margin: 40px auto 0;
    position: relative;
    overflow: hidden;
    border-radius: 18px;
  }
  .top-about .feature a {
    font-size: 1.0625rem;
    padding: 26px 11px;
  }
  .top-about .feature a img {
    margin-right: 12px;
  }
  .top-about .about-comment {
    background-image: url(../img/top/about-cont-bg-sp.png);
    height: 115vw;
    margin-top: 10px;
  }
  .top-about .about-comment .inner {
    width: 100%;
    padding: 0;
    height: auto;
    margin-top: 36px;
  }
  .top-about .about-comment .inner img {
    width: 96%;
    margin: 0 auto;
  }
  .top-work {
    background-image: url(../img/top/top-intro-bg-sp.png);
    background-size: 240px auto;
    background-position: left 94px;
    padding-top: 40px;
  }
  .top-work .copy-wrap {
    width: 100%;
  }
  .top-work .link-box-wrap {
    margin-top: 40px;
    width: 100%;
    display: block;
  }
  .top-work .link-box-wrap .box {
    width: 100%;
    height: 36vw;
    margin-bottom: 20px;
    border-radius: 18px;
  }
  .top-work .link-box-wrap .box::after {
    content: "";
    display: block;
    width: 25px;
    height: 25px;
    position: absolute;
    right: 8px;
    bottom: 8px;
    background-image: url(../img/top/icon-arrow-aboutbox-sp.png);
    background-size: cover;
  }
  .top-work .link-box-wrap .box .txt {
    height: 36vw;
  }
  .top-work .link-box-wrap .box .txt h3 {
    font-size: 1.125rem;
  }
  .top-work .link-box-wrap .box:nth-of-type(1)::before {
    background-image: url(../img/top/work01-sp.jpg);
  }
  .top-work .link-box-wrap .box:nth-of-type(2)::before {
    background-image: url(../img/top/work02-sp.jpg);
  }
  .top-work .link-box-wrap .box:nth-of-type(3)::before {
    background-image: url(../img/top/work03-sp.jpg);
  }
  .top-work .link-box-wrap .box:nth-of-type(4)::before {
    background-image: url(../img/top/work04-sp.jpg);
  }
  .top-work .link-box-wrap .box:nth-of-type(5)::before {
    background-image: url(../img/top/work05-sp.jpg);
  }
  .top-work .feature {
    width: 100%;
    height: auto;
    margin: 40px auto 0;
    position: relative;
    overflow: hidden;
    border-radius: 18px;
  }
  .top-work .feature::before {
    background-image: url(../img/top/feature-bg-sp.jpg);
    background-size: contain;
  }
  .top-work .feature a {
    font-size: 1.0625rem;
    padding: 26px 11px;
  }
  .top-work .feature a img {
    margin-right: 12px;
  }
  .top-interview {
    overflow-x: hidden;
    padding-top: 96px;
    padding-bottom: 60px;
    background-image: url(../img/top/top-intro-bg-sp.png);
    background-size: 240px auto;
    background-position: right 168px;
  }
  .top-interview .inner {
    width: 100%;
  }
  .top-interview .txt-wrap {
    width: 100%;
    display: block;
    margin-top: 0;
  }
  .top-interview .interview-image {
    border-radius: 0 50px 50px 0;
    width: 94%;
    min-width: 94%;
    height: auto;
    margin-top: 27px;
  }
  .top-interview .txt-wrap .copy-wrap {
    width: calc(100% - 40px);
    margin: 0 20px;
  }
  .top-interview .txt-wrap .copy-wrap p.copy {
    text-align: center;
  }
  .top-interview .txt-wrap .copy-wrap p.sub-copy {
    width: 100%;
  }
  .top-interview .interview-message {
    width: 89%;
    margin: 0 auto;
    padding-top: 52px;
    padding-bottom: 0;
  }
  .top-interview .interview-message img.work-m-bg {
    top: 0;
  }
  .top-interview .c-for-list {
    margin: 40px auto 100px;
  }
  .top-environment {
    padding-top: 40px;
    background-image: url(../img/top/top-intro-bg-sp.png);
    background-size: 240px auto;
    background-position: left 94px;
  }
  .top-environment .copy-wrap {
    width: 100%;
  }
  .top-environment .link-box-wrap {
    width: 100%;
  }
  .top-environment .link-box-wrap .box {
    width: 100%;
    height: 36vw;
    margin-bottom: 20px;
    border-radius: 18px;
  }
  .top-environment .link-box-wrap .box::before {
    background-position: right top;
  }
  .top-environment .link-box-wrap .box::after {
    content: "";
    display: block;
    width: 25px;
    height: 25px;
    position: absolute;
    right: 8px;
    bottom: 8px;
    background-image: url(../img/top/icon-arrow-aboutbox-sp.png);
    background-size: cover;
  }
  .top-environment .link-box-wrap .box .txt {
    height: 36vw;
  }
  .top-environment .link-box-wrap .box .txt h3 {
    font-size: 1.125rem;
  }
  .top-environment .link-box-wrap .box:nth-of-type(1)::before {
    background-image: url(../img/top/environment01-sp.jpg);
  }
  .top-environment .link-box-wrap .box:nth-of-type(2)::before {
    background-image: url(../img/top/environment02-sp.jpg);
  }
  .top-environment .link-box-wrap .box:nth-of-type(3)::before {
    background-image: url(../img/top/environment03-sp.jpg);
  }
  .top-environment .work-message img.work-m-bg {
    top: 0;
    left: 0;
  }
  .top-news {
    margin-top: 54px;
    width: 100%;
    margin-top: 0;
    text-align: center;
    border-radius: 0 0 60px 60px;
    padding-bottom: 56px;
  }
  .top-news .inner {
    display: block;
    margin: 40px auto;
    background: transparent;
    padding: 4% 15px;
  }
  .top-news .inner .blog-list {
    width: 100%;
    display: block;
    margin-top: 16px;
  }
  .top-news .inner .blog-list h2 {
    margin-bottom: 20px;
  }
  .top-news .inner .blog-list .c-for-list {
    width: 100%;
    text-align: center;
  }
  .top-news .for-family {
    width: 89%;
    border-radius: 18px;
    margin-top: 0;
  }
  .top-news .for-family::before {
    background-image: url(../img/top/for-family-bg-sp.jpg);
  }
  .top-news .for-family a {
    width: 100%;
    font-size: 1.5625rem;
  }
  .entry-up-image {
    margin-top: -54px;
    height: 80vw;
  }
  .top-entry {
    border-radius: 60px 60px 60px 60px;
    background-image: url(../img/top/top-intro-bg-sp.png);
    background-size: 240px auto;
    background-position: right 50px;
  }
  .top-entry .h2-wrap h2 {
    font-size: 1.875rem;
  }
  .top-entry .wrap {
    width: 92%;
    margin: 10px auto;
    display: block;
  }
  .top-entry .wrap .box {
    width: 100%;
    padding: 40px 15px;
    border-radius: 30px;
  }
  .top-entry .wrap .box p.title {
    font-size: 1.5625rem;
  }
  .top-entry .wrap .box .entry-btn {
    margin-bottom: 24px;
  }
  .top-entry .wrap .box .entry-btn a {
    height: 100px;
  }
  .top-entry .wrap .box:nth-of-type(1) {
    margin-bottom: 10px;
  }
  .top-entry .wrap .box:nth-of-type(1) .entry-btn:nth-of-type(1) a:nth-of-type(1) {
    border: 4px solid #009DE8;
    background-color: #fff;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100px;
  }
  .top-entry .wrap .box:nth-of-type(1) .entry-btn:nth-of-type(1) a:nth-of-type(1) img {
    width: 65%;
  }
  .top-entry .wrap .c-for-list {
    margin: 0 auto;
  }
  .top-entry .wrap .c-for-list a {
    width: 96%;
  }
}
@media screen and (max-width: 374px) {
  .top-section h2 {
    font-size: 9vw;
    line-height: 1.5;
  }
  .top-section h3 {
    font-size: 8vw;
    line-height: 1.5;
  }
  .top-section h4 {
    font-size: 7vw;
    line-height: 1.5;
  }
}
.u-main + .inner > :first-child,
.single-main + .inner > :first-child {
  margin-top: 0 !important;
}
.u-main + .inner > :last-child,
.single-main + .inner > :last-child {
  margin-bottom: 0 !important;
}/*# sourceMappingURL=style.css.map */