@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Shippori+Mincho:wght@400;600;700&display=swap');

/*===================================================

 荻窪病院訪問看護ステーション
 20250709

===================================================*/
:root {
  --txt-main: #2e2e2e;
  --txt-note: #707070;
  --link: #E89433;
  --green1: #4DB487;
  --green2: #86C2A0;
  --l-green: #F4FBF7;
  --pink: #D496A0;
  --blue1: #9CDAE9;
  --blue2: #60BAD5;
  --red: #dc3646;
  --orange: #E89433;
  --beige: #D2B48B;
  --l-beige1: #EEE6D1;
  --l-beige2: #FBFAF5;
  --font-ja: "Noto Sans JP", sans-serif;
  --font-mincho: "Shippori Mincho", serif;
  --content-width: 1280px;
}

html,
body,
p,
ol,
ul,
li,
dl,
dt,
dd,
blockquote,
figure,
fieldset,
legend,
textarea,
pre,
iframe,
hr,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

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

ul {
  list-style: none;
}

button {
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  background: transparent;
  -webkit-appearance: none;
  appearance: none;
  color: inherit;
  font-size: inherit;
  font-family: inherit;
  box-shadow: none;
}

input,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

button:not(:disabled) {
  cursor: pointer;
}

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

html {
  scroll-behavior: auto;
  box-sizing: border-box;
  /*overflow-x: hidden;*/
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

img,
video {
  height: auto;
  max-width: 100%;
  vertical-align: bottom;
}

iframe {
  border: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  font-size: inherit;
}

td,
th {
  padding: 0;
}

header,
footer,
main {
  display: block;
}

body {
  font-optical-sizing: auto;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.75;
  color: var(--txt-main);
  font-family: var(--font-ja);
  word-break: break-word;
  overflow-x: hidden;
  padding-top: 160px;

  &::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 160px;
    background: var(--l-beige2);
  }
}

a {
  color: var(--link);
  text-underline-offset: 3px;
  text-decoration: none;
}

em {
  font-style: normal;
}

sub {
  vertical-align: baseline;
  font-size: 0.75em;
}

sup {
  vertical-align: top;
  font-size: 0.75em;
}

@media screen and (max-width: 767px) {
  body {
    font-size: 15px;
    line-height: 1.75;
    padding-top: 0;
  }
}

/*===================================================

 共通パーツ

===================================================*/
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

@media screen and (min-width: 768px) {
  .is-sp {
    display: none;
  }
}

/* テキスト----- */
.fw--medium {
  font-weight: 500;
}

.fw--semibold {
  font-weight: 600;
}

.bold,
.fw--bold {
  font-weight: 700;
}

.fc--red {
  color: var(--red);
}

.fc--pink {
  color: var(--pink);
}

.fc--green {
  color: var(--green1);
}

.fc--blue {
  color: var(--blue2);
}

.fc--orange {
  color: var(--orange);
}

.fc--red {
  color: var(--red);
}

/* フォント----- */
.ff--mincho {
  font-family: var(--font-mincho);
  font-weight: 600;
}

/* アイコン----- */
.icon-map {
  width: 1em;
  height: 1em;
  display: inline-flex;
  background: url(../img/icon-map.svg) no-repeat center;
  background-size: contain;
}

.icon-tel {
  width: 1em;
  height: 1em;
  display: inline-flex;
  background: url(../img/icon-tel.svg) no-repeat center;
  background-size: contain;
}

/* ボタン----- */
.btn-primary,
.btn-secondary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  padding: 16px 32px 19px 32px;
  border-radius: 40px;
  max-width: 400px;
  height: 56px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
  transition: all .3s;
}

.btn-primary.arrow,
.btn-secondary.arrow {
  padding: 16px 48px 18px 32px;
}

.btn-primary.arrow::after,
.btn-secondary.arrow::after {
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
}

.btn-primary:hover {
  filter: brightness(1.1);
}

.btn-secondary:hover {
  background: var(--l-green);
}

.btn-primary {
  color: #fff;
  background: var(--green1);
}

.btn-secondary {
  background: #fff;
  border: 2px solid var(--green2);
  color: var(--green2);
}

.btn-primary.arrow::after {
  background-image: url(../img/arrow-01_white.svg)
}

.btn-secondary.arrow::after {
  background-image: url(../img/arrow-01_green.svg)
}

.btn-primary.link-blank::after,
.btn-secondary.link-blank::after {
  margin-right: 0;
}

.btn-primary.link-blank::after {
  background-image: url(../img/icon-blank_white.svg);
}

.btn-secondary.link-blank::after {
  background-image: url(../img/icon-blank_green.svg);
}

@media screen and (max-width: 767px) {

  .btn-primary,
  .btn-secondary {
    font-size: 15px;
    height: 48px;
    padding: 8px 24px 10px 24px;
  }

  .btn-primary.arrow,
  .btn-secondary.arrow {
    padding: 8px 32px 10px 24px;
  }

  .btn-primary.arrow::after,
  .btn-secondary.arrow::after {
    width: 20px;
    height: 20px;
    right: 16px;
  }
}

.link-blank,
.link-blank_white {
  display: inline-flex;
}

.link-blank::after,
.link-blank_white::after {
  content: "";
  background: url(../img/icon-blank.svg) no-repeat center;
  background-size: contain;
  width: 1em;
  height: 1em;
  margin-left: 4px;
  margin-right: 4px;
}

.link-blank_white::after {
  background-image: url(../img/icon-blank_white.svg);
}

.link-pdf {
  position: relative;
  padding-left: 1.2em;
  color: var(--txt-main);
}

.link-pdf:hover {
  text-decoration: underline;
}

.link-pdf::after {
  content: "";
  background: url(../img/icon-pdf.svg) no-repeat center;
  background-size: contain;
  width: 1em;
  height: 1em;
  position: absolute;
  top: 50%;
  margin-top: -.5em;
  left: 0;
}

/* セクション----- */
.section {
  padding: 0 4vw;
  position: relative;
}

.section-container {
  max-width: var(--content-width);
  margin-left: auto;
  margin-right: auto;
  padding: 88px 0 100px;
}

.section-heading {
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 40px;
  margin-bottom: 72px;
}

.section-heading::after {
  content: "";
  display: block;
  border-radius: 4px;
  background: var(--green2);
  width: 80px;
  height: 4px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.section-heading__en {
  font-family: var(--font-mincho);
  color: var(--green2);
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .1em;
  margin-bottom: 16px;
}

.section-heading__ttl {
  font-family: var(--font-mincho);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.4;
}

.section-lead {
  text-align: center;
  font-size: 20px;
  line-height: 2;
}

@media screen and (max-width: 767px) {
  .section {
    padding: 0 16px;
  }

  .section-container {
    padding: 56px 0;
  }

  .section-heading {
    padding-bottom: 16px;
    margin-bottom: 32px;
  }

  .section-heading::after {
    width: 40px;
    height: 2px;
  }

  .section-heading__en {
    font-size: 12px;
    margin-bottom: 8px;
  }

  .section-heading__ttl {
    font-size: 22px;
  }

  .section-lead {
    text-align: left;
    font-size: 15px;
    line-height: 1.75;
  }
}

/* 見出し----- */
.heading-01 {
  font-size: 24px;
  font-family: var(--font-mincho);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 1em;
}

@media screen and (max-width: 767px) {
  .heading-01 {
    font-size: 18px;
  }
}

/* 下層ページヘッダ----- */
.local-header {
  position: relative;
  background: linear-gradient(0deg, rgba(251, 250, 245, 0) 0%, rgba(251, 250, 245, 1) 100%);
}

.local-header__img {
  width: 70%;
  height: 480px;
  margin-left: auto;
}

.local-header__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: 80px 0 0 80px;
}

.local-header__caption {
  position: absolute;
  right: 70%;
  margin-right: -10%;
  top: 50%;
}

.local-header .page-heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px 0;
}

.local-header .page-heading .block {
  position: relative;
}

.local-header .page-heading .block::before {
  content: "";
  display: block;
  background: #fff;
  filter: blur(15px);
  width: 108%;
  height: 160%;
  position: absolute;
  top: -30%;
  left: -4%;
  z-index: 0;
}

.local-header .page-heading .block-txt {
  display: flex;
  font-size: 48px;
  font-size: clamp(36px, 3vw, 48px);
  font-family: var(--font-mincho);
  font-weight: 700;
  line-height: 1;
  padding: .2em .3em .2em .4em;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .local-header__img {
    width: 93vw;
    height: 62vw;
  }

  .local-header__img img {
    border-radius: 40px 0 0 40px;
  }

  .local-header__caption {
    right: auto;
    margin-right: 0%;
    left: 8px;
    top: 50%;
  }

  .local-header .page-heading .block-txt {
    font-size: 24px;
    padding: .4em;
  }
}

/*===================================================

 ヘッダー

===================================================*/
.l-header {
  padding: 0 2.4vw;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 100;
  background: var(--l-beige2);
}

.l-header__container {
  padding: 20px 0;
  height: 160px;
  display: flex;
  align-items: center;
  gap: 0 2.4vw;
  transition: all .4s;
}

.header-logo {
  max-width: 30vw;
  width: 400px;
}

.header-logo img {
  width: 100%;
}

.header-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0 2.4vw;
}

.header-nav__menu-list {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: .6em 2.4vw;
}

.header-nav__menu-list>li {
  line-height: 1;
  position: relative;
}

.header-nav__menu-list>li>a::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 3px;
  border-radius: 2px;
  background: var(--green2);
  bottom: 0;
  left: 0;
  opacity: 0;
}

.header-nav__menu-list>li>a {
  display: block;
  font-size: 18px;
  font-family: var(--font-mincho);
  font-weight: 700;
  color: var(--txt-main);
  text-decoration: none;
  padding: 16px 0;
}

.header-nav__menu-list>li.is-active>a::after {
  opacity: 1;
}

.header-btn-tel {
  border-radius: 40px;
  height: 44px;
  display: flex;
  align-items: center;
  font-family: var(--font-mincho);
  padding: 8px 16px;
  white-space: nowrap;
  transition: filter .3s;
  background: var(--green1);
  color: #fff;
  position: relative;
}

.header-btn-tel::before {
  content: "";
  background: url(../img/icon-tel.svg);
  background-size: contain;
  width: 20px;
  height: 20px;
  display: block;
  margin-right: 4px;
}

.header-btn-tel span {
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: .1em;
}

.header-btn-tel:hover {
  filter: brightness(1.1);
}

@media screen and (max-width: 767px) {
  .l-header {
    padding: 0;
    position: static;
  }

  .l-header__container {
    padding: 0 16px;
    height: 80px;
  }

  .header-logo {
    max-width: 48vw;
    width: 180px;
    position: relative;
  }

  .header-nav__menu-list {
    display: none;
  }

  .header-nav__float-btns {
    display: flex;
    gap: 0 8px;
    position: fixed;
    top: 16px;
    right: 16px;
    z-index: 100;
  }

  .header-btn-tel {
    width: 48px;
    height: 48px;
    padding: 0;
    border-radius: 50%;
    background: #fff;
    justify-content: center;
    color: var(--green1);
    box-shadow: 0 1px 6px 0 rgba(0, 0, 0, .16);
  }

  .header-btn-tel::before {
    background: url(../img/icon-tel_green.svg);
    width: 24px;
    height: 24px;
    margin-right: 0;
  }

  .header-btn-tel span {
    display: none;
  }
}

/* スクロール時（PC）----- */
@media screen and (min-width: 768px) {
  .l-header.is-scroll {
    background: #fff;
  }

  .l-header.is-scroll .l-header__container {
    height: 90px;
  }

  .l-header.is-scroll .header-logo {
    width: 280px;
  }
}

/* スクロール時（SP）----- */
@media screen and (max-width: 767px) {
  .l-header.is-scroll {}
}

/*===================================================

 SP用ナビゲーション

===================================================*/
@media screen and (min-width: 768px) {

  .sp-menu-btn,
  .sp-gnav {
    display: none !important;
  }
}

/* メニューボタン----- */
.sp-menu-btn {
  background: var(--green1);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 6px 0 rgba(0, 0, 0, .16);
}

.sp-menu-btn .line {
  display: block;
  width: 18px;
  height: 11px;
  position: relative;
  margin-bottom: 6px;
}

.sp-menu-btn .line>span {
  display: block;
  background: #fff;
  width: 18px;
  height: 1px;
  position: absolute;
  transition: all 0.2s ease-in-out;
  opacity: .6;
}

.sp-menu-btn .line>span:nth-child(1) {
  top: 0;
}

.sp-menu-btn .line>span:nth-child(2) {
  top: 5px;
  left: 10%;
  width: 80%;
  transition: all 0.1s ease-in-out;
}

.sp-menu-btn .line>span:nth-child(3) {
  top: 10px;
}

.sp-menu-btn .txt-open {
  font-size: 10px;
  line-height: 1;
  color: #fff;
}

.sp-menu-btn .txt-close {
  font-size: 10px;
  line-height: 1;
  color: var(--green1);
}

/* アクティブ時（メニュー展開時） */
.sp-menu-btn[aria-expanded="true"] {
  background: #fff;
}

.sp-menu-btn[aria-expanded="true"] .line>span {
  background: var(--green1);
  opacity: 1;
}

.sp-menu-btn[aria-expanded="true"] .line>span:nth-child(1) {
  transform: rotate(45deg);
  top: 8px;
}

.sp-menu-btn[aria-expanded="true"] .line>span:nth-child(2) {
  width: 0;
}

.sp-menu-btn[aria-expanded="true"] .line>span:nth-child(3) {
  transform: rotate(-45deg);
  top: 8px;
}

.sp-menu-btn[aria-expanded="false"] .txt-close,
.sp-menu-btn[aria-expanded="true"] .txt-open {
  display: none;
}

/* ナビゲーションの開閉----- */
.sp-gnav {
  position: fixed;
  left: 100%;
  top: 0;
  width: 100%;
  height: 100dvh;
  z-index: 99;
  transition: left .3s ease;
  display: flex;
  justify-content: flex-end;
}

.sp-gnav__container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: auto;
  overscroll-behavior: contain;
  background: var(--green1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.sp-gnav[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  left: 0;
}

/* ナビゲーションのデザイン----- */
.sp-gnav__menu-list {
  padding: 80px 16px;
}

.sp-gnav__menu-list>li {
  font-size: 20px;
  font-family: var(--font-mincho);
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: .1em;
  text-align: center;
}

.sp-gnav__menu-list>li:not(:last-child) {
  margin-bottom: 40px;
}

.sp-gnav__menu-list>li a {
  color: #fff;
  text-decoration: none;
}

.sp-gnav__menu-list>li a.link-blank_white::after {
  width: .8em;
  height: .8em;
}

.sp-gnav-btn-tel {
  border-radius: 40px;
  display: flex;
  flex-direction: column;
  text-align: center;
  letter-spacing: .05em;
  border: 2px solid #fff;
  font-size: 14px;
  font-family: var(--font-mincho);
  font-weight: 600;
  line-height: 1;
  padding: 12px 48px 12px 56px;
  white-space: nowrap;
  position: relative;
}

.sp-gnav-btn-tel::after {
  content: "";
  background: url(../img/icon-tel.svg);
  background-size: contain;
  width: 24px;
  height: 24px;
  display: block;
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
}

.sp-gnav-btn-tel::before {
  content: "お問い合わせ";
  margin-bottom: 4px;
}

.sp-gnav-btn-tel span {
  display: block;
  font-size: 20px;
}

/*===================================================

 メイン

===================================================*/
@media screen and (max-width: 767px) {
  .l-main {
    overflow-x: hidden;
  }
}

/*===================================================

 フッター

===================================================*/
.l-footer {
  padding: 0 4vw;
}

.l-footer__container {
  padding: 40px 0;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .l-footer {
    padding: 0 16px;
  }

  .l-footer__container {
    padding: 24px 0;
  }
}

/* フッターメニュー----- */
.footer-menu-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1em 2em;
  margin-bottom: 40px;
}

.footer-menu-list>li a {
  color: var(--txt-main);
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font-mincho);
  position: relative;
  padding-left: 16px;
}

.footer-menu-list>li a::before {
  content: "";
  display: block;
  width: 8px;
  height: 2px;
  border-radius: 2px;
  background: var(--green2);
  position: absolute;
  top: 50%;
  margin-top: -1px;
  left: 0;
}

.footer-menu-list>li a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 767px) {
  .footer-menu-list {
    gap: 1em 1.5em;
    margin-bottom: 24px;
  }

  .footer-menu-list>li a {
    font-size: 14px;
    padding-left: 12px;
  }

  .footer-menu-list>li a::before {
    width: 5px;
    height: 1px;
  }
}

.footer-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 15px;
  line-height: 1.4;
}

.footer-info__ttl {
  font-size: 18px;
  margin-bottom: 8px;
}

.footer-info__num {
  line-height: 1;
  border: 1px solid #ccc;
  padding: .4em 1em;
  margin-bottom: 40px;
}

.footer-info__map {
  margin-top: 8px;
}

.footer-info__map>a {
  display: inline-flex;
  align-items: center;
  gap: 0 2px;
  line-height: 1;
  color: var(--txt-main);
  text-decoration: underline;
}

.footer-info__map .icon-map {
  font-size: 18px;
}

.footer-info__tel-list {
  margin-top: 24px;
  display: flex;
  gap: 0 1em;
}

.footer-info__time {
  margin-top: 24px;
}

.footer-info__note {
  font-size: 13px;
}

.footer-copyright {
  color: #999;
  font-size: 12px;
  margin-top: 40px;
}

@media screen and (max-width: 767px) {
  .footer-info {
    font-size: 12px;
  }

  .footer-info__ttl {
    font-size: 14px;
  }

  .footer-info__num {
    margin-bottom: 24px;
  }

  .footer-info__map .icon-map {
    font-size: 16px;
  }

  .footer-info__tel-list {
    flex-direction: column;
    gap: 4px;
    font-size: 14px;
  }

  .footer-info__time {
    margin-top: 24px;
  }

  .footer-info__note {
    margin-top: 8px;
    font-size: 12px;
  }

  .footer-copyright {
    font-size: 10px;
    margin-top: 32px;
  }
}

/* ページトップボタン----- */
.btn-pagetop {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 98;
  background: var(--green1);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, .16);
}

.btn-pagetop::before {
  content: "";
  display: inline-flex;
  background: url(../img/arrow-02_white.svg) no-repeat center;
  background-size: contain;
  width: 32px;
  height: 32px;
}

.btn-pagetop.is-show {
  opacity: 1;
  visibility: visible;
}

@media screen and (max-width: 767px) {
  .btn-pagetop {
    right: 10px;
    bottom: 16px;
    width: 32px;
    height: 32px;
  }

  .btn-pagetop::before {
    width: 20px;
    height: 20px;
  }
}

/*===================================================

 トップページ

===================================================*/
/* メインビジュアル----- */
.top-mv {
  background: var(--l-beige2);
  position: relative;
  display: flex;
  justify-content: flex-end;
  padding-bottom: 64px;
}

.top-mv__img {
  width: 66%;
  margin-left: auto;
}

.top-mv__img-pic {
  height: calc(100vh - 200px);
  min-height: 520px;
  max-height: 800px;
}

.top-mv__img-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 80px 0 0 80px;
}

.top-mv__img-note {
  text-align: right;
  font-size: 12px;
  margin-top: 1em;
}

.top-mv__caption {
  position: absolute;
  bottom: 20%;
  left: 10vw;
}

.top-mv__caption-ttl {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px 0;
}

.top-mv__caption-ttl .block {
  position: relative;
}

.top-mv__caption-ttl .block::before {
  content: "";
  display: block;
  background: #fff;
  filter: blur(15px);
  width: 108%;
  height: 160%;
  position: absolute;
  top: -30%;
  left: -4%;
  z-index: 0;
}

.top-mv__caption-ttl .block-txt {
  display: flex;
  font-size: 56px;
  font-size: clamp(40px, 3vw, 56px);
  font-family: var(--font-mincho);
  font-weight: 600;
  line-height: 1;
  letter-spacing: .05em;
  padding: .2em .3em .2em .4em;
  position: relative;
  z-index: 1;
}

.top-mv__caption-txt {
  margin-top: 2em;
  padding-left: 16px;
  font-family: var(--font-mincho);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: .1em;
  line-height: 2.4;
  text-shadow: 0 1px 1px #fff;

  >p:nth-child(1) {
    transition-delay: .2s;
  }

  >p:nth-child(2) {
    transition-delay: .4s;
  }

  >p:nth-child(3) {
    transition-delay: .6s;
  }

  >p:nth-child(4) {
    transition-delay: .8s;
  }
}

@media screen and (max-width: 767px) {
  .top-mv {
    flex-direction: column;
  }

  .top-mv__img {
    width: 93vw;
  }

  .top-mv__img-pic {
    height: 126vw;
    min-height: initial;
    max-height: initial;
  }

  .top-mv__img-pic img {
    border-radius: 40px 0 0 40px;
    object-position: -260px 0;
  }

  .top-mv__img-note {
    font-size: 10px;
    margin-top: 5px;
  }

  .top-mv__caption {
    position: static;
  }

  .top-mv__caption-ttl {
    gap: 8px 0;
    position: absolute;
    top: 90vw;
    left: 2vw;
    letter-spacing: 0;
  }

  .top-mv__caption-ttl .block::before {
    filter: blur(8px);
    width: 100%;
    height: 120%;
    top: -10%;
    left: 0;
    transform: translateZ(0);
    will-change: filter
  }

  .top-mv__caption-ttl .block-txt {
    font-size: 24px;
    letter-spacing: 0;
    padding: .4em;
  }

  .top-mv__caption-txt {
    padding-left: 0;
    font-size: 18px;
    text-align: center;
  }
}

/* 導入部----- */
.top-about-section {
  background: #fff;
  text-align: center;
}

.top-about-section .section-container {
  position: relative;
}

.top-about-ttl {
  position: relative;
  z-index: 1;
  text-align: center;
  font-family: var(--font-mincho);
  font-size: 32px;
  font-weight: 600;
  letter-spacing: .05em;
  margin-bottom: 64px;
}

.top-about-ttl img {
  width: 640px;
  margin-bottom: 24px;
}

.top-about-ttl__txt {
  display: block;
}

.top-about-txt {
  font-size: 20px;
  line-height: 2.4;
  position: relative;
  z-index: 1;
}

.top-about-txt p+p {
  margin-top: 2em;
}

.top-about-img-01,
.top-about-img-02 {
  position: absolute;
  width: 13vw;
  min-width: 160px;
  max-width: 280px;
}

.top-about-img-01 img,
.top-about-img-02 img {
  position: relative;
}

.top-about-img-01::before,
.top-about-img-02::before {
  content: "";
  background: #F2EACA;
  width: 100%;
  height: 100%;
  position: absolute;
  border-radius: 50%;
  filter: blur(1.5rem);
  z-index: 0;
}

.top-about-img-01::before {
  background: #F2EACA;
  top: 40%;
  right: 40%;
}

.top-about-img-02::before {
  background: #DFF5EB;
  bottom: 40%;
  left: 40%;
}

.top-about-img-01 {
  top: 20%;
  right: 100%;
  margin-right: -150px;
}

.top-about-img-02 {
  bottom: 15%;
  left: 100%;
  margin-left: -150px;
}

@media screen and (max-width: 767px) {
  .top-about-section .section-container {
    padding: 88px 0 180px;
  }

  .top-about-ttl {
    font-size: 20px;
    letter-spacing: 0;
    margin-bottom: 32px;
  }

  .top-about-ttl img {
    width: 53vw;
    margin-bottom: 24px;
  }

  .top-about-txt {
    font-size: 15px;
  }

  .top-about-img-01,
  .top-about-img-02 {
    width: 30vw;
    min-width: initial;
  }

  .top-about-img-01 {
    top: -12vw;
    right: auto;
    margin-right: 0;
    left: 0;
  }

  .top-about-img-02 {
    bottom: 10vw;
    left: auto;
    margin-left: 0;
    right: 0;
  }
}

/* ニュース----- */
.top-news-section .section-container {
  padding-top: 0;
}

.news-box {
  border-radius: 10px;
  background: var(--l-beige2);
  padding: 32px 48px;
}

.news-box__row {
  display: flex;
}

.news-box__head {
  width: 120px;
  border-right: 1px solid var(--beige);
}

.news-box__body {
  flex: 1;
  padding-left: 40px;
}

.news-box__ttl {
  color: var(--beige);
  font-family: var(--font-mincho);
  font-size: 24px;
  font-weight: 600;
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 24px 0;
}

.news-item {
  display: flex;
  line-height: 1.5;
}

.news-item .news-date {
  font-family: var(--font-mincho);
  width: 120px;
  flex-shrink: 0;
}

@media screen and (max-width: 767px) {
  .news-box {
    border-radius: 8px;
    padding: 32px 16px;
  }

  .news-box__row {
    display: block;
  }

  .news-box__head {
    width: auto;
    border-right: none;
    margin-bottom: 16px;
    text-align: center;
  }

  .news-box__body {
    padding-left: 0;
  }

  .news-box__ttl {
    font-size: 20px;
    line-height: 1.2;
  }

  .news-item {
    display: block;
    line-height: 1.5;
  }

  .news-item .news-date {
    width: auto;
    margin-bottom: 8px;
  }
}

/* わたしたちの特長----- */
.top-feature-section {
  background: var(--l-green);
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.feature-card {
  height: 100%;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 4px 12px 0 rgba(40, 70, 28, .16);
}

.feature-card__img {
  aspect-ratio: 2/1;
}

.feature-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
}

.feature-card__desc {
  padding: 32px 48px;
  position: relative;
}

.feature-card .feature-icon {
  background: var(--beige);
  border-radius: 40px;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  position: absolute;
  left: 32px;
  top: -40px;
}

.feature-card .feature-icon.icon-1 {
  background: var(--beige);
}

.feature-card .feature-icon.icon-2 {
  background: var(--pink);
}

.feature-card .feature-icon.icon-3 {
  background: var(--green2);
}

.feature-card .feature-icon.icon-4 {
  background: var(--blue1);
}

.feature-card .feature-ttl {
  font-family: var(--font-mincho);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}

.feature-card .feature-txt {
  margin-top: 1.5em;
}

@media screen and (max-width: 767px) {
  .feature-list {
    display: block;
  }

  .feature-list__item:not(:last-child) {
    margin-bottom: 16px;
  }

  .feature-card {
    border-radius: 8px;
  }

  .feature-card__img {
    aspect-ratio: 9/5;
  }

  .feature-card__img img {
    border-radius: 8px 8px 0 0;
  }

  .feature-card__desc {
    padding: 24px 16px;
  }

  .feature-card .feature-icon {
    width: 56px;
    height: 56px;
    left: 16px;
    top: -36px;
  }

  .feature-card .feature-ttl {
    font-size: 22px;
  }

  .feature-card .feature-txt {
    margin-top: 1em;
  }
}

/* ストーリー----- */
.story-list {}

.story-list__item {
  margin-top: 72px;
}

.story-card {
  display: flex;
}

.story-card__img {
  width: 31.25%;
}

.story-card__desc {
  flex: 1;
}

.story-card .story-number {
  color: var(--green2);
  font-family: var(--font-mincho);
  font-size: 24px;
  font-weight: 600;
  position: relative;
}

.story-card .story-number::before {
  content: "";
  display: block;
  background: var(--green2);
  height: 1px;
  width: 56px;
  position: absolute;
  right: calc(100% + 16px);
  top: 50%;
}

.story-card .story-ttl {
  font-family: var(--font-mincho);
  font-size: 32px;
  font-weight: 600;
  line-height: 1.5;
}

.story-card .story-txt {
  margin-top: 1em;
}

@media screen and (max-width: 767px) {
  .story-list__item {
    margin-top: 0;
  }

  .story-list__item+.story-list__item {
    margin-top: 64px;
  }

  .story-card {
    flex-direction: column;
  }

  .story-card__img {
    width: 72vw;
    margin: 0 auto;
  }

  .story-card__desc {
    flex: auto;
    padding-top: 24px;
  }

  .story-card .story-number {
    font-size: 14px;
    text-align: center;
  }

  .story-card .story-number::before {
    height: 24px;
    width: 1px;
    right: 50%;
    top: -24px;
  }

  .story-card .story-ttl {
    font-size: 22px;
    text-align: center;
  }

  .story-card .story-txt {
    margin-top: 1em;
  }
}

/* 採用バナー----- */
.recruit-bnr {
  background: var(--green2);
}

.recruit-bnr__row {
  display: flex;
  color: #fff;
}

.recruit-bnr__col-txt {
  order: 2;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
  min-width: 400px
}

.recruit-bnr__col-img-l {
  order: 1;
  flex: 1;
}

.recruit-bnr__col-img-r {
  order: 3;
  flex: 1;
}

.recruit-bnr__col-img-r img,
.recruit-bnr__col-img-l img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.recruit-bnr__col-txt .content {
  text-align: center;
  letter-spacing: .1em;
}

.recruit-bnr__ttl {
  font-family: var(--font-mincho);
  font-size: 32px;
  font-weight: 600;
}

.recruit-bnr__txt {
  margin-top: 1em;
}

.recruit-bnr__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 280px;
  height: 56px;
  margin: 40px auto 0;
  border: 2px solid #fff;
  border-radius: 40px;
  font-family: var(--font-mincho);
  font-weight: 600;
  font-size: 20px;
  position: relative;
}

.recruit-bnr__btn::after {
  content: "";
  display: block;
  background: url(../img/arrow-01_white.svg) no-repeat center;
  background-size: contain;
  width: 32px;
  height: 32px;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
  .recruit-bnr__row {
    flex-wrap: wrap;
  }

  .recruit-bnr__col-txt {
    order: 0;
    padding: 40px 16px;
    min-width: initial;
    width: 100%;
    flex: auto;
  }

  .recruit-bnr__col-img-l {
    order: 1;
    width: 50%;
    flex: auto;
  }

  .recruit-bnr__col-img-r {
    order: 2;
    width: 50%;
    flex: auto;
  }

  .recruit-bnr__ttl {
    font-size: 24px;
  }

  .recruit-bnr__txt {
    letter-spacing: 0;
    font-size: 14px;
  }

  .recruit-bnr__btn {
    height: 48px;
    margin-top: 24px;
    font-size: 16px;
  }
}

/* 対象エリア----- */
.service-area-section {
  background: var(--l-beige2);
}

.service-area-section .section-container {
  max-width: 880px;
}

.service-area-box {
  background: #fff;
  border: 2px solid var(--beige);
  padding: 40px 64px 64px;
  position: relative;
}

.service-area-box__en {
  font-family: var(--font-mincho);
  color: var(--beige);
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  padding: 0 1em;
  background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 100%);
  position: absolute;
  top: -12px;
  left: 50%;
  margin-left: -2em;
}

.service-area-box__heading {
  text-align: center;
  font-family: var(--font-mincho);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: .1em;
  margin-bottom: 1em;
}

.service-area-box__txt {
  text-align: center;
  margin-bottom: 40px;
}

.service-area-box__row {
  display: flex;
  gap: 0 48px;
  align-items: center;
}

.service-area-box__col-map {
  width: 375px;
  flex-shrink: 0;
}

.service-area-block+.service-area-block {
  margin-top: 1.5em;
}

.service-area-block>dt {
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .service-area-box {
    padding: 24px 16px;
  }

  .service-area-box__en {
    font-size: 15px;
    top: -10px;
  }

  .service-area-box__heading {
    font-size: 20px;
  }

  .service-area-box__txt {
    margin-bottom: 24px;
    text-align: left;
  }

  .service-area-box__row {
    flex-direction: column;
    gap: 16px 0;
  }

  .service-area-box__col-map {
    width: auto;
  }
}

.service-doc-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1em 2em;
}

@media screen and (max-width: 767px) {
  .service-doc-list {
    gap: .5em 0;
    flex-direction: column;
  }
}

/*===================================================

 ご利用案内

===================================================*/
/* 訪問看護とは----- */
.about-txt-row {
  display: flex;
}

.about-txt-row__txt {
  width: 50%;
  flex-shrink: 0;
  font-size: 20px;
  line-height: 2;
}

.about-txt-row__img {
  padding-left: 100px;
}

.about-txt-row__img .about-img {
  position: relative;
}

.about-txt-row__img .about-img::before {
  content: "";
  background: #F2EACA;
  width: 100%;
  height: 100%;
  position: absolute;
  border-radius: 50%;
  filter: blur(1.2rem);
  background: #DFF5EB;
  bottom: 10%;
  left: 30%;
}

.about-txt-row__img .about-img img {
  position: relative;
  width: 400px;
}

@media screen and (max-width: 767px) {
  .about-txt-row {
    display: block;
  }

  .about-txt-row__txt {
    width: auto;
    font-size: 15px;
    line-height: 1.75;
  }

  .about-txt-row__img {
    padding-left: 0;
    width: 63vw;
    margin: 40px auto 0;
  }

  .about-txt-row__img .about-img img {
    width: auto;
  }
}

/* サービス内容----- */
.service-section {
  background: var(--l-green);
}

.service-section .section-lead {
  margin-bottom: 40px;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-card {
  height: 100%;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 4px 12px 0 rgba(40, 70, 28, .16);
}

.service-card__img {
  padding: 16px;
  text-align: center;
}

.service-card__img img {
  max-width: 240px;
}

.service-card__desc {
  padding: 0 24px 24px;
}

.service-card .service-ttl {
  font-family: var(--font-mincho);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}

.service-card .service-txt {
  margin-top: 1em;
}

@media screen and (max-width: 767px) {
  .service-section .section-lead {
    margin-bottom: 24px;
  }

  .service-list {
    display: block;
  }

  .service-list__item:not(:last-child) {
    margin-bottom: 10px;
  }

  .service-card {
    border-radius: 8px;
    display: flex;
  }

  .service-card__img {
    padding: 16px 0;
    width: 100px;
    flex-shrink: 0;
  }

  .service-card__img img {
    max-width: 100%;
  }

  .service-card__desc {
    padding: 16px 16px 20px 10px;
  }

  .service-card .service-ttl {
    font-size: 18px;
    text-align: left;
  }

  .service-card .service-txt {
    margin-top: 10px;
    font-size: 14px;
    text-align: left;
  }
}

/* ご利用の流れ----- */
.flow-chart-wrap {
  display: flex;
  justify-content: center;
}

.flow-chart__row {
  display: flex;
  gap: 0 40px;
}

.flow-chart__col {
  flex: 1;
  width: 280px;
  line-height: 1.5;

  .block-2 {
    height: 150px;
  }
}

.flow-chart .block-1 {
  padding: 20px 30px;
  border-radius: 4px;
  font-size: 22px;
  font-weight: 700;
  text-align: center;
}

.flow-chart .block-2 {
  padding: 20px 30px;
  border-radius: 4px;
  background: #F7F5EB;
}

.flow-chart .arrow {
  margin: 4px auto;
  width: 44px;
  height: 44px;
  background: url(../img/flow-icon-arrow.svg) no-repeat center;
  background-size: contain;
}

.flow-chart .list {}

.flow-chart .list>li {
  padding-left: 1.2em;
  text-indent: -1.4em;
  font-weight: 700;
}

.flow-chart .list>li::before {
  content: "●";
  margin-right: .2em;
}

.flow-chart__col.kaigo-hoken .block-1 {
  background: #B6E5F1;
}

.flow-chart__col.kaigo-hoken .list>li::before {
  color: var(--blue1);
}

.flow-chart__col.iryou-hoken .block-1 {
  background: #F1CDD3;
}

.flow-chart__col.iryou-hoken .list>li::before {
  color: var(--pink);
}

@media screen and (max-width: 767px) {
  .flow-chart__row {
    gap: 0 10px;
  }

  .flow-chart__col {
    flex: 1;
    width: auto;

    .block-2 {
      height: 105px;
    }
  }

  .flow-chart .block-1 {
    padding: 10px;
    font-size: 16px;
    height: 64px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .flow-chart .block-2 {
    padding: 10px;
    font-size: 13px;
  }

  .flow-chart .arrow {
    width: 28px;
    height: 28px;
  }

  .flow-chart .list>li {
    padding-left: 1em;
    text-indent: -1em;
  }
}

/* 料金について----- */
.price-section {
  background: var(--l-beige2);
}

.price-sample-box {
  background: #fff;
  border: 1px solid;
  display: flex;
}

.price-sample-box+.price-sample-box {
  margin-top: 24px;
}

.price-sample-box.kaigo-hoken {
  border-color: #B6E5F1
}

.price-sample-box.kaigo-hoken .price-sample-box__head {
  background: #B6E5F1
}

.price-sample-box.iryou-hoken {
  border-color: #F1CDD3;
}

.price-sample-box.iryou-hoken .price-sample-box__head {
  background: #F1CDD3;
}

.price-sample-box__head {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  padding: 24px;
}

.price-sample-box__head span {
  writing-mode: vertical-rl;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: .2em;
  line-height: 1;
}

.price-sample-box__body {
  padding: 40px;
}

.price-sample-box__row {
  display: flex;
}

.price-sample-box__col {}

.price-sample-box__col:nth-child(1) {
  width: 40%;
  flex-shrink: 0;
  padding-right: 40px;
}

.price-sample-box__col:nth-child(2) {
  border-left: 1px solid #ddd;
  padding-left: 40px;
  flex: 1;
}

.price-sample-box .price-total {
  margin-top: 10px;
  margin-bottom: -10px;
  text-align: right;
}

.price-sample-box .price-total__content {
  text-align: right;
  display: inline-flex;
  align-items: flex-end;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--txt-main);
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
}

.price-sample-box .price-total__content em {
  font-size: 28px;
  font-weight: 700;
  margin-left: 4px;
}

@media screen and (max-width: 767px) {
  .price-sample-box {
    flex-direction: column;
    border-radius: 4px;
    overflow: hidden;
  }

  .price-sample-box__head {
    width: auto;
    padding: 16px;
  }

  .price-sample-box__head span {
    writing-mode: initial;
    font-size: 18px;
    letter-spacing: .1em;
  }

  .price-sample-box__body {
    padding: 16px 16px 24px;
    font-size: 14px;
  }

  .price-sample-box__row {
    display: block;
  }

  .price-sample-box__col {}

  .price-sample-box__col:nth-child(1) {
    width: auto;
    padding-right: 0;
  }

  .price-sample-box__col:nth-child(2) {
    border-left: none;
    border-top: 1px solid #ddd;
    padding: 16px 0 0;
    margin-top: 24px;
  }

  .price-sample-box .price-total {
    margin-top: 16px;
    margin-bottom: 0;
  }

  .price-sample-box .price-total__content {
    font-size: 15px;
  }

  .price-sample-box .price-total__content em {
    font-size: 24px;
  }
}

/*===================================================

 採用情報

===================================================*/
/* ヘッダ----- */
.recruit-header {
  background: var(--green2);
  position: relative;
}

.recruit-header__img {
  margin-left: auto;
  width: 56.25%;
  aspect-ratio: 2/1;
  height: 400px;
}

.recruit-header__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.recruit-header__caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: calc(var(--content-width) + 4vw);
  padding-left: 4vw;
}

.recruit-header__caption .content {
  width: 40%;
  color: #fff;
  font-family: var(--font-mincho);
  letter-spacing: .2em;
}

.recruit-header-ttl {
  display: inline-flex;
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  border: 1px solid #fff;
  padding: 8px 16px 8px 20px;
}

.recruit-header-txt {
  margin-top: 24px;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.6;
}

@media screen and (max-width: 767px) {
  .recruit-header {
    background: transparent;
  }

  .recruit-header__img {
    width: 100%;
    aspect-ratio: 1/1;
    min-height: initial;
    height: auto;
  }

  .recruit-header__caption {
    background: var(--green2);
    top: auto;
    bottom: -40px;
    left: 0;
    transform: none;
    width: auto;
  }

  .recruit-header__caption .content {
    width: auto;
    padding: 24px;
  }

  .recruit-header-ttl {
    font-size: 16px;
    padding: 4px 12px;
  }

  .recruit-header-txt {
    margin-top: 8px;
    font-size: 22px;
  }
}

/* 導入部----- */
.recruit-lead-block {
  margin-top: 160px;
  position: relative;
  padding: 0 0 240px;
  display: flex;
}

.recruit-lead-block__img {
  width: 33vw;
}

.recruit-lead-block__txt {
  max-width: 800px;
  padding-left: 6vw;
}

.recruit-lead-movie {
  position: sticky;
  left: 0;
  top: 90px;
}

.recruit-lead-txt {
  font-size: 20px;
  line-height: 2.4;
}

@media screen and (max-width: 767px) {
  .recruit-lead-block {
    margin-top: 0;
    padding: 80px 0;
    flex-direction: column;
  }

  .recruit-lead-block__img {
    width: 82vw;
  }

  .recruit-lead-block__txt {
    padding: 0 24px 44px;
    order: -1;
  }

  .recruit-lead-movie {
    position: static;
  }

  .recruit-lead-txt {
    font-size: 15px;
    line-height: 1.75;
  }
}

/* こんなメンバーが働いています----- */
.staff-section {
  background: var(--l-green);
}

.staff-heading {
  position: absolute;
  top: -50px;
  left: 50%;
  margin-left: -225px;
}

.staff-list {}

.staff-list__item {
  width: 88%;
}

.staff-list__item:nth-child(even) {
  margin-left: auto;
}

.staff-list__item:nth-child(even) .staff-card {
  flex-direction: row-reverse;
}

.staff-list__item+.staff-list__item {
  margin-top: 48px;
}

.staff-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 64px;
  display: flex;
  gap: 0 40px;
}

.staff-card__img {
  width: 150px;
  text-align: center;
}

.staff-card__desc {
  flex: 1;
  align-self: center;
}

.staff-card .avatar {}

.staff-card .name {
  font-size: 14px;
}

.staff-card .staff-txt {
  line-height: 2;
}

@media screen and (max-width: 767px) {
  .staff-section .section-container {
    padding-top: 44px;
  }

  .staff-heading {
    top: -7vw;
    margin-left: -30vw;
    width: 60vw;
  }

  .staff-list__item {
    width: auto;
  }

  .staff-list__item+.staff-list__item {
    margin-top: 16px;
  }

  .staff-card {
    border-radius: 8px;
    padding: 24px 16px;
    display: block;
  }

  .staff-card__img {
    width: auto;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 0 12px;
  }

  .staff-card__desc {
    padding-top: 16px;
  }

  .staff-card .avatar {
    width: 64px;
  }

  .staff-card .name {
    font-size: 12px;
  }

  .staff-card .staff-txt {
    line-height: 1.75;
  }
}

/* 募集要項----- */
.requirements-section .section-container {
  padding-bottom: 56px;
}

.requirements-box {
  background: #fff;
  border: 2px solid var(--green2);
  padding: 40px 64px 64px;
  position: relative;
  text-align: center;
}

.requirements-box__en {
  font-family: var(--font-mincho);
  color: var(--green2);
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  padding: 0 1em;
  background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 100%);
  position: absolute;
  top: -12px;
  left: 50%;
  margin-left: -4.5em;
}

.requirements-box__heading {
  font-family: var(--font-mincho);
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 40px;
}

.requirements-box .no-job {
  font-size: 24px;
  color: var(--green1);
}

@media screen and (max-width: 767px) {
  .requirements-section .section-container {
    padding-bottom: 24px;
  }

  .requirements-box {
    padding: 16px 24px 32px;
  }

  .requirements-box__en {
    font-size: 12px;
    top: -8px;
  }

  .requirements-box__heading {
    font-size: 18px;
    margin-bottom: 24px;
  }

  .requirements-box .no-job {
    font-size: 15px;
  }
}

/*===================================================

 animation

===================================================*/
/* 初期状態（非表示・位置ずらし） */
.fadein-left,
.fadein-bottom,
.fadein-right {
  opacity: 0;
  transform: translateY(20px);
  /* デフォルトは下から */
  transition: all 1.2s ease;
}

/* 左から用に上書き */
.fadein-left {
  transform: translateX(-20px);
}

/* 右から用に上書き */
.fadein-right {
  transform: translateX(20px);
}

/* 表示時のクラス */
.is-inview {
  opacity: 1;
  transform: translate(0, 0);
}

/*===================================================

 snippet

===================================================*/
.mt--0-5em {
  margin-top: .5em;
}

.mt--1em {
  margin-top: 1em;
}

.mt--1-5em {
  margin-top: 1.5em;
}

.mt--2em {
  margin-top: 2em;
}

.mt--3em {
  margin-top: 3em;
}

.mt--4em {
  margin-top: 4em;
}

.mb--0-5em {
  margin-bottom: .5em;
}

.mb--1em {
  margin-bottom: 1em;
}

.mb--1-5em {
  margin-bottom: 1.5em;
}

.mb--2em {
  margin-bottom: 2em;
}

.mb--3em {
  margin-bottom: 3em;
}

.mb--4em {
  margin-bottom: 4em;
}

/* 寄せ */
.align--c {
  text-align: center;
}

.align--r {
  text-align: right;
}

.align--l {
  text-align: left;
}

/* フォントサイズ */
.fs--xs {
  font-size: 11px;
}

.fs--s {
  font-size: 13px;
}

.fs--sm {
  font-size: 15px;
}

.fs--m {
  font-size: 17px;
}

.fs--ml {
  font-size: 20px;
}

.fs--l {
  font-size: 24px;
}

.fs--xl {
  font-size: 32px;
}

@media screen and (max-width: 767px) {
  .fs--xs {
    font-size: 10px;
  }

  .fs--s {
    font-size: 12px;
  }

  .fs--sm {
    font-size: 13px;
  }

  .fs--m {
    font-size: 15px;
  }

  .fs--ml {
    font-size: 16px;
  }

  .fs--l {
    font-size: 18px;
  }

  .fs--xl {
    font-size: 20px;
  }
}

/* 背景色 */
.bg--l-beige {
  background: var(--l-beige2);
}

.bg--l-green {
  background: var(--l-green);
}