/* ================================================
    LOADING
================================================ */
#loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgb(255, 255, 255);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.loading-title {
  color: #454545;
  font-size: clamp(20px, 3vw, 42px);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.16em;
  font-family: var(--Noto-Serif-JP);
  margin: 0 auto;
  transition: opacity 1s ease-in-out;
  text-align: center;
  position: relative;
  z-index: 1;
}
@media(max-width:768px){
  .loading-title {
    display: flex;
    justify-content: end;
}
}

/* すべての要素を最初に非表示 JS */
.loading-title,
.loading-bg img,
.loading-img img,
.loading-text img,
.loading-link a,
.loading-header {
  opacity: 0;
  filter: blur(0.1rem);
  transition: opacity 1s ease-in-out, filter 1s ease-in-out;
}
.loading-title.visible {
  opacity: 1;
  filter: blur(0);
  transition: opacity 2s ease, filter 2s ease;
}
.loading-bg img.visible,
.loading-img img.visible,
.loading-text img.visible,
.loading-link a.visible,
.loading-header.visible {
  opacity: 1;
  filter: blur(0);
}
/* ./JS */


picture.fv_img00 img,
picture.fv_img01 img,
picture.fv_img02 img,
picture.fv_img03 img,
picture.fv_img04 img {
  width: auto;
  object-fit: contain;
  position: absolute;
}
picture.fv_img00 img {
  top: 0;
  left: 0;
  width: 62%;
  height: auto;
  z-index: -1;
}
picture.fv_img01 img {
  top: 200px;
  left: 0;
  width: 43%;
  z-index: 1;
}
picture.fv_img02 img {
  top: 0;
  right: 0;
  width: 32%;
}
picture.fv_img03 img {
  z-index: -1;
  left: -30%;
  width: 100%;
  top: 190px;
}
picture.fv_img04 img {
  width: 100%;
  height: auto;
  display: block;
  animation: rotate 100s linear infinite;
  object-fit: cover;
  top: 50%;
  left: -15%;
  width: 40%;
  z-index: 0;
}
.loading-text img {
  position: relative;
  z-index: -1;
  top: 54%;
  width: 40%;
  left: -5%;
}


    @media(max-width:768px){
    picture.fv_img00 img {
    top: 90px;
    left: 0;
    width: 82%;
    z-index: -1;
    max-width: 500px;
    }
    picture.fv_img01 img {
    bottom: auto;
    left: 0;
    width: 62%;
    top: 125px;
    max-width: 400px;
    }
    picture.fv_img02 img {
    top: 0;
    right: 0;
    width: 50%;
    max-width: 300px;
    }
    picture.fv_img03 img {
      width: 70%;
      right: 0;
      z-index: -1;
      top: 190px;
      left: auto;
      max-width: 300px;
  }
    picture.fv_img04 img {
      left: -22%;
      width: 60%;
      top: calc(50% + 282px);
      max-width: 450px;
  }
    .loading-text img {
    z-index: 0;
    width: 100%;
    }
    }



/*
VARIABLES
================================================ */
:root {
  --white: #FFFFFF;
  --blue-15: #154EAA;
  --bk: #454545;
  --pink: #F37CB4;
  --light-pink: #FFE8F7;
  --blue-14: #144EAA;
  --dull-blue: #5780C2;
  /* --navy: #484D5D; */
  --Noto-Sans-JP: "Noto Sans JP", sans-serif;
  --Noto-Serif-JP: "Noto Serif JP", serif;
}


/* ================================================
    COMMON
================================================ */
html {
width: 100%;
scroll-behavior: smooth;
box-sizing: border-box;
overflow-x: hidden;
}
body {
font-family: "Noto Sans JP", sans-serif;
font-style: normal;
color: var(--bk);
background-color: var(--white);
overflow-x: hidden;
}
a {
text-decoration: none;
}
.inner {
max-width: 1140px;
margin: 0 auto;
}
br.sp-br {
display: none;
}
    @media(max-width:768px){
    br.sp-br {
    display: block;
    }
    }

/* cssのみでページ遷移ふわっと */
.fade {
	animation: fadein 1s forwards;
}
@keyframes fadein {
	0% {opacity: 0}
	100% {opacity: 1}
}
/* ./ページ遷移ふわっと */


/* cssのみでページ遷移時の下層タイトル表示ふわっと */
.fade-title {
  opacity: 0;
  animation: fadeTitle 1.2s forwards;
  animation-delay: .6s; /* ← .6秒後にスタート */
}
@keyframes fadeTitle {
  from { opacity: 0; }
  to { opacity: 1; }
}
/* ./cssのみでページ遷移時のタイトル表示ふわっと */



.forSp {
  display: none;
}
.forPc {
  display: block;
}
span.pc-br {
  display: block;
}

/* viewmoreボタン */
.button-vm {
  display: inline-block;
  padding: 19px 100px 19px 40px;
  text-align: center;
  color: #154EAA;
  cursor: pointer;
  position: relative;
  text-decoration: none;
  border-radius: 100px;
  letter-spacing: 0.07em;
  font-weight: 300;
  font-family: var(--Noto-Sans-JP);
  font-weight: 500;
  border: solid 1px #154EAA;
  text-transform: uppercase;
  font-size: 16px;
  background: #FFFFFF;
}
.button-vm::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 1px;
    background: #154EAA;
    transition: .3s;
    width: 70px;
    right: -40px;
}
.button-vm:hover::before {
  right: -60px;
  width: 70px;
}
.button-vm:hover::after {
    right: -60px;
}
@media(max-width:768px){
.button-vm {
  width: auto;
  padding: 16px 86px 16px 36px;
  font-size: 14px;
}
}
/* ================================================
    HEADER
================================================ */
.header .forSp {
  display: none;
}
.h_flex {
  display: flex;
  align-items: center;
}
.sns a {
  margin-right: 16px;
}
.sns a:first-of-type,
.sns a:last-of-type {
  width: 23.4px;
  display: inline-block;
}
.sns a:nth-of-type(2) {
  width: 28px;
  display: inline-block;
display: none;/* 0501一時非表示 */
}
.sns a img {
  width: 100%;
  object-fit: cover;
}
.header-nav.site-id a {
  font-family: var(--Noto-Sans-JP);
  color: var(--white);
  font-weight: 400;
  letter-spacing: 0;
  font-size: 18px;
  display: flex;
}
.header.site-id a{
  font-size: 29px;
  margin-left: 34px;
}
.header-nav {
  width: 170px;
  margin: 0 40px 0 100px;
}
.header-nav img {
  width: 100%;
  object-fit: cover;
}
.gnav-list {
  display: flex;
  align-items: center;
}
    @media(max-width:768px){
    .gnav-list {
    flex-direction: column;
    }
    .header .forSp {
      opacity: 0;
      transition: opacity 0.5s ease;
      display: block;
    }
    }

.gnav-list li {
list-style: none;
}
.gnav-link {
font-family: var(--Noto-Serif-JP);
color: #454545;
font-weight: 500;
line-height: 2;
letter-spacing: 0.12em;
padding: 4px 20px;
font-size: 16px;
}
.header {
width: 100%;
display: flex;
align-items: center;
justify-content: space-between;
position: fixed;
z-index: 10;
margin: 0 auto;
top: 0;
left: 50%;
transform: translatex(-50%);
height: 70px;
background-color: rgba(255, 255, 255, .81);
}
.nav {
display: flex;
}



/*========= スクロール途中でヘッダーが表示＆非表示するためのCSS ===============*/
#jsheader{
  /*fixedで上部固定*/
  position: fixed;
  height: 65px;
  z-index: 999;/*最前面へ*/
  top: 0;
  right: 80px;
}


/*========= SP HEADER ナビゲーションのためのCSS =========*/
    @media(max-width:1340px){
      .header.forPc {
        display: none;
      }
      .header.forSp {
        display: block;
        width: 100%;
        height: 56px;
      }
      .header.forSp.visible {
        opacity: 1;
      }
      .sp_site-id-wh a {
        position: fixed;
        width: 103px;
        top: 15px;
        left: 23px;
      }
      #jsgnav{
        /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
        position:fixed;
        z-index: 999;
        /*ナビのスタート位置と形状*/
        top:0;
        right: -120%;
        width:100%;
        height: 100vh;/*ナビの高さ*/
        background-image: linear-gradient(135deg, rgba(255, 239, 247, 0.95) 0%, rgba(255, 239, 247, 0.95) 10%, rgba(255, 249, 234, 0.95) 30%, rgba(254, 255, 222, 0.95) 70%, rgba(254, 255, 222, 0.95) 100%);
        /*動き*/
        transition: all 0.6s;
        display: grid;
        place-content: center;
        padding: 65px 0;/*ヘッダー分下げる追加*/
        }

      /*リストのレイアウト設定*/
      #jsgnav ul {
        margin-top: -100px;
      }

      #jsgnav li{
        list-style: none;
        text-align: center;
        white-space: nowrap;
      }
      #jsgnav li a{
        color: var(--bk);
        font-size: 16px;
        text-decoration: none;
        display: flex;
        text-transform: uppercase;
        letter-spacing: 0.12em;
        font-weight: 500;
        align-items: center;
        justify-content: center;
        margin: 0;
        padding: 18px;
        font-family: var(--Noto-Serif-JP);
      }
      .sp_navID a {
          position: absolute;
          top: 15px;
          left: 23px;
          width: 103px;
      }
    /*========= ボタンのためのCSS ===============*/
      .openbtn{
        position: fixed;
        z-index: 9999;
        top: 0;
        right: 0;
        cursor: pointer;
        width: 50px;
        height: 60px;
        caret-color: transparent;
      }

      /*×に変化*/	
      .openbtn span{
      display: inline-block;
      transition: all .4s;
      position: absolute;
      height: 3px;
      border-radius: 3px;
      background-color: var(--dull-blue);
      width: 26px;
      }

      .openbtn span:nth-of-type(1) {
      top:18px;	
      }

      .openbtn span:nth-of-type(2) {
      top: 27px;
      }

      .openbtn span:nth-of-type(3) {
      top:36px;
      }

      .openbtn.active span:nth-of-type(1) {
      top: 18px;
      right: 20px;
      transform: translateY(6px) rotate(-45deg);
      width: 26px;
      background-color: var(--dull-blue)
      }

      .openbtn.active span:nth-of-type(2) {
      opacity: 0;
      }

      .openbtn.active span:nth-of-type(3){
      top: 30px;
      right: 20px;
      transform: translateY(-6px) rotate(45deg);
      width: 26px;
      background-color: var(--dull-blue);
      }

      #jsgnav.panelactive {
      right: 0;
      display: grid;
      place-content: center;
      padding: 65px 0;/*ヘッダー分下げる追加*/
      }
      .header-nav.is-fixed .sp_navID {
      position: absolute;
      top: 25px;
      left: 20px;
      }
      }

        @media (max-width: 1340px) {
        .gnav .sns {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 40px;
        }
        .gnav .sns a:first-of-type, .sns a:last-of-type {
        width: 37px;
        }
        .gnav .sns a:first-of-type,
        .gnav .sns a:last-of-type {
        width: 31px;
        }
        .gnav .sns a:nth-of-type(2) {
        width: 37px;
        display: inline-block;
		display: none;/* 0501一時非表示 */
        }
        .gnav .sns a {
        margin: 0 28px;
        }
        }
/*========= ./SP HEADER =========*/


/* ================================================
    TOP
================================================ */
.top {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
img.top-img {
    width: 100%;
}
.fv {
  aspect-ratio: 1440 / 1232;
}
.fv_item {
  position: relative;
  height: 100%;
}



.fv_link-wrap {
  position: absolute;
  right: 7%;
  width: 34%;
  top: 34vw;
}

.fv_link {
  display: flex;
  justify-content: flex-end;
  position: absolute;
  right: 6.4%;
  width: 100%;
  top: 210px;
  z-index: 1;
}


.fv_link a {
  font-size: clamp(15px, 1.6vw, 18px);
  background: #154EAA;
  color: #FFFFFF;
  line-height: 1.5;
  letter-spacing: 0.21em;
  text-align: center;
  border-radius: 100px;
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 30px;
  transition: all 0.3s ease; /* リンクのアニメーション */
  cursor: pointer; /* ここでマウスカーソルを手の形に変更 */
  width: 150px;
  aspect-ratio: 1 / 1;
  font-weight: 500;
}

.fv_link a::before {
  position: absolute;
  content: "";
  border: solid 1px #154EAA;
  border-radius: 100px;
  transition: all 0.3s ease; /* 擬似要素のアニメーション */
  width: clamp(125px, 15vw, 164px);
  height: clamp(125px, 15vw, 164px);
}

.fv_link a:hover::before {
  width: 178px; /* ホバー時に外側の丸が大きくなる */
  height: 178px;
}
.fv_link a span {
  font-size: 10px;
  display: block;
}
.forSp {
    display: none;
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

    @media(max-width:768px){
    .fv_link a {
    height: 117px;
    width: 117px;
    font-size: 16px;
    letter-spacing: 0.039em;
    margin-left: 20px;
    }
    .fv_link a::before {
    width: 130px;
    height: 130px;
    }
    .fv_link a span {
    letter-spacing: 0;
    font-size: 12px;
    }
    .fv_link a:hover::before {
    width: 138px; /* ホバー時に外側の丸が大きくなる */
    height: 138px;
    }
    .fv_link-wrap {
    bottom: 190px;
    right: 0;
    /* width: 76%; */
    /* top: calc(50% + 50px); */
    width: 72%;
    top: calc(50% + 100px);
    }
    .fv_link {
    top: 140px;
    justify-content: flex-end;
    }
    }

/* ================================================
    TOP_news
================================================ */
.top_news {
  background-image: url(../images/top/top_newsBg@2x.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position-x: center;
  padding: 0;
  padding: 80px 0 100px;
    margin-top: 70px;
}
.top_news h2 {
  font-size: 31px;
  position: relative;
  width: 137px;
  margin: 0 auto;
  font-family: var(--Noto-Serif-JP);
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--bk);
}
.top_news h2::before {
  position: absolute;
  content: "";
  background-image: url(../images/top/new@2x.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 127px;
  height: 58px;
  top: -40px;
  left: -115px;
}
.top_news table {
  margin: 48px auto 0;
  font-family: var(--Noto-Serif-JP);
  font-weight: 400;
  letter-spacing: 0.1em;
}
.top_news tr {
  display: flex;
  align-items: center;
  border-bottom: solid 1px rgba(21, 78, 170, .75);
}
.top_news tr:last-child {
  border-bottom: none;
}
.top_news td {
  font-size: 14px;
  letter-spacing: 0.1em;
  color: #454545;
  padding: 20px 100px 20px 50px;
}
.top_news td:nth-child(2) {
  padding: 20px 50px 20px 0;
  line-height: 2;
}
.top_news span.tag {
  background: #5780C2;
  color: #FFFFFF;
  font-size: 12px;
  padding: 5px 20px;
}
span.top_news-text {
  display: block;
  margin-top: 8px;
}
.top_news .button-wrap {
  text-align: center;
  margin-top: 50px;
}

    @media(max-width:768px){
    .top_news {
    background-image: none;
    position: relative;
    overflow: hidden;
    padding: 170px 0 180px;
    margin: 170px auto 0;
    }
    .fv_item {
    height: 100vh;
    }
    .top_news tr {
    width: 90%;
    margin: 0 auto;
    }
    .top_news td {
    font-size: 12px;
    padding: 20px 7% 20px 0;
    width: 28%;
    }
    .top_news td:first-of-type {
    text-align: center;
    }
    .top_news td:nth-child(2) {
    padding: 20px 2% 20px 0;
    width: 63%;
    }
    .top_news span.tag {
    font-size: 10px;
    padding: 1.5px 8px;
    }
    .top_news::before {
    position: absolute;
    content: "";
    background-image: url(../images/top/top_newsBgTop-sp@2x.png);
    background-size: contain;
    background-repeat: no-repeat;
    top: 40px;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    }
    .top_news::after {
    transform: translateX(-50%);
    margin: 0 auto;
    position: absolute;
    content: "";
    background-image: url(../images/top/top_newsBgBottom-sp@2x.png);
    background-size: contain;
    background-repeat: no-repeat;
    bottom: 0;
    left: 50%;
    width: 100%;
    height: 235px;
    z-index: -1;
    }
    .top_news h2::before {
    width: 87px;
    left: -35px;
    height: 40px;
    top: -40px;
    }
    .top_news h2 {
    font-size: 22px;
    text-align: center;
    }
    span.top_news-text {
    font-size: 11px;
    line-height: 1.64;
    }

    }

/* ================================================
    TOP_about
================================================ */
section.top_about {
  position: relative;
  background-image: 
    linear-gradient(to bottom, white 0px, white 300px, transparent 301px), 
    linear-gradient(to top left, transparent 0%, #FFEAF8 70%);
  background-size: 100% 100%; /* 背景全体に適用 */
  padding-bottom: 160px;
  margin-top: 82px;
  overflow: hidden;
}

span.bg-blue {
  background-color: #144EAA;
  color: #FFFFFF;
  writing-mode: vertical-rl;
  display: block;
  letter-spacing: 0.2em;
  padding: 30px 14px 20px;
}
span.bg-blue:last-of-type {
  letter-spacing: 0.3em;
  padding: 10px 7.4px;
}
span.bg-white {
  background: #FFFFFF;
  color: #144EAA;
  writing-mode: vertical-rl;
  display: block;
}
h2.top_about-title {
  writing-mode: vertical-rl;
  font-size: 105px;
  position: relative;
  color: #144EAA;
  margin-right: 38px;
  margin-top: 434px;
  font-family: var(--Noto-Serif-JP);
  font-weight: 400;
}
h2.top_about-title::after {
  position: absolute;
  content: "";
  border-right: solid 1px #144EAA;
  height: 230px;
  right: 50px;
}
p.top_about-subTitle {
  font-size: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: var(--Noto-Serif-JP);
  font-weight: 400;
}
p.top_about-subTitle span.bg-white {
  font-size: 56px;
  padding: 17px 18px 5px 18px;
  letter-spacing: 0.4em;
}
.top_about-titleWrap {
  display: inline-flex;
  flex-direction: row-reverse;
  width: 30%;
  margin-top: 52px;
}
.top_about-flex {
  display: flex;
  justify-content: space-between;
}
p.top_faciText.sp {
  display: none;
}
.top_aboutItem {
  width: 68%;
}
.top_aboutImg {
  max-width: 412px;
  margin-bottom: -480px;
  width: 44%;
}
.top_aboutImg img {
  width: 100%;
}
.top_floatWrap {
  float: right;
  shape-outside: circle();
  width: 66%;
  text-align: right;
}
img.top_floatImg {
  max-width: 830px;
  margin-left: 40px;
  width: 100%;
}
.top_floatText p {
  margin-top: 50px;
  max-width: 491px;
  line-height: 2;
  letter-spacing: 0.1em;
  font-size: 14px;
  width: 52%;
  font-family: var(--Noto-Serif-JP);
  font-weight: 400;
  color: var(--bk);
}
.top_floatText {
  margin-top: 550px;
}
.top_about .button-wrap {
  margin-top: 50px;
}

    @media(max-width:768px){
    section.top_about {
    background-image: linear-gradient(to bottom, white 0px, white 120px, transparent 121px), linear-gradient(to top, transparent 0%, #FFEAF8 70%);
    padding-bottom: 160px;
    margin-top: 82px;
    margin-top: 45px;
    }
    .top_about-flex {
    display: grid;
    grid-template-columns: 61% 39%;
    grid-template-rows: auto auto auto auto;
    grid-template-areas:
    "a-img a-title"
    "a-imgL a-imgL"
    "a-text a-text"
    "a-button a-button";
    }
    .top_aboutImg {
    grid-area: a-img;
    width: 100%;
    margin: 17px auto 0 0;
    }
    .top_about-titleWrap {
    grid-area: a-title;
    width: 100%;
    margin-top: 0;
    }
    .top_aboutItem {
    display: contents;
    }
    .top_floatWrap {
    grid-area: a-imgL;
    }
    .top_floatText {
    margin-top: 30px;
    grid-area: a-text;
    }
    .top_floatText p {
    margin: 30px 5%;
    max-width: 100%;
    width: 90%;
    }
    .top_about .button-wrap {
    margin-top: 50px;
    grid-area: a-button;
    text-align: center;
    }
    h2.top_about-title {
    font-size: 43px;
    margin-right: 6%;
    margin-top: 190px;
    letter-spacing: 0.3em;
    }
    h2.top_about-title::after {
    height: 90px;
    right: 50%;
    }
    p.top_about-subTitle {
    font-size: 21px;
    font-family: var(--Noto-Serif-JP);
    font-weight: 400;
    margin-right: 6.5%;
    }
    p.top_about-subTitle span.bg-white {
    font-size: 29px;
    padding: 10px;
    letter-spacing: 0.4em;
    font-weight: 600;
    }
    span.bg-blue {
    padding: 14px 8px;
    }
    span.bg-blue:last-of-type {
    padding: 6px 3px;
    }
    .top_floatWrap {
    float: unset;
    shape-outside: none;
    width: 84%;
    text-align: right;
    max-width: 100%;
    margin: 30px 8% 0;
    }
    img.top_floatImg {
    max-width: 830px;
    margin-left: 0;
    width: 100%;
    }
    }



/* ================================================
    TOP_swiper
================================================ */
.top_swiper {
  margin-top: -100px;
}

/* ================================================
    TOP_Facility
================================================ */
.top_facility {
  background-image: url(../images/top/top_facilityBg@2x.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-size: 156px 390px;
  background-position: right calc(100% - 50px); /* 下から50px上に移動 */
  margin-top: 135px;
}
.top_facility-flex {
  display: flex;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 7%;
}
.top_facility-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 17% 80%;
  grid-template-rows: 1fr 1fr 1fr;
  grid-template-areas: 
    "a d"
    "b d"
    "c d";
    gap: 23px;
}
.a {
grid-area: a;
}
.b {
grid-area: b;
}
.c {
grid-area: c;
}
.d {
grid-area: d;
aspect-ratio: 818 / 531;
}
.a img,
.b img,
.c img,
.d img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: bottom;
}
.top_facility-imgWrap {
  position: relative;
  margin: 145px 50px 100px 0;
}
.top_facility-imgWrap p {
  position: absolute;
  max-width: 320px;
  background-color: #FFE8F7;
  padding: 27px 40px;
  line-height: 2;
  letter-spacing: 0.1em;
  font-size: 14px;
  bottom: -120px;
  right: -50px;
  font-family: var(--Noto-Serif-JP);
  letter-spacing: 0.1em;
  font-weight: 400;
  color: var(--bk);
}
.top_facility-titleWrap {
  display: flex;
  flex-direction: row-reverse;
  margin: 0 30px 0 20px;
}
p.top_facility-subTitle {
  font-size: 21px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: var(--Noto-Serif-JP);
  font-weight: 400;
}
h2.top_facility-title {
  writing-mode:vertical-rl;
  font-size: 62px;
  position: relative;
  color: #144EAA;
  margin-right: 38px;
  margin-top: 100px;
  letter-spacing: 0.4em;
  font-family: var(--Noto-Serif-JP);
  font-weight: 400;
}
h2.top_facility-title::after {
  position: absolute;
  content: "";
  border-right: solid 1px #144EAA;
  height: 214px;
  right: 50%;
  top: 355px;
}
.top_facility .button-wrap {
  text-align: right;
  max-width: 1240px;
  margin: 70px auto 115px;
  padding: 0 16%;
}
p.top_faciText.sp {
  display: none;
}


    @media(max-width:768px){
    .top_facility-grid {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto;
    grid-template-areas:
    "d d d"
    "a b c";
    gap: 8px;
    }
    .top_facility-imgWrap p {
    max-width: 100%;
    background-color: #FFFFFF;
    padding: 27px 40px;
    line-height: 2;
    letter-spacing: 0.1em;
    font-size: 14px;
    bottom: 0;
    right: 0;
    }
    .top_facility-imgWrap {
    margin: 50px 5% 0 0;
    }
    p.top_faciText.sp {
      display: block;
      width: 90%;
      margin: 43px 5% 0;
      font-size: 14px;
      font-family: var(--Noto-Serif-JP);
      letter-spacing: 0.1em;
      font-weight: 400;
      color: var(--bk);
      line-height: 2;
    }
    p.top_faciText.pc {
    display: none;
    }
    .top_facility-imgWrap p {
    position: static;
    }
    .top_facility-imgWrap p {
    position: static;
    }
    h2.top_facility-title {
    margin-top: 67px;
    font-size: 24px;
    margin-right: 12px;
    }
    p.top_facility-subTitle {
    font-size: 12px;
    }
    h2.top_facility-title::after {
    height: 84px;
    top: 140px;
    }
    .top_facility-titleWrap {
    margin: 0;
    }
    .top_facility-flex {
    padding: 0 5%;
    }
    .top_facility .button-wrap {
    text-align: center;
    margin: 70px auto 75px;
    }
    .top_facility {
    background-size: 60px 141px;
    background-position: right 42%;
    margin-top: 75px;
    }
    }

/* ================================================
    TOP_staff
================================================ */
.top_staff {
  background-image: url(../images/top/top_staffBg@2x.png);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 82px 0 54px;
}
.top_staff-title img {
  width: 76px;
  height: 72px;
}
.top_staff-title {
  display: flex;
  align-items: center;
  padding: 0 7%;
  margin-bottom: 100px;
}
.top_staff-title h2 {
  font-family: var(--Noto-Serif-JP);
  color: var(--blue-15);
  letter-spacing: 0.1em;
  font-size: 43px;
  margin-left: 40px;
  line-height: 1.5;
  font-weight: 400;
}
.top_staff-subTitle {
  font-family: var(--Noto-Sans-JP);
  color: var(--pink);
  font-weight: 200;
  letter-spacing: 0.1em;
  line-height: 1.5;
  display: block;
  font-size: 23px;
  margin-left: 0;
}

.top_staff .button-wrap {
  text-align: right;
  max-width: 1240px;
  padding: 0 16%;
  margin: 100px auto 0;
}
p.staff-name {
  margin-top: 36px;
  text-align: center;
  font-size: 15px;
}
p.staff-tag {
  text-align: center;
  text-align: center;
  font-size: 14px;
  color: #F37CB4;
  display: flex;
  gap: 34px;
  justify-content: center;
  margin-top: 16px;
}
.swiper-slide img.staff-text {
  width: 80%;
  margin: 0 auto 30px;
  display: block;
}
/* 0501追加 */
.top_staff-title {
  margin-bottom: 50px;
}
.top_staff .staff-img {
  max-height: 28vh;
  object-fit: contain;
}
@media(max-width:1180px){
  p.staff-tag {
    display: block;
  }
  p.staff-tag span {
    display: block;
    line-height: 1.5;
  }  
}
    @media(max-width:768px){
    .top_staff-title h2 {
    font-size: 22px;
    margin-left: 7px;
    }
    .top_staff-title img {
    width: 35px;
    height: 33.32px;
    }
    .top_staff-subTitle {
    font-size: 12px;
    margin-left: 0;
    }
    .top_staff-title {
    align-items: self-start;
    margin-bottom: 50px;
    }
    .top_staff {
    padding: 57px 0 45px;
    }
    .top_staff .button-wrap {
    text-align: center;
    margin: 70px auto 40px;
    }
		
    /* 0501追加 */
    .swiper-slide img.staff-text {
      width: 80%;
    }
    p.staff-tag {
      display: flex;
    }
    p.staff-tag span {
      line-height: 1;
    }
    }

/* ================================================
    TOP_recruit
================================================ */
h2.top_recruit-title {
  writing-mode: vertical-rl;
  font-size: 52px;
  position: relative;
  color: #144EAA;
  margin-top: 60px;
  letter-spacing: 0.5em;
  font-family: var(--Noto-Serif-JP);
  font-weight: 400;
}
h2.top_recruit-title::after {
  position: absolute;
  content: "";
  border-right: solid 1px #144EAA;
  height: 147px;
  right: 50%;
  top: 324px;
}
p.top_recruit-subTitle {
  width: 50px;
  margin-left: 24px;
}
p.top_recruit-subTitle img {
  width: 100%;
  object-fit: cover;
}
.top_recruit-titleWrap {
  display: flex;
  flex-direction: row-reverse;
}

    @media(max-width:768px){
    h2.top_recruit-title {
    font-size: 24px;
    margin-top: 36px;
    }
    p.top_recruit-subTitle {
    width: 25.4px;
    margin-left: 9px;
    }
    }


/* ================================================
    FOOTER
================================================ */
.footer {
  background-color: var(--charcoal);
}
.footer_inner {
  margin: 130px auto 60px;
  display: flex;
  justify-content: center;
}
h1.footer_siteID {
  width: 354px;
}
h1.footer_siteID a img {
  width: 100%;
  object-fit: cover;
}
.footer_item {
  color: var(--bk);
  padding: 0 11% 14px 4.7%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.footer_add p {
  font-family: var(--Noto-Serif-JP);
  color: var(--bk);
  line-height: 1.5;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.12em;
  margin-top: 40px;
}
a.footer_map {
  font-family: var(--Noto-Serif-JP);
  background-color: var(--dull-blue);
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 20px;
  letter-spacing: 0.12em;
  display: inline-table;
}
a.footer_pp {
  font-family: var(--Noto-Serif-JP);
  color: var(--bk);
  font-size: 14px;
  font-weight: 500;
  padding: 4px 2px;
  border-bottom: solid 1px;
  letter-spacing: 0.12em;
}
.footer_item2 {
  text-align: center;
  border-left: solid 1px rgba(20, 78, 170, .82);
  padding: 54px 7% 40px 11%;
}
.footer_tel img {
  width: 38px;
  margin-right: 24px;
}
.footer_tel a {
  font-family: var(--Noto-Serif-JP);
  color: var(--bk);
  font-size: clamp(34px, 3.3vw, 40px);
  letter-spacing: 0.12em;
  line-height: 1;
  font-weight: 500;

}
.footer_item2 h4 {
  font-family: var(--Noto-Serif-JP);
  color: var(--bk);
  font-size: 20px;
  letter-spacing: 0.12em;
  line-height: 2;
  font-weight: 500;
}
p.footer_item2-p {
  font-family: var(--Noto-Serif-JP);
  font-weight: 500;
  background-color: var(--dull-blue);
  color: #FFFFFF;
  font-size: 12px;
  padding: 6px 40px;
  border-radius: 20px;
  letter-spacing: 0.12em;
  display: inline-block;
  margin-top: 20px;
}
.footer_tel {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer_copy {
  text-align: center;
  margin-top: 64px;
  background: var(--blue-14);
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer_copy small {
  font-family: var(--Noto-Serif-JP);
  color: var(--white);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
}
a.footer_pp.sp {
  display: none;
}

    @media(max-width:1024px){
    .footer_inner {
    flex-direction: column;
    margin: 130px auto 50px;
    }
    .footer_inner {
    margin: 60px auto 50px;
    }
    h1.footer_siteID a {
    font-weight: 700;
    font-size: 18px;
    }
    .footer {
    padding: 0;
    }
    nav.footer_nav {
    display: none;
    }
    .footer_add {
    font-size: 14px;
    }
    .footer_add p:first-of-type {
    margin-top: 30px;
    }
    .footer_add p:last-of-type {
    margin-top: 36px;
    }
    a.footer_map {
    margin-top: 24px;
    }
    .footer .button4 {
    text-align: left;
    margin-top: 30px;
    }
    .footer .button4 a {
    font-size: 14px;
    margin-left: 0;
    }
    .footer_copy {
    text-align: center;
    margin-top: 60px;
    }
    .footer_copy small {
    font-size: 12px;
    }
    h1.footer_siteID {
    width: 192px;
    }
    .footer_item {
    align-items: center;
    padding: 0;
    }
    .footer_add p:last-of-type {
    text-align: center;
    }
    a.footer_pp.pc {
    display: none;
    }
    a.footer_pp.sp {
    display: inline-block;
    font-size: 12px;
    }
    .footer_link {
    text-align: center;
    }
    .footer_item2 {
    border-left: none;
    padding: 0;
    margin-top: 75px;
    }
    p.footer_item2-p {
    margin: 30px auto 0;
    padding: 6px 0;
    width: 85%;
    max-width: 338px;
    font-size: 14px;
    }
    .footer_item2 h4 {
    font-size: 16px;
    }
    .footer_tel a {
    font-size: 34px;
    }
    .footer_tel {
    margin-top: 30px;
    }
    }
/*./FOOTER */

/* ================================================
    下層共通
================================================ */
.u_fvImg {
  width: 55%;
  margin: 0 auto;
}
.u_fvImg img {
  width: 100%;
  object-fit: contain;
}
.inner {
  max-width: 1000px;
  margin-inline: auto;
  padding: 0 5%;
}
.invers {
  clip-path: inset(0 -100vmax);
  padding: 53px 7% 33px;
  margin-top: 42px;
  background-image: linear-gradient(90deg, rgba(255, 239, 247, 0.95) 0%, rgba(255, 239, 247, 0.95) 40%, rgba(255, 249, 234, 0.95) 60%, rgba(254, 255, 222, 0.95) 70%, rgba(254, 255, 222, 0.95) 100%);
}
.u_fv h2 {
  font-family: var(--Noto-Serif-JP);
  color: var(--bk);
  font-size: 36px;
  font-weight: 500;
  line-height: 1.66;
  letter-spacing: 0.12em;
  max-width: 1240px;
  text-align: center;
  margin: 0 auto;
}
.u_fv h2 span {
  display: block;
  font-size: 24px;
  font-family: var(--Noto-Sans-JP);
  color: var(--blue-14);
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.66;
  margin-top: 17px;
}
.u_flowerRibon img {
  width: 100%;
}
.u_fv-flower img {
  width: 100%;
  object-fit: cover;
}

    @media(max-width:768px){
    .u_fvImg {
    width: 59%;
    }
    .invers {
    padding: 25px 7%;
    margin-top: 5px;
    }
    .u_fv h2 {
    font-size: 20px;
    letter-spacing: 0.04em;
    line-height: 1;
    }
    .u_fv h2 span {
    font-size: 10px;
    letter-spacing: 0.12em;
    line-height: 1;
    margin-top: 4px;
    }
    }


/* タイトル ここから*/
.title img {
  width: 76px;
  height: 72px;
}
.title {
  display: flex;
  align-items: center;
  padding: 0 7%;
}
.title h2 {
  font-family: var(--Noto-Serif-JP);
  color: var(--blue-15);
  letter-spacing: 0.1em;
  font-size: 43px;
  margin-left: 70px;
  line-height: 1.5;
  font-weight: 400;
}
.subTitle {
  font-family: var(--Noto-Sans-JP);
  color: var(--pink);
  font-weight: 200;
  letter-spacing: 0.1em;
  line-height: 1.5;
  display: block;
  font-size: 23px;
  margin-left: -27px;
}
    @media(max-width:768px){
    .title img {
    width: 35px;
    height: 33.3px;
    }
    .title h2 {
    letter-spacing: 0.036em;
    font-size: 18px;
    }
    .subTitle {
    font-size: 12px;
    }
    }
/*  タイトル ここまで */

/* ================================================
    U_ABOUT
================================================ */
.u_aboutBg {
  background-image: url(../images/under/u_flower.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position-x: center;
  text-align: center;
  padding-bottom: 60px;
  margin-top: -30px;
}
h2.u_aboutTitle {
  width: 38.6%;
  margin: 0 auto;
}
h2.u_aboutTitle img {
  width: 100%;
  object-fit: cover;
  margin-top: 110px;
}
.u_aboutText p {
  font-family: var(--Noto-Serif-JP);
  font-size: 16px;
  letter-spacing: 0.032em;
  line-height: 2.37;
  font-weight: 500;
  color: var(--bk);
}
.u_aboutText {
  width: 38.6%;
  margin: 70px auto 0;
}
.u_aboutText p:nth-child(3) {
  margin-top: 40px;
}


/* grid */
.u_aboutGrid {
  display: grid;
  grid-template-areas:
    "BgLT text BgRT"
    "BgLB text BgRB";
    grid-template-columns: 28% 44% 28%;
}
.u_aboutText-wrap {
  grid-area: text;
  max-width: 626px;
  margin: 0 auto;
}
.u_aboutBgLT {
  grid-area: BgLT;
  margin-right: auto;
}
.u_aboutBgRT {
  grid-area: BgRT;
  margin-left: auto;
}
.u_aboutBgLB {
  grid-area: BgLB;
  margin-top: auto;
}
.u_aboutBgRB {
  grid-area: BgRB;
  margin-top: auto;
}
h2.u_aboutTitle {
  width: 100%;
  margin: 0 auto;
}
h2.u_aboutTitle.sp {
  display: none;
}

.u_aboutText {
  width: 100%;
  margin: 70px auto 0;
  text-align: center;
}
.u_aboutBgLT img,
.u_aboutBgRT img,
.u_aboutBgLB img,
.u_aboutBgRB img {
  width: 100%;
  object-fit: cover;
}

    @media(max-width:768px){
    h2.u_aboutTitle.pc {
    display: none;
    }
    h2.u_aboutTitle.sp {
    display: block;
    grid-area: spTitle;
    width: 74vw;
    max-width: 400px;
    }
    .u_aboutGrid {
    display: grid;
    grid-template-areas:
    "BgLT spTitle spTitle BgRT"
    "text text text text"
    "BgLB BgLB BgRB BgRB";
    grid-template-columns: 13% 37% 37% 13%; /* カラムは固定 */
    grid-template-rows: auto auto auto; /* 各行の高さを調整 */
    }
    .u_aboutText-wrap {
    grid-area: text;
    width: 90%;
    padding: 0 5%;
    }
    .u_aboutText p {
    font-size: 14px;
    letter-spacing: 0.024em;
    line-height: 2;
    margin-top: 40px;
    }
    .u_aboutBgLB {
    padding-right: 17%;
    position: relative;
    top: -24px;
    }
    .u_aboutBgRB {
    padding-left: 17%;
    position: relative;
    top: -24px;
    }
    h2.u_aboutTitle img {
    margin-top: 50px;
    }
    .u_aboutText {
    margin: 14px auto 0;
    }
    .u_aboutText p:first-child {
    margin-top: 0;
    }
    }



/* U_ABOUT_代表メッセージ */
.a_messageImg-pc {
  float: right;
  shape-outside: circle();
  max-width: 600px;
  margin-left: 50px;
}
img.a_messageImg {
  width: 100%;
}
.a_messageText p {
  margin-top: 50px;
  line-height: 2;
  letter-spacing: 0.1em;
  font-size: 14px;
  font-family: var(--Noto-Serif-JP);
  font-weight: 500;
}
section.a_message .title {
  display: flex;
  align-items: center;
  margin-bottom: 90px;
  padding: 300px 0 0 8.6%;
}
.a_messageText {
  margin: 0 13% 0 7%;
}
section.a_message {
  position: relative;
  background-image: linear-gradient(to bottom, white 0px, white 180px, transparent 181px), linear-gradient(300deg, #E9FFDD 20%, #D1F3FF 60%);
  background-size: 100% 100%;
  padding: 0 0 100px;
  z-index: -1;
  margin-top: -65px;
}
section.a_message .title h2 {
  margin-left: 38px;
}
section.a_message .title h2 .subTitle {
  margin-left: 0;
}
.a_message-ribon {
  position: relative;
  width: 20%;
  z-index: 1;
}
.a_message-ribon {
  position: absolute;
  width: 20%;
  z-index: 1;
  top: 46px;
}
.a_message-ribon img {
  width: 100%;
  object-fit: cover;
}
.a_messageImg-sp {
  display: none;
}

    @media(max-width:768px){
    .a_messageImg-pc {
    float: none;
    shape-outside: none;
    width: 250px;
    display: none;
    }
    img.a_messageImg {
    margin: 0 auto;
    }
    .a_messageImg-sp {
    display: block;
    width: 250px;
    margin: 0 auto;
    }
    section.a_message {
    background-image: linear-gradient(300deg, #E9FFDD 20%, #D1F3FF 60%);
    padding: 30px 0 70px;
    margin-top: 0;
    }
    section.a_message .title {
    padding: 63px 0 0 8.6%;
    }
    .a_message-ribon {
    width: 41%;
    bottom: 0;
    top: -55px;
    }
    .a_messageText {
    margin: 0 auto;
    padding: 0 5%;
    }
    .a_messageText p {
    margin-top: 40px;
    letter-spacing: 0.032em;
    font-size: 12px;
    }
    section.a_message .title {
    margin-bottom: 18px;
    align-items: start;
    }
    section.a_message .title h2 {
    letter-spacing: 0.036em;
    font-size: 18px;
    margin-left: 13px;
    }
    section.a_message .subTitle {
    font-size: 12px;
    margin-left: 0;
    }
    }


/* U_ABOUT_経営理念 */
.a_philosophy {
  padding: 67px 0 0;
  background-color: #FFFFFF;
}
.a_philosophy-flex {
  display: flex;
}
.a_philosophy-text {
  width: 65%;
}
.a_philosophy-text p {
  margin-left: calc(13% + 89px);
}
.a_philosophy-text .title {
  padding-left: 13%;
}
.a_philosophy-text .title h2 {
  margin-left: 35px;
}
.a_philosophy-text .subTitle {
  margin-left: 90px;
  font-size: 23px;
  margin-top: 11px;
}
.a_philosophy-text .title img {
  width: 54px;
  height: 54px;
}

.a_philosophy-text .title {
  padding-left: 13%;
  display: block;
}
.a_philosophy-text .title-flex {
  display: flex;
  align-items: center;
}
.a_philosophy-p {
  font-family: var(--Noto-Serif-JP);
  line-height: 2.375;
  letter-spacing: 0.032em;
  font-size: 16px;
  margin-top: 27px;
  margin-bottom: 100px;
}
.a_philosophy-img.sp {
  display: none;
}
.a_vision-img.sp {
  display: none;
}
.a_philosophy-img.pc {
  display: block;
  max-width: 522px;
  margin-left: 55px;
  width: 34%;
}
.a_philosophy-img img {
  width: 100%;
}

    @media(max-width:768px){
    .a_philosophy-flex {
    flex-direction: column;
    }
    .a_philosophy-text {
    width: 90%;
    margin: 0 auto;
    }
    .a_vision-text {
    margin: 0 auto;
    width: 90%;
    }
    .a_vision-text p {
    margin-left: 0;
    margin: 0 auto;
    }
    .a_philosophy-img.pc {
    display: none;
    }
    .a_vision-img.sp {
    display: block;
    }  
    .a_vision-img.pc {
    display: none;
    }
    .a_philosophy-img.sp {
    display: block;
    width: 61%;
    margin: 0 auto;
    }
    .a_philosophy-text p {
    margin-left: 0;
    }
    .a_philosophy-text .title {
    padding: 0;
    display: block;
    }
    .a_philosophy-text .title h2 {
      margin-left: 13px;
    }
    .a_philosophy-text .subTitle {
    margin-left: 49px;
    font-size: 12px;
    margin-top: -3px;
    }
    .a_philosophy-text .title img {
    width: 35px;
    height: 33.3px;
    }
    .a_philosophy {
    padding: 72px 0 0;
    }
    .a_philosophy-img img {
    margin-top: 35px;
    }
    .a_philosophy-p {
    line-height: 2;
    font-size: 12px;
    margin-top: 38px;
    margin-bottom: 0;
    }
    .a_philosophy-text p {
    margin-left: 0;
    }
    }

/* U_ABOUT_ビジョン */
.a_vision {
  padding-bottom: 135px;
}
.a_vision-flex {
  display: flex;
}
.a_vision-text {
  width: 65%;
}
.a_vision-text p {
  margin-left: 0;
  margin: 0 15% 0 15px;
}
p.a_vision-p {
  font-family: var(--Noto-Serif-JP);
  line-height: 2.375;
  letter-spacing: 0.032em;
  font-size: 16px;
  margin-top: 54px;
}
.a_vision-text .title-flex {
  display: flex;
  align-items: center;
}
.a_vision-text .title {
  padding-left: 0;
  display: block;
}
.a_vision-text .title h2 {
  margin-left: 33px;
}
.a_vision-text .subTitle {
  margin-left: 117px;
}
.a_vision-img.pc {
  display: block;
  max-width: 522px;
  width: 34%;
  margin-right: 55px;
}
.a_vision-img img {
  width: 100%;
}

    @media(max-width:768px){
    .a_vision-flex {
    display: flex;
    margin-top: 50px;
    }
    p.a_vision-p {
    margin: 0;
    line-height: 2;
    font-size: 12px;
    margin-top: 38px;
    margin-bottom: 0;
    }
    .a_vision-text {
    width: 90%;
    margin: 0 auto;
    }
    .a_vision-img.sp {
    margin: 0;
    width: 60%;
    }
    .a_vision-text .title h2 {
    margin-left: 13px;
    }
    .a_vision-text .subTitle {
    margin-left: 49px;
    font-size: 12px;
    margin-top: -3px;
    }
    .a_vision-img img {
    margin-top: 35px;
    }
    .a_vision-img.sp {
    margin: 0 auto;
    }
    .a_vision {
    padding-bottom: 70px;
    }
    .a_vision-img.pc {
      display: none;
    }
    }


/* U_ABOUT_会社概要 */
.a_overview {
  background-color: #FFEDF9;
  padding: 64px 7%;
}
.a_overview-title img {
  width: 54px;
}
.a_overview-title h2 {
  font-family: var(--Noto-Serif-JP);
  color: var(--blue-15);
  letter-spacing: 0.1em;
  font-size: 43px;
  line-height: 1.5;
  font-weight: 400;
}
.a_overview-title .subTitle {
  margin-left: 0;
}
.a_overview-title {
  text-align: center;
}
.a_overview-wrap {
  max-width: 1010px;
  margin: 16px auto 0;
}
.a_overview-wrap td:first-child {
  width: 47%;
  padding: 30px 0 30px 14%;
  line-height: 1.44;
}
.a_overview-wrap td:nth-child(2) {
  width: 53%;
  padding: 30px 0;
  line-height: 2;
}
.a_overview-wrap tr {
  border-bottom: solid 1px rgba(21, 78, 170, .22);
}
.a_overview-wrap table {
  width: 100%;
  color: var(--bk);
  letter-spacing: 0.1em;
  font-weight: 500;
  font-family: var(--Noto-Sans-JP);
  font-size: 18px;
}

    @media(max-width:768px){
    .a_overview-title img {
    width: 35px;
    height: 33.32px;
    }
    .a_overview-title h2 {
    letter-spacing: 0.036em;
    font-size: 18px;
    }
    .a_overview-wrap table {
    letter-spacing: 0.024em;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    }
    .a_overview {
    padding: 48px 5% 74px;
    }
    .a_overview-wrap td:first-child {
    width: 33%;
    padding: 26px 0 26px 5%;
    line-height: 1.44;
    }
    .a_overview-wrap td:nth-child(2) {
    width: 62%;
    line-height: 1.44;
    padding: 26px 1% 26px 0;
    }
    .a_overview-wrap tr:last-of-type {
    display: none;
    }
    }

/* U_ABOUT_グループ企業 */
.a_group {
  padding: 75px 7%;
}
.a_group-title img {
  width: 54px;
}
.a_group-title h2 {
  font-family: var(--Noto-Serif-JP);
  color: var(--blue-15);
  letter-spacing: 0.1em;
  font-size: 43px;
  line-height: 1.5;
  font-weight: 400;
}
.a_group-title .subTitle {
  margin-left: 0;
}
.a_group-title {
  text-align: center;
}
.a_group-item p {
  font-family: var(--Noto-Sans-JP);
  font-weight: 500;
  background-color: var(--blue-15);
  color: #FFFFFF;
  font-size: clamp(13px, 1.7vw, 16px);
  padding: 8.5px 20px;
  border-radius: 30px;
  letter-spacing: 0.032em;
  display: inline-block;
  margin-top: 20px;
}
ul.a_group-item {
  display: flex;
  justify-content: center;
  margin-top: 54px;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 30px auto 0;
  gap: 7%;
}
ul.a_group-item li {
  text-align: center;
  width: 256px;
  margin-top: 30px;
}
ul.a_group-item li img {
  width: 100%;
  object-fit: cover;
  vertical-align: bottom;
}

    @media(max-width:768px){
    .a_group-title h2 {
    letter-spacing: 0.036em;
    font-size: 18px;
    }
    .a_group-title img {
    width: 35px;
    height: 33.32px;
    }
    ul.a_group-item {
    margin: 26px auto 0;
    gap: 30px;
    }
    .a_group-item p {
    font-size: 14px;
    letter-spacing: 0.028em;
    width: 80%;
    margin: 0 auto;
    }
    .a_group {
    padding: 75px 5% 55px;
    }
    h2.top_recruit-title::after {
      height: 96px;
      right: 50%;
      top: 147px;
    }
    }

/* ================================================
    TOP PAGE
================================================ */
/* 採用情報 */
.top_recruit {
  position: relative;
  padding: 0 0 44px;
  margin-top: 140px;
  background-image:linear-gradient(to bottom, white 0px, white 300px, transparent 301px), linear-gradient(300deg, #E9FFDD 20%, #D1F3FF 60%);
  background-size: 100% 100%;
}
.top_recruit .ttl-h2 {
  width: 43%;
}
.top_recruit-img {
  width: 63%;
  margin-top: 60px;
}
.top_recruit-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 20px 20px 0;
  aspect-ratio: 978 / 642;
}
.top_recruit-bg h3 {
  font-size: 35px;
  background-color: var(--white);
  /* padding: 17px 12% 17px 27px; -0425*/
  display: inline-block;
  font-family: var(--Noto-Serif-JP);
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--darkGray);
  padding: 17px 24px 17px 25px;
}
.top_recruit-bg h3:first-of-type {
  margin-bottom: 25px;
  /* padding: 17px 60px 17px 27px; -0425*/
  padding: 17px 17px 17px 25px;
}
.top_recruit-img picture {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.top_recruit-text {
  position: absolute;
  right: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  top: 80%;
}
.top_recruit-flex {
  position: relative;
  width: 75%;
}
.top_recruit .button-wrap {
  text-align: right;
  padding: 0 16%;
  margin-top: 73px;
}
.top_recruit-inner {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  margin-right: 10%;
}

    @media(max-width:768px){
    .top_recruit {
    margin-top: 0;
    position: static;
    padding: 40px 0 82px;
    }
    .top_recruit-bg::after {
    width: 80%;
    height: auto;
    top: -53px;
    bottom: 0;
    }
    .top_recruit-bg h3 {
    font-size: 16px;
    /* padding: 10px; -0425*/
    font-weight: 500;
    white-space: nowrap;
    font-weight: 400;
    margin: 0 auto;
    margin-left: 5%;
    padding: 10px 0 10px 10px;
    }
    .top_recruit-bg h3:first-of-type {
    /* padding: 10px 30px 10px 10px; -0425*/
    font-size: 16px;
    letter-spacing: 0.06em;
    margin-top: 30px;
    margin-left: 5%;
    margin-bottom: 10px;
    padding: 10px 0 10px 10px;
    }
    .top_recruit-flex {
    flex-direction: column;
    margin-top: 46px;
    }
    .top_recruit-text {
    position: static;
    width: 100%;
    flex-direction: column;
    }
    .top_recruit-bg p {
    font-weight: 500;
    letter-spacing: 0.028em;
    margin: 26px auto 26px calc(20% + 18px);
    font-size: 14px;
    line-height: 1.5;
    width: 63%;
    }
    .top_recruit .button-wrap {
    text-align: center;
    margin-right: 100px;
    margin-top: 64px;
    margin: 100px auto 0;
    }
    .top_recruit-bg {
    margin-top: 0;
    padding: 0;
    position: relative;
    }
    .top_recruit-img {
    width: 79%;
    margin-top: 0;
    }
    .top_recruit-img img {
    aspect-ratio: 310 / 225;
    }
    .top_recruit .ttl-h2 {
    width: auto;
    text-align: left;
    margin-left: 5%;
    }
    .top_recruit .ttl-h2 span {
    text-align: left;
    }
    .top_recruit-flex {
    position: static;
    }
    .top_recruit-text {
    position: static;
    }
    .top_recruit-inner {
    margin-right: 5%;
    }
    .top_recruit-bg h3:first-of-type {
    letter-spacing: 0.06em;
    }
    .top_recruit {
      position: relative;
      padding: 0 0 44px;
      margin-top: 40px;
      background-image: linear-gradient(to bottom, white 0px, white 150px, transparent 151px), linear-gradient(300deg, #E9FFDD 20%, #D1F3FF 60%);
      background-size: 100% 100%;
  }
    }


/* ================================================
    施設紹介ページ
================================================ */
.u_facilityBg {
  background-image: url(../images/under/u_flower.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position-x: center;
  text-align: center;
  padding-bottom: 60px;
  margin-top: -50px;
  padding: 190px 0;
  margin-bottom: -240px;
}
h2.u_facilityTitle {
  width: 38.6%;
  margin: 0 auto;
}
h2.u_facilityTitle img {
  width: 100%;
  object-fit: cover;
}
.u_facilityText {
  margin: 70px auto 80px;
}
.u_facilityText p {
  font-family: var(--Noto-Serif-JP);
  font-size: 16px;
  letter-spacing: 0.032em;
  line-height: 2.37;
  font-weight: 500;
  color: var(--bk);
}
.u_facilityText p:nth-child(2) {
  margin-top: 40px;
}
.r_facility-bg.for-sp {
  display: none;
}



/* grid */
.u_facilityGrid {
  display: grid;
  grid-template-areas:
    "BgLT text BgRT"
    "BgLB text BgRB";
    grid-template-columns: 28% 44% 28%;
}
.u_facilityText-wrap {
  grid-area: text;
  max-width: 626px;
  margin: 0 auto;
}
.u_facilityBgLT {
  grid-area: BgLT;
  margin-right: auto;
}
.u_facilityBgRT {
  grid-area: BgRT;
  margin-left: auto;
}

.u_facilityBgLB {
  grid-area: BgLB;
  margin-top: auto;
  padding-top: 80px;
}
.u_facilityBgRB {
  grid-area: BgRB;
  margin-top: auto;
  padding-top: 80px;
}
h2.u_facilityTitle {
  width: 100%;
  margin: 140px auto 0;
}
h2.u_facilityTitle.sp {
  display: none;
}

.u_facilityText {
  width: 100%;
  margin: 70px auto 0;
  text-align: center;
}
.u_facilityBgLT img,
.u_facilityBgRT img,
.u_facilityBgLB img,
.u_facilityBgRB img {
  width: 100%;
  object-fit: cover;
}
    @media(max-width:768px){
    h2.u_facilityTitle.pc {
    display: none;
    }
    h2.u_facilityTitle.sp {
    display: block;
    grid-area: spTitle;
    width: 74vw;
    max-width: 400px;
    }
    .u_facilityGrid {
    display: grid;
    grid-template-areas:
    "BgLT spTitle spTitle BgRT"
    "text text text text"
    "BgLB BgLB BgRB BgRB";
    grid-template-columns: 13% 37% 37% 13%; /* カラムは固定 */
    grid-template-rows: auto auto auto; /* 各行の高さを調整 */
    }
    .u_facilityText-wrap {
    grid-area: text;
    width: 82%;
    padding: 0 9%;
    }
    .u_facilityText p {
    font-size: 14px;
    letter-spacing: 0.024em;
    line-height: 2;
    }
    .u_facilityBgLB {
    padding-right: 17%;
    position: relative;
    top: -24px;
    margin-top: 0;
    padding-top: 0;
    }
    .u_facilityBgRB {
    padding-left: 17%;
    position: relative;
    top: -24px;
    padding-top: 0;
    margin-top: 0;
    }
    h2.u_facilityTitle img {
    margin-top: 50px;
    }
    .u_facilityText {
    margin: 14px auto 0;
    }
    }

    @media(max-width:768px){
    .u_facilityBg {
    margin: 0 auto;
    background-image: url(../images/under/u_flowerTitle-sp@2x.png);
    padding-top: 40px;
    padding-bottom: 0;
    }
    h2.u_facilityTitle {
    width: 77%;
    margin: 0 auto;
    max-width: 300px;
    }
    .u_facilityText {
    width: 90%;
    margin: -25px auto 0;
    }
    .u_facilityText p {
    font-size: 14px;
    letter-spacing: 0.024em;
    line-height: 1.86;
    }
    .r_facility-bg.for-sp {
    width: 100%;
    display: block;
    }
    .r_facility-bg.for-sp img {
    width: 100%;
    height: auto;
    object-fit: cover;
    vertical-align: bottom;
    margin-top: -20px;
    }
    .facility-page .a_message-ribon {
    position: relative;
    width: 45%;
    top: -40px;
    z-index: 1;
    }
    }


/* サービス */
.f_service {
    background-image: linear-gradient(340deg, #E9FFDD 10%, #D1F3FF 60%);
  padding: 120px 0 167px;
  position: relative;
}
.f_serviceItem {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}
.f_serviceImg {
  position: relative;
  z-index: 1;
  width: 23.7%;
  max-width: 340px;
}
.f_serviceImg img {
  aspect-ratio: 1 / 1;
  width: 100%;
  left: 100%;
  object-fit: cover;
}
.f_serviceText {
  width: 81%;
  background-color: #FFFFFF;
  z-index: 0;
  top: 110px;
  max-width: 1118px;
  left: 12.4%;
  margin-top: 110px;
  margin-left: -170px;
}
.f_serviceWrap {
  margin-top: 40px;
}
.f_serviceText p {
  margin: 30px 12.5% 64px 21.2%;
  max-width: 741px;
  letter-spacing: 0.032em;
  line-height: 2;
  font-size: 16px;
  font-family: var(--Noto-Serif-JP);
  font-weight: 400;
  color: var(--bk);
}
.f_serviceText h3 {
  font-size: 28px;
  font-family: var(--Noto-Sans-JP);
  font-weight: 700;
  letter-spacing: 0.044em;
  line-height: 1.72;
  color: var(--pink);
  margin: 40px 12.5% 0 21.2%;
  max-width: 741px;
}
.f_serviceText h3 span {
  font-size: 22px;
  font-family: var(--Noto-Sans-JP);
  font-weight: 700;
  letter-spacing: 0.044em;
  line-height: 1.72;
  color: var(--pink);
  max-width: 741px;
  display: block;
}
.f_service .title {
  display: flex;
  align-items: center;
  padding: 0 7%;
  max-width: 1190px;
  margin: 0 auto;
}
.f_service .title h2 {
  margin-left: 22px;
  font-size: 33px;
}
.f_service .subTitle {
  margin-left: 0;
}

/* 装飾リボン */
.f_left-ribon img {
  width: 100%;
}
.f_left-ribon {
  width: 20%;
}
.f_right-ribon img {
  width: 100%;
  object-fit: cover;
}
.f_right-ribon {
  width: 32%;
}
section.u_facilityGrid-wrap {
  position: relative;
}
.facility-page .f_message-ribon {
  position: absolute;
  width: 20%;
  z-index: 1;
  top: -110px;
}
.facility-page .f_message-ribon img {
  width: 100%;
  object-fit: cover;
}
    @media(max-width:768px){
    .f_service {
    padding: 56px 0 100px;
    margin-top: 40px;
    }
    .f_service .title {
    align-items: flex-start;
    }
    .f_serviceItem {
    display: block;
    margin-top: 40px;
    }
    .f_serviceImg {
    width: 61.6%;
    margin: 0 auto;
    }
    .f_serviceText {
    width: 90%;
    left: 0;
    margin: -24px auto;
    padding: 44px 0 20px;
    }
    .f_serviceText p {
    line-height: 1.5;
    font-size: 14px;
    letter-spacing: 0.028em;
    margin: 20px 5%;
    }
    .f_serviceText h3 {
    font-size: 18px;
    letter-spacing: 0.036em;
    line-height: 1.5;
    margin: 0 5%;
    }
    .f_serviceText h3 span {
    font-size: 16px;
    letter-spacing: 0.036em;
    line-height: 2.11;
    margin: 0;
    }
    .f_serviceItem.R {
    display: flex;
    }
    .f_serviceText.R {
    margin: -24px auto 0;
    }
    .f_serviceItem.R {
    display: flex;
    flex-direction: column-reverse;
    margin-top: 65px;
    }
    .f_right-ribon {
    width: 100%;
    }
    .f_right-ribon img {
    margin-left: 68%;
    width: 32%;
    object-fit: cover;
    }
    .f_service .title h2 {
    margin-left: 12px;
    font-size: 18px;
    }
    .f_service .f_message-ribon {
    top: -82px;
    width: 41%;
    position: absolute;
    }
    .f_service .f_message-ribon img {
    width: 100%;
    object-fit: cover;
    }
    }


/* 逆 */
.f_serviceText.R {
  margin-left: 7%;
  margin-right: -170px;
}
.f_serviceText.R h3 {
  margin: 40px 21.2% 0 12.5%;
}
.f_serviceText.R p {
  margin: 30px 21.2% 64px 12.5%;
}
    @media(max-width:768px){
    .f_serviceText.R h3 {
    margin: 0 5%;
    }
    .f_serviceText.R p {
    margin: 20px 5% 0;
    }
    .f_serviceText.R {
    margin: -24px 5% 0;
    }
    }


/* 施設設備 */
.f_service-swiper .subTitle {
  margin-left: 0;
}
.f_service-swiper .title h2 {
  margin-left: 22px;
  font-size: 33px;
}
.f_service-swiper {
  padding: 160px 0 168px;
  position: relative;
}
.f_service-swiper .f_right-ribon {
  width: 32%;
  position: absolute;
  right: 0;
  top: -96px;
}

    @media(max-width:768px){
    .f_service-swiper .title {
    align-items: flex-start;
    }
    .f_service-swiper {
    padding: 50px 0 56px;
    }
    .f_service-swiper .f_right-ribon {
    width: 38%;
    top: -47px;
    }
    .f_right-ribon img {
    margin-left: auto;
    width: 100%;
    }
    .f_service-swiper .title h2 {
      margin-left: 12px;
      font-size: 18px;
  }
    }

/* 施設ご利用費 */
.f_FacilityFees {
  background-color: #FFEDF9;
  padding: 60px 7% 77px;
  color: var(--blue-15);
  font-family: var(--Noto-Sans-JP);
}
.f_FacilityFees .title h2 {
  margin-left: 22px;
  font-size: 33px;
}
.f_FacilityFees .subTitle {
  margin-left: 0;
}
.f_FacilityFees-item {
  background-color: #FFFFFF;
  padding: 40px 8.4%;
  margin-bottom: 45px;
  display: flex;
  align-items: center;
  font-weight: 500;
  font-family: var(--Noto-Sans-JP);
  color: var(--blue-15);
  max-width: 1240px;
  margin: 0 auto 45px;
}
.f_FacilityFees-item.block {
  display: block;
}
.f_FacilityFees-item.flex {
  margin-top: 52px;
  align-items: center;
}
.f_FacilityFees .title {
  align-items: self-start;
  padding: 0;
}
.flex p.f_FacilityFees-price {
  font-size: 102px;
  margin-left: 57px;
  margin-right: 11%;
  font-weight: 400;
}
.block p.f_FacilityFees-price {
  font-size: 50px;
  display: flex;
  align-items: center;
  font-weight: 500;
}
p.f_FacilityFees-name {
  font-size: 33px;
  text-align: center;
}
p.f_FacilityFees-name span {
  display: block;
  font-size: 23px;
  margin-top: 1rem;
}
p.f_FacilityFees-memo1 {
  font-size: 18px;
  letter-spacing: 0.1em;
}
span.yen {
  font-size: 33px;
  margin-left: 27px;
  margin-top: auto;
  margin-bottom: 6px;
}
span.unit {
  font-size: 38px;
  margin-right: 42px;
}
.caution {
  margin-top: 30px;
  margin-left: -1em;
  font-size: 14px;
}
.caution p {
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 2;
}
.f_FacilityFees-memo {
  text-align: center;
  display: flex;
  align-items: center;
  margin-top: 73px;
  justify-content: center;
}
.f_FacilityFees-memo p {
  font-family: var(--Noto-Sans-JP);
  font-size: 20px;
  color: var(--blue-15);
}
.f_FacilityFees-memo span {
  font-family: var(--Noto-Sans-JP);
  font-size: 16px;
  background-color: var(--blue-15);
  color: #FFFFFF;
  padding: 9px 28px;
  border-radius: 30px;
}
.f_FacilityFees-btn a {
  padding: 26px 59px;
  background-color: #FFFFFF;
  border: solid 1px var(--blue-15);
  border-radius: 60px;
  font-size: 26px;
  font-family: var(--Noto-Sans-JP);
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--blue-15);
  display: inline-flex;
}
.f_FacilityFees-btn {
  text-align: center;
  margin-top: 85px;
}
.f_FacilityFees-memo2 {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 70px;
}
.f_FacilityFees-memo2 p {
  font-size: 20px;
  letter-spacing: 0.1em;
  font-weight: 400;
  line-height: 2;
}
.f_FacilityFees-memo2 p {
  font-size: 20px;
  letter-spacing: 0.1em;
  font-weight: 400;
  line-height: 2;
}
.f_FacilityFees-memo2 span {
  font-size: 16px;
  letter-spacing: 0.1em;
  font-weight: 400;
  line-height: 2;
  color: #FFFFFF;
  background: var(--blue-15);
  font-weight: 400;
  padding: 0.8px 24.5px;
  border-radius: 20px;
  margin-right: 36px;
}

    @media(max-width:768px){
    .f_FacilityFees {
    padding: 34px 5% 41px;
    }
    .f_FacilityFees-btn a {
    align-items: center;
    line-height: 1.5;
    padding: 0;
    font-size: 14px;
    letter-spacing: 0.028em;
    width: 290px;
    justify-content: center;
    height: 51px;
    }
    p.f_FacilityFees-name {
    font-size: 18px;
    grid-area: name;
    }
    p.f_FacilityFees-name span {
    font-size: 14px;
    margin-top: 10px;
    }
    .flex p.f_FacilityFees-price {
    font-size: 66px;
    font-weight: 600;
    grid-area: price;
    }
    .block p.f_FacilityFees-price {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0;
    align-items: baseline;
    justify-content: space-around;
	line-height: 30px;
    }
    span.yen {
    font-weight: 500;
    letter-spacing: 0.1em;
    font-size: 20px;
    margin-left: 10px;
    }
    span.unit {
    font-size: 20px;
    margin-right: 10px;
    font-weight: 500;
    }
    .f_FacilityFees-item.block {
    padding: 24px 5%;
    }
    .caution {
    margin-left: 0;
    line-height: 1.5;
    }
    .f_FacilityFees-item.flex {
    display: grid;
    margin-top: 20px;
    grid-template-areas:
      "name price"
      "memo1 memo1";
    grid-template-columns: 25% 75%;
    grid-template-rows: auto auto;
    row-gap: 20px;
    }
    p.f_FacilityFees-memo1 {
    font-size: 14px;
    letter-spacing: 0.028em;
    grid-area: memo1;
    }
    .f_FacilityFees-memo2 {
    display: block;
    align-items: center;
    justify-content: center;
    margin: 0;
    }
    .f_FacilityFees-memo2 span {
    font-size: 14px;
    line-height: 2;
    letter-spacing: 0.028em;
    padding: 3px 21px;
    }
    .f_FacilityFees-memo2 p {
    font-size: 14px;
    letter-spacing: 0.028em;
    font-weight: 400;
    line-height: 1.5;
    margin-top: 0.4rem;
    }
    .f_FacilityFees-btn {
    margin-top: 30px;
    }
    .f_FacilityFees-item {
    margin: 0 auto 30px;
    padding: 37px 7%;
    }
    .caution p:last-of-type {
    margin-top: 25px;
    }
    .f_FacilityFees .title h2 {
    margin-left: 12px;
    font-size: 18px;
    }
    }

/* ================================================
    STAFF
================================================ */
.staff_sec1-img {
  width: 71%;
  aspect-ratio: 880 / 580;
}
.staff_sec1-img img {
  width: 100%;
  object-fit: cover;
}
.staff_sec1-wrap {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  padding: 86px 7% 80px;
}
.staff_sec1-wrap p {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 36%;
  background: #FFEEF8;
  padding: 35px 55px;
  line-height: 2;
  letter-spacing: 0.032em;
  font-weight: 400;
  font-family: var(--Noto-Serif-JP);
  margin-right: 7%;
  max-width: 342px;
  color: var(--bk);
}
.staff_sec1-wrap h2 {
  width: 48%;
}
.staff_sec1-wrap h2 img {
  width: 100%;
}
.staff_sec1-wrap h2 {
  width: 48%;
  position: absolute;
  right: 0;
  top: -20px;
  margin-right: 10%;
  z-index: 1;
}
.staff_sec1-wrap:after {
  position: absolute;
  content: "";
  width: 18%;
  height: 9px;
  background: var(--blue-14);
  right: 0;
  bottom: -4.5px;
}

/* 下 */
.staff_sec1-wrap:last-of-type {
  position: relative;
  max-width: 1240px;
  margin: 0 auto 86px;
  padding: 86px 7% 60px;
}
.staff_sec1-wrap:last-of-type p {
  position: absolute;
  bottom: 9px;
  left: 0;
  width: 36%;
  background: #FFFFFF;
  padding: 35px 55px;
  line-height: 2;
  letter-spacing: 0.032em;
  font-weight: 400;
  font-family: var(--Noto-Serif-JP);
  margin-left: 7%;
  max-width: 342px;
}
.staff_sec1-wrap:last-of-type h2 {
  width: 70%;
  position: absolute;
  left: 0;
  top: 0;
  margin-left: 7%;
}
.staff_sec1-wrap:last-of-type:after {
  position: absolute;
  content: "";
  width: 18%;
  height: 9px;
  background: var(--blue-14);
  left: 0;
  bottom: 4.5px;
}
.staff_sec1-wrap:last-of-type .staff_sec1-img {
  margin: 170px 0 0 auto;
}
.staff_sec1-2flower {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 7%;
}
.staff_sec1-img:last-of-type img {
  width: 100%;
  object-fit: cover;
  margin-top: 180px;
}
.staff_sec1-2flower.s {
  display: none;
}
.staff_sec1-bg {
  position: relative;
}
.staff_sec1-bg::before {
  position: absolute;
  content: "";
  clip-path: inset(0 -100vmax);
  background-image: linear-gradient(to top, #F2FCFF 0%, #F2FCFF 100%);
  height: 100%;
  width: 100%;
  left: 0;
  top: 130px;
  z-index: -1;
}

    @media(max-width:768px){
    .staff_sec1-wrap {
    padding: 86px 0 80px;
    }
    .staff_sec1-wrap h2 {
    margin: 0 12% 0 5%;
    width: 83%;
    position: absolute;
    right: auto;
    top: 0;
    z-index: 1;
    max-width: 400px;
    }
    .staff_sec1-wrap p {
    position: static;
    }
    .staff_sec1-img:last-of-type img {
    margin-top: 0;
    }
    .staff_sec1-wrap p {
    position: static;
    margin: -16px auto 0;
    padding: 0;
    background-color: #FFFFFF;
    font-size: 14px;
    letter-spacing: 0.028em;
    width: 90%;
    max-width: 640px;
    }
    .staff_sec1-wrap:after {
    position: static;
    }
    .staff_sec1-img {
    position: relative;
    width: 64%;
    aspect-ratio: 250 / 198;
    margin: 0 auto;
    padding: 0 18%;
    }
    .staff_sec1-img:after {
    position: absolute;
    content: "";
    width: 28%;
    height: 3px;
    background: var(--blue-14);
    right: 0;
    bottom: -22px;
    }
    .staff_sec1-2flower {
    padding: 0;
    width: 70px;
    margin: 10px auto 0 5%;
    }
    .staff_sec1-2flower img {
    width: 100%;
    }
    .staff_sec1-2flower.s {
    display: block;
    margin: -10px auto 0 5%;
    }
    .staff_sec1-wrap:last-of-type p {
    position: static;
    width: 90%;
    font-size: 14px;
    letter-spacing: 0.028em;
    background: transparent;
    margin: -16px auto 0;
    padding: 0;
    max-width: 640px;
    }
    .staff_sec1-2flower.m {
    width: 117px;
    margin: 0 auto 0 7%;
    }
    .staff_sec1-wrap:first-of-type {
    padding: 86px 0 50px;
    }
    .staff_sec1-wrap:last-of-type h2 {
    margin: 0 5%;
    width: 90%;
    top: -65px;
    left: 0;
    }
    .staff_sec1-wrap:last-of-type .staff_sec1-img {
    margin: 14px 0 0 0;
    }
    .staff_sec1-wrap:last-of-type::before {
    top: 0;
    }
    .staff_sec1-wrap:last-of-type {
    padding: 47px 0 60px;
    margin: 0 auto;
    }
    .staff_sec1-wrap:last-of-type:after {
    position: static;
    }
    }


/* スタッフ紹介 */
ul.staff_list li {
  width: 355px;
  aspect-ratio: 355 / 489;
  position: relative;
}
ul.staff_list li::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  right: -15px;
  bottom: -13px;
  z-index: -3;
}
ul.staff_list li:nth-child(1)::after {
  background: rgba(233, 80, 152, .77);
}
ul.staff_list li:nth-child(2)::after {
  background: rgba(246, 171, 0, .77);
}
ul.staff_list li:nth-child(3)::after {
  background: rgba(170, 205, 6, .77);
}
ul.staff_list li:nth-child(4)::after {
  background: rgba(1, 171, 235, .77);
}
ul.staff_list li:nth-child(5)::after {
  background: rgba(5, 172, 152, .77);
}
ul.staff_list li:nth-child(6)::after {
  background: rgba(236, 109, 86, .77);
}
ul.staff_list li img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: bottom;
  z-index:-1;
}
p.staff_cat {
  text-align: center;
  position: absolute;
  bottom: 66px;
  color: #FFFFFF;
  font-size: 14px;
  font-family: var(--Noto-Sans-JP);
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 2.5;
  z-index: 1;
  display: flex;
  align-items: center;
  width: 108px;
  height: 24px;
  justify-content: center;
}
ul.staff_list li:nth-child(1) p.staff_cat {
  background-color: var(--pink);
}
ul.staff_list li:nth-child(2) p.staff_cat {
  background-color: #F6AB00;
}
ul.staff_list li:nth-child(3) p.staff_cat {
  background-color: #AACD06;
}
ul.staff_list li:nth-child(4) p.staff_cat {
  background-color: #01ABEB;
}
ul.staff_list li:nth-child(5) p.staff_cat {
  background-color: #05AC98;
}
ul.staff_list li:nth-child(6) p.staff_cat {
  background-color: #EC6D56;
}

p.staff_year {
  position: absolute;
  bottom: 8px;
  background-color: #FFFFFF;
  color: var(--bk);
  font-size: 18px;
  font-family: var(--Noto-Sans-JP);
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.5;
  padding: 0;
  text-align: center;
  z-index: 0;
  width: 185px;
  height: 43px;
  padding: 15px 0 8px;
}
p.staff_year span {
  font-size: 12px;
  display: block;
}
p.staff_name {
  z-index: 1;
  width: 50%;
  position: absolute;
  bottom: 51px;
  right: 32px;
}
ul.staff_list {
  display: flex;
  max-width: 1240px;
  margin: 72px auto 0;
  flex-wrap: wrap;
  justify-content: center;
  gap: 80px 5%;
}
.staff_listWrap {
  padding: 160px 7% 260px;
  background-image: linear-gradient(135deg, #FFEFF7 0%, rgba(255, 239, 247, 0.95) 20%, rgba(255, 249, 234, 0.95) 60%, rgba(254, 255, 222, 0.95) 70%, #FEFFDE 100%);
  position: relative;
  z-index: -1;
}
.staff_listTitle h2 {
  text-align: center;
  font-size: 47px;
  font-family: var(--Noto-Sans-JP);
  font-weight: 600;
  letter-spacing: 0.2em;
  line-height: 1.5;
  color: var(--blue-15);
}
.staff_listTitle h2 span {
  display: block;
  font-size: 23px;
  font-family: var(--Noto-Serif-JP);
}
.staff_list-flex {
  display: flex;
}
.staff_list-img {
  aspect-ratio: 862 / 347;
  width: 60%;
}
.staff_list-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: bottom;
}
.staff_list-item h3 {
  font-size: 129px;
  text-transform: capitalize;
  font-family: var(--Noto-Sans-JP);
  color: #FFFFFF;
  font-weight:700;
  line-height: 1.5;
  letter-spacing: 0em;
  position: relative;
  display: inline-block;
}
.staff_list-item h3::after {
  position: absolute;
  content: "";
  background-color: #FFFFFF;
  width: 80px;
  height: 8px;
  bottom: 0;
  left: 50%;
}
.staff_list-item h4 {
  font-size: 78px;
  text-transform: capitalize;
  color: #FFFFFF;
  font-weight:700;
  line-height: 1.14;
  letter-spacing: 0.07em;
}
p.staff_list-text {
  max-width: 697px;
}
.staff_ribon {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 388px;
  z-index: -2;
}
.staff_ribon img {
  width: 100%;
}
    @media(max-width:768px){
    .staff_listWrap {
    padding: 65px 7% 120px;
    }
    ul.staff_list li {
    aspect-ratio: 154 / 212;
    width: 45%;
    }
    ul.staff_list {
    margin: 44px auto 0;
    gap: 36px 7%;
    }
    ul.staff_list li::after {
    right: -5px;
    bottom: -5px;
    }
    .staff_ribon {
    width: 145px;
    }
    .staff_listTitle h2 span {
    letter-spacing: 0.2em;
    font-size: 16px;
    }
    .staff_listTitle h2 {
    font-size: 24px;
    }
    p.staff_cat {
    font-size: 10px;
    }
    p.staff_year {
    font-size: 14px;
    }
    p.staff_year span {
    font-size: 10px;
    }
    p.staff_name {
    bottom: 53px;
    right: 0;
    }
    p.staff_year {
      width: 123px;
      height: 40px;
      padding: 5px 0 0;
    }
    p.staff_cat {
    bottom: 48px;
    width: 80px;
    height: 17px;
    }
    }


/* STAFF LIST spのみ並べ替え 
============================*/
.item-list {
  display: flex;
  flex-wrap: wrap;
}

.item {
  width: calc(100% / 6); /* PC表示用：6分割、必要に応じて変更 */
}

/* PC：そのまま順番どおり */
    @media screen and (min-width: 769px) {
      .i1 { order: 1; }
      .i2 { order: 2; }
      .i3 { order: 3; }
      .i4 { order: 4; }
      .i5 { order: 5; }
      .i6 { order: 6; }
    }
    
    /* SP：順番を 1 2 4 3 6 5 に変える */
    @media screen and (max-width: 768px) {
      .i1 { order: 1; }
      .i2 { order: 2; }
      .i4 { order: 3; }
      .i3 { order: 5; }
      .i6 { order: 6; }
      .i5 { order: 4; }
    
      .item {
        width: 100%; /* SPでは縦並びにしたい場合 */
      }
    }
/* ./spのみ並べ替え */




/* s_INTERVIEW */
section.s_interview {
  padding: 160px 0 133px;
  background-image: linear-gradient(155deg, #FFDBEE 0%, #EDE4F6 60%, #D9EFFF 100%);
  position: relative;
  z-index: -1;
}
section.s_interview {
  display: grid;
  grid-row-gap: 100px;
}
.s_interview-title h2 {
  text-align: center;
  font-size: 64px;
  font-family: var(--Noto-Sans-JP);
  font-weight: 600;
  letter-spacing: 0.2em;
  line-height: 1.5;
  color: #FFFFFF;
}
.s_interview-title h2 span {
  display: block;
  font-size: 20px;
  font-family: var(--Noto-Serif-JP);
  color: var(--blue-15);
  letter-spacing: 0;
}
.s_interview-text {
background-color: #FFFFFF;
padding: 121px 0 81.5px;
width: 78.5%;
line-height: 1.31;
letter-spacing: 0.07em;
font-size: 16px;
color: var(--bk);
font-weight: 400;
margin-left: 21.5%;
font-family: var(--Noto-Serif-JP);
}
.s_interview-text p {
  max-width: 680px;
  margin: 0 21.5% 0 16%;
}
.s_interview-flex {
  display: flex;
}
h3.s_interview-sp {
  display: none;
}
.s_interview-img {
  aspect-ratio: 862 / 347;
  width: 60%;
  position: relative;
  bottom: -57px;
}
.s_interview-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: bottom;
}
.s_interview-name {
  color: #FFFFFF;
  font-family: var(--Noto-Sans-JP);
  font-weight: 600;
  line-height: 1.5;
  width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: -10px;
}
.s_interview-name h3 {
  letter-spacing: 0;
  line-height: 1;
  font-size: clamp(62px, 9.5vw, 129px);
  margin-right: 9%;
  position: relative;
  margin-left: 62%;
  width: 29%;
  display: inline-flex;
  justify-content: center;
}
.s_interview-name h3::after {
  position: absolute;
  content: "";
  background: #FFFFFF;
  height: 8px;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
}
.s_interview-name h4 {
  font-size: clamp(29px, 5.3vw, 78px);
  letter-spacing: 0.07em;
  line-height: 1.14;
  margin-left: 40px;
}
.s_interview-item:nth-child(3) .s_interview-flex {
  flex-direction: row-reverse;
}
.s_interview-item:nth-child(3) .s_interview-text {
  margin: 0 21.5% 0 0;
}
.s_interview-item:nth-child(3) .s_interview-name h3 {
  justify-content: center;
  margin-left: 17.3%;
  margin-right: auto;
}
.s_interview-item:nth-child(3) .s_interview-name h4 {
  margin-right: auto;
  margin-left: 37.5%;
}

    @media(max-width:1024px){
    section.s_interview {
    padding: 50px 0 80px;
    grid-row-gap: 30px;
    }
    .s_interview-item {
    margin: 0 auto 30px;
    }
    .s_interview-title h2 {
    font-size: 30px;
    }
    .s_interview-title h2 span {
    font-size: 14px;
    }
    .s_interview-text {
    padding: 54px 0 107px;
    width: 95%;
    line-height: 1.5;
    letter-spacing: 0.028em;
    font-size: 16px;
    color: var(--bk);
    font-weight: 400;
    margin-left: 5%;
    margin: -26px 0 0 5%;
    }
    .s_interview-item:nth-child(3) .s_interview-text {
    margin: -26px 0 0 5%;
    }
    .s_interview-text p {
    margin: 0 9%;
    }
    .s_interview-flex {
    display: grid;
    }
    .s_interview-name h3 {
    display: none;
    }
    h3.s_interview-sp {
    display: block;
    }
    .s_interview-img {
    aspect-ratio: 370 / 160;
    width: 95%;
    z-index: 0;
    }
    .s_interview-flex {
    display: block;
    position: relative;
    }
    h3.s_interview-sp {
    position: absolute;
    top: 0;
    right: 5%;
    font-size: 62px;
    justify-content: flex-end;
    display: inline-block;
    color: #FFFFFF;
    z-index: 1;
    }
    .s_interview-name {
    color: #FFFFFF;
    font-family: var(--Noto-Sans-JP);
    font-weight: 700;
    line-height: 1.5;
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-start;
    font-size: 29px;
    letter-spacing: 0.07em;
    width: 95%;
    position: relative;
    z-index: 1;
    }
    .s_interview-name h4 {
    font-size: 29px;
    line-height: 1;
    margin-left: auto;
    }
    .s_interview-item:nth-child(3) .s_interview-name h4 {
    margin-left: auto;
    margin-right: 0;
    }
    .s_interview-item:nth-child(2) .s_interview-flex .s_interview-name {
    flex-direction: row-reverse;
    color: #FCDDF0;
    width: 60%;
    }
    .s_interview-item:nth-child(3) .s_interview-flex .s_interview-name {
    flex-direction: row-reverse;
    color: #FFFFFF;
    width: 60%;
    }
    .s_interview-item:nth-child(4) .s_interview-flex .s_interview-name {
    flex-direction: row-reverse;
    color: #BED0E5;
    width: 60%;
    }
    .staff-page .footer_inner {
    flex-direction: column;
    margin: 72px auto 50px;
    }
    }

        @media(max-width:768px){
        .s_interview-item:nth-child(2) .s_interview-flex .s_interview-name,
        .s_interview-item:nth-child(3) .s_interview-flex .s_interview-name,
        .s_interview-item:nth-child(4) .s_interview-flex .s_interview-name {
        width: 95%;
        }
        }

/* ================================================
    RECRUIT
================================================ */
.u_recruitBg {
  background-image: url(../images/under/u_flower.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position-x: center;
  text-align: center;
  padding-bottom: 60px;
  margin-top: -30px;
}
h2.u_recruitTitle {
  width: 38.6%;
  margin: 0 auto;
}
h2.u_recruitTitle img {
  width: 100%;
  object-fit: cover;
}
.u_recruitText {
  margin: 70px auto 0;
}
.u_recruitText p {
  font-family: var(--Noto-Serif-JP);
  font-size: 16px;
  letter-spacing: 0.032em;
  line-height: 2.37;
  font-weight: 500;
  color: var(--bk);
}
.u_recruitText p:nth-child(2),
.u_recruitText p:nth-child(3) {
  margin-top: 40px;
}
.r_recruit-img {
  width: 100%;
  aspect-ratio: 1440 / 286;
  margin-top: 160px;
}
.r_recruit-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  vertical-align: bottom;
}
.r_recruit-bg.for-sp {
  display: none;
}

    @media(max-width:768px){
    .r_recruit-img {
    width: 100%;
    aspect-ratio: 390 / 134;
    margin-top: 16px;
    }
    .u_recruitText {
    width: 90%;
    margin: 53px auto;
    }
    .u_recruitText p {
    font-size: 14px;
    letter-spacing: 0.024em;
    line-height: 1.85;
    }
    .u_recruitText p:nth-child(2),
    .u_recruitText p:nth-child(3) {
    margin-top: 30px;
    }
    .u_recruitBg {
    background-image: url(../images/under/u_flowerTitle-sp@2x.png);
    margin-top: -20px;
    padding-top: 10px;
    padding-bottom: 0;
    }
    .r_recruit-bg.for-sp img {
    width: 100%;
    height: auto;
    object-fit: cover;
    vertical-align: bottom;
    margin-top: -90px;
    }
    .r_recruit-bg.for-sp {
    width: 100%;
    display: block;
    }
    h2.u_recruitTitle {
    width: 74%;
    }
    }


/* grid */
.u_recruitGrid {
  display: grid;
  grid-template-areas:
    "BgLT text BgRT"
    "BgLB text BgRB";
    grid-template-columns: 28% 44% 28%;
}
.u_recruitText-wrap {
  grid-area: text;
  max-width: 626px;
  margin: 0 auto;
}
.u_recruitBgLT {
  grid-area: BgLT;
  margin-right: auto;
}
.u_recruitBgRT {
  grid-area: BgRT;
  margin-left: auto;
}
.u_recruitBgLB {
  grid-area: BgLB;
  margin-top: auto;
}
.u_recruitBgRB {
  grid-area: BgRB;
  margin-top: auto;
}
.u_recruitBgLT img,
.u_recruitBgRT img,
.u_recruitBgLB img,
.u_recruitBgRB img {
  width: 100%;
}

h2.u_recruitTitle {
  width: 100%;
  margin: 40px auto 0;
}
h2.u_recruitTitle.sp {
  display: none;
}

.u_recruitText {
  width: 100%;
  margin: 70px auto 0;
  text-align: center;
}
.u_recruitBgLT img,
.u_aboutBgRT img,
.u_aboutBgLB img,
.u_aboutBgRB img {
  width: 100%;
  object-fit: cover;
}
    @media(max-width:768px){
    h2.u_recruitTitle.pc {
    display: none;
    }
    h2.u_recruitTitle.sp {
    display: block;
    grid-area: spTitle;
    width: 74vw;
    margin: 0 auto;
    max-width: 400px;
    }
    .u_recruitGrid {
    display: grid;
    grid-template-areas:
    "BgLT spTitle spTitle BgRT"
    "text text text text"
    "BgLB BgLB BgRB BgRB";
    grid-template-columns: 13% 37% 37% 13%; /* カラムは固定 */
    grid-template-rows: auto auto auto; /* 各行の高さを調整 */
    }
    .u_recruitText-wrap {
    grid-area: text;
    width: 82%;
    padding: 0 9%;
    margin: -20px auto 0;
    }
    .u_recruitText p {
    font-size: 14px;
    letter-spacing: 0.024em;
    line-height: 1.85;
    }
    .u_recruitBgLB {
    padding-right: 17%;
    position: relative;
    top: -24px;
    }
    .u_recruitBgRB {
    padding-left: 17%;
    position: relative;
    top: -24px;
    }
    h2.u_recruitTitle img {
    margin-top: 20px;
    }
    .u_recruitText {
    margin: 14px auto 0;
    }
    }
/* ./grid */





/* 求める人材 */
.r_who {
  margin-top: 26px;
  background-size: 100% 100%;
  padding: 0 0 45px;
  background-image: 
  linear-gradient(to top, white 0px, white 227px, transparent 228px), 
  linear-gradient(135deg, #FFEAF8 0%, #FFF0F6 30%, #FFF8FB 50%,#FFF8FB 100%);
}
.r_who-flex {
  display: flex;
  justify-content: space-between;
}
.r_who-img {
  width: 42.3%;
  margin-top: 94px;
}
.r_who-img.sp {
  display: none;
}
.r_who-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  vertical-align: bottom;
}
.r_who-title {
  width: 43.5%;
  margin: 0 3% 0 10%;
}
.r_who-title .title h2 {
  font-size: 33px;
  margin-left: 22px;
}
.r_who-title p {
  margin-top: 90px;
  font-family: var(--Noto-Serif-JP);
  font-size: 16px;
  letter-spacing: 0.032em;
  line-height: 2.37;
  font-weight: 500;
  color: var(--bk);

}
.r_who .title {
  padding: 0;
  margin-top: 58px;
}
.r_who .subTitle {
  margin-left: 0;
}

    @media(max-width:768px){
    .r_who {
    padding: 20px 0;
    margin-top: 40px;
    background-image: linear-gradient(to top, #FFF8FB 0, #FFEAF8 100%);
    background-size: 100% 100%;
    }
    .r_who-flex {
    flex-direction: column;
    }
    .r_who-img.pc {
    display: none;
    }
    .r_who-img.sp {
    display: block;
    margin: 20px auto;
    width: 67%;
    }
    .r_who .title {
    padding: 0;
    margin-top: 0;
    align-items: self-start;
    }
    .r_who .title h2 {
    letter-spacing: 0.036em;
    font-size: 18px;
    margin-left: 22px;
    }
    .r_who-title {
    width: 90%;
    margin: 0 5%;
    }
    .r_who-title p {
    font-size: 14px;
    letter-spacing: 0.028em;
    line-height: 1.5;
    font-weight: 400;
    margin: 30px 5%;
    }
    }



/* 就労条件 */
.r_work-title {
  text-align: center;
}
.r_work-title .subTitle {
  margin-left: 0;
}
.r_work-title img {
  width: 54px;
}
.r_work-title h2 {
  font-family: var(--Noto-Serif-JP);
  color: var(--blue-15);
  letter-spacing: 0.1em;
  font-size: 43px;
  line-height: 1.5;
  font-weight: 400;
}
.r_work-table {
  max-width: 1000px;
  margin: 60px auto 0;
  font-family: var(--Noto-Sans-JP);
  font-weight: 400;
  letter-spacing: 0.032em;
  color: var(--bk);
}
.r_work-table tr {
  border-bottom: solid 1px rgba(21, 78, 170, .43);
}
.r_work-table tr:nth-of-type(4) {
  border-bottom: none;
}
.r_work-table td:first-child {
  width: 33%;
  padding: 30px 0 30px 5%;
  line-height: 2.8;
  letter-spacing: 0.1em;
  font-weight: 500;
  font-size: 18px;
}
.r_work-table td:nth-child(2) {
  width: 67%;
  padding: 30px 3% 30px 0;
  line-height: 2;
  font-size: 16px;
  letter-spacing: 0.032em;
  font-weight: 500;
}
section.r_work {
  background-image: linear-gradient(340deg, #E9FFDD 10%, #D1F3FF 60%);
  padding: 73px 7%;
}
.r_work-wrap {
  background-color: #FFFFFF;
  padding: 45px 10% 109px;
}

section.r_entry h2 {
  font-size: 32px;
  font-weight: 500;
  font-family: var(--Noto-Serif-JP);
  letter-spacing: 0.1em;
  line-height: 2.43;
  color: var(--bk);
  text-align: center;
}

    @media(max-width:768px){
    section.r_work {
    background-image: linear-gradient(340deg, #E9FFDD 10%, #D1F3FF 60%);
    padding: 14px 5% 44px;
    margin-top: 0;
    }
    .r_work-title img {
    width: 35px;
    height: 33.32px;
    }
    .r_work-title h2 {
    letter-spacing: 0.036em;
    font-size: 18px;
    line-height: 1.5;
    margin-top: 1rem;
    }
    .r_work-title .subTitle {
    margin-left: 0;
    }
    .r_work-table {
    margin: 0 auto;
    letter-spacing: 0.021em;
    }
    .r_work-table tr {
    display: block;
    padding: 20px 0;
    }
    .r_work-table td:first-child {
    width: 90%;
    display: block;
    padding: 0 5%;
    font-size: 14px;
    letter-spacing: 0.021em;
    }
    .r_work-table td:nth-child(2) {
    width: 90%;
    display: block;
    padding: 6px 5%;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.021em;
    }
    .r_work-wrap {
    background-color: #FFFFFF;
    padding: 30px 5% 60px;
    }
    .r_work-table tr:nth-of-type(4) {
    border-bottom: solid 1px rgba(21, 78, 170, .43);
    }
    span.indent-dot {
    text-indent: -1rem;
    display: inline-block;
    }
    td.indent {
    width: calc(100% - 1rem);
    margin: 0 0 0 1rem;
    }
    }


/* エントリーフォーム お問い合わせフォーム 共通*/
.form1,
.form2 {
  width: 100%;
  max-width: 870px;
  margin: 85px auto 0;
  display: grid;
  row-gap: 47px;
}
.form1 dl,
.form2 dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.form1 dt,
.form2 dt {
  min-width: 220px;
  width: 26%;
  font-size: 18px;
  font-weight: 400;
  color: var(--2B);
  letter-spacing: 0.1em;
  line-height: 2.66;
  text-align: left;
}
.form1 label,
.form2 label {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  color: var(--bk);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.4;
  font-family: var(--Noto-Sans-JP);
}
.form1 label.required span,
.form2 label.required span {
  background-color: var(--blue-15);
  color: var(--white);
  font-family: var(--Noto-Serif-JP);
  font-size: 12px;
  padding: 2.5px 8.2px;
  border-radius: 13px;
  margin-left: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
}
.form1 label.any span,
.form2 label.any span {
  background-color: #ACACAC;
  color: var(--white);
  font-family: var(--Noto-Serif-JP);
  font-size: 12px;
  padding: 2.5px 8.2px;
  border-radius: 13px;
  margin-left: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
}
section.r_entry {
  background-color: #EAF5FF;
  padding: 130px 7% 173px;
}
.form1 dl:last-of-type,
.form2 dl:last-of-type {
  align-items: self-start;
}
.form1 dd,
.form2 dd {
  width: 72%;
  display: flex;
  align-items: center;
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 1.5;
  color: var(--bk);
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.4;
}

.form1 input, textarea,
.form2 input, textarea {
  width: 100%;
  padding: 16px 20px;
  border: none;
  outline: none;
  font-size: 18px;
  background-color: #FFFFFF;
  -webkit-appearance: none;
  appearance: none;
  line-height: 1.42;
  letter-spacing: 0;
  font-weight: 400;
  font-family: var(--Noto-Sans-JP);
  caret-color: var(--bk);
  color: var(--bk);
}
input#Form__privacy1,
input#Form__privacy2 {
  display: none;
}
.form1 label.required span,
.form2 label.required span {
  background-color: var(--blue-15);
  color: var(--white);
  font-family: var(--Noto-Serif-JP);
  font-size: 12px;
  padding: 2.5px 8.2px;
  border-radius: 13px;
  margin-left: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
}
.form1 label.checkbox::before,
.form2 label.checkbox::before {
  content: url(../images/checkbox.svg);
  width: 14px;
  height: 14px;
  left: -26px;
  background-size: contain;
  transform: translateY(-50%);
  top: calc(50% - 4px);
  position: absolute;
  cursor: pointer;
}
.form1 input:checked + label.checkbox::before,
.form2 input:checked + label.checkbox::before {
  content: url(../images/checked.svg);
}
.form1 label.checkbox a,
.form2 label.checkbox a {
  font-size: 18px;
  color: var(--darkGray);
  font-family: var(--Noto-Sans-JP);
  font-weight: 400;
  letter-spacing: 0.1em;
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-thickness: 1px;
  line-height: 1.55;
}
.form1 label.checkbox, 
.form2 label.checkbox{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  font-size: 18px;
  color: var(--bk);
  font-family: var(--Noto-Sans-JP);
  font-weight: 400;
  letter-spacing: 0.1em;
}
.form1 input.btn-submit,
.form2 input.btn-submit {
  border: none;
  color: var(--white);
  font-size: 30px;
  font-weight: 500;
  font-family: var(--Noto-Sans-JP);
  letter-spacing: 0.1em;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  transition: 0.3s ease-in;
  width: 332px;
  text-align: center;
  background-color: var(--blue-15);
  margin: 0 auto;
  /* height: 72px; */
}
input.btn-submit:hover {
  opacity: .8;
  transition: all .3s;
  cursor: pointer;
}
.Form__checkbox {
  display: flex;
  justify-content: center;
  position: relative;
  padding-bottom: 26px;
  margin: 56px auto 0;
}
section.r_entry label.required,
section.r_entry label.any,
section.r_entry label.checkbox,
section.r_entry a.privacy-link {
  font-family: var(--Noto-Serif-JP);
  color: var(--bk);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.4;
}

    @media(max-width:920px){
    section.r_entry {
    padding: 57px 7% 74px;
    }
    section.r_entry h2 {
    font-size: 18px;
    }
    .form1 dl, .form2 dl {
    display: block;
    }
    .form1 label, .form2 label {
    justify-content: flex-start;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 2;
    }
    .form1 dd, .form2 dd {
    width: 100%;
    margin-top: 7px;
    }
    .form1 label.required span,
    .form2 label.required span {
    font-size: 10px;
    padding: 0 7.5px;
    }
    .form1 label.any span,
    .form2 label.any span {
    font-size: 10px;
    padding: 0 7.5px;
    }
    .form1 input, textarea, .form2 input, textarea {
    padding: 11px;
    }
    .form1 label.checkbox a, .form2 label.checkbox a {
    font-size: 14px;
    }
    .form1 label.checkbox, .form2 label.checkbox {
    font-size: 14px;
    width: 240px;
    justify-content: center;
    }
    .Form__checkbox {
    margin-top: 30px;
    }
  .form1 input.btn-submit, .form2 input.btn-submit {
    padding: 0;
    font-size: 18px;
    width: 170px;
    height: 50px;
    margin-top: 24px;
    }
    .form1 input, textarea,
    .form2 input, textarea {
    width: 96%;
    }
    .form1, .form2 {
    max-width: 500px;
    }
    }
/* エントリーフォーム ここまで*/



/* ================================================
    お知らせ一覧
================================================ */
.news_archive {
  padding: 0 7% 168px;
}
.news_item {
  display: flex;
  max-width: 1240px;
  margin: 0 auto;
  padding: 60px 14px;
  align-items: center;
  border-bottom: solid 1px rgba(122, 122, 122, .5);
}
.news_img {
  aspect-ratio: 393 / 231;
  width: 31.6%;
}
/* .news_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
} */
.news_img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 393 / 231;
}


.news_textBox {
  width: 41%;
  height: 100%;
  margin: 0 calc(100% - 79.6% - 63px) auto 8%;
}
p.news_date {
  font-family: var(--Noto-Serif-JP);
  color: var(--blue-15);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin-top: 14px;
}
p.news_cat span{
  background-color: #5780C2;
  font-family: var(--Noto-Serif-JP);
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.33;
  letter-spacing: 0.1em;
  padding: 6.5px 20px;
  display: inline-block;
  margin-top: 10px;
}
h3.news_title,
.news_text {
  font-family: var(--Noto-Serif-JP);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 2;
  color: var(--bk);
}
h3.news_title {
  margin-top: 22px;
}
.news_item-link {
  height: 39px;
  width: 39px;
}
.news_item-link a {
  height: auto;
  width: 100%;
  cursor: pointer;
}

.news_item-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

    @media(max-width:768px){
    .news_archive {
    padding: 0 5%;
    }
    .news_item {
    padding: 30px 0 0;
    display: grid;
    width: 100%;
    grid-template-columns: calc(100% - 40px) 20px;
    grid-template-rows: auto auto;
    grid-template-areas:
    "img img"
    "text button";
    gap: 0 20px;
    }
    .news_img {
    grid-area: img;
    aspect-ratio: 320 / 188;
    width: 94%;
    padding: 0 3%;
    }
    .news_textBox {
    grid-area: text;
    width: calc(96% - 20px);
    height: auto;
    margin: 0 0 0 4%;
    }
    .news_item-link {
    grid-area: button;
    width: 20px;
    height: 20px;
    margin: 0 0 0 auto;
    }
    h3.news_title, .news_text {
    font-size: 14px;
    letter-spacing: 0.021em;
    line-height: 1.5;
    }
    time.news_date {
    font-size: 18px;
    margin-top: 34px;
    }
    time.news_cat {
    font-size: 15px;
    padding: 4px 11px;
    }
    .news_text {
    margin-bottom: 48px;
    }
    .news_item-link img {
    right: 20px;
    position: relative;
    }
    .newsArchive-page .footer_inner {
    margin: 80px auto 50px;
    }
    }

/* ================================================
    NEWSーPOST
================================================ */
.newsPost .news_textBox {
  width: 100%;
  margin: 0 auto;
  max-width: 1033px;
  padding: 0 17px;
}
.newsPost .news_item {
  padding: 127px 10% 68px;
  border-bottom: none;
}
.newsPost p.news_text {
  margin-top: 25px;
}
.newsPost h3.news_title {
  margin-top: 26px;
  font-size: 22px;
}
.newsPost p.news_cat {
  font-size: 15px;
}
.newsPost-flex {
  display: flex;
  justify-content: space-between;
  max-width: 1112px;
  margin: 0 auto 76px;
  align-items: center;
  padding: 0 10%;
}
.newsPost-img {
  aspect-ratio: 307 / 313;
  width: 27.7%;
}
.newsPost-img img {
  width: 100%;
  object-fit: cover;
  vertical-align: bottom;
  height: auto;
  aspect-ratio: 307 / 313;
}
p.newsPost-text {
  max-width: 645px;
  color: #333333;
  font-family: var(--Noto-Serif-JP);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 2;
  width: 58%;
}
.newsPost-thumnail {
  aspect-ratio: 1440 / 382;
  width: 100%;
  margin-top: 126px;
}
.newsPost-thumnail img {
  width: 100%;
  object-fit: cover;
  vertical-align: bottom;
  height: 100%;
}
.newsPost-page picture.u_flowerRibon {
  display: none;
}

    @media(max-width:768px){
    .newsPost-page picture.u_flowerRibon {
    display: block;
    }
    .newsPost-page .invers {
    padding: 32px 7% 36px;
    }
    .newsPost-thumnail {
    aspect-ratio: 390 / 239;
    width: 100%;
    margin-top: 0;
    }
    .newsPost-flex {
    display: block;
    position: relative;
    padding: 0;
    margin: 70px auto;
    }
    .newsPost-flex.right::before {
    position: absolute;
    content: "";
    border-top: solid 1px #5780C2;
    right: 0;
    width: 58%;
    }
    .newsPost-flex.left::before {
    position: absolute;
    content: "";
    border-top: solid 1px #5780C2;
    left: 0;
    width: 58%;
    }
    .newsPost-flex.left {
      padding-bottom: 10px;
    }
    .newsPost .news_item {
    padding: 0;
    border-bottom: none;
    display: block;
    }
    .newsPost .news_textBox {
    padding: 0;
    width: 82%;
    margin: 0 auto;
    }
    .newsPost h3.news_title {
    display: none;
    }
    .newsPost p.news_text {
    margin-top: 25px;
    margin: 22px auto;
    font-size: 14px;
    letter-spacing: 0.021em;
    line-height: 1.5;
    }
    .newsPost .news_textBox {
    padding: 0;
    margin-top: 53px;
    }
    .newsPost-img {
    width: 59%;
    margin: 0 auto;
    padding: 72px 0 32px;
    }
    p.newsPost-text {
    max-width: 82%;
    margin: 0 auto;
    font-size: 14px;
    letter-spacing: 0.021em;
    line-height: 1.5;
    width: auto;
    }
    }


/* ================================================
    CONTACT-入力
================================================ */
section.r_entry {
  background-color: #EAF5FF;
  padding: 130px 7% 173px;
  position: relative;
}
picture.u_ribon-right {
  right: 0;
  position: absolute;
  max-width: 483px;
  top: 0;
  width: 34%;
}
picture.u_ribon-right img {
  object-fit: cover;
  width: 100%;
}
.contact-page picture.u_flowerRibon {
  display: none;
}

/* 問い合わせ先リスト */
.contact_listWrap {
  padding: 87px 7% 53px;
}
ul.contact_list {
  display: flex;
  flex-wrap: wrap;
  max-width: 1240px;
  margin: 0 auto;
  justify-content: space-between;
  gap: 3%;
}
li.contact_item {
  width: 359px;
  max-width: 30%;
  height: 121px;
}
li.contact_item:last-of-type {
  height: auto;
}
p.contact_name {
  font-family: var(--Noto-Sans-JP);
  letter-spacing: 0.032em;
  font-weight: 500;
  max-width: 343px;
  text-align: center;
  background-color: var(--blue-15);
  display: inline-block;
  padding: 8.5px 0;
  border-radius: 30px;
  color: #FFFFFF;
  width: 100%;
}
p.contact_number,
p.contact_number a {
  font-family: var(--Noto-Sans-JP);
  letter-spacing: 0.032em;
  font-weight: 500;
  font-size: 18px;
  color: var(--bk);
  line-height: 1.55;
}
ul.contact_list .indent {
  display: inline-block;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  margin: 12px auto 27px;
}

    @media(max-width:768px){
    .contact-page picture.u_flowerRibon {
      display: block;
    }
    ul.contact_list {
    display: flex;
    flex-direction: column;
    }
    li.contact_item {
    width: 100%;
    max-width: 320px;
    height: auto;
    margin: 32px auto 0;
    }
    li.contact_item:first-of-type {
    margin: 0 auto;
    }
    p.contact_name {
    font-size: 14px;
    letter-spacing: 0.028em;
    }
    p.contact_number, p.contact_number a {
    letter-spacing: 0.028em;
    font-size: 16px;
    }
    .contact_listWrap {
    padding: 20px 6% 27px;
    }
    picture.u_ribon-right {
    display: none;
    }
    .form1, .form2 {
    margin: 40px auto 0;
    row-gap: 24px;
    }
    section.r_entry {
    padding: 55px 9% 63px;
    position: relative;
    margin-top: 45px;
    }
	ul.contact_list .contact_item:last-child {
    order: -1;
	}
    }


/* ================================================
    CONTACT-確認
================================================ */
section.r_entry.confirm {
  background-color: #FFFFFF;
}
.btn-submit_wrapper.confirm {
  display: flex;
}
    @media(max-width:768px){
      .btn-submit_wrapper.confirm {
        display: block;
    }
    }

/* ================================================
    CONTACT-完了,エントリーフォーム共通
================================================ */
section.r_entry.thanks {
  background-color: #FFFFFF;
}
section.r_entry.thanks p,
section.r_entry p {
  font-size: 16px;
  font-weight: 500;
  font-family: var(--Noto-Serif-JP);
  letter-spacing: 0.1em;
  line-height: 2.43;
  color: var(--bk);
  text-align: center;
  margin: 60px auto 100px;
}
.btn-submit_wrapper.thanks a {
  padding: 19px 134px;
  border: none;
  color: var(--white);
  font-size: 30px;
  font-weight: 500;
  font-family: var(--Noto-Sans-JP);
  letter-spacing: 0.1em;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  transition: 0.3s ease-in;
  width: 332px;
  text-align: center;
  background-color: var(--blue-15);
  margin: 0 auto;
}
.btn-submit_wrapper.thanks a:hover {
  opacity: .8;
  transition: all .3s;
}
.btn-submit_wrapper.thanks {
  text-align: center;
  margin: 100px auto 0;
}
    @media(max-width:768px){
      section.r_entry.thanks p {
        font-size: 14px;
        margin: 40px auto 50px;
        line-height: 2;/*+0425*/
      }
      .btn-submit_wrapper.thanks a {
        padding: 0;
        font-size: 18px;
        width: 170px;
        height: 50px;
        display: inline-flex;
    }
    }

/* ================================================
    Privacy Policy page
================================================ */
section.privacy {
  padding: 0 7% 170px;
}
.privacy_text {
  max-width: 940px;
  width: 100%;
  margin: 0 auto;
}
.privacy_text p,
.privacy_text h3,
.privacy_text h4,
.privacy_text h5,
.privacy_text ul li p,
.privacy_text ul li,
.privacy_text .p_ul01 {
  line-height: 1.75;
  font-family: var(--Noto-Serif-JP);
  letter-spacing: 0;
  font-size: 16px;
  font-weight: 400;
  color: var(--bk);
}
.privacy_text h3 {
  margin-bottom: 38px;
  margin-top: 66px;
  font-weight: 400;
}
.privacy_text h4 {
  margin: 38px auto 0 0;
}
.privacy_text ul {
  margin-top: 38px;
}
.privacy_text :nth-of-type(2) {
  margin-top: 0;
}
.privacy_text h3:nth-of-type(2) {
  margin-top: 38px;
}
.privacy_text h4:nth-last-of-type(2) {
  margin: 38px auto 0 0;
}
.privacy_text h4:first-of-type {
  margin: 38px auto 0 0;
}

ul.p_ul01 {
  margin: 38px 0 0;
}
ul.p_ul03 {
  margin-top: 0;
}
ul.p_ul04 {
  margin-top: 0;
}
.privacy_text h4:nth-of-type(2) {
  margin: 38px auto 0 0;
}
.privacy_text h4:nth-of-type(3) {
  margin: 38px auto 0 0;
}

@media(max-width:768px){
section.privacy {
  padding: 0 5% 160px;
}
.privacy_text p, .privacy_text h3, .privacy_text h4, .privacy_text h5, .privacy_text ul li p, .privacy_text ul li, .privacy_text .p_ul01 {
line-height: 1.5;
font-size: 14px;
}
.privacy_text h3 {
margin-bottom: 24px;
margin-top: 48px;
}
ul.p_ul01 {
margin-bottom: 48px;
margin-top: 24px;
}
.privacy_text h4:first-of-type {
  margin: 24px auto 0 0;
}
}



/* 画像の初期状態とアニメーション */
.zoom-out-image {
  width: 130%; /* 初期状態で拡大 */
  opacity: 0; /* 初期状態で透明 */
  animation: zoomOutFadeIn .8s ease-out forwards; /* アニメーション適用 ★0125:.6→.8に変更*/
}

/* ズームアウトとフェードインのアニメーション */
@keyframes zoomOutFadeIn {
  0% {
  transform: scale(1.3); /* 拡大状態 */
  opacity: 0; /* 完全に透明 */
  }
  50% {
  opacity: 0.5; /* 半透明 */
  }
  100% {
  transform: scale(1); /* 通常サイズに戻る */
  opacity: 1; /* 完全に表示 */
  }
}



/* 共通の仕様 画像zoom
================== */
/* 画像の初期状態 */
.zoom-scrollImg {
  width: 110%; /* 初期状態で拡大 */
  opacity: 0; /* 初期状態で透明 */
  transform: scale(1.1); /* 初期状態でズーム */
  transition: transform .8s ease-out, opacity .8s ease-out; /* トランジション設定 */
}

/* アニメーション用のクラス */
.zoom-active {
  transform: scale(1); /* 通常サイズに戻る */
  opacity: 1; /* 完全に表示 */
}


/* トップページ画像zoom */
.top_recruit-flex {
  position: relative;
  width: 75%;
}
.top_recruit-flex .zoom-scrollWrap {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 655px;
  overflow: hidden;
  margin: 0;
  width: 100%;
}
.top_recruit-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 35px 35px 0;
  aspect-ratio: 978 / 642;
}
.top_recruit-text {
  position: absolute;
  right: -20%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  top: 80%;
}

    @media(max-width:768px){
    .top_recruit-flex .zoom-scrollWrap {
    height: auto;
    width: 110%;
    }
    .top_recruit-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 353 / 234;
    }
    .top_recruit-flex {
    position: static;
    margin-top: 100px;
    width: 100%;
    }
    .top_recruit-text {
    position: static;
    }
    .top_recruit-titleWrap {
    position: relative;
    z-index: 1;
    }
    .top_recruit-flex.zoom-scrollWrap {
    height: auto;
    width: 90vw;
    }
    }



/* 施設紹介ページ画像zoom */
.r_recruit-img picture {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1440 / 286;
}
.r_recruit-img.zoom-scrollWrap {
  height: 286px;
  overflow: hidden;
  margin: 130px auto 0;
  width: 100%;
}
    @media(max-width:768px){
      .r_recruit-img picture {
        aspect-ratio: 390 / 134;
      }
      .r_recruit-img.zoom-scrollWrap {
        height: 134px;
        margin: 25px auto 0;
      }
    }


/* スタッフ紹介ページ画像zoom */
.staff_sec1-img picture {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio:   880 / 580;
}
.staff_sec1-img.zoom-scrollWrap {
  height: 580px;
  overflow: hidden;
  margin: 0;
  width: 71%;
}
    @media(max-width:768px){
      .staff_sec1-img picture {
        aspect-ratio:   250 / 198;
      }
      .staff_sec1-img.zoom-scrollWrap {
        height: 198px;
        width: 64%;
        position: relative;
        padding-bottom: 22px;
      }
      .staff_sec1-img.zoom-scrollWrap:after {
        position: absolute;
        content: "";
        width: 29%;
        height: 2.3px;
        background: var(--blue-14);
        right: 0;
        bottom: 0px;
        z-index: 2;
    }
    }

/* スタッフインタビュー画像zoom */
.s_interview-img picture {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio:   862 / 347;
}
.s_interview-img.zoom-scrollWrap {
  height: 324px;
  overflow: hidden;
  margin: 0;
  width: 61%;
}
@media(max-width:768px){
  .s_interview-img.zoom-scrollWrap {
    height: 160px;
    width: 95%;
}
}


/*  お知らせ投稿ページ
---------------------- */
p.preparation {
  font-family: var(--Noto-Serif-JP);
  color: var(--bk);
  font-size: 20px;
  letter-spacing: 0.12em;
  line-height: 2;
  font-weight: 500;
  text-align: center;
}
time.news_date {
  font-family: var(--Noto-Serif-JP);
  color: var(--blue-15);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin-top: 14px;
}
.prev-newspost,
.next-newspost {
  width: 40px;
  height: 40px;
  }
.prev-newspost a img,
.next-newspost a img {
width: 100%;
object-fit: cover;
}
.prev-newspost a img {
  transform: rotate(180deg);
}
.wp-pagenavi-newspost {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  max-width: 350px;
  margin: 100px auto 200px;
}
a.archive-newspost {
  color: #FFFFFF;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  font-family: var(--Noto-Sans-JP);
  background-color: var(--blue-15);
  font-size: 18px;
  width: 332px;
  height: 72px;
}
a.archive-newspost:hover {
  opacity: .8;
  transition: all .3s;
  cursor: pointer;
}
.single.u_flowerRibon img {
  display: none;
}
    @media(max-width:768px){
    picture.u_flowerRibon {
    display: block;
    }
    time.news_date {
    font-size: 18px;
    margin-top: 34px;
    display: block;
    }
    .prev-newspost,
    .next-newspost {
    width: 20px;
    height: 20px;
    }
    a.archive-newspost {
    width: 170px;
    height: 50px;
    }
    .single.u_flowerRibon img {
      display: block;
    }
    }
  


/* お知らせ一覧
---------------------- */
.pagination {
  margin: 60px auto 100px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
span.page-numbers.current,
a.page-numbers {
  font-size: 20px;
  font-weight: 500;
  color: var(--bk);
  font-family: var(--Noto-Serif-JP);
  padding: 20px;
}


/* 施設紹介
---------------------- */
.f_message-ribon {
  position: absolute;
  width: 20%;
  z-index: 1;
  top: -110px;
}
.f_message-ribon img {
  width: 100%;
  object-fit: cover;
}

/* お問い合わせ */
input[type=checkbox] {
  display: none;
}
.wpcf7-list-item-label::before {
  position: absolute;
  content: url(../images/checkbox.svg) !important;
  width: 14px;
  height: 14px;
  left: -10px;
  background-size: contain;
  transform: translateY(-50%);
  top: calc(50% - 4px);
}
input:checked + .wpcf7-list-item-label::before {
  content: url(../images/checked.svg) !important;
  margin-right: 0;
  position: absolute;
  top: calc(50% - 4px);
  left: -10px;
}
span.wpcf7-list-item-label {
  font-family: var(--Noto-Serif-JP);
  color: var(--bk);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.1em;
}
a.privacy-link {
  text-decoration: underline;
  text-underline-offset: 0.2rem;
  text-decoration-thickness: 1px;
}
span.wpcf7-form-control-wrap {
  width: 100%;
}

/* 送信・戻るボタン */
input.wpcf7-form-control.wpcf7-submit.has-spinner {
  border: none;
  color: var(--white);
  font-size: 30px;
  font-weight: 500;
  font-family: var(--Noto-Sans-JP);
  letter-spacing: 0.1em;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  transition: 0.3s ease-in;
  width: 332px;
  text-align: center;
  background-color: var(--blue-15);
  margin: 0 auto;
  /* height: 72px; */
}
input.wpcf7-form-control.wpcf7-previous {
  border: none;
  color: var(--blue-15);
  font-size: 30px;
  font-weight: 500;
  font-family: var(--Noto-Sans-JP);
  letter-spacing: 0.1em;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  transition: 0.3s ease-in;
  width: 332px;
  text-align: center;
  margin: 100px auto 20px;
  /* height: 72px; */
}
input.wpcf7-form-control.wpcf7-submit.has-spinner:hover,
input.wpcf7-form-control.wpcf7-previous:hover {
  opacity: .8;
  transition: all .3s;
  cursor: pointer;
}
.wpcf7-spinner {
  display: none;
}
.entry-confirm section.r_entry,
.entry-thanks section.r_entry {
  background-color: #FFFFFF;
}
    @media(max-width:768px){
    input.wpcf7-form-control.wpcf7-submit.has-spinner {
    font-size: 18px;
    width: 170px;
    height: 50px;
    }
    span.wpcf7-list-item-label {
    font-size: 14px;
    }
    section.r_entry label.required, section.r_entry label.any, section.r_entry label.checkbox, section.r_entry a.privacy-link {
    font-size: 14px;
    }
    a.privacy-link {
    text-underline-offset: 0;
    }
    input.wpcf7-form-control.wpcf7-previous {
    font-size: 18px;
    width: 170px;
    height: 50px;
    }
    }

/* 0501追加 */
.top_news td a {
  font-size: 14px;
  letter-spacing: 0.1em;
  color: #454545;
  padding: 20px 100px 20px 50px;
}
   @media(max-width:768px){
    .top_news td a {
      font-size: 11px;
      line-height: 1.64;
    }
    }
/* ====== 0508追加 固定linkボタンの為の ======*/
/* 初期状態：非表示・固定位置 */
.loading-link {
  position: fixed;
  right: 20px;
  bottom: 20px;
  top: auto;
  z-index: 9;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease, opacity 0.3s ease;
}
/* 表示状態：固定位置で表示 */
.loading-link.visible {
  opacity: 1;
  pointer-events: auto;
}
.loading-link.stopped {
  position: absolute !important;
  top: auto !important;
  bottom: 50px !important; /* ←footerの下から50px上に留める */
  right: 20px !important;
}
footer {
  position: relative;
}
.loading-link.visible,
.loading-link.stopped {
  opacity: 1;
  pointer-events: auto;
}
.footer_item2 {
  padding: 0 7% 150px 11%;
}
.fv_link a::before {
  z-index: 9;
}
@media(max-width:768px){
.footer_item2 {
  padding: 0;
}
.footer_copy {
margin-top: 150px;
}
.fv_link a {
height: 80px;
width: 80px;
font-size: 14px;
}
.fv_link a::before {
width: 90px;
height: 90px;
}
.fv_link a span {
font-size: 10px;
}
.fv_link a:hover::before {
width: 98px;
height: 98px;
}
}

/* 0518追加 top-page__news*/
.top_news table {
    max-width: 723px;
    width: 100%;
}
.top_news td img {
    width: 100%;
    aspect-ratio: 125 / 98;
    object-fit: cover;
    height: auto;
	display: block;
}
.top_news td:first-child {
    width: 15%;
    padding: 20px 20px 20px 12px;
}
.top_news td:nth-child(2) {
    padding: 20px 20px 20px 0;
    line-height: 2;
    width: 65%;
}
.top_news td:nth-child(3) {
    width: 20%;
    padding: 20px 0 20px;
    max-width: 125px;
}
    @media(max-width:768px){
      .top_news td:nth-child(2) {
        padding: 20px 10px 20px 0;
    }
    .top_news td:first-child {
    padding: 20px 30px 20px 0;
    }
    }
    
/* 0518追加 about-page*/
ul.a_group-item {
    align-items: center;
    justify-content: center;
    gap: 0 5%;
    max-width: 1240px;
    margin: 0 auto;
}
ul.a_group-item li {
    width: 23%;
    max-width: 250px;
}
ul.a_group-item li.a_group-companies img {
  width: 100%;
  object-fit: contain;
  vertical-align: bottom;
}
.a_group-item p {
    padding: 8.5px 15px;
    margin-top: 0;
    font-size: clamp(12px, 1.3vw, 16px);
}

    @media(max-width:768px){
    ul.a_group-item {
    flex-direction: column;
    width: 100%;
    }
    ul.a_group-item li {
    width: 100%;
    }
	.a_group {
    padding: 0 5% 55px;
    }
    }

/* 追加0703 */
@media (max-width: 768px) {
	ul.a_group-item {
        flex-direction: row;
        width: 100%;
    }
    ul.a_group-item li:first-child {
        width: 100%;
    }
	ul.a_group-item li:nth-child(2),
	ul.a_group-item li:nth-child(3),
	ul.a_group-item li:nth-child(4) {
    width: calc(80% / 3);
    margin-top: 0;
}
	.a_group-item p {
        padding: 3px;
        margin-top: 0;
        font-size: 7px;
        width: 100%;
    }
	ul.a_group-item li.a_group-companies img {
    width: 100%;
    object-fit: contain;
    vertical-align: bottom;
    width: 102px;
    height: 90px;
}
	ul.a_group-item li a {
    display: block;
    height: 100%;
    width: 100%;
}
}

/* 追加0925 */
.fv_link {
    width: max-content;
}