/* ----------------------------------------
base
---------------------------------------- */
* {
  box-sizing: border-box;
}

a:hover {
  opacity: 0.7;
}

body {
  font-feature-settings: "palt";
  font-family: 'Zen Maru Gothic', "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  color: #4d4d4d;
  font-size: 15px;
  overflow-x: hidden;
}

:root {
  --primary-font: 'Zen Maru Gothic', "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  --secondary-font: 'Noto Sans JP', sans-serif;
}

/* ----------------------------------------
fonts
---------------------------------------- */
.f-din {
  font-family: din-2014, sans-serif;
  font-weight: 600;
}



/* ----------------------------------------
utility
---------------------------------------- */
@media screen and (min-width: 601px) {
  .u-sp {
    display: none !important;
  }

}


@media screen and (min-width: 769px) {
  .u-md {
    display: none !important;
  }
}

@media screen and (min-width: 1081px) {
  .u-lg {
    display: none !important;
  }
}

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

.u-inner {
  width: 100%;
  max-width: 1110px;
  margin: 0 auto;
  padding: 0 15px;
}

@media screen and (max-width: 1080px) {
  .u-inner {
    padding: 0 32px;
  }
}

@media screen and (max-width: 480px) {
  .u-inner {
    padding: 0 15px;
  }
}

.u-inner-s {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 15px;
}

.u-tcenter {
  text-align: center;
}

.u-mcenter {
  margin: 0 auto;
}

.u-mb10 {
  margin-bottom: 10px !important;
}

.u-mb20 {
  margin-bottom: 20px !important;
}

@media screen and (max-width: 480px) {
  .u-mb20 {
    margin-bottom: 10px !important;
  }
}

.u-mb30 {
  margin-bottom: 30px !important;
}

.u-mb40 {
  margin-bottom: 40px !important;
}

.u-mb50 {
  margin-bottom: 50px !important;
}

.u-mb60 {
  margin-bottom: 60px !important;
}

.u-mb70 {
  margin-bottom: 70px !important;
}

.u-mb80 {
  margin-bottom: 80px !important;
}

.u-mb90 {
  margin-bottom: 90px !important;
}

.u-mb100 {
  margin-bottom: 100px !important;
}


/* ----------------------------------------
module
---------------------------------------- */
.m-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 76px;
  padding: 0 20px;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: #fff;
  box-shadow: 0 0 3px rgba(0, 0, 0, .1);
  box-sizing: border-box;
}

.m-header__logo {
  width: 157px;
  position: relative;
  z-index: 999;
}


.m-header__nav {
  display: flex;
  align-items: center;
  height: 100%;
}

.m-header__list {
  display: flex;
  align-items: flex-end;
  text-align: center;
  height: 100%;
}

.m-header__list img {
  width: auto;
  height: auto;
  min-height: 22px;
  object-fit: contain;
}

.m-header__list li {
  height: 100%;
  display: flex;
  align-items: center;
}

.m-header__list li:nth-child(1) img {
  width: 22px;
}

.m-header__list li:nth-child(2) img {
  width: 16px;
}

.m-header__list li:nth-child(3) img {
  width: 22px;
}

.m-header__list li:nth-child(4) img {
  width: 30px;
}

.m-header__list a {
  position: relative;
  display: flex;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 20px 0 0;
  overflow: hidden;
}

@media screen and (max-width: 1080px) {
  .m-header__list a {
    flex-direction: row;
  }
}

.m-header__list--border {
  transition: transform 0.2s ease;
}

.m-header__list--border::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.m-header__list>li:first-child:hover .m-header__list--border {
  color: #EE869A;
}

.m-header__list>li:first-child:hover .m-header__list--border::before {
  background: #EE869A;
}


.m-header__list>li:nth-child(2):hover .m-header__list--border {
  color: #EFB23A;
}

.m-header__list>li:nth-child(2):hover .m-header__list--border::before {
  background: #EFB23A;
}

.m-header__list>li:nth-child(3):hover .m-header__list--border {
  color: #81CDE4;
}

.m-header__list>li:nth-child(3):hover .m-header__list--border::before {
  background: #81CDE4;
}

.m-header__list>li:nth-child(4):hover .m-header__list--border {
  color: #EB614B;
}

.m-header__list>li:nth-child(4):hover .m-header__list--border::before {
  background: #EB614B;
}


.m-header__service-nav a:hover,
.m-header__list--border:hover {
  opacity: 1;
}

.m-header__service-nav li p {
  transition: color 0.1s ease;
}

.m-header__service-nav li:nth-child(1):hover p {
  color: #EE869A;
  /* 1番目 */
}

.m-header__service-nav li:nth-child(2):hover p {
  color: #69ACE3;
  /* 2番目 */
}

.m-header__service-nav li:nth-child(3):hover p {
  color: #F6AD3C;
  /* 3番目 */
}

.m-header__service-nav li:nth-child(4):hover p {
  color: #9CD55B;
  /* 4番目 */
}

.m-header__service-nav li:nth-child(5):hover p {
  color: #76D4E2;
  /* 5番目 */
}

.m-header__service-nav li:nth-child(6):hover p {
  color: #A898CE;
  /* 6番目 */
}






.m-header__list--border:hover::before {
  transform: scaleX(1);
}


.m-header__list p {
  font-size: 14px;
  white-space: nowrap;
  margin: 4px 0 0;
}

.m-header__sub {
  padding: 0 12px 0 4px;
}

.m-header__tel {
  display: flex;
  justify-content: center;
  align-items: center;
}

.m-header__tel img {
  width: 25px;
  margin: 0 4px 0 0;
}

.m-header__tel p {
  font-size: 28px;
  line-height: 1;
  white-space: nowrap;
}

.m-header__line {
  display: flex;
  align-items: center;
  justify-content: center;
}

.m-header__line img {
  width: 21px;
  margin: 0 0 0 4px;
}

.m-header__line p {
  font-size: 12px;
  white-space: nowrap;
}

.m-header__cta {
  display: flex;
  gap: 10px;
  align-items: center;
}

@media screen and (max-width: 1080px) {
  .m-header__cta {
    padding-bottom: 70px;
  }
}

.m-header__service-nav {
  pointer-events: none;
  opacity: 0;
  position: absolute;
  display: flex;
  top: 100%;
  left: 0;
  background: #F3FAFC;
  padding: 26px 50px;
  gap: 20px;
}

@media screen and (max-width: 1024px) {
  .m-header__list--hover {
    display: flex;
    flex-direction: column;
    align-items: flex-start !important;
  }

  .m-header__service-nav {
    position: relative;
    opacity: 1;
    display: flex;
    flex-direction: column;
    background: none;
    padding: 0;
    width: 100%;
    gap: 0;
  }
}

.m-header__list--hover {
  position: relative;
}

.m-header__list--hover:hover .m-header__service-nav {
  opacity: 1;
  pointer-events: visible;
}

.m-header__nav.is-open .m-header__service-nav {
  pointer-events: visible;
}

.m-header__service-nav-img {
  position: relative;
  width: 78px;
  height: 78px;
  margin: 0 auto;
}

.m-header__service-nav-img img {
  width: 100% !important;
  height: 100% !important;
  transform: translate(0) !important;
  top: 0 !important;
  left: 0 !important;
}

@media screen and (max-width: 1024px) {
  .m-header__service-nav-img {
    margin: 0;
    width: 22px;
    height: 22px;
    transform: translate(-5px, 5px);
  }

}

.m-header__service-nav p {
  text-align: center;
  padding-top: 10px;
}

@media screen and (max-width: 1024px) {
  .m-header__service-nav li {
    padding: 0;
  }
}

@media screen and (max-width: 1024px) {
  .m-header__cta {
    margin-top: 40px;
    flex-direction: column;
    gap: 20px;
  }
}

.m-header__contact a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  width: 156px;
  height: 60px;
  border-radius: 5px;
  line-height: 1.3;
  font-size: 13px;
}

@media screen and (max-width: 1024px) {
  .m-header__contact a {
    width: 280px;
  }
}

@media screen and (max-width: 480px) {
  .m-header__contact {
    width: 90%;
    margin: 0 auto;
  }

  .m-header__contact a {
    width: 100%;
  }
}

.m-header__contact img {
  width: 20px;
  margin: 0 6px 0 0;
}

.m-header__sns-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

@media screen and (max-width: 480px) {
  .m-header__sns-wrap {
    margin-top: 40px;
  }
}

.m-hamburger {
  display: none;
}

@media screen and (max-width: 1200px) {
  .m-header__sub {
    display: none;
  }
}

@media screen and (max-width: 1024px) {
  .m-header {
    height: 60px;
  }

  .m-header__logo {
    width: 140px;
  }

  .m-header__sub {
    display: block;
  }

  .m-header__nav {
    display: none;
    position: fixed;
    top: 0px;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid #efefef;
    padding: 0px 0;
    box-shadow: 0 3px 3px rgba(0, 0, 0, .1);
  }

  .m-header__nav.is-open {
    display: block;
    height: 100vh;
    width: 100%;
    overflow-x: hidden;
    overflow-y: scroll;
  }

  .m-header__list {
    justify-content: center;
    display: block;
    margin: 0 0 25px;
    height: auto;
    padding-top: 60px;
  }

  .m-header__list li {
    border-bottom: 1px solid #efefef;
  }

  .m-header__list a {
    display: flex;
    align-items: center;
    padding: 16px 15px 16px 50px;
    position: relative;
    width: 100%;
    justify-content: left;
  }

  .m-header__list img {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    left: 30px;
  }

  .m-header__list p {
    margin: 0;
    font-size: 14px;
  }

  .m-header__sub {
    margin: 0 0 15px;
  }

  .m-header__tel {
    margin: 0 0 5px;
  }

  .m-header__line p {
    font-size: 14px;
  }

  .m-header__contact a {
    margin: 0 auto;
  }


  @media screen and (max-width: 480px) {
    .m-header__contact p {
      min-width: 8em;
    }
  }


  .m-hamburger {
    display: block;
    width: 60px;
    height: 60px;
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
  }

  .m-hamburger__line {
    width: 40px;
    height: 2px;
    background: #404040;
    position: absolute;
    left: 10px;
    transition: .4s;
  }

  .m-hamburger__line._01 {
    top: 20px;
  }

  .m-hamburger__line._02 {
    top: 30px;
  }

  .m-hamburger__line._03 {
    top: 40px;
  }

  .m-hamburger.is-open .m-hamburger__line._01 {
    top: 30px;
    transform: rotate(45deg);
  }

  .m-hamburger.is-open .m-hamburger__line._02 {
    opacity: 0;
  }

  .m-hamburger.is-open .m-hamburger__line._03 {
    top: 30px;
    transform: rotate(-45deg);
  }
}


.m-footer {
  background: url(../img/common/footer-bg.png) center / 100% 100%;
  position: relative;
  overflow: hidden;
}

.m-footer .u-inner {
  position: relative;
  padding: 200px 15px 100px;
}

.m-footer__container {
  display: flex;
  margin-top: 10px;
  justify-content: space-between;

}



@media screen and (max-width: 768px) {
  .m-footer__container {
    flex-direction: column;
  }
}

.m-footer__logo {
  max-width: 220px;
}

@media screen and (max-width: 768px) {
  .m-footer__logo {
    margin: 0 auto;
  }
}

.m-footer__address {
  line-height: 1.75;
  font-size: 14px;
}

.m-footer__tel {
  display: flex;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .m-footer__tel {
    justify-content: center;
  }
}

.m-footer__tel a {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 600px) {
  .m-footer__tel a {
    margin: 0 auto;
  }
}

.m-footer__tel img {
  width: 30px;
  margin: 0 10px 0 0;
}

.m-footer__tel p {
  font-size: 25px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}

.m-footer__service {
  background: #f5f9fa;
  padding: 0 1rem 3rem 1rem;
  font-family: var(--primary-font);
  color: #333;
}

.m-footer__service-title {
  font-size: 15px;
  margin-bottom: 12px;
  font-weight: 500;
}

@media screen and (max-width: 480px) {
  .m-footer__service-title {
    padding-left: 1em;
  }
}

.m-footer__service-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: space-between;
}

@media screen and (max-width: 1080px) {
  .m-footer__service-columns {
    gap: 12px;
  }
}

@media screen and (max-width: 768px) {
  .m-footer__service-columns {
    justify-content: space-between;
    gap: 18px;
  }
}

@media screen and (max-width: 600px) {
  .m-footer__service-columns {
    justify-content: left;
  }
}

@media screen and (max-width: 480px) {
  .m-footer__service-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding-left: 1em;
  }
}

.m-footer__service-heading {
  font-size: 14px;
  line-height: 1.4;
  display: flex;
  align-items: center;
  font-weight: 500;
}

.m-footer__service-heading::before {
  content: "";
  width: 10px;
  height: 2px;
  background: #eee;
  display: block;
  transform: translateX(-2px);
}

.m-footer__service-item p {
  padding-left: 1em;
  font-size: 14px;
}

.m-footer__service-list {
  list-style: none;
  padding-left: 10px;
  margin: 0;
}

.m-footer__service-list-item {
  font-size: 13px;
  margin-bottom: 0.3rem;
  color: #959494;
  margin-top: 6px;
}

/* Modifier（色） */
.is-pink .m-footer__service-heading::before {
  background: #EE869A;
}

.is-blue .m-footer__service-heading::before {
  background: #7BD2DE;
}

.is-yellow .m-footer__service-heading::before {
  background: #EFB23A;
}

.is-green .m-footer__service-heading::before {
  background: #AAD677;
}

.is-lightblue .m-footer__service-heading::before {
  background: #81CDE4;
}

.is-purple .m-footer__service-heading::before {
  background: #A898CE;
}

.m-footer__list {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 421px;
  margin: 28px auto 40px;
  gap: 12px;
}

@media screen and (max-width: 768px) {
  .m-footer__list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: left;
  }
}

.m-footer__list li {
  width: 198px;
}

@media screen and (max-width: 480px) {
  .m-footer__list li {
    text-align: left;
  }
}

.m-footer__nav {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

@media screen and (max-width: 1080px) {
  .m-footer__nav {
    justify-content: space-evenly;
  }
}

@media screen and (max-width: 768px) {
  .m-footer__nav {
    justify-content: center;
  }
}

@media screen and (max-width: 480px) {
  .m-footer__nav {
    justify-content: center;
    gap: 8px;
  }
}

.m-footer__nav li {

  margin-top: 14px;
  padding: 0 0 0 14px;
  font-size: 13px;
  position: relative;
  font-weight: 500;
}

.m-footer__contact a {
  display: flex;
  align-items: center;
  color: #fff;
  width: 100%;
  height: 60px;
  border-radius: 5px;
  line-height: 1.3;
  font-size: 13px;
}

.m-footer__contact p,
.m-footer__contact a img {
  transform: translateX(2em);
}

@media screen and (max-width: 480px) {
  .m-footer__contact {
    width: 90%;
    margin: 0 auto;
  }
}

.m-footer__contact img {
  width: 20px;
  margin: 0 6px 0 0;
}


.m-footer__instagram {
  display: flex;
  align-items: center;
}

.m-footer__instagram img {
  width: 17px;
  margin: 0 3px 0 0;
}

.m-footer__wood {
  width: 178px;
  position: absolute;
  bottom: 0;
  left: 15px;
}

.m-footer__car {
  width: 116px;
  position: absolute;
  bottom: -3px;
  left: 100%;
  animation: top-mv__illust 40s infinite linear;
}

.m-footer__turtle {
  width: 58px;
  position: absolute;
  top: 15px;
  left: 10%;
}

.m-footer__address-wrap {
  flex-shrink: 0;
}

@media screen and (max-width: 768px) {
  .m-footer__address-wrap {
    flex-shrink: 0;
    text-align: center;
  }
}

@media screen and (max-width: 480px) {
  .m-footer__address-wrap {
    width: fit-content;
  }
}

@media screen and (max-width: 600px) {
  .m-footer {
    background: #F2FAFC;
    overflow: visible;
  }

  .m-footer .u-inner {
    padding: 60px 15px 100px;
    overflow: hidden;
  }

  .m-footer__logo {
    max-width: 220px;
    margin: 0 auto;
  }

  .m-footer__list li {
    width: 60%;
    margin: 0 auto;
  }


  .m-footer__wood {
    width: 130px;
  }

  .m-footer__car {
    width: 90px;
  }

  .m-footer__turtle {
    top: auto;
    bottom: 99%;
  }

  .m-footer__address-wrap {
    text-align: center;
  }
}


.m-page-mv {
  height: 200px;
  background: url(../img/common/page-mv.png) center / cover;
}

.m-page-mv__inner {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  height: 100%;
}

.m-page-mv__title {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
}

.m-page-mv__title-ja {
  font-size: 38px;
  font-weight: bold;
}

.m-page-mv__title-ja span {
  font-size: 22px;
}

.m-page-mv__title-en {
  color: #56b6cb;
  font-size: 20px;
  letter-spacing: 0.05em;
}

.m-page-mv__image {
  position: absolute;
  top: 35%;
  right: 15px;
  transform: translateY(-50%);
  width: 343px;
}

@media screen and (max-width: 1000px) {
  .m-page-mv__title-ja {
    font-size: 24px;
  }

  .m-page-mv__title-en {
    font-size: 16px;
  }
}

@media screen and (max-width: 600px) {
  .m-page-mv {
    height: 160px;
  }

  .m-page-mv__title {
    transform: none;
    top: 15%;
  }

  .m-page-mv__image {
    width: 55%;
    transform: none;
    top: auto;
    bottom: 10%;
  }
}


.m-breadcrumbs {
  width: 80%;
  margin: 0 auto;
  padding: 10px 0;
}

.m-breadcrumbs ul {
  display: flex;
  align-items: center;
  font-size: 13px;
}

.m-breadcrumbs li:not(:first-child)::before {
  content: "";
  margin: 0 8px 0 6px;
  display: inline-block;
  width: 5px;
  height: 5px;
  border-top: 2px solid #a7a7a7;
  border-right: 2px solid #a7a7a7;
  transform: rotate(45deg) translateY(-2px);
}

.m-breadcrumbs li:last-child {
  color: #a7a7a7;
}

.m-page-container {
  padding: 85px 0 100px;
}


.m-copyright {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  font-size: 12px;
  height: 52px;
}


.m-title-A {
  font-size: 38px;
  letter-spacing: 0.02em;
  font-weight: bold;
}

.m-title-B {
  font-size: 20px;
  font-family: "Montserrat", sans-serif;

  font-weight: 400;
}

@media screen and (max-width: 1024px) {
  .m-title-A {
    font-size: 28px;
  }

  .m-title-B {
    font-size: 18px;
  }
}

@media screen and (max-width: 768px) {
  .m-title-A {
    font-size: 24px;
  }

  .m-title-B {
    font-size: 15px;
  }
}

@media screen and (max-width: 480px) {
  .m-title-A {
    font-size: 24px;
  }

  .m-title-B {
    font-size: 15px;
  }
}


.m-button-A {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  cursor: pointer;
  color: #fff;
  background: #81CDE4 url(../img/common/icon-arrow_A.png) right 20px center / 14px 8px no-repeat;
  width: 360px;
  height: 64px;
  border-radius: 32px;
  margin: 0 auto;
  font-size: 18px;
  font-family: 'Noto Sans JP', sans-serif;
}

.m-button-A img {
  width: 22px;
  margin: 0 8px 0 0;
}

@media screen and (max-width: 600px) {
  .m-button-A {
    background-position: right 15px center;
    width: 280px;
    height: 50px;
    font-size: 16px;
  }
}

.page-contact-ambulance .m-button-A {
  background: #69ACE3;
}

.page-contact-taxi .m-button-A {
  background: #F6AD3C;
}

.page-contact-support .m-button-A {
  background: #A898CE;
}


.top-instagram__btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  cursor: pointer;
  color: #fff;
  max-width: 360px;
  height: 64px;
  border-radius: 32px;
  margin-top: 50px;
  font-size: 18px;
  font-family: 'Noto Sans JP', sans-serif;
  background: #69ACE3;
}

.top-instagram__btn::before {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: url("../img/common/icon-arrow_45deg.png") center center / cover no-repeat;
}


@media screen and (max-width: 600px) {
  .top-instagram__btn {
    width: 280px;
    height: 50px;
    margin: 0 auto;
    margin-top: 30px;
    font-size: 16px;
  }
}

@media screen and (max-width: 600px) {
  .m-button-A {
    background-position: right 15px center;
    width: 280px;
    height: 50px;
    font-size: 16px;
  }
}

.m-button-C {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  cursor: pointer;
  color: #fff;
  background: #EE869A url(../img/common/icon-arrow_A.png) right 20px center / 14px 8px no-repeat;
  width: 90%;
  max-width: 360px;
  height: 64px;
  border-radius: 32px;
  margin: 0 auto;
  font-size: 15px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
}

.m-button-C img {
  width: 22px;
  margin: 0 8px 0 0;
}

@media screen and (max-width: 600px) {
  .m-button-C {
    width: 280px;
    background-position: right 15px center;
    font-size: 16px;
    height: 50px;
  }
}


.m-button-red {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  cursor: pointer;
  color: #fff;
  background: #E87562 url(../img/common/icon-arrow_A.png) right 20px center / 14px 8px no-repeat;
  max-width: 360px;
  height: 64px;
  border-radius: 32px;
  font-size: 18px;
  font-family: 'Noto Sans JP', sans-serif;
}

.m-button-red img {
  width: 22px;
  margin: 0 8px 0 0;
}

@media screen and (max-width: 600px) {
  .m-button-red {
    background-position: right 15px center;
    width: 280px;
    height: 50px;
    font-size: 16px;
  }
}



.m-news-list {
  border-top: 2px dotted #81CDE4;
}

.m-news-list li {
  border-bottom: 2px dotted #81CDE4;
}

.m-news-list a {
  display: flex;
  align-items: center;
  padding: 20px 35px 20px 20px;
  background: url(../img/common/icon-arrow_B.png) right 20px center / 6px 11px no-repeat;
}

.m-news-list__date {
  color: #81CDE4;
  letter-spacing: 0.1em;
  margin: 0 20px 0 0;
}

@media screen and (max-width: 600px) {
  .m-news-list a {
    display: block;
    padding: 20px 10px 20px 0;
    background: url(../img/common/icon-arrow_B.png) right 5px center / 6px 11px no-repeat;
  }

  .m-news-list__date {
    margin: 0 0 5px;
  }
}



.m-cta__container {
  background: #F3FAFC;
  border-radius: 10px;
}

.m-cta__inner {
  width: 60%;
  margin: 0 auto;
  padding: 50px 0;
}

@media screen and (max-width: 768px) {
  .m-cta__inner {
    width: 80%;
  }

}

@media screen and (max-width: 480px) {
  .m-cta__inner {
    width: 90%;
  }

}

.m-cta__head {
  background: #9AD6DE;
  padding: 22px 0;
  border-radius: 10px 10px 0 0;
}

.m-cta__text {
  font-size: 20px;
  font-weight: 500;
}

@media screen and (max-width: 480px) {
  .m-cta__text {
    font-size: 15px;
  }
}

.m-cta__head-bar {
  font-size: 18px;
  font-weight: bold;
  border-radius: 50px;
  line-height: 2;
  color: #fff;
  margin: 0 auto;
  margin-bottom: 24px;
}

@media screen and (max-width: 480px) {
  .m-cta__head-bar {
    font-size: 15px;
    margin-bottom: 20px;
  }
}

.m-cta__head-bar--orange {
  background: #F6AD3C;
}

.m-cta__head-bar--green {
  background: #9CD55B;
}

.m-cta__head-bar--light-blue {
  background: #76D4E2;
}


.m-cta__contents {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
  padding: 50px 38px;
}

@media screen and (max-width: 768px) {
  .m-cta__contents {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 480px) {
  .m-cta__contents {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    padding: 50px 20px;
  }

  .m-cta__contents:last-child {
    padding-top: 0;
  }
}

@media screen and (max-width: 480px) {
  .m-cta__content {
    margin-top: 20px;
  }
}

@media screen and (max-width: 768px) {
  .top-cta__grid-02 {
    grid-row: 2;
  }

}

.m-cta__content-head {
  font-size: 24px;
  padding: 10px 0;
  font-weight: bold;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  margin-bottom: 32px;
}

@media screen and (max-width: 1080px) {
  .m-cta__content-head {
    font-size: 22px;
  }
}

@media screen and (max-width: 480px) {
  .m-cta__content-head {
    font-size: 20px;
  }
}

.m-cta__content-head--orange {
  color: #F6AD3C;
  border-color: #F6AD3C;
}

.m-cta__content-head--blue {
  color: #69ACE3;
  border-color: #69ACE3;
}

.m-cta__content-head--light-blue {
  color: #7BD2DE;
  border-color: #7BD2DE;
}

.m-cta__content-head--green {
  color: #9CD55B;
  border-color: #9CD55B;
}

.m-cta__content-head--purple {
  color: #A898CE;
  border-color: #A898CE;
}

.m-cta__content-place {
  width: 100%;
  font-size: 18px;
  border: 1px solid #ccc;
  border-radius: 50px;
  padding: 6px 0;
}

@media screen and (max-width: 768px) {
  .m-cta__content-place {
    max-width: 60%;
    margin: 0 auto;
  }
}

@media screen and (max-width: 480px) {
  .m-cta__content-place {
    font-size: 16px;
    max-width: 80%;
  }
}

.m-cta__content-holiday {
  color: #C44343;
  font-size: 14px;
  font-weight: 500;
  /* transform: translateY(-50%); */
}

.m-cta__content--2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

@media screen and (max-width: 480px) {
  .m-cta__content--2col {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.m-cta__content-tel {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 36px;
  gap: 8px;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
}

@media screen and (max-width: 1080px) {
  .m-cta__content-tel {
    font-size: 28px;
  }
}

@media screen and (max-width: 480px) {
  .m-cta__content-tel {
    font-size: 28px;
  }
}

.m-cta__content-tel::before {
  display: block;
  content: "";
  width: 32px;
  height: 32px;
  background: url("../img/common/icon-tel_A.png") center center / contain no-repeat;
}

.m-cta__content-tel--02::before {
  background: url("../img/common/icon-tel_02.png") center center / contain no-repeat;
}

.m-cta__content-tel--03::before {
  background: url("../img/common/icon-tel_03.png") center center / contain no-repeat;
}

.m-cta__content-tel--04::before {
  background: url("../img/common/icon-tel_04.png") center center / contain no-repeat;
}



@media screen and (max-width: 480px) {
  .m-cta__content-tel::before {
    width: 26px;
    height: 26px;
  }
}

.m-cta__content-fax {
  font-size: 32px;
  font-weight: 300;
  font-family: "Montserrat", sans-serif;
}

@media screen and (max-width: 1080px) {
  .m-cta__content-fax {
    font-size: 24px;
  }
}

.m-cta__btn-wrap {
  margin-top: 32px;
}

@media screen and (max-width: 480px) {
  .m-cta__btn-wrap {
    margin-top: 20px;
  }
}

.m-cta__btn-wrap span {
  display: block;
  margin-bottom: 10px;
}

.m-cta__btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background: #ee869a;
  width: 100%;
  max-width: 300px;
  height: 60px;
  border-radius: 5px;
  line-height: 1.3;
}

.m-cta__btn--orange a {
  background: #F6AD3C;
}

.m-cta__btn--blue a {
  background: #69ACE3;
}

.m-cta__btn--purple a {
  background: #A898CE;
}

.m-cta__btn img {
  width: 20px;
  margin: 0 6px 0 0;
}


.m-text-orange {
  color: #F6AD3C;
}

.m-text-pink {
  color: #EE869A;
}

.m-text-blue {
  color: #69ACE3;
}

.m-text-light-blue {
  color: #7BD2DE;
}

.m-border-orange {
  border-color: #F6AD3C;
}

.m-border-pink {
  border-color: #EE869A;
}

.m-border-blue {
  border-color: #69ACE3;
}

.m-border-light-blue {
  border-color: #7BD2DE;
}

.m-bg-blue {
  background: #69ACE3;
}

.m-bg-orange {
  background: #F6AD3C;
}

.m-bg-purple {
  background: #A898CE;
}





.m-section-bg-top {
  top: 0;
  left: 0;
  position: absolute;
  z-index: -1;
}

.m-section-bg-btm {
  top: 0;
  left: 0;
  position: absolute;
  z-index: -1;
}

.m-cta {
  margin-top: 80px;
  position: relative;
  display: flex;
  align-items: center;
  min-height: 60vh;
  padding-bottom: 60px;
  background: url("../img/common/guide-bg.png") center center / contain no-repeat;
}

@media screen and (max-width: 1080px) {
  .m-cta {
    min-height: 55vh;
    margin-top: 50px;
  }
}

@media screen and (max-width: 480px) {
  .m-cta {
    padding-bottom: 100px;
    height: auto;
  }
}

/* ----------------------------------------
m-step
---------------------------------------- */


.m-step {
  padding: 80px 0 0;
  margin: -40px 0 0;
  position: relative;
}

.page-step {
  margin-top: 130px;
}

.m-step-guide-wrap {
  /* background: url(../img/top/bg_01.png) center / cover; */
  position: relative;
  overflow: hidden;
}

@media screen and (max-width: 600px) {
  .m-step-guide-wrap {
    /* background: url(../img/top/bg_01_sp.png) center / 100% auto; */
  }
}

.m-step-guide-wrap__image {
  position: absolute;
  top: 90px;
  left: 50%;
  transform: translateX(-50%);
  width: 1688px;
  z-index: -1;
  max-width: none;
}


.m-step__illust {
  position: absolute;
  top: 85px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 1042px;
  width: calc(100% - 30px);
}

.m-step__read {
  text-align: center;
  margin: 0 0 70px;
}

.m-step__list {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 0 0 50px;
}

.m-step__list>li {
  width: 24%;
  position: relative;
}

.m-step__number {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
}

.m-step__image {
  display: block;
  margin: 0 0 20px;
  border-radius: 10px;
}

.m-step__head {
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  margin: 0 0 20px;
}

.m-step__head span {
  display: block;
  font-size: 11px;
  font-weight: normal;
  margin: 4px 0 0;
}

.m-step__tel {
  font-size: 22px;
  text-align: center;
  display: block;
  margin: 0 0 5px;
  letter-spacing: 0.05em;
}

.m-step__contact {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  width: 240px;
  height: 40px;
  border-radius: 20px;
  margin: 0 auto;
  background: #EE869A url(../img/common/icon-arrow_A.png) right 14px center / 11px 7px no-repeat;
}

.m-step__contact img {
  width: 13px;
  margin: 0 4px 0 0;
}

.m-step__list ul {
  display: flex;
  flex-wrap: wrap;
}

.m-step__list ul li {
  margin: 0 6px 0 0;
  font-size: 13px;
}

.m-step__list ul li::before {
  content: "●";
  margin: 0 2px 0 0;
}

.m-step__list ul li:nth-of-type(1)::before {
  color: #EB614B;
}

.m-step__list ul li:nth-of-type(2)::before {
  color: #F4B3C2;
}

.m-step__list ul li:nth-of-type(3)::before {
  color: #F6AD3C;
}

.m-step__list ul li:nth-of-type(4)::before {
  color: #FDD23E;
}

.m-step__list ul li:nth-of-type(5)::before {
  color: #7FBF34;
}

.m-step__list ul li:nth-of-type(6)::before {
  color: #309881;
}

.m-step__list ul li:nth-of-type(7)::before {
  color: #81CDE4;
}

.m-step__label {
  text-align: center;
}

.m-step__label img {
  width: 186px;
}

.m-step__attention {
  background: #fff;
  font-size: 13px;
  color: #EB614B;
  border: 1px solid #EB614B;
  padding: 20px 15px;
  border-radius: 10px;
  max-width: 770px;
  margin: 0 auto;
  margin-bottom: 120px;
}

.m-step__attention p {
  max-width: 535px;
  margin: 0 auto;
}

.m-step__attention--bg {
  max-width: 640px;
  margin: 0 auto;
  margin-top: 60px;
  background: #FFF2F2;
  border-radius: 50px;
  text-align: center;
  padding: 15px;
}

.m-step__attention--bg {
  font-weight: 500;
  color: #E87562;
}

.m-step__attention--bg p:nth-child(2) {
  font-size: 13px;
}

@media screen and (max-width: 1000px) {
  .m-step__list {
    flex-wrap: wrap;
  }

  .m-step__list li {
    width: 48%;
    margin: 0 0 40px;
  }
}

@media screen and (max-width: 600px) {
  .m-step-guide-wrap__image {
    display: none;
  }

  .m-step {
    padding: 80px 0 0;
    margin: 0;
  }

  .m-step__list {
    display: block;
  }

  .m-step__list li {
    width: auto;
    margin: 0 0 70px;
  }
}



/* guide */

.m-guide {
  position: relative;
  display: flex;
  align-items: center;
  height: 80vh;
  margin: 80px 0;
  padding-bottom: 60px;
  /* background: url("../img/common/guide-bg.png") center center / contain no-repeat; */
}

@media screen and (max-width: 1080px) {
  .m-guide {
    height: auto;
    margin: 80px 0;
  }
}

@media screen and (max-width: 480px) {
  .m-guide {
    margin: 30px 0;
  }
}

.m-guide__bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90%;
  max-width: 1400px;
  height: auto;
  transform: translate(-50%, -50%);
  z-index: -1;
}

@media screen and (max-width: 480px) {
  .m-guide__bg {
    width: 100%;
  }
}



.m-guide__contents {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 95%;
  margin: 0 auto;
  column-gap: 40px;
}

@media screen and (max-width: 1080px) {
  .m-guide__contents {
    column-gap: 20px;
  }
}

@media screen and (max-width: 768px) {
  .m-guide__contents {
    grid-template-columns: 1fr;
    column-gap: 10px;
  }
}

.m-guide__content {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.m-guide__content-img {
  width: 90px;
  height: 90px;
  flex-shrink: 0;
}

@media screen and (max-width: 1080px) {
  .m-guide__content-img {
    width: 72px;
    height: 72px;
  }
}

@media screen and (max-width: 768px) {
  .m-guide__content-img {
    width: 48px;
    height: 48px;
  }
}

.m-guide__content-disc h3 {
  font-size: 22px;
  font-weight: 500;
}

@media screen and (max-width: 1080px) {
  .m-guide__content-disc h3 {
    font-size: 18px;
  }
}

@media screen and (max-width: 768px) {
  .m-guide__content-disc h3 {
    font-size: 16px;
  }
}

@media screen and (max-width: 480px) {
  .m-guide__content-disc h3 {
    font-size: 15px;
  }
}

.m-guide__content-disc p {
  margin-top: .5em;
  font-size: 15px;
}

@media screen and (max-width: 1080px) {
  .m-guide__content-disc p {
    font-size: 14px;
  }
}

@media screen and (max-width: 768px) {
  .m-guide__content-disc p {
    font-size: 13px;
  }
}

.m-guide__contents--blue {
  grid-template-columns: 1fr 1fr 1fr;
}

@media screen and (max-width: 480px) {
  .m-guide__contents--blue {
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }
}


.m-guide__contents--example {
  grid-template-columns: 1fr 1fr 1fr;
  width: fit-content;
}



@media screen and (max-width: 480px) {
  .m-guide__contents--example {
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }
}

.m-guide__contents--example .m-guide__content {
  flex-direction: column;
  text-align: center;
}



/* 見出しカラー */
.m-guide__contents--red h3 {
  color: #E87562;
}

.m-guide__contents--blue h3 {
  color: #69ACE3;
}

/* 利用対象者 */

.m-users__info {
  position: relative;
}

.m-users__content {
  background: #EEF4F9;
  padding: 40px 80px;
  border-radius: 10px;
}

@media screen and (max-width: 1080px) {
  .m-users__content {
    padding: 30px;
  }
}

@media screen and (max-width: 768px) {
  .m-users__content {
    padding: 30px;
  }
}

@media screen and (max-width: 480px) {
  .m-users__content {
    padding: 12px;
  }
}

.m-users__content--white-bg {
  background: #fff;
}

.m-users__content-img {
  width: 30%;

}

@media screen and (max-width: 1080px) {
  .m-users__content-img {
    width: 40%;
  }
}

@media screen and (max-width: 480px) {
  .m-users__content-img {
    margin: 0 0 0 auto;
  }
}

.m-users__content-wrap {
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 1080px) {
  .m-users__content-wrap {
    align-items: end;
    gap: 10px;
  }
}

@media screen and (max-width: 480px) {
  .m-users__content-wrap {
    flex-direction: column;
    gap: 20px;
  }
}

.m-users__content h3 {
  font-size: 38px;
  color: #E87562;
  font-weight: bold;
}

@media screen and (max-width: 1080px) {
  .m-users__content h3 {
    font-size: 28px;
  }
}

@media screen and (max-width: 768px) {
  .m-users__content h3 {
    font-size: 24px;
  }
}

.m-users__content ul {
  margin-top: 22px;
}

.m-users__content ul li {
  display: flex;
  align-items: baseline;
  line-height: 2;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0;
}

@media screen and (max-width: 768px) {
  .m-users__content ul li {
    font-size: 14px;
  }
}

@media screen and (max-width: 400px) {
  .m-users__content ul li {
    font-size: 13px;
  }
}

.m-users__content ul li::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #E87562;
  margin-right: 6px;
  transform: translateY(2px);
  flex-shrink: 0;

}

@media screen and (max-width: 768px) {
  .m-users__content ul li::before {
    width: 14px;
    height: 14px;
  }
}

.m-users__content ul li:nth-child(2)::before {
  background: #FABFCC;
}

.m-users__content ul li:nth-child(3)::before {
  background: #EFB23A;
}

.m-users__content ul li:nth-child(4)::before {
  background: #FDD23E;
}

.m-users__content ul li:nth-child(5)::before {
  background: #76D4E2;
}

.m-users__content ul li:nth-child(6)::before {
  background: #69ACE3;
}

.m-users__content span {
  display: block;
  font-weight: 400;
}

.m-users__content span:nth-of-type(1) {
  font-size: 18px;
}

@media screen and (max-width: 768px) {
  .m-users__content span:nth-of-type(1) {
    font-size: 14px;
  }
}

.m-users__content span:nth-of-type(2) {
  font-size: 15px;
  margin-top: 1em;
}


/* 重要説明事項 */
.m-important-disc {
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
  padding: 32px;
  margin-top: 140px;
  border-radius: 10px;
  border: 1px solid #E87562;
  border-left: 14px solid #E87562;
}

@media screen and (max-width: 1080px) {
  .m-important-disc {
    padding: 20px;
    margin-top: 96px;
    width: 60%;
  }
}

@media screen and (max-width: 480px) {
  .m-important-disc {
    width: 90%;
    margin-top: 64px;
  }
}

.m-important-disc a {
  display: flex;
  justify-content: space-between;
}

.m-important-disc__left {
  display: flex;
  align-items: center;
}

.m-important-disc__left p {
  font-size: 26px;
  color: #E87562;
  font-weight: bold;
  margin-left: 20px;
}

@media screen and (max-width: 1080px) {
  .m-important-disc__left p {
    font-size: 20px;
  }
}

@media screen and (max-width: 480px) {
  .m-important-disc__left p {
    font-size: 16px;
  }
}

.m-important-disc__img {
  width: 60px;
}

@media screen and (max-width: 1080px) {
  .m-important-disc__img {
    width: 48px;
  }
}

@media screen and (max-width: 480px) {
  .m-important-disc__img {
    width: 32px;
  }
}

.m-important-disc__arrow {
  width: 60px;
}

@media screen and (max-width: 1080px) {
  .m-important-disc__arrow {
    width: 48px;
  }
}

@media screen and (max-width: 480px) {
  .m-important-disc__arrow {
    width: 32px;
  }
}

/* ----------------------------------------
top-bg-wrap
---------------------------------------- */
@media screen and (max-width: 600px) {
  .top-bg-wrap {
    background: url(../img/top/bg_sp.png) center top / 100% auto;
  }
}



/* ----------------------------------------
top-mv
---------------------------------------- */
.top-mv {
  height: calc(100vh - 76px);
  background: url(../img/top/mv.jpg) 75% top / cover;
  position: relative;
}

.top-mv__fix-wrap {
  border-radius: 15px 0 0 15px;
  border-top: 4px solid #69ACE3;
  border-left: 4px solid #69ACE3;
  border-bottom: 4px solid #69ACE3;
  background: #F3FAFC;
  position: absolute;
  right: 0;
  top: 44px;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 50;
}

@media screen and (max-width: 480px) {
  .top-mv__fix-wrap {
    padding: 20px 15px;
    top: 43%;
    transform: translateY(-50%);
  }
}

.top-mv__fix-icon {
  width: 26px;
}

@media screen and (max-width: 480px) {
  .top-mv__fix-icon {
    width: 20px;
  }
}

.top-mv__fix-wrap p {
  writing-mode: vertical-lr;
  font-size: 16px;
}

@media screen and (max-width: 480px) {
  .top-mv__fix-wrap p {
    font-size: 12px;
  }
}

.top-mv__fix-wrap span {
  display: inline-block;
  padding: 4px 1px;
  background: #FFEAA3;
  font-size: 20px;
}

@media screen and (max-width: 480px) {
  .top-mv__fix-wrap span {
    font-size: 14px;
  }
}

.top-mv__illust {
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  overflow: hidden;
  pointer-events: none;
  padding-bottom: 5px;
}

@keyframes top-mv__illust {
  0% {
    left: 100%;
  }

  100% {
    left: -20%;
  }
}

.top-mv__turtle {
  position: absolute;
  left: 100%;
  bottom: -5px;
  width: 6%;
  animation: top-mv__illust 60s linear infinite;
}

.top-mv__car {
  position: absolute;
  left: 100%;
  bottom: -5px;
  width: 9%;
  animation: top-mv__illust 35s linear infinite;
}

.top-mv__content {
  color: #fff;
  width: 710px;
  background: url(../img/top/mv-bg.png) center / 100% 100%;
  padding: 100px 0 70px 100px;
  position: absolute;
  top: 40%;
  left: 0;
  transform: translateY(-50%);
}

@media screen and (max-width: 1080px) {
  .top-mv__content {
    top: 45%;
  }
}

@media screen and (max-width: 768px) {
  .top-mv__content {
    top: 30%;
  }
}

.top-mv__content ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}




.top-mv__content h2 {
  font-size: 43px;
  font-family: 'Noto Sans JP', sans-serif;
  margin: 0 0 16px;
}

.top-mv__content p {
  font-size: 28px;
  font-family: 'Zen Maru Gothic', sans-serif;
  letter-spacing: 0.18em;
  margin: 0 0 20px;
}

.top-mv__content ul {
  display: flex;
}

.top-mv__content ul:nth-of-type(2) {
  transform: translateX(68px);
}

.top-mv__content li {
  width: 134px;
  height: 134px;
  position: relative;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.top-mv__content li:not(:last-child) {
  margin: 0 30px 0 0;
}

.top-mv__content li::before {
  content: "";
  width: 100%;
  height: 100%;
  border: 1px solid #fff;
  border-radius: 50%;
  position: absolute;
  top: 6px;
  left: -6px;
  pointer-events: none;
}

.top-mv__content ul:nth-of-type(1) li:nth-child(1) {
  background: #f5b6c3;
}

.top-mv__content ul:nth-of-type(1) li:nth-child(2) {
  background: #93BFE3;
}

.top-mv__content ul:nth-of-type(1) li:nth-child(3) {
  background: #FACE8A;
}


.top-mv__content ul:nth-of-type(2) li:nth-child(1) {
  background: #AAD677;
}

.top-mv__content ul:nth-of-type(2) li:nth-child(2) {
  background: #76D4E2;
}

.top-mv__content ul:nth-of-type(2) li:nth-child(3) {
  background: #B1A0D8;
}


.top-mv-news {
  position: absolute;
  bottom: 18%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid #7BD2DE;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  width: 800px;
  max-width: calc(100% - 30px);
}

.top-mv-news__head {
  background: #7BD2DE;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 177px;
}

.top-mv-news__head h2 {
  font-size: 20px;
  margin: 0 20px 0 0;
}

.top-mv-news__body {
  width: calc(100% - 177px);
  position: relative;
}

.top-mv-news__body a {
  display: flex;
  align-items: center;
  height: 50px;
  padding: 0 60px 0 24px;
  font-size: 14px;
}

.top-mv-news__body span {
  display: block;
  margin: 0 18px 0 0;
  font-size: 16px;
  letter-spacing: 0.05em;
}

.slick-arrow {
  display: none !important;
}

.top-mv-news__prev,
.top-mv-news__next {
  width: 15px;
  height: 30px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}

.top-mv-news__prev {
  right: 35px;
}

.top-mv-news__next {
  right: 20px;
}

.top-mv-news__prev::before,
.top-mv-news__next::before {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  top: 30%;
  transform: rotate(45deg);
}

.top-mv-news__prev::before {
  border-bottom: 1px solid #1BB8CE;
  border-left: 1px solid #1BB8CE;
  left: 3px;
}

.top-mv-news__next::before {
  border-top: 1px solid #1BB8CE;
  border-right: 1px solid #1BB8CE;
  right: 3px;
}

.top-cta {
  padding-bottom: 100px;
}

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

  /* .top-mv {
    height: 550px;
  } */
  .top-mv-news {
    bottom: 10%;
  }

  .top-mv__content {
    transform: scale(.7);
    transform-origin: left top;
  }

  .top-mv-news__head {
    width: 140px;
  }

  .top-mv-news__head h2 {
    font-size: 16px;
    margin: 0 10px 0 0;
  }

  .top-mv-news__head p {
    font-size: 13px;
  }
}

@media screen and (max-width: 600px) {
  /* .top-mv {
    height: 400px;
    background-position: 75% 0%;
  } */

  .top-mv__content {
    transform: none;
    width: 310px;
    padding: 35px 0 15px 25px;
    top: auto;
    bottom: 6%;
  }

  .top-mv__content h2 {
    font-size: 20px;
    margin: 0 0 6px;
  }

  .top-mv__content p {
    font-size: 12px;
    margin: 0 0 8px;
  }

  .top-mv__content ul:nth-of-type(2) {
    transform: translateX(40px);
  }

  .top-mv__content li {
    width: 80px;
    height: 80px;
    font-size: 10px;
  }

  .top-mv__content li:not(:last-child) {
    margin: 0 20px 0 0;
  }

  .top-mv__content li::before {
    top: 4px;
    left: -4px;
  }

  .top-mv__turtle {
    width: 9%;
    bottom: -2px;
  }

  .top-mv__car {
    width: 12%;
    bottom: -2px;
  }

  .top-mv-news {
    bottom: auto;
    top: calc(100% + 20px);
    z-index: 1;
  }

  .top-mv-news__head {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 90px;
  }

  .top-mv-news__head h2 {
    margin: 0;
    line-height: 1;
  }

  .top-mv-news__head p {
    font-size: 11px;
  }

  .top-mv-news__body {
    width: calc(100% - 90px);
  }

  .top-mv-news__body a {
    padding: 5px 60px 5px 15px;
    display: block;
    height: auto;
  }

  .top-mv-news__body span {
    margin: 0 10px 0 0;
  }
}



/* ----------------------------------------
m-about
---------------------------------------- */


.m-about {
  padding-bottom: 100px;
  margin-top: 100px;
  position: relative;
}

.home .m-about {
  margin-top: 100px;
}

@media screen and (max-width: 480px) {
  .m-about {
    margin-top: 20px;
  }
}

.m-about__container {
  width: 90%;
  margin: 0 0 0 auto;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-between;
}

@media screen and (max-width: 1080px) {
  .m-about__container {
    width: 95%;
  }
}

.m-about__bg {
  width: 377px;
  position: absolute;
  top: 0%;
  left: 0;
  z-index: -1;
}

.m-about__image {
  /* position: absolute;
  right: 0;
  top: 0%; */
  width: 60%;
  height: auto;
  aspect-ratio: 1/ .6;
  text-align: left;
}

.m-about__image img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
  object-position: bottom;
}

.m-about__content {
  width: 48%;
}

@media screen and (max-width: 1080px) {
  .m-about__content {
    width: 60%;
  }
}

@media screen and (max-width: 480px) {
  .m-about__content {
    text-align: center;
  }
}

.m-about__head {
  font-size: 32px;
  font-weight: bold;
}

@media screen and (max-width: 1080px) {
  .m-about__head {
    font-size: 28px;
  }
}

@media screen and (max-width: 768px) {
  .m-about__head {
    font-size: 24px;
  }
}

@media screen and (max-width: 1080px) {
  .m-about__head {
    font-size: 18px;
  }
}

.m-about__head--translate {
  display: inline-block;
  transform: translateX(-.8em);
}

.m-about__text {
  font-size: 20px;
  line-height: 1.75;
}

@media screen and (max-width: 1080px) {
  .m-about__text {
    font-size: 18px;
  }
}

@media screen and (max-width: 768px) {
  .m-about__text {
    font-size: 14px;
  }
}

@media screen and (max-width: 480px) {
  .m-about__text {
    font-size: 15px;
  }
}

/* .m-about__conetnt p:nth-of-type(2) {
  font-size: 22px;
  font-weight: bold;
  margin: 0 0 15px;
  line-height: 1.75;
}

.m-about__conetnt p:nth-of-type(3) {
  margin: 0 0 15px;
  line-height: 1.75;
}

.m-about__conetnt p:nth-of-type(4) {
  font-size: 14px;
} */

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

@media screen and (max-width: 600px) {
  .m-about {
    padding: 40px 0 80px;
  }

  .m-about__container {
    width: auto;
    padding: 0 15px;
    margin: 0;
    flex-direction: column;
  }

  .m-about__head--translate {
    transform: translateX(-.5em);
  }

  .m-about__image {
    width: 100%;
    transform: none;
    margin: 0 0 20px;
  }


  .m-about__content {
    width: auto;
  }

}



/* ----------------------------------------
m-price
---------------------------------------- */
.m-price {
  position: relative;
}

.m-price__illust {
  position: absolute;
  top: 200px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 1080px;
}

.page-price {
  margin-top: 160px;
}

@media screen and (max-width: 480px) {
  .page-price {
    margin-top: 120px;
  }
}

.page-price .m-price__illust {
  top: 0;
}

.m-price__read {
  text-align: center;
  margin: 0 0 60px;
}

.m-price__attention {
  font-size: 13px;
  color: #E87562;
  padding: 20px 15px;
  border-radius: 10px;
  border: 1px solid #E87562;
  max-width: 770px;
  margin: 0 auto 50px;
}

.m-price__attention p {
  width: fit-content;
  margin: 0 auto;
}

.m-price .m-button-C {
  height: 64px;
}

@media screen and (max-width: 600px) {
  .m-price {
    padding: 80px 0;
    background: #F2FAFC;
  }

  .m-price__illust {
    display: none;
  }

  .m-price__read {
    margin: 0 0 40px;
  }
}



/* ----------------------------------------
top-message
---------------------------------------- */
.top-message {
  padding: 130px 0 160px;
  background: url(../img/top/message-bg.png) center / 100% 100%;
  position: relative;
  overflow: hidden;
}

@keyframes top-message__hart {
  0% {
    transform: translateY(0px);
  }

  25% {
    transform: translateY(-30px);
  }

  50% {
    transform: translateY(0px);
  }

  75% {
    transform: translateY(30px);
  }

  100% {
    transform: translateY(0px);
  }
}

.top-message__hart {
  position: absolute;
  pointer-events: none;
  animation: top-message__hart infinite linear 20s;
}

.top-message__hart._01 {
  width: 10%;
  top: 20%;
  right: 24%;
}

.top-message__hart._02 {
  width: 24%;
  top: 39%;
  right: -3%;
  animation-delay: -5s;
}

.top-message__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .top-message__inner {
    gap: 10px;
  }
}

@media screen and (max-width: 480px) {
  .top-message__inner {
    display: block;
  }
}

.top-message__image {
  width: 57%;
}

@media screen and (max-width: 1080px) {
  .top-message__image {
    width: 50%;
    margin: 0 auto 30px;
    max-width: 500px;
  }
}

@media screen and (max-width: 480px) {
  .top-message__image {
    width: auto;
  }
}

.top-message__content {
  width: 40%;
}

.top-message__content p:nth-of-type(2) {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.75;
  margin: 0 0 20px;
}

@media screen and (max-width: 768px) {
  .top-message__content p:nth-of-type(2) {
    font-size: 18px;
  }
}

.top-message__content p:nth-of-type(3) {
  line-height: 2;
}

@media screen and (max-width: 1000px) {
  .top-message {
    background: #f4fafc;
    padding: 80px 0;
  }

  .top-message__hart._01 {
    width: 17%;
    top: 53%;
    right: 24%;
  }

  .top-message__hart._02 {
    top: 56%;
  }



  .top-message__content {
    width: auto;
  }

  .top-message__content p:nth-of-type(2) {
    font-size: 18px;
  }
}




/* ----------------------------------------
top-service
---------------------------------------- */
.top-service {
  padding-top: 100px;
  /* background: url(../img/top/step-guide-bg.png) center / cover; */
  position: relative;
  overflow: hidden;
  padding-bottom: 160px;
}

@media screen and (max-width: 1080px) {
  .top-service {
    padding-bottom: 80px;
  }
}


.top-service__image {
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  z-index: -1;
  max-width: none;
}

.top-service__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 44px;
}

@media screen and (max-width: 1080px) {
  .top-service__list {
    gap: 20px;
  }
}

.top-service__item {
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.15);
}

.top-service__head {
  font-size: 18px;
  font-weight: 500;
  padding: 10px 0 8px 0;
}

.top-service__head span {
  font-size: 14px;
}

.top-service__container {
  padding-top: 54px;
}

.top-service__content {
  padding: 0 20px;
}

.top-service__content .m-button-C {
  height: 46px;
}

.top-service__content-text {
  text-align: center;
  padding-bottom: 18px;
  font-size: 13px;
}

.top-service__info {
  width: fit-content;
  margin: 0 auto;
  border-radius: 70px;
  border: 2px solid #E87562;
  padding: 20px;
  margin-top: 40px;
  background: #fff;
}

.top-service__info-text {
  margin-left: 1em;
  font-size: 12px;
  color: #E87562;
}

.top-service-btn--02 {
  background: #38A1DB url(../img/common/icon-arrow_A.png) right 20px center / 14px 8px no-repeat;
}

.top-service-btn--03 {
  background: #EFB23A url(../img/common/icon-arrow_A.png) right 20px center / 14px 8px no-repeat;
}

.top-service-btn--04 {
  background: #AAD677 url(../img/common/icon-arrow_A.png) right 20px center / 14px 8px no-repeat;
}

.top-service-btn--05 {
  background: #7BD2DE url(../img/common/icon-arrow_A.png) right 20px center / 14px 8px no-repeat;
}

.top-service-btn--06 {
  background: #A898CE url(../img/common/icon-arrow_A.png) right 20px center / 14px 8px no-repeat;
}

.top-service-area {
  position: relative;
}

.top-service__are-wrap {
  position: relative;
  background: #F3FAFC;
  border-radius: 5px;
  margin-top: 86px;
  padding-top: 38px;
  padding-bottom: 44px;
}

.top-service__area-text {
  position: relative;
  line-height: 1.75;
  z-index: 10;
}

.top-service__area-img {
  width: 18%;
  position: absolute;
  top: -10px;
  left: 0;
}

.top-service__area-img--02 {
  width: 30%;
  position: absolute;
  top: 30%;
  right: 0;
  z-index: 1;
}

@media screen and (max-width: 1080px) {
  .top-service__area-img--02 {
    transform: translateX(0);
  }
}

@media screen and (max-width: 600px) {
  .top-service {
    padding-bottom: 0px;
  }

  .top-service__list {
    grid-template-columns: 1fr;
  }

  .top-service__info {
    border-radius: 10px;
  }

  .top-service__info-text {
    margin-left: 0;
    margin-top: 8px;
  }

  .top-service__area-img {
    top: -20px;
  }

  .top-service__area-img--02 {
    width: 55%;
    top: 70%;
    transform: translateX(0%);
  }

  .top-service__area-text {
    font-size: 14px;
  }

}


#area {
  position: relative;
}

/* ----------------------------------------
top-news
---------------------------------------- */
.top-news {
  padding: 120px 0 0;
}

.page-news {
  padding: 100px 0;
}

/* ----------------------------------------
top-instagram
---------------------------------------- */
.top-instagram {
  padding-top: 124px;
  padding-bottom: 160px;
}

@media screen and (max-width: 480px) {
  .top-instagram {
    padding-bottom: 96px;
  }
}

.top-instagram__contents {
  background: #F7FBFF;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  padding: 50px 30px;
  border-radius: 20px;
}

@media screen and (max-width: 1080px) {
  .top-instagram__contents {
    align-items: center;
  }
}

#sb_instagram .sbi_photo img {
  border-radius: 20px;
}

@media screen and (max-width: 600px) {
  .top-instagram__contents {
    grid-template-columns: 1fr;
  }

  .top-instagram__content {
    margin-top: 40px;
  }
}


/* ----------------------------------------
page-company
---------------------------------------- */
.top-company-info {
  padding-bottom: 160px;
}

.top-company-info__container {
  width: 90%;
  display: flex;
  align-items: center;
  gap: 90px;
}

@media screen and (max-width: 1080px) {
  .top-company-info__container {
    gap: 20px;
  }
}

.top-company-info__img {
  width: 50vw;
}

.top-company-info__img img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 /.6;
}

.top-company-info__text {
  margin-bottom: 50px;
}

@media screen and (max-width: 600px) {
  .top-company-info__container {
    width: calc(100% - 30px);
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
    gap: 40px;
  }

  .top-company-info__content {
    width: 100%;
  }

  .top-company-info__img {
    width: 100%;
  }

  .top-company-info--btn {
    margin: 0 auto;
  }
}



/* ----------------------------------------
top-cta
---------------------------------------- */
.top-cta__container {
  padding-bottom: 50px;
}

.top-cta__wrap {
  margin-top: 80px;
}

.top-cta__info-wrap {
  position: relative;
  width: 100%;
  padding: 100px 0 100px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  background: url("../img/top/top-cta-bg.png") center center / contain no-repeat;
}

@media screen and (max-width: 1080px) {
  .top-cta__info-wrap {
    padding: 100px 20px 100px 0;
  }
}

@media screen and (max-width: 480px) {
  .top-cta__info-wrap {
    gap: 10px;
    padding: 80px 10px 60px 0px;
  }
}

.top-cta__info-wrap .m-cta__contents-br {
  display: block;
}

@media screen and (max-width: 1080px) {
  .top-cta__info-wrap .m-cta__contents-br {
    display: none;
  }
}



/* @media screen and (max-width: 1080px) {
  .top-cta__info-wrap {
    display: flex;
    flex-direction: column;

  }
} */

/* 
@media screen and (max-width: 768px) {
  .top-cta__info-wrap {
    padding: 60px 0;
    grid-row: 2;
  }
} */


.top-cta__info-wrap p {
  font-size: 17px;
  line-height: 1.75;
}

@media screen and (max-width: 768px) {
  .top-cta__info-wrap p {
    font-size: 15px;
  }
}

@media screen and (max-width: 480px) {
  .top-cta__info-wrap p {
    font-size: 13px;
  }
}

.top-cta__img {
  width: 25%;
  min-width: 64px;
  max-width: 130px;
}

/* .top-cta__img {
  max-width: 130px;
  position: absolute;
  left: 0;
  top: 15%;
} */


/* @media screen and (max-width: 1080px) {
  .top-cta__img {
    max-width: 120px;
    top: 80%;
  }
}

@media screen and (max-width: 480px) {
  .top-cta__img {
    width: 25%;
    top: 80%;
  }
} */




/* ここから下層ページ */


/* ----------------------------------------
private-ambulance
---------------------------------------- */


.psychiatric {
  padding: 100px 16px;
  background: #F4FAFC;
}


.psychiatric__head {
  font-size: 38px;
  text-align: center;
  color: #69ACE3;
  font-weight: 700;
  margin-bottom: 50px;
}

@media screen and (max-width: 1080px) {
  .psychiatric__head {
    font-size: 24px;
  }
}

.psychiatric__type-head {
  text-align: center;
  font-size: 30px;
  font-weight: bold;
  margin-top: 100px;
  margin-bottom: 20px;
}

@media screen and (max-width: 1080px) {
  .psychiatric__type-head {
    font-size: 24px;
  }
}

.psychiatric p {
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  line-height: 2;
}

@media screen and (max-width: 1080px) {
  .psychiatric p {
    font-size: 16px;
  }
}

@media screen and (max-width: 480px) {
  .psychiatric p {
    font-size: 14px;
  }
}

.psychiatric__grid-area {
  padding-top: 80px;
  padding-bottom: 140px;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 60px;
  grid-template-columns: repeat(4, 1fr);
}

@media screen and (max-width: 1080px) {
  .psychiatric__grid-area {
    gap: 30px;
  }
}

@media screen and (max-width: 480px) {
  .psychiatric__grid-area {
    grid-template-columns: 1fr 1fr;
  }
}

.psychiatric__grid-img {
  margin: 0 auto;
  width: 82px;
  height: auto;
  min-height: 82px;
}

.psychiatric__grid-item:nth-child(5) .psychiatric__grid-img {
  width: 118px;
}

.psychiatric__grid-item:nth-child(8) .psychiatric__grid-img {
  width: 120px;
}

.psychiatric__grid-item p {
  color: #69ACE3;
  margin-top: 15px;
  font-size: 20px;
  font-weight: bold;
}

@media screen and (max-width: 1080px) {
  .psychiatric__grid-item p {
    font-size: 18px;
  }
}

@media screen and (max-width: 768px) {
  .psychiatric__grid-item p {
    font-size: 15px;
  }
}

.psychiatric__grid-item span {
  font-size: 16px;
}




/* thoughts */
.thoughts {
  padding: 106px 0 96px 0;
}

.thoughts__text {
  font-size: 20px;
  font-weight: 300;
  line-height: 1.75;
}

@media screen and (max-width: 768px) {
  .thoughts__text {
    font-size: 16px;
  }
}

@media screen and (max-width: 480px) {
  .thoughts__text {
    font-size: 15px;
  }
}

/* equipment */
.equipment {
  padding-top: 84px;
  padding-bottom: 140px;
  background: #F4FAFC;
}


.equipment__disc {
  line-height: 1.75;
  font-size: 18px;
  font-weight: 400;
}

@media screen and (max-width: 768px) {
  .equipment__disc {
    font-size: 15px;
  }
}

.equipment__cat-list {
  display: flex;
  margin-top: 70px;
  gap: 52px;
  flex-wrap: wrap;
  justify-content: center;
}

.equipment__cat-item a {
  display: flex;
  align-items: center;
  gap: 8px;
}

.equipment__cat-ttl {
  font-size: 30px;
  color: #69ACE3;
  font-weight: bold;
}

@media screen and (max-width: 1080px) {
  .equipment__cat-ttl {
    font-size: 24px;
  }
}

@media screen and (max-width: 768px) {
  .equipment__cat-ttl {
    font-size: 20px;
  }
}

@media screen and (max-width: 480px) {
  .equipment__cat-ttl {
    font-size: 18px;
  }
}

.equipment__cat-arrow {
  width: 32px;
  height: 32px;
}

@media screen and (max-width: 768px) {
  .equipment__cat-arrow {
    width: 24px;
    height: 24px;
  }
}


/* equipment__info */

.equipment-info {
  padding-top: 96px;
}

@media screen and (max-width: 480px) {
  .equipment-info {
    padding-top: 40px;
  }
}

.equipment-info__head {
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  color: #fff;
  background: #69ACE3;
  border-radius: 50px;
  line-height: 1.75;
}

@media screen and (max-width: 1080px) {
  .equipment-info__head {
    font-size: 24px;
  }
}

@media screen and (max-width: 768px) {
  .equipment-info__head {
    font-size: 20px;
  }
}

@media screen and (max-width: 480px) {
  .equipment-info__head {
    font-size: 18px;
  }
}

.equipment-info__wrap {
  margin-top: 64px;
  display: grid;
  gap: 52px;
  grid-template-columns: 1fr 1fr;
}

@media screen and (max-width: 1080px) {
  .equipment-info__wrap {
    gap: 30px;
  }
}

@media screen and (max-width: 768px) {
  .equipment-info__wrap {
    gap: 20px;
  }
}

@media screen and (max-width: 480px) {
  .equipment-info__wrap {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

.equipment-info__wrap--3col {
  grid-template-columns: repeat(3, 1fr);
}

@media screen and (max-width: 480px) {
  .equipment-info__wrap--3col {
    grid-template-columns: 1fr 1fr;
  }
}

.equipment-info__content {
  position: relative;
}

@media screen and (max-width: 480px) {
  .equipment-info__content {
    margin-bottom: 40px;
  }
}

.equipment-info__content-ttl {
  margin-top: 18px;
  margin-bottom: 15px;
  font-size: 24px;
  font-weight: bold;
  color: #69ACE3;
}

@media screen and (max-width: 768px) {
  .equipment-info__content-ttl {
    font-size: 18px;
  }
}

.equipment-info__wrap--3col .equipment-info__content-ttl {
  font-size: 22px;
}

@media screen and (max-width: 768px) {
  .equipment-info__wrap--3col .equipment-info__content-ttl {
    font-size: 16px;
  }
}


.equipment-info__content-text {
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-weight: 500;
  margin-top: 8px;
  line-height: 1.75;
  letter-spacing: 0em;
}

@media screen and (max-width: 768px) {
  .equipment-info__content-text {
    font-size: 14px;
  }
}

@media screen and (max-width: 480px) {
  .equipment-info__content-text {
    font-size: 13px;
  }
}

.equipment-info__content-text::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #69ACE3;
  flex-shrink: 0;
  transform: translateY(1px);
}

.equipment-info__content-img {
  margin: 0 auto;
  max-width: 206px;
  height: auto;
}

@media screen and (max-width: 1080px) {
  .equipment-info__content-img {
    max-width: 160px;
  }
}

@media screen and (max-width: 480px) {
  .equipment-info__content-img {
    max-width: 90px;
    margin: 0 0 0 auto;

  }
}

.equipment-info__content-img--absolute {
  position: absolute;
  max-width: 220px;
  height: auto;
  top: 100%;
  left: 0;
  transform: translateY(15%);
  z-index: 10;
}

@media screen and (max-width: 480px) {
  .equipment-info__content-img--absolute {
    max-width: 110px;
  }
}

.equipment-info__content__important {
  font-size: 14px;
  display: inline-block;
  margin-top: 1em;
  padding-left: 16px;
  color: #C44343;
}


/* confirm */
@media screen and (max-width: 1080px) {
  .confirm__center {
    text-align: center;
  }
}

.confirm {
  position: relative;
  background: #F3FAFC;
}

.confirm__content-wrap {
  margin-top: 50px;
  display: grid;
  gap: 52px;
  align-items: baseline;
  grid-template-columns: 1fr 1fr;
}

@media screen and (max-width: 768px) {
  .confirm__content-wrap {
    grid-template-columns: 1fr;
    margin-top: 10px;
    gap: 0;
  }
}

.confirm__content {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 52px;
}


.confirm__num-img {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
}

@media screen and (max-width: 480px) {
  .confirm__num-img {
    width: 40px;
    height: 40px;
  }
}

.confirm__content-ttl {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 15px;
}

@media screen and (max-width: 1080px) {
  .confirm__content-ttl {
    font-size: 18px;
  }
}

@media screen and (max-width: 768px) {
  .confirm__content-ttl {
    font-size: 16px;
  }
}

.confirm__content-text {
  font-size: 15px;
}

@media screen and (max-width: 480px) {
  .confirm__content-text {
    font-size: 14px;
  }
}

.confirm__bg--top {
  position: relative;
  transform: translateY(1%);
  z-index: -1;
}

.confirm__bg--btm {
  position: absolute;
  top: 99%;
  left: 0;
  z-index: -1;
}


.group-home-mainV__hum {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.m-hum-img {
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  position: relative;
}

.m-hum-img__text-wrap {
  position: absolute;
  top: 0%;
  left: 0;
  z-index: 10;
  transform: translateY(50%);
}

.bout__hum-wrap .m-hum-img {
  margin: 0;
  margin-top: 46px;


}

.m-hum-img__text-head {
  text-align: left;
}

@media screen and (max-width: 480px) {
  .m-hum-img__text-sub {
    font-size: 12px;
  }
}

/* ----------------------------------------
nursing-care-taxi
---------------------------------------- */
.leaflet {
  padding-top: 110px;
}

.leaflet__wrap {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 32px;
}

@media screen and (max-width: 768px) {
  .leaflet__wrap {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.leaflet p {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
}

.leaflet__img-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

@media screen and (max-width: 768px) {
  .leaflet--btn-pc {
    display: none;
  }
}

.leaflet--btn-sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .leaflet--btn-sp {
    display: flex;
  }
}

/* vehicle-introduction */
.vehicle-introduction {
  padding-top: 140px;
}

.vehicle-introduction__contents {
  padding-bottom: 100px;
  position: relative;
  z-index: -10;
  margin-top: 80px;
}

@media screen and (max-width: 480px) {
  .vehicle-introduction__contents {
    padding-bottom: 60px;
  }
}

.vehicle-introduction__contents::before {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 25%;
  background: #fff;
  z-index: -1;
  top: 0;
  left: 0;
}

.vehicle-introduction__contents:nth-of-type(odd) {
  background-color: #F1FCE5;
}

.vehicle-introduction__contents:nth-of-type(even) {
  background-color: #FDF1D8;
}

.vehicle-introduction__container {
  display: flex;
  align-items: center;
  color: #fff;
  border-radius: 10px;
}

@media screen and (max-width: 480px) {
  .vehicle-introduction__container {
    flex-direction: column-reverse;
  }
}

.vehicle-introduction__contents:nth-of-type(even) .vehicle-introduction__container {
  flex-direction: row-reverse;
}

@media screen and (max-width: 480px) {
  .vehicle-introduction__contents:nth-of-type(even) .vehicle-introduction__container {
    flex-direction: column-reverse;
  }

}

.vehicle-introduction__contents:nth-of-type(odd) .vehicle-introduction__container {
  background: #AAD677;
}

.vehicle-introduction__contents:nth-of-type(even) .vehicle-introduction__container {
  background: #EFB23A;
}


.vehicle-introduction__content-left {
  width: 42%;
  height: 100%;
  flex-shrink: 0;
}

@media screen and (max-width: 480px) {
  .vehicle-introduction__content-left {
    width: 100%;
    padding: 15px;
  }
}

.vehicle-introduction__content {
  width: fit-content;
  max-width: 80%;
  margin: 0 auto;
  transform: translateY(-20px);
}

@media screen and (max-width: 1080px) {
  .vehicle-introduction__content {
    max-width: 90%;
  }
}

@media screen and (max-width: 480px) {
  .vehicle-introduction__content {
    width: 100%;
  }
}


@media screen and (max-width: 768px) {
  .vehicle-introduction__content {
    transform: translateY(0);
  }
}

.vehicle-introduction__content-ttl {
  font-size: 32px;
  font-weight: bold;
}

@media screen and (max-width: 1080px) {
  .vehicle-introduction__content-ttl {
    font-size: 28px;
  }
}

@media screen and (max-width: 768px) {
  .vehicle-introduction__content-ttl {
    font-size: 20px;
  }
}

@media screen and (max-width: 480px) {
  .vehicle-introduction__content-ttl {
    font-size: 20px;
  }
}

@media screen and (max-width: 768px) {
  .vehicle-introduction__content-text {
    font-size: 15px;
  }
}

.vehicle-introduction__content-type {
  font-size: 18px;
  font-weight: bold;
  margin: 20px 0 32px 0;
}

@media screen and (max-width: 1080px) {
  .vehicle-introduction__content-type {
    margin: 10px 0 16px 0;
  }
}

@media screen and (max-width: 768px) {
  .vehicle-introduction__content-type {
    font-size: 16px;
  }
}

.vehicle-introduction__content-thumb {
  width: 100%;
}

@media screen and (max-width: 480px) {
  .vehicle-introduction__content-thumb img {
    border-radius: 10px 10px 0 0;
  }
}


.vehicle-introduction__img-wrap {
  transform: translateY(-40px);
  width: 90%;
  margin: 0 auto;
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(3, 1fr);
}

@media screen and (max-width: 768px) {
  .vehicle-introduction__img-wrap {
    transform: translateY(-10px);
  }
}

@media screen and (max-width: 480px) {
  .vehicle-introduction__img-wrap {
    margin-top: 20px;
    grid-template-columns: 1fr 1fr;
    transform: translateY(0px);
    gap: 10px;
  }
}





/* ----------------------------------------
home-nursing
---------------------------------------- */

.nursing-about {
  position: relative;
  margin-top: 120px;
}

@media screen and (max-width: 480px) {
  .nursing-about {
    margin-top: 96px;
  }
}


.nursing-about__accent-bird {
  position: absolute;
  width: 100px;
  height: auto;
  z-index: -1;
}

@media screen and (max-width: 480px) {
  .nursing-about__accent-bird {
    width: 80px;
  }
}

.nursing-about__accent-bird--01 {
  top: 10%;
  right: 20%;
}

@media screen and (max-width: 1080px) {
  .nursing-about__accent-bird--01 {
    top: 5%;
    right: 10%;
  }
}

@media screen and (max-width: 480px) {
  .nursing-about__accent-bird--01 {
    top: -10%;
    right: 1%;
  }
}

.nursing-about__accent-bird--02 {
  top: 80%;
  left: 15%;
}

@media screen and (max-width: 1080px) {
  .nursing-about__accent-bird--02 {
    top: 70%;
    left: 5%;
  }
}

@media screen and (max-width: 480px) {
  .nursing-about__accent-bird--02 {
    top: 75%;
    left: 1%;
  }
}

.nursing-about__head {
  text-align: center;
  font-size: 38px;
  font-weight: bold;
}

@media screen and (max-width: 1080px) {
  .nursing-about__head {
    font-size: 30px;
  }
}

@media screen and (max-width: 768px) {
  .nursing-about__head {
    font-size: 24px;
  }
}

.nursing-about__copy {
  font-size: 32px;
  text-align: center;
  font-weight: bold;
}

@media screen and (max-width: 1080px) {
  .nursing-about__copy {
    font-size: 28px;
  }
}

@media screen and (max-width: 768px) {
  .nursing-about__copy {
    font-size: 20px;
  }
}

@media screen and (max-width: 480px) {
  .nursing-about__copy {
    font-size: 18px;
  }
}

.nursing-about__text {
  text-align: center;
  margin-top: 42px;
  font-size: 20px;
}

@media screen and (max-width: 1080px) {
  .nursing-about__text {
    font-size: 18px;
  }
}

@media screen and (max-width: 768px) {
  .nursing-about__text {
    font-size: 15px;
  }
}

@media screen and (max-width: 480px) {
  .nursing-about__text {
    font-size: 14px;
  }
}

.nursing-about__bg {
  position: absolute;
  width: 65%;
  height: auto;
  top: 65%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.nursing-about__area-img {
  padding-top: 64px;
  width: 60%;
  margin: 0 auto;
}

@media screen and (max-width: 480px) {
  .nursing-about__area-img {
    width: 85%;
  }
}

.nursing-about__message {
  color: #E87562;
  text-align: center;
  border: 1px solid #E87562;
  border-radius: 50px;
  font-size: 15px;
  width: fit-content;
  padding: 1em 2em;
  margin: 0 auto;
  margin-top: 64px;
}

@media screen and (max-width: 768px) {
  .nursing-about__message {
    font-size: 14px;
  }
}

.nursing-about__accent {
  position: absolute;
}

.nursing-about__accent--01 {
  width: 18%;
  max-width: 300px;
  height: auto;
  top: 0;
  left: 0;
  z-index: -1;
}

@media screen and (max-width: 480px) {
  .nursing-about__accent--01 {
    width: 15%;
    transform: translateY(-70%);
  }
}

.nursing-about__accent--02 {
  width: 15%;
  max-width: 300px;
  height: auto;
  top: 20%;
  right: 0;
  z-index: -1;
}


@media screen and (max-width: 480px) {
  .nursing-about__accent--02 {
    transform: translateY(100%);
    width: 14%;
  }
}





/* nursing-info */
.nursing-info {
  margin-top: 120px;
  padding-top: 120px;
  position: relative;
  background: #F3FAFC;
}

@media screen and (max-width: 480px) {
  .nursing-info {
    margin-top: 80px;
    padding-top: 60px;
  }
}

.nursing-info__bg-top {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;

}


.nursing-info__contents {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-top: 100px;
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 1080px) {
  .nursing-info__contents {
    gap: 20px;
  }
}

@media screen and (max-width: 480px) {
  .nursing-info__contents {
    flex-direction: column-reverse;
    margin-top: 40px;
  }
}

.nursing-info__contents:nth-of-type(2) {
  flex-direction: row-reverse;
}

@media screen and (max-width: 480px) {
  .nursing-info__contents:nth-of-type(2) {
    flex-direction: column-reverse;
  }
}

.nursing-info__content {
  width: fit-content;
  flex-shrink: 0;
}

@media screen and (max-width: 480px) {
  .nursing-info__content {
    width: 100%;
  }
}

.nursing-info__content-img {
  width: auto;
}

.nursing-info__head {
  color: #9CD55B;
  font-size: 34px;
  font-weight: bold;
}

@media screen and (max-width: 1080px) {
  .nursing-info__head {
    font-size: 28px;
  }
}

@media screen and (max-width: 768px) {
  .nursing-info__head {
    font-size: 24px;
  }
}

@media screen and (max-width: 480px) {
  .nursing-info__head {
    font-size: 20px;
  }
}

.nursing-info__disc {
  font-size: 20px;
  margin-top: 30px;
}

@media screen and (max-width: 1080px) {
  .nursing-info__disc {
    font-size: 18px;
  }
}

@media screen and (max-width: 768px) {
  .nursing-info__disc {
    font-size: 16px;
  }
}

@media screen and (max-width: 480px) {
  .nursing-info__disc {
    margin-top: 15px;
    font-size: 15px;
  }
}

/* nursing-place */
.nursing-place {
  position: relative;
}


.nursing-place__info {
  text-align: center;
  font-size: 20px;
  margin-top: 40px;
}

@media screen and (max-width: 1080px) {
  .nursing-place__info {
    font-size: 18px;
  }
}

@media screen and (max-width: 768px) {
  .nursing-place__info {
    font-size: 15px;
  }
}

@media screen and (max-width: 480px) {
  .nursing-place__info {
    font-size: 14px;

  }
}

.nursing-place__wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-top: 64px;
}

@media screen and (max-width: 1080px) {
  .nursing-place__wrap {
    gap: 20px;
  }
}


@media screen and (max-width: 480px) {
  .nursing-place__wrap {
    grid-template-columns: 1fr;
  }
}


.nursing-place__head {
  text-align: center;
  font-size: 20px;
  color: #EFB23A;
  font-weight: bold;
}

@media screen and (max-width: 1080px) {
  .nursing-place__head {
    font-size: 18px;
  }
}

@media screen and (max-width: 768px) {
  .nursing-place__head {
    font-size: 16px;
  }
}

@media screen and (max-width: 480px) {
  .nursing-place__content {
    margin-top: 60px;
  }
}

.nursing-place__content:nth-of-type(2) .nursing-place__head {
  color: #EE869A;
}

.nursing-place__head span {
  font-size: 34px;
  display: block;
}

@media screen and (max-width: 1080px) {
  .nursing-place__head span {
    font-size: 28px;
  }
}

@media screen and (max-width: 768px) {
  .nursing-place__head span {
    font-size: 22px;
  }
}

.nursing-place__img {
  margin-top: 18px;
}


.nursing-place__head-wrap {
  display: flex;
  gap: 15px;
  margin-top: 28px;
}

@media screen and (max-width: 768px) {
  .nursing-place__head-wrap {
    gap: 10px;
  }
}

.nursing-place__point {
  border-radius: 10px;
  background: #EFB23A;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nursing-place__content:nth-of-type(2) .nursing-place__point {
  background-color: #EE869A;
}

.nursing-place__point-text span {
  font-size: 18px;
  color: #ED93A5;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .nursing-place__point-text span {
    font-size: 15px;
  }
}

.nursing-place__point span {
  font-size: 18px;
  font-weight: 500;
  padding: 0 .25em;
  flex-shrink: 0;
}

@media screen and (max-width: 768px) {
  .nursing-place__point span {
    font-size: 14px;
  }
}

.nursing-place__point-text {
  font-size: 17px;
}

@media screen and (max-width: 768px) {
  .nursing-place__point-text {
    font-size: 14px;
  }
}


.nursing-place__content-disc {
  margin-top: 15px;
  font-size: 15px;
}

@media screen and (min-width: 1020px) {
  .nursing-place__content-cta--lg-only {
    transform: translateY(1em);
  }

}



@media screen and (max-width: 768px) {
  .nursing-place__content-disc {
    font-size: 14px;
  }
}

.nursing-place__img-wrap {
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
  margin-top: 30px;
}



.nursing-place__content-cta {
  margin-top: 70px;
}

@media screen and (max-width: 480px) {
  .nursing-place__content-cta {
    margin-top: 50px;
  }
}

.nursing-place__content-cta h4 {
  font-size: 18px;
  font-weight: 500;
}

.nursing-place__content:nth-of-type(1) .nursing-place__content-cta {
  background: #FFF8EB;
  border-radius: 120px;
  padding: 40px 0;
}

.nursing-place__content:nth-of-type(2) .nursing-place__content-cta {
  background: #FFF8FA;
  border-radius: 120px;
  padding: 40px 0;
}


.nursing-place__content-cta--address {
  text-align: center;
  font-size: 18px;
  margin-top: 8px;
}

@media screen and (max-width: 1080px) {
  .nursing-place__content-cta--address {
    font-size: 16px;
  }
}

@media screen and (max-width: 768px) {
  .nursing-place__content-cta--address {
    font-size: 14px;
  }
}

@media screen and (max-width: 480px) {
  .nursing-place__content-cta .m-cta__content {
    margin-top: 0;
  }

}




/* ----------------------------------------
group-home
---------------------------------------- */

.group-home-mainV {
  background: #F3FAFC;
  padding: 80px 0;
  position: relative;
}

@media screen and (max-width: 768px) {
  .group-home-mainV {
    padding: 60px 0;
  }
}

.group-home-mainV__contents {
  width: 50%;

}

@media screen and (max-width: 480px) {
  .group-home-mainV__contents {
    width: 90%;
    margin: 0 auto;
  }
}

.group-home-mainV__ttl {
  text-align: center;
}


.group-home-mainV__logo {
  width: 25%;
  margin: 0 auto;
}


.group-home-mainV__head {
  font-size: 38px;
  font-weight: bold;
  margin-top: 30px;
  color: #76D4E2;
}

@media screen and (max-width: 1080px) {
  .group-home-mainV__head {
    font-size: 28px;
  }
}

.group-home-mainV__head-sm {
  font-size: 20px;
  font-weight: bold;
  color: #76D4E2;
}


.group-home-mainV__message {
  pointer-events: none;
  max-width: 456px;
  margin: 0 auto;
  margin-top: 22px;
}


.group-home-mainV__img01 {
  position: absolute;
  width: 40%;
  max-width: 456px;
  height: auto;
  top: 100px;
  right: 10%;
}

@media screen and (max-width: 1080px) {
  .group-home-mainV__img01 {
    width: 30%;
  }
}

@media screen and (max-width: 480px) {
  .group-home-mainV__img01 {
    width: 20%;
    top: 20px;
    right: initial;
    left: 15px;
  }
}

.group-home-mainV__img02 {
  width: 263px;
  position: absolute;
  top: 65%;
  left: 55%;
  transform: translateY(-25%);
}

@media screen and (max-width: 1080px) {
  .group-home-mainV__img02 {
    max-width: 200px;
  }
}

@media screen and (max-width: 768px) {
  .group-home-mainV__img02 {
    max-width: 160px;
  }
}

@media screen and (max-width: 480px) {
  .group-home-mainV__img02 {
    top: 90%;
    left: initial;
    right: 10px;
    width: 100px;
  }
}

.group-message {
  padding: 100px 0;
  position: relative;
}

/* アクセント */
.group-message__img {
  width: 100px;
  position: absolute;
}

.group-message__img--01 {
  width: 120px;
  top: 100px;
  left: 10%;
}

@media screen and (max-width: 1080px) {
  .group-message__img--01 {
    width: 90px;
  }
}

@media screen and (max-width: 480px) {
  .group-message__img--01 {
    width: 72px;
    top: 20px;
    left: 10px;
  }
}

.group-message__img--02 {
  width: 110px;
  top: 50%;
  right: 10%;
}

@media screen and (max-width: 1080px) {
  .group-message__img--02 {
    width: 90px;
  }
}

@media screen and (max-width: 480px) {
  .group-message__img--02 {
    top: 80%;
  }
}

.group-message__img--03 {
  width: 144px;
  top: 80px;
  right: 15%;
}

@media screen and (max-width: 1080px) {
  .group-message__img--03 {
    width: 100px;
    right: 10%;
  }
}

@media screen and (max-width: 480px) {
  .group-message__img--03 {
    width: 60px;
    top: 30%;
  }
}

.group-message__img--04 {
  width: 220px;
  top: 50%;
  left: 10%;
}

@media screen and (max-width: 1080px) {
  .group-message__img--04 {
    width: 130px;
  }
}

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

  .group-message__img--04 {
    width: 100px;
  }
}

@media screen and (max-width: 480px) {
  .group-message__img--04 {
    width: 80px;
    top: 75%;
  }
}

.group-message__img--05 {
  width: 220px;
  bottom: -10%;
  right: 10%;
}

@media screen and (max-width: 1080px) {
  .group-message__img--05 {
    width: 140px;
  }
}

@media screen and (max-width: 768px) {
  .group-message__img--05 {
    width: 100px;
  }
}

@media screen and (max-width: 480px) {
  .group-message__img--05 {
    display: none;
  }
}

.group-message__img--06 {
  width: 90px;
  top: 20%;
  left: 15%;
  position: absolute;
  animation: float06 3s ease-in-out infinite;
  animation-delay: 0s;
}

@keyframes float06 {
  0% {
    transform: translateY(10px);
  }

  50% {
    transform: translate(-10px, -10px);
  }

  100% {
    transform: translateY(10px);
  }
}

@media screen and (max-width: 1080px) {
  .group-message__img--06 {
    width: 100px;
  }
}

@media screen and (max-width: 480px) {
  .group-message__img--06 {
    width: 80px;
  }
}

.group-message__img--07 {
  width: 160px;
  top: -10%;
  right: 15%;
  position: absolute;
  animation: float 4s ease-in-out infinite;
  animation-delay: 0s;
}

@keyframes float {
  0% {
    transform: translateY(20px) translateX(0);
  }

  50% {
    transform: translateY(-10px) translateX(10px);
  }

  100% {
    transform: translateY(20px) translateX(0);
  }
}

@media screen and (max-width: 1080px) {
  .group-message__img--07 {
    width: 120px;
  }
}

@media screen and (max-width: 480px) {
  .group-message__img--07 {
    display: none;
  }
}

.group-message__img--08 {
  width: 90px;
  top: 60%;
  right: 20%;
  position: absolute;
  animation: float 5s ease-in-out infinite;
  animation-delay: 0s;
}

@keyframes float {
  0% {
    transform: translateY(20px) translateX(0);
  }

  50% {
    transform: translateY(-10px) translateX(10px);
  }

  100% {
    transform: translateY(20px) translateX(0);
  }
}

@media screen and (max-width: 1080px) {
  .group-message__img--08 {
    width: 80px;
  }
}

@media screen and (max-width: 480px) {
  .group-message__img--08 {
    width: 60px;
  }
}

.group-message__img--09 {
  width: 160px;
  bottom: 10%;
  left: 0%;
  position: absolute;
  animation: float 6s ease-in-out infinite;
  animation-delay: 0s;
}

@keyframes float {
  0% {
    transform: translateY(20px) translateX(0);
  }

  50% {
    transform: translateY(-10px) translateX(10px);
  }

  100% {
    transform: translateY(20px) translateX(0);
  }
}

@media screen and (max-width: 1080px) {
  .group-message__img--09 {
    width: 120px;
  }
}

@media screen and (max-width: 480px) {
  .group-message__img--09 {
    width: 100px;
  }
}












.group-message__wrap {
  padding: 0 100px 100px 100px;
}

@media screen and (max-width: 480px) {
  .group-message__wrap {
    padding: 0 0 60px 0;
  }
}

.group-message-head {
  max-width: 518px;
  height: auto;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .group-message-head {
    width: 50%;
  }
}

@media screen and (max-width: 480px) {
  .group-message-head {
    width: 80%;
  }
}

.group-message-img {
  width: 50%;
  max-width: 500px;
  margin: 0 auto;
  margin-top: 20px;
}



.group-message__text {
  position: relative;
  width: fit-content;
  font-size: 18px;
  font-weight: 500;
  margin: 0 auto;
  margin-top: 10px;
  padding: 0 10px;
  text-align: center;
  background: #fff;
  transform: translateY(-200%);
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .group-message__text {
    font-size: 16px;
  }
}

@media screen and (max-width: 480px) {
  .group-message__text {
    transform: initial;
    font-size: 14px;
  }
}

.group-message__bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

.group-message__bg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}













.group-step {
  padding-bottom: 90px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .group-step {
    padding-bottom: 60px;
  }
}

@media screen and (max-width: 480px) {
  .group-step {
    padding-top: 60px;
  }


  .group-step .m-title-A,
  .group-step .m-title-B {
    text-align: center;
  }
}

.group-step::before {
  content: "";
  position: absolute;
  top: 2em;
  right: 0;
  display: block;
  width: 76%;
  border-radius: 20px 0 0 20px;
  /* width: calc(90% - 200px); */
  height: 100%;
  background: #F3FAFC;
  z-index: -1;
}

.group-step__accent {
  position: absolute;
  width: 32px;
  height: auto;
}

@media screen and (max-width: 480px) {
  .group-step__accent {
    width: 24px;
  }
}

.group-step__accent--01 {
  top: 50px;
  left: 40%;
}

@media screen and (max-width: 480px) {
  .group-step__accent--01 {
    top: 40px;
    left: 5%;
  }
}

.group-step__accent--02 {
  top: 100%;
  left: 30%;
}


.group-step__accent--03 {
  bottom: 0;
  right: 10%;
}

@media screen and (max-width: 480px) {
  .group-step__accent--03 {
    bottom: 10%;

  }
}

.group-step__contents-wrap {
  display: flex;
  align-items: center;
  gap: 10px;

}

@media screen and (max-width: 480px) {
  .group-step__contents-wrap {
    flex-wrap: wrap;
    gap: 30px 10px;
    justify-content: space-between;
    margin-top: 40px;
  }
}

.group-step__content {
  position: relative;


}

@media screen and (max-width: 480px) {
  .group-step__content {
    width: calc(50% - 30px);
  }
}


.group-step__content-text {
  position: absolute;
  text-align: center;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.group-step__content-text span {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
  width: fit-content;
  margin: 0 auto;
  font-size: 40px;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
}

@media screen and (max-width: 1080px) {
  .group-step__content-text span {
    font-size: 28px;
  }
}

@media screen and (max-width: 768px) {
  .group-step__content-text span {
    font-size: 24px;
  }
}

.group-step__content-text p {
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
  white-space: nowrap;
  margin-top: 10px;
}

@media screen and (max-width: 768px) {
  .group-step__content-text p {
    font-size: 16px;
  }
}

.triangle-right {
  width: 30px;
  height: auto;
}

@media screen and (max-width: 480px) {
  .triangle-right {
    width: 24px;
  }
}

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

  .group-step__contents-wrap>.triangle-right:nth-child(4),
  .group-step__contents-wrap>.triangle-right:nth-child(8) {
    display: none;

  }
}

.group-step__content-text span::after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  margin-top: 4px;
}

/* 番号別カラー */
.group-step__contents-wrap .group-step__content:nth-child(1) .group-step__content-text span::after {
  background: #E87562;
}

.group-step__contents-wrap .group-step__content:nth-child(3) .group-step__content-text span::after {
  background: #ED93A5;
}

.group-step__contents-wrap .group-step__content:nth-child(5) .group-step__content-text span::after {
  background: #76D4E2;
}

.group-step__contents-wrap .group-step__content:nth-child(7) .group-step__content-text span::after {
  background: #EFB23A;
}

.group-step__contents-wrap .group-step__content:nth-child(9) .group-step__content-text span::after {
  background: #A898CE;
}




.group-price-wrap {
  padding-top: 100px;
}


.group-price__img {
  aspect-ratio: 1/.3;
}

@media screen and (max-width: 480px) {
  .group-price__img {
    aspect-ratio: 1/.6;
  }
}


.group-price__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.group-price {
  background: #fff;
  border-radius: 20px 20px 0 0;
  transform: translateY(-100%);
  padding: 0 !important;
}

@media screen and (max-width: 480px) {
  .group-price {
    transform: translateY(-80%);
  }
}

.group-price .m-price__illust {
  width: 96%;
  top: 30px !important;
}

.group-price__container {
  padding-top: 30px;
}



.group-price__table {
  text-align: center;
  max-width: 836px;
  margin: 0 auto;
}

@media screen and (max-width: 1080px) {
  .group-price__table {
    width: 80%;
  }
}

@media screen and (max-width: 480px) {
  .group-price__table {
    width: 100%;
  }
}

.group-price__table .wp-block-table {
  border-radius: 20px;
  border-color: transparent !important;
}

.wp-block-table th,
.wp-block-table td,
.wp-block-table thead {
  border: 1px solid transparent !important;
  /* ← お好みの色に変更 */
}

.group-price__table01 tbody tr:nth-child(even) {
  background: #FFEACB;
}


.group-price__table01 td:nth-child(2),
.group-price__table01 th:nth-child(2) {
  border-left: 1.5px solid #FDEBAE !important;
  /* 区切り線の色と太さ */
}

.group-price__table02 td:nth-child(2),
.group-price__table02 th:nth-child(2) {
  border-left: 1.5px solid #E2F5CC !important;
  /* 区切り線の色と太さ */
}

.group-price__table01 thead {
  background: #F6AD3C;
}

.group-price__table02 thead {
  background: #AAD677;
}

.group-price__table th {
  text-align: center;
  color: #fff;
  font-weight: 500;
}

.group-price__table-head {
  font-size: 28px;
  text-align: center;
  font-weight: bold;
  margin-bottom: 10px;
}

@media screen and (max-width: 480px) {
  .group-price__table-head {
    font-size: 22px;
  }
}

.group-price__table td {
  font-weight: 500;
}

.group-price__table .group-price__table-head:nth-of-type(1) {
  color: #F6AD3C;
}

.group-price__table .group-price__table-head:nth-of-type(2) {
  color: #AAD677;
  margin-top: 40px;
}


.group-price__table-info {
  max-width: 600px;
  margin: 0 auto;
  margin-top: 56px;
  color: #E87562;
  border-radius: 50px;
  background: #FFF2F2;
  padding: 10px;
}

.group-price__table-info br {
  display: none;
}

@media screen and (max-width: 480px) {
  .group-price__table-info br {
    display: block;
  }
}

@media screen and (max-width: 480px) {
  .group-price__table-info {
    padding-left: 2em;
    font-size: 14px;
    text-align: left;
  }
}


.group-access {
  padding-top: 180px;
  position: relative;
}

@media screen and (max-width: 480px) {
  .group-access {
    padding-top: 100px;
  }
}

.group-access__container {
  display: flex;
  align-items: center;
  gap: 80px;
}

@media screen and (max-width: 1080px) {
  .group-access__container {
    width: 60%;
    margin: 0 auto;
    flex-direction: column-reverse;
    gap: 20px;
    align-items: start;
  }
}

@media screen and (max-width: 768px) {
  .group-access__container {
    width: 80%;
  }
}

@media screen and (max-width: 480px) {
  .group-access__container {
    width: 100%;
  }
}

.group-access__content-left {
  width: 100%;
  max-width: 340px;
  flex-shrink: 0;
}

.group-access__text {
  font-size: 18px;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .group-access__text {
    font-size: 16px;
  }
}

.group-access__map-content {
  width: 100%;
  height: 400px;
}

@media screen and (max-width: 480px) {
  .group-access__map-content {
    height: 280px;
  }
}

.group-access__map {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}







/* ----------------------------------------
company-profile
---------------------------------------- */

.company-profile__message {
  text-align: center;
  padding-top: 96px;
}

@media screen and (max-width: 480px) {
  .company-profile__message {
    padding-top: 64px;
  }
}

.company-profile__message h2 {
  text-align: center;
  font-size: 30px;
  font-weight: bold;
  position: relative;
  padding: 1em 0;
}

@media screen and (max-width: 1080px) {
  .company-profile__message h2 {
    font-size: 24px;
  }
}

@media screen and (max-width: 768px) {
  .company-profile__message h2 {
    font-size: 22px;
  }
}

@media screen and (max-width: 480px) {
  .company-profile__message h2 {
    font-size: 18px;
  }
}

.company-profile__message h2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 40px;
  height: 40px;
  border-top: 2px solid #F8CDC5;
  border-left: 2px solid #F8CDC5;
  border-top-left-radius: 15px;
  margin-right: 8px;
}

.company-profile__message h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  display: inline-block;
  width: 40px;
  height: 40px;
  border-bottom: 2px solid #F8CDC5;
  border-right: 2px solid #F8CDC5;
  border-bottom-right-radius: 15px;
  margin-left: 8px;
}

.company-profile__message-head {
  margin-top: 64px;
  font-size: 24px;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .company-profile__message-head {
    font-size: 20px;
  }
}

.company-profile__message span {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  color: #EB614B;
}

@media screen and (max-width: 768px) {
  .company-profile__message span {
    font-size: 16px;
  }
}

.company-profile__message-text {
  margin-top: 22px;
  line-height: 1.75;
  font-weight: 500;
}

@media screen and (max-width: 480px) {
  .company-profile__message-text {
    font-size: 14px;
  }
}









/* ----------------------------------------
life-support
---------------------------------------- */
.life-support__about {
  margin-top: 140px;
  position: relative;
}

.life-support__about-accent {
  position: absolute;
  width: 22%;
  height: auto;
}

.life-support__about-accent--01 {
  top: 0;
  left: 0;
}

@media screen and (max-width: 480px) {
  .life-support__about-accent--01 {
    top: -10px;
    transform: translateY(-100%);
  }
}

.life-support__about-accent--02 {
  top: 0;
  right: 0;
  transform: translateY(25%);
}

@media screen and (max-width: 480px) {
  .life-support__about-accent--02 {
    top: 100%;
  }
}

.life-support__about-text {
  font-size: 20px;
  line-height: 1.75;
}

@media screen and (max-width: 1080px) {
  .life-support__about-text {
    font-size: 18px;
  }
}

@media screen and (max-width: 768px) {
  .life-support__about-text {
    font-size: 15px;
  }
}


.life-support-guide {
  margin-top: 140px;
}

@media screen and (max-width: 1080px) {
  .life-support-guide {
    margin-top: 100px;
  }
}

@media screen and (max-width: 480px) {
  .life-support-guide {
    margin-top: 130px;
  }
}

.life-support__guide-text {
  font-size: 22px;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .life-support__guide-text {
    font-size: 16px;
  }
}




.not-supported {
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 10px;
  box-sizing: border-box;
  border: 1px solid #E87562;
  display: flex;
  align-items: center;
  margin-bottom: 130px;
}

@media screen and (max-width: 480px) {
  .not-supported {
    flex-direction: column;
    margin-bottom: 60px;
  }
}



.not-supported h2 {
  color: #fff;
  background: #E87562;
  font-weight: bold;
  font-size: 30px;
  padding: 1em;
  border-radius: 9px 0 0 9px;
}

@media screen and (max-width: 1080px) {
  .not-supported h2 {
    font-size: 24px;
  }
}

@media screen and (max-width: 768px) {
  .not-supported h2 {
    font-size: 20px;
  }
}

@media screen and (max-width: 480px) {
  .not-supported h2 {
    text-align: center;
    width: 100%;
    font-size: 18px;
    border-radius: 9px 9px 0 0;
  }
}

.not-supported ul {
  width: fit-content;
  margin: 0 auto;
}

.not-supported li {
  font-size: 13px;
  color: #E87562;
}

@media screen and (max-width: 480px) {
  .not-supported ul {
    padding: 2em 1em;
  }
}

.life-support__price {
  margin-top: 140px;
}


.life-support__price-container {
  padding-top: 50px;
}



.life-support-price__table thead th {
  font-size: 16px;
}

.life-support-price__table thead th:first-child {
  border-top-left-radius: 10px;
}

.life-support-price__table thead th:last-child {
  border-top-right-radius: 10px;
}



.life-support-price__table tbody tr:last-child td:first-child {
  border-bottom-left-radius: 10px;
}

.life-support-price__table tbody tr:last-child td:last-child {
  border-bottom-right-radius: 10px;
}


.life-support__price .m-price {
  padding: 0;
  background: transparent;
}

.life-support__price .m-price__illust {
  top: 0;
}

.life-support__price-head--01 {
  color: #EE869A;
}

.life-support__price-head--02 {
  color: #E87562;
}


.life-support__price-head {
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}


.life-support-price__table .wp-block-table {
  border-radius: 20px;
  border-color: transparent !important;
}

.life-support-price__table01 tbody tr:nth-child(even) {
  background: #FBE5E8;
}

.life-support-price__table02 tbody tr:nth-child(even) {
  background: #FBDDD1;
}


.life-support-price__table01 td:nth-child(2),
.life-support-price__table01 th:nth-child(2) {
  border-left: 1.5px solid #FBE5E8 !important;
  /* 区切り線の色と太さ */
}

.life-support-price__table02 td:nth-child(2),
.life-support-price__table02 th:nth-child(2),
.life-support-price__table02 td:nth-child(3),
.life-support-price__table02 th:nth-child(3) {
  border-left: 1.5px solid #F5B8AE !important;
  /* 区切り線の色と太さ */
}

.life-support-price__table01 thead {
  background: #EE869A;
}

.life-support-price__table02 thead {
  background: #E87562;
}

.life-support-price__table th {
  text-align: center;
  color: #fff;
  font-weight: 500;
}



.life-support-price__table td {
  font-weight: 500;
  vertical-align: middle;
  text-align: center;
  font-size: 14px;
  height: 40px;
  box-sizing: content-box;
  padding: .5em 1em;
}

.life-support-price__table tr td:nth-child(1) br {
  display: none;
}

@media screen and (max-width: 768px) {
  .life-support-price__table tr td:nth-child(1) br {
    display: block;
  }
}

.life-support-price__table02 tbody tr td:nth-child(2) {
  font-size: 13px;
}


.life-support-cta {
  padding: 140px 0;
}

.life-support-cta .m-cta__content-wrap:last-child .m-cta__content-head {
  margin-bottom: 0;
}


.life-support-cta__flex {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}



.life-support-cta__flex .m-cta__btn-wrap {
  width: 100%;
}

.life-support__cta-img {
  width: 50%;
  max-width: 160px;
  height: auto;
}

@media screen and (max-width: 768px) {
  .life-support__cta-img {
    width: 15%;
    margin: 0 0 0 auto;
  }
}































/* ----------------------------------------
page-company
---------------------------------------- */
.page-company {
  padding-top: 140px;
}

@media screen and (max-width: 768px) {
  .page-company {
    padding-top: 80px;
  }
}

.page-company__content {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin: 0 0 30px;
}

@media screen and (max-width: 1080px) {
  .page-company__content {
    flex-direction: column-reverse;
    gap: 40px;
  }
}

@media screen and (max-width: 480px) {
  .page-company__content {
    gap: 20px;
  }
}

.page-company h3 {
  font-size: 20px;
  font-weight: bold;
  position: relative;
  line-height: 1;
  padding: 0 0 0 10px;
  margin: 0 0 25px;
}

.page-company h3::before,
.page-company h3::after {
  content: "";
  width: 4px;
  height: 4px;
  position: absolute;
  left: 0;
}

.page-company h3::before {
  background: #EB614B;
  top: 4px;
}

.page-company h3::after {
  background: #F4B3C2;
  bottom: 4px;
}

.page-company__business {
  padding-top: 80px;
}

@media screen and (max-width: 768px) {
  .page-company__business {
    padding-top: 40px;
  }
}

.page-company__business h3::before {
  background: #E87562;
  top: 4px;
}

.page-company__business h3::after {
  background: #FABFCC;
  bottom: 4px;
}


.page-company__table-container {
  display: flex;
  flex-direction: column;
}

@media screen and (max-width: 1080px) {
  .page-company__table-container {
    flex-direction: row;
    justify-content: space-between;
    gap: 1em;
  }
}

@media screen and (max-width: 480px) {
  .page-company__table-container {
    flex-direction: column;
    gap: 0;
  }
}


.page-company__body {
  width: 50%;
}

@media screen and (max-width: 1080px) {
  .page-company__body {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .page-company__body {
    width: fit-content;
    margin: 0 auto;
  }
}

.page-company__image {
  width: 50%;
  height: 100%;
}

@media screen and (max-width: 1080px) {
  .page-company__image {
    width: 100%;
  }

  .page-company__image img {
    aspect-ratio: 1/.5;
    object-fit: cover;
  }
}


.page-company__table {
  border-collapse: separate;
  border-spacing: 10px;
  padding-top: 14px;
}

.page-company__table tbody {
  display: flex;
  flex-direction: column;
  gap: 14px;
}



.page-company__table tbody tr {
  display: flex;
  gap: 20px;
}

@media screen and (max-width: 1080px) {
  .page-company__table tbody tr {
    gap: 10px;
  }
}

.page-company__table tbody tr td:first-child {
  width: 180px;
  background: #E87562;
  color: #fff;
  font-weight: normal;
  border-radius: 5px;
  padding: 4px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

@media screen and (max-width: 1080px) {
  .page-company__table tbody tr td:first-child {
    width: 100px;
  }
}

.page-company__table tbody tr td:first-child br {
  display: none;
}

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

  .page-company__table tbody tr td:first-child br,
  .page-company__table tbody tr td:last-child br {
    display: block;
  }
}

.page-company__table td {
  padding: 4px 0 0;
  font-weight: 500;
}

.page-company__table-flex {
  display: flex;
  justify-content: space-between;
}



.page-company__table td span {
  display: block;
  margin-left: 1em;
  flex-shrink: 0;
}

.page-company__business ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media screen and (max-width: 480px) {
  .page-company__business ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

}




/* ----------------------------------------
news
---------------------------------------- */
.news-post__header {
  margin: 0 0 50px;
  padding: 0 0 20px;
  border-bottom: 2px dotted #92cce1;
}

.news-post__date {
  color: #56b6cb;
  letter-spacing: 0.05em;
  font-size: 14px;
  margin: 0 0 10px;
}

.news-post__title {
  font-size: 23px;
}

.news-post__content {
  margin: 0 0 60px;
}

.news-post__content img {
  margin: 0 0 20px;
}

.news-post__content h2 {
  font-weight: bold;
  margin: 0 0 20px;
}

.news-post__content p {
  line-height: 1.9;
  margin: 0 0 20px;
}



/* ----------------------------------------
contact
---------------------------------------- */
.contact-read {
  text-align: center;
  font-size: 18px;
  margin: 0 0 60px;
}

.contact-head {
  text-align: center;
  height: 70px;
  border-radius: 5px;
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 0 40px;
  font-weight: bold;
}

.page-contact-taxi .contact-head {
  color: #F6AD3C;
  background: #FFF0D9;
}

.page-contact-ambulance .contact-head {
  color: #69ACE3;
  background: #E3F2FD;
}

.page-contact-support .contact-head {
  color: #A898CE;
  background: #F9F7FD;
}

.contact-table {
  width: 100%;
}

.contact-table th,
.contact-table td {
  padding: 12px 0;
  vertical-align: top;
}

.contact-table th {
  font-size: 18px;
  position: relative;
  font-weight: normal;
  width: 310px;
  padding-top: 20px;
}

.contact-table th.req::before {
  content: "必須";
  width: 50px;
  height: 24px;
  color: #fff;
  font-size: 13px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  position: absolute;
  top: 23px;
  right: 70px;
}

.page-contact-taxi .contact-table th.req::before {
  background: #F6AD3C;
}

.page-contact-ambulance .contact-table th.req::before {
  background: #69ACE3;
}

.page-contact-support .contact-table th.req::before {
  background: #A898CE;
}


.contact-table .input,
.contact-table .select,
.contact-table .textarea {
  width: 100%;
  display: block;
  background: #F4FAFC;
  border-radius: 5px;
  height: 50px;
  padding: 0 15px;
  font-size: 16px;
  max-width: 100%;
  box-sizing: border-box;
}

.contact-table .input::placeholder,
.contact-table .textarea::placeholder {
  color: #ADADAD;
}

.contact-table .textarea {
  height: 165px;
  padding: 15px;
  resize: vertical;
}

.contact-table .input._zip {
  width: 222px;
}

.contact-table .input._tel {
  width: 170px;
}

.contact-table .tel-item {
  display: flex;
  align-items: center;
}

.contact-table .tel-item:not(:first-child)::before {
  content: "";
  width: 11px;
  height: 2px;
  background: #DADADA;
  margin: 0 6px;
}

.contact-table .tel {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.contact-table .select-wrap {
  display: inline-block;
  position: relative;
}

.contact-table .select-wrap::before {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 2px solid #A7A7A7;
  border-bottom: 2px solid #A7A7A7;
  position: absolute;
  top: 40%;
  right: 15px;
  transform: rotate(45deg);
  z-index: 1;
}

.contact-table .select {
  padding-right: 55px;
}

.contact-more {
  color: #fff;
  background: #F6AD3C;
  text-align: center;
  height: 70px;
  border-radius: 5px;
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 80px 0 40px;
  font-weight: bold;
  position: relative;
  cursor: pointer;
}



.contact-more::before {
  content: "";
  width: 15px;
  height: 15px;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transform: rotate(45deg) translateY(-50%);
  position: absolute;
  top: 40%;
  right: 30px;
}

.contact-more.is-open::before {
  border: 0;
  border-top: 3px solid #fff;
  border-left: 3px solid #fff;
  top: 50%;
}

.contact-more.is-open+.contact-table._more {
  display: table;
}

.contact-table._more {
  margin: 0 0 60px;
}

.contact-table._more th,
.contact-table._more td {
  border-bottom: 1px solid #EFEFEF;
  padding: 22px 0;
}

.m-date-mr20 {
  margin-right: 2em;
}

.contact-table .textarea-wrap {
  display: flex;
  align-items: flex-start;
}

.contact-table .textarea-wrap p:first-child {
  width: 90px;
}

.contact-table .textarea-wrap p:not(:first-child) {
  width: 100%;
}

.contact-table .date {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.contact-table .date p {
  width: 80px;
}

.contact-table .date .select-wrap+span {
  display: inline-block;
  margin: 0 15px 0 10px;
}

.contact-table .place {
  display: flex;
  align-items: center;
}

.contact-table .place p {
  width: 80px;
}

.contact-table .support-read {
  color: #56A0D6;
  font-size: 18px;
  margin: 0 0 15px;
}

.contact-table .support-choice {
  display: flex;
  align-items: center;
  margin: 0 0 30px;
}

.contact-table .support-number {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 0 20px;
}

.support-number br {
  display: none !important;
}

.support-number p {
  display: flex;
  align-items: center;
}

.contact-table .input._support {
  width: 190px;
  margin: 0 10px;
}

.contact-policy {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 0 40px;
}

.contact-policy label {
  display: flex;
  align-items: center;
}

.contact-policy input {
  display: none;
}

.radio-trigger {
  display: none;
}

/* .contact-policy__mark {
  width: 28px;
  height: 28px;
  border: 2px solid #56A0D6;
  border-radius: 4px;
  margin: 0 12px 0 0;
  position: relative;
  cursor: pointer;
  display: block;
}

.contact-policy input:checked+.contact-policy__mark::before {
  content: "";
  width: 17px;
  height: 10px;
  border-bottom: 2px solid #56A0D6;
  border-left: 2px solid #56A0D6;
  position: absolute;
  top: 3px;
  left: 3px;
  transform: rotate(-45deg);
  display: block;
} */

.contact-policy a {
  margin: none;
  margin: 0 8px 0 0;
  color: #56A0D6;
  text-decoration: underline;
}

.radio-mark {
  width: 26px;
  height: 26px;
  border: 1px solid #56A0D6;
  border-radius: 50%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 8px 0 0;
}

.support-item input {
  display: none;
}

/* .support-item input:checked+.radio-mark::before {
  content: "";
  width: 16px;
  height: 16px;
  background: #56A0D6;
  border-radius: 50%;
} */

.support-item:last-child {
  margin: 0 0 0 40px;
}

.support-item label {
  display: flex;
  align-items: center;
  color: #56A0D6;
}

.contact-table._more {
  display: none;
}





/*# sourceMappingURL=main.css.map */



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

  .contact-table th,
  .contact-table td {
    display: block;
    width: auto !important;
  }

  .contact-table th.req::before {
    right: 0;
  }

  .contact-head,
  .contact-more {
    font-size: 14px;
    height: 60px;
  }

  .contact-more::before {
    width: 10px;
    height: 10px;
    border-width: 2px !important;
    top: 43%;
    right: 15px;
  }

  .contact-table .input._tel {
    width: 80px;
  }

  .contact-table th {
    padding-bottom: 0 !important;
    border-bottom: 0 !important;
  }

  .contact-table .date {
    padding: 0 0 0 60px;
    position: relative;
  }

  .contact-table .date div {
    margin: 0 0 8px;
  }

  .contact-table .date p {
    position: absolute;
    top: 15px;
    left: 0;
  }

  .contact-table .support-read {
    font-size: 16px;
  }

  .support-number {
    position: relative;
    padding: 0 0 0 120px;
  }

  .support-number p {
    position: absolute;
    top: 20px;
    left: 0;
    font-size: 14px;
  }

  .contact-table .input._support {
    margin: 4px 8px 4px 0;
    width: 185px;
    padding: 0 10px;
  }
}





.contact-policy .wpcf7-radio {
  -webkit-appearance: button !important;
  appearance: button !important;
}

.contact-policy .wpcf7-radio input:hover label:hover {
  cursor: pointer;
}

.contact-policy .wpcf7-response-output {
  border-color: transparent !important;
  text-align: center !important;
}

/* ラジオボタンの表示設定 */
input[type=radio] {
  width: 26px;
  height: 26px;
  border: 1px solid #56A0D6;
  border-radius: 50%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 8px 0 0;
}

.support-radio {
  margin-bottom: 20px;
}

.form-unit__radio {
  display: flex;
  align-items: center;
}

.form-unit__radio label {
  display: flex;
  cursor: pointer;
}

input[type=radio] {
  cursor: pointer;
}

/* チェックマークの表示 */
input[type=radio]:checked::after {
  content: "";
  width: 16px;
  height: 16px;
  background: #56A0D6;
  border-radius: 50%;
}

/* ラジオボタンの表示設定 */
.contact-policy .form-checkbox {
  width: 28px;
  height: 28px;
  border-radius: 4px;
  border: 2px solid #38A1DB;
  position: relative;
  background-color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  transform: translateX(-4px);
}

/* チェックマークの表示 */
.contact-policy .form-checkbox:checked::after {
  content: "";
  width: 17px;
  height: 10px;
  border-bottom: 2px solid #56A0D6;
  border-left: 2px solid #56A0D6;
  position: absolute;
  top: 3px;
  left: 3px;
  transform: rotate(-45deg);
  display: block;
}


@media (max-width: 576px) {
  .contact-policy .form-unit__policy-link {
    font-size: 15px;
  }
}

.contact-policy {
  margin-top: 80px;
  margin-bottom: 80px;
  text-align: center;
}

.contact-policy input {
  display: block;
}

/*# sourceMappingURL=main.css.map */




ul.page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
}

span.page-numbers,
a.page-numbers {
  width: 30px;
  height: 30px;
  background: #F2FAFC;
  border-radius: 50%;
  font-size: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 8px;
}

span.page-numbers.current {
  background: #1BB8CE;
  color: #fff;
}

.pager-arrow {
  width: 10px;
}

.pager-arrow._prev {
  transform: rotate(180deg);
}


/* プライバシーポリシー */

.policy-container {
  padding-top: 108px;
}

.policy__ttl {
  font-size: 22px;
  margin: 0 0 20px;
  padding: 0 0 20px;
  font-weight: 500;
  border-bottom: 2px dotted #92cce1;
}

.policy-container h3 {
  font-size: 20px;
  margin-top: 30px;
  margin-bottom: .5em;
  font-weight: 500;
}

.policy-container p {
  margin-bottom: 1em;
  line-height: 1.75;

}

.policy-container .wp-block-separator {
  border-top: 1px dotted #81CDE4;
  margin-top: 30px;
}

.group-message-head {
  position: relative;
  z-index: 1;
}

.group-message__img--04 {
  width: 120px;
  top: 30%;
  right: 5%;
  position: absolute;
  z-index: 1;
}

.group-message__img--04 {
  width: 220px;
  top: 50%;
  left: 10%;
  position: absolute;
}

@media screen and (max-width: 1080px) {
  .group-message__img--04 {
    width: 130px;
  }
}

@media screen and (max-width: 768px) {
  .group-message__img--04 {
    width: 100px;
  }
}

@media screen and (max-width: 480px) {
  .group-message__img--04 {
    width: 80px;
    top: 75%;
  }
}