@charset "utf-8";
/* CSS Document */

/***************************************************
: style.css
***************************************************/
:root {
  --base-width: 1100px;
  --over-width-half: calc((100vw - var(--base-width)) / 2);
  --header_height: 125px;
  --base-color: var(--black);
  --base-bg: var(--white);
  --ff: "Noto Sans JP", sans-serif;
  /*--webf: sans-serif;*/
  --icons: "Material Icons";
  --transition: 0.3s;

  --black: #323232;
  --gray: #7f7f7f;
  --gray-2: #f5f5f2;
  --gray-3: #aaa;
  --white: #fff;

  --color_typeP: #ff679e;
  --color_typeP-1: #ff72a8;
  --color_typeP-2: #fcaae0;
  --color_typeP-3: #ffbedf;
  --color_typeP-4: #ffedf9;
  --color_typeP-5: #fdf3f9;
  --color_typeP-6: #fff3f3;
  --color_typeG: #0bbe58;
  --color_typeG-1: #96f6cb;
  --color_typeG-2: #b9ffcc;
  --color_typeG-3: #e1f9ea;
  --color_typeG-4: #7ff4c0;
  --color_typeG-5: #00af81;
  --color_typeY: #f3c800;
  --color_typeY-1: #ffef62;
  --color_typeY-2: #ffef8e;
  --color_typeY-3: #ffefa4;
  --color_typeY-4: #fff7a9;
  --color_typeY-5: #fff3bb;
  --color_typeY-6: #f3a900;
  /*fff395*/
  --color_typeO: #f39800;
  --color_typeO-1: #fff9ef;
  --color_typeO-2: #fff2dc;
  --color_typeV: #b269ad;
  --color_typeV-1: #d6b6ff;
  --color_typeV-2: #e9bedf;
  --color_typeV-3: #f5edf9;
  --color_typeV-4: #a17cba;
  --color_typeV-5: #8453a5;
  --color_typeB: #3e98f4;
  --color_typeB-1: #6de3f8;
  --color_typeB-2: #b8f4fa;
  --color_typeB-3: #dbfafd;
  --color_typeB-4: #52b0e9;
  --color_typeB-5: #45afc5;
  --color_typeB-6: #0694b1;

  --grad_type1: #d6b6ff 0%, #ffc2f5 100%;
  --grad_type2: #d6b6ff 0%, #ff60e6 100%;
}

@media (max-width: 520px) {
  :root {
    --base-width: 100%;
    --over-width-half: 5%;
    --header_height: 0px;
  }
}

html {
  scroll-padding-top: var(--header_height);
}

body {
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  min-width: var(--base-width);
  max-width: 100vw;
  margin: 0 auto;
  font-size: 1.6rem;
  font-family: var(--ff);
  /* font-feature-settings: "palt"; */
  line-height: 1.6;
  word-break: break-all;
  color: var(--base-color);
  background-color: var(--base-bg);
}

@media (max-width: 520px) {
  body {
    font-size: 1.5rem;
    padding-top: 50px;
  }
}

::placeholder {
  color: #ddd;
}

/**================================================== 
 section
================================================== **/
section,
article,
aside {
  position: relative;
  z-index: 0;
}

.o_hidden {
  overflow: hidden;
}

.w_base {
  width: min(90%, var(--base-width));
  margin-left: auto;
  margin-right: auto;
}

.sec-w_base {
  padding-left: var(--over-width-half);
  padding-right: var(--over-width-half);
}

.sec-w_0 {
}

.sec-w_70 {
  width: max(70%, var(--base-width));
  margin-left: auto;
  margin-right: auto;
}

.sec-w_form {
  width: min(100%, var(--form-width));
  margin-left: auto;
  margin-right: auto;
}

.tit-w_base {
  --titAp: 0 var(--over-width-half);
  --titCm: 8px var(--over-width-half) 40px;
}

.sec-p1 {
  padding-top: 60px;
  padding-bottom: 60px;
}

.sec-bg1,
.sec-bg2 {
  position: relative;
  padding-top: 100px;
  padding-bottom: 100px;
}

.sec-bg1:after {
  content: "";
  display: block;
  width: 75%;
  height: 100%;
  background: var(--color_typeP-4);
  border-radius: 0 150px 150px 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.sec-bg2:after {
  content: "";
  display: block;
  width: 75%;
  height: 100%;
  background: var(--color_typeP-4);
  border-radius: 150px 0 0 150px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

.bg-light,
.bg-dark {
  position: relative;
}

.bg-light:before,
.bg-dark:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--white);
  opacity: 0.3;
  z-index: 1;
}

.bg-dark:before {
  opacity: 0.8;
  mix-blend-mode: multiply;
  background: var(--black);
}

.bg-light > *,
.bg-dark > * {
  position: relative;
  z-index: 5;
}

*[class^="wa"] {
  border-radius: 50%;
  width: var(--s);
  height: var(--s);
  --v: calc((11 / 96) * var(--s) + 2.0833px);
  position: absolute;
}

time {
  white-space: nowrap;
  color: var(--gray);
}

.of_cover img {
  width: 100%;
  height: 100%;
}

.picture {
  position: relative;
  aspect-ratio: 520 / 346;
}

.picture img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: relative;
  z-index: 2;
  display: block;
  margin: 0 auto;
}

.picture:before {
  position: absolute;
  z-index: 1;
  top: -5%;
  left: -5%;
  display: block;
  width: 110%;
  height: 110%;
  content: "";
  background-color: rgba(255, 255, 255, 0.5);
  background-size: cover;
  -webkit-filter: blur(6px);
  filter: blur(6px);
  backdrop-filter: blur(6px);
}

.map iframe {
  border-radius: 30px;
  aspect-ratio: 1083/520;
}

@media screen and (max-width: 520px) {
  *[class^="wa"] {
    width: calc(var(--s) / 2);
    height: calc(var(--s) / 2);
    --v: calc((11 / 96) * (var(--s) / 1.8) + 2.0833px);
    position: absolute;
  }

  .sec-w_0 {
    padding-left: 5%;
    padding-right: 5%;
  }

  .sec-w_form {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .sec-bg1,
  .sec-bg2 {
    padding-top: 40px;
    padding-bottom: 50px;
  }

  .sec-bg1:after {
    width: 100%;
    height: 100%;
    border-radius: 0 50px 50px 0;
  }

  .sec-bg2:after {
    width: 100%;
    height: 100%;
    border-radius: 50px 0 0 50px;
  }

  .map iframe {
    border-radius: 20px;
  }
}

/**================================================== 
 タイトル
================================================== **/

:root {
  --titZ_ifz: 1.6rem;
  --titZ_ic: var(--color_typeP);
}

.titZ {
  padding: 50px var(--over-width-half);
  font-size: 4rem;
  font-weight: bold;
  position: relative;
  z-index: 3;
}

.titZ i {
  display: block;
  font-size: var(--titZ_ifz);
  font-style: normal;
  color: var(--titZ_ic);
  line-height: 1.3;
  font-weight: normal;
}

.titZ .wa1 {
  --s: 250px;
  box-shadow: 0 0 0 var(--v) var(--color_typeP-3);
  top: 50px;
  right: var(--over-width-half);
  z-index: -1;
}

.titZ .wa2 {
  --s: 180px;
  box-shadow: 0 0 0 var(--v) var(--color_typeY-2) inset;
  opacity: 0.8;
  top: 0;
  right: 10%;
  z-index: -1;
}

.titZ .wa3 {
  --s: 44px;
  background: linear-gradient(to top left, var(--grad_type1));
  top: 10%;
  right: 40%;
  opacity: 0.5;
}

.titZ .wa4 {
  --s: 200px;
  box-shadow: 0 0 0 var(--v) var(--color_typeB-1) inset;
  opacity: 0.6;
  top: 50%;
  left: 5%;
  z-index: -1;
}

:root {
  --titAc: var(--black);
  --titAm: 0 0 40px;
  --titAta: left;
  --titAai: flex-start;
  --titAjc: flex-start;
  --titAff: column;
  --titAgap: 0;
  --titAp: 0;
  --titAfz: 4rem;

  --titA_ic: var(--color_typeP-1);
  --titA_ifz: 1.6rem;
}

.titA {
  display: flex;
  align-items: var(--titAai);
  justify-content: var(--titAjc);
  flex-flow: var(--titAff);
  gap: var(--titAgap);
  font-family: var(--ff);
  font-size: var(--titAfz);
  text-align: var(--titAta);
  color: var(--titAc);
  padding: var(--titAp);
  margin: var(--titAm);
  line-height: 1.3;
  font-weight: bold;

  grid-area: titA;
}

.titA i {
  display: block;
  font-size: var(--titA_ifz);
  font-style: normal;
  color: var(--titA_ic);
  line-height: 1.3;
  font-weight: normal;
}

.titA small {
  font-size: 0.6em;
  display: block;
  margin: 15px 0 0;
}

:root {
  --titBfz: 2.8rem;
  --titBc: var(--black);
  --titBm: 0 0 40px;
  --titBta: left;
  --titBp: 0;
}

.titB {
  font-size: var(--titBfz);
  text-align: var(--titBta);
  color: var(--titBc);
  padding: var(--titBp);
  margin: var(--titBm);
  line-height: 1.5;
  font-weight: bold;

  grid-area: titB;
}

:root {
  --titCc: var(--white);
  --titCbg: var(--color_typeP);
  --titCm: 0 0 40px;
  --titCta: center;
  --titCp: 8px 15px;
  --titCfz: 3rem;
}

.titC {
  font-family: var(--ff);
  font-size: var(--titCfz);
  text-align: var(--titCta);
  color: var(--titCc);
  padding: var(--titCp);
  margin: var(--titCm);
  line-height: 1.3;
  font-weight: bold;
  background: var(--titCbg);
  border-radius: 50px;

  grid-area: var(--titC_ifz);
}

:root {
  --titDjc: center;
  --titDai: center;
  --titDta: left;
  --titDfz: 2.8rem;
  --titDc: var(--black);
  --titDm: 40px 0;
  --titDp: 0;

  --titDs: 15px;
  --titDbd: 4px solid var(--color_typeP);
}

.titD {
  display: flex;
  justify-content: var(--titDjc);
  align-items: var(--titDai);
  gap: 20px;
  font-size: var(--titDfz);
  text-align: var(--titDta);
  color: var(--titDc);
  padding: var(--titDp);
  margin: var(--titDm);
  font-weight: bold;
}

.titD:before,
.titD:after {
  flex: none;
  content: "";
  display: block;
  width: var(--titDs);
  height: var(--titDs);
  border: var(--titDbd);
  border-radius: 50px;
  margin: 0;
}

:root {
  --titEjc: flex-start;
  --titEai: center;
  --titEta: left;
  --titEfz: 2.2rem;
  --titEc: var(--black);
  --titEm: 15px 0;
  --titEp: 0;

  --titEs: 15px;
  --titEbd: 4px solid var(--color_typeP);
}

.titE {
  display: flex;
  justify-content: var(--titEjc);
  align-items: var(--titEai);
  gap: 20px;
  font-size: var(--titEfz);
  text-align: var(--titEta);
  color: var(--titEc);
  padding: var(--titEp);
  margin: var(--titEm);
  font-weight: bold;
}

.titE:before {
  flex: none;
  content: "";
  display: block;
  width: var(--titEs);
  height: var(--titEs);
  border: var(--titEbd);
  border-radius: 50px;
  margin: 0;
}

@media screen and (max-width: 520px) {
  :root {
    --titZ_ifz: 1.4rem;
    --titZ_ic: var(--color_typeP);
  }

  .titZ {
    padding: 50px var(--over-width-half);
    font-size: 2.4rem;
  }

  .titZ .wa1 {
    --s: 200px;
    right: 10px;
  }

  .titZ .wa2 {
    --s: 90px;
    top: 20px;
    right: 3%;
  }

  .titZ .wa3 {
    --s: 44px;
    top: 20px;
  }

  .titZ .wa4 {
    --s: 130px;
    top: 72%;
    left: -4%;
  }

  :root {
    --titAfz: 2.2rem;
    --titA_ifz: 1.2rem;
    --titAm: 0 0 20px;
    --titAgap: 10px;
  }

  :root {
    --titBfz: 2rem;
  }

  :root {
    --titCfz: 2rem;
    --titCm: 0 0 20px;
  }

  .titD {
    gap: 10px;
  }

  :root {
    --titDfz: 1.8rem;
    --titEfz: 1.8rem;
  }
}

/**================================================== 
 ボタン
================================================== **/
:root {
  --btnAfz: 2rem;
  --btnAw: fit-content;
  --btnAm: 20px 0;
  --btnAp: 0;
  --btnAbd: 1px solid var(--color_typeP-1);
  --btnAc: var(--color_typeP-1);
  --before: 80px;
}

.btnA {
  font-size: var(--btnAfz);
  width: var(--btnAw);
  margin: var(--btnAm);
  padding: var(--btnAp);
  color: var(--btnAc);

  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  font-weight: bold;
  grid-area: btnA;
}

.btnA:before {
  content: "→";
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  flex: none;
  width: var(--before);
  height: var(--before);
  font-size: 1em;
  line-height: 1;
  background: var(--btnAc);
  color: var(--white);
}

.btnA:hover:before,
a:hover .btnA:before {
  border: 1px solid var(--btnAc);
  background: var(--white);
  color: var(--btnAc);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

:root {
  --btnBfz: 1.8rem;
  --btnBw: auto;
  --btnBm: 50px auto;
  --btnBc: var(--color_typeP-1);
  --btnBbg: var(--white);
}

.btnB {
  font-size: var(--btnBfz);
  width: var(--btnBw);
  margin: var(--btnBm);
  color: var(--btnBc);
  background: var(--btnBbg);

  position: relative;
  display: block;
  padding: 15px 30px;
  cursor: pointer;
  border-radius: 50px;
  text-align: center;
}

.btnB:after {
  content: "→";
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
}

.btnB:hover {
  background: var(--btnBc);
  color: var(--btnBbg);
}

.btnC {
  display: block;
  border: 1px dashed var(--gray-3);
  border-radius: 50vw;
  text-align: center;
  width: fit-content;
  padding: 10px 25px;
  margin: 20px auto;
}

@media screen and (max-width: 520px) {
  :root {
    --btnAfz: 1.6rem;
    --btnAm: 20px 0;
    --before: 40px;
  }

  .btnA {
    gap: 10px;
  }
}

.btn-tel {
  text-align: center;
}

.btn-tel a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  height: 80px;
  border: 1px solid var(--white);
  border-radius: 50px;
  font-size: 2.6rem;
  font-weight: bold;
  margin: 0 0 5px;
}

.btn-tel svg {
  aspect-ratio: 3 / 4;
  height: 2.3rem;
  fill: var(--white);
}

.btn-tel a:hover {
  background: var(--white);
  color: var(--color_typeP);
  opacity: 1;
}

.btn-tel a:hover svg {
  fill: var(--color_typeP);
}

.btn-toi {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 80px;
  border: 1px solid var(--white);
  background: var(--white);
  color: var(--black);
  border-radius: 50px;
  font-size: 2rem;
  font-weight: bold;
  margin: 0 0 5px;
}

.btn-tel a:after,
.btn-toi:after {
  display: block;
  content: "→";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
  font-size: 1.6rem;
  font-weight: normal;
}

.btn-tel a:after {
  display: none;
}

.btn-toi svg {
  aspect-ratio: 3 / 4;
  height: 3rem;
  fill: var(--color_typeP);
}

@media screen and (max-width: 520px) {
  .btn-tel a,
  .btn-toi {
    height: 70px;
  }

  .btn-toi {
    margin: 30px auto 0;
    font-size: 1.8rem;
  }

  .btn-tel a:after {
    display: block;
  }
}

/**================================================== 
 パンくず
================================================== **/
*[class*="breadcrumb"] {
  width: var(--base-width);
  margin: 30px auto;
  font-size: 0.8em;
  color: var(--gray);
  position: relative;
  z-index: 5;
}

*[class*="breadcrumb"] a {
  color: var(--black);
}

@media screen and (max-width: 520px) {
  *[class*="breadcrumb"] {
    padding: 5px 5%;
    border-top: 1px solid var(--gray-2);
    border-bottom: 1px solid var(--gray-2);
    margin: 15px auto 30px;
  }
}

/**================================================== 
header
================================================== **/

header {
  position: sticky;
  top: 0;
  left: 0;
  display: grid;
  grid-template-rows: auto auto;
  grid-template-columns: auto auto;
  grid-template-areas:
    "logo menu1"
    "logo nav";
  width: 100%;
  z-index: 100;
  background: var(--base-bg);
  padding: 0 2%;
  min-width: var(--base-width);
}

header .logo {
  grid-area: logo;
  display: flex;
  align-items: center;
}

header .logo img {
  width: 280px;
  height: auto;
}

header .menu1 {
  grid-area: menu1;

  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  padding: 15px 0 13px;

  --h: 56px;
}

header .menu1 .h-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  width: auto;
  height: 4rem;
  text-align: center;
  padding: 10px 30px;
  font-size: 0.9em;
  font-weight: bold;
  line-height: 1;
  border-radius: 5px;
  border: 1px solid var(--gray);
  background: var(--white);
  color: var(--gray);
}

header .menu1 .h-btn:hover {
  background: var(--gray);
  color: var(--white);
}

header .menu1 :is(.h-rec, .h-toi) {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--white);

  width: 180px;
  height: var(--h);
  text-align: center;
  padding: 10px 30px;
  font-size: 0.9em;
  font-weight: bold;
  line-height: 1;
  border-radius: 5px;
}

header .menu1 .h-rec {
  margin-left: 15px;
  background: var(--color_typeP-1);
}

header .menu1 .h-toi {
  background: var(--color_typeG);
}

header .menu1 svg {
  aspect-ratio: 3/4;
  height: 2.3rem;
  fill: var(--white);
}

header nav {
  grid-area: nav;
  padding: 0;
  font-weight: bold;
}

header nav .gnav {
  display: flex;
  justify-content: space-between;
}

header nav .gnav a {
  padding: 0 0 15px;
}

header nav .gnav a:hover {
  color: var(--color_typeP);
  opacity: 1;
}

header nav .gnav :is(.menu2, .menu3) {
  display: none;
}

.hamburger,
#hamburger-check {
  display: none;
}

@media screen and (max-width: 1290px) {
  header .gnav {
    font-size: 1.3rem;
  }
}

@media screen and (max-width: 520px) {
  header {
    padding: 0 0 0 10px;
    position: absolute;
    height: 50px;
  }

  header .logo {
  }

  header .logo img {
    width: 240px;
    margin: 0;
  }

  header .menu1 {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: none;
    padding: 0 5px;
    gap: 5px;
    --h: 40px;
  }

  header .menu1 .h-btn {
    display: none;
  }

  header .menu1 :is(.h-rec, .h-toi) {
    flex: 1;
    width: auto;
    height: var(--h);
    padding: 5px 20px;
    border-radius: 15px 15px 0 0;
    margin: 0;
  }

  .hamburger {
    position: fixed;
    top: 5px;
    right: 10px;
    display: flex;
    height: 44px;
    width: 44px;
    justify-content: center;
    align-items: center;
    z-index: 90;
    background: var(--color_typeP);
    border-radius: 50px;
  }

  #hamburger-check {
    display: none;
  }

  /**タップされる前 open**/
  .hamburger span,
  .hamburger span:before,
  .hamburger span:after {
    content: "";
    display: block;
    height: 2px;
    width: 20px;
    border-radius: 3px;
    background-color: var(--white);
    position: absolute;
  }

  .hamburger span:before {
    bottom: 6px;
  }

  .hamburger span:after {
    top: 6px;
  }

  /**タップされたとき close**/
  #hamburger-check:checked ~ .hamburger span {
    background-color: rgba(255, 255, 255, 0);
  }

  #hamburger-check:checked ~ .hamburger span::before {
    bottom: 0;
    transform: rotate(45deg);
  }

  #hamburger-check:checked ~ .hamburger span::after {
    top: 0;
    transform: rotate(-45deg);
  }

  header nav .gnav {
    width: 100%;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    position: fixed;
    top: 0;
    left: 100%;
    /*leftの値を変更してメニューを画面外へ*/
    z-index: 80;
    background-color: var(--color_typeP);
    color: var(--black);
    transition: var(--transition);
    /*アニメーション設定*/

    font-size: 1.2em;
    flex-flow: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    padding: 20px;
    margin: 0;
  }

  #hamburger-check:checked ~ .gnav {
    left: 0;
    /*メニューを画面内へ*/
  }

  header nav .gnav a {
    width: 100%;
    background: var(--white);
    padding: 10px 20px;
    z-index: 5;
  }

  header nav .gnav a.first-child {
    padding-top: 25px;
    border-radius: 20px 20px 0 0;
  }

  header nav .gnav .last-child {
    padding-bottom: 25px;
    border-radius: 0 0 20px 20px;
  }

  header nav .gnav .menu2 {
    display: flex;
    flex-flow: wrap;
    width: 100%;
    margin: 15px 0;
    background: var(--white);
    border-radius: 20px;
    padding: 10px;
    position: relative;
    z-index: 4;
  }

  header nav .gnav .menu2 a {
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 0;
    width: 50%;
    padding: 15px;
    color: var(--gray);
    font-weight: normal;
    line-height: 1;
    background: none;
    font-size: 1.5rem;
  }

  header nav .gnav .menu2 a:before {
    content: "";
    display: inline-block;
    border: 4px solid var(--gray);
    width: 15px;
    height: 15px;
    border-radius: 50px;
  }

  header nav .gnav .menu3 {
    display: block;
    width: 100%;
    font-size: 1.3rem;
    gap: 10px;
    margin: 5px 0 0;
  }

  header nav .gnav .menu3 .btn-tel {
    color: var(--white);
    flex: 1;
    margin: 0 0 10px;
  }

  header nav .gnav .menu3 .btn-tel a {
    font-size: 2rem;
    height: 50px;
    background: var(--white);
    color: var(--color_typeP);
    padding: 0;
    border: none;
  }

  header nav .gnav .menu3 .btn-tel svg {
    height: 2rem;
    fill: var(--color_typeP);
  }

  header nav .gnav .menu3 .btn-toi {
    flex: 1;
    height: 50px;
    background: var(--color_typeG);
    color: var(--white);
    border: none;
    font-size: 1.6rem;
    margin: 0;
    padding: 0 10px 0 0;
    gap: 5px;
  }

  header nav .gnav .menu3 .btn-toi svg {
    height: 2rem;
    fill: var(--white);
  }
}

/**------------------------------ 
has_second
 ------------------------------**/
.has-second {
  position: relative;
}

.has-second dt {
  display: flex;
  align-items: center;
  gap: 0.5em;
  cursor: pointer;
  padding: 0 0 15px;
}

.has-second:hover dt {
  color: var(--color_typeP);
}

.has-second dt:after {
  content: "";
  width: 6px;
  height: 6px;
  border-top: 2px solid var(--black);
  border-right: 2px solid var(--black);
  -webkit-transform: rotate(-45deg);
  transform: rotate(135deg);
}

.has-second .second-wrapper {
  visibility: hidden;
  opacity: 0;
  transition: var(--transition);
  width: 900px;
  padding: 0;
  position: absolute;
  right: -2%;
  top: 100px;
}

.has-second:hover .second-wrapper {
  top: calc(100% - 0px);
  visibility: visible;
  opacity: 1;
}

/* second-content */
.second-content {
  --gap: 0;
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-end;
  gap: var(--gap);
  width: 100%;
  margin: 0 auto;
}

.has-second .second-content a.second {
  width: 450px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1em;
  padding: 20px;
  line-height: 1;
  background: var(--black);
  color: var(--white);
}

.has-second .second-content a.second:hover {
  background: var(--color_typeP);
  color: var(--white);
  opacity: 1;
}

/*
.has-second .second-content a.second figure img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
}*/

.has-second .second-content a.second em {
  display: flex;
  align-items: center;
  flex-flow: wrap;
  gap: 10px;
  font-size: 1.1em;
  font-weight: var(--fw-b);
}
.has-second .second-content a.second em small {
  white-space: nowrap;
}
.has-second .second-content a.second em i {
  flex: none;
  display: inline-block;
  width: 15px;
  height: 15px;
  border: 4px solid var(--white);
  border-radius: 50px;
  margin: 0;
}

@media screen and (max-width: 520px) {
  .has-second {
    width: 100%;
    background: var(--white);
    padding: 15px 20px;
  }

  .has-second dt {
    width: fit-content;
    color: var(--black);
    margin: 0;
    padding: 0 0 10px;
  }

  .has-second:hover dt {
    color: var(--black);
  }

  .has-second dt:after {
    display: none;
  }

  .has-second .second-wrapper {
    visibility: visible;
    opacity: 1;
    width: 100%;
    padding: 0;
    position: static;
  }

  .has-second:hover .second-wrapper {
    visibility: visible;
    opacity: 1;
    box-shadow: none;
  }

  /* second-content */
  .second-content {
    --gap: 1px;
    flex-flow: column;
    width: 100%;
    padding: 0;
  }

  .second-content > * {
    width: 100%;
  }

  .has-second .second-content a.second {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1em;
    padding: 10px 0 10px 1.5em;
    line-height: 1;
    background: none;
    color: var(--color_typeP);
    position: relative;
  }

  .has-second .second-content a.second small {
    font-size: 1.4rem;
    opacity: 0.7;
  }

  .has-second .second-content a.second em {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    gap: 5px;
    font-size: 0.9em;
    font-weight: var(--fw-b);
  }

  .has-second .second-content a.second em i {
    border-color: var(--color_typeP);
    position: absolute;
    top: 0.7em;
    left: 0;
  }
}

/**================================================== 
 footer
================================================== **/
footer {
  position: relative;
  display: grid;
  grid-template-rows: auto 1px auto 520px 1fr;
  grid-template-columns: 400px 1fr;
  grid-template-areas:
    "text sitemap1"
    "hr hr"
    "sitemap2 sitemap2"
    "map map"
    "copyright copyright";
  gap: 50px;
  padding-top: 50px;
  padding-bottom: 50px;
}

footer .text {
  grid-area: text;
}

footer .logo {
  margin: 0 0 30px;
}

footer .sitemap1 {
  grid-area: sitemap1;
  columns: 3;
  font-size: 2rem;
  font-weight: bold;
}

footer .sitemap1 li {
  margin: 0 0 20px;
}

footer hr {
  grid-area: hr;
  opacity: 0.3;
}

footer a:hover {
  color: var(--color_typeP);
}

footer .sitemap2 {
  grid-area: sitemap2;
  display: grid;
  grid-template-rows: auto auto;
  grid-template-columns: auto 1fr;
  grid-template-areas:
    "catc cata"
    "catb cata"
    "other cata";
  gap: 15px 30px;
}

footer .sitemap2 dt {
  color: var(--color_typeP);
  font-size: 2.2rem;
  font-weight: bold;
  margin: 0 0 8px;
}

footer .sitemap2 dl.num_catc {
  grid-area: catc;
}

footer .sitemap2 dl.num_catb {
  grid-area: catb;
}

footer .sitemap2 dl.num_cata {
  grid-area: cata;
}
footer .sitemap2 dl.num_cata dd {
  columns: 2;
}

footer .sitemap2 dl.num_other {
  grid-area: other;
}

footer .sitemap2 dd a {
  display: block;
  margin: 0 0 10px;
}

footer .footmap {
  grid-area: map;
  border-radius: 50px;
  overflow: hidden;
}

footer .footmap iframe {
  display: block;
  width: 100%;
  height: 100%;
}

footer .copyright {
  grid-area: copyright;
  text-align: center;
  margin-top: 50px;
  font-size: 1.4rem;
}

footer *[class^="wa"] {
  z-index: -1;
}

footer .wa1 {
  --s: 428px;
  box-shadow: 0 0 0 var(--v) var(--color_typeP-2) inset;
  bottom: 30px;
  left: -70px;
  opacity: 0.6;
}

footer .wa2 {
  --s: 294px;
  box-shadow: 0 0 0 var(--v) var(--color_typeB-1) inset;
  bottom: -25px;
  left: 15%;
  opacity: 0.5;
}

footer .wa3 {
  --s: 200px;
  box-shadow: 0 0 0 var(--v) var(--color_typeG-1) inset;
  bottom: 180px;
  right: 3%;
  opacity: 0.7;
}

footer .wa4 {
  --s: 296px;
  box-shadow: 0 0 0 var(--v) var(--color_typeY-2) inset;
  bottom: 50px;
  right: 10%;
  opacity: 0.5;
}

footer .wa5 {
  --s: 45px;
  background: linear-gradient(to top left, var(--grad_type1));
  right: 1%;
  bottom: 405px;
}

@media screen and (max-width: 520px) {
  footer {
    position: relative;
    display: grid;
    grid-template-rows: repeat(6, auto);
    grid-template-columns: 1fr;
    grid-template-areas:
      "text"
      "sitemap1"
      "hr"
      "sitemap2"
      "map"
      "copyright";
    gap: 20px;
    padding-top: 50px;
    padding-bottom: 50px;
  }

  footer .sitemap1 {
    columns: 2;
    font-size: 1.6rem;
  }

  footer .sitemap1 li {
    margin: 0 0 10px;
  }

  footer .sitemap2 {
    grid-area: sitemap2;
    display: grid;
    grid-template-rows: repeat(3, auto);
    grid-template-columns: 1fr;
    grid-template-areas:
      "catc"
      "cata"
      "catb"
      "other";
    gap: 15px;
  }

  footer .sitemap2 dt {
    font-size: 1.8rem;
  }

  footer .sitemap2 dl.num_cata dd {
    columns: 1;
  }

  footer .sitemap2 dd a {
    display: block;
    margin: 0 0 10px;
  }

  footer .footmap {
    border-radius: 30px;
  }

  footer .footmap iframe {
    width: 100%;
    height: 60vw;
  }

  footer .wa1 {
    bottom: auto;
    left: auto;
    top: 10px;
    right: -50px;
  }

  footer .wa2 {
    bottom: 0;
    left: -15px;
  }

  footer .wa3 {
    bottom: 400px;
    right: -25px;
  }

  footer .wa4 {
    bottom: 320px;
    right: -5px;
  }

  footer .wa5 {
    right: 5%;
    bottom: 100px;
  }
}

/**================================================== 
 aside
================================================== **/

.aside {
  position: relative;
  background: var(--color_typeP);
  border-radius: 100vh 0 0 100vh;
  padding: 70px var(--over-width-half) 50px 200px;
  color: var(--white);

  display: flex;
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 0 90px;
  z-index: 0;

  --titAc: var(--white);
  --titA_ic: var(--white);
}

.aside .btn-wrap {
  width: 85%;

  --gap: 50px;
}

.aside_wrap {
  position: relative;
  padding: 200px 0 050px var(--over-width-half);
}

.aside_wrap *[class^="wa"] {
  z-index: -1;
}

.aside_wrap .wa1 {
  --s: 168px;
  box-shadow: 0 0 0 var(--v) var(--color_typeP-3) inset;
  opacity: 0.5;
  top: 0;
  right: 19%;
  z-index: -1;
}

.aside_wrap .wa2 {
  --s: 205px;
  box-shadow: 0 0 0 var(--v) var(--color_typeB-1) inset;
  opacity: 0.5;
  top: 30px;
  right: 8%;
  z-index: -2;
}

.aside_wrap .wa3 {
  --s: 44px;
  background: linear-gradient(to top left, var(--grad_type1));
  opacity: 0.5;
  top: 70px;
  right: 3%;
}

.single-facility-aside,
.rec-cnv .aside {
  width: var(--base-width);
  margin: 100px auto 50px;
}

.rec-cnv {
  position: relative;
}

:is(.single-facility-aside, .rec-cnv) .aside {
  border-radius: 70px;
  padding: 70px 5% 50px;
  justify-content: center;
}

.rec-cnv .aside {
  background: var(--color_typeV);
  --titA_ic: var(--white);
}

.rec-cnv .btn-toi svg {
  fill: var(--color_typeV);
}

@media screen and (max-width: 520px) {
  .aside {
    background: var(--color_typeP);
    border-radius: 0;
    padding: 30px var(--over-width-half) 15px;

    display: flex;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    gap: 0 90px;
    z-index: 0;

    --titAc: var(--white);
    --titA_ic: var(--white);
    --titAjc: center;
    --titAai: center;
    --titAta: center;
  }

  .aside .btn-wrap {
    display: block;
    width: 90%;
    margin: 15px 0;

    --gap: 30px;
  }

  .aside_wrap {
    position: relative;
    padding: 120px 0 0;
  }

  .aside_wrap *[class^="wa"] {
    z-index: 1;
  }

  .aside_wrap .wa1 {
    top: 90px;
    right: auto;
    left: 15%;
  }

  .aside_wrap .wa2 {
    top: 50px;
    right: auto;
    left: -20px;
  }

  .aside_wrap .wa3 {
    top: 110px;
    right: 10%;
  }

  .single-facility-aside,
  .rec-cnv {
    width: 100%;
    margin: 40px auto;
  }

  :is(.single-facility-aside, .rec-cnv) .aside {
    border-radius: 0;
    padding: 30px 5% 15px;
  }
}

.rec-cnv .wa1 {
  --s: 168px;
  box-shadow: 0 0 0 var(--v) var(--color_typeP-3) inset;
  opacity: 0.5;
  top: -120px;
  left: 8%;
  z-index: -1;
}

.rec-cnv .wa2 {
  --s: 205px;
  box-shadow: 0 0 0 var(--v) var(--color_typeB-1) inset;
  opacity: 0.5;
  top: -180px;
  left: -3%;
  z-index: -2;
}

@media screen and (max-width: 520px) {
  .rec-cnv .wa1 {
    top: 90%;
  }

  .rec-cnv .wa2 {
    top: -30px;
    left: 80%;
  }
}

.aside-fac {
  background: var(--color_typeO);
  color: var(--white);
  border-radius: 50px;
  padding: 30px 0;

  --titAfz: 3rem;
  --titAc: var(--white);
  --titAjc: center;
  --titAai: center;
}

.aside-fac .btn-wrap {
  width: min(40%, 500px);
  margin: 30px auto;
}

/**================================================== 
.smf-form
==================================================**/
:root {
  --form-width: 980px;
  --form-fz: 1.8rem;
  --form-th-minwidth: 100%;
  --form-bd: none;
  --form-note-txt: #fff;
  --form-note-bg: var(--color_typeP);
  --form-btn-txt: #fff;
  --form-btn-bg: var(--color_typeP);
}

form input[type="text"],
form input[type="email"],
form input[type="tel"],
form textarea {
  width: 100%;
  font-size: var(--form-fz);
}

form input[name="addpost"] {
  width: 10em;
}

form textarea {
  min-height: 10em;
}

.snow-monkey-form {
  width: min(100%, var(--form-width));
  margin-inline: auto;
  padding: 50px 0;
}

.smf-item {
  padding: 30px 20px;
  font-size: var(--form-fz);
  align-items: start;
  gap: 15px;
}

.smf-item a {
  text-decoration: underline;
}

.smf-item:not(:first-child) {
  border-top: var(--form-bd);
}

.smf-item__col--label {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  flex: 0 0 20em;
  max-width: var(--form-th-minwidth);
  text-align: left;
  padding: 15px;
  margin: 0 0 20px;
  background: var(--gray-2);
  border-radius: 5px;
}

.smf-control-description {
  font-size: 0.9em;
}

.smf-item__label {
  font-weight: bold;
}

.smf-item__description {
  margin-top: 0px;
}

.smf-item__description {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 3px 10px;
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--form-note-txt);
  background-color: var(--form-note-bg);
  border-radius: 5px;
}

.smf-item__col--controls {
  padding: 0 10px;
}

.smf-complete-content {
  text-align: center;
  margin: 40px auto;
  font-size: 1.7rem;
}

@media (max-width: 520px) {
  :root {
    --form-fz: 1.6rem;
  }

  .smf-item {
    padding: 20px 0;
  }

  .smf-item__col--label {
    max-width: none;
    text-align: left;
  }

  body .is-layout-flex.sp_block {
    flex-wrap: wrap;
  }
}

/* .full-width */
.full-width.smf-item {
  display: block;
}

.full-width.smf-item .smf-item__col--label {
  display: flex;
  justify-content: center;
  max-width: none;
  padding: 0 0 15px;
  text-align: center;
}

.full-width.smf-item .smf-item__col--controls {
  max-width: none;
  text-align: center;
}

.full-width.smf-item .smf-file-control {
  justify-content: center;
}

.smf-item__controls > *:not(:last-child) {
  margin-bottom: 10px;
}

/* .smf-action */
.smf-action {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.smf-form--simple-table + .smf-action {
  margin-top: 0px;
}

.smf-action .smf-button-control__control {
  -webkit-appearance: none;
  display: grid;
  align-items: center;
  min-width: 246px;
  width: fit-content;
  min-height: 54px;
  margin: 0 auto;
  padding: 10px;
  text-align: center;
  color: var(--form-btn-txt);
  background-color: var(--form-btn-bg);
  background-image: none;
  border: 1px solid var(--form-btn-bg);
  border-radius: 50px;
}

.smf-action .smf-button-control + .smf-button-control {
  margin-left: 0;
}

.smf-rules {
  width: 100%;
  height: 200px;
  border: 1px solid gainsboro;
  padding: 20px;
  margin: 20px 0 40px;
  overflow-y: auto;
}

.form div[data-name="agree"],
.smf-item.agree {
  margin: 0 0 30px;
  text-align: center;
  font-size: 1.1em;
}

.sec-calltel {
  width: min(100%, var(--form-width));
  margin: 50px auto;
  border-radius: 30px;
  background: var(--gray-2);
  padding: 50px 5%;

  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  gap: 5px;
  z-index: 5;

  mix-blend-mode: multiply;
}

.sec-calltel h2 {
  font-size: 2rem;
  margin: 0 0 15px;
}

.sec-calltel a {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 3.7rem;
  line-height: 1;
  font-weight: bold;
}

.sec-calltel a svg {
  aspect-ratio: 3 / 4;
  height: 0.9em;
}

@media screen and (max-width: 520px) {
  .sec-calltel {
    width: 90%;
    padding: 30px 0;
    margin: 30px auto 0;
  }

  .sec-calltel h2 {
    font-size: 1.8rem;
    margin: 0 0 10px;
  }

  .sec-calltel a {
    font-size: 3.3rem;
  }

  .smf-item.agree {
    font-size: 0.9em;
  }
}

/**================================================== 
 トグル
================================================== **/
.toggle {
  display: none;
}

.wrap-toggle {
}

.wrap-toggle > * {
  margin: 0 0 20px;
  padding: 10px 25px;
}

.cl,
.ans {
  padding: 1em 40px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: var(--transition);
}

.cl:before,
.ans:before {
  font-size: 1.5rem;
  position: absolute;
  left: 0;
}

.cl {
  margin: 0 auto;
  display: block;
  position: relative;
}

.cl:before {
  content: "Q";
  top: 50%;
  transform: translateY(-50%);
}

.cl::after {
  content: "＋";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
}

.ans {
  height: 0;
  padding: 0 40px;
  overflow: hidden;
  font-size: 0.9em;
}

.ans:before {
  content: "A";
  top: 0.5em;
}

.toggle:checked + .cl + .ans {
  /*開閉時*/
  height: auto;
  padding: 0.5em 40px 1em;
  transition: var(--transition);
}

.toggle:checked + .cl::after {
  content: "－";
}

@media screen and (max-width: 520px) {
  .cl,
  .ans {
    padding: 0.5em 10px 0.5em 1.5em;
  }

  .cl:before,
  .ans:before {
  }

  .cl {
    line-height: 1.5;
  }

  .cl::after {
    right: 0;
  }

  .ans {
    padding: 0 10px 0 1.5em;
  }

  .toggle:checked + .cl + .ans {
    padding: 5px 10px 1em 1.5em;
  }
}

/**================================================== 
テーブル
================================================== **/

/**基本**/
.table-basic table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 8px;
  border-radius: 15px;
  background: var(--white);
}

.table-basic :is(th, td) {
  padding: 20px;
  border-radius: 10px;
}

.table-basic th {
  background: var(--color_typeP-3);
  width: 20%;
  font-weight: bold;
  text-align: center;
  font-size: 1.1em;
}
.table-basic td {
  background: var(--color_typeP-5);
}

@media screen and (max-width: 520px) {
  .table-basic :is(table, tbody, tr, th, td) {
    display: block;
    width: 100%;
    border: none;
  }

  .table-basic :is(th, td) {
    padding: 15px;
  }
}

/**基本**/
.table-basic2 {
  margin: 30px 0;
}

.table-basic2 table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 8px;
  border-radius: 15px;
  background: var(--white);
}

.table-basic2 :is(th, td) {
  padding: 20px;
  border-radius: 10px;
}

.table-basic2 th {
  background: color-mix(in srgb, var(--white) 100%, var(--gray) 20%);
  width: 20%;
  font-weight: bold;
  text-align: center;
  vertical-align: middle;
}

.table-basic2 tr:first-child th {
  background: var(--gray);
  color: var(--white);
  font-size: 1.8rem;
}

.table-basic2 tr:first-child td {
  background: var(--color_typeY-5);
  font-weight: bold;
  font-size: 1.8rem;
  text-align: center;
}

@media screen and (max-width: 520px) {
  .table-basic2 {
    margin: 30px 0;
  }

  .table-basic2 table {
    border-spacing: 3px;
  }

  .table-basic2 :is(th, td) {
    vertical-align: middle;
    padding: 10px;
  }

  .table-basic2 th {
    width: 30%;
    text-align: center;
  }

  .table-basic2 tr:first-child th {
    font-size: 1.6rem;
  }

  .table-basic2 tr:first-child td {
    font-size: 1.6rem;
  }
}

/**基本**/
.table-basic3 table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 8px;
  border-radius: 15px;
}

.table-basic3 :is(th, td) {
  background: var(--white);
  padding: 20px;
  border-radius: 10px;
}

.table-basic3 th {
  background: var(--color_typeP-3);
  width: 20%;
  font-weight: bold;
}

@media screen and (max-width: 520px) {
  .table-basic3 :is(table, tbody, tr, th, td) {
    display: block;
    width: 100%;
    border: none;
  }

  .table-basic3 :is(th, td) {
    padding: 15px;
    margin: 8px 0;
  }
}

/**================================================== 
 横並びリスト
================================================== **/

.list-numC {
  --num: 2;
  --g: 60px;
  --w: calc((100% - var(--g) * (var(--num) - 1)) / var(--num));
  display: flex;
  flex-flow: wrap;
  gap: var(--g);
  position: relative;
  z-index: 5;
}

.list-numC > * {
  width: var(--w);

  display: flex;
  flex-flow: column;
  gap: 20px;
}

.list-numC :is(figure, picture) {
  display: block;
  aspect-ratio: 520/346;
  border-radius: 30px;
  overflow: hidden;
}

.list-numC img {
  max-width: auto;
  width: 100%;
}

.list-numC .postinfo {
  margin-top: auto;
  font-size: 1.4rem;
  opacity: 0.8;
}

.list-numC .postinfo > * {
  display: inline-block;
}

.postinfo time:before {
  content: "update";
  font-family: var(--icons);
  opacity: 0.7;
  vertical-align: middle;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin: 0 3px 0 0;
}

.postinfo em:before {
  content: "local_offer";
  font-family: var(--icons);
  opacity: 0.7;
  vertical-align: middle;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin: 0 3px 0 0;
}

.postinfo a {
  text-decoration: underline;
}

.postinfo a:hover {
  text-decoration: none;
}

@media screen and (max-width: 520px) {
  .list-numC > * {
    gap: 15px;
  }

  .list-numC :is(figure, picture) {
    border-radius: 20px;
  }
}

/**================================================== 
カテゴリリスト
================================================== **/
.postBtn,
.catBtn,
.jobBtn,
.job-cat dl {
  position: relative;
  display: flex;
  flex-flow: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 1.5rem;
  margin: 40px auto;
  border-radius: 15px;
  padding: 20px;
  background: rgba(255, 103, 158, 0.05);
  z-index: 10;
}

.jobBtn {
  margin: 15px auto;
  justify-content: flex-start;
  gap: 30px;
}
.jobBtn > div {
  flex: 1;
  display: flex;
  flex-flow: wrap;
  gap: 0 10px;
}

.job-cat {
  position: relative;
  z-index: 10;
}

.job-cat dl + dl {
  margin: -20px 0 20px;
}
.job-cat dl input {
  display: none;
}

.jobBtn,
.job-cat dl {
  background: rgba(178, 105, 173, 0.05);
}

.postBtn {
  background: rgba(243, 152, 0, 0.05);
  margin: 0 auto;
}

.postBtn h3 {
  width: 100%;
  text-align: center;
}

.catc .postBtn {
  margin-top: 40px;
  margin-bottom: 20px;
}

.postBtn a,
.catBtn a,
.jobBtn a,
.job-cat dl label,
.job-cat dl button {
  text-shadow: 1px 1px 0 var(--white);
  color: var(--color_typeP);
  padding: 5px 15px;
}

.jobBtn a,
.job-cat dl label,
.job-cat dl button {
  color: var(--color_typeV);
}

.postBtn a {
  color: var(--color_typeO);
}

.catBtn :is(a.current, a:hover),
.postBtn :is(a.current, a:hover),
.jobBtn :is(a.current, a:hover),
.job-cat dl dd input:checked + label {
  text-shadow: -1px -1px 0 rgba(0, 0, 0, 0.1);
  background: var(--color_typeP);
  color: var(--white);
  border-radius: 50px;
}
.postBtn :is(a.current, a:hover) {
  background: var(--color_typeO);
}

.jobBtn :is(a.current, a:hover),
.job-cat dl dd input:checked + label {
  background: var(--color_typeV);
}

.job-count {
  text-align: center;
  color: var(--color_typeV);
  margin: 0 0 40px;
}

[id^="post"] {
  margin-top: -150px;
  padding-bottom: 150px;
}

@media screen and (max-width: 520px) {
  .catBtn,
  .postBtn,
  .jobBtn {
    justify-content: flex-start;
    gap: 5px;
    margin: 30px auto;
    padding: 15px;
    font-size: 1.3rem;
  }

  .postBtn {
    margin: 0 auto;
    justify-content: center;
    gap: 5px 0;
    padding: 15px 0;
  }

  .catc .postBtn {
    margin: 60px auto 0;
  }

  .catBtn a,
  .postBtn a,
  .jobBtn a {
    padding: 5px 10px;
  }
}

/**================================================== 
 ページネーション
================================================== **/
.pagenation ul {
  position: relative;
  width: 100%;
  display: flex;
  flex-flow: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 60px auto;
  z-index: 5;
}

.pagenation ul :is(span, a:not(.next, .prev)) {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 2em;
  height: 2em;
  border-radius: 50px;
  border: 1px solid var(--gray-2);
}

.pagenation ul a:is(.next, .prev):hover {
  background: var(--white);
  color: var(--color_typeP);
}

.pagenation ul :is(span, a:not(.next, .prev):hover) {
  background: var(--color_typeP);
  color: var(--white);
}

.post-type-archive-recruit .pagenation ul a:is(.next, .prev):hover {
  color: var(--color_typeV);
}

.post-type-archive-recruit .pagenation ul :is(span, a:not(.next, .prev):hover) {
  background: var(--color_typeV);
}

/**================================================== 
 splide
================================================== **/
/**HERO zoomup Start**/
#splide-type1 .splide__slide img {
  transition: 10s linear;
}

#splide-type1 .splide__slide.is-active img {
  transform: scale(1.15);
  transition-delay: 0s;
}

/**arrow CSS**/
#splide-type3 .splide__arrows {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
  padding: 30px var(--over-width-half) 30px 0;
}

#splide-type3 .splide__arrow,
#splide-type3 .splide__arrow:disabled {
  opacity: 1;
  position: static;
  transform: none;
}

#splide-type3 .splide__pagination {
  flex: 1;
  position: static;
  display: flex;
  padding: 0 30px 0 0;
}

#splide-type3 .splide__pagination > * {
  flex: 1;
}

#splide-type3 .splide__pagination .splide__pagination__page {
  width: 100%;
  border-radius: 0;
  opacity: 1;
  height: 2px;
  background: #e1e1e1;
}

#splide-type3 .splide__pagination .splide__pagination__page.is-active {
  transform: none;
  background: #989898;
}

/**================================================== 
 mv
================================================== **/
.sec-mv {
  --s: min(40vw, 570px);
  position: relative;

  display: flex;
  align-items: center;
  gap: 80px;
  min-height: calc(45px * 2 + var(--s));
}

.sec-mv .text {
  padding-left: var(--over-width-half);
  display: flex;
  flex-flow: column;
  gap: 40px;
  position: relative;
  z-index: 50;
}

.sec-mv .text h1 {
  font-size: 2.4rem;
  font-weight: bold;
}

.sec-mv .text img {
  aspect-ratio: 500/200;
  width: 520px;
  height: auto;
}

.sec-mv #splide-type1 {
  width: var(--s);
  height: var(--s);
  border-radius: 50%;
  box-shadow: 0 0 0 45px var(--color_typeB-2);
}

.sec-mv #splide-type1 picture {
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--s);
  height: var(--s);
  border-radius: 50%;
  overflow: hidden;
}

.sec-mv #splide-type1 picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.sec-mv .wa1 {
  --s: 44px;
  background: linear-gradient(to top left, var(--grad_type1));
  top: 0;
  left: 14%;
  opacity: 0.5;
}

.sec-mv .wa2 {
  --s: 230px;
  box-shadow: 0 0 0 var(--v) var(--color_typeG-2) inset;
  top: 8px;
  left: 18%;
}

.sec-mv .wa3 {
  --s: 325px;
  box-shadow: 0 0 0 var(--v) var(--color_typeY-2) inset;
  bottom: -70px;
  left: -82px;
}

.sec-mv .wa4 {
  --s: 120px;
  background: linear-gradient(to top left, var(--grad_type2));
  bottom: 60px;
  left: 50%;
  transform: translateX(-30%);
  opacity: 0.6;
}

.sec-mv .wa5 {
  --s: 328px;
  box-shadow: 0 0 0 var(--v) var(--color_typeP-2) inset;
  top: 28px;
  right: -164px;
  opacity: 0.6;
}

@media screen and (max-width: 520px) {
  .sec-mv {
    --s: min(90vw, 570px);
    position: relative;

    flex-flow: column;
    gap: 0;
    padding-top: 30px;
    min-height: calc(25px * 2 + var(--s));
  }

  .sec-mv .text {
    gap: 20px;
    width: 95%;
    padding: 0 var(--over-width-half);
  }

  .sec-mv .text h1 {
    font-size: 1.4rem;
    font-weight: bold;
  }

  .sec-mv .text img {
    width: 95%;
  }

  .sec-mv #splide-type1 {
    box-shadow: 0 0 0 25px var(--color_typeB-2);
    margin: 15px -20vw 0 0;
  }

  .sec-mv .wa1 {
    top: 0;
    left: 48%;
  }

  .sec-mv .wa2 {
    top: 8px;
    left: 68%;
  }

  .sec-mv .wa3 {
    bottom: auto;
    top: 80px;
    left: -30px;
  }

  .sec-mv .wa4 {
    bottom: -20px;
    left: 5%;
    transform: none;
  }

  .sec-mv .wa5 {
    top: 55vw;
    right: -50px;
  }
}

/**================================================== 
 Infinityloop
================================================== **/
.Infinityloop {
  margin: 40px 0;
}

.Infinityloop picture {
  aspect-ratio: 35/26;
}

.Infinityloop img {
  aspect-ratio: 35/26;
  width: 350px;
  height: auto;
  border-radius: 30px;
}

@media screen and (max-width: 520px) {
  .Infinityloop {
    margin: 60px 0;
    z-index: 10;
  }

  .Infinityloop img {
    width: 250px;
  }
}

/**================================================== 
 sec-about
================================================== **/
.sec-about {
  display: flex;
  align-items: flex-start;
  padding: 100px 0;
  margin: 30px 0;
}

.sec-about picture {
  position: relative;
  flex: none;
  width: 58%;
  border-radius: 0 150px 150px 0;
  overflow: hidden;
  z-index: 5;
}

.sec-about .text {
  position: relative;
  flex: none;
  display: flex;
  align-items: center;
  width: 48%;
  min-height: 480px;
  border-radius: 110px 0 0 110px;
  padding: 50px 5vw 50px 10vw;
  margin: 15vw 0 0 -6%;
  background: var(--color_typeP);
  color: var(--white);
  font-size: 1.8rem;
  line-height: 2;
  z-index: 4;
}

.sec-about *[clcass^="wa"] {
  z-index: -1;
}

.sec-about .wa1 {
  --s: 296px;
  box-shadow: 0 0 0 var(--v) var(--color_typeY-3) inset;
  top: 80px;
  right: 16%;
}

.sec-about .wa2 {
  --s: 200px;
  box-shadow: 0 0 0 var(--v) var(--color_typeG-1) inset;
  top: 0;
  right: 10%;
  opacity: 0.7;
}

.sec-about .wa3 {
  --s: 44px;
  background: linear-gradient(to top left, var(--grad_type1));
  top: 180px;
  right: 3%;
}

.sec-about .wa4 {
  --s: 271px;
  box-shadow: 0 0 0 var(--v) var(--color_typeB-1) inset;
  opacity: 0.5;
  top: 43vw;
  left: 3%;
}

.sec-about .wa5 {
  --s: 170px;
  box-shadow: 0 0 0 var(--v) var(--color_typeG-4) inset;
  opacity: 0.5;
  top: 50vw;
  left: calc(3% + 200px);
}

@media screen and (max-width: 520px) {
  .sec-about {
    display: flex;
    align-items: flex-start;
    flex-flow: column;
    padding: 40px 0;
    margin: 30px 0;
  }

  .sec-about picture {
    width: 90%;
    border-radius: 0 50px 50px 0;
  }

  .sec-about .text {
    flex: none;
    align-items: center;
    width: 90%;
    min-height: auto;
    border-radius: 60px 0 0 60px;
    padding: 50px 20px 50px 30px;
    margin: -30px 0 0 auto;
    font-size: 1.6rem;
  }

  .sec-about .wa1 {
    top: -80px;
    right: 20%;
  }

  .sec-about .wa2 {
    top: -100px;
    right: 8%;
  }

  .sec-about .wa3 {
    top: 0;
    right: 3%;
  }

  .sec-about .wa4 {
    top: auto;
    bottom: -50px;
    left: -30px;
  }

  .sec-about .wa5 {
    top: auto;
    bottom: -20px;
    left: 18%;
  }
}

/**================================================== 
 sec-news
================================================== **/
.sec-news {
  padding-top: 80px;
  padding-bottom: 80px;

  display: grid;
  grid-template-rows: auto 1fr;
  grid-template-columns: 250px 1fr;
  grid-template-areas:
    "titA ul"
    "btnA ul";
  gap: 0 50px;

  --btnAm: 40px 0 auto;
}

.sec-news .wa1 {
  --s: 150px;
  background: linear-gradient(to top left, var(--grad_type2));
  opacity: 0.2;
  bottom: -30px;
  right: 12%;
}

.list-news {
  grid-area: ul;
  position: relative;
  z-index: 5;
}

.list-news li:first-child {
  border-top: 1px solid color-mix(in srgb, var(--gray) 50%, white 100%);
}

.list-news li {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 30px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--gray) 50%, white 100%);
}

.list-news li a {
  font-size: 1.8rem;
}

.list-news li :is(span, em) {
  display: inline-block;
  font-size: 1.4rem;
  color: var(--gray);
  line-height: 1;
  margin: 0 1px 5px 0;
}

.list-news li span {
  border: 1px solid var(--gray);
  padding: 3px 15px;
  border-radius: 5px;
}

.list-news li em:before {
  content: "local_offer";
  font-family: var(--icons);
  opacity: 0.7;
  vertical-align: middle;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin: 0 3px 0 0;
}

.list-news li h3 {
  margin: 5px 0 0;
}

@media screen and (max-width: 520px) {
  .sec-news {
    padding-top: 40px;
    padding-bottom: 40px;

    grid-template-rows: auto 1fr auto;
    grid-template-columns: 1fr;
    grid-template-areas:
      "titA"
      "ul"
      "btnA";
    gap: 0;

    --btnAm: 20px 0 auto;
  }

  .sec-news .wa1 {
    bottom: 40px;
    right: 12%;
  }

  .list-news {
    grid-area: ul;
  }

  .list-news li {
    gap: 15px;
    padding: 15px 0;
  }

  .list-news li a {
    font-size: 1.4rem;
  }
}

/**================================================== 
 sec-vision
================================================== **/
.sec-vision {
  margin-top: 80px;

  --titAm: 0 0 50px;
  --titA_ic: var(--color_typeG-5);

  --btnAbd: 1px solid var(--color_typeG-5);
  --btnAc: var(--color_typeG-5);
  --btnAm: 60px 0 0;
}

.sec-vision.sec-bg1:after {
  background: var(--color_typeG-3);
}

.sec-vision .wa1 {
  --s: 290px;
  box-shadow: 0 0 0 var(--v) var(--color_typeB-1) inset;
  opacity: 0.4;
  top: -80px;
  left: 55%;
}

.sec-vision .wa2 {
  --s: 200px;
  box-shadow: 0 0 0 var(--v) var(--color_typeY-1) inset;
  opacity: 0.6;
  top: 0;
  left: 68%;
}

.sec-vision .wa3 {
  --s: 200px;
  box-shadow: 0 0 0 var(--v) var(--color_typeG-2) inset;
  bottom: -80px;
  right: 20%;
}

.sec-vision .wa4 {
  --s: 130px;
  box-shadow: 0 0 0 var(--v) var(--color_typeY-1) inset;
  opacity: 0.8;
  bottom: -110px;
  right: 12%;
}

.sec-vision .wa5 {
  --s: 45px;
  background: linear-gradient(to top left, var(--grad_type1));
  opacity: 0.5;
  bottom: 110px;
  right: 3%;
}

.list-vision {
  --num: 2;
  --g: 60px;

  --titBfz: 2.2rem;
  --titBm: 0;
}

@media screen and (max-width: 520px) {
  .sec-vision {
    margin-top: 30px;

    --titAm: 0 0 30px;
    --titAgap: 0;

    --btnAm: 30px 0 0;
  }

  .sec-vision .wa1 {
    top: -80px;
    left: 45%;
  }

  .sec-vision .wa2 {
    top: -15px;
    left: 68%;
  }

  .sec-vision .wa3 {
    bottom: -30px;
    right: 10%;
  }

  .sec-vision .wa4 {
    bottom: 20px;
    right: 3%;
  }

  .sec-vision .wa5 {
    bottom: -40px;
    right: auto;
    left: 10%;
  }

  .list-vision {
    --num: 1;
    --g: 30px;

    --titBfz: 1.8rem;
    --titBm: 0;
  }
}

/**================================================== 
 sec-facility
================================================== **/
.sec-facility {
  margin-top: 170px;
  padding-top: 30px;
  padding-bottom: 1px;

  --titA_ic: var(--color_typeO);

  --titCbg: var(--color_typeY);
  --titCc: var(--white);
}

.sec-facility:before {
  content: "";
  display: block;
  width: 70%;
  height: 370px;
  background: var(--color_typeY-4);
  border-radius: 100vw 0 0 100vw;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

.sec-facility .wa1 {
  --s: 197px;
  box-shadow: 0 0 0 var(--v) var(--color_typeP-3) inset;
  opacity: 0.6;
  right: -80px;
  top: 50%;
  z-index: -1;
}

.sec-facility .wa2 {
  --s: 290px;
  box-shadow: 0 0 0 var(--v) var(--color_typeY-5) inset;
  right: 2%;
  top: 54%;
  z-index: -2;
}

.sec-facility .wa3 {
  --s: 230px;
  box-shadow: 0 0 0 var(--v) var(--color_typeG-2) inset;
  left: -115px;
  bottom: 50px;
  z-index: -1;
}

.facility-tit-p {
  display: flex;
  gap: 160px;
}

.facility-tit-p p {
  flex: 1;
  margin-top: 1.3em;
}

.list-cat {
  display: flex;
  gap: 50px;
  width: 100%;
  margin: 50px 0;
}

.sec-facility .list-cat {
  margin: 50px 0 140px;
}

.list-cat > * {
  flex: 1;
}

.list-cat a {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray);
  border-radius: 20px;
  padding: 10px 25px 10px 100px;
  font-weight: bold;
  font-size: 2rem;
  line-height: 1.3;
}

.list-cat a:hover {
  border: 1px solid var(--color_typeO);
  background: var(--color_typeO-1);
  opacity: 1;
}

.list-cat a:after {
  content: "→";
}

.list-cat a:before {
  aspect-ratio: 100/150;
  aspect-ratio: 1/1;
  width: 60px;
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-position: top left;
  background-size: contain;
  position: absolute;
  left: 35px;
  top: 50%;
  transform: translateY(-50%);
}

.list-cat a[data-name="高齢向け者施設"]:before {
  background-image: url(../images/ill_img02.png);
}
.list-cat a[data-name="高齢向け者施設"]:hover {
  background-color: var(--color_typeV-3);
  border-color: var(--color_typeV);
}

.list-cat a[data-name="障がい福祉サービス事業"]:before {
  background-image: url(../images/ill_img03.png);
}

.list-cat a[data-name="児童養護施設"]:before {
  background-image: url(../images/ill_img04.png);
}
.list-cat a[data-name="児童養護施設"]:hover {
  background-color: var(--color_typeB-3);
  border-color: var(--color_typeB-5);
}

.list-senior {
  padding-top: 120px;
  margin-top: -120px;
  margin-bottom: 100px;
}
.list-senior#cata {
  --titCbg: var(--color_typeV-4);
  --btnAc: var(--color_typeV-5);
}
.list-senior#catb {
  --titCbg: var(--color_typeY-6);
  --btnAc: var(--color_typeO);
}
.list-senior#catc {
  --titCbg: var(--color_typeB-5);
  --btnAc: var(--color_typeB-6);
}

:is(.block-postlist, .block-posttellist) #cata {
  --titCbg: var(--color_typeV-4);
  --childc: var(--color_typeV-5);
}
:is(.block-postlist, .block-posttellist) #catb {
  --titCbg: var(--color_typeY-6);
  --childc: var(--color_typeO);
}
:is(.block-postlist, .block-posttellist) #catc {
  --titCbg: var(--color_typeB-5);
  --childc: var(--color_typeB-6);
}

.list-support,
.list-kids {
  padding: 120px 0 0;
}

.list-facility li {
  display: flex;
  align-items: flex-start;
  gap: 60px;
}

.list-facility li + li {
  margin-top: 60px;
}

.list-facility li picture {
  aspect-ratio: 520/400;
  /**520/346**/
  flex: none;
  display: block;
  width: 520px;
  border-radius: 40px;
  overflow: hidden;
  background: var(--gray-2);
}

.list-facility li .text {
  flex: 1;
  display: flex;
  flex-flow: column;
  padding: 5px 0;
}

.list-facility li strong {
  font-size: 2.4rem;
  font-weight: bold;
}

.list-facility li h3 {
  font-size: 4.4rem;
  font-weight: bold;
  margin: 0 0 30px;
}

.list-facility li h4 {
  font-size: 2.2rem;
  font-weight: bold;
  margin: 0 0 15px;
}

.list-facility li .btnA {
  margin: 35px 0 0;
  /*--btnAc: var(--color_typeO);*/
}

.hr-wave {
  margin: 80px 0 120px;
  width: 100%;
  height: 70px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><path d="M0 10 Q 25 0 50 10 T 100 10" fill="none" stroke="black" stroke-width="0.1"/></svg>');
  background-repeat: repeat-x;
}

@media screen and (max-width: 520px) {
  .sec-facility {
    margin-top: 60px;
    padding-top: 30px;

    --titA_ic: var(--color_typeO);

    --titCbg: var(--color_typeY);
    --titCc: var(--white);
  }

  .sec-facility:before {
    width: 90%;
    height: 80vw;
  }

  .sec-facility .wa1 {
    right: -20px;
    top: 45%;
  }

  .sec-facility .wa2 {
    right: 2%;
    top: 47%;
  }

  .sec-facility .wa3 {
    left: auto;
    right: -30px;
    bottom: 30px;
  }

  .facility-tit-p {
    flex-flow: column;
    gap: 0;
  }

  .facility-tit-p p {
    margin-top: 0;
  }

  .list-cat {
    display: block;
    width: 85%;
    margin: 40px auto;
  }

  .sec-facility .list-cat {
    margin: 40px auto;
  }

  .list-cat a {
    height: 60px;
    gap: 10px;
    padding: 15px 10px 15px 80px;
    font-size: 1.5rem;
    justify-content: space-between;
    margin: 20px 0 0;
  }

  .list-cat a:hover {
    border: 1px solid var(--color_typeO);
    background: var(--color_typeO-1);
    opacity: 1;
  }

  .list-cat a:before {
    width: 50px;
    left: 15px;
  }

  .list-support,
  .list-kids {
    padding: 60px 0 0;
  }

  .list-facility li {
    flex-flow: column;
    gap: 15px;
  }

  .list-facility li + li {
    margin-top: 40px;
  }

  .list-facility li picture {
    width: 100%;
    border-radius: 30px;
  }

  .list-facility li strong {
    font-size: 1.5rem;
  }

  .list-facility li h3 {
    font-size: 2.2rem;
    margin: 0 0 15px;
  }

  .list-facility li h4 {
    font-size: 1.8rem;
    margin: 0 0 5px;
  }

  .list-facility li .btnA {
    margin: 20px 0 0;
  }

  .hr-wave {
    margin: 40px 0 80px;
    height: 40px;
  }
}

/**================================================== 
sec-blog 
================================================== **/
.sec-blog {
  margin-top: 80px;

  --titAm: 0 0 50px;
  --titA_ic: var(--color_typeP);

  --btnAbd: 1px solid var(--color_typeP);
  --btnAc: var(--color_typeP);
  --btnAm: 60px 0 0;
}

.sec-blog.sec-bg1:after {
  background: var(--color_typeP-4);
}

.sec-blog .wa1 {
  --s: 170px;
  box-shadow: 0 0 0 var(--v) var(--color_typeP-3) inset;
  opacity: 0.5;
  top: -70px;
  left: 60%;
}

.sec-blog .wa2 {
  --s: 200px;
  box-shadow: 0 0 0 var(--v) var(--color_typeB-1) inset;
  opacity: 0.5;
  top: -30px;
  left: 68%;
}

.sec-blog .wa3 {
  --s: 45px;
  background: linear-gradient(to top left, var(--grad_type1));
  opacity: 0.5;
  top: -20px;
  right: 8%;
}

.sec-blog .wa4 {
  --s: 430px;
  box-shadow: 0 0 0 var(--v) var(--color_typeP-3) inset;
  opacity: 0.6;
  bottom: -80px;
  right: 5%;
}

.sec-blog .wa5 {
  --s: 295px;
  box-shadow: 0 0 0 var(--v) var(--color_typeY-5) inset;
  opacity: 0.8;
  bottom: -150px;
  right: 26%;
}

.sec-blog .wa6 {
  --s: 45px;
  background: linear-gradient(to top left, var(--grad_type1));
  opacity: 0.5;
  bottom: -100px;
  right: 55%;
}

.list-blog {
  --num: 3;
  --g: 40px;

  --titBfz: 2.2rem;
  --titBm: 0;
  --titBc: var(--color_typeP);
}

.list-blog a {
  display: flex;
  flex-flow: column;
  gap: 20px;
}

.list-blog a > *:not(picture) {
  padding-left: 10px;
  padding-right: 10px;
}

@media screen and (max-width: 520px) {
  .sec-blog {
    margin-top: 40px;

    --titAm: 0 0 30px;

    --btnAm: 30px 0 0;
  }

  .sec-blog.sec-bg1:after {
    height: 100%;
  }

  .sec-blog .wa1 {
    top: -70px;
    left: 5%;
  }

  .sec-blog .wa2 {
    top: -40px;
    left: 15%;
  }

  .sec-blog .wa3 {
    top: -40px;
    right: 10%;
  }

  .sec-blog .wa4 {
    bottom: -100px;
    right: -30px;
    z-index: 0;
  }

  .sec-blog .wa5 {
    bottom: -100px;
    right: 30%;
  }

  .sec-blog .wa6 {
    bottom: -40px;
    right: 80%;
  }

  .list-blog {
    --num: 1;
    --g: 40px;

    --titBfz: 1.7rem;
  }

  .list-blog a {
    gap: 10px;
  }
}

/**================================================== 
 sec-history
================================================== **/

.sec-history {
  padding-top: 120px;
  padding-bottom: 120px;
}

.history-tit-p {
  display: grid;
  grid-template-rows: repeat(3, auto);
  grid-template-columns: 1fr 642px;
  grid-template-areas:
    "titA pic"
    "p pic"
    "btnA pic";
  gap: 30px 100px;
  margin-right: -196px;

  --titAm: 120px 0 0;
  --titA_ic: var(--color_typeV);

  --btnAbd: var(--color_typeV);
  --btnAc: var(--color_typeV);
  --btnAm: 0;
}

.history-tit-p p {
  grid-area: p;
}

.history-tit-p picture {
  grid-area: pic;
}

@media screen and (max-width: 520px) {
  .sec-history {
    padding-top: 100px;
    padding-bottom: 50px;
  }

  .history-tit-p {
    display: grid;
    grid-template-rows: repeat(4, auto);
    grid-template-columns: 1fr;
    grid-template-areas:
      "titA "
      "pic"
      "p"
      "btnA";
    gap: 20px;
    margin-right: auto;

    --titAm: 0;
  }
}

/**================================================== 
sec-odou 
================================================== **/
.sec-other {
  padding-top: 150px;
  padding-bottom: 60px;

  --btnAbd: var(--color_typeB);
  --btnAc: var(--color_typeB);
  --btnAm: 40px 0 0;
}

.sec-other.sec-bg2:after {
  height: 75%;
  background: var(--color_typeB-3);
}

.other-tit-p {
  display: grid;
  grid-template-rows: repeat(3, auto) 1fr;
  grid-template-columns: 58% 1fr;
  grid-template-areas:
    "pic titA"
    "pic titB"
    "pic p"
    "pic btnA";
  align-items: start;
  gap: 0 60px;
  padding: 0 0 60px;

  --titA_ic: var(--color_typeB);

  --titBfz: 2.2rem;
  --titBm: 0 0 10px;
}

.other-tit-p p {
  grid-area: p;
}

.other-tit-p picture {
  grid-area: pic;
  position: relative;
  flex: none;
  border-radius: 80px;
  overflow: hidden;
  z-index: 5;
}

.list-other {
  padding: 60px 0;

  --titBfz: 2.9rem;
  --titBm: 0;
  --g: 60px;
}

.list-other li {
  gap: 20px;

  --btnAm: auto 0 0;
}

.sec-other .wa1 {
  --s: 270px;
  box-shadow: 0 0 0 var(--v) var(--color_typeB-1) inset;
  opacity: 0.5;
  top: -150px;
  left: 40%;
}

.sec-other .wa2 {
  --s: 170px;
  box-shadow: 0 0 0 var(--v) var(--color_typeG-4) inset;
  opacity: 0.5;
  top: -150px;
  left: 35%;
}

.sec-other .wa3 {
  --s: 230px;
  box-shadow: 0 0 0 var(--v) var(--color_typeG-2) inset;
  opacity: 0.5;
  top: 0;
  left: -3%;
}

@media screen and (max-width: 520px) {
  .sec-other {
    padding-top: 50px;
    padding-bottom: 50px;

    --btnAbd: var(--color_typeB);
    --btnAc: var(--color_typeB);
    --btnAm: 30px 0 0;
  }

  .sec-other.sec-bg2:after {
    height: 73%;
  }

  .other-tit-p {
    display: grid;
    grid-template-rows: repeat(5, auto);
    grid-template-columns: 1fr;
    grid-template-areas:
      "titA"
      "pic"
      "titB"
      "p"
      "btnA";
    gap: 0;
    padding: 0;

    --titBfz: 1.8rem;
    --titBm: 15px 0;
  }

  .other-tit-p .text {
    display: grid;
    grid-template-columns: subgrid;
  }

  .other-tit-p picture {
    width: 100%;
    border-radius: 30px;
  }

  .list-other {
    padding: 40px 0 0;

    --titBfz: 1.8rem;
    --titBm: 0;
    --g: 20px;
  }

  .list-other li {
    gap: 15px;
  }

  .sec-other .wa1 {
    top: -80px;
    left: 60%;
  }

  .sec-other .wa2 {
    top: -15px;
    left: 50%;
  }

  .sec-other .wa3 {
    top: auto;
    left: auto;
    bottom: 30px;
    right: -20px;
    z-index: -1;
  }
}

/**================================================== 
 sec-recruit
================================================== **/

.sec-recruit {
  padding-top: 100px;
  padding-bottom: 120px;
  margin-bottom: 100px;
}

.sec-recruit.sec-bg1:after {
  height: 80%;
  background: var(--color_typeV-3);
  z-index: -2;
}

.recruit-tit-p {
  display: grid;
  grid-template-rows: repeat(3, auto) 1fr;
  grid-template-columns: 1fr 642px;
  grid-template-areas:
    "titA pic"
    "titB pic"
    "p pic"
    "btnA pic";

  gap: 0 100px;
  align-items: start;
  margin-right: -196px;

  --titA_ic: var(--color_typeV);

  --titBfz: 2.2rem;
  --titBm: 0 0 10px;

  --btnAbd: var(--color_typeV);
  --btnAc: var(--color_typeV);
  --btnAm: 40px 0 0;
}

.sec-recruit p {
  grid-area: p;
}

.sec-recruit picture {
  grid-area: pic;
}

.sec-recruit .wa1 {
  --s: 230px;
  box-shadow: 0 0 0 var(--v) var(--color_typeV-2) inset;
  opacity: 0.6;
  bottom: 30px;
  left: 50%;
}

.sec-recruit .wa2 {
  --s: 180px;
  box-shadow: 0 0 0 var(--v) var(--color_typeY-5) inset;
  opacity: 0.8;
  bottom: -40px;
  left: 43%;
}

.sec-recruit .wa3 {
  --s: 300px;
  box-shadow: 0 0 0 var(--v) var(--color_typeP-3) inset;
  opacity: 0.6;
  bottom: -180px;
  left: 5%;
}

.sec-recruit .wa4 {
  --s: 80px;
  background: linear-gradient(to top left, var(--grad_type1));
  opacity: 0.5;
  bottom: -200px;
  left: 25%;
}

@media screen and (max-width: 520px) {
  .sec-recruit {
    padding-top: 50px;
    padding-bottom: 50px;
    margin-bottom: 30px;
  }

  .sec-recruit.sec-bg1:after {
    height: 100%;
  }

  .recruit-tit-p {
    display: grid;
    grid-template-rows: repeat(5, auto);
    grid-template-columns: 1fr;
    grid-template-areas:
      "titA"
      "pic"
      "titB"
      "p"
      "btnA ";

    gap: 15px;
    align-items: start;
    margin-right: 0;

    --titBfz: 1.8rem;
    --titBm: 0;

    --btnAm: 15px 0 0;
  }

  .sec-recruit .wa1 {
    bottom: -50px;
    left: 50%;
  }

  .sec-recruit .wa2 {
    bottom: auto;
    top: 25px;
    left: 65%;
  }

  .sec-recruit .wa3 {
    bottom: -100px;
    left: 70%;
  }

  .sec-recruit .wa4 {
    bottom: -70px;
    left: 25%;
  }
}

/**================================================== 
 single-facility
================================================== **/
section[class^="single-facility"] img {
  border-radius: 20px;
}

.single-post .titZ {
  --titZ_ic: var(--color_typeO);
}

:is(.post-type-archive-recruit, .tax-recruit-cat, .single-recruit) .titZ,
:is(.post-type-archive-recruit, .tax-recruit-cat, .single-recruit) {
  --titZ_ic: var(--color_typeV);
  --titA_ic: var(--color_typeV);
}

.single-facility-1 {
  padding-top: 40px;
  padding-bottom: 40px;
  z-index: 3;
}

.box-facility {
  display: grid;
  grid-template-rows: auto auto 1fr;
  grid-template-columns: 520px 1fr;
  grid-template-areas:
    "pic h1"
    "pic text"
    "dl text";
  align-items: start;
  gap: 20px 60px;

  --btnAc: var(--color_typeO);
}

.box-facility h1 {
  grid-area: h1;
  gap: 30px;
  font-size: 4.4rem;
  font-weight: bold;
}

.box-facility h1 strong {
  display: block;
  font-size: 2.4rem;
  font-weight: bold;
}

.box-facility dl {
  grid-area: dl;
  width: 100%;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  color: var(--color_typeO);
  background: var(--color_typeO-2);
  padding: 15px 20px;
  border-radius: 20px;
}

.box-facility dl dt {
  font-weight: bold;
  font-size: 1.7rem;
  margin: 0;
}

.box-facility dl dd {
  margin: 0;
  width: 100%;
}

.box-facility dl .btn-tel a {
  background: var(--white);
  color: var(--color_typeO);
  border: 1px solid var(--color_typeO);
  height: auto;
  padding: 8px 30px;
  margin: 0;
  width: 100%;
  font-size: 2.2rem;
}

.box-facility dl .btn-tel a svg {
  fill: var(--color_typeO);
}

.box-facility picture {
  grid-area: pic;
  aspect-ratio: 520/400;
  /**520/346**/
  flex: none;
  display: block;
  width: 520px;
  border-radius: 40px;
  overflow: hidden;
  background: var(--gray-2);
}

.box-facility .text {
  grid-area: text;
  flex: 1;
  display: flex;
  flex-flow: column;
  padding: 5px 0;
}

.box-facility dl .btn-tel a + .base-info {
  margin-top: 15px;
}
.box-facility .base-info {
  margin: 5px auto 0;
  color: var(--black);
}
.box-facility .base-info th {
  width: 40%;
  border-right: 1px dotted var(--gray);
  padding: 3px 15px;
  white-space: nowrap;
  text-align: right;
}
.box-facility .base-info td {
  padding: 0 15px;
  text-align: left;
}

.box-facility h2 {
  font-size: 2.2rem;
  font-weight: bold;
  margin: 0 0 15px;
}

@media screen and (max-width: 520px) {
  .single-facility-1 {
    padding-top: 0px;
    padding-bottom: 40px;
  }

  .box-facility {
    display: grid;
    grid-template-rows: auto auto 1fr auto;
    grid-template-columns: 1fr;
    grid-template-areas:
      "h1"
      "pic "
      "dl"
      "text";
    align-items: start;
    gap: 20px 60px;
  }

  .box-facility h1 {
    grid-area: h1;
    gap: 30px;
    font-size: 3rem;
  }

  .box-facility h1 strong {
    font-size: 1.6rem;
  }

  .box-facility dl dt {
    font-size: 1.8rem;
  }

  .box-facility dl {
    width: 100%;
    justify-content: center;
    gap: 10px;
    border-radius: 30px;
    padding: 15px 15px 20px;
  }

  .box-facility dl .btn-tel {
    width: 100%;
  }

  .box-facility picture {
    width: 100%;
    border-radius: 30px;
  }

  .box-facility h2 {
    font-size: 2.2rem;
    font-weight: bold;
    margin: 0 0 15px;
  }
}

.add-box {
  margin: 20px auto 0;
  padding: 15px 0 1px;
  border-top: 1px dashed var(--gray-3);
  font-size: 0.9em;
}

.add-box ul li {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin: 0 0 15px;
}

.add-box ul li img {
  flex: none;
  width: 40%;
  height: auto;
  border-radius: 10px;
}

.add-box:last-of-type {
  border-bottom: 1px dashed var(--gray-3);
  padding-bottom: 10px;
}

/**================================================== 
 .sec-facility-0
================================================== **/
.sec-facility-0 {
  padding-top: 1px;
  padding-bottom: 1px;
}

.list-sub {
  margin: 40px 0;
  border: 5px solid var(--color_typeO);
  border-radius: 40px;
  background: var(--white);
}

.list-sub li {
  position: relative;
  display: flex;
  flex-flow: row-reverse;
  justify-content: space-between;
  gap: 60px;
  padding: 40px;
}

.list-sub li + li {
  border-top: 5px dotted var(--color_typeO);
}

.list-sub li picture {
  width: 45%;
  display: block;
  aspect-ratio: 520/346;
  border-radius: 20px;
  overflow: hidden;
}

.list-sub li .text {
  flex: 1;
}

.list-sub li h3 {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.3;
  margin: 15px 0;
}

.list-sub li strong {
  width: 100%;
  display: block;
  font-size: 1.6rem;
  font-weight: bold;
}

@media screen and (max-width: 520px) {
  .list-sub {
    margin: 1px 0 20px;
  }

  .list-sub li {
    flex-flow: column;
    gap: 20px;
    padding: 25px 20px 20px;
  }

  .list-sub li h3 {
    width: 100%;
    font-size: 2.2rem;
    margin: 0 0 15px;
  }

  .list-sub li strong {
    margin: 0 0 5px;
  }

  .list-sub li picture {
    width: 100%;
    margin: 0 0 5px;
  }

  .list-sub li .text {
    width: 100%;
  }
}

/**================================================== 
 施設 お知らせ
================================================== **/

.single-post .sec-news {
  --titA_ic: var(--color_typeO);
  --btnAc: var(--color_typeO);
}

/**================================================== 
 .single-facility-2
================================================== **/
.single-facility-2 {
  padding-top: 60px;
  padding-bottom: 60px;

  --titCbg: var(--color_typeO);
  --titCc: var(--white);

  --titDbd: 4px solid var(--color_typeO);
}

.single-facility-2 .w_base p {
  font-size: 1.1em;
}

.single-facility-2 .w_base strong {
  font-size: 1.2em;
  display: inline-block;
}

.list-number {
  margin: 40px -30px 80px 30px;

  --titBfz: 2.2rem;
  --titBm: 0;
}

.list-number > * {
  position: relative;
  padding: 50px;
  display: grid;
  grid-template-rows: auto 1fr;
  grid-template-columns: 1fr 400px;
  grid-template-areas:
    "h pic"
    "text pic";
  gap: 20px 50px;
  margin: 0 0 60px;
  counter-increment: number;
}

.list-number > *:after {
  content: "";
  display: block;
  width: 80%;
  height: 100%;
  background: var(--color_typeO-2);
  border-radius: 50px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.list-number > *:before {
  content: counter(number, decimal-leading-zero);
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 2.8rem;
  color: var(--color_typeO);
  background: var(--white);
  border: 8px solid var(--color_typeO-2);
  width: 80px;
  height: 80px;
  border-radius: 50px;
  position: absolute;
  top: -30px;
  left: -30px;
}

.list-number h4 {
  grid-area: h;
  font-weight: bold;
  font-size: 2.2rem;
  margin: 0;
  line-height: 1.3;
}

.list-number h4::first-letter {
  font-size: 1.4em;
  color: var(--color_typeO);
}

.list-number .text {
  grid-area: text;
}

.list-number h5 {
  font-weight: bold;
  font-size: 1.8rem;
  margin: 0 0 10px;
}

.list-number picture {
  grid-area: pic;
  display: block;
  aspect-ratio: 520/346;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 0 0 8px var(--white);
}

.list-number .text a {
  display: inline-block;
  border-bottom: 1px dashed currentColor;
}
.list-number .text a:hover {
  border-bottom: none;
}

.single-facility-2 *[class^="wa"] {
  z-index: -2;
}

.single-facility-2 .wa1 {
  --s: 271px;
  box-shadow: 0 0 0 var(--v) var(--color_typeY-2) inset;
  opacity: 0.8;
  top: -50px;
  left: 3%;
}

.single-facility-2 .wa2 {
  --s: 200px;
  box-shadow: 0 0 0 var(--v) var(--color_typeO) inset;
  opacity: 0.3;
  top: -70px;
  left: -50px;
}

.single-facility-2 .wa3 {
  --s: 300px;
  box-shadow: 0 0 0 var(--v) var(--color_typeP-3) inset;
  opacity: 0.6;
  right: -80px;
  top: 50%;
}

.single-facility-2 .wa4 {
  --s: 290px;
  box-shadow: 0 0 0 var(--v) var(--color_typeY-5) inset;
  opacity: 0.8;
  right: 2%;
  top: 54%;
  z-index: -2;
}

.single-facility-2 .wa5 {
  --s: 230px;
  box-shadow: 0 0 0 var(--v) var(--color_typeG-3) inset;
  left: 50px;
  bottom: 50px;
}

@media screen and (max-width: 520px) {
  .single-facility-2 {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .list-number {
    margin: 40px auto;

    --titBfz: 1.8rem;
    --titBm: 0;
  }

  .list-number > * {
    padding: 40px 20px 20px;
    grid-template-rows: auto 1fr auto;
    grid-template-columns: 1fr;
    grid-template-areas:
      "h"
      "text"
      "pic";
    gap: 15px;
    margin: 40px 0;
  }

  .list-number > *:after {
    width: 100%;
    height: 100%;
    border-radius: 30px;
  }

  .list-number > *:before {
    width: 70px;
    height: 70px;
    top: -30px;
    left: -15px;
    font-size: 2.3rem;
  }

  .list-number h4 {
    font-size: 1.9rem;
  }

  .list-number picture {
    width: 100%;
    margin-top: 5px;
  }

  .single-facility-2 .wa1 {
    top: -30px;
    left: 70%;
  }

  .single-facility-2 .wa2 {
    top: 0;
    left: 90%;
  }

  .single-facility-2 .wa3 {
    right: -80px;
    top: 20%;
  }

  .single-facility-2 .wa4 {
    right: 80%;
    top: 22%;
  }

  .single-facility-2 .wa5 {
    left: 50px;
    bottom: 50px;
  }
}

/**================================================== 
 single-facility-3
================================================== **/

.single-facility-3 {
  padding-bottom: 20px;

  --titCbg: var(--color_typeY);
  --titCc: var(--white);

  --titDbd: 4px solid var(--color_typeY);
  --titDm: 60px auto 20px;
  --titDta: left;
  --titDjc: flex-start;

  --btnBbg: var(--color_typeY);
  --btnBc: var(--white);
  --btnBw: 320px;
  --btnBm: 1em 0 2em;
}

.single-facility-3 .titD:after {
  display: none;
}

.single-facility-3 p + p {
  margin-top: 1em;
}

.single-facility-3 p strong {
  font-size: 1.2em;
  display: inline-block;
}

.list-gallery {
  margin: 80px 0 100px;
  --num: 3;
  --g: 40px;

  --titBfz: 1.8rem;
  --titBm: 0;
}

.list-gallery > * {
  gap: 10px;
}
.single-facility-3 *[class^="wa"] {
  z-index: -1;
}

.single-facility-3 .wa1 {
  --s: 208px;
  box-shadow: 0 0 0 var(--v) var(--color_typeG-2) inset;
  bottom: 150px;
  right: -70px;
  opacity: 0.6;
}

.single-facility-3 .wa2 {
  --s: 294px;
  box-shadow: 0 0 0 var(--v) var(--color_typeY-3) inset;
  bottom: -30px;
  right: 1%;
  opacity: 0.6;
}

.single-facility-3 .wa3 {
  --s: 200px;
  box-shadow: 0 0 0 var(--v) var(--color_typeB-2) inset;
  opacity: 0.8;
  top: -100px;
  right: 3%;
}

.single-facility-3 .wa4 {
  --s: 150px;
  background: linear-gradient(to top left, var(--grad_type2));
  opacity: 0.2;
  bottom: 50vw;
  right: 2%;
}

@media screen and (max-width: 520px) {
  .single-facility-3 {
    padding-bottom: 20px;

    --titDm: 30px auto 10px;
  }

  .single-facility-3 .w_base {
    width: 100%;
  }

  .single-facility-3 p strong {
    font-size: 1.05em;
  }

  .single-facility-3 p + p {
    margin-top: 1em;
  }

  .list-gallery {
    margin: 40px 0;
    --num: 2;
    --g: 5px;

    --titBfz: 1.3rem;
  }

  .list-gallery p {
    font-size: 0.8em;
    margin: 0 0 20px;
  }

  .single-facility-3 .wa1 {
    right: -70px;
    opacity: 0.6;
  }

  .single-facility-3 .wa2 {
    bottom: 0%;
    right: 70%;
    opacity: 0.6;
  }

  .single-facility-3 .wa3 {
    top: -100px;
    right: 3%;
  }

  .single-facility-3 .wa4 {
    bottom: 50vw;
    right: 2%;
  }
}

/**================================================== 
 single-facility-4
================================================== **/
.single-facility-4 {
  padding-top: 100px;
  padding-bottom: 20px;

  --titCbg: var(--color_typeP);
  --titCc: var(--white);

  --titDbd: 4px solid var(--color_typeP);
  --titDm: 60px auto 20px;
}

.list-oneday {
  width: 90%;
  position: relative;
  margin: 50px auto 100px;

  background: var(--color_typeP-5);
  padding: 50px 10%;
  border-radius: 40px;
}

.list-oneday:before {
  content: "";
  display: block;
  width: 10px;
  height: 100%;
  border-right: 5px dotted var(--color_typeP);
  position: absolute;
  top: 0;
  left: 30%;
}

.list-oneday li {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 30px;
}

.list-oneday li + li {
  margin: 50px 0 0;
}

.list-oneday li strong {
  position: relative;
  display: block;
  flex: none;
  width: 25%;
  background: var(--color_typeP);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 15px 0 0 15px;
  font-size: 1.8rem;
  margin: 0;
}

.list-oneday li strong:after {
  content: "";
  width: 5px;
  height: calc(100% + 16px);
  position: absolute;
  background: var(--color_typeP);
  border-radius: 50px;
  top: -8px;
  right: -5px;
}

.list-oneday li dl {
  flex: 1;
  padding: 10px 30px 20px;
  border-radius: 15px;
}

.list-oneday li dl dt {
  font-size: 1.8rem;
  font-weight: bold;
}

.list-oneday picture {
  width: 320px;
  height: auto;
  display: block;
  border-radius: 30px;
  margin: 20px 0;
  border: 5px solid var(--white);
  overflow: hidden;
}

.single-facility-4 *[class^="wa"] {
  z-index: -1;
}

.single-facility-4 .wa1 {
  --s: 296px;
  box-shadow: 0 0 0 var(--v) var(--color_typeY-5) inset;
  bottom: 80px;
  right: -30px;
}

.single-facility-4 .wa2 {
  --s: 320px;
  box-shadow: 0 0 0 var(--v) var(--color_typeV-3) inset;
  top: 0;
  left: 3%;
}

.single-facility-4 .wa3 {
  --s: 100px;
  background: linear-gradient(to top left, var(--grad_type1));
  opacity: 0.3;
  top: 100px;
  right: 1%;
}

.single-facility-4 .wa4 {
  --s: 271px;
  box-shadow: 0 0 0 var(--v) var(--color_typeO-2) inset;
  bottom: 100px;
  left: 3%;
}

.single-facility-4 .wa5 {
  --s: 170px;
  box-shadow: 0 0 0 var(--v) var(--color_typeP-2) inset;
  opacity: 0.5;
  bottom: 30px;
  left: 0;
}

.single-facility-4 .wa6 {
  --s: 170px;
  box-shadow: 0 0 0 var(--v) var(--color_typeB-2) inset;
  opacity: 0.3;
  top: 23vw;
  right: 3%;
}

.single-facility-4 .wa7 {
  --s: 44px;
  background: linear-gradient(to top left, var(--grad_type1));
  opacity: 0.3;
  bottom: 50px;
  right: 15%;
}

.list-event {
  --num: 2;
  --g: 60px;
  margin: 40px auto 100px;
}

.list-event li strong {
  font-size: 2rem;
  font-weight: bold;
  color: var(--color_typeP);
  /*background: var(--color_typeP-4);*/
  border: 3px solid var(--color_typeP);
  background: var(--white);
  border-radius: 50px;
  text-align: center;
  padding: 15px;
}

.list-event li .pic {
  display: flex;
  flex-flow: wrap;
  gap: 15px;
}

.list-event li .pic picture {
  width: calc((100% - 15px) / 2);
  display: block;
  aspect-ratio: 520/346;
  border-radius: 20px;
  overflow: hidden;
}

.list-event li p {
  margin: 0 15px;
}

.list-aid {
  margin: 40px 0 100px;
}

.list-aid li {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 60px;
  margin: 0 0 60px;
  padding: 30px;
}

.list-aid li:before {
  content: "";
  width: 320px;
  height: 100%;
  background: var(--color_typeP-5);
  border-radius: 30px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
}

.list-aid .text a {
  display: inline-block;
  border-bottom: 1px dashed currentColor;
}

.list-aid li picture {
  flex: none;
  width: 400px;
  display: block;
  aspect-ratio: 520/346;
  border-radius: 20px;
  overflow: hidden;
}

.list-aid li h3 {
  font-size: 3.2rem;
  font-weight: bold;
  margin: 0 0 30px;
  line-height: 1.3;
}

.list-aid li strong {
  display: block;
  font-size: 2rem;
  font-weight: bold;
}

.list-photo {
  --num: 4;
  --g: 30px;
  margin: 40px auto 100px;
}

.list-photo picture {
  aspect-ratio: 1/1;
  cursor: pointer;
}

.list-photo picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 520px) {
  .single-facility-4 {
    padding-top: 60px;
    padding-bottom: 20px;

    --titDm: 30px auto 10px;
  }

  .list-oneday {
    width: 100%;
    margin: 30px auto 60px;

    padding: 30px 10px 30px 30px;
    border-radius: 30px;
  }

  .list-oneday:before {
    left: 25px;
  }

  .list-oneday li {
    flex-flow: column;
    gap: 15px;
  }

  .list-oneday li + li {
    margin: 20px 0 0;
  }

  .list-oneday li strong {
    width: 50%;
    border-radius: 0 10px 10px 0;
    font-size: 1.6rem;
  }

  .list-oneday li strong:after {
    height: calc(100% + 10px);
    top: -5px;
    right: auto;
    left: 0px;
  }

  .list-oneday li dl {
    flex: 1;
    padding: 5px 15px 15px 30px;
    border-radius: 15px;
  }

  .list-oneday li dl dt {
    font-size: 1.6rem;
    font-weight: bold;
  }

  .list-oneday picture {
    width: 100%;
  }

  .single-facility-4 .wa1 {
    bottom: 80px;
    right: -30px;
  }

  .single-facility-4 .wa2 {
    top: 0;
    left: 70%;
  }

  .single-facility-4 .wa3 {
    top: 50%;
    right: 0;
  }

  .single-facility-4 .wa4 {
    bottom: 100px;
    left: -5%;
  }

  .single-facility-4 .wa5 {
    bottom: 30px;
    left: 0;
  }

  .single-facility-4 .wa6 {
    top: 52%;
    right: 3%;
  }

  .single-facility-4 .wa7 {
    bottom: 50px;
    right: 15%;
  }

  .list-event {
    --num: 1;
    --g: 30px;
    margin: 30px auto 60px;
  }

  .list-event li strong {
    font-size: 1.8rem;
    padding: 10px;
  }

  .list-aid {
    margin: 30px 0 60px;
  }

  .list-aid li {
    flex-flow: column;
    gap: 30px;
    margin: 0 0 30px;
    padding: 30px 20px;
  }

  .list-aid li:before {
    width: 100%;
  }

  .list-aid li picture {
    width: 100%;
  }

  .list-aid li h3 {
    font-size: 2.2rem;
    margin: 0 0 15px;
  }

  .list-aid li strong {
    font-size: 1.5rem;
  }

  .list-photo {
    --num: 2;
    --g: 5px;
    margin: 30px auto 60px;
  }
}

/**================================================== 
 single-facility-5
================================================== **/

.single-facility-5 {
  padding-top: 100px;
}

.single-facility-5.sec-bg1:after {
  height: 90%;
  background: var(--color_typeY-5);
}

.greeting-tit-p {
  display: grid;
  grid-template-rows: repeat(2, auto) 1fr;
  grid-template-columns: 1fr 380px;
  grid-template-areas:
    "titA pic"
    "titB pic"
    "p pic";

  gap: 0 130px;
  align-items: start;
  margin-right: -50px;

  --titA_ic: var(--color_typeY);

  --titBfz: 2.2rem;
  --titBm: 0 0 30px;
}

.greeting-tit-p .p {
  grid-area: p;
  padding-bottom: 50px;
}

.greeting-tit-p picture {
  grid-area: pic;

  border-radius: 50px;
  overflow: hidden;
}

.greeting-tit-p picture img {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 520px) {
  .single-facility-5 {
    padding-top: 60px;
  }

  .single-facility-5.sec-bg1:after {
    height: 100%;
  }

  .greeting-tit-p {
    grid-template-rows: repeat(3, auto) 1fr;
    grid-template-columns: 1fr;
    grid-template-areas:
      "titA"
      "pic"
      "titB"
      "p";
    gap: 20px;
    align-items: start;
    margin-right: auto;

    --titAm: 0;

    --titBfz: 1.8rem;
    --titBm: 0;
  }
  .greeting-tit-p .p {
    padding-bottom: 0;
  }

  .greeting-tit-p picture {
    width: 70%;
    border-radius: 30px;
    margin: 0 auto;
  }
}

/**================================================== 
 single-facility-6
================================================== **/
.single-facility-6 {
  padding-top: 0;

  --titCbg: var(--color_typeY);
  --titCc: var(--white);
}

.staff-list-img {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 100px;
  margin: 60px 2%;
}

.list-staff {
  flex: 1;
  --titDbd: 4px solid var(--color_typeY);
  --titDjc: flex-start;
  --titDm: 30px 0 15px;
  --titDfz: 2.2rem;
}

.gallery-staff {
  width: 45%;
  --g: 16px;
}

.gallery-staff figure {
  position: relative;
}

.gallery-staff figure:not(.num1) {
  aspect-ratio: auto;
}

.gallery-staff figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-staff figure.num1 {
  width: 100%;
}

.gallery-staff figure figcaption {
  position: absolute;
  bottom: 10px;
  right: 20px;
  font-size: 1.3rem;
  text-shadow: 1px 1px 0 var(--white);
}

.single-facility-6 *[class^="wa"] {
  z-index: -1;
}

.single-facility-6 .wa1 {
  --s: 230px;
  box-shadow: 0 0 0 var(--v) var(--color_typeV-2) inset;
  opacity: 0.6;
  bottom: 30px;
  right: -2%;
}

.single-facility-6 .wa2 {
  --s: 180px;
  box-shadow: 0 0 0 var(--v) var(--color_typeY-5) inset;
  opacity: 0.8;
  bottom: -40px;
  right: 8%;
}

.single-facility-6 .wa3 {
  --s: 300px;
  box-shadow: 0 0 0 var(--v) var(--color_typeP-3) inset;
  opacity: 0.6;
  bottom: -50px;
  left: 0;
}

.single-facility-6 .wa4 {
  --s: 80px;
  background: linear-gradient(to top left, var(--grad_type1));
  opacity: 0.5;
  bottom: -80px;
  left: 15%;
}

.single-facility-6 .wa5 {
  --s: 200px;
  box-shadow: 0 0 0 var(--v) var(--color_typeY-3) inset;
  top: -30px;
  left: 1%;
  opacity: 0.6;
}

.single-facility-6 .wa6 {
  --s: 160px;
  box-shadow: 0 0 0 var(--v) var(--color_typeG-3) inset;
  left: 8%;
  top: 80px;
}

@media screen and (max-width: 520px) {
  .single-facility-6 {
    padding-top: 60px;

    --titCm: 0;
  }

  .staff-list-img {
    flex-flow: column;
    gap: 20px;
    margin: 0 15px;
  }

  .list-staff {
    --titDm: 30px 0 10px;
    --titDfz: 2rem;
    margin: 0 0 10px;
  }

  .gallery-staff {
    width: 100%;
    --g: 15px;
  }

  .single-facility-6 .wa1 {
    bottom: 30px;
    right: -2%;
  }

  .single-facility-6 .wa2 {
    bottom: -40px;
    right: 8%;
  }

  .single-facility-6 .wa3 {
    bottom: -50px;
    left: -40px;
  }

  .single-facility-6 .wa4 {
    bottom: -80px;
    left: 50%;
  }

  .single-facility-6 .wa5 {
    top: -60px;
    left: 70%;
    opacity: 0.6;
  }

  .single-facility-6 .wa6 {
    left: 85%;
    top: 0;
  }
}

/**================================================== 
 single-facility-7
================================================== **/
.single-facility-7 {
  margin-top: 100px;
  padding-top: 60px;
  padding-bottom: 60px;

  --titCm: 0 0 60px;
  --titCbg: var(--color_typeO);
  --titCc: var(--white);

  --titDbd: 4px solid var(--color_typeO);
  --titDm: 30px 0 10px;
  --titDfz: 2.2rem;

  --btnBc: var(--color_typeO);
  --btnBm: 15px auto;
}

.single-facility-7.empty {
  display: none;
}

.single-facility-7 h2:before {
  content: "";
  width: max(80%, calc(var(--base-width) + 100px));
  height: 100%;
  background: var(--color_typeO);
  border-radius: 80px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: -2;
  opacity: 0.1;
}

.single-facility-7 small {
  display: block;
  text-align: center;
  font-size: 1.5rem;
  color: var(--color_typeO);
}

@media screen and (max-width: 520px) {
  .single-facility-7 {
    margin-top: 100px;
    padding-top: 50px;
    padding-bottom: 50px;

    --titCm: 0 0 30px;

    --titDfz: 1.7rem;

    --btnBfz: 1.6rem;
  }

  .single-facility-7 .w_base {
    width: 100%;
  }

  .single-facility-7:before {
    width: 100%;
    border-radius: 0 40px 40px 0;
    margin: 0;
  }

  .single-facility-7 .btnB {
    padding: 15px 40px 15px 20px;
  }

  .single-facility-7 small {
    font-size: 1.2rem;
  }
}

/**================================================== 
 single-facility-8
================================================== **/
.single-facility-8 {
  margin-top: 100px;
  padding-top: 80px;
  padding-bottom: 80px;
  background: var(--color_typeP-5);
}

@media screen and (max-width: 520px) {
  .single-facility-8 {
    margin-top: 60px;
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

/**================================================== 
 single-facility-9
================================================== **/
.single-facility-9 {
  padding-top: 100px;
  padding-bottom: 20px;

  --titCbg: var(--color_typeP);
  --titCc: var(--white);
  --titCm: 0 0 60px;

  --titDbd: 4px solid var(--color_typeP);
  --titDm: 60px auto 15px;
  --titDfz: 2.2rem;
  --titDta: left;
  --titDjc: flex-start;
}

.single-facility-9 .map iframe {
  border-radius: 30px;
  aspect-ratio: 1083/520;
}

.single-facility-9 .titD:after {
  display: none;
}

.single-facility-9 *[class^="wa"] {
  z-index: -1;
}

.single-facility-9 .wa1 {
  --s: 230px;
  box-shadow: 0 0 0 var(--v) var(--color_typeP-2) inset;
  opacity: 0.3;
  top: 30px;
  left: 10%;
}

/*
.single-facility-9 .wa2 {
  --s: 180px;
  box-shadow: 0 0 0 var(--v) var(--color_typeY-5) inset;
  opacity: 0.8;
  top: -40px;
  left: 0%;
}
*/

.single-facility-9 .wa3 {
  --s: 300px;
  box-shadow: 0 0 0 var(--v) var(--color_typeP-3) inset;
  opacity: 0.6;
  bottom: -180px;
  left: 5%;
}

.single-facility-9 .wa4 {
  --s: 80px;
  background: linear-gradient(to top left, var(--grad_type1));
  opacity: 0.5;
  bottom: -200px;
  left: 25%;
}

@media screen and (max-width: 520px) {
  .single-facility-9 {
    padding-top: 60px;
    padding-bottom: 20px;

    --titCm: 0 0 30px;

    --titDm: 30px auto 15px;
    --titDfz: 2rem;
  }

  .single-facility-9 .w_base {
    width: 100%;
  }

  .single-facility-9 .map iframe {
    border-radius: 20px;
  }

  .single-facility-9 .wa1 {
    top: -30px;
    left: 10%;
  }

  .single-facility-9 .wa2 {
    top: 20px;
    left: -2%;
  }

  .single-facility-9 .wa3 {
    bottom: -80px;
    left: 75%;
  }

  .single-facility-9 .wa4 {
    bottom: 200px;
    left: 90%;
  }
}

/**================================================== 
 .single-news
================================================== **/
.single-news-1 {
  padding-top: 50px;
  padding-bottom: 120px;
  line-height: 2;
}

.single-news-1 p {
  margin: 1.5em 5%;
}

.single-news-1 img {
  border-radius: 15px;
}

.single-news-1 :is(figure, picture) {
  text-align: center;
}

.single-news-1 .postinfo {
  margin: 60px 0 0;
  text-align: right;
  font-size: 1.4rem;
}

.titZ .title {
  display: flex;
  flex-flow: wrap;
  align-items: center;
  gap: 5px 15px;
  font-weight: bold;
  font-size: 4rem;
  margin: 0 0 40px;
}

.titZ .title i {
  color: var(--color_typeP);
  font-size: 1.6rem;
  font-weight: normal;
}

.titZ .title em {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: normal;
  line-height: 1.3;
  background: var(--white);
  border: 1px solid var(--color_typeP);
  color: var(--color_typeP);
  padding: 3px 20px;
  border-radius: 5px;
}

.titZ .title h1 {
  width: 100%;
}

@media screen and (max-width: 520px) {
  .single-news-1 {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .titZ .title {
    font-size: 2.2rem;
    margin: 0 0 30px;
  }

  .titZ .title i {
    font-size: 1.3rem;
  }

  .titZ .title em {
    font-size: 1.3rem;
    padding: 5px 15px;
  }
}

/**================================================== 
 採用共通
================================================== **/
:is(.post-type-archive-recruit, .tax-recruit-cat, .single-recruit) .list-blog {
  --titBc: var(--color_typeV);
}

.single-recruit {
  --titA_ic: var(--color_typeV);
  --titCbg: var(--color_typeV);
  --titBc: var(--color_typeV);
  --titBfz: 2rem;
}

@media screen and (max-width: 520px) {
  .single-recruit {
    --titBfz: 1.8rem;
    --titBm: 0 auto 10px;
  }
}

/**================================================== 
 single-recm
================================================== **/

.single-recm {
  z-index: 5;
  padding-top: 30px;

  --btnAm: 30px 0 0 auto;
}

.single-recm .wa1 {
  --s: 150px;
  background: linear-gradient(to top left, var(--grad_type2));
  opacity: 0.2;
  bottom: -30px;
  left: 12%;
}

@media screen and (max-width: 520px) {
  .single-recm {
    margin-bottom: 0;
  }
}

/**================================================== 
 【採用1】紹介導入
================================================== **/
.rec-mv {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin: 50px 0;
}

.rec-mv picture {
  aspect-ratio: 520 / 346;
  position: relative;
  flex: none;
  width: min(50%, 800px);
  border-radius: 6vw 0 0 6vw;
  overflow: hidden;
  z-index: 5;
  margin: 4vw 0 0;
}

.rec-mv .text {
  position: relative;
  flex: none;
  align-items: center;
  width: 60%;
  min-height: 100%;
  margin: 0 -10% 0 0;
  font-size: 1.8rem;
  line-height: 2;
  z-index: 4;
  border-radius: 0 110px 110px 0;
  padding: 60px 15vw 60px 10vw;
  background: var(--color_typeV);
  color: var(--white);
}

.rec-mv .i {
  display: flex;
  flex-flow: wrap;
  gap: 5px;
  margin: 0 0 10px;
}

.rec-mv .i span {
  background: var(--white);
  color: var(--color_typeV);
  padding: 3px 15px;
  font-weight: bold;
  border-radius: 3px;
}

.rec-mv dl {
  margin: 20px 0;
}

.rec-mv dl dd {
  font-weight: bold;
  font-size: 3.5rem;
  line-height: 1.3;
}

.rec-mv strong {
  font-size: 2.2rem;
}

.rec-mv ul {
  display: flex;
  flex-flow: wrap;
  gap: 5px;
  margin: 15px 0;
  font-weight: bold;
}

.rec-mv ul li {
  border: 1px solid var(--white);
  padding: 5px 15px;
  border-radius: 3px;
}

@media screen and (max-width: 520px) {
  .rec-mv {
    flex-flow: column;
  }

  .rec-mv picture {
    width: 90%;
    margin: -10vw 0 0 auto;
    border-radius: 10vw 0 0 10vw;
  }

  .rec-mv .text {
    flex: none;
    align-items: center;
    width: 95%;
    margin: 0;
    font-size: 1.6rem;
    border-radius: 0 60px 60px 0;
    padding: 60px 5% 15vw 5%;
  }

  .rec-mv dl {
    margin: 20px 0 5px;
  }

  .rec-mv dl dd {
    font-size: 2.6rem;
  }

  .rec-mv strong {
    font-size: 2rem;
  }
}

/**================================================== 
 【採用2】やりがい等
================================================== **/
.rec-free {
  width: max(100%, 1100px);
  padding-top: 80px;
  padding-bottom: 80px;
  margin: 0 auto;
  background: var(--gray-2);
}

@media screen and (max-width: 520px) {
  .rec-free {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

/**================================================== 
 【採用3】業務内容
================================================== **/
.rec-detail {
  padding-top: 80px;
  margin-bottom: 120px;

  --titCfz: 2.2rem;
}

.rec-detail img {
  margin: 15px 0;
  border-radius: 30px;
}
.rec-detail img.br0 {
  border-radius: 0;
}

.rec-detail a {
  color: var(--color_typeV);
}

.rec-detail .richtext .m40 {
}

@media screen and (max-width: 520px) {
  .rec-detail {
    padding-top: 40px;
    margin-bottom: 40px;

    --titCfz: 1.8rem;
    --titCm: 0 0 10px;
  }
}

/**================================================== 
 【採用4】先輩インタビュー
================================================== **/
.rec-interview {
  padding-bottom: 80px;

  --titAm: 0 0 50px;

  --titDc: var(--color_typeV);
  --titDfz: 2rem;
  --titDbd: 4px solid var(--color_typeV);
  --titDjc: flex-start;
  --titDm: 0 0 15px;
}

.rec-interview .titD:after {
  display: none;
}

.rec-interview .list-staff li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 70px;
  margin: 100px auto 60px;
}

.rec-interview .list-staff li .text {
  flex: 1;
  margin-right: 5%;
  margin-left: inherit;
}

.rec-interview .list-staff li .text .catch {
  font-size: 2.3rem;
  font-weight: bold;
  margin: 0 0 30px;
  color: var(--color_typeV);
}

.rec-interview .list-staff li .text :is(.em, .i span) {
  display: inline-block;
  padding: 5px 25px;
  font-size: 1.6rem;
  background: var(--color_typeV);
  color: var(--white);
  border-radius: 50px;
}

.rec-interview .list-staff li .text b {
  display: block;
  margin: 10px 0;
  font-size: 1.8rem;
}

.rec-interview .list-staff li .text h3 {
  font-weight: bold;
  font-size: 2.2rem;
  line-height: 1.5;
  margin: 10px 0;
}

.rec-interview .list-staff li picture {
  aspect-ratio: 520 / 346;
  width: 50%;
  height: auto;
  position: relative;
  display: block;
  overflow: hidden;
  text-align: center;
  background: no-repeat center / cover;
  background-color: var(--white);
  border-radius: 30px;
}

.rec-interview .list-staff li img {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  object-fit: contain;
}

.rec-interview dl {
  display: grid;
  grid-template-rows: auto 1fr;
  grid-template-columns: 1fr auto;
  grid-template-areas:
    "dt img"
    "dd img";
  gap: 0 50px;
}

.rec-interview dl dt {
  grid-area: dt;
}

.rec-interview dl dd {
  grid-area: dd;
  margin: 0 15px 30px;
}

.rec-interview dl .img {
  grid-area: img;
}

.rec-interview dl .img img {
  width: 320px;
  height: auto;
  border-radius: 30px;
}

.box-work {
  background: var(--color_typeV-3);
  display: flex;
  gap: 50px;
  padding: 30px 50px;
  margin-bottom: 50px;
  border-radius: 30px;
}
.box-work ol li {
  counter-increment: li;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1em;
  margin: 0 0 10px;
}
.box-work ol li:before {
  content: counter(li);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  border: 1px solid var(--color_typeV);
  background: var(--white);
  color: var(--color_typeV);
  flex: none;
  width: 2em;
  height: 2em;
  border-radius: 50px;
}

.box-staff {
  margin-top: 60px;
  margin-bottom: 0;
  display: flex;
  gap: 15px 50px;
  align-items: center;
}

.box-staff picture {
  width: 30%;
  flex: none;
  position: relative;
}

.box-staff picture img {
  width: 100%;
  height: auto;
  border-radius: 30px;
}

.box-staff .p {
  flex: 1;
  background: var(--color_type5);
  padding: 30px;
}

@media screen and (max-width: 520px) {
  .rec-interview {
    padding-top: 50px;
    padding-bottom: 50px;

    --titDfz: 1.6rem;
  }

  .rec-interview .list-staff li {
    flex-flow: wrap;
    gap: 10px;
    margin: 20px auto 10px;
  }

  .rec-interview .list-staff li .text {
    flex: 1;
    margin: 15px 5%;
  }

  .rec-interview .list-staff li .text .catch {
    font-size: 1.8rem;
  }

  .rec-interview .list-staff li .text :is(.em, .i span) {
    font-size: 1.3rem;
  }

  .rec-interview .list-staff li .text b {
    font-size: 1.6rem;
  }

  .rec-interview .list-staff li .text h3 {
    margin: 0;
  }

  .rec-interview .list-staff li picture {
    width: 95%;
    height: 60vw;
    margin-right: auto;
  }

  .rec-interview .list-staff li img {
    height: 60vw;
  }

  .rec-interview dl {
    display: block;
    padding: 0 5% 40px;
  }

  .rec-interview dl dd {
    margin: 10px 0;
  }

  .rec-interview dl .img img {
    width: 100%;
    height: auto;
    border-radius: 30px;
  }

  .box-work {
    width: 90%;
    flex-flow: column;
    gap: 0px;
    padding: 20px 15px;
    margin-bottom: 30px;
    border-radius: 20px;
  }
  .box-work ol li {
    font-size: 1em;
  }

  .box-staff {
    margin: 0 auto;
    gap: 0;
    flex-flow: column;
    align-items: center;
  }

  .box-staff picture {
    width: 100%;
    height: 100vw;
    flex: none;
    position: relative;
  }

  .box-staff picture img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .box-staff .p {
    padding: 20px 20px 0;
  }
}

/**================================================== 
 【採用】5スケジュール
================================================== **/
/**------------------------------ 
スケジュール
 ------------------------------**/
.rec-timetable,
.rec-path {
  padding-bottom: 80px;
  position: relative;
}

.rec-timetable {
  background: var(--color_typeV-3);
  padding-top: 100px;
  margin-bottom: 100px;
}

.box-timetable {
  width: var(--base-width);
  margin: 40px auto 0;
  display: flex;
  gap: 20px 40px;
  align-items: start;
}

.box-timetable dl {
  flex: 1;
}

.box-timetable dl :is(dt, dd) {
  background: var(--white);
  padding: 10px 20px;
  color: var(--black);
}

.box-timetable dl dt {
  font-weight: bold;
  padding-bottom: 0;
  border-radius: 20px 20px 0 0;
  font-size: 1.8rem;
  color: var(--color_typeV);
}

.box-timetable dl dd {
  padding-top: 0;
  margin: 0 0 30px;
  position: relative;
  border-radius: 0 0 20px 20px;
}

.box-timetable dl dd:before {
  content: "▼";
  color: var(--color_typeV);
  display: block;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
}

.box-timetable dl dd:last-child:before {
  display: none;
}

.box-timetable .gallery {
  flex: none;
  width: 300px;
}

.box-timetable .gallery img {
  width: 100%;
  margin: 0 0 5px;
  border-radius: 20px;
}

.box-career {
  width: var(--base-width);
  margin: 0 auto;
}

.box-career dl {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 0;
}

.box-career dl :is(dt, dd) {
  padding: 15px 20px;
  border: 1px solid var(--color_typeV);
}

.box-career dl dt {
  width: 20%;
  font-weight: bold;
  background: var(--color_typeV);
  color: var(--white);
  font-size: 1.6rem;
  position: relative;
  text-align: center;
}

.box-career dl dd {
  flex: 80%;
  position: relative;
}

.box-career dl dd:before {
  content: "｜";
  display: block;
  position: absolute;
  top: 100%;
  left: -14%;
  color: var(--color_typeV);
}

.box-career dl dd:last-of-type:before {
  display: none;
}

@media screen and (max-width: 520px) {
  .rec-timetable,
  .rec-path {
    /*padding-top: 30px;*/
    padding-bottom: 0;
    --per: 20px;
    --titAm: 20px auto;
  }

  .rec-timetable {
    padding-top: 30px;
    padding-bottom: 60px;
    margin-bottom: 0;
  }

  .box-timetable {
    flex-flow: column;
    width: 90%;
    margin: 20px auto 0;
  }

  .box-timetable .gallery {
    width: 100%;
  }

  .box-career {
    width: 90%;
    margin: 30px auto 0;
  }

  .box-career dl {
    flex-flow: column;
    gap: 0;
  }

  .box-career dl :is(dt, dd) {
    padding: 5px 15px;
    width: 100%;
  }

  .box-career dl dd {
    margin: 0 0 30px;
  }

  .box-career dl dd:before {
    left: 50%;
    transform: translateX(-50%);
  }

  .box-timetable dl {
    width: 100%;
  }
}

/**================================================== 
 会社概要
================================================== **/
.rec-company {
  padding-bottom: 50px;
  margin-bottom: 0;
}
.rec-company picture img {
  width: 100%;
  margin: 0 0 5px;
  border-radius: 30px;
}

.rec-company .list-numC {
  --num: 3;
  --g: 30px;
  margin: 30px auto;
}

@media screen and (max-width: 520px) {
  .rec-company {
    margin-top: 50px;
    padding-bottom: 40px;
    margin-bottom: 0;
  }
  .rec-company picture img {
    border-radius: 20px;
  }

  .rec-company .list-numC {
    --num: 2;
    --g: 10px;
    margin: 20px auto;
  }

  .rec-company .list-numC img {
    border: 3px solid var(--white);
  }
}

/**================================================== 
 【採用-】募集要項-エントリー
================================================== **/
.rec-app {
  margin-top: 100px;
  padding-top: 80px;
  padding-bottom: 80px;
  background: var(--color_typeV-3);

  --titA_ic: var(--color_typeV);
}

.rec-app .table-basic3 th {
  background: var(--color_typeV-2);
}

@media screen and (max-width: 520px) {
  .rec-app {
    margin-top: 60px;
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.rec-entry {
  padding-top: 100px;

  --titA_ic: var(--color_typeV);
  --titAjc: center;
  --titAai: center;
  --titAm: 0;
}

.rec-entry .smf-item__description {
  background: var(--color_typeV);
}

.rec-entry .smf-action .smf-button-control__control {
  background: var(--color_typeV);
  border: 1px solid var(--color_typeV);
}

@media screen and (max-width: 520px) {
  .rec-entry {
    padding-top: 50px;
  }
}

/*
.rec-cnv {
  width: max(90%, var(--base-width));
  margin: 0 auto;
  position: relative;
  background: var(--color_typeV);
  border-radius: 100vh;
  padding: 70px 150px;
  color: var(--white);

  display: flex;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  gap: 0 90px;
  z-index: 0;

  --titAc: var(--white);
  --titA_ic: var(--white);
}

.rec-cnv .btn-wrap {
  width: min(100%, var(--base-width));
}

.rec-cnv .btn-wrap .btn-toi svg {
  fill: var(--color_typeV);
}

.rec-cnv .wa1 {
  --s: 168px;
  box-shadow: 0 0 0 var(--v) var(--color_typeP-3) inset;
  opacity: 0.5;
  top: -120px;
  left: 8%;
  z-index: -1;
}

.rec-cnv .wa2 {
  --s: 205px;
  box-shadow: 0 0 0 var(--v) var(--color_typeB-1) inset;
  opacity: 0.5;
  top: -180px;
  left: -3%;
  z-index: -2;
}

@media screen and (max-width: 520px) {
  .rec-cnv {
    width: 100%;
    margin: 0 auto;
    border-radius: 0;
    padding: 30px 20px;

    justify-content: center;
    align-items: center;
    flex-flow: column;
    gap: 30px;
  }

  .rec-cnv .btn-wrap {
    width: 100%;
    --gap: 0;
  }

  .rec-cnv .btn-wrap .btn-toi {
    flex: none;
  }

  .rec-cnv .wa1 {
    top: 90%;
  }

  .rec-cnv .wa2 {
    top: -30px;
    left: 80%;
  }
}

*/

/**================================================== 
 block - 1
================================================== **/

.page-block-1 {
  margin-top: 40px;
  padding-top: 80px;
}

.block-secflexl {
  display: grid;
  grid-template-rows: repeat(2, auto) 1fr;
  grid-template-columns: 380px 1fr;
  grid-template-areas:
    "pic titA"
    "pic titB"
    "pic p";
  gap: 0 100px;
  align-items: start;
  margin-left: -50px;

  --titAm: 20px 0 40px;

  --titBfz: 2.2rem;
  --titBm: 0 0 30px;
}

.block-secflexl .p {
  grid-area: p;
}

.block-secflexl picture {
  grid-area: pic;

  border-radius: 50px;
  overflow: hidden;
}

.block-secflexl picture img {
  width: 100%;
  height: auto;
}

.block-secflexl.reverse {
  grid-template-columns: 1fr 380px;
  grid-template-areas:
    "titA pic"
    "titB pic"
    "p pic";
  margin-left: auto;
  margin-right: -50px;
}

@media screen and (max-width: 520px) {
  .page-block-1 {
    margin-top: 40px;
    padding-top: 60px;
  }

  .block-secflexl,
  .block-secflexl.reverse {
    grid-template-rows: repeat(3, auto) 1fr;
    grid-template-columns: 1fr;
    grid-template-areas:
      "titA"
      "pic"
      "titB"
      "p";
    gap: 20px;
    align-items: start;
    margin-right: auto;
    margin-left: auto;

    --titAm: 0;

    --titBfz: 1.8rem;
    --titBm: 0;
  }

  .block-secflexl picture {
    width: 70%;
    margin: 0 auto;
  }
}

/**================================================== 
 page-block-2
================================================== **/
.page-block-2,
.page-block-3,
.page-block-4 {
  padding-top: 100px;
  padding-bottom: 40px;
}

:is(.page-block-2, .page-block-3, .page-block-4) p + p {
  margin-top: 1rem;
}

:is(.page-block-2, .page-block-3, .page-block-4) *[class^="wa"] {
  z-index: -1;
}

.page-block-2 .wa1 {
  --s: 300px;
  box-shadow: 0 0 0 var(--v) var(--color_typeP-3) inset;
  opacity: 0.6;
  bottom: 180px;
  right: 5%;
}

.page-block-2 .wa2 {
  --s: 80px;
  background: linear-gradient(to top left, var(--grad_type1));
  opacity: 0.5;
  bottom: 200px;
  right: 1%;
}

.page-block-2 .wa3 {
  --s: 200px;
  box-shadow: 0 0 0 var(--v) var(--color_typeY-3) inset;
  opacity: 0.3;
  bottom: -70px;
  left: -30px;
}

.page-block-3 .wa1 {
  --s: 200px;
  box-shadow: 0 0 0 var(--v) var(--color_typeY-1) inset;
  opacity: 0.3;
  bottom: 40%;
  right: 1%;
}

.page-block-3 .wa2 {
  --s: 271px;
  box-shadow: 0 0 0 var(--v) var(--color_typeV-3) inset;
  bottom: 100px;
  left: 1%;
}

.page-block-3 .wa3 {
  --s: 170px;
  box-shadow: 0 0 0 var(--v) var(--color_typeP-3) inset;
  opacity: 0.5;
  bottom: 30px;
  left: 8%;
}

.page-block-5 .wa1 {
  --s: 300px;
  box-shadow: 0 0 0 var(--v) var(--color_typeP-3) inset;
  opacity: 0.6;
  bottom: -100px;
  left: 5%;
}

.page-block-5 .wa2 {
  --s: 80px;
  background: linear-gradient(to top left, var(--grad_type1));
  opacity: 0.5;
  bottom: -120px;
  left: 25%;
}

@media screen and (max-width: 520px) {
  .page-block-2,
  .page-block-3,
  .page-block-4 {
    padding-top: 40px;
    padding-bottom: 0;
  }

  .page-block-2 .wa1 {
    --s: 160px;
  }

  .page-block-2 .wa2 {
    bottom: 80%;
  }

  .page-block-2 .wa3 {
    bottom: -50px;
    left: 1%;
  }

  .page-block-3 .wa1 {
    display: none;
  }

  .page-block-3 .wa2 {
    left: auto;
    right: 1%;
    bottom: auto;
    top: 20px;
  }

  .page-block-3 .wa3 {
    left: auto;
    right: -5%;
    bottom: auto;
    top: 0;
  }

  .page-block-5 .wa1 {
    bottom: -100px;
    left: 70%;
  }

  .page-block-5 .wa2 {
    bottom: -70px;
    left: 25%;
  }
}

.block-secpdf dl {
  display: flex;
  align-items: flex-start;
  gap: 50px;
  padding: 50px var(--over-width-half);
  mix-blend-mode: multiply;

  --titAm: 0;
  --titBm: 0;
  --titCm: 0;
  --titDm: 0;
}

.single-news-1 .block-secpdf dl {
  padding: 50px 5%;
}

.block-secpdf dl:nth-child(odd) {
  background: var(--color_typeP-5);
}

.block-secpdf dt {
  width: 25%;
}

.block-secpdf dd {
  flex: 1;
  display: flex;
  flex-flow: column;
  gap: 20px;
}

.block-secpdf a {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  border: 1px solid var(--color_typeP);
  color: var(--color_typeP);
  background: var(--white);
  font-size: 1.8rem;
  border-radius: 15px;
}

.block-secpdf a:hover {
  background: var(--color_typeP);
  color: var(--white);
}

.block-secpdf a:before {
  content: "→";
}

@media screen and (max-width: 520px) {
  .block-secpdf dl {
    flex-flow: column;
    gap: 0;
    padding: 15px 5% 30px;
  }

  .block-secpdf dt {
    width: 100%;
  }

  .block-secpdf a {
    font-size: 1.5rem;
  }
}

.postlist-tit {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
  line-height: 1;

  --titAm: 0;
}

:is(.block-postlist, .block-posttellist) dl {
  --num: 3;
  --g: 30px;
  margin: 60px 0 0;
}

:is(.block-postlist, .block-posttellist) dt {
  width: 100%;
  --titCm: 0;
}

:root {
  --childc: var(--color_typeP);
}

:is(.block-postlist, .block-posttellist) h4 {
  font-size: 2rem;
  font-weight: bold;
  color: var(--childc);
}

:is(.block-postlist, .block-posttellist) h4 small {
  display: block;
}

.block-postlist dd a {
  display: block;
  margin: 0 0 10px;
  text-align: center;
}

.block-postlist dd a picture {
  aspect-ratio: 520 / 400;
  display: block;
  width: 100%;
  border-radius: 25px;
  overflow: hidden;
  margin: 0 0 10px;
}

.block-posttellist dd {
  border: 3px dotted var(--childc);
  padding: 15px;
  text-align: center;
  font-weight: bold;
  background: rgba(255, 255, 255, 0.8);
}
.block-posttellist dd a {
  height: 100%;
  display: flex;
  flex-flow: column;
  justify-content: space-between;
}
.block-posttellist dd p {
  font-size: 1.8rem;
  margin: 5px auto 0;
}

@media screen and (max-width: 520px) {
  .postlist-tit a img {
    width: 150px;
  }

  .block-postlist dl {
    --num: 2;
    --g: 20px;

    margin: 30px 0 0;
  }
  .block-posttellist dl {
    --num: 2;
    --g: 10px;
    margin: 30px 0 30px;
  }

  .block-postlist dd a {
    text-align: left;
  }

  :is(.block-postlist, .block-posttellist) h4 {
    font-size: 1.5rem;
  }
  .block-posttellist dd {
    padding: 20px 5px;
  }
  .block-posttellist dd p {
    font-size: 1.4rem;
    margin: 5px auto 0;
  }
}

.block-secletter dl {
  display: grid;
  grid-template-columns: 12em repeat(4, 1fr);
  border-left: 1px solid var(--gray-3);
}

.block-secletter dl + dl {
  margin-top: -1px;
}

.block-secletter dl :is(dt, dd) {
  padding: 15px;
  text-align: center;
  line-height: 2;
  background: var(--white);
}

.block-secletter dl dt {
  font-weight: bold;
  background: var(--gray-2);
  border: 1px solid var(--gray-3);
  border-left: none;
}
.block-secletter dl dd {
  border: 1px solid var(--gray-3);
  border-left: none;
}
.block-secletter dl dd p {
  line-height: 1.3;
}
.block-secletter dl picture {
  display: block;
  aspect-ratio: 1/1.414;
  width: 100%;
  height: auto;
  margin: 0 0 5px;
}
.block-secletter dl picture img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}
.block-secletter dl a {
  display: block;
  text-decoration: underline;
  font-size: 1.8rem;
  margin: 0 0 5px;
}
.block-secletter dl a:hover {
  text-decoration: none;
}

@media screen and (max-width: 768px) {
  .block-secletter dl {
    display: flex;
    flex-flow: wrap;
  }
  .block-secletter dl picture {
    display: block;
    aspect-ratio: auto;
    width: 100%;
    height: auto;
    margin: 0 auto 5px;
  }

  .block-secletter dl dt {
    width: 100%;
  }
  .block-secletter dl dd {
    padding: 5px;
    width: 50%;
    margin-top: -1px;
  }
}

/**================================================== 
各ページ個別設定
==================================================*/
.sec-form {
  --titBta: center;
  --titBfz: 2.2rem;
  --titBm: 30px auto 0;
}

@media screen and (max-width: 768px) {
  .sec-form {
    --titBfz: 1.8rem;
  }
}
.sec-plivacy {
  --titBm: 50px 0 15px;
}

main.Consultation {
  --titDbd: 4px solid var(--color_typeO);
}

.sec-evolution {
  padding-top: 120px;
}

.dl-history dl {
  display: flex;
  gap: 0 15px;
  padding: 15px 0;
  position: relative;
}

.dl-history dl dt {
  width: 15%;
  position: relative;
  padding: 0 15px;
  font-size: 1.2em;
}

.dl-history dl:before {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background: var(--color_typeV);
  position: absolute;
  top: calc(18px + 0.5em);
  left: 0;
}
.dl-history dl:last-child:before {
  display: none;
}

.dl-history dl dt:after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background: var(--white);
  border: 4px solid var(--color_typeV);
  border-radius: 50px;
  position: absolute;
  top: 0.5em;
  left: -8px;
}

.dl-history dl dt small {
  display: block;
  color: var(--color_typeV);
}

.dl-history dl dd {
  flex: 1;
  background: var(--color_typeV-3);
  border-radius: 15px;
  padding: 15px;
}

.dl-history dl dd + dd {
  flex: none;
  width: 30%;
  background: var(--gray-2);
}

.dl-history dl dd p {
  font-weight: bold;
  margin: 0.8em 0;
}
.dl-history dl dd p small {
  display: block;
  line-height: 1.8;
  font-weight: normal;
}

.dl-history dl dd figure {
  margin: 15px 5px;
}
.dl-history dl dd figure img {
  width: min(100%, 370px);
  border-radius: 20px;
  display: block;
  margin: 0 0 5px;
}
.dl-history dl dd figure figcaption {
  font-size: 0.8em;
  color: var(--gray);
}

@media screen and (max-width: 520px) {
  .sec-evolution {
    padding-top: 50px;
  }

  .dl-history dl {
    flex-flow: column;
  }
  .dl-history dl dt {
    width: 100%;
  }
  .dl-history dl dd,
  .dl-history dl dd + dd {
    width: 95%;
    margin: 15px 0 0 5%;
  }
  .dl-history dl:before {
    top: calc(18px + 0.3em);
  }
  .dl-history dl dt:after {
    top: 0.3em;
  }
}

/**================================================== 
 児童養護施設（特別レイアウト）
================================================== **/
.catc *[class^="wa"] {
  border-radius: 0;
  background-image: none;
  width: var(--s);
  height: var(--s);
  --v: 0;
  position: absolute;
  top: auto;
  bottom: auto;
  left: auto;
  right: auto;
  opacity: 1;
}

.catc .titZ .wa1 {
  aspect-ratio: 822/175;
  width: 65%;
  height: auto;
  background: url(../images/catc_deco/deco21.png) no-repeat top right / contain;
  position: absolute;
  top: 35px;
  right: 0;
}

@media screen and (max-width: 520px) {
  .catc .titZ .wa1 {
    width: 320px;
    top: 70%;
    right: 5%;
  }
}

.catc .single-facility-1 {
  z-index: 1;
  padding-bottom: 60px;
}
.catc .single-facility-1:after {
  content: "";
  display: block;
  width: min(50%, 700px);
  height: 229px;
  background: url(../images/catc_deco/deco01.png) no-repeat bottom left;
  position: absolute;
  right: 0;
  bottom: -23px;
  z-index: -1;
}

@media screen and (max-width: 520px) {
  .catc .single-facility-1:after {
    aspect-ratio: 700/229;
    width: 300px;
    height: auto;
    bottom: -35px;
    background-size: 100% auto;
  }
}

.catc .sec-facility-0 {
  background: var(--color_typeP-6);
  padding-bottom: 60px;
  margin-top: 46px;
  z-index: 2;
}

.catc .single-facility-8 {
  padding-top: 60px;
  padding-bottom: 130px;
}

.catc :is(.sec-facility-0, .single-facility-8) :is(.wave_top, .wave_bottom) {
  display: block;
  width: 100%;
  height: auto;
  position: absolute;
  top: -46px;
  left: 0;
  z-index: 3;
}

.catc :is(.sec-facility-0, .single-facility-8) :is(.wave_top, .wave_bottom) img {
  display: block;
  width: 100%;
  height: 46px;
}
.catc :is(.sec-facility-0, .single-facility-8) .wave_bottom {
  bottom: -1px;
  top: auto;
}

.catc .sec-facility-0 .list-sub {
  border: none;
}

.catc .sec-facility-0 .list-sub li + li {
  border-top-color: var(--color_typeP-4);
}

.catc .sec-facility-0:after {
  content: "";
  display: block;
  aspect-ratio: 160/211;
  width: 160px;
  height: auto;
  background: url(../images/catc_deco/deco02.png) no-repeat center / contain;
  position: absolute;
  bottom: 100px;
  right: 50px;
}

@media screen and (max-width: 520px) {
  .catc .sec-facility-0 {
    padding-bottom: 40px;
  }
  .catc .single-facility-8 {
    padding-top: 10px;
    padding-bottom: 60px;
  }
  .catc :is(.sec-facility-0, .single-facility-8) :is(.wave_top, .wave_bottom) img {
    display: block;
    width: 100%;
    height: 20px;
  }
  .catc :is(.sec-facility-0, .single-facility-8) :is(.wave_top, .wave_bottom) {
    top: -20px;
  }
  .catc :is(.sec-facility-0, .single-facility-8) .wave_bottom {
    bottom: -1px;
    top: auto;
  }
  .catc .sec-facility-0:after {
    width: 80px;
    bottom: 10px;
    right: 20px;
  }
}

.catc .sec-news {
  z-index: 1;
}
.catc .sec-news:after {
  content: "";
  display: block;
  width: min(50%, 689px);
  height: 226px;
  background: url(../images/catc_deco/deco03.png) no-repeat bottom left;
  position: absolute;
  right: 0;
  bottom: -50px;
  z-index: -1;
}

@media screen and (max-width: 520px) {
  .catc .sec-news:after {
    aspect-ratio: 689/226;
    width: 300px;
    height: auto;
    bottom: -30px;
    background-size: 100% auto;
  }
}

.catc .single-facility-2 .wa1 {
  display: block;
  aspect-ratio: 299 / 437;
  width: 299px;
  height: auto;
  background: url(../images/catc_deco/deco04.png) no-repeat bottom left/contain;
  position: absolute;
  left: 15px;
  top: 150px;
  z-index: -1;
}

.catc .single-facility-2 .wa2 {
  display: block;
  aspect-ratio: 430 / 496;
  width: 300px;
  height: auto;
  background: url(../images/catc_deco/deco06.png) no-repeat bottom left/contain;
  position: absolute;
  right: 0px;
  top: 200px;
  z-index: -1;
}

.catc .single-facility-2 .wa3 {
  display: block;
  aspect-ratio: 299 / 437;
  width: 299px;
  height: auto;
  background: url(../images/catc_deco/deco04.png) no-repeat bottom left/contain;
  position: absolute;
  right: 0;
  top: 30%;
  z-index: -1;
  transform: scale(-1, 1);
}

.catc .list-number li:before {
  display: none;
}

.catc .list-number > *:after {
  background: url(../images/catc_deco/deco19.jpg) no-repeat center / cover;
}
.catc .list-number li h4 {
  display: flex;
  align-items: center;
  gap: 10px;
}
.catc .list-number li h4:before {
  content: "";
  display: block;
  aspect-ratio: 30/33;
  width: 30px;
  height: auto;
  background: url(../images/catc_deco/deco07.png) no-repeat bottom left/contain;
}

@media screen and (max-width: 520px) {
  .catc .single-facility-2 .wa1 {
    width: 150px;
    left: 0px;
    top: 80px;
  }

  .catc .single-facility-2 .wa2 {
    width: 150px;
    right: 0px;
    top: 500px;
    z-index: -1;
  }

  .catc .single-facility-2 .wa3 {
    width: 80px;
    right: 5px;
    top: 30%;
    z-index: -1;
  }

  .catc .list-number > * {
    margin: 15px 0;
    padding: 20px;
  }
}

.catc .single-facility-3 .titC {
  position: relative;
}
.catc .single-facility-3 .titC:before {
  content: "";
  display: block;
  aspect-ratio: 800/188;
  width: 800px;
  height: auto;
  background: url(../images/catc_deco/deco09.png) no-repeat bottom center/contain;
  position: absolute;
  bottom: 100%;
  right: 80px;
}

.catc .single-facility-3 .wa1 {
  display: block;
  aspect-ratio: 517 / 512;
  width: 517px;
  height: auto;
  background: url(../images/catc_deco/deco08.png) no-repeat bottom left / contain;
  position: absolute;
  left: 0px;
  top: -230px;
  z-index: -1;
}

.catc .list-gallery {
  position: relative;
  background: var(--color_typeO-1);
  box-shadow: 0 0 0 50px var(--color_typeO-1);
  border-radius: 20px;
}

.catc .list-gallery:before {
  content: "";
  display: block;
  aspect-ratio: 184/844;
  width: 184px;
  height: auto;
  background: url(../images/catc_deco/deco10.png) no-repeat top left/contain;
  position: absolute;
  top: 80px;
  right: -234px;
}

.catc .list-gallery:after {
  content: "";
  display: block;
  aspect-ratio: 180/465;
  width: 180px;
  height: auto;
  background: url(../images/catc_deco/deco11.png) no-repeat top left/contain;
  position: absolute;
  bottom: -80px;
  left: -230px;
}

.catc .table-basic2 {
  position: relative;
}

.catc .table-basic2:before {
  content: "";
  display: block;
  aspect-ratio: 439/123;
  width: 439px;
  height: auto;
  background: url(../images/catc_deco/deco20.png) no-repeat bottom right/contain;
  position: absolute;
  top: -115px;
  right: 0;
  z-index: 10;
}

@media screen and (max-width: 520px) {
  .catc .single-facility-3 .titC:before {
    width: 300px;
    right: 20px;
  }

  .catc .single-facility-3 .wa1 {
    width: 200px;
    left: 0px;
    top: -100px;
    background-position: bottom left -30px;
  }

  .catc .list-gallery {
    box-shadow: 0 0 0 10px var(--color_typeO-1);
    margin-top: 90px;
  }

  .catc .list-gallery:before {
    aspect-ratio: 844/184;
    width: 300px;
    height: auto;
    background-image: url(../images/catc_deco/deco10_sp.png);
    top: -75px;
    right: 0;
  }

  .catc .list-gallery:after {
    width: 90px;
    bottom: -30px;
    right: 15px;
    left: auto;
  }

  .catc .table-basic2 {
    margin-top: 80px;
  }
  .catc .table-basic2:before {
    width: 300px;
    top: -85px;
    right: 0;
  }
}

.catc .single-facility-4 {
  padding-bottom: 130px;
}
.catc .single-facility-4 .wa2 {
  display: block;
  aspect-ratio: 430/ 496;
  width: 350px;
  height: auto;
  background: url(../images/catc_deco/deco12.png) no-repeat bottom left / contain;
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: -1;
}

.catc .single-facility-4 .wa3 {
  display: block;
  aspect-ratio: 430/ 496;
  width: 350px;
  height: auto;
  background: url(../images/catc_deco/deco06.png) no-repeat bottom left / contain;
  position: absolute;
  right: 0px;
  top: 0px;
  z-index: -1;
}

.catc .single-facility-4 .wa5 {
  display: block;
  aspect-ratio: 134 / 622;
  width: 134px;
  height: auto;
  background: url(../images/catc_deco/deco13.png) repeat-y top left/contain;
  position: absolute;
  right: 60px;
  top: 18%;
  z-index: -1;
}

.catc .single-facility-4 .wa6 {
  display: block;
  aspect-ratio: 160 / 211;
  width: 160px;
  height: auto;
  background: url(../images/catc_deco/deco02.png) no-repeat bottom left/contain;
  position: absolute;
  right: 100px;
  bottom: 20%;
  z-index: -1;
}

.catc .single-facility-4 .wa7 {
  display: block;
  width: min(50%, 774px);
  height: 201px;
  background: url(../images/catc_deco/deco14.png) no-repeat bottom right;
  position: absolute;
  left: 0;
  bottom: -23px;
  z-index: -1;
}

.catc .list-oneday:after {
  content: "";
  display: block;
  aspect-ratio: 175 / 456;
  width: 175px;
  height: auto;
  background: url(../images/catc_deco/deco15.png) no-repeat bottom left/contain;
  position: absolute;
  left: -175px;
  bottom: 50px;
  z-index: -1;
  transform: scale(-1, 1);
}

@media screen and (max-width: 520px) {
  .catc .single-facility-4 {
    padding-bottom: 30px;
  }

  .catc .single-facility-4 h2.titC {
    position: relative;
  }
  .catc .single-facility-4 h2.titC:before {
    content: "";
    display: block;
    aspect-ratio: 456 / 173;
    width: 200px;
    height: auto;
    background: url(../images/catc_deco/deco15_sp.png) no-repeat bottom left/contain;
    position: absolute;
    right: 10px;
    bottom: 100%;
    z-index: -1;
  }

  .catc .single-facility-4 .wa2 {
    width: 150px;
  }

  .catc .single-facility-4 .wa3 {
    display: none;
  }

  .catc .single-facility-4 .wa5 {
    width: 64px;
    right: 0;
    top: 18%;
  }

  .catc .single-facility-4 .wa6 {
    width: 80px;
    right: 0;
    bottom: 0;
    z-index: -1;
  }

  .catc .single-facility-4 .wa7 {
    aspect-ratio: 689 / 226;
    width: 300px;
    height: auto;
    bottom: 0;
    background-size: 100% auto;
  }

  .catc .list-oneday:after {
    display: none;
  }
}

.catc .greeting-tit-p {
  position: relative;
}

.catc .greeting-tit-p:after {
  content: "";
  display: block;
  aspect-ratio: 463 / 431;
  width: 463px;
  height: auto;
  background: url(../images/catc_deco/deco16.png) no-repeat bottom left/contain;
  position: absolute;
  right: -80px;
  top: 80%;
  z-index: 1;
}

@media screen and (max-width: 520px) {
  .catc .single-facility-5 {
    padding-top: 30px;
  }

  .catc .greeting-tit-p:after {
    width: 180px;
    right: auto;
    left: 0;
    top: 95%;
    transform: scale(-1, 1);
  }
}

.catc .single-facility-6 {
  padding-bottom: 1px;
}
.catc .single-facility-6 .wa1 {
  content: "";
  display: block;
  width: min(50%, 743px);
  height: 201px;
  background: url(../images/catc_deco/deco17.png) no-repeat bottom left;
  position: absolute;
  right: 0;
  bottom: -83px;
  z-index: -1;
}

@media screen and (max-width: 520px) {
  .catc .single-facility-6 {
    padding-bottom: 60px;
  }
  .catc .single-facility-6 .wa1 {
    aspect-ratio: 743 / 200;
    width: 300px;
    height: auto;
    bottom: -50px;
    background-size: 100% auto;
  }
}

.catc .single-facility-9 .titC {
  position: relative;
}
.catc .single-facility-9 .titC:before {
  content: "";
  display: block;
  aspect-ratio: 369/108;
  width: 369px;
  height: auto;
  background: url(../images/catc_deco/deco18.png) no-repeat bottom center/contain;
  position: absolute;
  bottom: 100%;
  right: 80px;
}

.catc .single-facility-9 .wa2 {
  display: block;
  aspect-ratio: 430/ 496;
  width: 430px;
  height: auto;
  background: url(../images/catc_deco/deco12.png) no-repeat bottom left / contain;
  position: absolute;
  left: 0;
  top: 60px;
  z-index: -1;
}

.catc .single-facility-9 .wa3 {
  display: block;
  aspect-ratio: 430/ 496;
  width: 430px;
  height: auto;
  background: url(../images/catc_deco/deco06.png) no-repeat bottom left / contain;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}

@media screen and (max-width: 520px) {
  .catc .single-facility-9 .titC:before {
    width: 200px;
    right: 30px;
  }

  .catc .single-facility-9 .wa2 {
    width: 180px;
    top: 0px;
    z-index: -1;
  }

  .catc .single-facility-9 .wa3 {
    width: 150px;
    right: 0;
    bottom: -150px;
  }
}

.single-facility-insta {
  width: min(90%, 980px);
  display: flex;
  flex-flow: wrap;
  gap: 20px;
  margin: 40px auto 0;
  position: relative;
  z-index: 10;
}

.single-facility-insta a {
  width: 160px;
}

@media screen and (max-width: 520px) {
  .single-facility-insta {
    gap: 15px;
    margin: 20px auto 0;
  }

  .single-facility-insta a {
    width: 100px;
  }
}
