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

figure {
  margin: 0 !important;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

body {
  line-height: 1;
}

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

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

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

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

del {
  text-decoration: line-through;
}

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

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

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

input, select {
  vertical-align: middle;
}

/*----------------------------
■■　サイトの基本設定　base.scss ■■
------------------------------*/
/* ブレークポイント
pc：$layout-width-innerまで
tab：$layout-width-inner　-　1px ~ 768px
sp767未満
*/
/*-----------------------------------------
メディアクエリテンプレ https://haniwaman.com/breakpoint/
使い方：
@include mq('sp') { スマホレイアウト }
@include mq('tab') { タブレットレイアウト }
------------------------------------------*/
/* コンテナ幅 */
.container {
  width: 960px;
  margin: 0 auto;
}
@media screen and (max-width: 1000px) {
  .container {
    width: 100%;
    padding: 2rem 2rem;
  }
}
@media screen and (max-width: 767px) {
  .container {
    width: 100%;
    padding: 2rem 2rem;
  }
}

.container--l {
  width: 1344px;
  margin: 0 auto;
  padding: 0 3.2rem;
}
@media screen and (max-width: 1350px) {
  .container--l {
    width: 100%;
    padding: 0 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .container--l {
    width: 100%;
    padding: 0 10px;
  }
}

.container--s {
  width: 100rem;
  margin: 0 auto;
  padding: 0 2rem;
}
@media screen and (max-width: 1000px) {
  .container--s {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .container--s {
    width: 100%;
    padding: 0 2rem;
  }
}

/*----------------------------------------
フォント関係の設定
------------------------------------------*/
/*〇パソコン～768pxまでのフォントサイズ*/
/*----------------------------
基準フォント指定
使い方：
font-family: $font-base、$font-minchoなど
------------------------------*/
@font-face {
  font-family: "MOBO-Bold";
  src: url("../font/MOBO-Bold.otf") format("opentype");
}
/*------------------------------------------
■各フォントサイズ自由設定

使用例：
CSSにて、fzでショートコード利用可能

左から、PC,SPのフォントサイズ指定
@include font--l(rem,rem);

左から、PC、TAB、SPのフォントサイズ指定
@include font--l3(rem,rem,rem);
--------------------------------------------*/
/*----------------------------------------
色関係の設定
------------------------------------------*/
/*----------------------------
■　sectionのpadding設定
sectionによく使われる余白の設定
使い方：section class="sect-pad"
------------------------------*/
/*
・基準paddingの設定　基本PC 9.6rem SP4.8rem
------------------------------*/
.sect-pad {
  padding: 0 0 16rem;
}
@media screen and (max-width: 1000px) {
  .sect-pad {
    padding: 0 0 9.6rem;
  }
}
@media screen and (max-width: 767px) {
  .sect-pad {
    padding: 0 0 8rem;
  }
}

.sect-pad--y {
  padding: 16rem 0 16rem;
}
@media screen and (max-width: 1000px) {
  .sect-pad--y {
    padding: 9.6rem 0 9.6rem;
  }
}
@media screen and (max-width: 767px) {
  .sect-pad--y {
    padding: 8rem 0 8rem;
  }
}

/*----------------------------------------
全体構造：Structure
------------------------------------------*/
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none !important;
}

html {
  font-size: 62.5%;
  height: 100%;
  overflow-x: hidden;
}

img {
  width: 100%;
  height: auto;
  line-height: 1;
  vertical-align: top;
}

a {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  text-decoration: none;
  -webkit-transition: all 250ms;
  transition: all 250ms;
  color: #414141;
}
a:hover {
  opacity: 0.7;
}
a.u-pointer-events--pc {
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  a.u-pointer-events--pc {
    pointer-events: auto;
  }
}
a.u-blue--link {
  text-decoration: underline;
  color: #0000ee;
}

address {
  font-style: normal;
}

ul {
  list-style: none;
}

body {
  height: auto;
  width: 100%;
  background: #FFF;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 2;
  letter-spacing: 0.05em;
  -webkit-text-size-adjust: 100%;
  color: #414141;
  word-break: break-word;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 1.4rem;
    min-width: 32rem;
    overflow-x: hidden;
  }
}
body.body-kasou {
  background: #fff;
  color: #333;
}
body.home .l-header__logo-wrap {
  display: none;
}

button {
  font-family: "Noto Sans JP", sans-serif;
}

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

/* ユーザーエージェントスタイル（ブラウザ初期値）の上書き */
textarea {
  font-family: "Noto Sans JP", sans-serif;
}

/*----------------------------------------
〇ヘッダー固定の調整
概要：ヘッダーfixedの場合、メイン画像がヘッダーに隠れる為、その分の余白設定することで、下に隠れないようになる。
※ヘッダー固定の場合のみ調整
------------------------------------------*/
.main-body {
  padding-top: 8.5rem;
}
@media screen and (max-width: 767px) {
  .main-body {
    padding-top: 7.5rem;
  }
}
.main-body.p-top {
  margin-top: 0;
  padding-top: 0;
}
.main-body.p-recruit {
  padding-top: 9.5rem;
}
@media screen and (max-width: 767px) {
  .main-body.p-recruit {
    padding-top: 8.5rem;
  }
}

/*
WordPress管理バーの位置調整
使い方：
WordPress管理バーのずらしたい方向に、位置指定
*/
/*----------------------------
■　Chorome relタグ　自動赤点線の除去
------------------------------*/
body a[rel~=nofollow], body a[rel~=sponsored], body a[rel~=ugc] {
  outline: none !important;
}

/*----------------------------
■ base.scssここまで
------------------------------*/
/*----------------------------
Layout
------------------------------*/
/*----------------------------
■■ フッター　■■
------------------------------*/
/*----------------------------
フッター　テキストカラー初期設定
使い方：colorに、$footer-txt-colorを入力。
color: $footer-txt-color;
------------------------------*/
.l-footer {
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(20%, transparent), color-stop(20%, #389A6D), to(#389A6D));
  background: linear-gradient(to bottom, transparent 0%, transparent 20%, #389A6D 20%, #389A6D 100%);
  color: #fff;
  padding: 1.8rem 2rem 9.8rem;
  width: 100%;
  position: relative;
  position: relative;
  overflow: clip;
}
@media screen and (max-width: 767px) {
  .l-footer {
    padding: 8rem 0 2rem;
  }
}
@media screen and (max-width: 767px) {
  .l-footer.office {
    padding: 8rem 0 12rem;
  }
}
.l-footer .l-footer__entry {
  display: none;
}
@media screen and (max-width: 1000px) {
  .l-footer .container {
    padding: 2rem 0;
  }
}
@media screen and (max-width: 767px) {
  .l-footer .container {
    padding: 2rem;
  }
}
.l-footer__img {
  content: "";
  position: relative;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  max-width: 125.1rem;
  width: 125.1rem;
  z-index: 2;
}
@media screen and (max-width: 1000px) {
  .l-footer__img {
    max-width: 96rem;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__img {
    bottom: 7rem;
    max-width: unset;
    width: 100%;
    height: auto;
  }
}
.l-footer__img img {
  width: 100%;
  height: auto;
  aspect-ratio: 1251/417;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1000px) {
  .l-footer__img img {
    aspect-ratio: 900/376;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__img img {
    aspect-ratio: 375/276;
  }
}
.l-footer::after {
  content: "";
  position: absolute;
  top: 2rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 102%;
  height: 42.5rem;
  z-index: 1;
  background: url(../images/common/about-img-bg.png) no-repeat center/cover;
}
@media screen and (max-width: 767px) {
  .l-footer::after {
    width: 100%;
    top: 9.7rem;
    height: 17.9rem;
    background: url(../images/common/about-img-bg-sp.png) no-repeat center bottom/cover;
  }
}
.l-footer__entry-img {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
@media screen and (max-width: 1200px) {
  .l-footer__entry-img {
    margin-bottom: -4rem;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__entry-img {
    margin-bottom: 0;
  }
}
.l-footer__entry-img img {
  width: 100%;
  height: auto;
  aspect-ratio: 1400/95;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1000px) {
  .l-footer__entry-img img {
    aspect-ratio: 1000/107;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__entry-img img {
    aspect-ratio: 375/107;
  }
}
.l-footer a {
  color: #fff;
}
.l-footer__inner {
  padding-top: 6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1100px) {
  .l-footer__inner {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__inner {
    margin-top: -8.2rem;
    padding-top: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.l-footer__logo {
  max-width: 37rem;
}
@media screen and (max-width: 767px) {
  .l-footer__logo {
    max-width: 27rem;
  }
}
.l-footer__logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.2rem;
}
@media screen and (max-width: 767px) {
  .l-footer__logo a {
    gap: 0.4rem;
  }
}
.l-footer__logo-txt {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .l-footer__logo-txt {
    font-size: 0.9rem;
  }
}
.l-footer__logo-ttl {
  font-size: 3.7rem;
  font-weight: 700;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .l-footer__logo-ttl {
    font-size: 2.4rem;
  }
}
.l-footer__logo-ttl rt {
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .l-footer__logo-ttl rt {
    font-size: 0.7rem;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__time {
    text-align: center;
  }
}
.l-footer__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.l-footer__nav-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4rem;
}
@media screen and (max-width: 1000px) {
  .l-footer__nav-wrap {
    gap: 2rem;
  }
}
.l-footer__nav-lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}
@media screen and (max-width: 1000px) {
  .l-footer__nav-lists {
    gap: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__nav-lists {
    display: none;
  }
}
.l-footer__nav-item {
  font-size: 1.6rem;
  font-weight: 700;
}
@media screen and (max-width: 1000px) {
  .l-footer__nav-item {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__nav-item {
    font-size: 1rem;
  }
}
.l-footer__nav-item--link a {
  position: relative;
}
.l-footer__nav-item--link a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -2.5rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.5rem;
  height: 1.1rem;
  background: url(../images/common/link2.svg) no-repeat center/contain;
}
.l-footer__nav-item-sub {
  font-size: 1.4rem;
  font-weight: 400;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  line-height: 1.4;
  margin-top: -0.5rem;
  gap: 1rem;
}
@media screen and (max-width: 1000px) {
  .l-footer__nav-item-sub {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__nav-item-sub {
    font-size: 1rem;
  }
}
.l-footer__address {
  font-size: 1.2rem;
  margin-top: 2rem;
  letter-spacing: 0;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .l-footer__address {
    margin-top: 1.6rem;
  }
}
.l-footer__tel {
  font-size: 1.2rem;
  line-height: 1.8;
  font-weight: 400;
  letter-spacing: 0;
}
.l-footer__fax {
  font-size: 1.2rem;
  line-height: 1.8;
  font-weight: 400;
  letter-spacing: 0;
}
.l-footer__bottom {
  margin-top: 6rem;
  border-top: 1px solid #fff;
}
@media screen and (max-width: 767px) {
  .l-footer__bottom {
    display: none;
  }
}
.l-footer__bottom-lists {
  margin-top: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.5rem;
}
.l-footer__bottom-item {
  font-size: 1.4rem;
}
@media screen and (max-width: 1000px) {
  .l-footer__bottom-item {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__bottom-item {
    font-size: 1.2rem;
  }
}
.l-footer__copyright {
  font-size: 1rem;
  text-align: center;
  line-height: 1;
  font-weight: 400;
  margin-top: 5.3rem;
  letter-spacing: 0;
  color: #A8D5C0;
}
@media screen and (max-width: 767px) {
  .l-footer__copyright {
    margin-top: -3rem;
    line-height: 2.8;
  }
}

.l-footer.recruit {
  padding-bottom: 4rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 767px) {
  .l-footer.recruit {
    padding-top: 0;
    padding-bottom: 2rem;
  }
}
.l-footer.recruit .l-footer__recruit-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.l-footer.recruit .l-footer__copyright {
  margin-top: 6rem;
}
@media screen and (max-width: 767px) {
  .l-footer.recruit .l-footer__copyright {
    margin-top: 4rem;
  }
}
.l-footer.recruit .l-footer__entry {
  display: block;
  background: #F5F9E7;
  border-radius: 10px;
  margin-top: 5.1rem;
  padding: 8rem 9rem 8rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-footer.recruit .l-footer__entry {
    padding: 6.7rem 5.9rem 12.3rem;
    margin-bottom: 6rem;
  }
}
.l-footer.recruit .l-footer__entry::before {
  content: "";
  position: absolute;
  top: -6.3rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 18.4rem;
  height: 10.6rem;
  background: url(../images/recruit/entry.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .l-footer.recruit .l-footer__entry::before {
    top: -4.3rem;
    width: 15.4rem;
    height: 8.8rem;
  }
}
.l-footer.recruit .l-footer__entry::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 9rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 10.2rem;
  height: 10.2rem;
  background: url(../images/recruit/entry-arrow.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .l-footer.recruit .l-footer__entry::after {
    width: 6.5rem;
    height: 6.5rem;
    right: unset;
    top: unset;
    -webkit-transform: translateY(0) translateX(-50%);
            transform: translateY(0) translateX(-50%);
    left: 50%;
    bottom: 3.7rem;
  }
}
.l-footer.recruit .l-footer__entry-ttl-en {
  color: #389A6D;
  font-size: 4rem;
  font-family: "Krona One", sans-serif;
  line-height: 1.25;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .l-footer.recruit .l-footer__entry-ttl-en {
    font-size: 3rem;
    text-align: center;
  }
}
.l-footer.recruit .l-footer__entry-ttl {
  margin-top: 1.1rem;
  color: #389A6D;
  font-size: 1.7rem;
  font-weight: 700;
  font-family: "Krona One", sans-serif;
  letter-spacing: 0.1em;
  line-height: 2.5882352941;
}
@media screen and (max-width: 767px) {
  .l-footer.recruit .l-footer__entry-ttl {
    margin-top: 0;
    font-size: 1.4rem;
    line-height: 1.8;
    text-align: center;
  }
}
.l-footer.recruit .l-footer__entry-txt {
  margin-top: 1rem;
  color: #414141;
  font-size: 1.4rem;
  font-weight: 400;
  font-family: "Krona One", sans-serif;
  letter-spacing: 0.05em;
  line-height: 1.7142857143;
}
@media screen and (max-width: 767px) {
  .l-footer.recruit .l-footer__entry-txt {
    margin-top: 2rem;
    font-size: 1.4rem;
  }
}
.l-footer.recruit .l-footer__inner {
  padding-top: 0;
}
.l-footer.recruit .l-footer__img {
  display: none;
}
.l-footer.recruit::after {
  display: none;
}
.l-footer.recruit .l-footer__nav-wrap {
  gap: 3rem;
}
.l-footer.recruit .l-footer__nav-lists {
  gap: 1rem;
}
.l-footer.recruit .l-footer__recruit {
  padding-top: 7rem;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 767px) {
  .l-footer.recruit .l-footer__recruit {
    padding-top: 5rem;
  }
}

.bottom-link {
  display: none;
}

@media screen and (max-width: 767px) {
  .bottom-link {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 1.1rem;
    padding: 1rem;
    z-index: 100;
  }
  .bottom-link__btn {
    width: 50%;
    background: #389A6D;
    color: #fff;
    padding: 1.4rem 2.8rem;
    border-radius: 10px;
  }
  .bottom-link__btn span {
    display: inline-block;
    padding-left: 3rem;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 2;
    letter-spacing: 0;
    white-space: nowrap;
    position: relative;
  }
  .bottom-link__btn span::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 2.3rem;
    height: 2.3rem;
    background: url(../images/common/mail-white.svg) no-repeat center/contain;
  }
  .bottom-link__btn--orange {
    padding: 1.4rem 1.5rem;
    background: #EB9C3F;
  }
  .bottom-link__btn--orange span::before {
    background: url(../images/common/download-white.svg) no-repeat center/contain;
  }
}
/*----------------------------
header.php
------------------------------*/
.l-header {
  position: fixed;
  top: 0;
  width: 100%;
  max-width: 100%;
  z-index: 1000;
  background: #fff;
  /*----------------------------
  PCヘッダー
  ------------------------------*/
  /*----------------------------
  ロゴ設定
  ------------------------------*/
  /*----------------------------
  ナビラップ
  ------------------------------*/
  /*----------------------------
  ナビリスト
  ------------------------------*/
  /*----------------------------
  〇ナビ設定
  ------------------------------*/
  /*----------------------------
  ■ハンバーガーメニュー■
  ------------------------------*/
  /*----------------------------
  ■バーガーメニュー表示設定
  ------------------------------*/
  /*----------------------------
  ■バーガーメニュー　線
  ------------------------------*/
  /*----------------------------
  MENU/CLOSE文字の設定
  ------------------------------*/
  /*----------------------------
  ■ ctaボタン
  ------------------------------*/
  /*----------------------------
  ■バーガーメニュ左に配置
  使い方：l-header__drawerに、leftクラスを付与すると、左側のメニューに変更可能
  ------------------------------*/
}
@media screen and (max-width: 767px) {
  .l-header {
    background: transparent;
  }
}
@media screen and (max-width: 767px) {
  .l-header.is-scrolled:not(.header-recruit) {
    background: url(../images/kv/subkv_bg.png) no-repeat center/cover;
  }
}
.l-header.body-kasou {
  background: #fff;
}
@media screen and (max-width: 767px) {
  .l-header.body-kasou {
    background: url(../images/kv/subkv_bg.png) no-repeat center/cover;
  }
}
.l-header .container--l {
  padding: 0 1.3rem;
}
@media screen and (max-width: 767px) {
  .l-header .container--l {
    padding: 0 2rem;
  }
}
@media screen and (min-width: 1500px) {
  .l-header .container--l {
    width: 100%;
    padding: 0 5rem;
  }
}
.l-header .logo-entry-img {
  max-width: 30.4rem;
}
.l-header__wrap {
  height: 8.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1180px) {
  .l-header__wrap {
    height: 7.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.l-header__logo-wrap {
  display: block;
  max-width: 20.2rem;
}
@media screen and (max-width: 767px) {
  .l-header__logo-wrap {
    display: none;
    max-width: 14.6rem;
  }
}
.l-header__logo-wrap a div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.l-header__logo-wrap.body-kasou {
  display: block;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 22.1rem;
          flex: 0 0 22.1rem;
}
@media screen and (max-width: 767px) {
  .l-header__logo-wrap.body-kasou {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 18.3rem;
            flex: 0 0 18.3rem;
  }
}
.l-header.body-kasou .l-header__logo-wrap {
  display: block;
  max-width: 20.2rem;
}
@media screen and (max-width: 767px) {
  .l-header.body-kasou .l-header__logo-wrap {
    max-width: 14.6rem;
  }
}
.l-header__nav-logo {
  display: none;
}
.l-header__btn-contents {
  display: contents;
}
.l-header__bottom {
  display: none;
}
.l-header__nav-wrap {
  -webkit-box-flex: 1;
      -ms-flex: 1 1;
          flex: 1 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 1180px) {
  .l-header__nav-wrap {
    display: block;
    background: #389A6D;
    color: #414141;
    width: 100%;
    padding-top: 1rem;
    padding-bottom: 10rem;
    -webkit-transform: translate(200%);
            transform: translate(200%);
    overflow-y: auto;
    height: 100%;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    position: fixed;
    top: calc(7.5rem - 2px);
    top: 0;
    right: 0;
    z-index: 1003;
  }
  .l-header__nav-wrap.open {
    -webkit-transform: translate(0);
            transform: translate(0);
    height: 100%;
    padding: 0 2rem 10rem;
  }
  .l-header__nav-wrap.open .l-header__nav-item {
    display: block;
    position: relative;
    letter-spacing: 0;
    border-bottom: 1px solid #D4D9D7;
  }
  .l-header__nav-wrap.open .l-header__nav-item:nth-child(n+2) {
    margin-top: 1rem;
  }
  .l-header__nav-wrap.open .l-header__nav-item:nth-child(2) {
    margin-top: 2rem;
    border-bottom: none;
  }
  .l-header__nav-wrap.open .l-header__nav-logo {
    display: block;
    max-width: 16.1rem;
    margin-top: 1rem;
  }
  .l-header__nav-wrap.open .l-header__nav-logo div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.5rem;
  }
  .l-header__nav-wrap.open .l-header__nav-logo-txt {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.3;
    white-space: nowrap;
    color: #fff;
  }
}
@media screen and (max-width: 1180px) and (max-width: 1000px) {
  .l-header__nav-wrap.open .l-header__nav-logo-txt {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 1180px) and (max-width: 767px) {
  .l-header__nav-wrap.open .l-header__nav-logo-txt {
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 1180px) {
  .l-header__nav-wrap.open .l-header__nav-logo-ttl {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
@media screen and (max-width: 1180px) and (max-width: 1000px) {
  .l-header__nav-wrap.open .l-header__nav-logo-ttl {
    font-size: 3rem;
  }
}
@media screen and (max-width: 1180px) and (max-width: 767px) {
  .l-header__nav-wrap.open .l-header__nav-logo-ttl {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 1180px) {
  .l-header__nav-wrap.open .l-header__nav-logo-ttl rt {
    font-size: 1.2rem;
    letter-spacing: 0.5em;
  }
}
@media screen and (max-width: 1180px) and (max-width: 767px) {
  .l-header__nav-wrap.open .l-header__nav-logo-ttl rt {
    font-size: 0.7rem;
    padding-left: 0.5rem;
  }
}
@media screen and (max-width: 1180px) {
  .l-header__nav-wrap.open .l-header__nav-lists {
    margin-top: 1.6rem;
    padding: 1.8rem 3rem 9.7rem;
    position: relative;
  }
  .l-header__nav-wrap.open .l-header__nav-lists::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 23.4rem;
    height: 5.1rem;
    background: url(../images/common/header-nav1.png) no-repeat center/contain;
  }
  .l-header__nav-wrap.open .l-header__nav-lists::after {
    content: "";
    position: absolute;
    bottom: -3.6rem;
    right: 1.9rem;
    width: 7.6rem;
    height: 10.3rem;
    background: url(../images/common/header-nav2.png) no-repeat center/contain;
  }
  .l-header__nav-wrap.open .l-header__btn-contents {
    margin-top: 6.6rem;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1.5rem 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .l-header__nav-wrap.open .l-header__btn {
    width: unset;
    height: unset;
    padding: 2.3rem 2rem;
    position: relative;
  }
  .l-header__nav-wrap.open .l-header__btn::before {
    content: "";
    position: absolute;
    top: -4.6rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 6.5rem;
    height: 4.6rem;
    background: url(../images/common/contact-btn.png) no-repeat center/contain;
  }
  .l-header__nav-wrap.open .l-header__btn--orange {
    position: relative;
  }
  .l-header__nav-wrap.open .l-header__btn--orange::before {
    content: "";
    position: absolute;
    top: -4.6rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 7rem;
    height: 4.6rem;
    background: url(../images/common/recruit-btn.png) no-repeat center/contain;
  }
  .l-header__nav-wrap.open .l-header__link {
    display: none;
  }
  .l-header__nav-wrap.open .l-header__bottom {
    display: block;
  }
  .l-header__nav-wrap.open .l-header__bottom-lists {
    margin-top: 2.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 1.2rem;
    font-size: 1.2rem;
    line-height: 2.3333333333;
    letter-spacing: 0;
  }
}
.l-header__nav-lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1180px) {
  .l-header__nav-lists {
    display: block;
    display: -ms-grid;
    display: grid;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    background: #fff;
    border-radius: 20px;
  }
}
.l-header__nav-item {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0;
  padding: 0 1.5rem;
  white-space: nowrap;
}
@media screen and (max-width: 1000px) {
  .l-header__nav-item {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .l-header__nav-item {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 1280px) {
  .l-header__nav-item {
    padding: 0 1rem;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 1180px) {
  .l-header__nav-item {
    display: none;
    font-weight: bold;
    letter-spacing: 0.1em;
    line-height: 2em;
    padding: 1em 1em 1em 0;
    padding: 0.8rem 0;
    position: relative;
  }
  .l-header__nav-item::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 1.1rem;
    height: 1rem;
    background: url(../images/common/arrow-black.svg) no-repeat center/contain;
  }
}
@media screen and (max-width: 767px) {
  .l-header__nav-item a {
    display: block;
  }
}
.l-header__nav-item a:hover {
  opacity: 0.5;
}
.l-header__nav-item.is-current {
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.l-header__nav-item.is-current a {
  padding-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .l-header__nav-item.is-current a {
    padding-bottom: unset;
  }
}
.l-header__nav-item.is-current a::after {
  content: "";
  position: absolute;
  bottom: -1rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0.7rem;
  height: 0.7rem;
  background: #389A6D;
  border-radius: 50%;
}
@media screen and (max-width: 1180px) {
  .l-header__nav-item.is-current a::after {
    display: none;
  }
}
.l-header__nav-item.has-dropdown {
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.l-header__nav-item.has-dropdown a {
  padding-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .l-header__nav-item.has-dropdown a {
    padding-bottom: 0;
  }
}
.l-header__nav-item.has-dropdown:hover::after {
  content: "";
  position: absolute;
  bottom: -1rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0.7rem;
  height: 0.7rem;
  background: #389A6D;
  border-radius: 50%;
}
.l-header__nav-item.has-dropdown .dropdown-menu {
  margin-top: 2.5rem;
  display: none;
  position: absolute;
  top: 100%;
  left: 100%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: #389A6D;
  padding: 30px;
  border-radius: 10px;
  z-index: 9999;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 1180px) {
  .l-header__nav-item.has-dropdown .dropdown-menu {
    width: 100%;
  }
}
.l-header__nav-item.has-dropdown .dropdown-menu::before {
  content: "";
  position: absolute;
  top: -1rem;
  left: 44.4%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #389A6D;
}
@media screen and (max-width: 1180px) {
  .l-header__nav-item.has-dropdown .dropdown-menu::before {
    display: none;
  }
}
.l-header__nav-item.has-dropdown .dropdown-columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
.l-header__nav-item.has-dropdown .dropdown-column {
  background: #fff;
  border-radius: 20px;
  padding: 3rem 2rem;
  min-width: 180px;
}
.l-header__nav-item.has-dropdown .dropdown-column .js-accordion {
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 0;
  margin-bottom: 0.5rem;
  color: #389A6D;
}
@media screen and (max-width: 1180px) {
  .l-header__nav-item.has-dropdown .dropdown-column .js-accordion {
    color: #414141;
    position: relative;
  }
  .l-header__nav-item.has-dropdown .dropdown-column .js-accordion::before, .l-header__nav-item.has-dropdown .dropdown-column .js-accordion::after {
    content: "";
    left: unset;
    position: absolute;
    top: 50%;
    right: 0;
    width: 1.2rem;
    height: 2px;
    background-color: #389A6D;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  }
  .l-header__nav-item.has-dropdown .dropdown-column .js-accordion::before {
    -webkit-transform: translateY(-50%) rotate(0deg);
            transform: translateY(-50%) rotate(0deg);
  }
  .l-header__nav-item.has-dropdown .dropdown-column .js-accordion::after {
    -webkit-transform: translateY(-50%) rotate(90deg);
            transform: translateY(-50%) rotate(90deg);
  }
  .l-header__nav-item.has-dropdown .dropdown-column .js-accordion.open::after {
    -webkit-transform: translateY(-50%) rotate(0deg);
            transform: translateY(-50%) rotate(0deg);
  }
}
.l-header__nav-item.has-dropdown .dropdown-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.l-header__nav-item.has-dropdown .dropdown-column ul li {
  margin-bottom: 5px;
  font-size: 1.2rem;
  padding-left: 1.7rem;
  position: relative;
}
@media screen and (max-width: 1180px) {
  .l-header__nav-item.has-dropdown .dropdown-column ul li {
    padding-left: 0;
    font-weight: 400;
    font-size: 1.4rem;
    letter-spacing: 0;
    padding: 1rem 0;
    border-bottom: 1px solid #D4D9D7;
  }
}
.l-header__nav-item.has-dropdown .dropdown-column ul li::before {
  content: "";
  position: absolute;
  top: 0.8rem;
  left: 0;
  width: 0.9rem;
  height: 0.9rem;
  background: url(../images/common/arrow.svg) no-repeat center/contain;
}
@media screen and (max-width: 1180px) {
  .l-header__nav-item.has-dropdown .dropdown-column ul li::before {
    left: unset;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    right: 0;
    width: 1.1rem;
    height: 1rem;
    background: url(../images/common/arrow-black.svg) no-repeat center/contain;
  }
}
.l-header__nav-item.has-dropdown .dropdown-column ul li a {
  color: #333;
  text-decoration: none;
}
.l-header__nav-item.has-dropdown .dropdown-column ul li a:hover {
  text-decoration: underline;
}
.l-header__nav-item.has-dropdown:hover .dropdown-menu {
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.l-header__nav-wrap.open .l-header__nav-item.has-dropdown::after {
  display: none;
}
.l-header__nav-wrap.open .l-header__nav-item.has-dropdown .dropdown-title {
  display: none;
}
.l-header__nav-wrap.open .l-header__nav-item.has-dropdown .dropdown-menu {
  margin-top: 0;
  display: block;
  padding: 0;
  background: none;
  position: unset;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-box-shadow: none;
          box-shadow: none;
  width: 100%;
}
.l-header__nav-wrap.open .l-header__nav-item.has-dropdown .dropdown-columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.l-header__nav-wrap.open .l-header__nav-item.has-dropdown .dropdown-column {
  padding: 0;
  background: none;
  border-radius: 0;
}
.l-header__nav-wrap.open .l-header__nav-item.has-dropdown .dropdown-column .js-accordion {
  font-weight: bold;
  padding-bottom: 10px;
  border-bottom: 1px solid #389A6D;
}
.l-header__nav-wrap.open .l-header__nav-item.has-dropdown .dropdown-column ul {
  display: none;
  list-style: none;
  padding: 0;
  margin: 0;
}
.l-header__nav-wrap.open .l-header__nav-item.has-dropdown .dropdown-column ul li {
  margin-bottom: 5px;
}
.l-header__nav-wrap.open .l-header__nav-item.has-dropdown .dropdown-column ul li a {
  color: #333;
  text-decoration: none;
}
.l-header__nav-wrap.open .l-header__nav-item.has-dropdown .dropdown-column ul li a:hover {
  text-decoration: underline;
}
.l-header__drawer {
  display: none;
}
@media screen and (max-width: 1180px) {
  .l-header__drawer {
    display: block;
  }
}
@media screen and (max-width: 1000px) {
  .l-header__drawer-btn--access {
    position: absolute;
    z-index: 1005;
    top: 1.5rem;
    right: 7.7rem;
  }
  .l-header__drawer-btn--access .l-header__btn {
    width: 4rem;
    border: none;
  }
  .l-header__drawer-btn--access .l-header__btn-txt {
    font-size: 1rem;
    padding-top: 3rem;
    padding-left: 0;
  }
  .l-header__drawer-btn--access .l-header__btn-txt::before {
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 1.6rem;
    height: 2.2rem;
  }
}
.l-header__drawer-bar {
  background-color: #fff;
  width: 22px;
  height: 1px;
  display: block;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  position: absolute;
  left: 50%;
}
.l-header__drawer-bar::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 3px;
  height: 3px;
  background: #fff;
  border-radius: 50%;
}
.l-header__drawer-bar.bar--1 {
  top: 35%;
}
.l-header__drawer-bar.bar--2 {
  width: 13px;
  top: 50%;
  left: 1.9rem;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.l-header__drawer-bar.bar--3 {
  width: 22px;
  top: 65%;
}
.l-header__drawer-menu-txt {
  bottom: -1.8rem;
  font-size: 10px;
  font-weight: bold;
  width: 100%;
  position: absolute;
  left: 0;
  text-align: center;
}
.l-header__drawer-menu-txt.u-disable--hidetxt {
  display: none;
}
.l-header__drawer-btn {
  border-radius: 50%;
  width: 48px;
  height: 48px;
  background: #F2B550;
  top: 15px;
  right: 20px;
  z-index: 1006;
  position: fixed;
  padding: 0;
  color: #fff;
  letter-spacing: 0.1em;
  cursor: pointer;
  outline: none;
  /*----------------------------
  ■ボタンアクティブ時の制御
  ------------------------------*/
}
.l-header__drawer-btn.active {
  /*----------------------------
  ■メニュタップ時アニメーション　×に変更
  ------------------------------*/
}
.l-header__drawer-btn.active .l-header__drawer-bar {
  width: 18px;
  left: 8px;
  background: #fff;
}
.l-header__drawer-btn.active .bar--1::after {
  left: 0;
}
.l-header__drawer-btn.active .u-active--hidetxt {
  display: none;
}
.l-header__drawer-btn.active .u-disable--hidetxt {
  display: block;
  letter-spacing: 0.08em;
}
.l-header__drawer-btn.active .bar--1 {
  -webkit-transform: rotate(0.7853981634rad) translate(-50%, -50%);
          transform: rotate(0.7853981634rad) translate(-50%, -50%);
  top: 50%;
  left: 50%;
}
.l-header__drawer-btn.active .bar--2 {
  opacity: 0;
}
.l-header__drawer-btn.active .bar--3 {
  -webkit-transform: rotate(-0.7853981634rad) translate(-50%, -50%);
          transform: rotate(-0.7853981634rad) translate(-50%, -50%);
  top: 50%;
  left: 50%;
}
.l-header__drawer-bg {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 999;
  background: rgba(51, 51, 51, 0.5);
  display: none;
  top: 7.5rem;
  left: 0;
}
.l-header__btn-wrap {
  margin-left: 1vw;
}
@media screen and (max-width: 1000px) {
  .l-header__btn-wrap {
    margin-left: 1vw;
  }
}
.l-header__btn {
  border-radius: 1rem;
  color: #fff;
  display: -ms-grid;
  display: grid;
  place-items: center;
  width: 15rem;
  height: 4.5rem;
  background: #389A6D;
}
@media screen and (max-width: 1200px) {
  .l-header__btn {
    width: 13rem;
  }
}
@media screen and (max-width: 767px) {
  .l-header__btn {
    border: none;
  }
}
.l-header__btn--orange {
  background: #EB9C3F;
}
.l-header__btn--orange .l-header__btn-txt {
  position: relative;
  padding-right: 1.8rem;
}
.l-header__btn--orange .l-header__btn-txt::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.5rem;
  height: 1.5rem;
  background: url(../images/common/link.svg) no-repeat center/contain;
}
.l-header__btn-txt {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-header__btn-txt {
    font-size: 1.4rem;
  }
}
.l-header .l-header__drawer.left .l-header__nav-wrap {
  -webkit-transform: translate(-100%);
          transform: translate(-100%);
  right: auto;
  left: 0;
}
.l-header .l-header__drawer.left .l-header__nav-wrap.open {
  -webkit-transform: translate(0);
          transform: translate(0);
}
.l-header .l-header__drawer.left .l-header__drawer-btn {
  right: auto;
  left: 32px;
}
.l-header__link {
  display: none;
}
@media screen and (max-width: 1180px) {
  .l-header__link {
    margin-top: 5.5rem;
    font-size: 1.6rem;
    line-height: 1.125;
    font-weight: 400;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 0.9rem 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 0.9rem;
    z-index: 100;
  }
}
.l-header .kv__logo-wrap {
  position: relative;
  top: -1.5rem;
  left: 0;
  margin-left: calc(50% - 50vw);
}
@media screen and (max-width: 767px) {
  .l-header .kv__logo-wrap {
    top: -0.3rem;
  }
}
.l-header .kv__logo-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 35.9rem;
  height: 33.6rem;
  z-index: 99;
  background: url(../images/common/bg.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .l-header .kv__logo-wrap::before {
    top: 0;
    width: 17rem;
    height: 15.9rem;
  }
}
.l-header .kv__logo-wrap a {
  position: relative;
  z-index: 1002;
  top: 5rem;
  left: 5rem;
}
@media screen and (max-width: 767px) {
  .l-header .kv__logo-wrap a {
    display: inline-block;
    top: 0.5rem;
    left: 2rem;
  }
}
.l-header .kv__logo-wrap a div {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  gap: 0.5rem;
  position: relative;
  z-index: 1001;
}
@media screen and (max-width: 767px) {
  .l-header .kv__logo-wrap a div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: unset;
        -ms-flex-align: unset;
            align-items: unset;
  }
}
.l-header .kv__logo-wrap-txt {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.3;
  white-space: nowrap;
}
@media screen and (max-width: 1000px) {
  .l-header .kv__logo-wrap-txt {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .l-header .kv__logo-wrap-txt {
    font-size: 0.9rem;
  }
}
.l-header .kv__logo-wrap-ttl {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 1000px) {
  .l-header .kv__logo-wrap-ttl {
    font-size: 3.5rem;
  }
}
@media screen and (max-width: 767px) {
  .l-header .kv__logo-wrap-ttl {
    font-size: 2.2rem;
  }
}
.l-header .kv__logo-wrap-ttl rt {
  font-size: 1.2rem;
  line-height: 1.3;
  letter-spacing: 0.5em;
  padding-left: 1rem;
}
@media screen and (max-width: 1000px) {
  .l-header .kv__logo-wrap-ttl rt {
    padding-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .l-header .kv__logo-wrap-ttl rt {
    font-size: 0.7rem;
    padding-left: 0.3rem;
  }
}
.l-header .l-header.header-recruit {
  background: none;
}
@media screen and (max-width: 767px) {
  .l-header .l-header.header-recruit {
    background: #fff;
  }
}
.l-header .l-header__recruit {
  width: 100%;
  background: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.l-header .l-header__recruit .l-header__nav-logo {
  display: block;
  position: relative;
  z-index: 1002;
}
.l-header .l-header__recruit .l-header__nav-logo-txt {
  font-size: 1.2rem;
  font-weight: 700;
}
.l-header .l-header__recruit .l-header__nav-logo-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.l-header .l-header__recruit .l-header__nav-logo-ttl {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.375;
  color: #333;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1;
}
@media screen and (max-width: 1330px) {
  .l-header .l-header__recruit .l-header__nav-logo-ttl {
    font-size: 3.2rem;
  }
}
.l-header .l-header__recruit .l-header__nav-logo-ttl rt {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.5em;
  line-height: 1;
  padding-left: 1.5rem;
}
@media screen and (max-width: 1330px) {
  .l-header .l-header__recruit .l-header__nav-logo-ttl rt {
    padding-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .l-header .l-header__recruit .l-header__nav-logo-ttl rt {
    padding-left: 0.3rem;
  }
}
.l-header .l-header__recruit .l-header__nav-logo-subttl {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}
@media screen and (max-width: 1330px) {
  .l-header .l-header__recruit .l-header__nav-logo-subttl {
    font-size: 1.4rem;
  }
}
.l-header .l-header__recruit .l-header__nav-logo-subttl span {
  font-size: 1.6rem;
  font-weight: 400;
  font-family: "Krona One", sans-serif;
  color: #389A6D;
  letter-spacing: 0;
}
@media screen and (max-width: 1330px) {
  .l-header .l-header__recruit .l-header__nav-logo-subttl span {
    font-size: 1.1rem;
  }
}
@media screen and (max-width: 1180px) {
  .l-header .l-header__recruit .l-header__nav-lists {
    background: #F5F9E7;
  }
}
.l-header .l-header__recruit .l-header__nav-item {
  font-size: 1.4rem;
}
@media screen and (max-width: 1100px) {
  .l-header .l-header__recruit .l-header__nav-item {
    font-size: 1.3rem;
  }
}
.l-header .l-header__recruit .l-header__btn {
  position: relative;
  padding: 1.3rem 3.3rem 1.3rem 1rem;
  white-space: nowrap;
}
.l-header .l-header__recruit .l-header__btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.5rem;
  height: 1.5rem;
  background: url(../images/common/link.svg) no-repeat center/contain;
}
@media screen and (max-width: 1180px) {
  .l-header .l-header__recruit .l-header__btn::after {
    width: 1.2rem;
    height: 1.2rem;
    right: 3rem;
  }
}
@media screen and (max-width: 1330px) {
  .l-header .l-header__recruit .l-header__btn {
    width: 11rem;
  }
}
@media screen and (max-width: 1180px) {
  .l-header .l-header__recruit .l-header__btn {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    border-radius: 26px;
    background: #44A761;
    padding: 1.6rem 5.3rem 1.6rem 3rem;
  }
  .l-header .l-header__recruit .l-header__btn::before {
    display: none;
  }
}
.l-header .l-header__recruit .l-header__btn-txt {
  font-size: 1.4rem;
}
@media screen and (max-width: 1330px) {
  .l-header .l-header__recruit .l-header__btn-wrap {
    margin-left: 0;
  }
}
@media screen and (max-width: 1180px) {
  .l-header .l-header__recruit .l-header__btn-wrap {
    margin-top: 3rem;
  }
}
.l-header .l-header__recruit .l-header__drawer-btn {
  background: #FFBDAF;
}
.l-header .l-header__recruit .l-header__nav-wrap {
  background: none;
}
.l-header .l-header__recruit .l-header__nav-wrap.open {
  background: #fff;
  padding-top: 7.5rem;
  z-index: 1000;
}
.l-header .l-header__recruit .l-header__nav-wrap.open .l-header__nav-logo {
  max-width: 100%;
}
.l-header .l-header__recruit .l-header__nav-wrap.open .l-header__nav-logo-ttl {
  color: #333;
}
.l-header .l-header__recruit .l-header__nav-wrap.open .l-header__nav-logo-txt {
  color: #333;
}
@media screen and (max-width: 767px) {
  .l-header .l-header__recruit .l-header__nav-wrap.open .l-header__btn-wrap {
    margin-top: 3rem;
  }
}
.l-header .l-header__recruit .l-header__nav-wrap.open .l-header__nav-item:nth-child(2) {
  margin-top: 1rem;
  border-bottom: 1px solid #D4D9D7;
}
.l-header .l-header__recruit .l-header__nav-wrap.open .l-header__nav-lists::before {
  display: none;
}
.l-header .l-header__recruit .l-header__nav-wrap.open .l-header__nav-lists::after {
  bottom: -5rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 29.5rem;
  height: 11rem;
  background: url(../images/recruit/about-top.png) no-repeat center/contain;
}

/*----------------------------
Object
------------------------------*/
.back-to-top-wrapper {
  position: fixed;
  z-index: 100;
  width: 11.4rem;
  right: 3rem;
  bottom: 14.6rem;
}
@media screen and (max-width: 767px) {
  .back-to-top-wrapper {
    width: 8.7rem;
    height: 6.3rem;
    bottom: 7.4rem;
    right: 1rem;
  }
  .back-to-top-wrapper .c-btn__back-to-top img {
    width: 8.7rem;
    height: 6.3rem;
  }
}

/*----------------------------
■■ ボタンコンポーネント　■■
使い方
<div class="c-btn__m-size">
  <a href="#" class="c-btn">
    <span class="c-btn__txt">テキスト</span>
  </a>
</div><!-- .c-btn__wrap -->

c-btn__m-sizeのクラス変更で、サイズ調整可能
------------------------------*/
/*----------------------------
■ ボタン基本設定
------------------------------*/
.c-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  background: #389A6D;
  color: #fff;
  border-radius: 32px;
  text-align: center;
  text-decoration: none;
  -webkit-transition: 0.25s;
  transition: 0.25s;
  position: relative;
  padding: 0.7rem 2rem;
  max-width: 29.4rem;
  /*----------------------------
    ■ ボタンサイズ
    使い方：クラスを変えると、ボタンのサイズが変わる
    ------------------------------*/
  /*
      ・Sサイズ
      ------------------------------*/
  /*
      ・通常サイズ（Mサイズ）
      ------------------------------*/
  /*
    ・（Lサイズ）
    ------------------------------*/
  /*----------------------------
  ■ボタンカラーパターン
  使い方：c-btnにマルチクラスでカラー変更可能
  例）c-btn c-btn--2
  ------------------------------*/
  /*----------------------------
  ■ ボタン位置調整
  使い方：サイズがついているクラスに、マルチクラスをする。
  c-btn__left（左寄せ）
  c-btn__center（中央寄せ）
  c-btn__right（右寄せ）
  例：
  <div class="c-btn__m-size c-btn__center">
  ------------------------------*/
  /*----------------------------
    ■　フォント設定
    ------------------------------*/
  /*----------------------------
      ■ボタンアイコン設定
      使い方：c-btn__txt に、マルチクラスで付与すると、アイコン追加。
      <span class="c-btn__txt c-btn__left-icon">テキスト</span>

      fontawesomeアイコンは、以下より探す
      https://fontawesome.com/search?s=solid%2Cbrands
      ------------------------------*/
  /*
  ・ボタンアイコン左
  ------------------------------*/
  /*
        ・ボタンアイコン右
        ------------------------------*/
}
@media screen and (max-width: 767px) {
  .c-btn {
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
    padding-left: 1.5rem;
    max-width: 24.5rem;
  }
}
.c-btn__circle {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: absolute;
  right: 1rem;
}
.c-btn__circle-hole {
  width: 4px;
  height: 4px;
  background-color: #56b18d;
  border-radius: 50%;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.c-btn:focus, .c-btn:hover {
  opacity: 0.7;
}
.c-btn--white {
  background: #fff;
  color: #389A6D;
}
.c-btn--white .c-btn__circle {
  background: #389A6D;
}
.c-btn--white .c-btn__circle-hole {
  background: #fff;
}
.c-btn--white-orange {
  background: #fff;
  color: #EB9C3F;
}
.c-btn--white-orange .c-btn__circle {
  background: #EB9C3F;
}
.c-btn--white-orange .c-btn__circle-hole {
  background: #fff;
}
.c-btn__s-size {
  width: 20rem;
  height: 5rem;
}
@media screen and (max-width: 767px) {
  .c-btn__s-size {
    width: 20rem;
    height: 5rem;
  }
}
.c-btn__m-size {
  width: 29.4rem;
  height: 5.2rem;
}
@media screen and (max-width: 767px) {
  .c-btn__m-size {
    width: 24rem;
    height: 4.5rem;
  }
}
.c-btn__l-size {
  width: 30rem;
  height: 8rem;
}
@media screen and (max-width: 767px) {
  .c-btn__l-size {
    width: 30rem;
    height: 8rem;
  }
}
.c-btn.c-btn--2 {
  background: #000;
  color: #fff;
}
.c-btn.c-btn--2:hover {
  background: #fff;
  color: #000;
}
.c-btn__left {
  margin: 0 auto 0 0;
}
.c-btn__center {
  margin: 0 auto;
}
.c-btn__right {
  margin: 0 0 0 auto;
}
.c-btn__left-pc {
  margin: 0 auto 0 0;
}
@media screen and (max-width: 767px) {
  .c-btn__left-pc {
    margin: 0;
  }
}
.c-btn__center-pc {
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .c-btn__center-pc {
    margin: 0;
  }
}
.c-btn__right-pc {
  margin: 0 0 0 auto;
}
@media screen and (max-width: 767px) {
  .c-btn__right-pc {
    margin: 0;
  }
}
@media screen and (max-width: 767px) {
  .c-btn__left-sp {
    margin: 0 auto 0 0;
  }
}
@media screen and (max-width: 767px) {
  .c-btn__center-sp {
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .c-btn__right-sp {
    margin: 0 0 0 auto;
  }
}
.c-btn__margin--x {
  margin: 0 4rem;
}
@media screen and (max-width: 767px) {
  .c-btn__margin--x {
    margin: 0;
  }
}
.c-btn__txt {
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .c-btn__txt {
    font-size: 1.6rem;
  }
}
.c-btn__left-icon {
  padding-left: 2rem;
  position: relative;
}
.c-btn__left-icon::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 6px;
  height: 15px;
  background: url("../images/common/arrow.svg") no-repeat center center/contain;
}
.c-btn:hover .c-btn__left-icon::before {
  background: url("../images/common/arrow_hover.svg") no-repeat center center/contain;
}
.c-btn__right-icon {
  padding-right: 3.1rem;
  position: relative;
}
.c-btn__right-icon::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 7px;
  height: 6px;
  background: url("../images/common/.svg") no-repeat center center/contain;
}
.c-btn:hover .c-btn__right-icon::before {
  background: url("../images/common/.svg") no-repeat center center/contain;
}
.c-btn--arrow {
  font-weight: 700;
  line-height: 1.4285714286;
  border-bottom: 1px solid #fff;
}
.c-btn--arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.5rem;
  height: 1.5rem;
  background: url(../images/common/link.svg) no-repeat center/contain;
}
.c-btn--arrow:hover {
  background: none;
  opacity: 0.7;
}
.c-btn--circle {
  font-size: 1.8rem;
  position: relative;
  font-weight: 700;
  line-height: 1.5555555556;
  padding: 1.3rem 8.5rem 1.3rem 2rem;
  white-space: nowrap;
  max-width: 28.5rem;
}
@media screen and (max-width: 767px) {
  .c-btn--circle {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .c-btn--circle {
    max-width: 24.5rem;
    padding: 1.1rem 8.5rem 1.1rem 2rem;
  }
}
.c-btn--circle::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 2rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  background: #fff;
}
.c-btn--circle::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2.6rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 50%;
  background: #389A6D;
  z-index: 1;
}

.pager .wp-pagenavi {
  text-align: center;
  margin-top: 4.5rem;
  font-size: 1.2rem;
  font-weight: normal;
  border: none;
}
@media screen and (max-width: 767px) {
  .pager .wp-pagenavi {
    margin-top: 5.7rem;
  }
}
.pager .wp-pagenavi span.current {
  width: 4.8rem;
  height: 4.8rem;
  margin: 0.6rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #CEEBD3;
  color: #389A6D;
  border-radius: 10px;
  -webkit-transition: 250ms all;
  transition: 250ms all;
  font-family: "Krona One", sans-serif;
  font-size: 1.7rem;
  border: none;
}
@media screen and (max-width: 767px) {
  .pager .wp-pagenavi span.current {
    width: 4.8rem;
    height: 4.8rem;
  }
}
.pager .wp-pagenavi span.current:hover {
  background: #CEEBD3;
  color: #389A6D;
}
.pager .wp-pagenavi .page {
  width: 4.8rem;
  height: 4.8rem;
  margin: 0.6rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #389A6D;
  background: #EEF1EA;
  -webkit-transition: 250ms all;
  transition: 250ms all;
  border-radius: 10px;
  font-family: "Krona One", sans-serif;
  font-size: 1.7rem;
  border: none;
}
@media screen and (max-width: 767px) {
  .pager .wp-pagenavi .page {
    width: 4.8rem;
    height: 4.8rem;
  }
}
.pager .wp-pagenavi .page:hover {
  background: #CEEBD3;
  color: #389A6D;
  opacity: 1;
  border: none;
}
.pager .wp-pagenavi .nextpostslink, .pager .wp-pagenavi .previouspostslink {
  width: 4rem;
  height: 4rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 250ms all;
  transition: 250ms all;
  border: none;
  color: transparent;
  margin: 0 2.4rem;
}
@media screen and (max-width: 767px) {
  .pager .wp-pagenavi .nextpostslink, .pager .wp-pagenavi .previouspostslink {
    width: 3.2rem;
    height: 3.2rem;
  }
}
.pager .wp-pagenavi .nextpostslink {
  background: url("../images/common/next.png") no-repeat center center/contain;
}
.pager .wp-pagenavi .previouspostslink {
  background: url("../images/common/prev.png") no-repeat center center/contain;
}
.pager .wp-pagenavi .pages {
  display: none;
}
.pager .wp-pagenavi .first, .pager .wp-pagenavi .last {
  border: none;
  display: none;
}
.pager .wp-pagenavi .first:hover, .pager .wp-pagenavi .last:hover {
  opacity: 0.7;
}
.pager .wp-pagenavi .extend {
  border: none;
  display: none;
}
.pager .wp-pagenavi .extend:hover {
  opacity: 0.7;
}

.faq__lists {
  width: 100%;
  margin-top: 6.4rem;
}
@media screen and (max-width: 767px) {
  .faq__lists {
    margin-top: 3.2rem;
  }
}
.faq__list-item {
  background: #fff;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  padding: 1.7rem 3.2rem;
  margin-bottom: 3.2rem;
}
@media screen and (max-width: 767px) {
  .faq__list-item {
    padding: 1rem;
    margin-bottom: 1.6rem;
  }
}
.faq__question {
  padding-left: 7.3%;
  position: relative;
  font-size: 1.6rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .faq__question {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .faq__question {
    padding: 0 2.5rem 0 3.5rem;
  }
}
.faq__question::before {
  content: "";
  background: url("../images/icon-q.svg") no-repeat center center/contain;
  width: 4.6rem;
  height: 4.6rem;
  position: absolute;
  left: 0;
  top: -0.2rem;
}
@media screen and (max-width: 767px) {
  .faq__question::before {
    top: 0.9rem;
    width: 2.3rem;
    height: 2.3rem;
  }
}
.faq__question::after {
  content: "";
  position: absolute;
  width: 3rem;
  height: 3rem;
  background: url("../images/faq_open_icon.svg") no-repeat center center/contain;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .faq__question::after {
    right: 0;
    width: 1.5rem;
    height: 1.5rem;
  }
}
.faq__question.active::after {
  content: "";
  background: url("../images/faq_close_icon.svg") no-repeat center center/contain;
}
.faq__answer {
  padding: 2rem 1rem 2rem 7.3%;
  display: none;
  position: relative;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .faq__answer {
    padding: 1rem 2.5rem 1rem 3.5rem;
  }
}
.faq__answer::before {
  content: "";
  background: url("../images/icon-a.svg") no-repeat center center/contain;
  position: absolute;
  left: 0;
  width: 4.6rem;
  height: 4.6rem;
  top: 1.8rem;
}
@media screen and (max-width: 767px) {
  .faq__answer::before {
    width: 2.3rem;
    height: 2.3rem;
    top: 1.1rem;
  }
}
.faq__answer a {
  text-decoration: underline;
}

/*----------------------------
■■　カードコンポーネント　■■
概要：一覧(archive)などで、カード一覧
を使用する際に、使う事が多いコンポーネント
------------------------------*/
/*----------------------------
■　カード基準設定
------------------------------*/
.c-card {
  /*----------------------------
  ■カードグループ設定
  ------------------------------*/
  /*----------------------------
  ■カード画像設定
  ------------------------------*/
  /*----------------------------
  ■カードタイトル設定
  ------------------------------*/
  /*----------------------------
  ■カードinner設定
  概要：slickを使用する際に、c-cardを直接
  触ると、エラーが起こる。その為、内側のクラスとしてinnerを設けている。
  ------------------------------*/
  /*----------------------------
  ■カードラベル設定
  ------------------------------*/
  /*----------------------------
  ■カードボディ設定
  ------------------------------*/
  /*----------------------------
  ■カード日付設定
  ------------------------------*/
}
.c-card__groups {
  display: -ms-grid;
  display: grid;
  padding: 6.4rem 0 0;
  -webkit-column-gap: 4rem;
     -moz-column-gap: 4rem;
          column-gap: 4rem;
  row-gap: 4.8rem;
  -ms-grid-columns: 1fr 4rem 1fr 4rem 1fr;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 1000px) {
  .c-card__groups {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .c-card__groups {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
.c-card__img-wrap {
  margin-bottom: 1.6rem;
  width: 100%;
  position: relative;
  border: 1px solid transparent;
  /*
  ・画像のレスポンシブ設定
  ------------------------------*/
}
.c-card__img-wrap.c-card__img-wrap1x1::before {
  display: block;
  content: "";
  padding-top: 56.25%;
}
.c-card__img-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-card__ttl {
  font-weight: normal;
  line-height: 1.43;
}
.c-card__inner {
  -webkit-transition: 250ms all;
  transition: 250ms all;
  position: relative;
}
.c-card__label {
  color: #fff;
  background: #3B454D;
  height: 3.2rem;
  min-width: 16rem;
  padding: 0 1em;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  font-weight: bold;
}
@media screen and (max-width: 1000px) {
  .c-card__label {
    height: 2.5rem;
  }
}
.c-card__body {
  padding: 0;
}
.c-card__date {
  font-size: 1.2rem;
  font-weight: bold;
  color: #ADADAD;
}
@media screen and (max-width: 767px) {
  .c-card__date {
    font-size: 1.2rem;
  }
}

.c-card__office {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: subgrid;
  grid-template-rows: subgrid;
  -ms-grid-row-span: 2;
  grid-row: span 2;
  -ms-grid-rows: 16.8rem 1fr;
  grid-template-rows: 16.8rem 1fr;
  -ms-grid-rows: auto 1fr;
  grid-template-rows: auto 1fr;
}
.c-card__office-img {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.c-card__office-img img {
  width: 100%;
  height: auto;
  aspect-ratio: 225/168;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px 10px 0 0;
}
.c-card__office-body {
  background: #EEF1EA;
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: subgrid;
  grid-template-rows: subgrid;
  -ms-grid-row-span: 2;
  grid-row: span 2;
  -ms-grid-rows: 8.1rem 1.2rem 1fr;
  grid-template-rows: 8.1rem 1fr;
  gap: 1.2rem;
  padding: 1.3rem 1.6rem 4rem;
  border-radius: 0 0 10px 10px;
  position: relative;
  min-height: 31.3rem;
}
@media screen and (max-width: 1000px) {
  .c-card__office-body {
    min-height: 31.3rem;
    padding: 1.3rem 0.8rem 4rem;
  }
}
@media screen and (max-width: 767px) {
  .c-card__office-body {
    min-height: unset;
    padding: 0.7rem 1.1rem 3.8rem;
    -ms-grid-rows: auto 1fr;
    grid-template-rows: auto 1fr;
  }
}
.c-card__office-body::after {
  content: "";
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  width: 3.2rem;
  height: 3.2rem;
  background: url(../images/common/next.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .c-card__office-body::after {
    width: 2.4rem;
    height: 2.4rem;
  }
}
.c-card__office-body2 {
  -ms-grid-rows: 10.5rem 1fr;
  grid-template-rows: 10.5rem 1fr;
}
.c-card__office-body3 {
  -ms-grid-rows: 2.6rem 1fr;
  grid-template-rows: 2.6rem 1fr;
}
.c-card__office-body4 {
  -ms-grid-rows: 5.8rem 1fr;
  grid-template-rows: 5.8rem 1fr;
}
@media screen and (max-width: 767px) {
  .c-card__office-body5 {
    -ms-grid-rows: 5.8rem 1fr;
    grid-template-rows: 5.8rem 1fr;
  }
}
.c-card__office-body-ttl {
  font-size: 1.8rem;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .c-card__office-body-ttl {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 1000px) {
  .c-card__office-body-ttl {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 767px) {
  .c-card__office-body-ttl {
    font-size: 1.6rem;
  }
}
.c-card__office-body-ttl span {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4666666667;
}
@media screen and (max-width: 767px) {
  .c-card__office-body-ttl span {
    font-size: 1.4rem;
  }
}
.c-card__office-body-txt {
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  line-height: 1.6875;
}
@media screen and (max-width: 767px) {
  .c-card__office-body-txt {
    font-size: 1.4rem;
  }
}
.c-card__office-body-tel {
  margin-top: 0.5rem;
}
@media screen and (max-width: 767px) {
  .c-card__office-body-tel {
    margin-top: 0;
  }
}

/*----------------------------
■■ mediaテンプレート　■■
------------------------------*/
.c-media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 6.4rem;
}
@media screen and (max-width: 1000px) {
  .c-media {
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
}
@media screen and (max-width: 767px) {
  .c-media {
    display: -ms-grid;
    display: grid;
    justify-items: center;
    max-width: 48rem;
    margin: 0 auto;
    row-gap: 3.2rem;
    padding-bottom: 3.2rem;
  }
}
.c-media.u-pb--0 {
  padding-bottom: 0;
}
.c-media__img-wrap {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 40.25%;
          flex: 0 1 40.25%;
}
@media screen and (max-width: 767px) {
  .c-media__img-wrap {
    max-width: 32rem;
  }
}
.c-media__img-wrap.u-img--l {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 55.55%;
          flex: 0 1 55.55%;
}
.c-media__body {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 48.6%;
          flex: 0 1 48.6%;
}
@media screen and (max-width: 1000px) {
  .c-media__body {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 52.5%;
            flex: 0 1 52.5%;
  }
}
.c-media__ttl {
  font-size: 3.2rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1.5;
  padding-bottom: 1em;
}
@media screen and (max-width: 1000px) {
  .c-media__ttl {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .c-media__ttl {
    font-size: 2rem;
  }
}
.c-media__btn {
  margin-top: 3.2rem;
}
@media screen and (max-width: 767px) {
  .c-media__btn {
    margin-top: 1.6rem;
  }
}

/*----------------------------
■■ パンくずコンポーネント　■■
------------------------------*/
.bread-nav__wrapper {
  padding: 2.3rem 0 2.4rem;
  line-height: 1.33;
  color: #fff;
  font-size: 1.2rem;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .bread-nav__wrapper {
    padding: 0 1rem 1.9rem;
  }
}
.bread-nav__wrapper a {
  color: #fff;
  text-decoration: underline;
}

/*----------------------------
■■ お問い合わせテンプレート　■■
------------------------------*/
/*----------------------------
カラー初期設定
------------------------------*/
.p-form {
  /*----------------------------
  ■エラーメッセージ
  ------------------------------*/
  /*----------------------------
  ■お問い合わせボックス
  ------------------------------*/
  /*
  ・お問い合わせフローアイコン設定
  ------------------------------*/
  /*
  ・フローアイコン　間の線
  ------------------------------*/
  /*
  ・フローアイコン設定
  ------------------------------*/
  /*----------------------------
  ■入力項目　見出し　設定
  ------------------------------*/
  /*----------------------------
  ■テーブル設定
  ------------------------------*/
  /*----------------------------
  ■ボタンラップ
  ------------------------------*/
  /*----------------------------
  ■確認ページ confirm
  ------------------------------*/
  /*----------------------------
  ■　完了ページ thanks
  ------------------------------*/
  /*----------------------------
  ■recaptchaテキスト
  ------------------------------*/
  /*----------------------------
  ■ トップテキスト
  ------------------------------*/
  /*----------------------------
  ■　必須ラベル
  ------------------------------*/
  /*----------------------------
  ■ safari　ボタンバグ回避
  ------------------------------*/
}
.p-form__error-message {
  text-align: center;
  padding: 4rem 2rem;
  background: #fff3cd;
  border: 1px solid #ffeaa7;
  border-radius: 10px;
  margin: 2rem 0;
}
.p-form__error-message p {
  font-size: 1.6rem;
  line-height: 1.8;
  margin-bottom: 1rem;
  color: #856404;
}
.p-form__error-message p:last-of-type {
  margin-bottom: 0;
}
.p-form__box {
  background: transparent;
  padding: 0 1rem 8rem;
  max-width: 100rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-form__box {
    margin-top: -2rem;
    padding-bottom: 3.2rem;
    padding: 0 0 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-form__box--kanryo {
    margin-top: 2rem;
    padding-bottom: 3.2rem;
    padding: 0 2rem 2.5rem;
  }
}
.p-form__box .c-heading__sub {
  font-size: 1.8rem;
  font-weight: bold;
  padding-bottom: 1.5em;
}
@media screen and (max-width: 767px) {
  .p-form__box .c-heading__sub {
    font-size: 1.6rem;
  }
}
.p-form__box .p-country-name {
  display: none;
}
.p-form__txt-bottom {
  font-weight: 500;
}
.p-form__flow-icon-inner {
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  width: 10rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  letter-spacing: 0;
  text-align: center;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-form__flow-icon-inner {
    font-size: 1.6rem;
  }
}
.p-form__flow-icon-inner .u-ls--0 {
  letter-spacing: 0;
}
.p-form__flow-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 500;
  padding: 0 0 6.2rem;
  gap: 10.6rem;
}
@media screen and (max-width: 1000px) {
  .p-form__flow-wrap {
    padding-bottom: 6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-form__flow-wrap {
    padding-bottom: 3.5rem;
    gap: 2.5rem;
  }
}
.p-form__border {
  width: 10rem;
  width: 42rem;
  background: #A8D5C0;
  height: 1px;
  margin-top: 0.5rem;
  position: absolute;
  z-index: -2;
}
@media screen and (max-width: 767px) {
  .p-form__border {
    margin-top: 0.25rem;
    width: 24.6rem;
  }
}
.p-form__flow-icon {
  font-size: 1.6rem;
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 50%;
  background: #A8D5C0;
  color: #389A6D;
  font-weight: bold;
  display: -ms-grid;
  display: grid;
  place-items: center;
  letter-spacing: 0;
  margin-bottom: 1.4rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-form__flow-icon {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-form__flow-icon {
    margin-bottom: 0.5rem;
    width: 0.6rem;
    height: 0.6rem;
  }
}
.p-form__flow-icon.active {
  background: #389A6D;
  color: #fff;
  position: relative;
}
.p-form__flow-icon.active::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 1.7rem;
  height: 1.7rem;
  background: #fff;
  border-radius: 50%;
  z-index: -1;
  border: 1px solid #389A6D;
}
@media screen and (max-width: 767px) {
  .p-form__flow-icon.active::before {
    width: 1rem;
    height: 1rem;
  }
}
.p-form__flow-icon p {
  font-weight: bold;
  white-space: nowrap;
}
.p-form__heading {
  font-size: 1.8rem;
  color: #333;
  font-weight: bold;
  position: relative;
  margin-bottom: 0.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  /*
  ・見出し横のマーク設定
  ------------------------------*/
}
.p-form__heading .u-hide--txt {
  font-size: 1.4rem;
  font-weight: 500;
  padding-left: 1em;
}
@media screen and (max-width: 767px) {
  .p-form__heading .u-hide--txt {
    font-size: 1.2rem;
  }
}
.p-form__table-wrap {
  max-width: 68rem;
  margin: 0 auto;
  /*
  ・テーブル行設定
  ------------------------------*/
  /*
  ・非表示テキスト設定（個人情報）
  ------------------------------*/
  /*
  ・ハイフンは入力不要の調整
  ------------------------------*/
  /*
  ・※郵便番号入力で住所が自動表示されます
  の調整
  ------------------------------*/
}
.p-form__table-wrap tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-bottom: 3.5rem;
  /*
  ・お名前、ふりがな行設定
  ------------------------------*/
}
@media screen and (max-width: 767px) {
  .p-form__table-wrap tr {
    padding-bottom: 1.7rem;
  }
}
.p-form__table-wrap tr:last-child {
  margin-top: -1rem;
  padding-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .p-form__table-wrap tr:last-child {
    padding-bottom: 3.5rem;
  }
}
.p-form__table-wrap tr.p-form__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  /*
  ・お名前、ふりがな　幅設定
  ------------------------------*/
}
.p-form__table-wrap tr.p-form__flex td {
  width: 48%;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-form__table-wrap tr.p-form__flex td {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .p-form__table-wrap tr.p-form__flex td:nth-child(1) {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
@media screen and (max-width: 767px) {
  .p-form__table-wrap tr.p-form__flex td:nth-child(2) {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}
@media screen and (max-width: 767px) {
  .p-form__table-wrap tr.p-form__flex td:nth-child(3) {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    padding-bottom: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .p-form__table-wrap tr.p-form__flex td:nth-child(4) {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
}
.p-form__table-wrap .u-hidden--txt {
  display: none;
}
.p-form__table-wrap .u-hidden--txt.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-form__table-wrap .u-hidden--txt .u-padding--left {
  padding-left: 5rem;
}
.p-form__table-wrap .u-padding--top {
  padding-top: 0.4rem;
  line-height: 1.4;
  font-size: 1.2rem;
}
@media screen and (max-width: 767px) {
  .p-form__table-wrap .u-padding--top {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-form__table-wrap .u-padding--top {
    padding-top: 1rem;
  }
}
.p-form__table-wrap .u-padding--y {
  padding: 1rem 0 2.3rem;
  font-size: 1.2rem;
}
@media screen and (max-width: 767px) {
  .p-form__table-wrap .u-padding--y {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-form__table-wrap .u-padding--y {
    padding: 1rem 0 2rem;
    line-height: 1.5;
  }
}
.p-form__table-wrap table {
  width: 100%;
}
.p-form__table-wrap input,
.p-form__table-wrap select,
.p-form__table-wrap textarea {
  border-radius: 0 !important;
  font-size: 1.6rem;
  width: 100%;
  background: #fff;
  border: 1px solid #A5A5A5;
  border-radius: 5px !important;
  padding: 1.6rem 2rem;
  resize: vertical;
}
@media screen and (max-width: 767px) {
  .p-form__table-wrap input,
  .p-form__table-wrap select,
  .p-form__table-wrap textarea {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-form__table-wrap input,
  .p-form__table-wrap select,
  .p-form__table-wrap textarea {
    padding: 1.5rem 2rem;
  }
}
.p-form__table-wrap input.u-half--width,
.p-form__table-wrap select.u-half--width,
.p-form__table-wrap textarea.u-half--width {
  width: 15rem;
}
.p-form__table-wrap textarea {
  max-height: 12rem;
}
.p-form__table-wrap label {
  letter-spacing: 0.1em;
}
.p-form__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: 4rem;
}
.p-form__flex .u-blue--link {
  padding: 0 0.2em 0 0.5em;
}
.p-form__btn-wrap {
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  /*
  ・個人情報チェックラベル設定
  ------------------------------*/
}
.p-form__btn-wrap label {
  font-weight: bold;
  text-align: center;
  margin: 0 auto;
}
.p-form__btn-wrap input {
  width: 2.4rem;
  height: 2.4rem;
  margin-top: 0;
}
.p-form__btn-wrap.disable {
  display: none;
}
.p-form__btn-wrap input[type=checkbox]:checked + .p-form__privacy-txt::after {
  opacity: 1;
}
.p-form__privacy-txt {
  display: inline-block;
  position: relative;
  padding: 0 0 0 1rem;
  text-align: left;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-form__privacy-txt {
    font-size: 1.6rem;
  }
}
.p-form__privacy-txt a {
  color: #0000EE;
  text-decoration: underline;
}
.p-form__privacy-txt span {
  font-weight: bold;
}
.p-form__privacy-txt::after, .p-form__privacy-txt::before {
  content: "";
  position: absolute;
  display: block;
}
.p-form__privacy-txt input[type=checkbox] {
  width: 2rem;
  height: 2rem;
}
.p-form__confirm-btn-groups {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 6rem auto;
  grid-template-columns: repeat(2, auto);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  row-gap: 3rem;
  -webkit-column-gap: 6rem;
     -moz-column-gap: 6rem;
          column-gap: 6rem;
  padding-top: 3.2rem;
}
@media screen and (max-width: 767px) {
  .p-form__confirm-btn-groups {
    -ms-grid-columns: (auto)[1];
    grid-template-columns: repeat(1, auto);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-top: 0;
  }
}
.p-form__confirm-btn-groups .c-btn__m-size {
  width: 24rem;
}
.p-form__confirm-btn-groups .c-btn__m-size:nth-child(1) {
  justify-self: flex-end;
}
@media screen and (max-width: 767px) {
  .p-form__confirm-btn-groups .c-btn__m-size:nth-child(1) {
    -ms-grid-column-align: center;
        justify-self: center;
  }
}
.p-form__confirm-btn-groups .c-btn__m-size:nth-child(2) {
  justify-self: flex-start;
}
@media screen and (max-width: 767px) {
  .p-form__confirm-btn-groups .c-btn__m-size:nth-child(2) {
    -ms-grid-column-align: center;
        justify-self: center;
  }
}
.p-form__wrapper {
  padding-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-form__wrapper {
    padding-top: 4rem;
  }
}
.p-form__thanks-txt {
  text-align: center;
  padding: 0 0 10rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 1000px) {
  .p-form__thanks-txt {
    padding-bottom: 7rem;
  }
}
@media screen and (max-width: 767px) {
  .p-form__thanks-txt {
    padding-bottom: 5rem;
    text-align: left;
  }
}
.p-form__thanks-btn-groups {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: repeat(1, 1fr);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  row-gap: 4.8rem;
  -webkit-column-gap: 6.4rem;
     -moz-column-gap: 6.4rem;
          column-gap: 6.4rem;
}
@media screen and (max-width: 767px) {
  .p-form__thanks-btn-groups {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.p-form__thanks-btn-groups .c-btn__m-size:nth-child(1) {
  justify-self: flex-end;
}
@media screen and (max-width: 767px) {
  .p-form__thanks-btn-groups .c-btn__m-size:nth-child(1) {
    -ms-grid-column-align: center;
        justify-self: center;
  }
}
.p-form__thanks-btn-groups .c-btn__m-size:nth-child(1) a {
  color: #389A6D;
}
.p-form__thanks-btn-groups .c-btn__m-size:nth-child(2) {
  justify-self: flex-start;
}
@media screen and (max-width: 767px) {
  .p-form__thanks-btn-groups .c-btn__m-size:nth-child(2) {
    -ms-grid-column-align: center;
        justify-self: center;
  }
}
.p-form__thanks-img {
  max-width: 68.1rem;
  margin-inline: auto;
  padding-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .p-form__thanks-img {
    padding-bottom: 3rem;
    max-width: 33.5rem;
  }
}
.p-form__thanks-tel {
  text-align: center;
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .p-form__thanks-tel {
    margin-bottom: 4rem;
  }
}
.p-form__thanks-tel a {
  display: inline-block;
  padding-left: 3.3rem;
  font-size: 2.3rem;
  font-family: "Krona One", sans-serif;
  line-height: 1;
  letter-spacing: 0;
  color: #389A6D;
  position: relative;
}
.p-form__thanks-tel a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 2.6rem;
  height: 2.6rem;
  background: url(../images/common/contact-cta-tel.svg) no-repeat center/contain;
}
.p-form__thanks-tel p {
  display: block;
  color: #389A6D;
  font-size: 1.2rem;
  line-height: 1.4166666667;
  letter-spacing: 0;
}
.p-form__recaptcha-txt {
  font-size: 1.2rem;
  text-align: center;
  padding-bottom: 4rem;
}
.p-form__txt-top {
  font-size: 1.8rem;
  color: #414141;
  font-weight: bold;
  line-height: 1.9;
  padding-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .p-form__txt-top {
    font-size: 1.6rem;
  }
}
.p-form__tel-wrap {
  text-align: center;
  padding-bottom: 3.6rem;
}
@media screen and (max-width: 767px) {
  .p-form__tel-wrap {
    padding-bottom: 1.8rem;
  }
}
.p-form__tel-wrap a {
  color: #389A6D;
}
.p-form__tel {
  position: relative;
  font-size: 3.6rem;
  font-weight: bold;
  padding-left: 4.5rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-form__tel {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-form__tel {
    padding-left: 3rem;
  }
}
.p-form__tel::before {
  content: "\f095";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  color: #389A6D;
  left: 0;
  top: 1rem;
}
@media screen and (max-width: 767px) {
  .p-form__tel::before {
    top: 0.6rem;
  }
}
.p-form__tel-txt {
  font-weight: 500;
  padding-top: 2rem;
  line-height: 1.66;
}
.p-form__label {
  background: #389A6D;
  color: #fff;
  border-radius: 2rem;
  font-weight: bold;
  padding: 0 5px;
  font-size: 1.4rem;
  line-height: 1;
  margin-right: 1rem;
  display: -ms-inline-grid;
  display: inline-grid;
  place-items: center;
  width: 4.4rem;
  height: 2.1rem;
  letter-spacing: 0.1em;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .p-form__label {
    font-size: 1.2rem;
  }
}
.p-form__label--ninni {
  background: #414141;
  color: #fff;
  border-radius: 2rem;
  font-weight: bold;
  padding: 0 5px;
  font-size: 1.4rem;
  line-height: 1;
  margin-right: 1rem;
  display: -ms-inline-grid;
  display: inline-grid;
  place-items: center;
  width: 4.4rem;
  height: 2.1rem;
  letter-spacing: 0.1em;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .p-form__label--ninni {
    font-size: 1.2rem;
  }
}
.p-form input[type=radio] {
  -webkit-appearance: auto;
  padding: 0;
}
.p-form input#privacy-policy {
  -webkit-appearance: auto;
  -webkit-transform: scale(1);
          transform: scale(1);
  padding: 0;
}

/*----------------------------
■リキャプチャバッヂ削除
------------------------------*/
.grecaptcha-badge {
  visibility: hidden;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  -moz-appearance: textfield;
  margin: 0;
}

/*----------------------------
■ 送信ボタン
------------------------------*/
button[type=submit] {
  background: #ccc;
  color: #fff;
  display: -ms-grid;
  display: grid;
  border: 0;
  place-items: center;
  line-height: 1;
  font-weight: bold;
  pointer-events: none;
  -webkit-transition: all 250ms;
  transition: all 250ms;
}
button[type=submit] .c-btn__txt {
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  button[type=submit] .c-btn__txt {
    font-size: 1.6rem;
  }
}
button[type=submit].active {
  pointer-events: initial;
  cursor: pointer;
  background: #389A6D;
  border: 0;
}
button[type=submit].active:hover {
  opacity: 0.7;
}
button[type=submit].u-rev {
  background: #7d7d7d;
  padding: 0;
}

input#privacy-policy {
  -webkit-appearance: auto;
}

label[for=privacy-policy-1] input[id=privacy-policy-1] {
  margin: 0;
  width: 24px;
  height: 24px;
}
label[for=privacy-policy-1] .mwform-checkbox-field-text {
  display: none;
}

input[type=checkbox] {
  padding: 0;
  -webkit-appearance: checkbox;
  width: auto;
  height: auto;
}

input[type=radio] {
  width: 2rem;
  height: 2rem;
  padding: 0;
  margin: 0 10px 0 0;
  -webkit-appearance: auto;
}

.mwform-radio-field label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-kakunin .p-form__label {
  display: none;
}
.p-kakunin .p-form__box input[id=privacy-policy] {
  display: none;
}
.p-kakunin .p-form__box .c-heading__sub {
  color: #414141;
  padding-bottom: 1.5em;
}

@media screen and (max-width: 767px) {
  .mw_wp_form .horizontal-item + .horizontal-item {
    margin-left: 0 !important;
  }
}

.p-form__confirm-btn-groups {
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
}

.p-form__confirm-btn-groups .c-btn__m-size:nth-child(1) {
  -ms-grid-column-align: center;
      justify-self: center;
}

.p-form__confirm-btn-groups .c-btn__m-size:nth-child(2) {
  -ms-grid-column-align: center;
      justify-self: center;
}

.p-form__privacy-txt {
  font-size: 1.4rem;
}

.form-back-btn button {
  display: block;
  text-align: center;
  background: none;
  color: #414141;
  font-size: 1.4rem;
  line-height: 1.5714285714;
  letter-spacing: 0;
  padding-left: 4.5rem;
  position: relative;
  white-space: nowrap;
}
.form-back-btn button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 4rem;
  height: 4rem;
  background: url(../images/common/prev.png) no-repeat center/contain;
}

.form-back-btn button[type=submit].active {
  background: none;
}

.form-back-btn button[type=submit] span.c-btn__txt {
  font-weight: 400;
}

/*1.フェードインアニメーションの指定*/
.scroll-fade {
  opacity: 0;
}
@media all and (-ms-high-contrast: none) {
  .scroll-fade {
    opacity: 1;
  }
}

/*一瞬表示されるのを防ぐ*/
.scroll-load {
  opacity: 0;
}
@media all and (-ms-high-contrast: none) {
  .scroll-load {
    opacity: 1;
  }
}

/*2.上下の動きを指定*/
.updown {
  -webkit-transform: translateY(-100px);
          transform: translateY(-100px);
}

.downup {
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
}

.fadeInDown {
  -webkit-transition: 0.6s;
  transition: 0.6s;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

.sidebar {
  background: #EEF1EA;
  border-radius: 10px;
  padding: 2.3rem 1.6rem 12.3rem;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: sticky;
  top: 9rem;
  z-index: 10;
}
@media screen and (max-width: 1000px) {
  .sidebar {
    display: none;
  }
}
.sidebar::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24rem;
  height: 10.3rem;
  background: url(../images/office/sidebar.png) no-repeat center/contain;
}
.sidebar__ttl {
  font-weight: bold;
  font-weight: 700;
  font-size: 1.6rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #389A6D;
  margin-bottom: 2rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .sidebar__ttl {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .sidebar__ttl {
    margin-bottom: 1.5rem;
  }
}
.sidebar__item {
  margin-top: 1.9rem;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.5;
  position: relative;
}
.sidebar__item::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.8rem;
  height: 1.8rem;
  background: url(../images/office/sidebar-arrow.svg) no-repeat center/contain;
}
.sidebar__item a {
  display: block;
}
.sidebar__tel {
  border-top: 1px solid #389A6D;
  margin-top: 2rem;
  padding-top: 2rem;
  color: #fff;
}
.sidebar__tel-btn {
  display: block;
  background: #389A6D;
  text-align: center;
  color: #fff;
  padding: 0.4rem 0.5rem 0.4rem 0.5rem;
  border-radius: 8px;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.1666666667;
  letter-spacing: 0.05em;
}
.sidebar__tel-btn span {
  font-size: 1.5rem;
  font-family: "Krona One", sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  position: relative;
  padding: 0 0 0 2rem;
}
@media screen and (max-width: 767px) {
  .sidebar__tel-btn span {
    padding: 0 2rem;
  }
}
.sidebar__tel-btn span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.3rem;
  height: 1.3rem;
  background: url(../images/common/sidebar-tel.svg) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .sidebar__tel-btn span::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 2rem;
    height: 2rem;
    background: url(../images/common/sidebar-tel-arrow.svg) no-repeat center/contain;
  }
}
.sidebar__tel-btn span.time {
  font-size: 1.2rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 0.9166666667;
  padding-left: 0;
}
.sidebar__tel-btn span.time::before, .sidebar__tel-btn span.time::after {
  display: none;
}
.sidebar__download {
  margin-top: 2rem;
}
.sidebar__download-btn {
  display: block;
  background: #EB9C3F;
  color: #fff;
  padding: 0.7rem 0.9rem 0.7rem 3.1rem;
  border-radius: 8px;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.4285714286;
  position: relative;
}
.sidebar__download-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 1rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 2.4rem;
  height: 2.8rem;
  background: url(../images/common/pdf.svg) no-repeat center/contain;
}

/*----------------------------
■■ 見出しコンポネント　■■
------------------------------*/
.c-heading {
  font-size: 5rem;
  display: inline-block;
  color: #389A6D;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (max-width: 1000px) {
  .c-heading {
    font-size: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .c-heading {
    font-size: 3rem;
  }
}
.c-heading__en-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.4rem;
}
@media screen and (max-width: 767px) {
  .c-heading__en-wrap {
    gap: 0.5rem;
  }
}
.c-heading__img {
  width: 2.3rem;
}
@media screen and (max-width: 767px) {
  .c-heading__img {
    max-width: 1.8rem;
  }
}
.c-heading__img img {
  width: 100%;
  height: 100%;
  aspect-ratio: 23/7;
  -o-object-fit: contain;
     object-fit: contain;
}
.c-heading__en {
  font-size: 1.4rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  letter-spacing: 0;
  font-family: "Krona One", sans-serif;
  font-weight: 400;
  color: #389A6D;
}
@media screen and (max-width: 1000px) {
  .c-heading__en {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 767px) {
  .c-heading__en {
    font-size: 1rem;
  }
}

.c-heading rt {
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .c-heading rt {
    font-size: 0.9rem;
  }
}

.c-heading-recruit {
  font-size: 5rem;
  position: relative;
  padding-top: 3rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
  font-weight: 700;
  white-space: nowrap;
}
@media screen and (max-width: 1000px) {
  .c-heading-recruit {
    font-size: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .c-heading-recruit {
    font-size: 2.2rem;
  }
}
.c-heading-recruit::before {
  font-size: 1.4rem;
  content: attr(data-en);
  position: absolute;
  top: 0;
  left: 0;
  color: #389A6D;
  letter-spacing: 0;
  font-family: "Krona One", sans-serif;
}
@media screen and (max-width: 1000px) {
  .c-heading-recruit::before {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 767px) {
  .c-heading-recruit::before {
    font-size: 1rem;
  }
}
.c-heading-recruit span {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1000px) {
  .c-heading-recruit span {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .c-heading-recruit span {
    font-size: 1.4rem;
  }
}

.c-heading2 {
  font-size: 4rem;
  font-family: "MOBO-Bold", sans-serif;
  text-align: center;
  letter-spacing: 0.1em;
  line-height: 1;
  color: #389A6D;
  padding-top: 4rem;
  padding-bottom: 4rem;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .c-heading2 {
    font-size: 3.5rem;
  }
}
@media screen and (max-width: 767px) {
  .c-heading2 {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 767px) {
  .c-heading2 {
    padding-top: 3.3rem;
    padding-bottom: 2.5rem;
    white-space: nowrap;
  }
}
.c-heading2::before {
  font-size: 1.6rem;
  content: attr(data-en);
  position: absolute;
  top: 0;
  left: 50%;
  letter-spacing: 0;
  font-family: "Krona One", sans-serif;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  line-height: 1.9375;
  text-transform: uppercase;
  white-space: nowrap;
}
@media screen and (max-width: 1000px) {
  .c-heading2::before {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .c-heading2::before {
    font-size: 1rem;
  }
}
.c-heading2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 28rem;
  height: 0.9rem;
  background-color: #389A6D;
  mask-image: url(../images/common/heading.svg);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-image: url(../images/common/heading.svg);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
}
@media screen and (max-width: 767px) {
  .c-heading2::after {
    width: 12rem;
  }
}
.c-heading2--white {
  color: #fff;
}
.c-heading2--white::after {
  background-color: #fff;
}

.c-heading3 {
  font-size: 4rem;
  font-family: "MOBO-Bold", sans-serif;
  letter-spacing: 0.1em;
  color: #389A6D;
  position: relative;
  padding-left: 3.6rem;
}
@media screen and (max-width: 1000px) {
  .c-heading3 {
    font-size: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .c-heading3 {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .c-heading3 {
    padding-left: 2rem;
  }
}
.c-heading3::before {
  content: "";
  position: absolute;
  top: 52%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  background: #EEF1EA;
}
.c-heading3::after {
  content: "";
  position: absolute;
  top: 52%;
  left: 0.55rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #389A6D;
  z-index: 1;
}
.c-heading3--white {
  color: #fff;
}
.c-heading3--white::before {
  background: #EEF1EA;
}
.c-heading3--white::after {
  background: #389A6D;
}

.c-link-contents__wrap {
  background: #EEF1EA;
  border-radius: 20px;
  padding: 2.6rem 4rem 4rem;
}
@media screen and (max-width: 767px) {
  .c-link-contents__wrap {
    padding: 1.8rem 2rem;
  }
}
.c-link-contents__wrap:nth-child(n+2) {
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .c-link-contents__wrap:nth-child(n+2) {
    margin-top: 2.2rem;
  }
}
.c-link-contents__ttl {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.75;
  padding: 0 2.2rem 1.7rem;
  border-bottom: 1px solid #389A6D;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .c-link-contents__ttl {
    font-size: 1.9rem;
  }
}
@media screen and (max-width: 767px) {
  .c-link-contents__ttl {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .c-link-contents__ttl {
    padding: 0 2.2rem 0.8rem;
  }
}
.c-link-contents__ttl::before {
  content: "";
  position: absolute;
  top: 1.7rem;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  background: #389A6D;
}
.c-link-contents__ttl::after {
  content: "";
  position: absolute;
  top: 1.7rem;
  left: 0.55rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #fff;
  z-index: 1;
}
.c-link-contents__items {
  margin-top: 2.9rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 4rem 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem 4rem;
}
@media screen and (max-width: 767px) {
  .c-link-contents__items {
    margin-top: 2rem;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.c-link-contents__item {
  background: #389A6D;
  border-radius: 23px;
  padding: 0.8rem 1rem 0.8rem 2.2rem;
}
@media screen and (max-width: 1000px) {
  .c-link-contents__item {
    padding: 0.8rem 1rem 0.8rem 1.2rem;
  }
}
@media screen and (max-width: 767px) {
  .c-link-contents__item {
    padding: 0.9rem 1.6rem;
  }
}
.c-link-contents__item a {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5555555556;
  letter-spacing: 0;
  color: #fff;
  padding-left: 2.8rem;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .c-link-contents__item a {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .c-link-contents__item a {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 1000px) {
  .c-link-contents__item a {
    padding-left: 2.2rem;
  }
}
@media screen and (max-width: 767px) {
  .c-link-contents__item a {
    padding-left: 2rem;
  }
}
.c-link-contents__item a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 2.1rem;
  height: 1.5rem;
  background: url(../images/common/pdf.svg) no-repeat center/contain;
}

.contact-cta {
  padding: 5.5rem 0 30rem;
  background: #CEEBD3;
  margin-bottom: -30rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .contact-cta {
    margin-bottom: -18rem;
    padding: 1rem 0 19rem;
  }
}
.contact-cta .c-heading2 {
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .contact-cta .c-heading2 {
    padding-bottom: 1.4rem;
  }
}
.contact-cta__items {
  margin-top: 4.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 4rem;
}
@media screen and (max-width: 767px) {
  .contact-cta__items {
    margin-top: 3rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2.7rem;
  }
}
.contact-cta__btn {
  background: #fff;
  color: #389A6D;
  border-radius: 10px;
  padding: 1.6rem 0 1.6rem 2rem;
  position: relative;
  max-width: 33.5rem;
  min-width: 33.5rem;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.05em;
  -webkit-box-shadow: 0 5px 0 #389A6D;
          box-shadow: 0 5px 0 #389A6D;
}
@media screen and (max-width: 767px) {
  .contact-cta__btn {
    margin-inline: auto;
  }
}
.contact-cta__btn span {
  font-size: 2rem;
  font-family: "Krona One", sans-serif;
  line-height: 1;
  letter-spacing: 0;
  padding-left: 3rem;
  white-space: nowrap;
  position: relative;
  color: #389A6D;
}
.contact-cta__btn span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 2.3rem;
  height: 2.3rem;
  background: url(../images/common/contact-cta-tel.svg) no-repeat center/contain;
}
.contact-cta__btn p {
  font-size: 1.2rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  color: #389A6D;
}
@media screen and (max-width: 767px) {
  .contact-cta__btn::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 1.7rem;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 3.5rem;
    height: 3.5rem;
    background: url(../images/common/contact-tel-arrow.svg) no-repeat center/contain;
  }
}
.contact-cta__btn-mail {
  padding: 1.6rem 10rem 1.6rem 2rem;
}
.contact-cta__btn-mail span {
  font-size: 2rem;
  line-height: 1.6;
  padding-left: 0;
}
.contact-cta__btn-mail span::before {
  display: none;
}
.contact-cta__btn-mail::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.7rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 2.9rem;
  height: 2.9rem;
  background: url(../images/common/contact-mail-arrow.svg) no-repeat center/contain;
}

.news__item {
  position: relative;
}
.news__item-img img {
  border-radius: 10px;
}
.news__new {
  content: "";
  position: absolute;
  top: -2rem;
  left: 0;
  z-index: 1;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.375;
  color: #389A6D;
  font-family: "Krona One", sans-serif;
}
@media screen and (max-width: 767px) {
  .news__new {
    width: 5.6rem;
    height: 2.9rem;
    font-size: 1.4rem;
  }
}
.news__body {
  margin-top: 1.4rem;
}
@media screen and (max-width: 767px) {
  .news__body {
    margin-top: 1.3rem;
  }
}
.news__date {
  font-size: 1.2rem;
  line-height: 1.1666666667;
  letter-spacing: 0;
  padding-right: 0.5rem;
  white-space: nowrap;
}
.news__label {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.4166666667;
  color: #389A6D;
  border: 1px solid #389A6D;
  border-radius: 20px;
  padding: 0.3rem 1rem;
}
@media screen and (max-width: 767px) {
  .news__label {
    font-size: 1rem;
    padding: 0.3rem 1rem;
  }
}
.news__ttl {
  font-size: 1.6rem;
  margin-top: 0.8rem;
  font-weight: 400;
  line-height: 1.7142857143;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .news__ttl {
    font-size: 1.4rem;
    letter-spacing: 0.05em;
  }
}
.news__btn {
  text-align: right;
  max-width: 24.5rem;
  margin-inline: auto;
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .news__btn {
    margin-top: 6rem;
  }
}

.p-single .sub-view {
  aspect-ratio: 1400/48;
}
.p-single__sect {
  padding-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .p-single__sect {
    padding-bottom: 7rem;
  }
}
.p-single__conts-wrapper {
  width: 100%;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  line-height: 2;
  /*----------------------------
  ■画像設定
  ------------------------------*/
  /*----------------------------
  ■見出しレイアウト
  ------------------------------*/
  /*----------------------------
  ■テーブルレイアウト
  ------------------------------*/
  /*----------------------------
  ■　文字装飾レイアウト
  ------------------------------*/
  /*
  ・太文字
  ------------------------------*/
  /*
  ・リスト
  ------------------------------*/
  /*
  ・引用ボックス
  ------------------------------*/
}
@media screen and (max-width: 767px) {
  .p-single__conts-wrapper {
    font-size: 1.6rem;
    line-height: 1.875;
  }
}
.p-single__conts-wrapper img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
}
.p-single__conts-wrapper a {
  text-decoration: underline;
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #389A6D;
}
.p-single__conts-wrapper a:has(.aligncenter) {
  margin: 0 auto;
}
.p-single__conts-wrapper a:has(.alignright) {
  margin-left: auto;
}
.p-single__conts-wrapper a:has(.alignleft) {
  margin-right: auto;
}
.p-single__conts-wrapper .aligncenter {
  display: block;
  margin: 0 auto;
}
.p-single__conts-wrapper .alignright {
  margin-left: auto;
  display: block;
}
.p-single__conts-wrapper .alignleft {
  margin-right: auto;
  display: block;
}
.p-single__conts-wrapper h1 {
  margin-top: 2rem;
  font-size: 3rem;
  letter-spacing: 0.1em;
  line-height: 1.6;
  font-weight: bold;
}
@media screen and (max-width: 1000px) {
  .p-single__conts-wrapper h1 {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-single__conts-wrapper h1 {
    font-size: 2rem;
  }
}
.p-single__conts-wrapper h2 {
  font-size: 2.4rem;
  margin-bottom: 0.8em;
  font-weight: bold;
  line-height: 1.33;
  padding-left: 2rem;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .p-single__conts-wrapper h2 {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-single__conts-wrapper h2 {
    font-size: 1.8rem;
  }
}
.p-single__conts-wrapper h2::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  background: #389A6D;
}
.p-single__conts-wrapper h2::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0.55rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #fff;
  z-index: 1;
}
.p-single__conts-wrapper h3 {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 1em;
  padding-left: 1rem;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .p-single__conts-wrapper h3 {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 767px) {
  .p-single__conts-wrapper h3 {
    font-size: 1.6rem;
  }
}
.p-single__conts-wrapper h3::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.3rem;
  height: 70%;
  background: -webkit-gradient(linear, left top, left bottom, from(#EB9C3F), color-stop(50%, #EB9C3F), color-stop(50%, #389A6D), to(#389A6D));
  background: linear-gradient(to bottom, #EB9C3F 0%, #EB9C3F 50%, #389A6D 50%, #389A6D 100%);
}
.p-single__conts-wrapper h4 {
  padding: 0.5rem 2rem;
  border-left: 3px solid #1E202B;
  margin: 3rem 0 2rem;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .p-single__conts-wrapper h4 {
    font-size: 1.8rem;
  }
}
.p-single__conts-wrapper table {
  width: 100%;
  border: 1px solid #acacac;
  margin-bottom: 4.8rem;
}
@media screen and (max-width: 767px) {
  .p-single__conts-wrapper table {
    margin-bottom: 2.4rem;
  }
}
.p-single__conts-wrapper td {
  border-bottom: 1px solid #acacac;
  border-right: 1px solid #acacac;
  height: 7rem;
  vertical-align: middle;
  padding: 0 3rem;
}
@media screen and (max-width: 767px) {
  .p-single__conts-wrapper td {
    padding: 0 1.5rem;
  }
}
.p-single__conts-wrapper tr:nth-child(1) {
  background: #1E202B;
  color: #fff;
  font-weight: bold;
  border-right: 1px solid #acacac;
  text-align: center;
}
.p-single__conts-wrapper strong,
.p-single__conts-wrapper b {
  font-weight: bold;
}
.p-single__conts-wrapper ul, .p-single__conts-wrapper ol {
  margin-left: 2em;
}
.p-single__conts-wrapper ul {
  list-style: disc;
}
.p-single__conts-wrapper pre {
  white-space: normal;
}
.p-single__conts-wrapper blockquote {
  position: relative;
  padding: 5px 12px 5px 56px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-style: italic;
  color: #414141;
  background: #f4f4f4;
  margin: 3rem 0;
}
.p-single__conts-wrapper blockquote::after {
  content: "";
  position: absolute;
  width: 36px;
  height: 36px;
  top: 50%;
  left: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 36px;
  background: url("../images/quote-left-solid.svg") no-repeat center center/contain;
}
.p-single__conts-wrapper blockquote p {
  font-size: 1.8rem;
  position: relative;
  padding: 0;
  margin: 10px 0;
  z-index: 3;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1000px) {
  .p-single__conts-wrapper blockquote p {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-single__conts-wrapper blockquote p {
    font-size: 1.4rem;
  }
}
.p-single__conts-wrapper blockquote cite {
  display: block;
  text-align: right;
  color: #888888;
  font-size: 0.9em;
}
.p-single__ttl-wrap {
  padding-bottom: 2rem;
  border-bottom: 1px solid #389A6D;
  margin-bottom: 2rem;
}
.p-single__date {
  line-height: 1;
  letter-spacing: 0;
  font-family: "Krona One", sans-serif;
}
@media screen and (max-width: 767px) {
  .p-single__date {
    font-size: 1rem;
  }
}
.p-single__cat {
  font-size: 1.2rem;
  line-height: 1;
  letter-spacing: 0;
  color: #389A6D;
  border: 1px solid #389A6D;
  border-radius: 10px;
  padding: 0.2rem 1rem;
  margin-left: 0.8rem;
}
@media screen and (max-width: 767px) {
  .p-single__cat {
    font-size: 1rem;
  }
}
.p-single__label {
  font-size: 1.6rem;
  font-family: "Krona One", sans-serif;
  letter-spacing: 0;
  color: #389A6D;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: 0.8rem;
}
.p-single iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 360/240;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-single .news__btn {
  text-align: center;
}
.p-single .news__btn a {
  color: #fff;
}
.p-single .news__btn .c-btn__txt {
  text-align: right;
  padding-left: 4rem;
  padding-right: 0;
  font-size: 1.6rem;
}
.p-single .news__btn .c-btn__txt::after {
  content: "";
  position: absolute;
  top: 50%;
  right: initial;
  left: 0.5rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.5rem;
  height: 1rem;
  background: url(../images/common/arrow_hover_black.svg) no-repeat center/contain;
}
.p-single .news__btn .c-btn--news {
  margin-top: 6.5rem;
}
@media screen and (max-width: 767px) {
  .p-single .news__btn .c-btn--news {
    margin-top: 5.2rem;
  }
}

.privacy {
  padding-bottom: 7rem;
  margin-top: -3.4rem;
}
@media screen and (max-width: 767px) {
  .privacy {
    margin-top: -0.5rem;
    padding-bottom: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .privacy .container {
    padding-top: 0;
  }
}
.privacy__head-txt {
  padding-bottom: 5.5rem;
  border-bottom: 1px solid #4A4A4A;
}
@media screen and (max-width: 767px) {
  .privacy__head-txt {
    padding-bottom: 3.5rem;
  }
}
@media screen and (max-width: 767px) {
  .privacy__lists .privacy__num:nth-child(1) {
    padding-top: 0;
  }
}
.privacy__num {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1;
  padding: 4rem 0 2rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .privacy__num {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 767px) {
  .privacy__num {
    line-height: 1.5909090909;
    padding: 3rem 0 0;
  }
}
.privacy__num2 {
  font-size: 2rem;
  padding: 6rem 0 2rem;
}
@media screen and (max-width: 767px) {
  .privacy__num2 {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .privacy__num2 {
    line-height: 1.5555555556;
    padding: 4rem 0 0;
  }
}
.privacy__txt-wrap {
  display: block;
  line-height: 2;
  letter-spacing: 0.05em;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .privacy__txt-wrap {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .privacy__txt-wrap {
    margin-top: 1.6rem;
    line-height: 1.7;
  }
}
.privacy__txt-wrap--day {
  margin-top: -2rem;
  font-size: 1.4rem;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .privacy__txt-wrap--day {
    margin-top: -0.7rem;
  }
}

.privacy-contact__conts-wrap {
  padding: 0 3rem 3rem 3rem;
  background: #fff;
  border: 1px solid #282828;
  height: 22rem;
  overflow-y: scroll;
  max-width: 90rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .privacy-contact__conts-wrap {
    padding: 0 1rem 1rem 1rem;
    height: 15rem;
  }
}
@media screen and (max-width: 767px) {
  .privacy-contact__lists .privacy-contact__num:nth-child(1) {
    padding-top: 1.5rem;
  }
}
.privacy-contact__txt-wrap {
  display: block;
  line-height: 1.33;
  font-size: 1.6rem;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .privacy-contact__txt-wrap {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .privacy-contact__txt-wrap {
    margin-top: 0;
    line-height: 2;
    letter-spacing: 0.05em;
  }
}
.privacy-contact__num {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1;
  padding: 1.5em 0 1em;
}
@media screen and (max-width: 767px) {
  .privacy-contact__num {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .privacy-contact__num {
    padding: 1em 0 0.5em;
  }
}

.sub-view {
  background: url(../images/kv/subkv_bg.png) no-repeat center/cover;
  width: 100%;
  height: auto;
  aspect-ratio: 1400/215;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 10.8rem;
  position: relative;
}
.sub-view .container--l {
  max-width: 126.4rem;
}
@media screen and (max-width: 767px) {
  .sub-view {
    margin-bottom: 4.2rem;
    padding-bottom: 1.2rem;
  }
}
.sub-view::before {
  content: "";
  position: absolute;
  bottom: -14.7rem;
  left: 0;
  width: 100%;
  height: 14.8rem;
  background: url(../images/kv/subkv_wave.png) no-repeat center top/cover;
}
@media screen and (max-width: 1400px) {
  .sub-view::before {
    bottom: -10.7rem;
    height: 10.8rem;
  }
}
@media screen and (max-width: 767px) {
  .sub-view::before {
    bottom: -5.9rem;
    height: 6rem;
    background: url(../images/kv/subkv_wave_sp.png) no-repeat center/cover;
  }
}
@media screen and (max-width: 450px) {
  .sub-view::before {
    bottom: -3.1rem;
    height: 3.2rem;
  }
}
.sub-view__cat {
  margin-top: 1.1rem;
  border: 1px solid #389A6D;
  color: #389A6D;
  display: inline-block;
  border-radius: 10px;
  padding: 0.1rem 0.8rem;
  font-size: 1.4rem;
  line-height: 1.4285714286;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .sub-view__cat {
    margin-left: 1rem;
    font-size: 1rem;
    padding: 0.2rem 0.9rem;
  }
}
.sub-view__heading {
  color: #fff;
  font-family: "MOBO-Bold", sans-serif;
  letter-spacing: 0.1em;
  line-height: 1.3125;
  font-size: 4.8rem;
}
@media screen and (max-width: 1000px) {
  .sub-view__heading {
    font-size: 3.5rem;
  }
}
@media screen and (max-width: 767px) {
  .sub-view__heading {
    font-size: 2.7rem;
  }
}
@media screen and (max-width: 1100px) {
  .sub-view__heading {
    margin-bottom: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .sub-view__heading {
    padding: 0 1rem;
  }
}
.sub-view__heading--mt {
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .sub-view__heading--mt {
    margin-top: 0;
  }
}

.sub-view--entry {
  background: url(../images/kv/subkv-entry.png) no-repeat center/cover;
  width: 100%;
  height: auto;
  aspect-ratio: 1400/230;
}
@media screen and (max-width: 767px) {
  .sub-view--entry {
    aspect-ratio: 375/100;
  }
}

.p-category .cat__sect {
  padding-bottom: 10rem;
}
@media screen and (max-width: 767px) {
  .p-category .cat__sect {
    padding-bottom: 8rem;
  }
}
.p-category .cat__link-groups {
  max-width: 52rem;
  width: 100%;
  margin: 0 auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 2rem 1fr 2rem 1fr;
  grid-template-columns: repeat(3, 1fr);
  -webkit-column-gap: 2rem;
     -moz-column-gap: 2rem;
          column-gap: 2rem;
  padding-bottom: 4.2rem;
}
@media screen and (max-width: 767px) {
  .p-category .cat__link-groups {
    max-width: 33.5rem;
    -webkit-column-gap: 0.8rem;
       -moz-column-gap: 0.8rem;
            column-gap: 0.8rem;
    -ms-grid-columns: 11.7rem 0.8rem 8.6rem 0.8rem 11.7rem;
    grid-template-columns: 11.7rem 8.6rem 11.7rem;
  }
}
.p-category .cat__link {
  background: #a7a5a5;
  color: #fff;
  text-align: center;
  width: 16rem;
  height: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .p-category .cat__link {
    width: auto;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding-left: 1rem;
  }
}
.p-category .cat__link::before {
  content: "";
  position: absolute;
  width: 1rem;
  height: 0.7rem;
  background: url("../images/price/btn-arrow.svg") no-repeat center center/contain;
  right: 1.3rem;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(0deg);
          transform: translateY(-50%) rotate(0deg);
}
@media screen and (max-width: 767px) {
  .p-category .cat__link::before {
    right: 0.8rem;
  }
}
.p-category .cat__link.active {
  background: #000;
}
.p-category .cat__head-heading {
  font-size: 1.8rem;
  border-left: 4px solid #000;
  letter-spacing: 0;
  line-height: 1.6;
  font-weight: bold;
  padding-left: 1rem;
  margin-bottom: 1.5rem;
}
.p-category .news {
  padding-bottom: 13.3rem;
}
@media screen and (max-width: 767px) {
  .p-category .news {
    padding-bottom: 2rem;
  }
}
.p-category .news__container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 240fr 4rem 680fr;
  grid-template-columns: 240fr 680fr;
  gap: 4rem;
}
@media screen and (max-width: 1000px) {
  .p-category .news__container {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    margin-top: -2rem;
    gap: 0.7rem;
  }
}
.p-category .news__body-ttl {
  position: relative;
  padding-left: 2rem;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-category .news__body-ttl {
    line-height: 1.7777777778;
  }
}
.p-category .news__body-ttl::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  background: #389A6D;
}
.p-category .news__body-ttl::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0.55rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #fff;
  z-index: 1;
}
.p-category .news__body {
  margin-top: 5rem;
}
.p-category .news__lists {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 2rem 1fr 2rem 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem 2rem;
}
@media screen and (max-width: 1000px) {
  .p-category .news__lists {
    gap: 3.5rem 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-category .news__lists {
    margin-top: 5.3rem;
    -ms-grid-columns: 1fr 2rem 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 2rem;
  }
}
.p-category .news__item {
  position: relative;
}
.p-category .news__new {
  content: "";
  position: absolute;
  top: -2rem;
  left: 0;
  z-index: 1;
  text-align: center;
  font-size: 1.6rem;
  font-family: "Krona One", sans-serif;
  font-weight: 700;
  line-height: 0.875;
  letter-spacing: 0;
}
@media screen and (max-width: 1000px) {
  .p-category .news__new {
    top: -1.7rem;
  }
}
@media screen and (max-width: 767px) {
  .p-category .news__new {
    width: 5.6rem;
    height: 2.9rem;
    font-size: 1.4rem;
  }
}
.p-category .news__body {
  color: #333;
}
@media screen and (max-width: 767px) {
  .p-category .news__body {
    margin-top: 1.2rem;
  }
}
.p-category .news__item-img img {
  border-radius: 20px;
  width: 100%;
  height: auto;
  aspect-ratio: 176/113;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-category .news__item-img img {
    border-radius: 10px;
  }
}
.p-category .news__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .p-category .news__meta {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.p-category .news__date {
  margin-top: 1.8rem;
  font-size: 1.2rem;
  line-height: 1.1666666667;
  letter-spacing: 0;
  font-family: "Krona One", sans-serif;
  padding-right: 0.5rem;
  border-right: 1px solid #fff;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-category .news__date {
    font-size: 1rem;
  }
}
.p-category .news__label {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.4166666667;
  padding: 0.2rem 1rem;
  text-align: center;
  color: #389A6D;
  border: 1px solid #389A6D;
  display: inline-block;
  border-radius: 10px;
}
@media screen and (max-width: 1000px) {
  .p-category .news__label {
    font-size: 1rem;
    padding: 0.2rem 0.4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-category .news__label {
    padding: 0.2rem;
    white-space: nowrap;
  }
}
.p-category .news__ttl {
  font-size: 1.8rem;
  margin-top: 0.8rem;
  font-weight: 400;
  line-height: 1.4444444444;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-category .news__ttl {
    font-size: 1.4rem;
    letter-spacing: 0.05em;
  }
}
.p-category .news__none {
  white-space: nowrap;
}
.p-category .news__btn {
  text-align: right;
}
.p-category .news__category-wrap {
  background: #EEF1EA;
  border-radius: 10px;
  padding: 2.4rem 1.6rem 12.3rem;
  padding: 2.4rem 0.8rem 12.3rem;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: sticky;
  top: 9rem;
}
@media screen and (max-width: 1000px) {
  .p-category .news__category-wrap {
    background: none;
    padding: 0 0 3rem;
  }
}
.p-category .news__category-wrap::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24rem;
  height: 10.3rem;
  background: url(../images/office/sidebar.png) no-repeat center/contain;
}
@media screen and (max-width: 1000px) {
  .p-category .news__category-wrap::before {
    display: none;
  }
}
.p-category .news__category-wrap-ttl {
  font-weight: bold;
  font-weight: 700;
  font-size: 1.4rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #389A6D;
  margin-bottom: 3rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-category .news__category-wrap-ttl {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 1000px) {
  .p-category .news__category-wrap-ttl {
    text-align: left;
    margin-bottom: 1.5rem;
    position: relative;
  }
  .p-category .news__category-wrap-ttl::before, .p-category .news__category-wrap-ttl::after {
    content: "";
    left: unset;
    position: absolute;
    top: 50%;
    right: 0;
    width: 1.2rem;
    height: 2px;
    background-color: #414141;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  }
  .p-category .news__category-wrap-ttl::before {
    -webkit-transform: translateY(-50%) rotate(0deg);
            transform: translateY(-50%) rotate(0deg);
  }
  .p-category .news__category-wrap-ttl::after {
    -webkit-transform: translateY(-50%) rotate(90deg);
            transform: translateY(-50%) rotate(90deg);
  }
  .p-category .news__category-wrap-ttl.open::after {
    -webkit-transform: translateY(-50%) rotate(0deg);
            transform: translateY(-50%) rotate(0deg);
  }
}
@media screen and (max-width: 1000px) {
  .p-category .news__cat-lists {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 1.2rem 0.9rem;
    display: none;
  }
}
.p-category .news__cat-ttl {
  border: 1px solid #389A6D;
  border-radius: 23px;
  background: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  color: #389A6D;
  padding: 0.6rem 1.2rem;
  display: inline-block;
  text-align: center;
  white-space: nowrap;
}
@media screen and (max-width: 1000px) {
  .p-category .news__cat-ttl {
    padding: 0.6rem 1.4rem;
    font-size: 1.3rem;
  }
}
.p-category .news__cat-ttl a {
  color: #389A6D;
}
.p-category .news__cat-ttl.active {
  background: #389A6D;
}
.p-category .news__cat-ttl.active a {
  color: #fff;
}
.p-category .news__cat-ttl:nth-child(n+2) {
  margin-top: 2rem;
}
@media screen and (max-width: 1000px) {
  .p-category .news__cat-ttl:nth-child(n+2) {
    margin-top: 0;
  }
}

/*----------------------------
■■　トップページ　■■
------------------------------*/
.p-top .c-heading2::before {
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .p-top .c-heading2::before {
    font-size: 1rem;
  }
}
.p-top .kv__sect {
  position: relative;
  width: 100%;
  top: 8.5rem;
}
@media screen and (max-width: 767px) {
  .p-top .kv__sect {
    top: 2.7rem;
  }
}
.p-top .kv__logo-wrap {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.p-top .kv__logo-wrap::before {
  content: "";
  position: absolute;
  top: -8.5rem;
  left: 0;
  width: 35.9rem;
  height: 33.6rem;
  z-index: 1000;
  background: url(../images/common/bg.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .p-top .kv__logo-wrap::before {
    top: -2.7rem;
    width: 17rem;
    height: 15.9rem;
    z-index: 98;
  }
}
.p-top .kv__logo-wrap a {
  position: relative;
  z-index: 1002;
  top: -3.5rem;
  left: 4.4rem;
}
@media screen and (max-width: 767px) {
  .p-top .kv__logo-wrap a {
    display: inline-block;
    top: -2.5rem;
    left: 2rem;
  }
}
.p-top .kv__logo-wrap a div {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  gap: 0.5rem;
  position: relative;
  z-index: 1001;
}
@media screen and (max-width: 767px) {
  .p-top .kv__logo-wrap a div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: unset;
        -ms-flex-align: unset;
            align-items: unset;
    z-index: 99;
  }
}
.p-top .kv__logo-wrap-txt {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.3;
  white-space: nowrap;
}
@media screen and (max-width: 1000px) {
  .p-top .kv__logo-wrap-txt {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top .kv__logo-wrap-txt {
    font-size: 0.9rem;
  }
}
.p-top .kv__logo-wrap-ttl {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 1000px) {
  .p-top .kv__logo-wrap-ttl {
    font-size: 3.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top .kv__logo-wrap-ttl {
    font-size: 2.2rem;
  }
}
.p-top .kv__logo-wrap-ttl rt {
  font-size: 1.2rem;
  line-height: 1.3;
  letter-spacing: 0.5em;
  padding-left: 1rem;
}
@media screen and (max-width: 1000px) {
  .p-top .kv__logo-wrap-ttl rt {
    padding-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-top .kv__logo-wrap-ttl rt {
    font-size: 0.7rem;
    padding-left: 0.3rem;
  }
}
.p-top .kv__bg-img {
  position: relative;
  width: 100%;
  max-width: 94.2857142857%;
  margin-inline: auto;
  margin-top: -5.5rem;
}
@media screen and (max-width: 767px) {
  .p-top .kv__bg-img {
    margin-top: 0;
    max-width: 89.3333333333%;
  }
}
.p-top .kv__bg-img img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1320/600;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-top .kv__bg-img img {
    height: 100%;
    aspect-ratio: 335/400;
  }
}
.p-top .kv__container {
  position: absolute;
  bottom: 5.5rem;
  left: 3rem;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 2rem 0 7rem;
}
@media screen and (max-width: 1380px) {
  .p-top .kv__container {
    bottom: 2rem;
    left: 2rem;
    padding: 0 5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top .kv__container {
    bottom: 5rem;
    left: 0;
    padding: 0 4rem;
  }
}
.p-top .kv__logo {
  max-width: 30rem;
  width: clamp(15rem, 21vw, 30rem);
}
@media screen and (max-width: 1000px) {
  .p-top .kv__logo {
    max-width: 18rem;
    min-width: 18rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top .kv__logo {
    max-width: 16rem;
    min-width: 16rem;
  }
}
.p-top .kv__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: calc(100vh - 9.6rem);
  min-height: 56rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1000px) {
  .p-top .kv__wrap {
    height: 100%;
    min-height: 48rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top .kv__wrap {
    display: -ms-grid;
    display: grid;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    row-gap: 3.2rem;
    height: auto;
    min-height: initial;
    max-width: 48rem;
    margin: 0 auto;
  }
}
.p-top .kv__left {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 46.875%;
          flex: 0 1 46.875%;
}
.p-top .kv__right {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
}
.p-top .kv__img-wrap.img-left {
  max-width: 32rem;
  margin: 0 auto;
}
.p-top .kv__txt {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.625;
  color: #fff;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 1000px) {
  .p-top .kv__txt {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top .kv__txt {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top .kv__txt {
    line-height: 1.7;
  }
}
.p-top .kv__slider {
  content: "";
  position: absolute;
  bottom: -5%;
  right: 6.5%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  max-width: 40rem;
}
@media screen and (max-width: 1000px) {
  .p-top .kv__slider {
    right: 7%;
    bottom: 0;
    max-width: 30rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top .kv__slider {
    bottom: -5%;
    max-width: 34rem;
    margin: 4rem 2rem 0;
    margin-inline: auto;
    position: unset;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.p-top .kv__slider .news__body {
  margin-top: 0;
}
.p-top .kv__slider .news__item {
  width: 40rem;
  height: 11rem;
  background: rgba(0, 0, 0, 0.42);
  padding: 2rem 2rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
}
.p-top .kv__slider .news__date {
  font-size: 1.2rem;
}
.p-top .kv__slider .news__label {
  font-size: 1.2rem;
}
.p-top .kv__slider .news__ttl {
  font-weight: 400;
}
.p-top .kv__slider .slick-arrow:before {
  content: "" !important;
  width: 0.9rem !important;
  height: 100% !important;
  opacity: 1 !important;
  position: absolute;
  top: 0;
  left: 0;
}
.p-top .kv__slider .slick-next {
  right: 1rem;
  top: 3rem;
  z-index: 100;
}
.p-top .kv__slider .slick-next:before {
  background: url(../images/common/next.svg) no-repeat !important;
  background-size: contain !important;
}
.p-top .kv__slider .slick-prev {
  left: unset;
  right: 4rem;
  top: 3rem;
  z-index: 100;
}
.p-top .kv__slider .slick-prev:before {
  background: url(../images/common/prev.svg) no-repeat !important;
  background-size: contain !important;
}
.p-top .kv__link {
  font-size: 2rem;
  position: absolute;
  right: 0;
  bottom: -23%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  color: #fff;
  white-space: nowrap;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  z-index: 100;
  background: url(../images/common/link-bg.png) no-repeat center/cover;
  border-radius: 20px 0 0 20px;
  padding: 3.9rem 2.1rem 3.9rem 2.8rem;
  letter-spacing: 0;
}
@media screen and (max-width: 1000px) {
  .p-top .kv__link {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top .kv__link {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 1100px) {
  .p-top .kv__link {
    bottom: -33%;
  }
}
@media screen and (max-width: 1000px) {
  .p-top .kv__link {
    width: 100%;
    max-width: 27.1rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    bottom: -21%;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    padding: 1.5rem 3.3rem 2rem;
    gap: 0.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top .kv__link {
    bottom: -10%;
    padding: 1.6rem 3rem;
  }
}
@media screen and (max-width: 500px) {
  .p-top .kv__link {
    bottom: -19%;
  }
}
.p-top .kv__link .c-btn {
  max-width: 23rem;
  padding: 1.7rem 6rem 1.7rem 2rem;
}
@media screen and (max-width: 767px) {
  .p-top .kv__link .c-btn {
    max-width: 18.7rem;
    padding: 0.7rem 2rem;
  }
}
.p-top .kv__link .c-btn__txt {
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .p-top .kv__link .c-btn__txt {
    font-size: 1.4rem;
  }
}
.p-top .kv__link::before {
  content: "";
  position: absolute;
  top: -8.1rem;
  right: 6.35rem;
  width: 12rem;
  height: 8.2rem;
  z-index: -1;
  background: url(../images/common/banner-img.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .p-top .kv__link::before {
    top: -4.6rem;
    right: 1.05rem;
    width: 6.5rem;
    height: 4.8rem;
  }
}
.p-top .kv__img-left {
  position: absolute;
  left: 0;
  bottom: -60rem;
  max-width: 52.3rem;
  width: clamp(18rem, 37vw, 52.3rem);
  z-index: 101;
}
@media screen and (max-width: 1000px) {
  .p-top .kv__img-left {
    bottom: -58rem;
  }
}
.p-top .kv__img-left img {
  width: 100%;
  height: auto;
  aspect-ratio: 523/302;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-top .kv__img-right {
  position: absolute;
  right: 0;
  bottom: -63rem;
  max-width: 53.2rem;
  width: clamp(18rem, 38vw, 53.2rem);
  z-index: 5;
}
@media screen and (max-width: 1000px) {
  .p-top .kv__img-right {
    bottom: -58rem;
  }
}
.p-top .kv__img-right img {
  width: 100%;
  height: auto;
  aspect-ratio: 532/226;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-top .concept {
  margin-top: 8rem;
  padding-top: 8rem;
  padding-bottom: 17rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top .concept {
    padding-top: 0;
    padding-bottom: 22.5rem;
  }
}
.p-top .concept__img-top {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-top .concept__img-top {
    display: inline-block;
    content: "";
    position: absolute;
    top: 1%;
    width: 9.1rem;
    height: 10.4rem;
    left: -2%;
  }
}
.p-top .concept__img-left {
  content: "";
  position: absolute;
  bottom: 18rem;
  left: 4%;
  width: clamp(20rem, 24vw, 33.6rem);
  height: auto;
}
@media screen and (max-width: 1100px) {
  .p-top .concept__img-left {
    left: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-top .concept__img-left {
    bottom: unset;
    left: unset;
    top: 23%;
    right: -1%;
    width: 3.8rem;
    height: 1rem;
  }
}
.p-top .concept__img-right {
  content: "";
  position: absolute;
  bottom: 12rem;
  right: 2%;
  width: 31.7rem;
  width: clamp(18rem, 22vw, 31.7rem);
  height: auto;
}
@media screen and (max-width: 1100px) {
  .p-top .concept__img-right {
    right: 3%;
  }
}
@media screen and (max-width: 767px) {
  .p-top .concept__img-right {
    right: unset;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    bottom: 11rem;
    width: 37rem;
    height: 9.7rem;
    z-index: 1;
  }
}
.p-top .concept__message {
  font-size: 4rem;
  font-weight: 400;
  font-family: "MOBO-Bold", sans-serif;
  line-height: 1.8;
  letter-spacing: 0.15em;
  padding-top: 6rem;
  position: relative;
  z-index: 1;
  white-space: nowrap;
  text-align: center;
}
@media screen and (max-width: 1000px) {
  .p-top .concept__message {
    font-size: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top .concept__message {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top .concept__message {
    padding-top: 7.3rem;
    line-height: 1.7;
    letter-spacing: 0.2em;
    margin-top: -2.3rem;
  }
}
.p-top .concept__message-title {
  font-size: 4.5rem;
  font-weight: 400;
  color: #389A6D;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1000px) {
  .p-top .concept__message-title {
    font-size: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top .concept__message-title {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top .concept__message-title {
    line-height: 1.5;
    font-weight: 400;
    padding-left: 1.5rem;
  }
}
.p-top .concept__message-read {
  font-size: 2.4rem;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
  margin-top: 3rem;
}
@media screen and (max-width: 1000px) {
  .p-top .concept__message-read {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top .concept__message-read {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top .concept__message-read {
    margin-top: 1.7rem;
  }
}
.p-top .concept__message-txt {
  font-size: 1.8rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-top .concept__message-txt {
    line-height: 2;
    font-size: 1.6rem;
    margin-top: 2.5rem;
  }
}
.p-top .service {
  padding-top: 6.8rem;
  padding-bottom: 8rem;
  position: relative;
  background: #389A6D;
}
@media screen and (max-width: 767px) {
  .p-top .service {
    padding-top: 0;
    padding-bottom: 0;
  }
}
.p-top .service::before {
  content: "";
  position: absolute;
  top: -6rem;
  left: 0;
  width: 100%;
  height: 42.5rem;
  background: url(../images/common/bg_green.png) no-repeat center/cover;
  z-index: -1;
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
@media screen and (max-width: 767px) {
  .p-top .service::before {
    height: 17.9rem;
    background: url(../images/common/bg_green-sp.png) no-repeat center/cover;
  }
}
.p-top .service__img-left {
  position: absolute;
  width: 15.6rem;
  height: 7.8rem;
  top: 5%;
  left: 5%;
}
@media screen and (max-width: 767px) {
  .p-top .service__img-left {
    width: 7.1rem;
    height: 5.6rem;
    top: 4%;
    left: -2%;
  }
}
.p-top .service__img-right {
  position: absolute;
  width: 21.4rem;
  height: 12.1rem;
  top: 5%;
  right: 5%;
}
@media screen and (max-width: 767px) {
  .p-top .service__img-right {
    width: 8.1rem;
    height: 5.6rem;
    top: 1%;
    right: -3%;
  }
}
.p-top .service .sec-title {
  text-align: center;
}
.p-top .service .sec-title__inner {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 767px) {
  .p-top .service .sec-title__inner {
    gap: 1.5rem;
  }
}
.p-top .service .c-heading2 {
  font-size: 5.2rem;
}
@media screen and (max-width: 767px) {
  .p-top .service .c-heading2 {
    font-size: 3rem;
  }
}
.p-top .service__items {
  margin-top: 6.1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3rem;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  padding-bottom: 6rem;
}
@media screen and (max-width: 767px) {
  .p-top .service__items {
    margin-top: 3.8rem;
    padding-bottom: 5.5rem;
    gap: 2rem;
  }
}
.p-top .service__items .slick-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  height: 100%;
}
.p-top .service__item {
  min-width: 61.4rem;
  height: 100%;
}
@media screen and (max-width: 1000px) {
  .p-top .service__item {
    min-width: unset;
  }
}
.p-top .service__card {
  background: #EEF1EA;
  border-radius: 20px;
  padding: 3rem;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 49rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-top .service__card {
    min-height: 52.3rem;
    padding: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top .service__card:first-child {
    padding: 2rem 2.5rem 2.5rem;
  }
}
.p-top .service__card-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3rem;
}
@media screen and (max-width: 767px) {
  .p-top .service__card-head {
    gap: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    display: -ms-grid;
    display: grid;
    grid-auto-flow: column;
    -ms-grid-rows: 6.6rem 0 1fr;
    grid-template-rows: 6.6rem 1fr;
  }
}
.p-top .service__title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.75;
  color: #389A6D;
}
@media screen and (max-width: 1000px) {
  .p-top .service__title {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top .service__title {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top .service__title {
    text-align: center;
  }
}
.p-top .service__img {
  max-width: 24.3rem;
  width: 100%;
  height: auto;
  aspect-ratio: 243/167;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-top .service__img {
    margin-top: 1.5rem;
    max-width: 22.3rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top .service__list {
    margin-top: 0.5rem;
  }
}
.p-top .service__list-item {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.7;
  padding: 1.5rem 0 0.5rem;
  border-bottom: 1px solid #389A6D;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .p-top .service__list-item {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top .service__list-item {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top .service__list-item {
    letter-spacing: 0;
    line-height: 1.75;
  }
}
.p-top .service__list-item ruby {
  line-height: 1;
}
.p-top .service__list-item::before {
  content: "";
  position: absolute;
  top: 60%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  background: #389A6D;
}
.p-top .service__list-item::after {
  content: "";
  position: absolute;
  top: 60%;
  right: 0.65rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 50%;
  background: #fff;
  z-index: 1;
}
.p-top .service__list-item a {
  display: inline-block;
  width: 100%;
}
.p-top .service .slick-slide:first-child {
  margin-left: 22rem;
}
@media screen and (max-width: 1000px) {
  .p-top .service .slick-slide:first-child {
    margin-left: 0;
  }
}
.p-top .service .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3rem;
}
@media screen and (max-width: 767px) {
  .p-top .service .slick-track {
    gap: 2rem;
  }
}
.p-top .service .slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 5rem;
  padding: 0;
  list-style: none;
  margin-left: calc(50% - 50vw);
}
@media screen and (max-width: 767px) {
  .p-top .service .slick-dots {
    bottom: 0;
  }
}
.p-top .service .slick-dots li {
  width: 0.8rem;
}
.p-top .service .slick-dots li button {
  width: 8px;
  height: 8px;
  background-color: #389A6D;
  border: 1px solid #fff;
  border-radius: 50%;
  padding: 0;
  text-indent: -9999px; /* 数字非表示 */
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.p-top .service .slick-dots li.slick-active button {
  background-color: #fff;
}
.p-top .service .slick-next {
  top: unset;
  bottom: -4.5rem;
  right: 40%;
  width: 4rem;
  height: 4rem;
  z-index: 1;
}
@media screen and (max-width: 1000px) {
  .p-top .service .slick-next {
    right: 20%;
  }
}
@media screen and (max-width: 767px) {
  .p-top .service .slick-next {
    bottom: -2.3rem;
    right: 23%;
  }
}
.p-top .service .slick-next:before {
  display: inline-block;
  color: unset;
  opacity: 1;
  width: 100%;
  height: 100%;
  background: url(../images/common/next-white.png) no-repeat center/cover;
}
.p-top .service .slick-prev {
  top: unset;
  bottom: -4.5rem;
  left: 40%;
  width: 4rem;
  height: 4rem;
  z-index: 1;
}
@media screen and (max-width: 1000px) {
  .p-top .service .slick-prev {
    left: 20%;
  }
}
@media screen and (max-width: 767px) {
  .p-top .service .slick-prev {
    bottom: -2.3rem;
    left: 23%;
  }
}
.p-top .service .slick-prev:before {
  display: inline-block;
  color: unset;
  opacity: 1;
  width: 100%;
  height: 100%;
  background: url(../images/common/prev-white.png) no-repeat center/cover;
}
.p-top .cta {
  background: #389A6D;
  padding-bottom: 12.3rem;
}
@media screen and (max-width: 767px) {
  .p-top .cta {
    padding-bottom: 3rem;
  }
}
.p-top .cta .container {
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .p-top .cta .container {
    padding: 0;
  }
}
.p-top .cta__items {
  overflow-x: hidden;
  display: -ms-grid;
  display: grid;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  margin-right: calc(50% - 50vw);
}
@media screen and (max-width: 767px) {
  .p-top .cta__items {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 2.6rem;
    margin-right: unset;
  }
}
.p-top .cta__item {
  display: block;
  background: #EEF1EA;
  padding: 2.6rem 3rem;
  border-radius: 20px;
  max-width: 72.8rem;
  margin-inline: auto;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top .cta__item {
    max-width: 89.3333333333%;
    padding: 3rem 3rem 3.8rem;
  }
}
.p-top .cta__item::before {
  content: "";
  position: absolute;
  bottom: -2rem;
  left: -3.7rem;
  width: 13.4rem;
  height: 10.4rem;
  background: url(../images/top/cta-bg.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .p-top .cta__item::before {
    bottom: -3.8rem;
    left: -1rem;
    width: 9.7rem;
    height: 7.5rem;
  }
}
.p-top .cta__item::after {
  content: "";
  position: absolute;
  bottom: -2rem;
  right: -3.7rem;
  width: 9.9rem;
  height: 13.2rem;
  background: url(../images/top/cta-bg2.png) no-repeat center/contain;
}
@media screen and (max-width: 1000px) {
  .p-top .cta__item::after {
    right: -1rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top .cta__item::after {
    bottom: -6rem;
    right: 0;
    width: 7.2rem;
    height: 9.5rem;
  }
}
.p-top .cta__item-title {
  font-size: 2.4rem;
  line-height: 1.8333333333;
  letter-spacing: 0.05em;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
}
@media screen and (max-width: 1000px) {
  .p-top .cta__item-title {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top .cta__item-title {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top .cta__item-title {
    line-height: 1.5555555556;
  }
}
.p-top .cta__item-txt {
  font-size: 1.6rem;
  line-height: 1.8333333333;
  letter-spacing: 0.05em;
  font-weight: 700;
  text-align: center;
  margin-top: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-top .cta__item-txt {
    text-align: left;
    margin-top: 1.5rem;
  }
}
.p-top .cta__btn {
  text-align: center;
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .p-top .cta__btn {
    margin-top: 2rem;
  }
}
.p-top .cta__bottom-img {
  margin-top: 12.3rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-top .cta__bottom-img {
    margin-top: 10rem;
  }
}
.p-top .cta__bottom-img img, .p-top .cta__bottom-img source {
  width: 100%;
  height: auto;
  aspect-ratio: 1400/630;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-top .cta__bottom-img img, .p-top .cta__bottom-img source {
    aspect-ratio: 375/500;
  }
}
.p-top .p-top-our-story {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background-color: #fff;
}
.p-top .p-top-our-story__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100vh;
}
.p-top .p-top-our-story__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  height: 100vh;
}
.p-top .p-top-our-story__kv {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100vw;
  height: 100%;
}
.p-top .p-top-our-story__kv-inner {
  width: 100%;
  height: 100%;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  will-change: transform, clip-path;
}
.p-top .p-top-our-story__kv-inner {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.p-top .p-top-our-story__kv-inner img {
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-top .p-top-our-story__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 50vw;
  position: relative;
}
.p-top .p-top-our-story__header .c-heading2 {
  position: absolute;
  top: 20%;
  font-size: 5.2rem;
  padding-top: 6rem;
}
@media screen and (max-width: 767px) {
  .p-top .p-top-our-story__header .c-heading2 {
    padding-top: 3.5rem;
    font-size: 3rem;
  }
}
.p-top .p-top-our-story__header::before {
  content: "";
  position: absolute;
  bottom: 7%;
  right: 21%;
  width: 22.8rem;
  height: 17rem;
  background: url(../images/top/recruit06.png) no-repeat center/contain;
}
@media (max-width: 1024px) {
  .p-top .p-top-our-story__header {
    width: 100vw;
  }
  .p-top .p-top-our-story__header::before {
    content: "";
    position: absolute;
    bottom: 3%;
    right: 21%;
    width: 15.8rem;
    height: 11.8rem;
  }
}
.p-top .p-top-our-story__body {
  position: relative;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 190.9135802469vh;
}
.p-top .p-top-our-story__image {
  position: relative;
  width: 100%;
  height: 100%;
}
.p-top .p-top-our-story__image-item {
  position: absolute;
  z-index: 1;
  will-change: transform;
  overflow: hidden;
  border-radius: 0.8rem;
}
.p-top .p-top-our-story__image-item--1 {
  top: 14.1728395062vh;
  left: 0;
  width: 34.2222222222vh;
}
.p-top .p-top-our-story__image-item--1 .p-top-our-story__image-inner img {
  aspect-ratio: 231/157;
  min-width: 23.1rem;
}
@media screen and (max-width: 767px) {
  .p-top .p-top-our-story__image-item--1 .p-top-our-story__image-inner img {
    min-width: 16.1rem;
  }
}
.p-top .p-top-our-story__image-item--2 {
  top: 45.6790123457vh;
  left: 0;
  width: 35vh;
}
.p-top .p-top-our-story__image-item--3 {
  top: 14vh;
  left: 68.8395061728vh;
  width: 22.2222222222vh;
}
.p-top .p-top-our-story__image-item--4 {
  top: 49vh;
  left: 63vh;
  width: 35.6790123457vh;
}
.p-top .p-top-our-story__image-item--5 {
  top: 16.9135802469vh;
  left: 134vh;
  width: 49.2592592593vh;
}
.p-top .p-top-our-story__image-inner {
  position: relative;
  width: 100%;
  padding-top: 134%;
}
.p-top .p-top-our-story__image-inner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}
.p-top .p-top-our-story__logo {
  position: absolute;
  top: 27.7777777778vh;
  left: 59.2592592593vh;
  z-index: 0;
  width: 103.7037037037vh;
  will-change: transform;
}
.p-top .p-top-our-story__copy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 50vw;
  position: relative;
}
.p-top .p-top-our-story__copy::before {
  content: "";
  position: absolute;
  top: 20%;
  left: 10%;
  width: 12rem;
  height: 6.7rem;
  background: url(../images/top/recruit07.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .p-top .p-top-our-story__copy::before {
    top: 9%;
    left: 3%;
    width: 9.5rem;
    height: 5.4rem;
  }
}
.p-top .p-top-our-story__copy::after {
  content: "";
  position: absolute;
  bottom: 14%;
  right: 0%;
  width: 15.4rem;
  height: 27.9rem;
  background: url(../images/top/recruit08.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .p-top .p-top-our-story__copy::after {
    bottom: 8%;
    width: 12.2rem;
    height: 22.1rem;
  }
}
.p-top .p-top-our-story__copy img {
  width: 7.9012345679vh;
  max-width: initial;
}
.p-top .p-top-our-story__copy {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.4583333333;
  letter-spacing: 0.3em;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}
@media (max-width: 1024px) {
  .p-top .p-top-our-story__copy {
    width: 100vw;
  }
}
.p-top .p-top-our-story__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100vw;
}
@media (max-width: 1024px) {
  .p-top .p-top-our-story__footer {
    width: 100vw;
  }
}
.p-top .p-top-our-story__text {
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.05em;
  white-space: nowrap;
  text-align: center;
}
.p-top .is-en .p-top-our-story__text {
  max-width: 40rem;
  line-height: var(--line-height-body);
  letter-spacing: var(--letter-spacing-body);
  white-space: initial;
}
@media (max-width: 767px) {
  .p-top .p-top-our-story__text {
    font-size: 1.6rem;
  }
  .p-top .is-en .p-top-our-story__text {
    max-width: 80vw;
  }
}
.p-top .p-top-our-story__button {
  margin-top: 5rem;
  text-align: center;
}
.p-top .access {
  padding-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .p-top .access {
    padding-bottom: 3rem;
  }
}
.p-top .access__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8.5rem;
}
@media screen and (max-width: 1000px) {
  .p-top .access__inner {
    gap: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top .access__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: normal;
        -ms-flex-align: normal;
            align-items: normal;
    gap: 2.5rem;
  }
}
.p-top .access__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4rem;
}
@media screen and (max-width: 767px) {
  .p-top .access__right {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-top .access__table dl {
  font-size: 1.4rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 7.5rem 1fr;
  grid-template-columns: 7.5rem 1fr;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
@media screen and (max-width: 1000px) {
  .p-top .access__table dl {
    -ms-grid-columns: 8rem 1fr;
    grid-template-columns: 8rem 1fr;
  }
}
@media screen and (max-width: 767px) {
  .p-top .access__table dl:nth-child(n+2) {
    margin-top: 2.6rem;
  }
}
.p-top .access__table dh {
  position: relative;
  font-weight: 700;
  line-height: 1;
}
.p-top .access__table dh::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  width: 1px;
  height: 2rem;
  background: #fff;
}
.p-top .access__table dd {
  padding-left: 1.5rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 1000px) {
  .p-top .access__table dd {
    padding-left: 1rem;
    line-height: 2;
  }
}
@media screen and (max-width: 767px) {
  .p-top .access__table dd {
    padding-left: 2rem;
  }
}
.p-top .access__table dd .c-btn {
  margin-left: 4rem;
}
@media screen and (max-width: 1000px) {
  .p-top .access__table dd .c-btn {
    margin-left: 0;
    margin-top: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top .access__table dd .c-btn {
    margin-left: 0;
  }
}
.p-top .access__map {
  margin-top: 4.2rem;
}
@media screen and (max-width: 767px) {
  .p-top .access__map {
    margin-top: 2.6rem;
    padding: 0 2rem;
  }
}
.p-top .access__map iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 1400/440;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-top .access__map iframe {
    aspect-ratio: 335/250;
  }
}
.p-top .news {
  padding-top: 11.6rem;
  padding-bottom: 10rem;
  position: relative;
  overflow-x: clip;
  background: #FAF8F4;
}
@media screen and (max-width: 767px) {
  .p-top .news {
    padding-top: 4.4rem;
    padding-bottom: 4rem;
  }
}
.p-top .news .c-heading2 {
  font-size: 5.2rem;
}
@media screen and (max-width: 767px) {
  .p-top .news .c-heading2 {
    font-size: 3rem;
  }
}
.p-top .news__img-left {
  content: "";
  position: absolute;
  top: -6rem;
  left: 0;
  width: 63.8rem;
  height: 33.9rem;
}
@media screen and (max-width: 1000px) {
  .p-top .news__img-left {
    width: 17.5rem;
    height: 15.9rem;
    left: -5rem;
    top: 0;
  }
}
.p-top .news__img-right {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 32.8rem;
  height: 17.7rem;
}
@media screen and (max-width: 1000px) {
  .p-top .news__img-right {
    width: 12.2rem;
    height: 6.6rem;
  }
}
.p-top .news__img-right-bottom {
  content: "";
  position: absolute;
  bottom: 5.5rem;
  right: -16rem;
  width: 49.1rem;
  height: 24.6rem;
}
@media screen and (max-width: 1000px) {
  .p-top .news__img-right-bottom {
    width: 38.2rem;
    height: 19.3rem;
    right: -23rem;
    bottom: -4rem;
  }
}
.p-top .news .sec-title {
  text-align: center;
}
.p-top .news .sec-title__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 767px) {
  .p-top .news .sec-title__inner {
    gap: 1.5rem;
  }
}
.p-top .news__read {
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-top: 5.4rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-top .news__read {
    font-size: 1.6rem;
    margin-top: 2.7rem;
  }
}
.p-top .news__tab-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
  margin-top: 3.5rem;
}
@media screen and (max-width: 767px) {
  .p-top .news__tab-list {
    margin-top: 2.3rem;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    overflow-x: scroll;
    margin-right: calc(50% - 50vw);
  }
}
.p-top .news__tab-item {
  border: 1px solid #C6DFC9;
  border-radius: 23px;
  padding: 0.3rem 1rem;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 2.3;
  color: #389A6D;
  white-space: nowrap;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .p-top .news__tab-item {
    font-size: 1.3rem;
    padding: 0.4rem 1rem;
  }
}
.p-top .news__tab-item.is-active {
  background: #389A6D;
  color: #fff;
}
.p-top .news__tab-item:hover {
  cursor: pointer;
  opacity: 0.7;
}
.p-top .news__items {
  margin-top: 4.7rem;
  padding-top: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 1000px) {
  .p-top .news__items {
    gap: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top .news__items {
    margin-top: 3rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-top .news__items-main-wrap {
  width: 57.0833333333%;
}
@media screen and (max-width: 767px) {
  .p-top .news__items-main-wrap {
    width: 100%;
  }
}
.p-top .news__items-main {
  position: relative;
}
.p-top .news__items-main .news__meta {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .p-top .news__items-main .news__meta {
    gap: 0;
  }
}
.p-top .news__items-main .news__date {
  font-size: 1.2rem;
  display: block;
  font-family: "Krona One", sans-serif;
}
.p-top .news__items-main .news__label {
  display: block;
  font-size: 1.2rem;
}
.p-top .news__items-sub {
  display: -ms-grid;
  display: grid;
  -webkit-column-gap: 2rem;
     -moz-column-gap: 2rem;
          column-gap: 2rem;
  row-gap: 3rem;
  -ms-grid-columns: 1fr 2rem 1fr;
  grid-template-columns: repeat(2, 1fr);
  width: 38.75%;
}
@media screen and (max-width: 767px) {
  .p-top .news__items-sub {
    width: 100%;
  }
}
.p-top .news__items-sub .news__item-img {
  max-width: 17.6rem;
}
@media screen and (max-width: 767px) {
  .p-top .news__items-sub .news__item-img {
    max-width: 100%;
  }
}
.p-top .news__items-sub .news__item-img img {
  width: 100%;
  height: auto;
  aspect-ratio: 176/113;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-top .news__items-sub .news__body {
  margin-top: 1.5rem;
}
.p-top .news__items-sub .news__meta {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.8rem;
}
.p-top .news__items-sub .news__date {
  font-size: 1rem;
  display: block;
  font-family: "Krona One", sans-serif;
}
.p-top .news__items-sub .news__label {
  display: block;
  font-size: 1rem;
}
.p-top .news__items-sub .news__ttl {
  font-size: 1.4rem;
  margin-top: 1rem;
  font-weight: 400;
  line-height: 1.7142857143;
  letter-spacing: 0.05em;
}
.p-top .news__item {
  position: relative;
}
.p-top .news__item-img img {
  border-radius: 10px;
}
.p-top .news__new {
  content: "";
  position: absolute;
  top: -2rem;
  left: 0;
  z-index: 1;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.375;
  color: #389A6D;
  font-family: "Krona One", sans-serif;
}
@media screen and (max-width: 767px) {
  .p-top .news__new {
    width: 5.6rem;
    height: 2.9rem;
    font-size: 1.4rem;
  }
}
.p-top .news__body {
  margin-top: 1.4rem;
}
@media screen and (max-width: 767px) {
  .p-top .news__body {
    margin-top: 1.3rem;
  }
}
.p-top .news__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4.7rem;
}
@media screen and (max-width: 767px) {
  .p-top .news__meta {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 2rem;
  }
}
.p-top .news__date {
  font-size: 1.2rem;
  line-height: 1.1666666667;
  letter-spacing: 0;
  padding-right: 0.5rem;
  border-right: 1px solid #fff;
  white-space: nowrap;
}
.p-top .news__label {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.4166666667;
  color: #389A6D;
  border: 1px solid #389A6D;
  border-radius: 20px;
  padding: 0.3rem 1rem;
}
@media screen and (max-width: 767px) {
  .p-top .news__label {
    font-size: 1rem;
    padding: 0.3rem 1rem;
  }
}
.p-top .news__ttl {
  font-size: 1.8rem;
  margin-top: 0.8rem;
  font-weight: 400;
  line-height: 1.7142857143;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .p-top .news__ttl {
    font-size: 1.4rem;
    letter-spacing: 0.05em;
  }
}
.p-top .news__btn {
  text-align: right;
  max-width: 24.5rem;
  margin-inline: auto;
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-top .news__btn {
    margin-top: 6rem;
  }
}
.p-top .about {
  padding-top: 8rem;
  padding-bottom: 0;
  position: relative;
  overflow: clip;
}
@media screen and (max-width: 767px) {
  .p-top .about {
    padding-top: 4rem;
  }
}
.p-top .about .c-heading2 {
  padding-top: 6rem;
  font-size: 5.2rem;
}
.p-top .about .c-heading2 rt {
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .p-top .about .c-heading2 {
    padding-top: 3.5rem;
    font-size: 3rem;
  }
}
.p-top .about__img {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  max-width: 125.1rem;
  width: 125.1rem;
  z-index: 1;
}
@media screen and (max-width: 1000px) {
  .p-top .about__img {
    max-width: 60.1rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top .about__img {
    bottom: 7rem;
    width: 37.5rem;
    height: 20rem;
  }
}
.p-top .about__img img {
  width: 100%;
  height: auto;
  aspect-ratio: 1251/417;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1000px) {
  .p-top .about__img img {
    aspect-ratio: 375/276;
  }
}
.p-top .about__container {
  margin-top: 6rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 6rem;
}
@media screen and (max-width: 1000px) {
  .p-top .about__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .p-top .about__container {
    margin-top: 3rem;
  }
}
.p-top .about .sec-title {
  text-align: center;
}
.p-top .about .sec-title__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 767px) {
  .p-top .about .sec-title__inner {
    gap: 1.5rem;
  }
}
.p-top .about__body-read {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.4666666667;
  text-align: center;
  white-space: nowrap;
}
@media screen and (max-width: 1000px) {
  .p-top .about__body-read {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top .about__body-read {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top .about__body-read {
    line-height: 1.6;
  }
}
.p-top .about__body-txt {
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-top: 1.3rem;
  text-align: center;
}
@media screen and (max-width: 1000px) {
  .p-top .about__body-txt {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top .about__body-txt {
    font-size: 1.6rem;
  }
}
.p-top .about__links {
  margin-top: 8rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1.4rem 1fr 1.4rem 1fr 1.4rem 1fr;
  grid-template-columns: repeat(4, 1fr);
  -webkit-column-gap: 1.4rem;
     -moz-column-gap: 1.4rem;
          column-gap: 1.4rem;
  row-gap: 1.9rem;
}
@media screen and (max-width: 767px) {
  .p-top .about__links {
    margin-top: 4.8rem;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    row-gap: 3.9rem;
  }
}
.p-top .about__btn a {
  display: block;
  background: #389A6D;
  padding: 10.4rem 2rem 3rem;
  border-radius: 10px;
  color: #fff;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top .about__btn a {
    padding: 6.7rem 1rem 1.7rem;
  }
}
.p-top .about__btn a img {
  position: absolute;
  top: -2.4rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .p-top .about__btn a img {
    top: -1.8rem;
  }
}
.p-top .about__btn a .c-btn__circle {
  bottom: 4rem;
  right: 2rem;
}
@media screen and (max-width: 767px) {
  .p-top .about__btn a .c-btn__circle {
    bottom: 2.4rem;
    right: 1rem;
  }
}
.p-top .about__btn a .about__btn-img1 {
  max-width: 14.3rem;
}
@media screen and (max-width: 767px) {
  .p-top .about__btn a .about__btn-img1 {
    max-width: 10.3rem;
  }
}
.p-top .about__btn a .about__btn-img2 {
  max-width: 13.4rem;
}
@media screen and (max-width: 767px) {
  .p-top .about__btn a .about__btn-img2 {
    max-width: 9.6rem;
  }
}
.p-top .about__btn a .about__btn-img3 {
  max-width: 12rem;
}
@media screen and (max-width: 767px) {
  .p-top .about__btn a .about__btn-img3 {
    max-width: 8.7rem;
  }
}
.p-top .about__btn a .about__btn-img4 {
  max-width: 15.8rem;
}
@media screen and (max-width: 767px) {
  .p-top .about__btn a .about__btn-img4 {
    max-width: 11.4rem;
  }
}

/*----------------------------
■■　概要ページ page-about.php　■■
------------------------------*/
/*----------------------------
■■　採用ページ page-recruit.php　■■
------------------------------*/
.p-recruit .kv {
  position: relative;
}
.p-recruit .kv__title {
  font-size: 4.5rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  line-height: 1.6666666667;
  position: absolute;
  top: 43%;
  left: 11%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
}
@media screen and (max-width: 1000px) {
  .p-recruit .kv__title {
    font-size: 3.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-recruit .kv__title {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 767px) {
  .p-recruit .kv__title {
    top: 50%;
    left: 5%;
    letter-spacing: 0.2em;
  }
}
.p-recruit .kv__img {
  width: 74.1428571429%;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .p-recruit .kv__img {
    width: 100%;
  }
}
.p-recruit .kv__img img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1038/619;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-recruit .kv__img img {
    aspect-ratio: 375/420;
  }
}
.p-recruit .kv__en {
  content: "";
  position: absolute;
  bottom: -6%;
  left: 0;
  width: 82.7rem;
  height: auto;
}
@media screen and (max-width: 1300px) {
  .p-recruit .kv__en {
    width: 62.7rem;
  }
}
@media screen and (max-width: 1000px) {
  .p-recruit .kv__en {
    bottom: -20%;
  }
}
@media screen and (max-width: 767px) {
  .p-recruit .kv__en {
    bottom: -8rem;
    width: 37.5rem;
  }
}
.p-recruit .job {
  padding: 15.4rem 0 9.4rem;
}
@media screen and (max-width: 767px) {
  .p-recruit .job {
    padding: 12rem 0 0;
  }
}
.p-recruit .job .c-heading-recruit {
  display: inline-block;
  padding-right: 35.3rem;
}
@media screen and (max-width: 767px) {
  .p-recruit .job .c-heading-recruit {
    padding-right: 24.1rem;
  }
}
.p-recruit .job .c-heading-recruit::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 22.8rem;
  height: 10.1rem;
  background: url(../images/recruit/job-ttl.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .p-recruit .job .c-heading-recruit::after {
    width: 12.3rem;
    height: 5.5rem;
  }
}
.p-recruit .job__wrap {
  margin-top: 5.7rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #C7C7C7;
}
@media screen and (max-width: 767px) {
  .p-recruit .job__wrap {
    margin-top: 2.5rem;
    padding-bottom: 1.2rem;
  }
}
.p-recruit .job__title {
  font-size: 1.8rem;
  padding-left: 2rem;
  cursor: pointer;
  line-height: 1.5555555556;
  letter-spacing: 0.1em;
  color: #C7C7C7;
  font-weight: 700;
}
@media screen and (max-width: 1000px) {
  .p-recruit .job__title {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 767px) {
  .p-recruit .job__title {
    font-size: 1.6rem;
  }
}
.p-recruit .job__title:nth-child(n+2) {
  border-left: 1px solid #C7C7C7;
}
.p-recruit .job__title.is-active {
  color: #414141;
}
.p-recruit .job__list {
  display: none;
}
.p-recruit .job__list.is-active {
  margin-top: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2rem 1rem;
}
@media screen and (max-width: 767px) {
  .p-recruit .job__list.is-active {
    margin-top: 2.5rem;
    gap: 1.2rem 1rem;
  }
}
.p-recruit .job__item {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  border: 1px solid #707070;
  border-radius: 24px;
  position: relative;
}
.p-recruit .job__item a {
  display: block;
  padding: 0.9rem 7rem 0.9rem 4.6rem;
}
@media screen and (max-width: 767px) {
  .p-recruit .job__item a {
    padding: 0.9rem 6.8rem 0.9rem 4.6rem;
  }
}
.p-recruit .job__item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 1rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 2.8rem;
  height: 2.8rem;
  background: #57B38A;
  border-radius: 50%;
}
.p-recruit .job__item::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 2.1rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.5rem;
  height: 0.4rem;
  background: url(../images/common/btn-arrow.svg) no-repeat center/contain;
}
.p-recruit .concept {
  text-align: center;
  background: #F5F9E7;
  position: relative;
  padding: 18.8rem 0 14rem;
}
@media screen and (max-width: 767px) {
  .p-recruit .concept {
    padding: 18.8rem 0 8rem;
  }
}
.p-recruit .concept::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  height: 10.7rem;
  background: url(../images/recruit/bg-yellow.png) repeat center/cover;
}
.p-recruit .concept::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(-180deg);
          transform: translateX(-50%) rotate(-180deg);
  width: 100%;
  height: 10.7rem;
  background: url(../images/recruit/bg-yellow.png) repeat center/cover;
}
@media screen and (max-width: 767px) {
  .p-recruit .concept::after {
    height: 8rem;
  }
}
.p-recruit .concept__top-img {
  max-width: 85rem;
  margin-inline: auto;
  margin-top: -13rem;
  position: relative;
}
.p-recruit .concept__ttl {
  margin-top: 7rem;
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.5;
}
@media screen and (max-width: 1000px) {
  .p-recruit .concept__ttl {
    font-size: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .p-recruit .concept__ttl {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-recruit .concept__ttl {
    margin-top: 4.7rem;
  }
}
.p-recruit .concept__txt {
  font-size: 1.6rem;
  margin-top: 4rem;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1000px) {
  .p-recruit .concept__txt {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-recruit .concept__txt {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-recruit .concept__txt {
    margin-top: 2.5rem;
    text-align: left;
  }
}
.p-recruit .concept__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6.3rem;
  margin-top: 9rem;
}
@media screen and (max-width: 767px) {
  .p-recruit .concept__items {
    gap: 2rem;
    margin-top: 3rem;
  }
}
.p-recruit .concept__items .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4rem;
}
@media screen and (max-width: 767px) {
  .p-recruit .concept__items .slick-slide {
    max-width: 16.8rem;
  }
}
.p-recruit .concept__item {
  border-radius: 10px;
}
.p-recruit .concept__item:nth-child(odd) {
  padding-top: 13rem;
}
@media screen and (max-width: 767px) {
  .p-recruit .concept__item:nth-child(odd) {
    padding-top: 6rem;
  }
}
.p-recruit .concept__item img {
  border-radius: 10px;
}
.p-recruit .about {
  padding: 0 0 9rem;
}
@media screen and (max-width: 767px) {
  .p-recruit .about {
    padding: 0;
  }
}
.p-recruit .about .c-heading-recruit {
  padding-top: 0.3rem;
}
@media screen and (max-width: 767px) {
  .p-recruit .about .c-heading-recruit {
    font-size: 2.6rem;
  }
}
.p-recruit .about .c-heading-recruit span {
  display: inline-block;
  padding-bottom: 1.6rem;
}
@media screen and (max-width: 767px) {
  .p-recruit .about .c-heading-recruit span {
    padding-bottom: 1rem;
    padding-top: 2.6rem;
  }
}
.p-recruit .about__top-img {
  max-width: 62.4rem;
  margin-inline: auto;
  margin-bottom: 8.3rem;
}
@media screen and (max-width: 767px) {
  .p-recruit .about__top-img {
    margin-bottom: 3.3rem;
  }
}
.p-recruit .about__items {
  margin-top: 6rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 767px) {
  .p-recruit .about__items {
    margin-top: 4rem;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    max-width: 45rem;
    margin-inline: auto;
  }
}
.p-recruit .about__item {
  text-align: center;
  padding: 2rem 1.5rem;
  border-left: 1px solid #C7C7C7;
  white-space: nowrap;
}
@media screen and (max-width: 1200px) {
  .p-recruit .about__item {
    white-space: normal;
  }
}
@media screen and (max-width: 767px) {
  .p-recruit .about__item {
    padding: 2rem 1.5rem 4rem;
    border-left: none;
    border-top: 1px solid #C7C7C7;
  }
}
.p-recruit .about__item:first-child {
  border-left: none;
  padding-left: 0;
}
@media screen and (max-width: 767px) {
  .p-recruit .about__item:first-child {
    padding-left: 1.5rem;
  }
}
.p-recruit .about__item-body {
  margin-top: 2.95rem;
}
@media screen and (max-width: 767px) {
  .p-recruit .about__item-body {
    margin-top: 2rem;
  }
}
.p-recruit .about__item-txt {
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .p-recruit .about__item-txt {
    line-height: 2;
  }
}
.p-recruit .about__item-read {
  font-size: 1.6rem;
  margin-top: 0.6rem;
  letter-spacing: 0.05em;
  line-height: 1.7;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-recruit .about__item-read {
    margin-top: 1.3rem;
  }
}
.p-recruit .about__item-ttl {
  font-size: 2rem;
  display: inline-block;
  margin-top: 1.48rem;
  letter-spacing: 0.05em;
  line-height: 2;
  font-weight: 700;
  color: #fff;
  background: #FFBDAF;
  padding: 0 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-recruit .about__item-ttl {
    margin-top: 0.5rem;
    line-height: 1.45;
  }
}
.p-recruit .about__message {
  margin-top: 8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #EEF1E9;
  border-radius: 10px;
  padding: 4rem;
  gap: 4.5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-recruit .about__message {
    margin-top: 1rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 2rem;
    gap: 2rem;
  }
}
.p-recruit .about__message::before {
  content: "MESSAGE";
  position: absolute;
  top: -0.3rem;
  left: 4rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-family: "Krona One", sans-serif;
  color: #389A6D;
  font-size: 1.4rem;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .p-recruit .about__message::before {
    font-size: 1rem;
    left: 2rem;
  }
}
.p-recruit .about__message-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.7rem;
}
@media screen and (max-width: 767px) {
  .p-recruit .about__message-left {
    width: 100%;
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
    gap: 2rem;
  }
}
.p-recruit .about__message-img {
  min-width: 12.9rem;
  max-width: 12.9rem;
}
@media screen and (max-width: 767px) {
  .p-recruit .about__message-img {
    min-width: 10rem;
    max-width: 10rem;
  }
}
.p-recruit .about__message-img img {
  border-radius: 10px;
}
.p-recruit .about__message-position {
  font-size: 1.2rem;
  white-space: nowrap;
}
@media screen and (max-width: 1000px) {
  .p-recruit .about__message-position {
    font-size: 1.1rem;
  }
}
@media screen and (max-width: 767px) {
  .p-recruit .about__message-position {
    font-size: 1rem;
  }
}
.p-recruit .about__message-name {
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  white-space: nowrap;
  line-height: 1.4285714286;
}
@media screen and (max-width: 1000px) {
  .p-recruit .about__message-name {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-recruit .about__message-name {
    font-size: 2.2rem;
  }
}
.p-recruit .about__message-en {
  font-size: 1rem;
  font-family: "Krona One", sans-serif;
  white-space: nowrap;
  letter-spacing: 0;
}
@media screen and (max-width: 1000px) {
  .p-recruit .about__message-en {
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 767px) {
  .p-recruit .about__message-en {
    font-size: 0.8rem;
  }
}
.p-recruit .about__message-txt {
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1000px) {
  .p-recruit .about__message-txt {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-recruit .about__message-txt {
    font-size: 1.2rem;
  }
}
.p-recruit .benefit {
  position: relative;
  background: #F5F9E7;
  position: relative;
  padding: 15.8rem 0 16rem;
}
@media screen and (max-width: 767px) {
  .p-recruit .benefit {
    overflow-x: hidden;
    padding: 8.9rem 0 9.7rem;
  }
}
.p-recruit .benefit::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  height: 10.7rem;
  background: url(../images/recruit/bg-yellow.png) repeat center/cover;
}
.p-recruit .benefit::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(-180deg);
          transform: translateX(-50%) rotate(-180deg);
  width: 100%;
  height: 10.7rem;
  background: url(../images/recruit/bg-yellow.png) repeat center/cover;
}
@media screen and (max-width: 767px) {
  .p-recruit .benefit::after {
    height: 9rem;
  }
}
.p-recruit .benefit .c-heading-recruit {
  padding-top: 0.1rem;
}
.p-recruit .benefit .c-heading-recruit span {
  display: inline-block;
  padding-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .p-recruit .benefit .c-heading-recruit span {
    padding-bottom: 1rem;
    padding-top: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .p-recruit .benefit .c-heading-recruit {
    font-size: 2.6rem;
  }
}
.p-recruit .benefit__container {
  margin-top: 11.4rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-recruit .benefit__container {
    position: relative;
    margin-top: 9.7rem;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
}
.p-recruit .benefit__main {
  padding-top: 13.8rem;
  margin-inline: auto;
  width: 66.3rem;
  height: 66.3rem;
  border-radius: 50%;
  border: 3px solid #389A6D;
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(to bottom, #fff, rgba(255, 255, 255, 0));
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-recruit .benefit__main {
    padding-top: 6rem;
    width: 33.5rem;
    height: 33.5rem;
  }
}
.p-recruit .benefit__main::before {
  content: "";
  position: absolute;
  top: -6rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 26.6rem;
  height: 16.4rem;
  background: url(../images/recruit/benefit.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .p-recruit .benefit__main::before {
    width: 15.5rem;
    height: 9.6rem;
  }
}
.p-recruit .benefit__main-ttl {
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  display: inline-block;
  background: #57B38A;
  color: #fff;
  border-radius: 20px;
  padding: 0.3rem 3rem;
}
@media screen and (max-width: 1000px) {
  .p-recruit .benefit__main-ttl {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-recruit .benefit__main-ttl {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-recruit .benefit__main-ttl {
    padding: 0.2rem 3rem;
    line-height: 1.4285714286;
  }
}
.p-recruit .benefit__main-read {
  font-size: 1.9rem;
  margin-top: 1.5rem;
  letter-spacing: 0.05em;
  line-height: 2;
}
@media screen and (max-width: 1000px) {
  .p-recruit .benefit__main-read {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-recruit .benefit__main-read {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-recruit .benefit__main-read {
    margin-top: 1rem;
  }
}
.p-recruit .benefit__items {
  margin-top: -39rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-recruit .benefit__items {
    position: absolute;
    bottom: 25%;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    margin-top: -15rem;
  }
}
.p-recruit .benefit__item {
  padding-top: 4rem;
  min-width: 36rem;
  max-width: 36rem;
  min-height: 36rem;
  max-height: 36rem;
  background: #fff;
  border: 3px solid #8EB342;
  border-radius: 50%;
}
@media screen and (max-width: 1000px) {
  .p-recruit .benefit__item {
    min-width: 34rem;
    max-width: 34rem;
    min-height: 34rem;
    max-height: 34rem;
  }
}
@media screen and (max-width: 767px) {
  .p-recruit .benefit__item {
    padding-top: 2rem;
    min-width: 10rem;
    min-height: 10rem;
    max-width: 10rem;
    max-height: 10rem;
    position: absolute;
  }
}
.p-recruit .benefit__item:nth-child(2) {
  margin-top: 9.5rem;
  margin-left: -6rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-recruit .benefit__item:nth-child(2) {
    margin-top: 0;
    margin-left: 0;
  }
}
.p-recruit .benefit__item:nth-child(3) {
  margin-left: -6rem;
}
@media screen and (max-width: 767px) {
  .p-recruit .benefit__item:nth-child(3) {
    margin-left: 0;
  }
}
.p-recruit .benefit__item-ttl {
  font-size: 1.4rem;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.5;
  padding: 0 2rem;
  background: #8EB342;
  border-radius: 20px;
  color: #fff;
  display: inline-block;
}
@media screen and (max-width: 1000px) {
  .p-recruit .benefit__item-ttl {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 767px) {
  .p-recruit .benefit__item-ttl {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 767px) {
  .p-recruit .benefit__item-ttl {
    padding: 1rem;
  }
}
.p-recruit .benefit__item-read {
  font-size: 2.2rem;
  margin-top: 1.2rem;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.6363636364;
  color: #8EB342;
}
@media screen and (max-width: 1000px) {
  .p-recruit .benefit__item-read {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .p-recruit .benefit__item-read {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-recruit .benefit__item-read {
    margin-top: 0;
  }
}
.p-recruit .benefit__item-txt {
  font-size: 1.5rem;
  margin-top: 1rem;
  text-align: center;
  letter-spacing: 0;
  line-height: 2;
}
@media screen and (max-width: 1000px) {
  .p-recruit .benefit__item-txt {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-recruit .benefit__item-txt {
    font-size: 1.2rem;
  }
}
.p-recruit .benefit__item-txt--small {
  font-size: 1.2rem;
  margin-top: 2rem;
  text-align: center;
  letter-spacing: 0;
  line-height: 2.5833333333;
}
@media screen and (max-width: 1000px) {
  .p-recruit .benefit__item-txt--small {
    font-size: 1.1rem;
  }
}
@media screen and (max-width: 767px) {
  .p-recruit .benefit__item-txt--small {
    font-size: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .p-recruit .benefit__item-txt--small {
    margin-top: 0.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-recruit .benefit__item {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    text-align: center;
  }
  .p-recruit .benefit__item .benefit__item-read,
  .p-recruit .benefit__item .benefit__item-txt,
  .p-recruit .benefit__item .benefit__item-txt--small {
    display: none;
  }
  .p-recruit .benefit__item.is-active {
    background: #FFF;
    opacity: 1;
    margin-top: 8rem;
    min-width: 25rem;
    min-height: 25rem;
    max-width: 25rem;
    max-height: 25rem;
    position: relative;
    z-index: 2;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .p-recruit .benefit__item.is-active .benefit__item-read,
  .p-recruit .benefit__item.is-active .benefit__item-txt,
  .p-recruit .benefit__item.is-active .benefit__item-txt--small {
    display: block;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-recruit .benefit__item.is-active .benefit__item-ttl {
    font-size: 1rem;
    padding: 0.2rem 1rem;
  }
}
.p-recruit .benefit__item--lightgreen {
  border: 3px solid #8EB342;
}
.p-recruit .benefit__item--lightgreen .benefit__item-ttl {
  background: #8EB342;
}
.p-recruit .benefit__item--lightgreen .benefit__item-read {
  color: #8EB342;
}
@media screen and (max-width: 767px) {
  .p-recruit .benefit__item--lightgreen {
    background: #8EB342;
  }
}
.p-recruit .benefit__item--green {
  border: 3px solid #70A148;
}
.p-recruit .benefit__item--green .benefit__item-ttl {
  background: #70A148;
}
.p-recruit .benefit__item--green .benefit__item-read {
  color: #70A148;
}
@media screen and (max-width: 767px) {
  .p-recruit .benefit__item--green {
    background: #70A148;
  }
}
.p-recruit .benefit__item--blue {
  border: 3px solid #84BEB9;
}
.p-recruit .benefit__item--blue .benefit__item-ttl {
  background: #84BEB9;
}
.p-recruit .benefit__item--blue .benefit__item-read {
  color: #84BEB9;
}
@media screen and (max-width: 767px) {
  .p-recruit .benefit__item--blue {
    background: #84BEB9;
  }
}
.p-recruit .benefit .benefit__items .slick-slide {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  pointer-events: none; /* 非表示のスライドをクリック不能に */
}
.p-recruit .benefit .benefit__items .slick-slide.is-center,
.p-recruit .benefit .benefit__items .slick-slide.is-side {
  opacity: 1;
  pointer-events: auto;
}
.p-recruit .benefit__ttl {
  font-size: 3.5rem;
  margin-top: 6rem;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1000px) {
  .p-recruit .benefit__ttl {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 767px) {
  .p-recruit .benefit__ttl {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-recruit .benefit__ttl {
    margin-top: 4.5rem;
  }
}
.p-recruit .benefit__items2 {
  margin-top: 3rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1.8rem 1fr 1.8rem 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}
@media screen and (max-width: 767px) {
  .p-recruit .benefit__items2 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2.5rem;
    margin-right: calc(50% - 50vw);
  }
}
.p-recruit .benefit__items2 .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4rem;
  padding-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .p-recruit .benefit__items2 .slick-track {
    gap: 3rem;
  }
}
.p-recruit .benefit__item2 {
  background: #fff;
  padding: 4rem 2rem 3.3rem;
  border-radius: 10px;
  border: 1px solid #57B38A;
  position: relative;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-recruit .benefit__item2 {
    padding: 3.5rem 2rem 2.9rem;
    height: auto;
    max-width: 26.8rem;
    min-width: 26.8rem;
  }
}
@media screen and (max-width: 767px) {
  .p-recruit .benefit .benefit__trigger2 {
    padding-top: 16rem !important;
  }
  .p-recruit .benefit .card-stack-wrapper {
    position: relative;
    height: 40.9rem;
  }
  .p-recruit .benefit .benefit__items2.card-stack {
    position: relative;
    width: 100%;
    height: 40.9rem;
  }
  .p-recruit .benefit .benefit__item2 {
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 90%;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    min-height: 40.9rem;
  }
  .p-recruit .benefit .js-card {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .p-recruit .benefit .js-card.is-active {
    background: #fff !important;
    -webkit-transform: rotate(0deg) translate(0, 0) !important;
            transform: rotate(0deg) translate(0, 0) !important;
    z-index: 99 !important;
  }
}
@media screen and (min-width: 769px) {
  .p-recruit .benefit .benefit__item2.js-card {
    position: static !important;
    -webkit-transform: none !important;
            transform: none !important;
    z-index: auto !important;
    background: #fff !important;
  }
  .p-recruit .benefit .benefit__items2.card-stack {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    position: static;
  }
}
.p-recruit .benefit__item2-head {
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-recruit .benefit__item2-head {
    position: unset;
  }
}
.p-recruit .benefit__item2-number {
  content: "";
  position: absolute;
  top: -1rem;
  left: 0;
  font-size: 2.7rem;
  font-family: "Krona One", sans-serif;
  color: #389A6D;
  letter-spacing: 0;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-recruit .benefit__item2-number {
    font-size: 2.4rem;
    top: 2.6rem;
    left: 1.5rem;
  }
}
.p-recruit .benefit__item2-img {
  max-width: 15rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-recruit .benefit__item2-img {
    max-width: 13rem;
  }
}
.p-recruit .benefit__item2-body {
  margin-top: 2.3rem;
}
@media screen and (max-width: 767px) {
  .p-recruit .benefit__item2-body {
    margin-top: 1.5rem;
  }
}
.p-recruit .benefit__item2-body-ttl {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.7777777778;
  letter-spacing: 0;
  color: #389A6D;
}
@media screen and (max-width: 1000px) {
  .p-recruit .benefit__item2-body-ttl {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 767px) {
  .p-recruit .benefit__item2-body-ttl {
    font-size: 1.6rem;
  }
}
.p-recruit .benefit__item2-list {
  margin-top: 0.5rem;
}
.p-recruit .benefit__item2-list-item {
  font-size: 1.6rem;
  padding-left: 1em;
  text-indent: -1em;
  letter-spacing: 0.05em;
  line-height: 2;
}
@media screen and (max-width: 1000px) {
  .p-recruit .benefit__item2-list-item {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-recruit .benefit__item2-list-item {
    font-size: 1.4rem;
  }
}
.p-recruit .benefit__item2-list-item span {
  font-size: 1.2rem;
  line-height: 1.6666666667;
}
@media screen and (max-width: 767px) {
  .p-recruit .benefit__item2-list-item span {
    font-size: 1.1rem;
  }
}
.p-recruit .benefit__item2-list-item:nth-child(n+2) {
  margin-top: 1.5rem;
}
.p-recruit .message {
  padding: 9rem 0 10rem;
  /* アコーディオンが開いたとき（例：.is-openクラスがついた場合） */
}
@media screen and (max-width: 767px) {
  .p-recruit .message {
    padding: 6.3rem 0 0;
  }
}
.p-recruit .message__container {
  margin-top: 5rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 6rem 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem 6rem;
}
@media screen and (max-width: 767px) {
  .p-recruit .message__container {
    margin-top: 4rem;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-recruit .message .c-heading-recruit {
    font-size: 2.6rem;
  }
}
.p-recruit .message__head-txt {
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  line-height: 1.8;
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .p-recruit .message__head-txt {
    line-height: 2;
  }
}
.p-recruit .message__head-txt span {
  display: block;
  font-size: 1rem;
}
.p-recruit .message__head-name {
  font-size: 1.4rem;
  font-family: "Krona One", sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
  margin-top: 1rem;
}
@media screen and (max-width: 1000px) {
  .p-recruit .message__head-name {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 767px) {
  .p-recruit .message__head-name {
    font-size: 1.2rem;
  }
}
.p-recruit .message__ttl {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.6;
  margin-top: 1.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px dotted #C7C7C7;
}
@media screen and (max-width: 767px) {
  .p-recruit .message__ttl {
    margin-top: 2rem;
  }
}
.p-recruit .message__ttl span {
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.8;
  display: block;
}
@media screen and (max-width: 1000px) {
  .p-recruit .message__ttl span {
    font-size: 1.1rem;
  }
}
@media screen and (max-width: 767px) {
  .p-recruit .message__ttl span {
    font-size: 1rem;
  }
}
.p-recruit .message__btn {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.5rem;
  padding: 2rem 0;
}
.p-recruit .message__btn:hover {
  cursor: pointer;
  opacity: 0.7;
}
.p-recruit .message__btn .circle {
  display: inline-block;
  background: #57B38A;
  width: 4.1rem;
  height: 4.1rem;
  border-radius: 50%;
  position: relative;
}
.p-recruit .message__btn .circle::before, .p-recruit .message__btn .circle::after {
  content: "";
  position: absolute;
  background-color: #fff;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.p-recruit .message__btn .circle::before {
  top: 50%;
  left: 25%;
  width: 50%;
  height: 2px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.p-recruit .message__btn .circle::after {
  left: 50%;
  top: 25%;
  width: 2px;
  height: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.p-recruit .message__btn.open .circle::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg); /* 縦線を消して「−」に */
}
.p-recruit .message__qa {
  display: none;
}
.p-recruit .message__qa-item {
  padding-top: 1rem;
}
@media screen and (max-width: 767px) {
  .p-recruit .message__qa-item {
    padding-top: 1.5rem;
  }
}
.p-recruit .message__qa-item:nth-child(n+2) {
  padding-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-recruit .message__qa-item:nth-child(n+2) {
    padding-top: 4.5rem;
  }
}
.p-recruit .message__qa-ttl {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.7777777778;
  color: #389A6D;
  position: relative;
  padding-left: 3rem;
}
@media screen and (max-width: 1000px) {
  .p-recruit .message__qa-ttl {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 767px) {
  .p-recruit .message__qa-ttl {
    font-size: 1.6rem;
  }
}
.p-recruit .message__qa-ttl::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 2.1rem;
  height: 1rem;
  background: url(../images/recruit/qa-icon.png) no-repeat center/contain;
}
.p-recruit .message__qa-ttl-en {
  font-size: 1.4rem;
  padding-left: 3rem;
  letter-spacing: 0.05em;
  line-height: 1.5714285714;
}
@media screen and (max-width: 1000px) {
  .p-recruit .message__qa-ttl-en {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 767px) {
  .p-recruit .message__qa-ttl-en {
    font-size: 1.2rem;
  }
}
.p-recruit .message__qa-txt {
  margin-top: 2rem;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  line-height: 2;
}
@media screen and (max-width: 1000px) {
  .p-recruit .message__qa-txt {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-recruit .message__qa-txt {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-recruit .message__qa-txt {
    margin-top: 1.5rem;
  }
}
.p-recruit .message__qa-en {
  margin-top: 1rem;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  line-height: 1.8333333333;
}

/*----------------------------
■■　事業所詳細ページ　■■
------------------------------*/
@media screen and (max-width: 767px) {
  .p-office .office__head .container {
    padding: 0 2rem;
  }
}
.p-office .office__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
}
@media screen and (max-width: 1000px) {
  .p-office .office__links {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 1.6rem 1.2rem;
  }
}
.p-office .office__link {
  border: 1px solid #389A6D;
  border-radius: 30px;
}
.p-office .office__link a {
  display: inline-block;
  color: #389A6D;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 2.1428571429;
  letter-spacing: 0;
  position: relative;
  padding: 0.6rem 3.6rem 0.6rem 1.5rem;
}
@media screen and (max-width: 1000px) {
  .p-office .office__link a {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 767px) {
  .p-office .office__link a {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 767px) {
  .p-office .office__link a {
    padding: 0.7rem 3.9rem 0.7rem 1.5rem;
    line-height: 2.1538461538;
  }
}
.p-office .office__link a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.5rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.6rem;
  height: 1.6rem;
  background: url(../images/common/arrow-down.svg) no-repeat center/contain;
}
.p-office .office__contents {
  padding-top: 5.8rem;
  padding-bottom: 8rem;
}
@media screen and (max-width: 767px) {
  .p-office .office__contents {
    padding-top: 4rem;
    padding-bottom: 2.2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-office .office__contents3 {
    padding-top: 0.8rem;
  }
}
@media screen and (max-width: 767px) {
  .p-office .office__contents3 .office__contents-items {
    margin-top: 0.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-office .office__contents5 {
    padding-top: 0.8rem;
  }
}
@media screen and (max-width: 767px) {
  .p-office .office__contents5 .office__contents-items {
    margin-top: 0.6rem;
  }
}
.p-office .office__contents-ttl.c-heading3 span {
  position: relative;
  padding-right: 9rem;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .p-office .office__contents-ttl.c-heading3 span {
    padding-right: 7rem;
    font-size: 2.4rem;
  }
}
.p-office .office__contents-ttl.c-heading3 span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 6.6rem;
  height: 9.1rem;
  background: url(../images/top/service1.png) no-repeat center/cover;
}
@media screen and (max-width: 767px) {
  .p-office .office__contents-ttl.c-heading3 span::after {
    width: 4.6rem;
    height: 6.4rem;
  }
}
.p-office .office__contents-ttl2.c-heading3 span {
  padding-right: 9rem;
}
.p-office .office__contents-ttl2.c-heading3 span::after {
  width: 9.4rem;
  height: 8.4rem;
  background: url(../images/top/service2.png) no-repeat center/cover;
}
@media screen and (max-width: 767px) {
  .p-office .office__contents-ttl2.c-heading3 span::after {
    width: 7.1rem;
    height: 6.4rem;
  }
}
.p-office .office__contents-ttl3.c-heading3 span::after {
  width: 7.9rem;
  height: 8.5rem;
  background: url(../images/top/service3.png) no-repeat center/cover;
}
@media screen and (max-width: 767px) {
  .p-office .office__contents-ttl3.c-heading3 span::after {
    width: 6rem;
    height: 6.4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-office .office__contents-ttl4.c-heading3 span {
    padding-right: 9rem;
  }
}
.p-office .office__contents-ttl4.c-heading3 span::after {
  width: 9.1rem;
  height: 7.4rem;
  background: url(../images/top/service4.png) no-repeat center/cover;
}
@media screen and (max-width: 767px) {
  .p-office .office__contents-ttl4.c-heading3 span::after {
    width: 7.9rem;
    height: 6.4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-office .office__contents-ttl5.c-heading3 span {
    padding-right: 8rem;
  }
}
.p-office .office__contents-ttl5.c-heading3 span::after {
  width: 7rem;
  height: 7.5rem;
  background: url(../images/top/service5.png) no-repeat center/cover;
}
@media screen and (max-width: 767px) {
  .p-office .office__contents-ttl5.c-heading3 span::after {
    top: 28%;
    width: 6rem;
    height: 6.4rem;
  }
}
.p-office .office__contents--green {
  background: #389A6D;
  padding-top: 6rem;
}
@media screen and (max-width: 767px) {
  .p-office .office__contents--green {
    padding-top: 0.9rem;
  }
}
.p-office .office__contents-items {
  margin-top: 2.6rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 2rem 1fr 2rem 1fr 2rem 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
@media screen and (max-width: 1000px) {
  .p-office .office__contents-items {
    gap: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .p-office .office__contents-items {
    margin-top: 1.5rem;
    -ms-grid-columns: 1fr 1.5rem 1fr;
    grid-template-columns: repeat(2, 1fr);
    -webkit-column-gap: 1.5rem;
       -moz-column-gap: 1.5rem;
            column-gap: 1.5rem;
    row-gap: 3rem;
  }
}
.p-office .office__single {
  padding-bottom: 10rem;
  overflow-x: clip;
}
@media screen and (max-width: 767px) {
  .p-office .office__single {
    overflow-x: hidden;
    margin-top: -3rem;
    padding-bottom: 6rem;
  }
}
.p-office .office__single-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 240fr 4rem 680fr;
  grid-template-columns: 240fr 680fr;
  gap: 4rem;
}
@media screen and (max-width: 1000px) {
  .p-office .office__single-container {
    display: block;
  }
}
.p-office .office__single-img img {
  border-radius: 10px;
}
.p-office .office__single-ttl {
  margin-top: 2.4rem;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.8333333333;
  letter-spacing: 0;
}
@media screen and (max-width: 1000px) {
  .p-office .office__single-ttl {
    font-size: 2.3rem;
  }
}
@media screen and (max-width: 767px) {
  .p-office .office__single-ttl {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-office .office__single-ttl {
    margin-top: 2.8rem;
    line-height: 1.5909090909;
    letter-spacing: 0.1em;
  }
}
.p-office .office__single-txt {
  margin-top: 1rem;
  font-size: 1.8rem;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1000px) {
  .p-office .office__single-txt {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 767px) {
  .p-office .office__single-txt {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-office .office__single-txt {
    margin-top: 1.6rem;
    line-height: 1.875;
  }
}
.p-office .office__single-wrap {
  margin-top: 8rem;
  border: 3px solid #389A6D;
  border-radius: 20px;
}
.p-office .office__single-wrap-ttl {
  background: #389A6D;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.05em;
  border-radius: 16px 16px 0 0;
  padding: 1.1rem 2rem 1.2rem;
  text-align: center;
}
@media screen and (max-width: 1000px) {
  .p-office .office__single-wrap-ttl {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .p-office .office__single-wrap-ttl {
    font-size: 1.6rem;
  }
}
.p-office .office__single-wrap-items {
  padding: 2.8rem 3rem 4rem;
  display: -ms-grid;
  display: grid;
  grid-auto-flow: column;
  -ms-grid-rows: 1fr 2rem 1fr 2rem 1fr;
  grid-template-rows: repeat(3, 1fr);
  -ms-grid-columns: auto 8rem auto 8rem auto;
  grid-template-columns: repeat(3, auto);
  gap: 2rem 8rem;
}
.p-office .office__single-wrap-items > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.p-office .office__single-wrap-items > *:nth-child(2) {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
}
.p-office .office__single-wrap-items > *:nth-child(3) {
  -ms-grid-row: 5;
  -ms-grid-column: 1;
}
.p-office .office__single-wrap-items > *:nth-child(4) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}
.p-office .office__single-wrap-items > *:nth-child(5) {
  -ms-grid-row: 3;
  -ms-grid-column: 3;
}
.p-office .office__single-wrap-items > *:nth-child(6) {
  -ms-grid-row: 5;
  -ms-grid-column: 3;
}
.p-office .office__single-wrap-items > *:nth-child(7) {
  -ms-grid-row: 1;
  -ms-grid-column: 5;
}
.p-office .office__single-wrap-items > *:nth-child(8) {
  -ms-grid-row: 3;
  -ms-grid-column: 5;
}
.p-office .office__single-wrap-items > *:nth-child(9) {
  -ms-grid-row: 5;
  -ms-grid-column: 5;
}
@media screen and (max-width: 767px) {
  .p-office .office__single-wrap-items {
    padding: 2.8rem 2rem 4rem;
    gap: 2rem;
    -ms-grid-rows: 1fr 2rem 1fr 2rem 1fr 2rem 1fr;
    grid-template-rows: repeat(4, 1fr);
    -ms-grid-columns: auto 2rem auto;
    grid-template-columns: repeat(2, auto);
  }
  .p-office .office__single-wrap-items > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .p-office .office__single-wrap-items > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  .p-office .office__single-wrap-items > *:nth-child(3) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .p-office .office__single-wrap-items > *:nth-child(4) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .p-office .office__single-wrap-items > *:nth-child(5) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .p-office .office__single-wrap-items > *:nth-child(6) {
    -ms-grid-row: 5;
    -ms-grid-column: 3;
  }
  .p-office .office__single-wrap-items > *:nth-child(7) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
  .p-office .office__single-wrap-items > *:nth-child(8) {
    -ms-grid-row: 7;
    -ms-grid-column: 3;
  }
}
.p-office .office__single-wrap-items2 {
  padding: 2.8rem 3rem 2.5rem;
  display: -ms-grid;
  display: grid;
  gap: 2rem 8rem;
}
.p-office .office__single-wrap-item {
  font-size: 1.8rem;
  line-height: 1.4444444444;
  letter-spacing: 0.05em;
  position: relative;
  padding-left: 1.8rem;
}
@media screen and (max-width: 1000px) {
  .p-office .office__single-wrap-item {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 767px) {
  .p-office .office__single-wrap-item {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-office .office__single-wrap-item {
    line-height: 1.5;
  }
}
.p-office .office__single-wrap-item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.6rem;
  height: 0.6rem;
  background: #EB9C3F;
  border-radius: 50%;
}
@media screen and (max-width: 1000px) {
  .p-office .office__single-wrap-item::before {
    top: 1.3rem;
  }
}
.p-office .office__single-wrap-item-txt {
  padding-left: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-office .office__single-wrap-item-txt {
    text-indent: 0;
  }
}
.p-office .office__single-wrap--houmon {
  margin-top: 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-office .office__single-wrap--houmon {
    margin-top: 3.9rem;
  }
}
.p-office .office__single-wrap--houmon .office__single-wrap-ttl {
  padding: 1rem 2rem 1rem;
}
.p-office .office__single-wrap--houmon .office__single-wrap-items {
  padding: 2.8rem 3rem 3rem;
}
@media screen and (max-width: 767px) {
  .p-office .office__single-wrap--houmon .office__single-wrap-items {
    grid-auto-flow: row;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: unset;
    grid-template-rows: unset;
    padding: 2rem 1rem 1.7rem;
    gap: 0.7rem;
  }
  .p-office .office__single-wrap--houmon .office__single-wrap-items > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
}
.p-office .office__single-wrap--kagayaki {
  margin-top: 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-office .office__single-wrap--kagayaki {
    margin-top: 3.5rem;
  }
}
.p-office .office__single-wrap--kagayaki .office__single-wrap-ttl {
  padding: 1rem 2rem 1rem;
}
@media screen and (max-width: 767px) {
  .p-office .office__single-wrap--kagayaki .office__single-wrap-ttl {
    padding: 1rem 0 1.2rem;
  }
}
.p-office .office__single-wrap--kagayaki .office__single-wrap-items {
  padding: 2.8rem 1rem 3rem 3rem;
  gap: 2rem 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-office .office__single-wrap--kagayaki .office__single-wrap-items {
    padding: 2rem 1rem 2.3rem 1rem;
    gap: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-office .office__single-wrap--zaitaku {
    margin-top: 7rem;
  }
}
@media screen and (max-width: 767px) {
  .p-office .office__single-wrap--zaitaku .office__single-wrap-items2 {
    padding: 1.6rem 0.8rem;
    gap: 0.8rem;
  }
}
.p-office .office__single-wrap--zaitaku .office__single-wrap-item.office__single-wrap-item-txt {
  margin-top: 0.8rem;
  padding-left: 0.7rem;
  text-indent: 0;
}
.p-office .office__single-wrap--zaitaku .office__single-wrap-item.office__single-wrap-item-txt::before {
  display: none;
}
.p-office .office__single-cta {
  margin-top: 4rem;
  text-align: center;
}
.p-office .office__single-cta-btn {
  text-align: left;
  display: inline-block;
  background: #389A6D;
  color: #fff;
  border-radius: 10px;
  padding: 1.6rem 10rem 1.6rem 2rem;
  position: relative;
  max-width: 33.5rem;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.05em;
  -webkit-box-shadow: 0 5px 0 #389A6D;
          box-shadow: 0 5px 0 #389A6D;
}
@media screen and (max-width: 767px) {
  .p-office .office__single-cta-btn {
    margin-inline: auto;
  }
}
.p-office .office__single-cta-btn span {
  font-size: 2rem;
  font-family: "Krona One", sans-serif;
  line-height: 1;
  letter-spacing: 0;
  padding-left: 3rem;
  white-space: nowrap;
  position: relative;
}
.p-office .office__single-cta-btn span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 2.3rem;
  height: 2.3rem;
  background: url(../images/common/sidebar-tel.svg) no-repeat center/contain;
}
.p-office .office__single-cta-btn p {
  font-size: 1.2rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-office .office__single-cta-btn::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 1.5rem;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 3.4rem;
    height: 3.4rem;
    background: url(../images/common/sidebar-tel-arrow.svg) no-repeat center/contain;
  }
}
.p-office .office__single-cta--zaitaku .office__single-cta-btn {
  -webkit-box-shadow: 0 5px 0 #42896A;
          box-shadow: 0 5px 0 #42896A;
}
.p-office .office__single-profile {
  margin-top: 7.5rem;
  background: #EEF1EA;
  border-radius: 20px;
  padding: 3.6rem 4rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-office .office__single-profile {
    margin-top: 4rem;
    padding: 2.5rem 2rem 4rem;
  }
}
.p-office .office__single-profile::before {
  content: "";
  position: absolute;
  bottom: -8rem;
  right: -14rem;
  width: 22.7rem;
  height: 12.5rem;
  background: url(../images/office/kumo1.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .p-office .office__single-profile::before {
    bottom: -5%;
    right: -3%;
    width: 12.3rem;
    height: 6.6rem;
  }
}
.p-office .office__single-profile-table dl {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 11.2rem 4rem 1fr;
  grid-template-columns: 11.2rem 1fr;
  gap: 4rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid #389A6D;
}
@media screen and (max-width: 767px) {
  .p-office .office__single-profile-table dl {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 0.4rem;
    padding: 0.9rem 0 1rem;
  }
}
.p-office .office__single-profile-table dl.border-none {
  border-bottom: none;
  padding-bottom: 0;
}
.p-office .office__single-profile-table dl:first-child {
  padding-top: 0;
}
.p-office .office__single-profile-table dt {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1000px) {
  .p-office .office__single-profile-table dt {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-office .office__single-profile-table dt {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-office .office__single-profile-table dt {
    line-height: 1.4;
  }
}
.p-office .office__single-profile-table dd {
  font-size: 1.8rem;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1000px) {
  .p-office .office__single-profile-table dd {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 767px) {
  .p-office .office__single-profile-table dd {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-office .office__single-profile-table dd {
    line-height: 1.875;
  }
}
.p-office .office__single-profile-table dd p {
  margin-top: 2rem;
  font-size: 1.5rem;
}
@media screen and (max-width: 1000px) {
  .p-office .office__single-profile-table dd p {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-office .office__single-profile-table dd p {
    font-size: 1.3rem;
  }
}
.p-office .office__single-profile-table dd p.small {
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .p-office .office__single-profile-table dd p.small {
    margin-bottom: 1rem;
  }
}
.p-office .office__single-profile-day {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: #fff;
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .p-office .office__single-profile-day {
    margin-top: 1.2rem;
  }
}
.p-office .office__single-profile-day dl {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 0 1fr 0 1fr 0 1fr 0 1fr 0 1fr 0 1fr;
  grid-template-columns: repeat(7, 1fr);
  border: none;
  gap: 0;
  padding: 1.2rem 1rem;
}
@media screen and (max-width: 767px) {
  .p-office .office__single-profile-day dl {
    padding: 0.7rem 1rem;
  }
}
.p-office .office__single-profile-day dl:first-child {
  padding: 1.2rem 1rem;
  border-radius: 10px 10px 0 0;
  background: #389A6D;
}
@media screen and (max-width: 767px) {
  .p-office .office__single-profile-day dl:first-child {
    padding: 0.7rem 1rem;
  }
}
.p-office .office__single-profile-day dt {
  padding: 0 1.8rem;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.8666666667;
  color: #fff;
  border-right: 1px solid #B5CEC3;
}
@media screen and (max-width: 767px) {
  .p-office .office__single-profile-day dt {
    padding: 0 1.1rem;
  }
}
.p-office .office__single-profile-day dt:last-child {
  border-right: none;
}
.p-office .office__single-profile-day dd {
  padding: 0 1.8rem;
  font-size: 1.3rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-office .office__single-profile-day dd {
    padding: 0 1.1rem;
  }
}
.p-office .office__single-profile-day dd span {
  color: #EB9C3F;
}
.p-office .office__single-profile-day-txt {
  margin-top: 0.5rem;
  font-size: 1.5rem;
  line-height: 1.8666666667;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-office .office__single-profile-day-txt {
    margin-top: 0;
    font-size: 1.4rem;
  }
}
.p-office .office__single-profile-btn {
  margin-top: 4rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-office .office__single-profile-btn {
    margin-top: 2rem;
  }
}
.p-office .office__single-profile-btn--kagayaki {
  text-align: left;
  margin-top: 2.4rem;
}
@media screen and (max-width: 767px) {
  .p-office .office__single-profile-btn--kagayaki {
    margin-top: 1.7rem;
  }
}
.p-office .office__single-profile-btn a {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3333333333;
  letter-spacing: 0;
  display: inline-block;
  background: #389A6D;
  color: #fff;
  border-radius: 10px;
  text-align: left;
  padding: 2rem 2rem 2rem 6.5rem;
  position: relative;
  min-width: 31rem;
}
@media screen and (max-width: 767px) {
  .p-office .office__single-profile-btn a {
    min-width: 29.5rem;
    padding: 2rem 1.7rem 2rem 5.3rem;
  }
}
.p-office .office__single-profile-btn a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 2rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 4.6rem;
  height: 4.2rem;
  background: url(../images/common/pdf.svg) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .p-office .office__single-profile-btn a::before {
    left: 1.7rem;
  }
}
.p-office .office__single-profile-txt {
  font-size: 1.5rem;
  line-height: 1.8666666667;
  letter-spacing: 0.05em;
  display: block;
  margin-top: 2.7rem;
}
@media screen and (max-width: 767px) {
  .p-office .office__single-profile-txt {
    margin-top: 1rem;
    font-size: 1.4rem;
    letter-spacing: 0;
  }
}
.p-office .office__single-houmon .office__single-wrap-ttl {
  font-size: 1.8rem;
  padding: 1rem 2rem;
}
.p-office .office__single-houmon .office__single-wrap-items {
  padding: 2.8rem 3rem 2.7rem;
}
.p-office .office__single-houmon-items {
  margin-top: 9.6rem;
}
@media screen and (max-width: 767px) {
  .p-office .office__single-houmon-items {
    margin-top: 6.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-office .office__single-houmon-item {
    display: -ms-grid;
    display: grid;
  }
}
.p-office .office__single-houmon-item .office__single-wrap {
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .p-office .office__single-houmon-item .office__single-wrap {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
    margin-top: 1.7rem;
  }
}
@media screen and (max-width: 767px) {
  .p-office .office__single-houmon-item .office__single-wrap-ttl {
    font-size: 1.6rem;
    padding: 1rem 2rem;
  }
}
.p-office .office__single-houmon-item .office__single-wrap-items {
  -ms-grid-rows: (1fr)[2];
  grid-template-rows: repeat(2, 1fr);
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
}
.p-office .office__single-houmon-item .office__single-wrap-items > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.p-office .office__single-houmon-item .office__single-wrap-items > *:nth-child(2) {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
}
@media screen and (max-width: 767px) {
  .p-office .office__single-houmon-item .office__single-wrap-items {
    grid-auto-flow: row;
    -ms-grid-rows: auto;
    grid-template-rows: auto;
    padding: 1.9rem 1rem;
    gap: 0.7rem;
  }
}
.p-office .office__single-houmon-item:nth-child(n+2) {
  margin-top: 7.7rem;
}
@media screen and (max-width: 767px) {
  .p-office .office__single-houmon-item:nth-child(n+2) {
    margin-top: 4rem;
  }
}
.p-office .office__single-houmon-ttl {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0.05em;
  max-width: 44rem;
  padding-left: 2rem;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .p-office .office__single-houmon-ttl {
    font-size: 1.9rem;
  }
}
@media screen and (max-width: 767px) {
  .p-office .office__single-houmon-ttl {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .p-office .office__single-houmon-ttl {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-top: 1.4rem;
    padding-left: 0;
  }
}
.p-office .office__single-houmon-ttl::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  background: #389A6D;
}
@media screen and (max-width: 767px) {
  .p-office .office__single-houmon-ttl::before {
    display: none;
  }
}
.p-office .office__single-houmon-ttl::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0.55rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #fff;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-office .office__single-houmon-ttl::after {
    display: none;
  }
}
.p-office .office__single-houmon-wrap {
  margin-top: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4rem;
}
@media screen and (max-width: 767px) {
  .p-office .office__single-houmon-wrap {
    display: contents;
  }
}
.p-office .office__single-houmon-img {
  width: 47.0588235294%;
}
@media screen and (max-width: 767px) {
  .p-office .office__single-houmon-img {
    width: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.p-office .office__single-houmon-img img {
  border-radius: 10px;
}
.p-office .office__single-houmon-txt {
  width: 47.0588235294%;
  font-size: 1.8rem;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1000px) {
  .p-office .office__single-houmon-txt {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 767px) {
  .p-office .office__single-houmon-txt {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-office .office__single-houmon-txt {
    width: 100%;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    line-height: 1.875;
  }
}
.p-office .office__single-kyotaku-items {
  margin-top: 9rem;
}
@media screen and (max-width: 767px) {
  .p-office .office__single-kyotaku-items {
    margin-top: 4.3rem;
  }
}
@media screen and (max-width: 767px) {
  .p-office .office__single-kyotaku-item {
    display: -ms-grid;
    display: grid;
  }
}
.p-office .office__single-kyotaku-item:nth-child(n+2) {
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .p-office .office__single-kyotaku-item:nth-child(n+2) {
    margin-top: 2rem;
  }
}
.p-office .office__single-kyotaku-item-ttl {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0.05em;
  padding-left: 2.2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #389A6D;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .p-office .office__single-kyotaku-item-ttl {
    font-size: 1.9rem;
  }
}
@media screen and (max-width: 767px) {
  .p-office .office__single-kyotaku-item-ttl {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .p-office .office__single-kyotaku-item-ttl {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    padding: 1.2rem 0;
    padding-left: 2rem;
  }
}
.p-office .office__single-kyotaku-item-ttl::before {
  content: "";
  position: absolute;
  top: 36%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  background: #389A6D;
}
@media screen and (max-width: 767px) {
  .p-office .office__single-kyotaku-item-ttl::before {
    top: 50%;
  }
}
.p-office .office__single-kyotaku-item-ttl::after {
  content: "";
  position: absolute;
  top: 36%;
  left: 0.55rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #fff;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-office .office__single-kyotaku-item-ttl::after {
    top: 50%;
  }
}
.p-office .office__single-kyotaku-item-img {
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .p-office .office__single-kyotaku-item-img {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.p-office .office__single-kyotaku-item-img img {
  border-radius: 10px;
}
.p-office .office__single-kyotaku-item-txt {
  display: block;
  margin-top: 1.5rem;
  font-size: 1.8rem;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1000px) {
  .p-office .office__single-kyotaku-item-txt {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 767px) {
  .p-office .office__single-kyotaku-item-txt {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-office .office__single-kyotaku-item-txt {
    margin-top: 0.6rem;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    line-height: 1.875;
  }
}
.p-office .office__single-recommendation {
  margin-top: 6.4rem;
  background: #389A6D;
  padding: 6.2rem 0 7.4rem;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .p-office .office__single-recommendation {
    padding: 3.5rem 2rem 3.7rem 0;
    margin-right: calc(50% - 50vw);
  }
}
@media screen and (max-width: 767px) {
  .p-office .office__single-recommendation {
    margin-top: 3.4rem;
    padding: 3.5rem 2rem 3.7rem 0;
  }
}
.p-office .office__single-recommendation::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translateX(-11%);
          transform: translateX(-11%);
  width: 128vw;
  height: 100%;
  background: #389A6D;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  z-index: -1;
}
@media screen and (max-width: 1000px) {
  .p-office .office__single-recommendation::before {
    width: 100vw;
  }
}
.p-office .office__single-recommendation-items {
  margin-top: 5.6rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 4rem 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 7.3rem 4rem;
}
@media screen and (max-width: 767px) {
  .p-office .office__single-recommendation-items {
    margin-top: 3.6rem;
    gap: 3.5rem 2rem;
  }
}
.p-office .office__single-recommendation-item {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0.05em;
  background: #FAF8F4;
  border-radius: 10px;
  padding: 0 4rem 3.3rem;
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: subgrid;
  grid-template-rows: subgrid;
  -ms-grid-row-span: 2;
  grid-row: span 2;
  gap: 2rem;
}
@media screen and (max-width: 1000px) {
  .p-office .office__single-recommendation-item {
    font-size: 1.9rem;
  }
}
@media screen and (max-width: 767px) {
  .p-office .office__single-recommendation-item {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .p-office .office__single-recommendation-item {
    display: block;
    padding: 0 1rem 1rem;
  }
}
.p-office .office__single-recommendation-item-txt {
  font-size: 2rem;
  place-content: center;
}
@media screen and (max-width: 1000px) {
  .p-office .office__single-recommendation-item-txt {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-office .office__single-recommendation-item-txt {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-office .office__single-recommendation-item-txt {
    margin-top: 1.5rem;
  }
}
.p-office .office__single-recommendation-item-img {
  margin-top: -0.7rem;
  max-width: 21.2rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-office .office__single-recommendation-item-img {
    max-width: 10.4rem;
  }
}
.p-office .office__single-recommendation-item-img2 {
  max-width: 16.2rem;
}
@media screen and (max-width: 767px) {
  .p-office .office__single-recommendation-item-img2 {
    max-width: 7.9rem;
  }
}
.p-office .office__single-recommendation-item-img3 {
  max-width: 25.9rem;
}
@media screen and (max-width: 767px) {
  .p-office .office__single-recommendation-item-img3 {
    max-width: 12.7rem;
  }
}
.p-office .office__single-recommendation-item-img4 {
  max-width: 22.7rem;
}
@media screen and (max-width: 767px) {
  .p-office .office__single-recommendation-item-img4 {
    max-width: 11.2rem;
  }
}
.p-office .office__single-cards {
  margin-top: 8.2rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 4rem 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 4.3rem 4rem;
}
@media screen and (max-width: 767px) {
  .p-office .office__single-cards {
    margin-top: 6.3rem;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 3.7rem;
  }
}
.p-office .office__single-cards--kagayaki {
  margin-top: 6.4rem;
}
@media screen and (max-width: 767px) {
  .p-office .office__single-cards--kagayaki {
    margin-top: 4.4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-office .office__single-cards--zaitaku {
    margin-top: 4rem;
  }
}
.p-office .office__single-card-img img {
  border-radius: 10px;
}
.p-office .office__single-card-ttl {
  margin-top: 1.6rem;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.75;
}
@media screen and (max-width: 1000px) {
  .p-office .office__single-card-ttl {
    font-size: 1.9rem;
  }
}
@media screen and (max-width: 767px) {
  .p-office .office__single-card-ttl {
    font-size: 1.8rem;
  }
}
.p-office .office__single-card-txt {
  margin-top: 0.1rem;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  line-height: 2;
}
@media screen and (max-width: 1000px) {
  .p-office .office__single-card-txt {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 767px) {
  .p-office .office__single-card-txt {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-office .office__single-card-txt {
    line-height: 1.875;
  }
}
.p-office .office__single-news {
  padding-top: 15.4rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-office .office__single-news {
    margin-top: 5rem;
    padding-top: 6rem;
  }
}
.p-office .office__single-news::before {
  content: "";
  position: absolute;
  top: 34%;
  left: 0;
  -webkit-transform: translateY(-50%) translateX(-9%);
          transform: translateY(-50%) translateX(-9%);
  margin-left: calc(50% - 50vw);
  width: 105vw;
  height: auto;
  aspect-ratio: 1400/343;
  z-index: -1;
  background: url(../images/common/bg_green.png) no-repeat center/cover;
}
@media screen and (max-width: 1500px) {
  .p-office .office__single-news::before {
    -webkit-transform: translateY(-50%) translateX(-11%);
            transform: translateY(-50%) translateX(-11%);
  }
}
@media screen and (max-width: 1300px) {
  .p-office .office__single-news::before {
    -webkit-transform: translateY(-50%) translateX(-15%);
            transform: translateY(-50%) translateX(-15%);
  }
}
@media screen and (max-width: 1000px) {
  .p-office .office__single-news::before {
    aspect-ratio: 1000/350;
    -webkit-transform: translateY(-50%) translateX(0);
            transform: translateY(-50%) translateX(0);
  }
}
@media screen and (max-width: 767px) {
  .p-office .office__single-news::before {
    background: url(../images/common/bg_green-sp.png) no-repeat center/cover;
    aspect-ratio: 375/180;
  }
}
@media screen and (max-width: 600px) {
  .p-office .office__single-news::before {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    top: 0;
    aspect-ratio: 375/227;
  }
}
.p-office .office__single-news::after {
  content: "";
  position: absolute;
  top: 10rem;
  left: -7rem;
  margin-left: calc(50% - 50vw);
  width: 23.4rem;
  height: 13.1rem;
  z-index: 1;
  background: url(../images/office/kumo2.png) no-repeat center/cover;
}
@media screen and (max-width: 767px) {
  .p-office .office__single-news::after {
    top: 3rem;
    width: 6.3rem;
    height: 3.9rem;
  }
}
.p-office .office__single-news-items {
  margin-top: 8rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 2rem 1fr 2rem 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-office .office__single-news-items {
    margin-top: 6rem;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
.p-office .office__single-news-items::after {
  content: "";
  position: absolute;
  bottom: -23rem;
  right: -25rem;
  width: 38.2rem;
  height: 19.3rem;
  z-index: 1;
  background: url(../images/office/kumo3.png) no-repeat center/cover;
}
@media screen and (max-width: 767px) {
  .p-office .office__single-news-items::after {
    z-index: unset;
    bottom: -18rem;
    right: -22rem;
  }
}
.p-office .office__single-news-items .news__meta {
  margin-top: 1.8rem;
}
.p-office .office__single-news-items .news__date {
  font-size: 1.2rem;
  font-family: "Krona One", sans-serif;
  line-height: 1.3;
  letter-spacing: 0;
}
@media screen and (max-width: 1000px) {
  .p-office .office__single-news-items .news__date {
    font-size: 1.1rem;
  }
}
@media screen and (max-width: 767px) {
  .p-office .office__single-news-items .news__date {
    font-size: 1rem;
  }
}
.p-office .office__single-news-items .news__label {
  display: inline-block;
  font-size: 1.2rem;
  line-height: 1.4166666667;
  letter-spacing: 0.05em;
  border: 1px solid #389A6D;
  border-radius: 10px;
  color: #389A6D;
  padding: 0.2rem 1rem;
}
@media screen and (max-width: 1000px) {
  .p-office .office__single-news-items .news__label {
    font-size: 1.1rem;
  }
}
@media screen and (max-width: 767px) {
  .p-office .office__single-news-items .news__label {
    font-size: 1rem;
  }
}
.p-office .office__single-news-items .news__ttl {
  margin-top: 0.8rem;
  font-size: 1.8rem;
  line-height: 1.4444444444;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1000px) {
  .p-office .office__single-news-items .news__ttl {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-office .office__single-news-items .news__ttl {
    font-size: 1.4rem;
  }
}
.p-office .office__single-news-items .news__new {
  color: #fff;
}
.p-office .office__single-news-items .news__no-item {
  grid-column: 1/-1;
  text-align: center;
  padding: 5rem 0;
}
@media screen and (max-width: 767px) {
  .p-office .office__single-news-items .news__no-item {
    padding: 7rem 0 5rem;
  }
}
@media screen and (max-width: 600px) {
  .p-office .office__single-news-items .news__no-item {
    padding: 6rem 0 3rem;
  }
}
@media screen and (max-width: 500px) {
  .p-office .office__single-news-items .news__no-item {
    padding: 3rem 0 3rem;
  }
}
@media screen and (max-width: 430px) {
  .p-office .office__single-news-items .news__no-item {
    padding: 0 0 3rem;
  }
}
.p-office .office__single-news-btn {
  margin-top: 5rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-office .office__single-news-btn {
    margin-top: 4rem;
  }
}
.p-office .office__single-gallery {
  padding-top: 12.4rem;
  padding-bottom: 6.5rem;
}
@media screen and (max-width: 767px) {
  .p-office .office__single-gallery {
    padding-top: 8.5rem;
    padding-bottom: 2.7rem;
  }
}
.p-office .office__single-gallery-items {
  margin-top: 4rem;
  max-width: 68rem;
  margin-inline: auto;
  position: relative;
}
@media screen and (max-width: 680px) {
  .p-office .office__single-gallery-items {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
}
.p-office .office__single-gallery-items::before {
  content: "";
  position: absolute;
  bottom: -2rem;
  left: 0;
  width: 9.7rem;
  height: 7.5rem;
  z-index: 1;
  background: url(../images/office/gallery1.png) no-repeat center/contain;
}
.p-office .office__single-gallery-items::after {
  content: "";
  position: absolute;
  bottom: -2rem;
  right: 0;
  width: 7.2rem;
  height: 9.5rem;
  z-index: 1;
  background: url(../images/office/gallery2.png) no-repeat center/contain;
}
@media screen and (max-width: 680px) {
  .p-office .office__single-gallery-items::after {
    right: 2rem;
  }
}
.p-office .office__single-gallery-item {
  position: relative;
}
.p-office .office__single-gallery-item img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 680px) {
  .p-office .office__single-gallery-item img {
    aspect-ratio: 375/400;
  }
}
.p-office .office__single-gallery .slick-dots {
  bottom: -9rem;
}
@media screen and (max-width: 1000px) {
  .p-office .office__single-gallery .slick-dots {
    bottom: -6.6rem;
  }
}
.p-office .office__single-gallery .slick-next {
  top: unset;
  bottom: 0;
}
.p-office .office__single-gallery .slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 5rem;
  padding: 0;
  list-style: none;
}
.p-office .office__single-gallery .slick-dots li {
  width: 0.8rem;
}
.p-office .office__single-gallery .slick-dots li button {
  width: 8px;
  height: 8px;
  background-color: #fff;
  border: 1px solid #389A6D;
  border-radius: 50%;
  padding: 0;
  text-indent: -9999px; /* 数字非表示 */
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.p-office .office__single-gallery .slick-dots li.slick-active button {
  background-color: #389A6D;
}
.p-office .office__single-gallery .slick-next {
  position: absolute;
  top: unset;
  bottom: -32%;
  right: 32%;
  width: 5rem;
  height: 5rem;
  z-index: 1;
}
@media screen and (max-width: 1000px) {
  .p-office .office__single-gallery .slick-next {
    bottom: -23%;
    right: 23%;
    width: 4rem;
    height: 4rem;
  }
}
@media screen and (max-width: 680px) {
  .p-office .office__single-gallery .slick-next {
    bottom: -9rem;
  }
}
.p-office .office__single-gallery .slick-next:before {
  display: inline-block;
  color: unset;
  opacity: 1;
  width: 100%;
  height: 100%;
  background: url(../images/common/next.png) no-repeat center/cover;
}
.p-office .office__single-gallery .slick-prev {
  top: unset;
  bottom: -32%;
  left: 32%;
  width: 5rem;
  height: 5rem;
  z-index: 1;
}
@media screen and (max-width: 1000px) {
  .p-office .office__single-gallery .slick-prev {
    bottom: -23%;
    left: 23%;
    width: 4rem;
    height: 4rem;
  }
}
@media screen and (max-width: 680px) {
  .p-office .office__single-gallery .slick-prev {
    bottom: -9rem;
  }
}
.p-office .office__single-gallery .slick-prev:before {
  display: inline-block;
  color: unset;
  opacity: 1;
  width: 100%;
  height: 100%;
  background: url(../images/common/prev.png) no-repeat center/cover;
}
.p-office .office__single-day {
  margin-top: 15rem;
  background: #389A6D;
  padding: 6rem 0 6.7rem;
  position: relative;
  margin-top: 7rem;
  padding-bottom: 6rem;
}
@media screen and (max-width: 1000px) {
  .p-office .office__single-day {
    margin-right: calc(50% - 50vw);
  }
}
@media screen and (max-width: 767px) {
  .p-office .office__single-day {
    padding: 2.7rem 2rem 3.5rem;
    margin-left: calc(50% - 50vw);
  }
}
@media screen and (max-width: 767px) and (orientation: landscape) {
  .p-office .office__single-day {
    margin-left: unset;
    padding-left: 2rem;
  }
}
.p-office .office__single-day::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translateX(-11%);
          transform: translateX(-11%);
  width: 100vw;
  height: 100%;
  background: #389A6D;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  z-index: -1;
}
.p-office .office__single-day::after {
  content: "";
  position: absolute;
  bottom: -3rem;
  right: -7rem;
  width: 11rem;
  height: 7.9rem;
  background: url(../images/office/day.png) no-repeat center/contain;
}
@media screen and (max-width: 1150px) {
  .p-office .office__single-day::after {
    right: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-office .office__single-day::after {
    bottom: -2rem;
    right: 2rem;
  }
}
.p-office .office__single-day-read {
  margin-top: 2rem;
  font-size: 1.8rem;
  line-height: 2;
  letter-spacing: 0.05em;
  color: #fff;
}
@media screen and (max-width: 1000px) {
  .p-office .office__single-day-read {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 767px) {
  .p-office .office__single-day-read {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-office .office__single-day-read {
    margin-top: 1.7rem;
  }
}
.p-office .office__single-day-items {
  margin-top: 4.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-height: 23rem;
  gap: 2.3rem 4rem;
}
@media screen and (max-width: 767px) {
  .p-office .office__single-day-items {
    padding-left: 2rem;
    margin-top: 3rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-height: unset;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-office .office__single-day-items--shortstay {
  max-height: 35.1rem;
  margin-top: 2.3rem;
  gap: 2.5rem 0;
}
@media screen and (max-width: 767px) {
  .p-office .office__single-day-items--shortstay {
    max-height: unset;
  }
}
.p-office .office__single-day-items--dayservice {
  max-height: 22rem;
  margin-top: 2.3rem;
  gap: 2.5rem 5rem;
}
@media screen and (max-width: 767px) {
  .p-office .office__single-day-items--dayservice {
    max-height: unset;
  }
}
.p-office .office__single-day-items--kagayaki {
  max-height: 40.5rem;
  margin-top: 2.5rem;
  gap: 2.3rem 0;
}
@media screen and (max-width: 767px) {
  .p-office .office__single-day-items--kagayaki {
    max-height: unset;
    margin-top: 2.5rem;
    padding-left: 1rem;
  }
}
.p-office .office__single-day-items--unit {
  gap: 2.3rem 4rem;
}
.p-office .office__single-day-item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 8rem 2rem 1fr;
  grid-template-columns: 8rem 1fr;
  gap: 2rem;
}
.p-office .office__single-day-time {
  background: #fff;
  color: #389A6D;
  border-radius: 19px;
  text-align: center;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  font-size: 1.4rem;
  font-family: "Krona One", sans-serif;
  position: relative;
}
.p-office .office__single-day-time::before {
  content: "";
  position: absolute;
  bottom: -5.3rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 1px;
  height: 6rem;
  border-left: 5px dotted #fff;
}
@media screen and (max-width: 767px) {
  .p-office .office__single-day-time::before {
    bottom: -5.5rem;
    height: 5.5rem;
    border-left: 3px dotted #fff;
  }
}
.p-office .office__single-day-time.dot-long::before {
  content: "";
  position: absolute;
  bottom: -12rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 5px;
  height: 12rem;
  border-left: 5px dotted #fff;
}
@media screen and (max-width: 767px) {
  .p-office .office__single-day-time.dot-long::before {
    width: 3px;
    border-left: 3px dotted #fff;
    bottom: -12rem;
    height: 12rem;
  }
}
.p-office .office__single-day-time.dot-none::before {
  display: none;
}
.p-office .office__single-day-time.dot-none-pc::before {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-office .office__single-day-time.dot-none-pc::before {
    display: block;
  }
}
.p-office .office__single-day-txt {
  font-size: 1.8rem;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.7777777778;
}
.p-office .office__single-day--kagayaki {
  margin-top: 7rem;
  padding: 6rem 0 6.7rem;
}
@media screen and (max-width: 767px) {
  .p-office .office__single-day--kagayaki {
    padding: 2.6rem 2rem 3.8rem;
  }
}
@media screen and (max-width: 767px) {
  .p-office .office__single-day--houmon {
    margin-top: 13rem;
    padding-bottom: 8.1rem;
  }
}
.p-office .office__single-day--houmon .office__single-day-items {
  margin-top: 2.8rem;
  row-gap: 4rem;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
@media screen and (max-width: 767px) {
  .p-office .office__single-day--houmon .office__single-day-items {
    margin-top: 2.5rem;
  }
}
.p-office .office__single-day--houmon .office__single-day-item:first-child .office__single-day-time {
  background: transparent;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-office .office__single-day--houmon .office__single-day-item:first-child .office__single-day-time::before {
    bottom: -4rem;
    height: 6rem;
  }
}
.p-office .office__single-day--houmon .office__single-day-item:first-child .office__single-day-time::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 2.4rem;
  height: 2.4rem;
  background: #fff;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .p-office .office__single-day--houmon .office__single-day-item:first-child .office__single-day-time::after {
    top: 30%;
    width: 1.8rem;
    height: 1.8rem;
  }
}
.p-office .office__single-day--houmon .office__single-day-time {
  height: auto;
}
.p-office .office__single-day--houmon .office__single-day-time.dot-none {
  padding-top: 3.5rem;
  border-radius: 10px;
}
.p-office .office__single-day--houmon .office__single-day-time.dot-none span {
  font-size: 1.3rem;
  font-weight: 700;
}
.p-office .office__single-day--houmon .office__single-day-txt {
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-office .office__single-day--houmon .office__single-day-txt {
    line-height: 1.3;
  }
}
.p-office .office__single-year {
  margin-top: 8rem;
  padding-bottom: 2.2rem;
  margin-bottom: 8.8rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-office .office__single-year {
    margin-top: 6rem;
  }
}
.p-office .office__single-year::before {
  content: "";
  position: absolute;
  bottom: -18rem;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 8.2rem;
  height: 11.3rem;
  background: url(../images/office/year1.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .p-office .office__single-year::before {
    bottom: -16rem;
  }
}
.p-office .office__single-year::after {
  content: "";
  position: absolute;
  bottom: -18rem;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 15.7rem;
  height: 11rem;
  background: url(../images/office/year2.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .p-office .office__single-year::after {
    background: url(../images/office/year2-sp.png) no-repeat center/contain;
    bottom: -17rem;
    right: -1.8rem;
    width: 11.7rem;
  }
}
.p-office .office__single-year-read {
  margin-top: 2.3rem;
  font-size: 1.8rem;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1000px) {
  .p-office .office__single-year-read {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 767px) {
  .p-office .office__single-year-read {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-office .office__single-year-read {
    margin-top: 1.5rem;
  }
}
.p-office .office__single-year-items {
  margin-top: 2.3rem;
  display: -ms-grid;
  display: grid;
  grid-auto-flow: column;
  -ms-grid-rows: auto 2.8rem auto 2.8rem auto 2.8rem auto 2.8rem auto;
  grid-template-rows: repeat(5, auto);
  -ms-grid-columns: auto 4rem auto;
  grid-template-columns: repeat(2, auto);
  gap: 2.8rem 4rem;
}
.p-office .office__single-year-items > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.p-office .office__single-year-items > *:nth-child(2) {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
}
.p-office .office__single-year-items > *:nth-child(3) {
  -ms-grid-row: 5;
  -ms-grid-column: 1;
}
.p-office .office__single-year-items > *:nth-child(4) {
  -ms-grid-row: 7;
  -ms-grid-column: 1;
}
.p-office .office__single-year-items > *:nth-child(5) {
  -ms-grid-row: 9;
  -ms-grid-column: 1;
}
.p-office .office__single-year-items > *:nth-child(6) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}
.p-office .office__single-year-items > *:nth-child(7) {
  -ms-grid-row: 3;
  -ms-grid-column: 3;
}
.p-office .office__single-year-items > *:nth-child(8) {
  -ms-grid-row: 5;
  -ms-grid-column: 3;
}
.p-office .office__single-year-items > *:nth-child(9) {
  -ms-grid-row: 7;
  -ms-grid-column: 3;
}
.p-office .office__single-year-items > *:nth-child(10) {
  -ms-grid-row: 9;
  -ms-grid-column: 3;
}
@media screen and (max-width: 767px) {
  .p-office .office__single-year-items {
    grid-auto-flow: unset;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: unset;
    grid-template-rows: unset;
    gap: 2rem;
  }
  .p-office .office__single-year-items > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
}
.p-office .office__single-year-items--kagayaki {
  -ms-grid-rows: (auto)[3];
  grid-template-rows: repeat(3, auto);
}
@media screen and (max-width: 767px) {
  .p-office .office__single-year-items--kagayaki {
    gap: 1.8rem;
  }
}
.p-office .office__single-year-item-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
}
.p-office .office__single-year-item-month {
  background: #EB9C3F;
  width: 8rem;
  border-radius: 19px;
  text-align: center;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0;
}
.p-office .office__single-year-item-ttl {
  font-size: 1.8rem;
  line-height: 1.7777777778;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.p-office .office__single-year-item-txt {
  margin-top: 0.7rem;
  font-size: 1.8rem;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1000px) {
  .p-office .office__single-year-item-txt {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 767px) {
  .p-office .office__single-year-item-txt {
    font-size: 1.6rem;
  }
}
.p-office .office__single-year-bottom-txt {
  margin-top: 3rem;
  font-size: 1.8rem;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1000px) {
  .p-office .office__single-year-bottom-txt {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 767px) {
  .p-office .office__single-year-bottom-txt {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-office .office__single-year-bottom-txt {
    margin-top: 1.5rem;
    line-height: 1.875;
  }
}
.p-office .office__single-year--dayservice {
  margin-top: 10rem;
}
@media screen and (max-width: 767px) {
  .p-office .office__single-year--dayservice {
    margin-top: 6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-office .office__single-year--kagayaki {
    margin-top: 5rem;
    padding-bottom: 3.5rem;
  }
}
.p-office .office__single-flow {
  padding-top: 13.6rem;
}
@media screen and (max-width: 767px) {
  .p-office .office__single-flow {
    padding-top: 8rem;
  }
}
.p-office .office__single-flow-items {
  margin-top: 4.5rem;
  max-width: 68rem;
}
@media screen and (max-width: 767px) {
  .p-office .office__single-flow-items {
    margin-top: 3rem;
    max-width: 29.5rem;
    margin-inline: auto;
  }
}
.p-office .office__single-flow-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3.5rem;
}
@media screen and (max-width: 767px) {
  .p-office .office__single-flow-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem;
  }
}
.p-office .office__single-flow-item:nth-child(n+2) {
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .p-office .office__single-flow-item:nth-child(n+2) {
    margin-top: 4.7rem;
  }
}
.p-office .office__single-flow-item-img {
  width: 15.5882352941%;
}
@media screen and (max-width: 767px) {
  .p-office .office__single-flow-item-img {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-right: 3.5rem;
  }
}
.p-office .office__single-flow-item-img img {
  margin-left: 1rem;
  max-width: 10rem;
}
@media screen and (max-width: 767px) {
  .p-office .office__single-flow-item-img img {
    margin-inline: auto;
  }
}
.p-office .office__single-flow-item-number {
  font-size: 2rem;
  color: #389A6D;
  font-family: "Krona One", sans-serif;
  line-height: 1;
  letter-spacing: 0;
}
.p-office .office__single-flow-item-body {
  width: 79.4117647059%;
}
@media screen and (max-width: 767px) {
  .p-office .office__single-flow-item-body {
    width: 100%;
  }
}
.p-office .office__single-flow-item-body-ttl {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.75;
}
@media screen and (max-width: 1000px) {
  .p-office .office__single-flow-item-body-ttl {
    font-size: 1.9rem;
  }
}
@media screen and (max-width: 767px) {
  .p-office .office__single-flow-item-body-ttl {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .p-office .office__single-flow-item-body-ttl {
    text-align: center;
    line-height: 1.7777777778;
  }
}
.p-office .office__single-flow-item-body-txt {
  font-size: 1.8rem;
  margin-top: 0.5rem;
  letter-spacing: 0.05em;
  line-height: 2;
}
@media screen and (max-width: 1000px) {
  .p-office .office__single-flow-item-body-txt {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 767px) {
  .p-office .office__single-flow-item-body-txt {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-office .office__single-flow-item-body-txt {
    margin-top: 0.4rem;
    line-height: 1.875;
  }
}
.p-office .office__single-flow-item-body-txt-read {
  font-size: 1.8rem;
  font-weight: 700;
  margin-top: 1.1rem;
  letter-spacing: 0.05em;
  line-height: 2;
}
@media screen and (max-width: 1000px) {
  .p-office .office__single-flow-item-body-txt-read {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 767px) {
  .p-office .office__single-flow-item-body-txt-read {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-office .office__single-flow-item-body-txt-read {
    margin-top: 1.3rem;
    line-height: 2;
  }
}
.p-office .office__single-flow-item-body-txt-read span {
  display: inline-block;
  color: #EB9C3F;
}
.p-office .office__single-flow--houmon {
  padding-top: 8rem;
}
@media screen and (max-width: 767px) {
  .p-office .office__single-flow--houmon {
    padding-top: 4.6rem;
  }
}
.p-office .office__single-flow--shortstay {
  padding-top: 10rem;
}
.p-office .office__single-flow--shortstay .office__single-flow-item {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-office .office__single-flow--shortstay .office__single-flow-item:has(.office__single-flow-item-body-txt) {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .p-office .office__single-flow--shortstay {
    padding-top: 5rem;
  }
}
.p-office .office__single-flow--unit {
  padding-top: 10rem;
}
@media screen and (max-width: 767px) {
  .p-office .office__single-flow--unit {
    padding-top: 5rem;
  }
}
.p-office .office__single-flow--tokuyou {
  padding-top: 10rem;
}
@media screen and (max-width: 767px) {
  .p-office .office__single-flow--tokuyou {
    padding-top: 5rem;
  }
}
.p-office .office__single-flow--kyotaku .office__single-flow-item {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .p-office .office__single-flow--kyotaku {
    padding-top: 12rem;
  }
}
@media screen and (max-width: 767px) {
  .p-office .office__single-flow--zaitaku {
    padding-top: 12rem;
  }
}
.p-office .office__single-access {
  margin-top: 9.5rem;
}
@media screen and (max-width: 767px) {
  .p-office .office__single-access {
    margin-top: 4.7rem;
  }
}
.p-office .office__single-access-map {
  margin-top: 4.5rem;
}
@media screen and (max-width: 767px) {
  .p-office .office__single-access-map {
    margin-top: 1.8rem;
  }
}
.p-office .office__single-access-map iframe {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 680/440;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
.p-office .office__single-access-btn {
  text-align: center;
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-office .office__single-access-btn {
    margin-top: 4rem;
  }
}
.p-office .office__single-access-btn .c-btn--circle {
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .p-office .office__single-access-btn .c-btn--circle {
    font-size: 1.4rem;
    max-width: 24.5rem;
  }
}
.p-office .office__single-faq {
  margin-top: 9.5rem;
}
@media screen and (max-width: 767px) {
  .p-office .office__single-faq {
    margin-top: 5rem;
  }
}
.p-office .office__single-faq-items {
  margin-top: 4.8rem;
  background: #EEF1EA;
  border-radius: 20px;
  padding: 1rem 4rem 4rem 4rem;
}
@media screen and (max-width: 767px) {
  .p-office .office__single-faq-items {
    padding: 1.4rem 2rem 3rem;
    margin-top: 2rem;
  }
}
.p-office .office__single-faq-item {
  border-bottom: 1px solid #389A6D;
  padding: 3rem 0 2.6rem;
}
@media screen and (max-width: 767px) {
  .p-office .office__single-faq-item {
    padding: 1.6rem 0;
  }
}
.p-office .office__single-faq-question {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.05em;
  border-radius: 10px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem;
  position: relative;
  padding-right: 3rem;
}
@media screen and (max-width: 1000px) {
  .p-office .office__single-faq-question {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 767px) {
  .p-office .office__single-faq-question {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-office .office__single-faq-question {
    padding-right: 3rem;
    line-height: 1.875;
  }
}
.p-office .office__single-faq-question span {
  background: #389A6D;
  width: 3.2rem;
  min-width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  font-size: 1.4rem;
  font-family: "Krona One", sans-serif;
  font-weight: 400;
}
.p-office .office__single-faq-question::before, .p-office .office__single-faq-question::after {
  content: "";
  left: unset;
  position: absolute;
  top: 50%;
  right: 1rem;
  width: 1.2rem;
  height: 2px;
  background-color: #333;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.p-office .office__single-faq-question::before {
  -webkit-transform: translateY(-50%) rotate(0deg);
          transform: translateY(-50%) rotate(0deg);
}
.p-office .office__single-faq-question::after {
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}
.p-office .office__single-faq-question.active::after {
  -webkit-transform: translateY(-50%) rotate(0deg);
          transform: translateY(-50%) rotate(0deg);
}
.p-office .office__single-faq-answer {
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.05em;
  gap: 1.5rem;
  margin-top: 1.5rem;
  display: none;
}
@media screen and (max-width: 1000px) {
  .p-office .office__single-faq-answer {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 767px) {
  .p-office .office__single-faq-answer {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-office .office__single-faq-answer {
    line-height: 1.875;
  }
}
.p-office .office__single-faq-answer.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-office .office__single-faq-answer.active:has(.office__single-faq-answer-items) {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.p-office .office__single-faq-answer-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5rem;
}
.p-office .office__single-faq-answer span {
  background: #EB9C3F;
  min-width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  font-size: 1.4rem;
  font-family: "Krona One", sans-serif;
  font-weight: 400;
}
.p-office .office__single-faq-answer .office__single-faq-answer-item {
  position: relative;
  padding-left: 1.8rem;
}
.p-office .office__single-faq-answer .office__single-faq-answer-item::before {
  content: "";
  position: absolute;
  top: 1.9rem;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.6rem;
  height: 0.6rem;
  background: #EB9C3F;
  border-radius: 50%;
}
@media screen and (max-width: 1000px) {
  .p-office .office__single-faq-answer .office__single-faq-answer-item::before {
    top: 1.5rem;
  }
}
.p-office .office__single-faq-answer .office__single-faq-answer-item span.bold {
  font-size: 1.8rem;
  font-weight: 700;
  background: none;
  color: #333;
  display: inline-block;
}
@media screen and (max-width: 1000px) {
  .p-office .office__single-faq-answer .office__single-faq-answer-item span.bold {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 767px) {
  .p-office .office__single-faq-answer .office__single-faq-answer-item span.bold {
    font-size: 1.6rem;
  }
}
.p-office .shimono {
  position: relative;
}
.p-office .shimono__mv-container {
  background: #CEEBD3;
  position: relative;
}
.p-office .shimono__mv-container::after {
  content: "";
  position: absolute;
  bottom: -10.7rem;
  left: 0;
  width: 100%;
  height: 10.7rem;
  background: url(../images/office/shimono-mv-green.png) no-repeat center/cover;
}
.p-office .shimono__ttl {
  font-size: 4.8rem;
  line-height: 1.3125;
  content: "";
  position: absolute;
  top: 9%;
  right: 9%;
  z-index: 4;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  background: #fff;
  padding: 2.3rem 1.7rem 2.7rem;
  color: #389A6D;
  font-family: "MOBO-Bold", sans-serif;
  letter-spacing: 0.3em;
}
@media screen and (max-width: 1000px) {
  .p-office .shimono__ttl {
    font-size: 3.8rem;
  }
}
@media screen and (max-width: 767px) {
  .p-office .shimono__ttl {
    font-size: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .p-office .shimono__ttl {
    top: 7%;
    right: 10%;
    padding: 1rem 0.5rem;
  }
}
.p-office .shimono__mv {
  margin-top: -22rem;
  width: 94.2857142857%;
  margin-inline: auto;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1000px) {
  .p-office .shimono__mv {
    margin-top: -18rem;
  }
}
@media screen and (max-width: 767px) {
  .p-office .shimono__mv {
    margin-top: -6.3rem;
    width: 89.3333333333%;
  }
}
.p-office .shimono__mv img {
  width: 100%;
  height: auto;
  aspect-ratio: 1320/600;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .p-office .shimono__mv img {
    aspect-ratio: 335/400;
  }
}
.p-office .shimono__mv .slick-next::before,
.p-office .shimono__mv .slick-prev::before {
  display: none;
}
.p-office .shimono__catchcopy {
  margin-top: -12rem;
  margin-left: 15rem;
  font-size: 3.5rem;
  font-weight: 400;
  font-family: "MOBO-Bold", sans-serif;
  line-height: 1.6;
  letter-spacing: 0.1em;
  color: #389A6D;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 1000px) {
  .p-office .shimono__catchcopy {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-office .shimono__catchcopy {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 1000px) {
  .p-office .shimono__catchcopy {
    margin-top: -7rem;
    margin-left: 10rem;
  }
}
@media screen and (max-width: 767px) {
  .p-office .shimono__catchcopy {
    margin-left: 2rem;
  }
}
.p-office .shimono__catchcopy::before {
  content: "";
  position: absolute;
  top: 40%;
  left: 23rem;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 65.6rem;
  height: 23.5rem;
  z-index: -1;
  background: url(../images/office/shimono-catchcopy-bg.png) no-repeat center/contain;
}
@media screen and (max-width: 1000px) {
  .p-office .shimono__catchcopy::before {
    left: 18rem;
    width: 49.4rem;
    height: 18.1rem;
  }
}
@media screen and (max-width: 767px) {
  .p-office .shimono__catchcopy::before {
    top: 30%;
    left: 16rem;
    width: 39.4rem;
    height: 15.1rem;
  }
}
.p-office .shimono__mv-img {
  position: absolute;
  bottom: -17%;
  left: 1.8%;
  width: 12.7rem;
  height: 17.4rem;
  z-index: 5;
}
@media screen and (max-width: 1000px) {
  .p-office .shimono__mv-img {
    bottom: -27%;
    width: 8.3rem;
    height: 11rem;
  }
}
@media screen and (max-width: 767px) {
  .p-office .shimono__mv-img {
    bottom: -10rem;
    left: 1rem;
    width: 7.3rem;
    height: 10rem;
  }
}
.p-office .shimono__mv-img2 {
  position: absolute;
  bottom: -16%;
  right: 3%;
  width: 16.1rem;
  height: 17.1rem;
  z-index: 5;
}
@media screen and (max-width: 1000px) {
  .p-office .shimono__mv-img2 {
    bottom: -23%;
    width: 10.1rem;
    height: 10.8rem;
  }
}
@media screen and (max-width: 767px) {
  .p-office .shimono__mv-img2 {
    bottom: -9.7rem;
    right: 1rem;
    width: 9.1rem;
    height: 9.8rem;
  }
}
.p-office .shimono__cards {
  margin-top: 5rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 3.6rem 1fr 3.6rem 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.6rem;
}
@media screen and (max-width: 767px) {
  .p-office .shimono__cards {
    margin-top: 4rem;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.p-office .shimono__card-img img {
  width: 100%;
  height: auto;
  aspect-ratio: 296/192;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
.p-office .shimono__card-body {
  margin-top: 1.4rem;
}
.p-office .shimono__card-ttl {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0.05em;
  border-bottom: 1px solid #fff;
  padding-bottom: 1.6rem;
}
@media screen and (max-width: 1000px) {
  .p-office .shimono__card-ttl {
    font-size: 1.9rem;
  }
}
@media screen and (max-width: 767px) {
  .p-office .shimono__card-ttl {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .p-office .shimono__card-ttl {
    padding-bottom: 1rem;
    line-height: 1.4444444444;
  }
}
.p-office .shimono__card-txt {
  margin-top: 1rem;
  font-size: 1.8rem;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1000px) {
  .p-office .shimono__card-txt {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 767px) {
  .p-office .shimono__card-txt {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-office .shimono__card-txt {
    line-height: 1.875;
  }
}
.p-office .shimono__table {
  margin-top: 2rem;
  background: #EEF1EA;
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .p-office .shimono__table {
    margin-top: 1.5rem;
  }
}
.p-office .shimono__table-ttl {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0.05em;
  padding-left: 3rem;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .p-office .shimono__table-ttl {
    font-size: 1.9rem;
  }
}
@media screen and (max-width: 767px) {
  .p-office .shimono__table-ttl {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .p-office .shimono__table-ttl {
    margin-left: -0.9rem;
  }
}
.p-office .shimono__table-ttl::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 1rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  background: #389A6D;
}
.p-office .shimono__table-ttl::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 1.55rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #fff;
  z-index: 1;
}
.p-office .shimono__table dl {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 15.6rem 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-template-columns: 15.6rem 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
}
@media screen and (max-width: 1000px) {
  .p-office .shimono__table dl {
    -ms-grid-columns: 13rem 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-template-columns: 13rem 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  }
}
@media screen and (max-width: 767px) {
  .p-office .shimono__table dl {
    -ms-grid-columns: 12rem 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-template-columns: 12rem 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  }
}
.p-office .shimono__table dl:first-child {
  background: #389A6D;
  border-radius: 10px 10px 0 0;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 2.4;
  letter-spacing: 0.05em;
  color: #fff;
  padding: 0.8rem 0;
}
@media screen and (max-width: 1000px) {
  .p-office .shimono__table dl:first-child {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-office .shimono__table dl:first-child {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-office .shimono__table dl:first-child {
    padding: 0.6rem 0;
  }
}
.p-office .shimono__table dl:first-child dt {
  border-right: 1px solid #B5CEC3;
}
.p-office .shimono__table dl.border {
  border-bottom: 1px solid #389A6D;
}
@media screen and (max-width: 767px) {
  .p-office .shimono__table dl.border {
    border-bottom: none;
  }
}
.p-office .shimono__table dt {
  padding: 0 1rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-office .shimono__table dt {
    padding: 0 0.6rem;
  }
}
.p-office .shimono__table dt.time {
  font-size: 1.4rem;
  font-weight: 400;
  font-family: "Krona One", sans-serif;
  letter-spacing: -0.05em;
  padding: 0.8rem 1rem;
}
@media screen and (max-width: 767px) {
  .p-office .shimono__table dt.time {
    font-size: 1.2rem;
    padding: 0.6rem;
  }
}
.p-office .shimono__table dl dt:first-child {
  text-align: left;
}
.p-office .shimono__table dd {
  padding: 0.6rem 1rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-office .shimono__table dd {
    padding: 0.6rem;
    font-size: 1.2rem;
  }
}
.p-office .shimono__table dd span {
  color: #EB9C3F;
}
.p-office .shimono__table-txt {
  font-size: 1.5rem;
  margin-top: 1.2rem;
  line-height: 1.8666666667;
  letter-spacing: 0;
}
@media screen and (max-width: 1000px) {
  .p-office .shimono__table-txt {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-office .shimono__table-txt {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-office .shimono__table-txt {
    margin-top: 0.3rem;
  }
}
.p-office .shimono__guid {
  padding-top: 14rem;
}
.p-office .shimono__guid-read {
  font-size: 1.8rem;
  line-height: 2;
  letter-spacing: 0.05em;
  margin-top: 4.3rem;
  text-align: center;
}
@media screen and (max-width: 1000px) {
  .p-office .shimono__guid-read {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 767px) {
  .p-office .shimono__guid-read {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-office .shimono__guid-read {
    margin-top: 3.3rem;
    line-height: 1.875;
  }
}
.p-office .shimono__guid-container {
  margin-top: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 7rem;
}
@media screen and (max-width: 900px) {
  .p-office .shimono__guid-container {
    gap: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .p-office .shimono__guid-container {
    margin-top: 1.8rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 6.3rem;
  }
}
.p-office .shimono__guid-department {
  width: 45.8333333333%;
  background: #EEF1EA;
  border-radius: 20px;
  padding: 4rem 4rem 3.6rem;
  position: relative;
}
@media screen and (max-width: 900px) {
  .p-office .shimono__guid-department {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .p-office .shimono__guid-department {
    width: 100%;
    padding: 1.5rem 2rem 2.2rem;
  }
}
.p-office .shimono__guid-department::before {
  content: "";
  position: absolute;
  bottom: -1.6rem;
  right: -2rem;
  width: 9.1rem;
  height: 7.4rem;
  background: url(../images/office/shimono-guid.png) no-repeat center/contain;
}
@media screen and (max-width: 1000px) {
  .p-office .shimono__guid-department::before {
    right: -1rem;
    width: 7.1rem;
    height: 5.4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-office .shimono__guid-department::before {
    bottom: -2.6rem;
    right: -1rem;
  }
}
.p-office .shimono__guid-department-ttl {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0.05em;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #389A6D;
  max-width: 44rem;
  padding-left: 2rem;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .p-office .shimono__guid-department-ttl {
    font-size: 1.9rem;
  }
}
@media screen and (max-width: 767px) {
  .p-office .shimono__guid-department-ttl {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .p-office .shimono__guid-department-ttl {
    padding-bottom: 1rem;
    line-height: 1.7777777778;
  }
}
.p-office .shimono__guid-department-ttl::before {
  content: "";
  position: absolute;
  top: 35%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  background: #389A6D;
}
.p-office .shimono__guid-department-ttl::after {
  content: "";
  position: absolute;
  top: 35%;
  left: 0.55rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #fff;
  z-index: 1;
}
.p-office .shimono__guid-department-list {
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-office .shimono__guid-department-list {
    margin-top: 1rem;
  }
}
.p-office .shimono__guid-department-item {
  font-size: 1.8rem;
  line-height: 2;
  letter-spacing: 0.05em;
  padding-left: 1em;
  text-indent: -1em;
}
@media screen and (max-width: 1000px) {
  .p-office .shimono__guid-department-item {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 767px) {
  .p-office .shimono__guid-department-item {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-office .shimono__guid-department-item {
    line-height: 1.875;
  }
}
.p-office .shimono__guid-department-item span {
  color: #EB9C3F;
}
.p-office .shimono__guid-department-item:nth-child(n+2) {
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .p-office .shimono__guid-department-item:nth-child(n+2) {
    margin-top: 0.2rem;
  }
}
.p-office .shimono__guid-time {
  width: 46.875%;
}
@media screen and (max-width: 900px) {
  .p-office .shimono__guid-time {
    width: 45rem;
  }
}
@media screen and (max-width: 767px) {
  .p-office .shimono__guid-time {
    width: 100%;
  }
}
.p-office .shimono__guid-btn {
  margin-top: 6.6rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-office .shimono__guid-btn {
    margin-top: 2.6rem;
  }
}
.p-office .shimono__about {
  padding: 12rem 0 11.7rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-office .shimono__about {
    padding: 5rem 0 1rem;
  }
}
.p-office .shimono__about::before {
  content: "";
  position: absolute;
  top: 10%;
  left: 6%;
  width: 22.7rem;
  height: 12.5rem;
  background: url(../images/office/kumo1.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .p-office .shimono__about::before {
    top: 0;
    left: 2%;
    width: 10.5rem;
    height: 8.3rem;
    z-index: -1;
  }
}
.p-office .shimono__about-container {
  margin-top: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8rem;
}
@media screen and (max-width: 767px) {
  .p-office .shimono__about-container {
    margin-top: 4rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.5rem;
  }
}
.p-office .shimono__about-img {
  width: 45.8333333333%;
}
@media screen and (max-width: 767px) {
  .p-office .shimono__about-img {
    width: 100%;
  }
}
.p-office .shimono__about-img img {
  border-radius: 10px;
}
.p-office .shimono__about-txt {
  width: 45.8333333333%;
  font-size: 1.8rem;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1000px) {
  .p-office .shimono__about-txt {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 767px) {
  .p-office .shimono__about-txt {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-office .shimono__about-txt {
    width: 100%;
    line-height: 1.875;
  }
}
.p-office .shimono__subject {
  padding: 8.4rem 0 8.5rem;
  background: #389A6D;
  color: #fff;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-office .shimono__subject {
    padding: 2.2rem 0 9.2rem;
  }
}
.p-office .shimono__subject::after {
  content: "";
  position: absolute;
  bottom: -3rem;
  right: 13%;
  width: 7rem;
  height: 7.7rem;
  background: url(../images/office/subject.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .p-office .shimono__subject::after {
    right: 6%;
  }
}
.p-office .shimono__support {
  margin-top: 10.5rem;
}
@media screen and (max-width: 767px) {
  .p-office .shimono__support {
    margin-top: 1.5rem;
  }
}
.p-office .shimono__support .shimono__card-ttl {
  border-bottom: 1px solid #389A6D;
}
.p-office .shimono__support-btn {
  margin-top: 4rem;
  text-align: center;
}
.p-office .shimono__support-btn a {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3333333333;
  letter-spacing: 0;
  display: inline-block;
  background: #389A6D;
  color: #fff;
  border-radius: 10px;
  text-align: left;
  padding: 2rem 2rem 2rem 6.5rem;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .p-office .shimono__support-btn a {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-office .shimono__support-btn a {
    font-size: 1.4rem;
  }
}
.p-office .shimono__support-btn a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 2rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 4.6rem;
  height: 4.2rem;
  background: url(../images/common/pdf.svg) no-repeat center/contain;
}
.p-office .shimono__doctor {
  margin-top: 12.4rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-office .shimono__doctor {
    margin-top: 2rem;
  }
}
.p-office .shimono__doctor::before {
  content: "";
  position: absolute;
  top: -15%;
  left: -3.7rem;
  width: 40.1rem;
  height: 24.1rem;
  background: url(../images/corporation/message1.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .p-office .shimono__doctor::before {
    top: 6%;
    width: 22.5rem;
    height: 18.3rem;
    z-index: -1;
  }
}
.p-office .shimono__doctor::after {
  content: "";
  position: absolute;
  top: 72%;
  right: 0;
  width: 31rem;
  height: 13.4rem;
  background: url(../images/corporation/message2.png) no-repeat center/contain;
}
@media screen and (max-width: 1000px) {
  .p-office .shimono__doctor::after {
    top: 74%;
    width: 22rem;
    height: 8rem;
  }
}
@media screen and (max-width: 830px) {
  .p-office .shimono__doctor::after {
    top: 67%;
  }
}
@media screen and (max-width: 767px) {
  .p-office .shimono__doctor::after {
    top: 37%;
    width: 13rem;
    height: 5rem;
  }
}
.p-office .shimono__doctor-container {
  margin-top: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6.4rem;
}
@media screen and (max-width: 767px) {
  .p-office .shimono__doctor-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 1.7rem;
    margin-top: 4rem;
  }
}
.p-office .shimono__doctor-body {
  width: 58.3333333333%;
}
@media screen and (max-width: 767px) {
  .p-office .shimono__doctor-body {
    width: 100%;
  }
}
.p-office .shimono__doctor-body-txt {
  font-size: 1.8rem;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1000px) {
  .p-office .shimono__doctor-body-txt {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 767px) {
  .p-office .shimono__doctor-body-txt {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-office .shimono__doctor-body-txt {
    line-height: 1.875;
  }
}
.p-office .shimono__doctor-body-ttl {
  margin-top: 4rem;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0.05em;
  padding-bottom: 2rem;
  border-bottom: 1px solid #389A6D;
  max-width: 44rem;
  padding-left: 2rem;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .p-office .shimono__doctor-body-ttl {
    font-size: 1.9rem;
  }
}
@media screen and (max-width: 767px) {
  .p-office .shimono__doctor-body-ttl {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .p-office .shimono__doctor-body-ttl {
    padding-bottom: 1rem;
  }
}
.p-office .shimono__doctor-body-ttl::before {
  content: "";
  position: absolute;
  top: 35%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  background: #389A6D;
}
.p-office .shimono__doctor-body-ttl::after {
  content: "";
  position: absolute;
  top: 35%;
  left: 0.55rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #fff;
  z-index: 1;
}
.p-office .shimono__doctor-list {
  margin-top: 1.5rem;
  max-width: 44rem;
}
.p-office .shimono__doctor-item {
  font-size: 1.8rem;
  line-height: 2;
  letter-spacing: 0.05em;
  padding-left: 1em;
  text-indent: -1em;
}
@media screen and (max-width: 1000px) {
  .p-office .shimono__doctor-item {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 767px) {
  .p-office .shimono__doctor-item {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-office .shimono__doctor-item {
    line-height: 1.875;
  }
}
.p-office .shimono__doctor-item span {
  color: #EB9C3F;
}
.p-office .shimono__doctor-item:nth-child(n+2) {
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .p-office .shimono__doctor-item:nth-child(n+2) {
    margin-top: 0.7rem;
  }
}
.p-office .shimono__doctor-img {
  width: 35%;
}
@media screen and (max-width: 767px) {
  .p-office .shimono__doctor-img {
    max-width: 18.6rem;
    min-width: 18.6rem;
    margin-inline: auto;
  }
}
.p-office .shimono__doctor-img p {
  margin-top: 3rem;
  display: block;
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1000px) {
  .p-office .shimono__doctor-img p {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .p-office .shimono__doctor-img p {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-office .shimono__doctor-img p {
    margin-top: 2rem;
  }
}
.p-office .shimono__doctor-img p span {
  font-size: 1.8rem;
  line-height: 1.7777777778;
}
@media screen and (max-width: 1000px) {
  .p-office .shimono__doctor-img p span {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-office .shimono__doctor-img p span {
    font-size: 1.4rem;
  }
}
.p-office .shimono__doctor-img img {
  width: 100%;
  height: auto;
  aspect-ratio: 336/448;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .p-office .shimono__doctor-img img {
    aspect-ratio: 186/248;
  }
}
.p-office .shimono__news {
  margin-top: 2rem;
  padding-top: 14.4rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-office .shimono__news {
    overflow: clip;
    margin-top: 4rem;
    padding-top: 3rem;
  }
}
.p-office .shimono__news::before {
  content: "";
  position: absolute;
  top: 34%;
  left: 0;
  -webkit-transform: translateY(-50%) translateX(0);
          transform: translateY(-50%) translateX(0);
  margin-left: calc(50% - 50vw);
  width: 100vw;
  height: auto;
  aspect-ratio: 1400/343;
  z-index: -1;
  background: url(../images/common/bg_green.png) no-repeat center/cover;
}
@media screen and (max-width: 767px) {
  .p-office .shimono__news::before {
    top: 0;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    aspect-ratio: 375/227;
    background: url(../images/common/bg_green-sp.png) no-repeat center/cover;
  }
}
.p-office .shimono__news::after {
  content: "";
  position: absolute;
  top: 8rem;
  left: 4%;
  margin-left: calc(50% - 50vw);
  width: 23.4rem;
  height: 13.1rem;
  z-index: 1;
  background: url(../images/office/kumo2.png) no-repeat center/cover;
}
@media screen and (max-width: 767px) {
  .p-office .shimono__news::after {
    top: 3rem;
    width: 6.3rem;
    height: 3.9rem;
  }
}
.p-office .shimono__news .news__lists {
  position: relative;
}
.p-office .shimono__news .news__lists::after {
  content: "";
  position: absolute;
  bottom: -80%;
  right: -18%;
  width: 38.2rem;
  height: 19.3rem;
  background: url(../images/office/kumo3.png) no-repeat center/cover;
}
.p-office .shimono__news .news__lists {
  margin-top: 5rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 3.6rem 1fr 3.6rem 1fr 3.6rem 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 3.6rem;
}
@media screen and (max-width: 767px) {
  .p-office .shimono__news .news__lists {
    margin-top: 6.5rem;
    -ms-grid-columns: 1fr 2.5rem 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.6rem 2.5rem;
  }
}
.p-office .shimono__news .news__meta {
  margin-top: 1.8rem;
}
.p-office .shimono__news .news__date {
  font-size: 1.2rem;
  font-family: "Krona One", sans-serif;
  line-height: 1.3;
  letter-spacing: 0;
  margin-top: 1.4rem;
}
@media screen and (max-width: 1000px) {
  .p-office .shimono__news .news__date {
    font-size: 1.1rem;
  }
}
@media screen and (max-width: 767px) {
  .p-office .shimono__news .news__date {
    font-size: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .p-office .shimono__news .news__date {
    margin-top: 1.8rem;
  }
}
.p-office .shimono__news .news__label {
  display: inline-block;
  font-size: 1.2rem;
  line-height: 1.4166666667;
  letter-spacing: 0.05em;
  border: 1px solid #389A6D;
  border-radius: 10px;
  color: #389A6D;
  padding: 0.2rem 1rem;
}
@media screen and (max-width: 1000px) {
  .p-office .shimono__news .news__label {
    font-size: 1.1rem;
  }
}
@media screen and (max-width: 767px) {
  .p-office .shimono__news .news__label {
    font-size: 1rem;
  }
}
.p-office .shimono__news .news__ttl {
  margin-top: 0.8rem;
  font-size: 1.8rem;
  line-height: 1.4444444444;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1000px) {
  .p-office .shimono__news .news__ttl {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-office .shimono__news .news__ttl {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-office .shimono__news .news__ttl {
    line-height: 1.7142857143;
  }
}
.p-office .shimono__news .news__new {
  color: #fff;
}
.p-office .shimono__news .news__no-item {
  grid-column: 1/-1;
  text-align: center;
  padding: 5rem 0;
}
@media screen and (max-width: 767px) {
  .p-office .shimono__news .news__no-item {
    padding: 7rem 0 5rem;
  }
}
@media screen and (max-width: 600px) {
  .p-office .shimono__news .news__no-item {
    padding: 6rem 0 3rem;
  }
}
@media screen and (max-width: 500px) {
  .p-office .shimono__news .news__no-item {
    padding: 3rem 0 3rem;
  }
}
@media screen and (max-width: 430px) {
  .p-office .shimono__news .news__no-item {
    padding: 0 0 3rem;
  }
}
.p-office .shimono__news-btn {
  text-align: center;
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-office .shimono__news-btn {
    margin-top: 3.6rem;
  }
}
.p-office .shimono__gallery {
  margin-top: 12.4rem;
}
@media screen and (max-width: 767px) {
  .p-office .shimono__gallery {
    margin-top: 4.4rem;
  }
}
.p-office .shimono__gallery .office__single-gallery-items {
  max-width: 96rem;
}
.p-office .shimono__gallery .slick-dots {
  bottom: -8.5rem;
}
.p-office .shimono__gallery .slick-next {
  top: unset;
  bottom: 0;
}
.p-office .shimono__gallery .slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 5rem;
  padding: 0;
  list-style: none;
}
.p-office .shimono__gallery .slick-dots li {
  width: 1rem;
}
.p-office .shimono__gallery .slick-dots li button {
  width: 10px;
  height: 10px;
  background-color: #fff;
  border: 1px solid #389A6D;
  border-radius: 50%;
  padding: 0;
  text-indent: -9999px;
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-office .shimono__gallery .slick-dots li button {
    width: 8px;
    height: 8px;
  }
}
.p-office .shimono__gallery .slick-dots li.slick-active button {
  background-color: #389A6D;
}
.p-office .shimono__gallery .slick-next {
  top: unset;
  bottom: -22%;
  right: 37%;
  width: 5rem;
  height: 5rem;
  z-index: 1;
}
@media screen and (max-width: 1000px) {
  .p-office .shimono__gallery .slick-next {
    right: 20%;
    bottom: -11.8rem;
  }
}
@media screen and (max-width: 767px) {
  .p-office .shimono__gallery .slick-next {
    bottom: -11rem;
    right: 21%;
    width: 4rem;
    height: 4rem;
  }
}
.p-office .shimono__gallery .slick-next:before {
  display: inline-block;
  color: unset;
  opacity: 1;
  width: 100%;
  height: 100%;
  background: url(../images/common/next.png) no-repeat center/cover;
}
.p-office .shimono__gallery .slick-prev {
  top: unset;
  bottom: -22%;
  left: 37%;
  width: 5rem;
  height: 5rem;
  z-index: 1;
}
@media screen and (max-width: 1000px) {
  .p-office .shimono__gallery .slick-prev {
    left: 20%;
    bottom: -11.8rem;
  }
}
@media screen and (max-width: 767px) {
  .p-office .shimono__gallery .slick-prev {
    bottom: -11rem;
    left: 21%;
    width: 4rem;
    height: 4rem;
  }
}
.p-office .shimono__gallery .slick-prev:before {
  display: inline-block;
  color: unset;
  opacity: 1;
  width: 100%;
  height: 100%;
  background: url(../images/common/prev.png) no-repeat center/cover;
}
.p-office .shimono__faq {
  margin-top: 20rem;
}
@media screen and (max-width: 767px) {
  .p-office .shimono__faq {
    margin-top: 6.5rem;
  }
}
.p-office .shimono__access {
  margin-top: 10rem;
  padding-bottom: 10rem;
}
@media screen and (max-width: 767px) {
  .p-office .shimono__access {
    margin-top: 1rem;
    padding-bottom: 6rem;
  }
}
.p-office .shimono__access-container {
  margin-top: 4.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6.8rem;
}
@media screen and (max-width: 1000px) {
  .p-office .shimono__access-container {
    gap: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-office .shimono__access-container {
    margin-top: 2rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 3.7rem;
  }
}
.p-office .shimono__access-map {
  width: 45.8333333333%;
}
@media screen and (max-width: 1000px) {
  .p-office .shimono__access-map {
    max-width: 40rem;
  }
}
@media screen and (max-width: 767px) {
  .p-office .shimono__access-map {
    max-width: unset;
    width: 100%;
  }
}
.p-office .shimono__access-map iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 440/285;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
.p-office .shimono__access-map-address {
  margin-top: 1rem;
  font-size: 1.8rem;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1000px) {
  .p-office .shimono__access-map-address {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 767px) {
  .p-office .shimono__access-map-address {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-office .shimono__access-map-address {
    margin-top: 0.4rem;
    line-height: 1.875;
  }
}
.p-office .shimono__access-map-address span {
  font-size: 1.6rem;
  line-height: 2;
  font-weight: 700;
}
@media screen and (max-width: 1000px) {
  .p-office .shimono__access-map-address span {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-office .shimono__access-map-address span {
    font-size: 1.5rem;
  }
}
.p-office .shimono__access-map-btn {
  margin-top: 1.8rem;
}
@media screen and (max-width: 767px) {
  .p-office .shimono__access-map-btn {
    margin-top: 4rem;
    text-align: center;
  }
}
.p-office .shimono__access-body {
  width: 46.875%;
}
@media screen and (max-width: 1000px) {
  .p-office .shimono__access-body {
    width: 57.2916666667%;
  }
}
@media screen and (max-width: 767px) {
  .p-office .shimono__access-body {
    width: 100%;
  }
}
.p-office .shimono__access-tel {
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .p-office .shimono__access-tel {
    margin-top: 3rem;
    text-align: center;
  }
}
.p-office .shimono__access-tel a {
  font-size: 3.2rem;
  font-family: "Krona One", sans-serif;
  font-weight: 400;
  line-height: 0.625;
  color: #389A6D;
  padding-left: 3.8rem;
  position: relative;
}
.p-office .shimono__access-tel a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 3rem;
  height: 3rem;
  background: url(../images/common/contact-cta-tel.svg) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .p-office .shimono__access-tel a {
    font-size: 1.8rem;
    line-height: 1.5555555556;
    background: #389A6D;
    color: #fff;
    padding: 1.2rem 5.7rem 1.2rem 4.8rem;
    border-radius: 23px;
  }
  .p-office .shimono__access-tel a::before {
    left: 2rem;
    width: 2rem;
    height: 2rem;
    background: url(../images/common/sidebar-tel.svg) no-repeat center/contain;
  }
  .p-office .shimono__access-tel a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 1.5rem;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 2.5rem;
    height: 2.5rem;
    background: url(../images/common/sidebar-tel-arrow.svg) no-repeat center/contain;
  }
}

/*----------------------------
■■　法人案内ページ　■■
------------------------------*/
.p-corporation {
  padding-bottom: 9rem;
}
@media screen and (max-width: 767px) {
  .p-corporation {
    padding-bottom: 2rem;
  }
}
.p-corporation .message {
  position: relative;
  overflow-x: hidden;
  padding-top: 2rem;
  padding-bottom: 9rem;
}
@media screen and (max-width: 767px) {
  .p-corporation .message {
    padding-top: 0;
    padding-bottom: 0;
    margin-top: -1rem;
  }
}
.p-corporation .message::before {
  content: "";
  position: absolute;
  top: -2%;
  left: -3.7rem;
  width: 40.1rem;
  height: 24.1rem;
  background: url(../images/corporation/message1.png) no-repeat center/contain;
}
@media screen and (max-width: 1000px) {
  .p-corporation .message::before {
    width: 30rem;
  }
}
@media screen and (max-width: 767px) {
  .p-corporation .message::before {
    top: 5%;
    left: -6.7rem;
    width: 22.5rem;
    height: 18.3rem;
    z-index: -1;
  }
}
.p-corporation .message::after {
  content: "";
  position: absolute;
  top: 48%;
  right: 0;
  width: 43rem;
  height: 16.4rem;
  background: url(../images/corporation/message2.png) no-repeat center/contain;
}
@media screen and (max-width: 1250px) {
  .p-corporation .message::after {
    width: 30rem;
  }
}
@media screen and (max-width: 1000px) {
  .p-corporation .message::after {
    width: 24rem;
  }
}
@media screen and (max-width: 767px) {
  .p-corporation .message::after {
    top: 24%;
    width: 13rem;
    height: 5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-corporation .message .container {
    display: -ms-grid;
    display: grid;
  }
}
.p-corporation .message__container {
  margin-top: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6.4rem;
}
@media screen and (max-width: 767px) {
  .p-corporation .message__container {
    display: contents;
  }
}
.p-corporation .message__body {
  width: 69.4791666667%;
}
@media screen and (max-width: 767px) {
  .p-corporation .message__body {
    width: 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-top: 4rem;
  }
}
.p-corporation .message__txt {
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  line-height: 2;
}
@media screen and (max-width: 1000px) {
  .p-corporation .message__txt {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 767px) {
  .p-corporation .message__txt {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-corporation .message__txt {
    line-height: 1.875;
  }
}
.p-corporation .message__name-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}
.p-corporation .message__name {
  margin-top: 2rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  letter-spacing: 0.05em;
  font-size: 2.6rem;
  line-height: 1.3846153846;
}
@media screen and (max-width: 767px) {
  .p-corporation .message__name {
    font-size: 2.6rem;
  }
}
.p-corporation .message__name span {
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  line-height: 1.4444444444;
  font-weight: 600;
  padding-bottom: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-corporation .message__name span {
    font-weight: 400;
    font-size: 1.6rem;
  }
}
.p-corporation .message__img {
  width: 23.2291666667%;
}
@media screen and (max-width: 767px) {
  .p-corporation .message__img {
    width: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-top: 3.5rem;
    text-align: center;
  }
}
.p-corporation .message__img img {
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .p-corporation .message__img img {
    max-width: 13rem;
    margin-inline: auto;
  }
}
.p-corporation .philosophy {
  padding-top: 13rem;
  padding-bottom: 24rem;
  width: 100%;
  height: auto;
  aspect-ratio: 1400/609;
  background: url(../images/corporation/philosophy.png) no-repeat center/cover;
}
@media screen and (max-width: 767px) {
  .p-corporation .philosophy {
    margin-top: -3rem;
    padding-top: 10rem;
    padding-bottom: 20rem;
    aspect-ratio: 768/457;
    background: url(../images/corporation/philosophy-sp.png) no-repeat center/cover;
  }
}
.p-corporation .philosophy__read {
  margin-top: 5rem;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.8333333333;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (max-width: 1000px) {
  .p-corporation .philosophy__read {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-corporation .philosophy__read {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-corporation .philosophy__read {
    margin-top: 3.5rem;
    letter-spacing: 0.2em;
  }
}
.p-corporation .policy {
  margin-top: 2rem;
  padding: 7rem 0 11rem;
  background: #389A6D;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-corporation .policy {
    margin-top: 0;
    padding: 0.5rem 0 14.6rem;
  }
}
.p-corporation .policy::before {
  content: "";
  position: absolute;
  top: -5rem;
  left: 0;
  width: 100%;
  height: 42.5rem;
  background: url(../images/common/bg_green.png) no-repeat center/cover;
  z-index: -1;
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
@media screen and (max-width: 767px) {
  .p-corporation .policy::before {
    height: 17.9rem;
    background: url(../images/common/bg_green-sp.png) no-repeat center/cover;
  }
}
.p-corporation .policy__items {
  margin-top: 5rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 2rem 1fr 2rem 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
  max-width: 105rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-corporation .policy__items {
    margin-top: 4rem;
    display: block;
    margin-right: calc(50% - 50vw);
  }
}
.p-corporation .policy__items::before {
  content: "";
  position: absolute;
  bottom: -6.5rem;
  left: -3rem;
  width: 7.1rem;
  height: 9.8rem;
  z-index: 1;
  background: url(../images/corporation/policy1.png) no-repeat center/contain;
}
@media screen and (max-width: 1000px) {
  .p-corporation .policy__items::before {
    left: -1rem;
  }
}
@media screen and (max-width: 767px) {
  .p-corporation .policy__items::before {
    left: 1rem;
    bottom: -7rem;
  }
}
.p-corporation .policy__items::after {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  right: -3rem;
  width: 11rem;
  height: 7.6rem;
  background: url(../images/corporation/policy2.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .p-corporation .policy__items::after {
    right: -1rem;
    bottom: -5rem;
  }
}
.p-corporation .policy__items .slick-list.draggable {
  padding: 0 !important;
}
.p-corporation .policy__items .slick-list:first-child {
  margin-left: 1rem;
}
.p-corporation .policy__items .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-corporation .policy__items .slick-dots {
    bottom: -13rem;
  }
}
.p-corporation .policy__items .slick-next {
  top: unset;
  bottom: 0;
}
.p-corporation .policy__items .slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 5rem;
  padding: 0;
  list-style: none;
}
.p-corporation .policy__items .slick-dots li {
  width: 0.8rem;
}
.p-corporation .policy__items .slick-dots li button {
  width: 8px;
  height: 8px;
  border: 1px solid #fff;
  border-radius: 50%;
  padding: 0;
  text-indent: -9999px; /* 数字非表示 */
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.p-corporation .policy__items .slick-dots li.slick-active button {
  background-color: #fff;
}
.p-corporation .policy__items .slick-next {
  top: unset;
  z-index: 1;
}
@media screen and (max-width: 1000px) {
  .p-corporation .policy__items .slick-next {
    bottom: -15.3rem;
    right: 22%;
    width: 4rem;
    height: 4rem;
  }
}
.p-corporation .policy__items .slick-next:before {
  display: inline-block;
  color: unset;
  opacity: 1;
  width: 100%;
  height: 100%;
  background: url(../images/common/next-white.png) no-repeat center/cover;
}
.p-corporation .policy__items .slick-prev {
  top: unset;
  z-index: 1;
}
@media screen and (max-width: 1000px) {
  .p-corporation .policy__items .slick-prev {
    bottom: -15.3rem;
    left: 22%;
    width: 4rem;
    height: 4rem;
  }
}
.p-corporation .policy__items .slick-prev:before {
  display: inline-block;
  color: unset;
  opacity: 1;
  width: 100%;
  height: 100%;
  background: url(../images/common/prev-white.png) no-repeat center/cover;
}
.p-corporation .policy__item {
  background: #FAF8F4;
  border-radius: 20px;
  padding: 2.7rem 2rem 4rem;
}
@media screen and (max-width: 767px) {
  .p-corporation .policy__item {
    height: auto;
  }
}
.p-corporation .policy__number {
  font-size: 3rem;
  color: #389A6D;
  font-family: "Krona One", sans-serif;
  line-height: 0.6666666667;
}
.p-corporation .policy__txt {
  margin-top: 2.8rem;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.7777777778;
  letter-spacing: 0;
}
.p-corporation .profile {
  padding-top: 8rem;
  padding-bottom: 0;
}
@media screen and (max-width: 767px) {
  .p-corporation .profile {
    padding-top: 3.5rem;
  }
}
.p-corporation .profile__container {
  margin-top: 5rem;
  padding: 3.5rem 4rem;
  background: #FAF8F4;
  border-radius: 20px;
}
@media screen and (max-width: 767px) {
  .p-corporation .profile__container {
    margin-top: 4rem;
    padding: 2.5rem 2rem 4rem;
  }
}
.p-corporation .profile__table dl {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 11.2rem 3rem 1fr;
  grid-template-columns: 11.2rem 1fr;
  gap: 3rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid #389A6D;
}
@media screen and (max-width: 767px) {
  .p-corporation .profile__table dl {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 1rem 0 1.1rem;
  }
}
.p-corporation .profile__table dl:first-child {
  padding-top: 0;
}
.p-corporation .profile__table dt {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .p-corporation .profile__table dt {
    line-height: 1.8;
  }
}
.p-corporation .profile__table dd {
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 2;
}
@media screen and (max-width: 1000px) {
  .p-corporation .profile__table dd {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 767px) {
  .p-corporation .profile__table dd {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-corporation .profile__table dd {
    line-height: 1.8;
  }
}
.p-corporation .profile__btn {
  margin-top: 4rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-corporation .profile__btn {
    margin-top: 3.8rem;
  }
}
.p-corporation .history {
  padding-top: 12.4rem;
  padding-bottom: 0;
}
@media screen and (max-width: 767px) {
  .p-corporation .history {
    padding-top: 4rem;
  }
}
.p-corporation .history__items {
  margin-top: 5rem;
  max-width: 60.2rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-corporation .history__items {
    margin-top: 3.3rem;
  }
}
.p-corporation .history__item {
  position: relative;
}
.p-corporation .history__item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.3rem;
  border-radius: 7px;
  height: 110%;
  background: #EEF1EA;
}
@media screen and (max-width: 767px) {
  .p-corporation .history__item::before {
    left: 1rem;
    width: 0.8rem;
  }
}
.p-corporation .history__item:nth-child(n+2) {
  padding-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-corporation .history__item:nth-child(n+2) {
    padding-top: 2.3rem;
  }
}
.p-corporation .history__item-ttl {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.8333333333;
  color: #389A6D;
  padding-left: 4rem;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .p-corporation .history__item-ttl {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-corporation .history__item-ttl {
    font-size: 1.8rem;
  }
}
.p-corporation .history__item-ttl::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1rem;
  height: 1rem;
  background: #389A6D;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .p-corporation .history__item-ttl::before {
    left: 1rem;
    width: 0.6rem;
    height: 0.6rem;
  }
}
.p-corporation .history__item-txt {
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  line-height: 2;
  padding-left: 4rem;
}
@media screen and (max-width: 1000px) {
  .p-corporation .history__item-txt {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 767px) {
  .p-corporation .history__item-txt {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-corporation .history__item-txt {
    line-height: 1.875;
  }
}
.p-corporation .access {
  padding-top: 12.4rem;
  padding-bottom: 0;
  position: relative;
  overflow-x: clip;
}
@media screen and (max-width: 767px) {
  .p-corporation .access {
    padding-top: 3.6rem;
  }
}
.p-corporation .access::before {
  content: "";
  position: absolute;
  top: 0;
  left: 3%;
  width: 34.5rem;
  height: 20rem;
  background: url(../images/corporation/access-bg1.png) no-repeat center/cover;
}
@media screen and (max-width: 767px) {
  .p-corporation .access::before {
    top: 1%;
    left: 1%;
    width: 9.9rem;
    height: 5.5rem;
  }
}
.p-corporation .access::after {
  content: "";
  position: absolute;
  bottom: -25%;
  right: -7%;
  width: 49.1rem;
  height: 24.6rem;
  z-index: -1;
  background: url(../images/corporation/access-bg2.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .p-corporation .access::after {
    bottom: -5%;
    right: -3%;
    width: 16.5rem;
    height: 8.3rem;
  }
}
.p-corporation .access__container {
  margin-top: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8rem;
}
@media screen and (max-width: 767px) {
  .p-corporation .access__container {
    margin-top: 4rem;
    gap: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-corporation .access__map {
  width: 45.8333333333%;
}
@media screen and (max-width: 767px) {
  .p-corporation .access__map {
    width: 100%;
  }
}
.p-corporation .access__map iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 440/285;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
.p-corporation .access__body {
  width: 45.8333333333%;
}
@media screen and (max-width: 767px) {
  .p-corporation .access__body {
    width: 100%;
  }
}
.p-corporation .access__address {
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .p-corporation .access__address {
    font-size: 1.6rem;
  }
}
.p-corporation .access__tel {
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .p-corporation .access__tel {
    font-size: 1.6rem;
  }
}
.p-corporation .access__btn {
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .p-corporation .access__btn {
    text-align: center;
  }
}

/*----------------------------
■■　各種書類ダウンロードページ page-download.php　■■
------------------------------*/
.p-download .download {
  margin-top: -0.4rem;
  padding-bottom: 8rem;
}
@media screen and (max-width: 767px) {
  .p-download .download {
    margin-top: -2rem;
    padding-bottom: 3rem;
  }
}

/*----------------------------
■■　情報公開ページ page-information.php　■■
------------------------------*/
.p-information .information {
  margin-top: -0.4rem;
  padding-bottom: 8rem;
}
@media screen and (max-width: 767px) {
  .p-information .information {
    margin-top: -2rem;
    padding-bottom: 3rem;
  }
}

.p-entry .sub-view {
  background: none;
  margin-bottom: 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-entry .sub-view {
    margin-bottom: 2rem;
  }
}
.p-entry .sub-view::before {
  display: none;
}
.p-entry .sub-view--entry {
  background: url(../images/kv/subkv-entry.png) no-repeat center/cover;
}
.p-entry .bread-nav__wrapper {
  color: #414141;
}
.p-entry .bread-nav__wrapper a {
  color: #414141;
}
@media screen and (max-width: 767px) {
  .p-entry .bread-nav__wrapper {
    padding-top: 2rem;
  }
}
.p-entry .sub-view__heading {
  color: #414141;
}
@media screen and (max-width: 767px) {
  .p-entry .sub-view__heading {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-size: 2.2rem;
  }
}
.p-entry .p-form__thanks-txt {
  padding-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .p-entry .p-form__thanks-txt {
    padding-bottom: 2.4rem;
    text-align: center;
  }
}
.p-entry .entry__sidebar {
  position: relative;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding-bottom: 12rem;
  -ms-flex-item-align: start;
      -ms-grid-row-align: start;
      align-self: start;
}
@media screen and (max-width: 1000px) {
  .p-entry .entry__sidebar {
    display: none;
  }
}
.p-entry .entry__sidebar::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 24rem;
  height: 9rem;
  background: url(../images/recruit/about-top.png) no-repeat center/contain;
}
.p-entry .entry__sidebar-btn a {
  display: inline-block;
  background: #389A6D;
  color: #fff;
  padding: 1.5rem 2rem 1.5rem 5.2rem;
  border-radius: 10px;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0;
  position: relative;
}
.p-entry .entry__sidebar-btn a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 2.1rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 2.3rem;
  height: 2.3rem;
  background: url(../images/common/entry-btn.svg) no-repeat center/contain;
}
.p-entry .entry__sidebar-wrap {
  margin-top: 2.7rem;
  background: #F5F9E7;
  border-radius: 10px;
  padding: 2.6rem 2rem;
}
.p-entry .entry__sidebar-ttl {
  font-size: 1.4rem;
  line-height: 2;
  text-align: center;
  padding-bottom: 1rem;
  border-bottom: 1px solid #389A6D;
}
.p-entry .entry__sidebar-item {
  margin-top: 2.5rem;
  border-bottom: 1px solid #389A6D;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 2;
  padding-bottom: 0.8rem;
}
.p-entry .entry__sidebar-item a {
  display: block;
  position: relative;
  padding-right: 2rem;
}
.p-entry .entry__sidebar-item a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.8rem;
  height: 1.8rem;
  background: url(../images/common/next.png) no-repeat center/contain;
}
.p-entry .entry__single {
  padding-bottom: 2rem;
  overflow-x: clip;
}
@media screen and (max-width: 767px) {
  .p-entry .entry__single {
    overflow-x: hidden;
    margin-top: -3rem;
    padding-bottom: 6rem;
  }
}
.p-entry .entry__single-bg {
  position: fixed;
  z-index: -2;
  top: 8.5rem;
  left: 0;
}
.p-entry .entry__single-bottom-btn a {
  display: none;
}
@media screen and (max-width: 1000px) {
  .p-entry .entry__single-bottom-btn a {
    display: inline-block;
    background: #389A6D;
    color: #fff;
    padding: 1.7rem 0 1.7rem 3.1rem;
    border-radius: 10px;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 2;
    letter-spacing: 0;
    position: fixed;
    bottom: 2rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 90%;
    z-index: 100;
    text-align: center;
  }
}
.p-entry .entry__single-bottom-btn a span {
  position: relative;
}
.p-entry .entry__single-bottom-btn a span::before {
  display: inline-block;
  content: "";
  position: absolute;
  top: 50%;
  left: -3.2rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 2.3rem;
  height: 2.3rem;
  background: url(../images/common/entry-btn.svg) no-repeat center/contain;
}
.p-entry .entry__single-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 240fr 4rem 680fr;
  grid-template-columns: 240fr 680fr;
  gap: 4rem;
  overflow: visible;
}
@media screen and (max-width: 1000px) {
  .p-entry .entry__single-container {
    display: block;
  }
}
.p-entry .entry__single-contents img {
  border-radius: 10px;
}
.p-entry .entry__single-contents h2 {
  margin-top: 2.5rem;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.8333333333;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .p-entry .entry__single-contents h2 {
    font-size: 2rem;
    line-height: 1.6;
    letter-spacing: 0.1em;
  }
}
.p-entry .entry__single-contents p {
  margin-top: 1.2rem;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-entry .entry__single-contents p {
    font-size: 1.4rem;
  }
}
.p-entry .entry__single-contents p:has(img) {
  margin-top: 0;
}
.p-entry .entry__single-contents p iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 680/400;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-entry .entry__single-contents p iframe {
    aspect-ratio: 335/223;
  }
}
.p-entry .entry__single-img img {
  border-radius: 10px;
}
.p-entry .entry__single-ttl {
  margin-top: 2.4rem;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.8333333333;
  letter-spacing: 0;
}
@media screen and (max-width: 1000px) {
  .p-entry .entry__single-ttl {
    font-size: 2.3rem;
  }
}
@media screen and (max-width: 767px) {
  .p-entry .entry__single-ttl {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-entry .entry__single-ttl {
    margin-top: 2.8rem;
    line-height: 1.5909090909;
    letter-spacing: 0.1em;
  }
}
.p-entry .entry__single-txt {
  margin-top: 1rem;
  font-size: 1.8rem;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1000px) {
  .p-entry .entry__single-txt {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 767px) {
  .p-entry .entry__single-txt {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-entry .entry__single-txt {
    margin-top: 1.6rem;
    line-height: 1.875;
  }
}
.p-entry .entry__single-profile {
  margin-top: 7.5rem;
  background: #EEF1EA;
  border-radius: 20px;
  padding: 3.6rem 4rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-entry .entry__single-profile {
    margin-top: 4rem;
    padding: 2.5rem 2rem 4rem;
  }
}
.p-entry .entry__single-profile::before {
  content: "";
  position: absolute;
  bottom: -8rem;
  right: -2rem;
  width: 15.5rem;
  height: 9.6rem;
  background: url(../images/recruit/entry-table.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .p-entry .entry__single-profile::before {
    right: -3%;
  }
}
.p-entry .entry__single-profile-table dl {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 11.2rem 4rem 1fr;
  grid-template-columns: 11.2rem 1fr;
  gap: 4rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid #389A6D;
}
@media screen and (max-width: 767px) {
  .p-entry .entry__single-profile-table dl {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 0.4rem;
    padding: 0.9rem 0 1rem;
  }
}
.p-entry .entry__single-profile-table dl.border-none {
  border-bottom: none;
  padding-bottom: 0;
}
.p-entry .entry__single-profile-table dl:first-child {
  padding-top: 0;
}
.p-entry .entry__single-profile-table dt {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1000px) {
  .p-entry .entry__single-profile-table dt {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-entry .entry__single-profile-table dt {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-entry .entry__single-profile-table dt {
    line-height: 1.4;
  }
}
.p-entry .entry__single-profile-table dd {
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1000px) {
  .p-entry .entry__single-profile-table dd {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-entry .entry__single-profile-table dd {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-entry .entry__single-profile-table dd {
    line-height: 1.875;
  }
}
.p-entry .entry__single-profile-table dd p {
  margin-top: 2rem;
  font-size: 1.5rem;
}
@media screen and (max-width: 1000px) {
  .p-entry .entry__single-profile-table dd p {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-entry .entry__single-profile-table dd p {
    font-size: 1.3rem;
  }
}
.p-entry .entry__single-profile-table dd p.small {
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .p-entry .entry__single-profile-table dd p.small {
    margin-bottom: 1rem;
  }
}
.p-entry .entry__single-profile-btn {
  margin-top: 4rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-entry .entry__single-profile-btn {
    margin-top: 2rem;
  }
}
.p-entry .entry__single-profile-btn a {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3333333333;
  letter-spacing: 0;
  display: inline-block;
  background: #389A6D;
  color: #fff;
  border-radius: 10px;
  text-align: left;
  padding: 2rem 2rem 2rem 6.5rem;
  position: relative;
  min-width: 31rem;
}
@media screen and (max-width: 767px) {
  .p-entry .entry__single-profile-btn a {
    min-width: 29.5rem;
    padding: 2rem 1.7rem 2rem 5.3rem;
  }
}
.p-entry .entry__single-profile-btn a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 2rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 4.6rem;
  height: 4.2rem;
  background: url(../images/common/pdf.svg) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .p-entry .entry__single-profile-btn a::before {
    left: 1.7rem;
  }
}
.p-entry .entry__single-profile-txt {
  font-size: 1.5rem;
  line-height: 1.8666666667;
  letter-spacing: 0.05em;
  display: block;
  margin-top: 2.7rem;
}
@media screen and (max-width: 767px) {
  .p-entry .entry__single-profile-txt {
    margin-top: 1rem;
    font-size: 1.4rem;
    letter-spacing: 0;
  }
}
.p-entry .entry__single-time {
  margin-top: 0.5rem;
  display: block;
  text-align: right;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  line-height: 2;
}
.p-entry .entry__single-form {
  margin-top: 12rem;
}
.p-entry .entry__single-form .p-form__label {
  background: #FF876E;
}
.p-entry .entry__single-form-wrap {
  margin-top: 6.5rem;
  padding-bottom: 5.8rem;
}
.p-entry .entry__single-form-wrap .entry__single-contents p {
  margin-top: 0;
}
.p-entry .entry__single-contents .entry__single-form-ttl {
  font-size: 4rem;
  font-weight: 700;
  line-height: 0.75;
  letter-spacing: 0.1em;
  padding-top: 4.3rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-entry .entry__single-contents .entry__single-form-ttl {
    font-size: 2.4rem;
    line-height: 1.5833333333;
  }
}
.p-entry .entry__single-contents .entry__single-form-ttl::before {
  content: attr(data-en);
  position: absolute;
  top: -0.5rem;
  left: 0;
  color: #389A6D;
  font-size: 1.4rem;
  font-family: "Krona One", sans-serif;
  font-weight: 400;
  line-height: 2.2142857143;
  letter-spacing: 0;
}
.p-entry .entry__single-form-btn {
  background: #F5F9E7;
  color: #389A6D;
  border-radius: 10px;
  padding: 1.6rem 2rem 1.6rem 2rem;
  position: relative;
  max-width: 33.5rem;
  min-width: 33.5rem;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.05em;
  -webkit-box-shadow: 0 5px 0 #389A6D;
          box-shadow: 0 5px 0 #389A6D;
  display: block;
  margin-inline: auto;
  margin-top: 7rem;
}
@media screen and (max-width: 767px) {
  .p-entry .entry__single-form-btn {
    margin-top: 3rem;
  }
}
.p-entry .entry__single-form-btn a {
  color: #389A6D;
}
.p-entry .entry__single-form-btn span {
  font-size: 2rem;
  font-family: "Krona One", sans-serif;
  line-height: 1;
  letter-spacing: 0;
  padding-left: 3rem;
  white-space: nowrap;
  position: relative;
  color: #389A6D;
}
.p-entry .entry__single-form-btn span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 2.3rem;
  height: 2.3rem;
  background: url(../images/common/contact-cta-tel.svg) no-repeat center/contain;
}
.p-entry .entry__single-form-btn p {
  margin-top: 0.2rem;
  font-size: 1.2rem;
  line-height: 1;
  color: #389A6D;
}
@media screen and (max-width: 767px) {
  .p-entry .entry__single-form-btn::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 1.7rem;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 3.5rem;
    height: 3.5rem;
    background: url(../images/common/contact-tel-arrow.svg) no-repeat center/contain;
  }
}
.p-entry .p-form__table-wrap tr {
  padding-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-entry .p-form__flow-icon-inner {
    gap: 0.6rem;
  }
}
.p-entry .p-form__flow-icon-inner p {
  margin-top: 0;
  font-size: 1.8rem;
  letter-spacing: 0;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-entry .p-form__flow-icon-inner p {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-entry .p-form__flow-icon-inner p {
    line-height: 1.3333333333;
  }
}
.p-entry .p-form__flow-icon-inner:has(.active) p {
  font-weight: 700;
}
.p-entry .p-form__read {
  margin-top: -1.8rem;
  margin-bottom: 4rem;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0.05em;
  text-align: center;
}
.p-entry .p-form__read--kakunin {
  display: none;
  margin-top: 4rem;
  margin-bottom: 0;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0.05em;
  text-align: center;
}
.p-entry .entry__single-contents p.p-form__heading {
  font-weight: 700;
}
.p-entry .p-form__label {
  background: #FF876E;
  font-size: 1.2rem;
}
.p-entry .p-form__label--ninni {
  font-size: 1.2rem;
}
.p-entry .p-form__confirm-btn-groups {
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
}
.p-entry .p-form__confirm-btn-groups .c-btn__m-size:nth-child(1) {
  -ms-grid-column-align: center;
      justify-self: center;
}
.p-entry .p-form__confirm-btn-groups .c-btn__m-size:nth-child(2) {
  -ms-grid-column-align: center;
      justify-self: center;
}
.p-entry .p-form__privacy-txt {
  font-size: 1.4rem;
}
.p-entry .form-back-btn button {
  display: block;
  text-align: center;
  background: none;
  color: #414141;
  font-size: 1.4rem;
  line-height: 1.5714285714;
  letter-spacing: 0;
  padding-left: 4.5rem;
  position: relative;
  white-space: nowrap;
}
.p-entry .form-back-btn button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 4rem;
  height: 4rem;
  background: url(../images/common/prev.png) no-repeat center/contain;
}
.p-entry .entry__single-btn {
  display: block;
  text-align: center;
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .p-entry .entry__single-btn {
    margin-top: 2rem;
  }
}
.p-entry .entry__single-btn a {
  font-size: 1.4rem;
  line-height: 1.5714285714;
  letter-spacing: 0;
  padding-left: 4.5rem;
  position: relative;
}
.p-entry .entry__single-btn a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 4rem;
  height: 4rem;
  background: url(../images/common/prev.png) no-repeat center/contain;
}
.p-entry .c-btn__m-size {
  width: 24.5rem;
  height: 4.6rem;
}
.p-entry .c-btn__m-size.form-back-btn {
  width: unset;
}
.p-entry .c-btn--circle {
  font-size: 1.4rem;
  padding: 0.7rem 8.5rem 0.7rem 2rem;
}
.p-entry button[type=submit] .c-btn__txt {
  font-size: 1.4rem;
}

/*----------------------------
改行クラス
使い方：
PCのみの改行は、point-br--pc
TAB未満の改行は、point-br--tab
SP未満の改行は、point-br--sp
------------------------------*/
.point-br--sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .point-br--sp {
    display: block;
  }
}
.point-br--tab {
  display: none;
}
@media screen and (max-width: 1000px) {
  .point-br--tab {
    display: block;
  }
}
.point-br--pc {
  display: block;
}
@media screen and (max-width: 767px) {
  .point-br--pc {
    display: none;
  }
}

/*----------------------------
テキスト位置調整クラス
------------------------------*/
.u-txt--center {
  text-align: center;
}

.u-txt--left {
  text-align: left;
}

.u-txt--right {
  text-align: right;
}

/*----------------------------
色変更クラス
------------------------------*/
.u-color--white--white {
  color: #fff;
}

/*----------------------------
背景色変更クラス
------------------------------*/
.u-bg--gray {
  background: #FFF;
}

/*----------------------------
背景色変更クラス
------------------------------*/
/*----------------------------
PC,TAB、SPの表示切り替え
使い方：
SPのみ出力したい等があれば、
クラス名をつけることで可能に。
------------------------------*/
.pc {
  display: block !important;
}
@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}

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

.pc-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
@media screen and (max-width: 767px) {
  .pc-flex {
    display: none !important;
  }
}

.tab {
  display: none !important;
}
@media screen and (max-width: 1000px) {
  .tab {
    display: block !important;
  }
}

.tab-inline {
  display: none !important;
}
@media screen and (max-width: 1000px) {
  .tab-inline {
    display: inline !important;
  }
}

.tab-flex {
  display: none !important;
}
@media screen and (max-width: 1000px) {
  .tab-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}

.sp {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .sp {
    display: block !important;
  }
}

.sp-inline {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .sp-inline {
    display: inline !important;
  }
}

.sp-flex {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .sp-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}

/*----------------------------
//インラインブロック
使い方：
折り返し自動制御で使える。
例）折り返しのタイミングで２段に
したい場合など。
------------------------------*/
.u-display--ib {
  display: inline-block;
  font-weight: inherit;
}

/*----------------------------
etc
------------------------------*/