@charset "UTF-8";

/* 基本設定 */

:root {
  --main-color: #2eb6aa;
  --font-color: #717071;
}

body {
  color: var(--font-color);
  font-family: a-otf-ud-shin-maru-go-pr6n, sans-serif;
  font-size: clamp(0.8125rem, 0.4901rem + 1.3228vw, 1.125rem);
  letter-spacing: .1em;
}

a {
  text-decoration: none;
  color: #fff;
}

img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pc-max {
  max-width: 1200px;
  margin: 0 auto;
}

/* header */
header {
  height: clamp(3.125rem, 2.3152rem + 3.3223vw, 4.375rem);
  position: fixed;
  width: 100%;
  z-index: 98;
  background-color: #fff;
}

/* #header-fixed {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0 20px;
} */

#logo {
  width: 22%;
  max-width: 120px;
  position: absolute;
  left: 20px;
}

#menuBtn {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 20px;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

#menuBtn span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--main-color);
}

#closeBtn {
  width: 24px;
  height: 24px;
  position: absolute;
  right: 40px;
  top: 20px;
}

#closeBtn span {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transform-origin: center;
}

#closeBtn span:nth-child(1) {
  transform: rotate(45deg);
}

#closeBtn span:nth-child(2) {
  transform: rotate(-45deg);
}

header nav {
  background-color: var(--main-color);
  width: 100%;
  height: 100vh;
  position: absolute;
  right: -100%;
  opacity: 0;
  transition: .3s;
  min-height: -webkit-fill-available;
  overflow-y: auto;
}

header nav.active {
  opacity: 1;
  right: 0;
}

header .nav-menu {
  width: 80%;
  margin: 100px auto 0;
  font-size: clamp(0.9375rem, 0.8158rem + 0.4992vw, 1.125rem);
  font-weight: bold;
  line-height: 2;
}

header .nav-menu li {
  padding-left: 16px;
  position: relative;
}

header .nav-menu li:before {
  content: "▶";
  color: #fff;
  font-size: 8px;
  position: absolute;
  left: 0;
  top: 6px;
}

header .menu-item {
  font-size: clamp(0.8125rem, 0.7314rem + 0.3328vw, 0.9375rem);
}

header .menu-item li:before {
  content: none;
}

header nav .footer-contact {
  width: 90%;
  margin: 40px auto;
}

header nav .footer-contact div {
  background-color: #fff;
}

header nav .footer-contact div a {
  color: var(--main-color);
}

.recruit-link {
  width: 90%;
  margin: 20px auto;
  text-align: center;
}

main {
  padding-top: clamp(3.125rem, 2.3152rem + 3.3223vw, 4.375rem);
  padding-bottom: clamp(3.125rem, 2.3152rem + 3.3223vw, 4.375rem);
}

@media screen and (min-width:992px) {

  #header-fixed {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
  }

  #logo:after {
    content: '';
    display: block;
    width: clamp(7.5rem, -10.3846rem + 28.8462vw, 11.25rem);
    height: 50px;
    background-image: url(../images/header/logo-copy.webp);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 15px;
    left: 100%;
  }

  header nav {
    background-color: transparent;
    width: auto;
    height: auto;
    position: static;
    opacity: 1;
  }

  header .nav-menu {
    width: auto;
    margin: 0;
    position: absolute;
    top: 10px;
    right: 20px;
    display: flex;
    align-items: center;
  }

  header .nav-menu li {
    position: relative;
    padding: 0 10px;
    display: grid;
    place-items: center;
  }

  header .nav-menu li:before {
    content: '';
    display: block;
    width: 1px;
    height: 9px;
    background-color: black;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  .mail-img {
    width: 120px;
  }

  header .nav-menu li a {
    color: black;
    font-size: 9px;
  }
}

/* 事業一覧 */

.service-wrapper {
  background-color: #edf6f2;
  position: relative;
  margin-top: clamp(2.5rem, -0.0794rem + 10.582vw, 5rem);
  padding: clamp(4.375rem, 2.7629rem + 6.6138vw, 5.9375rem) 4% 20px 4%;
}

.service-wrapper.support2 {
  background-color: #fce2e0;
}

.service-wrapper.support3 {
  background-color: #fcebf3;
}

.service-wrapper.support4 {
  background-color: #fde7c1;
}

.service-wrapper.support5 {
  background-color: #ddf1fc;
}

.service-wrapper h4 {
  width: 35%;
  max-width: 180px;
  position: absolute;
  top: 0;
  left: 2%;
  transform: translateY(-40%);
}

.service-wrapper.support2 h4 {
  width: 50%;
  max-width: 250px;
  transform: translateY(-40%);
}

.service-flex {
  display: flex;
  flex-wrap: wrap;
  column-gap: 4%;
  row-gap: clamp(0.75rem, -0.0883rem + 3.4392vw, 1.5625rem);
}

.support3 .service-flex,
.support4 .service-flex,
.support5 .service-flex {
  justify-content: center;
}

.service-content {
  background-color: #fff;
  /* width: 48%; */
  flex-basis: 48%;
  padding: clamp(0.3125rem, 0.191rem + 0.4983vw, 0.5rem);
}

.service-img {
  overflow: hidden;
}

.service-img img {
  width: 100%;
  display: block;
  transition: transform 0.6s ease;
  transform-origin: center center;
}

.service-content:hover .service-img img {
  transform: scale(1.2);
}

.service-content p {
  color: var(--font-color);
  font-weight: bold;
  text-align: center;
  margin: 10px auto 0;
}

.service-content p+p {
  width: 80%;
  font-size: clamp(0.75rem, 0.5565rem + 0.7937vw, 0.9375rem);
  color: #fff;
  background-color: var(--main-color);
  border-radius: 10px;
  padding: 2px 0;
  margin: 5px auto 10px;
  transition: 0.6s ease;
}

.service-content:hover p+p {
  background-color: #fff;
  color: var(--main-color);
  border: 1px solid var(--main-color);
}

.support2 .service-content p+p {
  background-color: #f08278;
}

.support2 .service-content:hover p+p {
  background-color: #fff;
  color: #f08278;
  border: 1px solid #f08278;
}

.support3 .service-content p+p {
  background-color: #ef93bb;
}

.support3 .service-content:hover p+p {
  background-color: #fff;
  color: #ef93bb;
  border: 1px solid #ef93bb;
}

.support4 .service-content p+p {
  background-color: #ffb858;
}

.support4 .service-content:hover p+p {
  background-color: #fff;
  color: #ffb858;
  border: 1px solid #ffb858;
}

.support5 .service-content p+p {
  background-color: #6090ff;
}

.support5 .service-content:hover p+p {
  background-color: #fff;
  color: #6090ff;
  border: 1px solid #6090ff;
}

@media screen and (min-width:992px) {
  .service-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .service-wrapper {
    width: 32%;
  }

  .service-wrapper.support1,
  .service-wrapper.support2 {
    width: 49%;
  }

  .support3 .service-content,
  .support4 .service-content,
  .support5 .service-content {
    flex-basis: 82%;
  }

  .service-wrapper h4 {
    width: 60%;
  }
}

/* 事業一覧を見るボタン */
.backBtn {
  font-size: clamp(0.8125rem, 0.691rem + 0.4983vw, 1rem);
  background-color: var(--main-color);
  font-weight: bold;
  text-align: center;
  padding: 10px 0;
  border-radius: 10px;
  margin-top: clamp(2.5rem, 0.8804rem + 6.6445vw, 5rem);
  margin-bottom: 40px;
}

.backBtn a {
  display: block;
  width: 100%;
  height: 100%;
}

/* 施設詳細ページ */
.service-hero .back-img {
  background-image: url(../images/front/hero-back2.png);
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
}

.service-hero h1 {
  width: 50%;
  position: relative;
  margin: clamp(4.375rem, 2.7554rem + 6.6445vw, 6.875rem) 0 0 auto;
}

.service-hero h1 img {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.service-hero h1 span {
  display: block;
  width: 100%;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(1.0625rem, 0.2122rem + 3.4884vw, 2.375rem);
  color: #fff;
  font-weight: bold;
}

.service-hero .main-img {
  width: 80%;
}

.service-hero .main-img img {
  width: 100%;
}

.service-hero .info {
  background-color: #fff;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3);
  padding: 5%;
  margin-left: 10%;
  font-weight: bold;
  text-align: justify;
  transform: translateY(-20%);
}

.service-hero .info h2 {
  font-size: clamp(1.0625rem, 0.6171rem + 1.8272vw, 1.75rem);
  color: #f08278;
  font-weight: bold;
}

.service-hero .info p:last-child {
  margin-bottom: 0;
}

@media screen and (min-width:992px) {

  .service-hero .back-img {
    background-image: url(../images/service/service-back-pc.png);
    background-position: top;
  }

  .service-hero h1 {
    width: 40%;
  }

  .service-hero .main-img {
    width: 70%;
  }

  .service-hero .info {
    padding: 3%;
    margin-left: 20%;
  }

}

/* サービス詳細ページおしらせ */

#service-news .news-wrapper {
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3);
  padding: 5% 10%;
  margin: 40px 0;
}

#service-news h2 {
  font-weight: bold;
  font-size: clamp(1rem, 0.6761rem + 1.3289vw, 1.5rem);
  text-align: center;
}

#service-news h2 span {
  display: block;
  font-size: clamp(0.6875rem, 0.566rem + 0.4983vw, 0.875rem);
  color: var(--main-color);
  margin-bottom: 8px;
}

#service-news .news-wrapper ul li {
  padding: 8px 0;
  font-weight: bold;
}

#service-news .news-wrapper ul li:not(:last-child) {
  border-bottom: 1px solid var(--font-color);
}

#service-news .news-wrapper ul li a {
  color: var(--font-color);
}

#service-news .news-wrapper ul li a span {
  display: block;
  font-size: 11px;
  color: var(--main-color);
}

#service-news .news-link {
  background-color: var(--main-color);
  padding: 10px 0;
  margin: 0 auto;
  border-radius: 10px;
  font-weight: bold;
  text-align: center;
  width: 80%;
  max-width: 400px;
}

#service-page #facility {
  margin-top: 40px;
}

@media screen and (min-width:992px) {

  #service-news {
    margin: 80px 0 40px 0;
  }

}

/* サービス詳細ページyoutube */
#service-page #youtube {
  margin: 40px 0;
}

#service-page #youtube iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 2;
}

/* 施設紹介 */
#service-page #facility {
  margin-top: 80px;
}

#service-page #facility h2 {
  font-size: clamp(1rem, 0.6761rem + 1.3289vw, 1.5rem);
  text-align: center;
  font-weight: bold;
  margin-bottom: 40px;
}

#service-page #facility h2 span {
  display: block;
  font-size: clamp(0.6875rem, 0.3651rem + 1.3228vw, 1rem);
  color: var(--main-color);
  margin-bottom: 4px;
}

#service-page #facility h3 {
  font-size: clamp(1rem, 0.6761rem + 1.3289vw, 1.5rem);
  text-align: center;
  font-weight: bold;
  margin: 40px 0;
}

#service-page #facility h3 span {
  display: block;
  font-size: clamp(0.6875rem, 0.3651rem + 1.3228vw, 1rem);
  margin-bottom: 4px;
}

#service-page #facility h3+p {
  margin: 0;
}

#service-page #facility .facility-list .list-flex {
  margin-bottom: 40px;
}

#service-page #facility .facility-list h4.midashi1 {
  position: relative;
}

#service-page #facility .facility-list h4.midashi1 img {
  width: 100%;
}

#service-page #facility .facility-list h4.midashi1 span {
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  padding-bottom: 10px;
  color: #fff;
  font-weight: bold;
  font-size: clamp(0.75rem, 0.4261rem + 1.3289vw, 1.25rem);
}

#service-page #facility .facility-list .list-img {
  width: 100%;
}

#service-page #facility .facility-list+.facility-list {
  margin-top: 60px;
}

#service-page #facility .facility-list {
  padding-top: clamp(3.125rem, 2.5rem + 2.5vw, 4.375rem);
}

.service-hero h1 span.page9-h1 {
  font-size: clamp(0.5625rem, 0.0766rem + 1.9934vw, 1.3125rem);
}

@media screen and (min-width:992px) {

  #service-page #facility h2 {
    margin-bottom: 60px;
  }

  #service-page #facility .facility-list .list-flex {
    display: flex;
    align-items: start;
    gap: 40px;
    margin-bottom: 60px;
  }

  #service-page #facility .facility-list .list-img {
    width: 40%;
  }

  #service-page #facility h3 {
    text-align: left;
    margin: 0 0 20px 0;
  }

}

/* 施設アコーディオン */

details {
  font-size: clamp(0.6875rem, 0.485rem + 0.8306vw, 1rem);
  font-weight: bold;
  line-height: 1.8;
}

details summary {
  cursor: pointer;
  padding: 12px;
  border: var(--main-color) 1px solid;
  text-align: center;
  list-style: none;
  font-weight: bold;
  font-size: clamp(0.8125rem, 0.61rem + 0.8306vw, 1.125rem);
}

details summary span {
  display: inline-block;
  padding-right: 20px;
  position: relative;
}

details summary span::after {
  content: "▼";
  color: var(--main-color);
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  transition: transform 0.3s ease;
}

details[open] summary span::after {
  transform: translateY(-50%) rotate(180deg);
}

details .details-content {
  background-color: #edf6f2;
  padding: 20px;
  margin-top: 20px;
}

details .details-content h4 {
  width: 30%;
  margin-bottom: 12px;
}

details .details-content h5 {
  font-size: clamp(0.8125rem, 0.3671rem + 1.8272vw, 1.5rem);
  display: flex;
  align-items: start;
  gap: 2%;
  font-weight: bold;
  margin-bottom: 16px;
  line-height: 1.5;
}

details .details-content h5 img {
  display: block;
  width: 6%;
  object-fit: contain;
}

details .details-content ul {
  margin-bottom: 30px;
}

details .details-content ul li {
  padding-left: 16px;
  position: relative;
}

details .details-content ul li:before {
  content: '●';
  color: var(--main-color);
  position: absolute;
  left: 0;
}

details a {
  color: var(--font-color);
}

details .map iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 2;
}

.facility-list+.backBtn {
  width: 60%;
  margin: 40px auto 0;
}

@media screen and (min-width:992px) {

  details .details-content {
    padding: 40px;
    margin-top: 40px;
  }

  details .details-content h4 {
    width: 20%;
    margin-bottom: 20px;
  }

  details .details-content h5 img {
    width: 5%;
  }

  details .details-content ul li {
    padding-left: 25px;
  }


}

/* footer */

footer {
  background-color: #edf6f2;
}

.footer-contact {
  font-family: hiragino-kaku-gothic-pron, sans-serif;
  letter-spacing: normal;
  display: flex;
  justify-content: center;
  gap: 2%;
  margin-top: 30px;
}

.footer-contact div {
  background-color: var(--main-color);
  padding: 10px;
  width: 50%;
}

.footer-contact a {
  font-size: clamp(0.875rem, 0.5526rem + 1.3228vw, 1.1875rem);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.footer-contact p {
  font-size: clamp(0.75rem, 0.4276rem + 1.3228vw, 1.0625rem);
  margin-bottom: 0;
}

.telBtn a p:last-child {
  font-size: clamp(0.5625rem, 0.2401rem + 1.3228vw, 0.875rem);
}

.footer-contact a img {
  width: 11%;
  padding-right: 5px;
}

.footer-contact a span {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.footer-logo {
  text-align: center;
}

.footer-content {
  margin: 30px auto 0;
  width: 80%;
}

.footer-content address {
  text-align: center;
  margin: 30px 0 0;
}

.footer-content address a {
  color: var(--font-color);
}

.footer-link {
  margin-top: 30px;
  margin-bottom: 30px;
  text-align: center;
}

small {
  background-color: var(--main-color);
  color: #fff;
  text-align: center;
  padding: 10px 0;
}

@media screen and (min-width:992px) {

  footer .col-11 {
    display: flex;
    align-items: center;
    gap: 5%;
    margin-top: 50px;
    margin-bottom: 50px;
  }

  .footer-contact {
    margin-top: 0;
    display: grid;
    grid-auto-rows: 1fr;
    gap: 20px;
  }

  .footer-contact div {
    width: 100%;
  }

  .footer-content {
    margin-top: 0;
  }

  .footer-content nav {
    padding-bottom: 20px;
    border-bottom: #717071 1px solid;
  }

  .footer-content nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    column-gap: 35px;
    row-gap: 15px;
  }

  .footer-content nav ul a {
    color: var(--font-color);
    font-weight: bold;
    font-size: clamp(0.625rem, 0.0172rem + 0.9804vw, 0.875rem);
    padding-left: 15px;
    position: relative;
  }

  .footer-content nav ul a:before {
    content: '▶';
    color: var(--main-color);
    font-size: clamp(0.5rem, 0.1961rem + 0.4902vw, 0.625rem);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  .footer-address {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
  }

  .footer-logo {
    flex-basis: 45%;
  }

  .footer-address address {
    font-size: clamp(0.625rem, 0.0172rem + 0.9804vw, 0.875rem);
    font-weight: bold;
    margin-top: 0;
  }

  .footer-link {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    margin-bottom: 0;
  }

}

/* *-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*
　　　　　　　採用ページcss
*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-* */

:root {
  --rec-main-color: #c0ca31;
  --rec-sub-color: #ec743e;
}

body.rec {
  background-color: #fffef2;
}

/* header */
.rec header {
  background-color: #fffef2;
}

.rec #logo {
  padding-top: 10px;
  width: 30%;
}

.rec #menuBtn {
  padding-top: 0;
}

.rec #menuBtn span {
  background-color: var(--rec-main-color);
}

/* メニュー */
.rec header nav {
  background-color: var(--rec-main-color);
  z-index: 99;
}

.rec header .nav-menu {
  font-family: fot-tsukubrdgothic-std, sans-serif;
  font-weight: normal;
}

.rec header .nav-menu li:before {
  font-size: 6px;
  top: 50%;
  transform: translateY(-50%);
}

.rec .menu-access {
  background-color: #fff;
  border-radius: 15px;
  padding: 30px;
  font-weight: bold;
  margin-top: 40px;
}

.rec .menu-access .menu-tel {
  text-align: center;
}

.rec .menu-access .menu-tel a {
  color: var(--rec-main-color);
  font-size: 31px;
}

.rec .menu-access .menu-tel a img {
  width: 10%;
  padding-right: 5px;
}

.rec .menu-access .menu-tel+p {
  width: 80%;
  margin-left: auto;
}

.rec .menu-access .menu-link {
  margin-top: 20px;
}

.rec .menu-access .menu-link a {
  border-radius: 15px;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  font-size: 16px;
  background-color: #edacb9;
}

.rec .menu-access .menu-link:last-of-type a {
  background-color: var(--rec-main-color);
}

.rec .menu-access .menu-link a img {
  display: block;
  width: 10%;
  margin-right: 10px;
}

.rec .menu-access .menu-link a span {
  font-size: 12px;
}

@media screen and (min-width:992px) {

  .rec #header-fixed {
    max-width: none;
  }

  .rec main {
    padding-top: 200px;
  }

  .rec header {
    border-top: var(--rec-main-color) 15px solid;
  }

  .rec header nav {
    background-color: #fffef2;
  }

  .rec header .nav-menu {
    position: static;
    justify-content: center;
  }

  .rec header .nav-menu li {
    flex: 1;
    padding: 20px 0;
  }

  .rec header .nav-menu li:not(:last-child) {
    border-right: #fedf8f 2px dashed;
  }

  .rec header .nav-menu li:before {
    content: '';
    display: block;
    background-color: transparent;
    background-image: url(../images/rec-header/star1.webp);
    background-repeat: no-repeat;
    background-size: contain;
    width: 15px;
    height: 15px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: all .3s;
  }

  .rec header .nav-menu li:hover:before {
    transform: rotate(20deg) translateX(-50%);
    top: 1px;
  }

  .rec header .nav-menu li:nth-of-type(3):before {
    background-image: url(../images/rec-header/star2.webp);
  }

  .rec header .nav-menu li:nth-of-type(4):before {
    background-image: url(../images/rec-header/star3.webp);
  }

  .rec header .nav-menu li:nth-of-type(6):before {
    background-image: url(../images/rec-header/star4.webp);
  }

  .rec header .nav-menu li:nth-of-type(7):before {
    background-image: url(../images/rec-header/star5.webp);
  }

  .rec header .nav-menu li.menu-logo:before,
  .rec header .nav-menu li.entry-link:before {
    content: none;
  }

  .rec header .nav-menu li.menu-logo {
    flex: 1.5;
    padding: 0 20px;
  }

  .rec header .nav-menu li a {
    color: var(--font-color);
    font-size: 15px;
    font-weight: bold;
    text-align: center;
    line-height: 1.5;
    display: block;
    width: 100%;
    height: 100%;
  }

  .rec header .nav-menu li a span {
    font-size: 10px;
  }
}

/* 追従リンクボタン */

.rec .button-fixed {
  width: 85%;
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 98;
  transition: opacity .3s, visibility .3s;
}

.button-fixed.hide {
  opacity: 0;
  visibility: hidden;
}

.rec .button-fixed .button-flex {
  background-color: var(--rec-sub-color);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 15px 15px 0 0;
  padding: 8px 10px;
}

.rec .button-fixed .button-flex a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: bold;
  padding: 0 10px;

}

.rec .button-fixed .button-flex a:before {
  content: '';
  display: block;
  width: 15px;
  height: 15px;
  background-image: url(../images/rec-header/form-w.webp);
  background-repeat: no-repeat;
  background-size: contain;
}

.rec .button-fixed .button-flex a:last-child:before {
  background-image: url(../images/rec-header/tel-w.webp);
}

.rec .button-fixed .button-flex a:not(:last-child) {
  border-right: 1px solid #fff;
}

@media screen and (min-width:992px) {
  .rec .button-fixed {
    width: 50px;
    bottom: 30%;
    left: 25px;
    z-index: 98;
    transition: opacity .3s, visibility .3s;
  }

  .rec .button-fixed .button-flex {
    background-color: #fff;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 0 15px 15px 0;
    padding: 8px 10px;
  }

  .rec .button-fixed .button-flex a {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    color: var(--font-color);
    font-size: 12px;
    padding: 10px 0;
  }

  .rec .button-fixed .button-flex a:before {
    background-image: url(../images/rec-header/form-r.webp);
  }

  .rec .button-fixed .button-flex a:last-child:before {
    background-image: url(../images/rec-header/tel-r.webp);
  }

  .rec .button-fixed .button-flex a:not(:last-child) {
    border-bottom: 1px solid var(--font-color);
    border-right: none;
  }
}

/* footer */

.rec footer {
  background-color: #fffef2;
}

.rec .footer-logo {
  margin: 20px;
}

.rec .footer-address {
  text-align: center;
  margin-bottom: 20px;
}

.rec .footer-address a {
  color: var(--font-color);
  display: block;
}

.rec small {
  background-color: var(--rec-main-color);
}

@media screen and (min-width:992px) {
  .rec footer .col-11 {
    display: block;
  }

  .rec .menu-access {
    display: grid;
    justify-content: center;
    align-items: center;
    grid-column-gap: 5%;
    grid-template-columns: 50% 45%;
    grid-template-areas:
      "p p"
      "item1 item2";
    max-width: 900px;
    margin: 0 auto;
  }

  .rec .menu-access .text-center {
    grid-area: p;
  }

  .rec .access-item:first-of-type {
    grid-area: item1;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }

  .rec .access-item:last-of-type {
    grid-area: item2;
  }

  .rec .menu-access .menu-tel a {
    font-size: 40px;
  }

  .rec .menu-access .menu-tel+p {
    width: auto;
    margin-right: 15px;
    margin-bottom: 0;
  }

  .rec .menu-access .menu-link:first-of-type {
    margin-top: 0;
  }

  .rec .menu-access .menu-link a {
    justify-content: center;
    padding: 20px;
    font-size: 20px;
  }

  .rec .footer-nav {
    border-top: var(--font-color) 1px solid;
    padding-top: 20px;
  }

  .rec footer .nav-menu {
    font-family: fot-tsukubrdgothic-std, sans-serif;
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
  }

  .rec footer .nav-menu li a {
    color: var(--font-color);
    font-weight: bold;
    text-align: center;
    display: flex;
    flex-direction: column;
  }

}

/* rec main部分共通 */

.rec h1 {
  font-size: 24px;
  text-align: center;
  font-weight: bold;
  margin-top: 60px;
  font-family: fot-tsukubrdgothic-std, sans-serif;
}

.rec h1 span {
  font-family: a-otf-ud-shin-maru-go-pr6n, sans-serif;
  display: block;
  font-size: 14px;
  color: var(--rec-sub-color);
  margin-bottom: 4px;
}

/* 詳しく見るボタン */
.rec .detail-link {
  width: 50%;
  margin: 30px auto 0;
  padding: 8px 16px;
  border-radius: 15px;
  transition: .3s ease-in-out;
}

.rec .detail-link.red {
  background-color: #e5744f;
}

.rec .detail-link.red:hover {
  border: #e5744f 1px solid;
  background-color: transparent;
}

.rec .detail-link.yellow {
  background-color: #e9c92f;
}

.rec .detail-link.yellow:hover {
  border: #e9c92f 1px solid;
  background-color: transparent;
}

.rec .detail-link.green {
  background-color: #aacc03;
}

.rec .detail-link.green:hover {
  border: #aacc03 1px solid;
  background-color: transparent;
}

.rec .detail-link.blue {
  background-color: #767cba;
}

.rec .detail-link.blue:hover {
  border: #767cba 1px solid;
  background-color: transparent;
}

.rec .detail-link a {
  font-family: a-otf-ud-shin-maru-go-pr6n, sans-serif;
  font-size: 15px;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}

.rec .detail-link.red:hover a {
  color: #e5744f;
}

.rec .detail-link.yellow:hover a {
  color: #e9c92f;
}

.rec .detail-link.green:hover a {
  color: #aacc03;
}

.rec .detail-link.blue:hover a {
  color: #767cba;
}

.rec .detail-link a span {
  display: block;
  width: 27px;
  height: 27px;
  background-color: #fff;
  border-radius: 50%;
  position: relative;
}

.rec .detail-link.red:hover a span {
  background-color: #e5744f;
}

.rec .detail-link.yellow:hover a span {
  background-color: #e9c92f;
}

.rec .detail-link.green:hover a span {
  background-color: #aacc03;
}

.rec .detail-link.blue:hover a span {
  background-color: #767cba;
}

.rec .detail-link a span::before {
  content: "▶";
  font-size: 12px;
  position: absolute;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
}

.rec .detail-link.red a span::before {
  color: #e5744f;
}

.rec .detail-link.yellow a span::before {
  color: #e9c92f;
}

.rec .detail-link.green a span::before {
  color: #aacc03;
}

.rec .detail-link.blue a span::before {
  color: #767cba;
}

.rec .detail-link:hover a span::before {
  color: #fff;
}