@charset "UTF-8";
/* -----------------------------------------------
* Page エントリーポイント
-------------------------------------------------- */
/* FLOCSS
----------------------------------------------------- */
#page_top {
  display: none;
  position: fixed;
  right: 20px;
  bottom: 45px;
  z-index: 999;
}
#page_top a {
  border-radius: 50%;
  background: #129588;
  color: #fff;
  display: block;
  font-size: 20px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  text-decoration: none;
  width: 80px;
  border: 1px solid white;
}

.section {
  padding-block: 100px;
}

.inner {
  padding-inline: 15px;
  max-width: 1230px;
  margin-inline: auto;
}

.top-inner {
  padding-inline: 15px;
  max-width: calc(1400px + 30px);
  margin-inline: auto;
}

/* =====================================================
# 領域アニメーション
===================================================== */
.fade-in-up {
  opacity: 0;
  -webkit-transform: translateY(24px);
  transform: translateY(24px);
  -webkit-transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, transform 1s;
  transition: opacity 1s, transform 1s, -webkit-transform 1s;
}
.fade-in-up.is-in-view {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.fade-in-down {
  opacity: 0;
  -webkit-transform: translateY(-24px);
  transform: translateY(-24px);
  -webkit-transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, transform 1s;
  transition: opacity 1s, transform 1s, -webkit-transform 1s;
}
.fade-in-down.is-in-view {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
}
.fade-in.is-in-view {
  opacity: 1;
}

.heading {
  text-align: center;
  position: relative;
}
.heading::before {
  position: absolute;
  bottom: -14px;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  content: "";
  display: inline-block;
  width: 50px;
  height: 2px;
  background-color: #a4cd73;
}

.heading__ja {
  display: block;
  font-family: "Dancing Script", "メイリオ", "Meiryo", "游ゴシック", "Yu Gothic",
    "ＭＳ Ｐゴシック", sans-serif;
  font-size: 35px;
  color: #129588;
  line-height: 1.3;
  letter-spacing: 0.1em;
}
.is-white .heading__ja {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro",
    "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
  color: white;
}

.heading__en {
  color: #129588;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.1em;
}
.is-white .heading__en {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro",
    "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
  color: white;
}

.heading-h3 {
  text-align: right;
  position: relative;
}
.heading-h3::before {
  position: absolute;
  bottom: -10px;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  content: "";
  display: inline-block;
  width: 100%;
  height: 1px;
  background-color: #ccc;
}

.heading-h3__en {
  font-family: "Dancing Script", "メイリオ", "Meiryo", "游ゴシック", "Yu Gothic",
    "ＭＳ Ｐゴシック", sans-serif;
  font-size: 30px;
}

.heading-h3__ja {
  font-size: 20px;
  padding-left: 10px;
}

/* =====================================================
# header
===================================================== */
.top-header,
.header {
  background-color: transparent;
}
.top-header__inner,
.header__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 120px;
}
.top-header-logo-area,
.header-logo-area {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-inline: 10px 0;
}
.top-header-logo-area.top,
.header-logo-area.top {
  background-color: transparent;
}
.top-header-logo-area__logo,
.header-logo-area__logo {
  border-radius: 5px;
  padding: 10px min(1.8372703412vw, 35px);
  background-color: rgba(255, 255, 255, 0.9);
}
.top-header-logo-area__logo--img,
.header-logo-area__logo--img {
  width: min(18.3727034121vw, 350px);
}
.top-header__right-area,
.header__right-area {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #a4cd73;
  padding-inline: 3.6745406824vw 50px;
  border-end-start-radius: 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 15px;
}
.top-header__link-area,
.header__link-area {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.top-header__insta img,
.header__insta img {
  width: 36px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.top-header__line img,
.header__line img {
  height: 39px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.top-header__btn,
.header__btn {
  display: inline-block;
  width: 200px;
  max-width: 100%;
  padding: 6px 10px;
  background-color: #129588;
  border-radius: 30px;
  color: white;
  text-align: center;
  text-decoration: none;
  -webkit-transition: background-color 0.25s;
  transition: background-color 0.25s;
}
.top-header__btn:focus,
.top-header__btn:hover,
.header__btn:focus,
.header__btn:hover {
  background-color: #3eb5a9;
}
.top-header__btn img,
.header__btn img {
  width: 20px;
  vertical-align: -4px;
  margin-right: 5px;
}
.top-header__btn.is-tel,
.header__btn.is-tel {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro",
    "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
}
.top-header__btn.is-tel:focus,
.top-header__btn.is-tel:hover,
.header__btn.is-tel:focus,
.header__btn.is-tel:hover {
  background-color: #129588;
  cursor: default;
}
.top-header__btn.is-icon,
.header__btn.is-icon {
  position: relative;
  padding-right: 20px;
  padding-left: 13.8px;
}
.top-header__btn.is-icon::after,
.header__btn.is-icon::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  display: inline-block;
  background: url(../img/common/drawer-arrow-right.webp) center center/contain
    no-repeat;
}
.top-header-nav-area,
.header-nav-area {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.top-header-nav,
.header-nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 38px;
}
.top-header-nav__wrapper,
.header-nav__wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.top-header-nav__item,
.header-nav__item {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  text-align: center;
}
.top-header-nav__link,
.header-nav__link {
  position: relative;
  display: block;
  letter-spacing: 1px;
  border-bottom: 4px solid transparent;
  text-decoration: none;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}
.top-header-nav__link::after,
.header-nav__link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 10%;
  width: 80%;
  height: 1px;
  background: white;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: center top;
  transform-origin: center top;
}

.top-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 620;
  width: 100%;
}

.header {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 620;
  width: 100%;
}
.header.displayBlock {
  display: block;
}
.header.displayNone {
  display: none;
}

#stay,
.stay {
  color: white;
}
#stay::after,
.stay::after {
  position: absolute;
  bottom: -5px;
  left: 10%;
  width: 80%;
  height: 1px;
  background: white;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transform-origin: center top;
  transform-origin: center top;
}

/*　上に上がる動き　*/
#header.UpMove {
  -webkit-animation: UpAnime 0.5s forwards;
  animation: UpAnime 0.5s forwards;
}

@-webkit-keyframes UpAnime {
  from {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translateY(-100px);
    transform: translateY(-100px);
  }
}

@keyframes UpAnime {
  from {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translateY(-100px);
    transform: translateY(-100px);
  }
}
/*　下に下がる動き　*/
#header.DownMove {
  -webkit-animation: DownAnime 0.5s forwards;
  animation: DownAnime 0.5s forwards;
}

@-webkit-keyframes DownAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(-100px);
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes DownAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(-100px);
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.drawer-icon {
  display: none;
  position: fixed;
  right: 6px;
  top: 20px;
  z-index: 1001;
  text-align: center;
  cursor: pointer;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  background: #fff;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: none;
  padding: 2px 9px 10px;
}
.drawer-icon.is-checked {
  -webkit-transform: translateX(-260px);
  transform: translateX(-260px);
}
.drawer-bars {
  display: inline-block;
  width: 35px;
  height: 20px;
  position: relative;
  vertical-align: bottom;
}
.drawer-bar {
  position: absolute;
  right: 0;
  left: 0;
  display: block;
  background: #777;
  width: 100%;
  height: 4px;
  border-radius: 0;
  -webkit-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.drawer-bar:nth-of-type(1) {
  top: 0;
}
.drawer-bar:nth-of-type(2) {
  top: 8px;
}
.drawer-bar:nth-of-type(3) {
  top: 16px;
}
.is-checked .drawer-bar:nth-of-type(1) {
  top: 10px;
  -webkit-transform: rotate(-25deg);
  transform: rotate(-25deg);
}
.is-checked .drawer-bar:nth-of-type(2) {
  background: transparent;
}
.is-checked .drawer-bar:nth-of-type(3) {
  top: 10px;
  -webkit-transform: rotate(25deg);
  transform: rotate(25deg);
}
.drawer-background {
  display: none;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
.drawer-background.is-checked {
  display: block;
  opacity: 0.8;
}
.drawer-content {
  overflow: auto;
  position: fixed;
  top: 0;
  right: 0;
  bottom: auto;
  left: auto;
  -webkit-transform: translateX(105%);
  transform: translateX(105%);
  z-index: 1000;
  width: 260px;
  max-width: 90%;
  height: 100%;
  background: #129588;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  text-align: left;
  color: #fff;
}
.drawer-content.is-checked {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-box-shadow: 6px 0 25px rgba(0, 0, 0, 0.16);
  box-shadow: 6px 0 25px rgba(0, 0, 0, 0.16);
}
.drawer-content ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.drawer-content ul li {
  border-bottom: 1px dotted #fff;
  color: #fff;
}
.drawer-content ul li a {
  text-decoration: none;
  text-transform: uppercase;
  display: block;
  position: relative;
  padding: 16px 30px 14px 20px;
}
.drawer-tel {
  display: inline-block;
  padding: 7px 20px;
  margin-top: 30px;
  margin-left: 20px;
  border: 1px solid #fff;
  border-radius: 20px;
  letter-spacing: 0.1em;
}
.drawer-insta,
.drawer-line {
  margin-top: 20px;
  display: block;
  margin-left: 20px;
}
.drawer-insta img {
  width: 30px;
}

.drawer-line img {
  height: 39px;
}

.mobile-active {
  color: #fff !important;
  background-color: #a4cd73;
}

.call {
  position: relative;
}
.call::before {
  content: "";
  position: relative;
  top: 4px;
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url(../img/common/tel-icon.webp) center center/contain no-repeat;
}

/* =====================================================
# footer
===================================================== */
.footer {
  background: url(../img/common/footer-bg.webp) left 100% / cover no-repeat;
}
.footer__inner-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-block: 80px 10.498687664vw;
}
.footer__company-area {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.footer__logo img {
  width: 300px;
}
.footer .address-area__box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.footer .address-area__box .location {
  width: 30px;
  margin-left: 10px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.footer .address-area__address {
  margin-top: 20px;
  font-size: 14px;
  letter-spacing: 0.05em;
}
.footer .address-area .tel {
  font-size: 14px;
  letter-spacing: 0.07em;
}
.footer__nav-area {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 60%;
  -ms-flex: 0 1 60%;
  flex: 0 1 60%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.footer-nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 25px;
}
.footer-nav__item {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  margin: 0 auto;
}
.footer-nav__item--active {
  background-color: #129588;
  color: #fff;
}
.footer-nav__link {
  display: inline-block;
  text-decoration: none;
  -webkit-transition: 0.25s;
  transition: 0.25s;
  text-transform: uppercase;
  font-size: 14px;
}
.footer-nav__link--last-child {
  padding-right: 0;
}

.copyright {
  background-color: #129588;
  padding-block: 20px 30px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-align: center;
  color: white;
}

/* =====================================================
# TOPメインヴィジュアル
===================================================== */
.fv {
  position: relative;
}
.fv::after {
  content: "";
  position: absolute;
  bottom: 0;
  display: block;
  width: 100%;
  height: min(15.7480314961vw, 300px);
  background: #edf7e6;
  z-index: -1;
}

.fv__inner {
  position: relative;
}

.picture {
  margin-left: calc(100vw - 76.3888888889%);
  position: relative;
  z-index: 1;
  padding-bottom: 50px;
}

.slide {
  position: relative;
  width: 100%;
  height: min(47.2440944882vw, 1100px);
  overflow: hidden;
  border-bottom-left-radius: min(12.5984251969vw, 240px);
}

.slide-image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-animation: slider-1 24s linear infinite;
  animation: slider-1 24s linear infinite;
}
.slide-image:nth-child(1) {
  background-image: url(../img/common/main1.webp);
  -webkit-animation-delay: -2s;
  animation-delay: -2s;
}
.slide-image:nth-child(2) {
  background-image: url(../img/common/main2.webp);
  -webkit-animation-delay: 6s;
  animation-delay: 6s;
}
.slide-image:nth-child(3) {
  background-image: url(../img/common/main3.webp);
  -webkit-animation-delay: 14s;
  animation-delay: 14s;
}

@-webkit-keyframes slider-1 {
  0% {
    opacity: 0;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  4.16% {
    opacity: 1;
  }
  33.33% {
    opacity: 1;
  }
  41.66% {
    opacity: 0;
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  100% {
    opacity: 0;
  }
}

@keyframes slider-1 {
  0% {
    opacity: 0;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  4.16% {
    opacity: 1;
  }
  33.33% {
    opacity: 1;
  }
  41.66% {
    opacity: 0;
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  100% {
    opacity: 0;
  }
}
.fv__message {
  position: absolute;
  top: 30%;
  left: 5.249343832vw;
  z-index: 100;
}

.fv__catch1,
.fv__catch2 {
  font-size: min(6.2992125984vw, 120px);
  letter-spacing: 0.1em;
}

.fv__catch1 {
  color: #ef89b0;
}

.fv__catch2 {
  color: #ffae00;
}

.fv__title {
  font-size: min(3.4120734908vw, 65px);
  font-family: "Noto Serif JP", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro",
    "ＭＳ Ｐ明朝", "MS PMincho", serif;
  color: #333;
  letter-spacing: 0.05em;
  line-height: 1.4;
  text-shadow: 2px 2px 3px #fff, -2px 2px 3px #fff, 2px -2px 3px #fff,
    -2px -2px 3px #fff;
}

.scroll__wrap {
  position: absolute;
  bottom: -2%;
  left: 5%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 100;
}
.scroll__wrap .scroll {
  position: relative;
}
.scroll__wrap .scroll-text {
  color: #129588;
  text-transform: uppercase;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro",
    "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
  letter-spacing: 0.1em;
  font-size: min(0.6299212598vw, 12px);
  text-align: center;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.scroll__wrap .scroll-border {
  position: relative;
  top: min(1.5748031496vw, 30px);
  width: 100%;
  height: min(8.3989501312vw, 160px);
}
.scroll__wrap .scroll-border::before {
  content: "";
  display: block;
  position: absolute;
  width: 1px;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  background: #a4cd73;
  margin: auto;
}
.scroll__wrap .scroll-border::after {
  content: "";
  display: block;
  position: absolute;
  width: 3px;
  height: min(1.5748031496vw, 30px);
  top: 30px;
  left: 0;
  right: 0;
  background: #129588;
  -webkit-animation: scrollbar 2s ease-in-out infinite;
  animation: scrollbar 2s ease-in-out infinite;
  margin: auto;
}
@-webkit-keyframes scrollbar {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(350%);
    transform: translateY(350%);
  }
}
@keyframes scrollbar {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(350%);
    transform: translateY(350%);
  }
}

.image-container {
  position: relative;
  display: inline-block;
}

.image-container img {
  display: block;
}

.image-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5); /* 半透明の白 */
  pointer-events: none; /* フィルターの下の画像をクリック可能にする */
}

/* =====================================================
# 下層ページ メインビジュアル
===================================================== */
.mv {
  background-color: #061a40;
  position: relative;
  z-index: -2;
}
.mv-jumbotron {
  background-color: #999;
  background-size: cover;
  background-position: center center;
  height: 480px;
  position: relative;
  z-index: -1;
}
.mv-jumbotron::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  pointer-events: none; /* フィルターの下の画像をクリック可能にする */
}
.mv-jumbotron__inner {
  position: relative;
  height: 100%;
  width: 100%;
  max-width: calc(1200px + 30px);
  margin-right: auto;
  margin-left: auto;
  padding-inline: 15px;
}
.mv-jumbotron__text-wrapper {
  position: absolute;
  top: 65%;
  left: 0%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 500px;
  padding-left: 15px;
}
.mv .mv-h2 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 20px;
  padding-block: 30px 40px;
  padding-inline: 50px;
  background-color: rgba(18, 149, 136, 0.95);
  font-size: 35px;
  letter-spacing: 0.1em;
  color: white;
}
.mv .mv-h2 span {
  text-transform: uppercase;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: #a4cd73;
  font-size: 18px;
  letter-spacing: 0.05em;
}
.mv .mv-h2 span::before {
  content: "";
  display: inline-block;
  margin-right: 12px;
  width: 50px;
  height: 2px;
  background-color: #a4cd73;
}
.mv .mv-h2 span {
  position: relative;
  z-index: 2;
}
.mv .mv-h2::before {
  content: attr(data-en);
  font-weight: 500;
  position: absolute;
  top: 70%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  font-size: 24px;
}

/* =====================================================
# 共通ボタン
===================================================== */
.btn {
  display: inline-block;
  color: #fff;
  font-size: 20px;
  padding-inline: 40px 100px;
  background-color: #129588;
  -webkit-transition: color 0.3s, background-color 0.3s;
  transition: color 0.3s, background-color 0.3s;
  height: 66px;
  line-height: 66px;
  border-radius: 10px;
  position: relative;
}
.btn::after {
  content: "";
  position: absolute;
  top: 40%;
  right: 40px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 38px;
  height: 8px;
  border-bottom: 1px solid white;
  border-right: 2px solid white;
  -webkit-transform: skew(60deg);
  transform: skew(60deg);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.btn:hover::after {
  border-bottom: 1px solid #1b1b1b;
  border-right: 2px solid #1b1b1b;
  -webkit-transform: translateX(10px) skew(60deg);
  transform: translateX(10px) skew(60deg);
}
.btn.is-news {
  font-size: 16px;
  text-transform: uppercase;
  height: 55px;
  line-height: 55px;
  letter-spacing: 0.1em;
}

.btn.is-topAbout {
  width: 280px;
}
.btn._top-business {
  width: 220px;
  background-color: #129588;
}
.btn._top-business::after {
  border-bottom: 2px solid #fff;
  border-right: 3px solid #fff;
}
.btn._company {
  width: 240px;
  background-color: #129588;
  text-transform: capitalize;
}
.btn._recruit {
  width: 220px;
  font-size: 16px;
  background-color: #129588;
}

/* =====================================================
# top-intro
===================================================== */
.top-intro {
  padding-block: 50px 100px;
  background-color: #edf7e6;
}

.top-intro__inner {
  text-align: center;
}

.top-intro__title {
  font-size: 35px;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro",
    "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
  letter-spacing: 0.1em;
  color: #129588;
}

.top-intro__text {
  margin-top: 30px;
  font-size: 20px;
  line-height: 2.2;
}

/* =====================================================
# top-about
===================================================== */
.top-about {
  position: relative;
  padding-bottom: 160px;
}
.top-about.top-information {
  background-color: #fdfaf2;
}
.top-about__normal {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.top-about__column {
  width: 55%;
  position: relative;
  z-index: 2;
}
.top-about__column img {
  border-end-start-radius: min(7.874015748vw, 150px);
}
.top-about__column-outside-right {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-right: calc(50% - 50vw);
  margin-left: -3%;
}

.top-about__text-box {
  margin-top: min(5.249343832vw, 100px);
  width: 85%;
}

.top-about__button {
  display: block;
  text-align: right;
  margin-top: 50px;
}

.top-about__text {
  display: block;
  margin-top: 40px;
  font-size: 19px;
  line-height: 1.8;
  padding-left: 4.1994750656vw;
  -webkit-font-feature-settings: "palt" 1, "trad" 1;
  font-feature-settings: "palt" 1, "trad" 1;
}

.top-information .top-about__text-box {
  margin-top: min(7.874015748vw, 150px);
}
.top-information .top-about__column img {
  border-radius: min(5.249343832vw, 100px);
  -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
}

.top-information__image {
  padding-top: min(7.874015748vw, 150px);
  padding-inline: 30px min(5.249343832vw, 100px);
}
.top-information__image img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

/* =====================================================
# top-service
===================================================== */
.top-service {
  background: url(../img/common/top-merit-bg.webp) center center/cover no-repeat;
  padding-block: 90px 105px;
}

.top-merit__items {
  margin-top: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 3%;
  width: 100%;
}

.top-merit__item {
  width: 32.3334%;
  background-color: #fff;
  border-radius: 20px;
  padding: 15px;
}

.top-merit__image img {
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

.top-merit__body {
  color: #222;
  text-align: center;
  margin-top: 15px;
}

.top-merit__title {
  color: #129588;
  font-size: 18px;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro",
    "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
}

.top-service__content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.top-service__content .text-box {
  width: 85%;
  margin-left: auto;
}

/* =====================================================
# top-news
===================================================== */
.top-news {
  padding-block: 150px min(13.3858267717vw, 250px);
  position: relative;
}
.top-news::before {
  background-color: #edf7e6;
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  position: absolute;
  top: -70px;
  width: 74.5406824147vw;
  z-index: -1;
}

.top-news__content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 5.249343832vw;
}

.top-news__meta {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.top-news__new {
  font-size: 12px;
  background-color: #129588;
  padding-inline: 8px;
  color: white;
  border-radius: 3px;
  text-transform: uppercase;
  line-height: 19px;
  height: 20px;
}

.top-news__body {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  overflow: auto;
  height: 380px;
}

.top-news__link {
  display: block;
  padding: 30px 10px;
  border-bottom: 1px solid #afafaf;
  position: relative;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.top-news__link::after {
  content: "";
  display: inline-block;
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 35px;
  height: 35px;
  background: url(../img/common/top-news-arrow.webp) center center/contain
    no-repeat;
}
.top-news__link:nth-child(1) {
  border-top: 1px solid #afafaf;
}

.top-news__date {
  line-height: 1.81;
  letter-spacing: 1.2px;
  color: #1ba62d;
}

.top-news__title {
  font-size: 20px;
  line-height: 1.45;
  letter-spacing: 1.5px;
  color: #1b1b1b;
  word-wrap: break-word;
  /* max-width: 825px; */
  margin-bottom: 20px;
}

/* =====================================================
# top-doctor
===================================================== */
.top-doctor {
  margin-top: 7.874015748vw;
  padding-bottom: min(8.3989501312vw, 160px);
  background-image: linear-gradient(135deg, #a4cd73, #edf7e6, #c4e1a1);
  position: relative;
}

.top-doctor__image {
  position: absolute;
  top: -7.874015748vw;
}
.top-doctor__image img {
  width: min(49.8687664042vw, 1300px);
  border-bottom-right-radius: min(7.874015748vw, 150px);
}

.top-doctor__content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.top-doctor__textBox {
  max-width: 600px;
}

.top-doctor__text {
  margin-top: 100px;
  font-size: 20px;
  line-height: 1.8;
  letter-spacing: 1.5px;
  color: #1b1b1b;
}

.top-doctor__button {
  display: block;
  margin-top: 45px;
}

/* =====================================================
# top-contact
===================================================== */
.top-contact {
  margin-top: -100px;
  padding-bottom: 150px;
}

.top-contact__text {
  display: block;
  margin-top: 30px;
  font-size: 20px;
  color: white;
}

.top-contact__content {
  border-radius: 50px;
  -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
}

.top-contact__body {
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
  padding: 50px;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: url(../img/common/top-contact-bg.webp) center center/cover
    no-repeat;
}

.top-contact__textbox {
  max-width: 900px;
  margin-inline: auto;
}

.top-contact__access {
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
  padding: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.top-contact__btn,
.top-contact__tel-btn {
  text-align: center;
  padding-block: 12px;
  display: block;
  width: 380px;
  background-color: #129588;
  color: white;
  font-size: 25px;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro",
    "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
  border-radius: 40px;
}
.top-contact__btn img,
.top-contact__tel-btn img {
  width: 31px;
  vertical-align: -6px;
  margin-right: 5px;
}

/* =====================================================
# recruit
===================================================== */
/*= タブ =*/
/*liにactiveクラスがついた時の形状*/
.tab li.active a {
  background: #a4cd73;
}

/*エリアの表示非表示と形状*/
.area {
  display: none; /*はじめは非表示*/
  opacity: 0; /*透過0*/
  background: #fff;
}

/*areaにis-activeというクラスがついた時の形状*/
.area.is-active {
  display: block; /*表示*/
  -webkit-animation-name: displayAnime;
  animation-name: displayAnime; /*ふわっと表示させるためのアニメーション*/
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes displayAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes displayAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.top-info__categories {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro",
    "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
}

.top-info__category {
  width: 200px;
  display: block;
  background-color: #129588;
  text-align: center;
  color: #fff;
  padding: 10px;
  border-radius: 5px;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  margin-bottom: 50px;
}
.top-info__category.is-active {
  background-color: #a4cd73;
}

.qa__boxes {
  margin-top: 52px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 42px;
}

.qa-box {
  border-radius: 20px;
  border: 3px solid #a4cd73;
  background: #fff;
}
.qa-box.is-open .qa-box__head::after {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}

.qa-box__head {
  padding: 29px 37px 17px 12px;
  position: relative;
  display: block;
  width: 100%;
}
.qa-box__head::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 14px;
  width: 9.26px;
  height: 6.834px;
  background: url(../img/common/qa-arrow.webp) no-repeat center center/contain;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  margin-top: 3px;
}

.qa-box__head-icon {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro",
    "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  line-height: 32px;
  width: 44px;
  height: 44px;
  border-radius: 22px;
  border: 3px solid #a4cd73;
  background: #a4cd73;
  color: white;
  position: absolute;
  top: -22px;
  left: 12px;
}

.qa-box__head-text {
  display: block;
  text-align: left;
  font-size: 15px;
  letter-spacing: 1.12px;
}

.qa-box__body {
  padding: 13px 14px 17px 12px;
  display: none;
}

.qa-box__a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}

.qa-box__a-icon {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro",
    "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
  font-size: 22px;
  text-align: center;
  line-height: 35px;
  width: 44px;
  height: 44px;
  border-radius: 22px;
  border: 3px solid #129588;
  background: #129588;
  color: white;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.qa-box__a-text {
  display: block;
  letter-spacing: 1.12px;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  padding-top: 10px;
}

.voice {
  background-image: linear-gradient(-45deg, #edf7e6, #f8fdf4, #fdfaf2);
}

.voice__content {
  background-color: #fff;
  border-radius: 30px;
  padding: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 50px;
}
.voice__content .top-h2 {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.voice__media {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
}

.voice__image img {
  max-width: 350px;
  border-radius: 50%;
}

.voice__lists {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}

.voice__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

.voice__dd,
.voice__dt {
  background-color: #edf7e6;
  padding: 10px 15px;
  border-radius: 5px;
}

.voice__dt {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 190px;
  -ms-flex: 0 0 190px;
  flex: 0 0 190px;
  color: #129588;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro",
    "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
}

.voice__dd {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  overflow-wrap: anywhere;
}

.recruit-merit {
  background-image: linear-gradient(-45deg, #edf7e6, #f8fdf4, #fdfaf2);
  padding-block: 90px 105px;
}

.recruit-merit__items {
  margin-top: 70px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 3%;
  width: 100%;
}

.recruit-merit__item {
  width: 32.3334%;
  background-color: #fff;
  border-radius: 20px;
  padding: 15px;
}

.recruit-merit__image img {
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

.recruit-merit__body {
  color: #222;
  text-align: center;
  margin-top: 15px;
}

.recruit-merit__title {
  color: #129588;
  font-size: 18px;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro",
    "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
}

.recruit-merit__content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.recruit__head-text {
  margin-top: 60px;
  text-align: center;
  font-size: 20px;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro",
    "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
  color: #129588;
}

.recruit__driver {
  margin-top: 50px;
}

.recruit__driver-title {
  border-left: 5px solid #a4cd73;
  padding-left: 6px;
  line-height: 1.1;
  font-size: 20px;
}

.recruit__driver-text {
  margin-top: 15px;
  line-height: 2;
}

.benefits__items {
  margin-top: 100px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: min(5.249343832vw, 100px);
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.benefits__image {
  text-align: center;
}
.benefits__image img {
  height: 160px;
}

.benefits__body {
  margin-inline: auto;
  margin-top: 20px;
  padding-block: 5px;
  text-align: center;
  font-size: 18px;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro",
    "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
  background-color: #129588;
  color: white;
  width: 170px;
  border-radius: 5px;
}

/* =====================================================
# news
===================================================== */
.news {
  padding-block: 150px;
  position: relative;
}
.news::before {
  background-color: #fdfaf2;
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  position: absolute;
  top: -70px;
  width: 74.5406824147vw;
  z-index: -1;
}

.news__content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  /* gap: 5.249343832vw; */
  gap: 3vw;
}

.news__meta {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.news__head {
  min-width: 200px;
}
.news__category {
  font-size: 12px;
  padding-inline: 8px;
  color: white;
  border-radius: 3px;
  text-transform: uppercase;
  line-height: 19px;
  height: 20px;
}
.news__category.is-recruit {
  background-color: #d6a213;
}
.news__category.is-blog {
  background-color: #129588;
}

.news__new {
  font-size: 14px;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro",
    "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
  color: #cc3333;
}

.news__body {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.news__link {
  display: block;
  padding: 30px 10px;
  border-bottom: 1px solid #afafaf;
  position: relative;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
/* .news__link::after {
  content: "";
  display: inline-block;
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 35px;
  height: 35px;
  background: url(../img/common/top-news-arrow.webp) center center/contain no-repeat;
} */
.news__link:nth-child(1) {
  border-top: 1px solid #afafaf;
}

.news__date {
  line-height: 1.81;
  letter-spacing: 1.2px;
  color: #1ba62d;
}

.news__title {
  font-size: 20px;
  line-height: 1.45;
  letter-spacing: 1.5px;
  color: #1b1b1b;
  word-wrap: break-word;
  margin-bottom: 20px;
  /* max-width: 900px; */
}

/* =====================================================
# news-detail
===================================================== */
.detail {
  padding-block: 150px;
  position: relative;
}
.detail::before {
  background-color: #fdfaf2;
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  position: absolute;
  top: -70px;
  width: 74.5406824147vw;
  z-index: -1;
}

.detail__new {
  font-size: 14px;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro",
    "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
  color: #cc3333;
}

.detail__meta {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.detail__date {
  line-height: 1.81;
  letter-spacing: 1.2px;
  color: #1ba62d;
}

.detail__category {
  font-size: 12px;
  padding-inline: 8px;
  color: white;
  border-radius: 3px;
  text-transform: uppercase;
  line-height: 19px;
  height: 20px;
}
.detail__category.is-recruit {
  background-color: #d6a213;
}
.detail__category.is-blog {
  background-color: #129588;
}

.detail__title {
  margin-top: 10px;
  font-size: 24px;
}

.detail__content {
  margin-top: 60px;
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(2, 1fr);
}

.detail__text-box {
  margin-top: 50px;
  max-width: 700px;
  margin-inline: auto;
}

.detail__files {
  max-width: 830px;
  margin-top: 100px;
  margin-inline: auto;
  padding-inline: 15px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.detail__file {
  display: block;
  background-color: #edf7e6;
  padding: 10px 20px 10px 50px;
  border-radius: 10px;
  width: 100%;
  max-width: 246px;
  position: relative;
}
.detail__file::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 15px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
}

.detail__history-back {
  padding-top: 100px;
  text-align: center;
}

.is-pdf::before {
  background: url(../img/common/pdf-img.webp) center center/contain no-repeat;
}

.is-word::before {
  background: url(../img/common/word-img.webp) center center/contain no-repeat;
}

.is-excel::before {
  background: url(../img/common/excel-img.webp) center center/contain no-repeat;
}

.history__btn {
  display: inline-block;
  width: 200px;
  background: #129588;
  color: white;
  border-radius: 9999px;
  position: relative;
  padding: 15px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  font-weight: 500;
  line-height: 1.2;
}
.history__btn:after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 3px solid white;
  border-right: 3px solid white;
  -webkit-transform: rotate(45deg) translateY(-50%);
  transform: rotate(45deg) translateY(-50%);
  position: absolute;
  top: 48%;
  right: 20px;
  border-radius: 1px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.detail-slider {
  margin-top: 15px;
}

.detail-slider__thumbnail {
  margin-top: 10px;
}

.detail-slider__thumbnail .swiper-slide {
  opacity: 0.5;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
  width: 25% !important;
}

.detail-slider__thumbnail .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
}

/* レイアウトのためのスタイル */
.detail-slider,
.detail-slider__thumbnail {
  max-width: 700px;
  width: 100%;
}

.detail-next,
.detail-prev {
  color: white;
}

.photo-ofi {
  height: 0;
  display: block;
  background-color: #efefef;
  overflow: hidden;
  position: relative;
  padding-bottom: 66.6666%; /* 高さを指定（ボックスの横幅を基準） */
}

.photo-ofi img {
  max-width: inherit;
  max-height: inherit;
  width: 100%;
  height: 100%;
  -o-object-fit: scale-down;
  object-fit: scale-down;
  font-family: "object-fit: scale-down;";
  position: absolute;
  left: 0;
  top: 0;
}

/* =====================================================
# contact
===================================================== */
.tel-fax {
  background-image: linear-gradient(-45deg, #edf7e6, #f8fdf4, #fdfaf2);
  padding-block: 100px;
}
.tel-fax__intro {
  text-align: center;
  font-size: 27px;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro",
    "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
  letter-spacing: 0.1em;
}
.tel-fax__wrapper {
  max-width: 920px;
  margin-top: 40px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.tel-fax__box {
  border-radius: 10px;
  width: 100%;
  background-color: #129588;
  margin-inline: auto;
  padding: 35px 10px 38px;
  text-align: center;
  color: white;
}
.tel-fax__box.is-type2 {
  background-color: #a4cd73;
}
.tel-fax__head {
  margin-top: 10px;
}
.tel-fax__line {
  margin-top: 7px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.tel-fax .tel__img img {
  width: 48px;
}
.tel-fax .tel-number {
  font-size: 38px;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro",
    "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
  line-height: 1;
  padding-left: 15px;
}

.mail-form {
  padding-block: 100px;
  -webkit-font-feature-settings: normal;
  font-feature-settings: normal;
  letter-spacing: 0;
  /*ラジオボタンorチェックボックス
  ------------------------------------*/
  /*フォーカス時*/
  /*クリック範囲*/
  /*ラジオボタンスタイル*/
  /*ラジオボタンチェック印（未選択）*/
  /*ラジオボタンチェック印（選択）*/
  /*チェックボックススタイル*/
  /*チェックボックス未チェック時*/
  /*チェックボックスチェック時*/
  /*セレクトボックス
  ------------------------------------*/
  /*テキストエリア
  ------------------------------------*/
}
.mail-form__inner {
  max-width: 1100px;
  padding-inline: 15px;
  margin-inline: auto;
}
.mail-form ::-webkit-input-placeholder {
  color: #aaa;
}
.mail-form ::-moz-placeholder {
  color: #aaa;
}
.mail-form :-ms-input-placeholder {
  color: #aaa;
}
.mail-form ::-ms-input-placeholder {
  color: #aaa;
}
.mail-form ::placeholder {
  color: #aaa;
}
.mail-form__title {
  font-size: 27px;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro",
    "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
  letter-spacing: 0.1em;
  position: relative;
  color: #129588;
}
.mail-form__text {
  margin-top: 20px;
}
.mail-form__text > p {
  line-height: 2;
}
.mail-form .form-p {
  display: inline-block;
}
.mail-form .form-input {
  border: 1px solid #aaa;
  padding: 5px 10px;
  width: 100%;
}
.mail-form .form-input._age {
  width: 40%;
}
.mail-form .label {
  display: inline-block;
  background-color: #c42e2e;
  color: #fff;
  font-size: 13px;
  text-align: center;
  width: 45px;
  height: 28px;
  line-height: 28px;
}
.mail-form__file-text {
  display: block;
  font-size: 13px;
  color: #cc2a1f;
  text-indent: -13px;
  padding-left: 13px;
}
.mail-form .horizontal-table {
  margin-top: 40px;
}
.mail-form .horizontal-table__inner {
  width: 100%;
}
.mail-form .horizontal-table__header {
  width: 27%;
  padding: 20px;
  background-color: #edf7e6;
  border-bottom: 1px solid #ccc;
  border-left: 1px solid #ccc;
  vertical-align: middle;
  font-weight: 500;
}
.mail-form .horizontal-table__header--required {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.mail-form .horizontal-table__header:first-child {
  border-top: 1px solid #ccc;
}
.mail-form .horizontal-table__header:last-child {
  border-right-width: 0;
}
.mail-form .horizontal-table__text {
  padding: 10px 20px;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  vertical-align: middle;
}
.mail-form .horizontal-table__text:first-of-type {
  border-top: 1px solid #ccc;
}
.mail-form .horizontal-table .center {
  margin: 0 auto;
}
.mail-form .privacy-policy {
  font-size: 18px;
  margin-bottom: 15px;
  text-align: center;
}
.mail-form .box-scroll {
  width: 100%;
  height: 240px;
  padding: 20px;
  border: 1px solid #ddd;
  overflow: hidden;
  overflow-y: scroll;
  margin-bottom: 30px;
  background-color: #fff;
}
.mail-form .box-scroll__title {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  border-left: 8px solid #333;
  margin-bottom: 8px;
  padding-left: 8px;
}
.mail-form .box-scroll__li {
  text-indent: -17px;
  padding-left: 20px;
  letter-spacing: 0;
  margin-bottom: 7px;
}
.mail-form .privacy-wrapper {
  text-align: center;
}
.mail-form .privacy__title {
  border-bottom: 1px solid #666;
  padding-bottom: 5px;
  margin-bottom: 10px;
}
.mail-form .privacy__address {
  text-indent: -43px;
  padding-left: 43px;
}
.mail-form .privacy__link {
  color: blue;
  text-decoration: underline;
}
.mail-form .privacy-btn {
  display: inline-block;
  background-color: #129588;
  color: #fff;
  padding: 15px 10px;
  width: 350px;
  border-radius: 5px;
}
.mail-form .privacy-btn__wrapper {
  text-align: center;
  margin-top: 60px;
  margin-bottom: 30px;
}
.mail-form .send-btn__wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 30px;
  margin-bottom: 30px;
}
.mail-form .send-btn {
  display: inline-block;
  background-color: #129588;
  color: #fff;
  border: 2px solid transparent;
  padding: 15px;
  text-align: center;
  width: 320px;
  border-radius: 5px;
}
.mail-form .send-btn--back {
  margin-right: 100px;
  color: #222;
  background-color: #fff;
  border: 2px solid #222;
}
.mail-form input[type="radio"],
.mail-form input[type="checkbox"] {
  opacity: 0;
  position: absolute;
}
.mail-form input[type="radio"]:focus + span,
.mail-form input[type="checkbox"]:focus + span {
  outline: 1px solid #ccc;
}
.mail-form input[type="radio"] + span,
.mail-form input[type="checkbox"] + span {
  display: inline-block;
  position: relative;
  margin: 0 1em 0 0;
  padding: 0.3em 0.3em 0.3em 2em;
  line-height: 1;
  vertical-align: middle;
  cursor: pointer;
}
.mail-form input[type="radio"] + span:before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  width: 1.375em;
  height: 1.375em;
  border: 1px solid #999;
  border-radius: 50%;
  line-height: 1;
  background: #fff;
}
.mail-form input[type="radio"] + span:after {
  content: "";
  display: none;
}
.mail-form input[type="radio"]:checked + span:after {
  display: block;
  position: absolute;
  top: 5px;
  left: 3px;
  width: 1em;
  height: 1em;
  margin: 0;
  padding: 0;
  border-radius: 50%;
  background: #3d98b4;
  line-height: 1;
}
.mail-form input[type="checkbox"] + span:before {
  position: absolute;
  top: 0.2em;
  left: 0;
  content: "";
  width: 1.25em;
  height: 1.25em;
  border: 1px solid #999;
  background: #fff;
  line-height: 1;
  vertical-align: middle;
}
.mail-form input[type="checkbox"] + span:after {
  content: "";
  display: none;
}
.mail-form input[type="checkbox"]:checked + span:after {
  display: block;
  position: absolute;
  top: 0.3em;
  left: 0.4em;
  width: 0.5em;
  height: 1em;
  content: "";
  border-bottom: 3px solid #3d98b4;
  border-right: 3px solid #3d98b4;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.mail-form select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none; /*ブラウザ標準スタイルを解除*/
  display: block;
  width: 100%;
  padding: 5px 30px 5px 10px;
  border-radius: 4px;
  border: 1px solid #ccc;
}
.mail-form .selectWrap {
  /*selectの親要素をアイコン配置の基準とする*/
  position: relative;
  display: block;
  width: 30%;
}
.mail-form .selectWrap::after {
  /*矢印アイコン自作*/
  position: absolute;
  right: 10px;
  top: 0;
  bottom: 0;
  margin: auto;
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-right: 2px solid #999;
  border-bottom: 2px solid #999;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  pointer-events: none; /*矢印の上もクリック可能にする*/
}
.mail-form textarea {
  resize: none;
}

/* =====================================================
# service
===================================================== */
.service,
.service-chosen {
  background-image: linear-gradient(-45deg, #edf7e6, #f8fdf4, #fdfaf2);
}

.service-h2 {
  position: relative;
  padding-top: 50px;
  font-size: 35px;
  font-family: "Noto Serif JP", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro",
    "ＭＳ Ｐ明朝", "MS PMincho", serif;
}
.service-h2 span {
  position: relative;
  z-index: 2;
}
.service-h2::before {
  content: attr(data-en);
  position: absolute;
  top: -35px;
  left: 0%;
  color: rgba(164, 205, 115, 0.3);
  font-size: 90px;
  font-style: italic;
  font-family: "Dancing Script", "メイリオ", "Meiryo", "游ゴシック", "Yu Gothic",
    "ＭＳ Ｐゴシック", sans-serif;
}

.about__text {
  margin-top: 40px;
  font-size: 18px;
  line-height: 2;
}

.service-one__content {
  border-top: 1px solid #a4cd73;
  border-bottom: 1px solid #a4cd73;
  padding: 50px 4.1994750656vw;
}

.service__content {
  background-color: #fff;
  padding: 50px 4.1994750656vw;
  border-radius: 30px;
  -webkit-box-shadow: 0 0 20px 0 rgba(136, 136, 136, 0.1);
  box-shadow: 0 0 20px 0 rgba(136, 136, 136, 0.1);
}

.working__inner {
  margin-top: 50px;
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(3, 1fr);
}

.working__imageBox {
  background-color: #fafafa;
  border: 5px solid #fff;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  border-radius: 10px;
}
.working__imageBox p {
  padding: 10px;
}

.working__image img {
  border-radius: 8px;
}

.service__flow-wrap {
  margin-top: 60px;
  max-width: 680px;
  margin-inline: auto;
}
.service__flow-wrap ul {
  padding: 0;
}
.service__flow-wrap li {
  list-style-type: none;
}
.service__flow-wrap dd {
  margin-top: 10px;
}
.service__flow-wrap .flow > li {
  position: relative;
}
.service__flow-wrap .flow > li:not(:last-child) {
  margin-bottom: 40px;
}
.service__flow-wrap .flow > li:not(:first-child)::before {
  content: "";
  height: 60px;
  display: block;
  border-left: 4px dotted #e5e5e5;
  position: absolute;
  top: -40px;
  left: 11%;
  z-index: 10;
}
.service__flow-wrap .flow > li dl {
  width: 100%;
  padding-block: 20px;
  padding-inline: 41px 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  border: 2px solid #129588;
  border-radius: 10px;
  position: relative;
}
.service__flow-wrap .flow > li:not(:last-child) dl::before,
.service__flow-wrap .flow > li:not(:last-child) dl::after {
  content: "";
  border: solid transparent;
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.service__flow-wrap .flow > li:not(:last-child) dl::before {
  border-width: 22px;
  border-top-color: #129588;
}
.service__flow-wrap .flow > li:not(:last-child) dl::after {
  border-width: 20px;
  border-top-color: #fff;
}
.service__flow-wrap .flow > li dl dt {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 20px;
  color: #129588;
}
.service__flow-wrap .flow > li dl dt .icon {
  font-size: 13px;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro",
    "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
  color: #fff;
  background: #129588;
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#6b90db", endColorstr="#66d5e9",GradientType=1 );
  padding: 5px 10px;
  display: block;
  border-radius: 20px;
  position: relative;
  z-index: 100;
}

.service-price {
  padding-block: 50px 150px;
}

.service-price__content {
  padding: 60px 15px;
  background-color: #edf7e6;
  max-width: 1080px;
  border-radius: 20px;
  margin-inline: auto;
}

.service-price__text {
  margin-top: 60px;
  font-size: 20px;
  line-height: 2;
  text-align: center;
}

.service-admin {
  background-image: linear-gradient(-45deg, #fef2f5, #fdfaf2, #fef2f5);
  background-color: #f8eaed;
}

.service-admin__media {
  margin-top: 80px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
  padding: 50px;
  background-color: #fff;
  border-radius: 20px;
}

.service-admin__body {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 60%;
  -ms-flex: 0 1 60%;
  flex: 0 1 60%;
}

.service-admin__image {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 40%;
  -ms-flex: 0 1 40%;
  flex: 0 1 40%;
}
.service-admin__image img {
  border-radius: 10px;
}

.service-admin__text {
  text-align: justify;
}

.service-admin__name {
  margin-top: 30px;
  text-align: right;
}

.service-care__content {
  margin-top: 60px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.service-use__content {
  margin-top: 60px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.service-care__list {
  background-color: #fff;
  border-radius: 20px;
  padding: 30px;
  border: 2px solid #a4cd73;
  position: relative;
}
.service-care__list .list {
  font-size: 17px;
}
.service-care__list .list:nth-child(n + 2) {
  margin-top: 10px;
}

.service-care__deco {
  position: absolute;
  top: -30px;
  right: -20px;
}
.service-care__deco img {
  width: 120px;
}

.service-use__item {
  width: 30%;
  background-color: #fff;
  border-radius: 20px;
  padding: 30px 20px;
  border: 2px solid #a4cd73;
  min-height: 420px;
}

.service-care__arrow {
  width: 3%;
}

.service-care__text {
  margin-top: 40px;
  max-width: 1010px;
  margin-inline: auto;
  line-height: 2;
}

.service-use__number {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 20px;
  color: #129588;
}

.service-use__item > div .icon {
  font-size: 13px;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro",
    "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
  color: #fff;
  background: #129588;
  padding: 5px 10px;
  display: block;
  border-radius: 20px;
  position: relative;
  z-index: 100;
}

.service-use__image {
  margin-top: 20px;
}
.service-use__image img {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.service-use__text {
  margin-top: 20px;
  font-size: 14px;
}

.service-cost__inner {
  margin-top: 150px;
}

.service-cost__items {
  margin-top: 60px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.service-cost__item {
  background-color: #edf7e6;
  border-radius: 20px;
  padding: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.service-cost__number {
  background-color: #129588;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 29px;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro",
    "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
  border-radius: 50%;
  color: white;
}

.service-cost__text {
  font-size: 18px;
}

.service-cost__icon img {
  width: 50px;
}

.service-cost__content {
  max-width: 1140px;
  margin-inline: auto;
  margin-top: 60px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.service-cost__body {
  width: 45%;
}

.service-cost__text-head {
  font-size: 19px;
  color: #129588;
}

.service-cost__area {
  width: 55%;
  border: 1px solid #a4cd73;
  padding: 40px;
  border-radius: 20px;
}

/* =====================================================
# company
===================================================== */
.greeting {
  padding-block: 100px;
}

.greeting__inner {
  max-width: 1050px;
  margin-inline: auto;
}

.greeting__content {
  border-top: 1px solid #dfdfdf;
  margin-top: 20px;
  padding-top: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
}

.greeting__body {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.greeting__image {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 30%;
  -ms-flex: 0 0 30%;
  flex: 0 0 30%;
}
.greeting__image img {
  border-radius: 10px;
}

.greeting__text {
  text-align: justify;
  line-height: 2;
}
.greeting__name {
  margin-top: 40px;
  font-size: 18px;
  text-align: right;
}

.vision {
  padding-block: 100px;
  background-image: linear-gradient(-45deg, #edf7e6, #f8fdf4, #fdfaf2);
}

.vision__box {
  max-width: 1070px;
  margin-inline: auto;
  background-color: white;
  padding: 60px;
  border-radius: 20px;
}
.vision__box.is-history {
  background-color: #fafcf7;
}

.vision__content {
  margin-top: 30px;
}

.vision__title {
  margin-top: 20px;
  font-size: 20px;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro",
    "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
  color: #129588;
}

.vision__text {
  margin-top: 10px;
  padding-left: 22px;
}

.vision__text-box {
  margin-top: 50px;
}

.history__title {
  margin-top: 40px;
  font-size: 20px;
}

.history__box {
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  margin-top: 10px;
  background-color: #fff;
  padding: 15px;
}

.company__access {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 980px;
}

.company__access1,
.company__access2 {
  background-color: #f5faf0;
  padding: min(2.624671916vw, 50px);
  border-radius: 20px;
}

.company__access-title {
  font-size: 25px;
  line-height: 100%;
}
.company__access-title img {
  width: 20px;
  margin-right: 12px;
}

.company__access-box {
  margin-top: 20px;
}

.company__access2 .company__access-title img {
  width: 25px;
}

.company-map__button {
  margin-top: 80px;
  text-align: center;
}

.company-map__inner iframe {
  width: 100%;
}

.company-map__item {
  margin-top: 30px;
}
/* =====================================================
# recruit
===================================================== */
.recruit-h2 {
  border-bottom: 1px solid #129588;
  display: block;
}
.recruit-h2__title {
  display: block;
  font-size: 37px;
  font-family: "Noto Serif JP", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro",
    "ＭＳ Ｐ明朝", "MS PMincho", serif;
  color: #129588;
  line-height: 1.5;
  margin-bottom: 5px;
  padding-bottom: 5px;
}
.recruit-h2__description {
  display: block;
  font-size: 22px;
  font-family: "Noto Serif JP", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro",
    "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 500;
  padding-block: 10px;
}

.business__transparent {
  position: relative; /* 基準位置とする */
}

.business__transparent::before {
  content: ""; /* 疑似要素に必須 */
  width: 100%; /* 幅いっぱい */
  height: 100%; /* 高さいっぱい */
  display: block; /* 高さを指定するためにブロック要素にする */
  background: -webkit-gradient(
    linear,
    right top,
    left top,
    color-stop(50%, rgba(255, 255, 255, 0)),
    color-stop(99%, #fff)
  );
  background: linear-gradient(
    270deg,
    rgba(255, 255, 255, 0) 50%,
    #fff 99%
  ); /* 徐々に透明にする */
  position: absolute; /*  */
  top: 0;
  left: 0;
}
.is-case2 .business__transparent::before {
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    color-stop(50%, rgba(255, 255, 255, 0)),
    color-stop(99%, #fff)
  );
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 50%, #fff 99%);
}

.business__title {
  font-size: 30px;
  font-family: "Dancing Script", "メイリオ", "Meiryo", "游ゴシック", "Yu Gothic",
    "ＭＳ Ｐゴシック", sans-serif;
  letter-spacing: 0.1em;
  line-height: 1.5;
}
.business__title::before {
  font-size: 25px;
  content: attr(data-en);
  display: block;
  color: #129588;
  letter-spacing: 0.1em;
}

.business__subtitle {
  margin-top: 15px;
  font-size: min(1.5748031496vw, 30px);
}

.business__intro .column img {
  width: 100%;
}
.business__intro .transparent {
  position: relative; /* 基準位置とする */
}
.business__intro .transparent::before {
  content: ""; /* 疑似要素に必須 */
  width: 100%; /* 幅いっぱい */
  height: 100%; /* 高さいっぱい */
  display: block; /* 高さを指定するためにブロック要素にする */
  background: -webkit-gradient(
    linear,
    right top,
    left top,
    color-stop(70%, rgba(255, 255, 255, 0)),
    color-stop(99%, #ffffff)
  );
  background: linear-gradient(
    270deg,
    rgba(255, 255, 255, 0) 70%,
    #ffffff 99%
  ); /* 徐々に透明にする */
  position: absolute; /*  */
  top: 0;
  left: 0;
}
.business__intro-wrap {
  position: relative;
  padding-inline: 15px;
  max-width: 1710px;
  margin-inline: auto;
}

.working__tel {
  margin-top: 30px;
}
.working__tel .call {
  background-color: #129588;
  color: #fff;
  padding: 7px 15px 7px 10px;
  border-radius: 5px;
  font-size: 20px;
  margin-left: 15px;
}
.working__tel .call::before {
  content: "";
  position: relative;
  top: 4px;
  display: inline-block;
  width: 22px;
  height: 22px;
  background: url(../img/common/tel-icon.webp) center center/contain no-repeat;
}

.company .profile {
  padding-top: 100px;
  padding-bottom: 100px;
}

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

/* =====================================================
# recruit
===================================================== */
.recruit {
  background-image: linear-gradient(-45deg, #edf7e6, #f8fdf4, #fdfaf2);
}

.recruit__table {
  border-radius: 20px;
  margin-top: 50px;
  padding: 60px;
  background-color: #fff;
}

/* =====================================================
# table
===================================================== */
.horizontal-table {
  padding-top: 25px;
}
.horizontal-table.is-history {
  padding-top: 10px;
}
.horizontal-table__inner {
  width: 100%;
  background-color: #fff;
}
.horizontal-table__header {
  width: 25%;
  background-color: #f9f9f9;
  padding: 15px;
  border-bottom: 1px solid #129588;
  vertical-align: middle;
}
.horizontal-table__header:last-child {
  border-right-width: 0;
}
.horizontal-table__header:first-child {
  border-top: 1px solid #129588;
}
.horizontal-table__text {
  padding: 15px;
  border-bottom: 1px solid #ccc;
  vertical-align: middle;
}
.horizontal-table__text:first-of-type {
  border-top: 1px solid #ccc;
}
.horizontal-table .center {
  margin: 0 auto;
}

/* 重ねるメディア
----------------------------------------------------- */
.normal {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.normal._reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.column {
  width: 55%;
  position: relative;
  z-index: 2;
}
.column._reverse {
  margin-left: -10%;
}
.column-outside-right {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-right: calc(50% - 50vw);
  margin-left: -10%;
}
.column-outside-left {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-left: calc(50% - 50vw);
  margin-right: -10%;
  text-align: right;
}
._top-intro .column {
  width: 65%;
}
._top-intro .column-outside-right {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-right: calc(50% - 50vw);
  margin-left: -20%;
}
.column .text-box {
  padding: 3.1496062992vw 3.6745406824vw;
}
.is-business-intro .column .text-box {
  background-color: #fff;
  -webkit-box-shadow: 0 0 20px 0 rgba(136, 136, 136, 0.1);
  box-shadow: 0 0 20px 0 rgba(136, 136, 136, 0.1);
  border-radius: 30px;
}
._top-intro .column .text-box {
  background-color: unset;
  -webkit-box-shadow: unset;
  box-shadow: unset;
}
.column .text-box p {
  font-size: 16px;
  text-align: justify;
}
.is-business-intro .column .text-box p {
  margin-top: 30px;
}
._top-intro .column .text-box p {
  color: #222;
  margin-top: 40px;
}

/* 共通パーツ
----------------------------------------------------- */
.bg-image {
  background: url(../img/common/page-bg.webp) top center repeat;
}

.top-h2__title {
  font-family: "Dancing Script", "メイリオ", "Meiryo", "游ゴシック", "Yu Gothic",
    "ＭＳ Ｐゴシック", sans-serif;
  font-size: min(3.9895013123vw, 76px);
  line-height: 1.18;
  letter-spacing: 5.7px;
  color: #129588;
  display: block;
}
.is-white .top-h2__title {
  color: white;
}
.top-h2__description {
  margin-top: 7px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 24px;
  letter-spacing: 1.8px;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro",
    "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
  color: #129588;
}
.is-white .top-h2__description {
  color: white;
}
.top-h2__description::before {
  content: "";
  width: 65px;
  height: 3px;
  border-radius: 3px;
  background-color: #a4cd73;
  margin-right: 20px;
}
.is-white .top-h2__description::before {
  background-color: white;
}

.list {
  display: block;
  -webkit-font-feature-settings: normal;
  font-feature-settings: normal;
  text-indent: -17px;
  padding-left: 17px;
}

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

.text-right {
  display: block;
  text-align: right;
}

.bg-blue {
  background-color: #edf7e6;
}

.bg-navy {
  background-color: #e7e4fa;
}

#recruit {
  margin-top: -100px;
  padding-top: 100px;
}

/* 左から右にカーテン
---------------------------------------------------- */
.curtainLefttoRight {
  position: relative;
}

.curtainLefttoRight.visible {
  -webkit-animation-name: curtainLeftFadeIn;
  animation-name: curtainLeftFadeIn;
  -webkit-animation-duration: 1.2s;
  animation-duration: 1.2s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

.curtainLefttoRight.visible:before {
  display: block;
  content: "";
  position: absolute;
  z-index: 999;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  background-color: #000;
  -webkit-animation-name: curtainLeft;
  animation-name: curtainLeft;
  -webkit-animation-duration: 1.2s;
  animation-duration: 1.2s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes curtainLeftFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes curtainLeftFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes curtainLeft {
  0% {
    -webkit-transform-origin: left;
    transform-origin: left;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }
  50% {
    -webkit-transform-origin: left;
    transform-origin: left;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  50.001% {
    -webkit-transform-origin: right;
    transform-origin: right;
  }
  100% {
    -webkit-transform-origin: right;
    transform-origin: right;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }
}
@keyframes curtainLeft {
  0% {
    -webkit-transform-origin: left;
    transform-origin: left;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }
  50% {
    -webkit-transform-origin: left;
    transform-origin: left;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  50.001% {
    -webkit-transform-origin: right;
    transform-origin: right;
  }
  100% {
    -webkit-transform-origin: right;
    transform-origin: right;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }
}
/*==================================================
ドロップダウンメニュー
===================================*/
/*2階層目以降は横並びにしない*/
nav ul ul {
  display: block;
}

/*下の階層のulや矢印の基点にするためliにrelativeを指定*/
nav ul li {
  position: relative;
}

/*ナビゲーションのリンク設定*/
nav ul li.has-child li a {
  padding: 10px 15px;
  display: block;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

/*==矢印の設定*/
/*2階層目を持つliの矢印の設定*/
nav ul li.has-child::before {
  content: "";
  position: absolute;
  left: -15px;
  top: 10px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #222;
  border-right: 2px solid #222;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

/*== 2・3階層目の共通設定 */
/*下の階層を持っているulの指定*/
nav li.has-child ul {
  /*絶対配置で位置を指定*/
  position: absolute;
  left: 50%;
  top: 46px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 4;
  /*形状を指定*/
  background: #a4cd73;
  width: 120px;
  /*はじめは非表示*/
  visibility: hidden;
  opacity: 0;
  /*アニメーション設定*/
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

/*hoverしたら表示*/
nav li.has-child:hover > ul,
nav li.has-child ul li:hover > ul,
nav li.has-child:active > ul,
nav li.has-child ul li:active > ul {
  visibility: visible;
  opacity: 1;
}

/*ナビゲーションaタグの形状*/
nav li.has-child ul li a {
  border-bottom: 1px dotted #fff;
}

nav li.has-child ul li:last-child > a {
  border-bottom: none;
}

nav li.has-child ul li a:hover,
nav li.has-child ul li a:active {
  background: #129588;
  color: white;
}

/*==768px以下の形状*/
/* FLOCSS
----------------------------------------------------- */
/* FLOCSS
----------------------------------------------------- */
/*! destyle.css v2.0.2 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -webkit-tap-highlight-color: transparent; /* 3*/
}

/* Sections */
/* ============================================ */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */
dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  -webkit-box-sizing: content-box;
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  text-decoration: underline; /* 2 */
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content */
/* ============================================ */
/**
 * Prevent vertical alignment issues.
 */
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

img {
  max-width: 100%;
}

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable
 */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  outline: 0;
  border-radius: 0;
  text-align: inherit;
}

/**
 * Reset radio and checkbox appearance to preserve their look in iOS.
 */
[type="checkbox"] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
  appearance: checkbox;
}

[type="radio"] {
  -webkit-appearance: radio;
  -moz-appearance: radio;
  appearance: radio;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

button[disabled],
[type="button"][disabled],
[type="reset"][disabled],
[type="submit"][disabled] {
  cursor: default;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Remove arrow in IE10 & IE11
 */
select::-ms-expand {
  display: none;
}

/**
 * Remove padding
 */
option {
  padding: 0;
}

/**
 * Reset to invisible
 */
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the outline style in Safari.
 */
[type="search"] {
  outline-offset: -2px; /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Clickable labels
 */
label[for] {
  cursor: pointer;
}

/* Interactive */
/* ============================================ */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/*
 * Remove outline for editable content.
 */
[contenteditable] {
  outline: none;
}

/* Table */
/* ============================================ */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

/* Misc */
/* ============================================ */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

main {
  overflow: hidden; /*横スクロールの発生を防止*/
}

body {
  font-size: 16px;
  font-family: "Zen Kaku Gothic New", "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック",
    sans-serif;
  line-height: 1.7;
  color: #222;
}

a {
  -webkit-transition: 0.25s;
  transition: 0.25s;
}

a:hover {
  text-decoration: none;
}

img {
  height: auto;
}

/* FLOCSS
----------------------------------------------------- */
.l-inner {
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 15px;
  padding-left: 15px;
  padding-top: 50px;
  padding-bottom: 50px;
}
.l-inner--has-column {
  display: grid;
  gap: 40px;
  grid-template-columns: 3fr minmax(260px, 1fr);
}

/* FLOCSS
----------------------------------------------------- */
.c-btn {
  display: inline-block;
  width: 300px;
  max-width: 100%;
  padding: 20px 10px;
  background-color: #e25c00;
  border: 2px solid transparent;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  color: #fff;
  font-size: 17px;
  text-align: center;
  text-decoration: none;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}
.c-btn:focus,
.c-btn:hover {
  background-color: #fff;
  border-color: currentColor;
  color: #e25c00;
}
.c-btn--arrow-right {
  position: relative;
  padding-right: 20px;
  padding-left: 13.8px;
}
.c-btn--arrow-right::after {
  content: "\f061";
  position: absolute;
  top: 50%;
  right: 8.3px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.c-btn--icon {
  position: relative;
  padding-right: 20px;
  padding-left: 13.8px;
}
.c-btn--icon::after {
  content: "";
  position: absolute;
  left: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 40px;
  height: 60px;
  background: transparent url(/images/nav_07.png) no-repeat center
    center/contain;
}
.c-btn--large {
  width: 340px;
  padding-top: 25px;
  padding-bottom: 25px;
  font-size: 20px;
}
.c-btn--warning {
  background-color: #f1de00;
  color: #222;
}
.c-btn--warning:focus,
.c-btn--warning:hover {
  border-color: #f1de00;
  color: #222;
}

.c-rounded-btn {
  display: inline-block;
  width: 236px;
  max-width: 100%;
  padding: 15px 10px;
  background-color: #e25c00;
  border: 2px solid transparent;
  border-bottom-color: #d40152;
  border-radius: 10px;
  color: #fff;
  font-size: 17px;
  text-align: center;
  text-decoration: none;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}
.c-rounded-btn:focus,
.c-rounded-btn:hover {
  background-color: #fff;
  border-color: currentColor;
  color: #e25c00;
}

.c-before-icon-btn {
  position: relative;
  display: inline-block;
  padding: 0.2em 0.3em;
  border: 1px solid currentColor;
  color: #e25c00;
  text-decoration: none;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}
.c-before-icon-btn:focus,
.c-before-icon-btn:hover {
  background-color: #e25c00;
  color: #fff;
}
.c-before-icon-btn::before {
  display: inline-block;
  margin-right: 0.5em;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}
.c-before-icon-btn--download::before {
  content: "\f019";
}
.c-before-icon-btn--zoom::before {
  content: "\f00e";
  -webkit-transform: translateY(-6%);
  transform: translateY(-6%);
}

/* FLOCSS
----------------------------------------------------- */
.p-breadcrumb {
  margin: 10px 20px;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.p-breadcrumb li {
  list-style: none;
}
.p-breadcrumb li:after {
  content: ">";
  padding: 0 5px;
}
.p-breadcrumb li:last-child:after {
  content: "";
}
.p-breadcrumb li a {
  text-decoration: none;
}
.p-breadcrumb li a:hover {
  text-decoration: underline;
}
.p-breadcrumb .u-current {
  color: #129588;
}

.mb-1 {
  margin-bottom: 10px;
}

.mb-2 {
  margin-bottom: 20px;
}

.mb-3 {
  margin-bottom: 30px;
}

.mb-4 {
  margin-bottom: 40px;
}

.mb-5 {
  margin-bottom: 50px;
}

.mb-6 {
  margin-bottom: 60px;
}

.mb-7 {
  margin-bottom: 70px;
}

.mb-8 {
  margin-bottom: 80px;
}

.mb-9 {
  margin-bottom: 90px;
}

.mb-10 {
  margin-bottom: 100px;
}

.mt-1 {
  margin-top: 10px;
}

.mt-2 {
  margin-top: 20px;
}

.mt-3 {
  margin-top: 30px;
}

.mt-4 {
  margin-top: 40px;
}

.mt-5 {
  margin-top: 50px;
}

.mt-6 {
  margin-top: 60px;
}

.mt-7 {
  margin-top: 70px;
}

.mt-8 {
  margin-top: 80px;
}

.mt-9 {
  margin-top: 90px;
}

.mt-10 {
  margin-top: 100px;
}

@media screen and (max-width: 767px) {
  #page_top a {
    width: 55px;
    height: 55px;
    line-height: 55px;
  }
  .section {
    padding-block: 50px;
  }
  .heading__ja {
    line-height: 1.2;
    font-size: 25px;
  }
  .heading__en {
    font-size: 12px;
  }
  .heading-h3__en {
    font-size: 27px;
  }
  .heading-h3__ja {
    font-size: 16px;
    padding-left: 0px;
  }
  #stay::after,
  .stay::after {
    display: none;
  }
  .drawer-content ul li.has-child a::after {
    display: none;
  }
  .footer__logo img {
    width: 240px;
  }
  .footer__logo img {
    width: 85%;
  }
  .fv::after {
    height: 32.5945241199vw;
  }
  .slide {
    height: 350px;
  }
  .fv__message {
    left: 5%;
  }
  .scroll__wrap .scroll-text {
    font-size: 7px;
  }
  .mv-jumbotron {
    height: 290px;
  }
  .mv .mv-h2 {
    padding-block: 20px;
    padding-inline: 30px;
    font-size: 22px;
    padding-bottom: 25px;
  }
  .mv .mv-h2 span {
    font-size: 13px;
  }
  .mv .mv-h2 span::before {
    width: 30px;
  }
  .mv .mv-h2::before {
    font-size: 16px;
    top: 55%;
    width: 100%;
  }
  .btn {
    font-size: 16px;
  }
  .btn.is-topAbout {
    width: 200px;
  }
  .btn._top-business {
    width: 200px;
  }
  .btn._company {
    width: 200px;
    font-size: 16px;
  }
  .top-intro {
    padding-block: 25px 50px;
  }
  .top-intro__text {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.7;
  }
  .top-about__normal {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    gap: 40px !important;
  }
  .top-about__normal._reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .top-about__column {
    width: 100%;
  }
  .top-about__column-outside-right {
    margin-left: 0;
    margin-right: 0;
  }
  .top-about__button {
    margin-top: 35px;
    text-align: center;
  }
  .top-information .top-about__text-box {
    margin-top: 0px;
  }
  .top-service {
    padding-block: 60px;
    background: url(../img/common/top-merit-bg.webp) center left -200px / cover no-repeat;
  }
  .top-merit__items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 30px;
  }
  .top-merit__item {
    width: 100%;
  }
  .top-merit__title {
    font-size: 16px;
  }
  .top-news__link::after {
    right: 10px;
    width: 25px;
    height: 25px;
  }
  .top-doctor__image {
    top: -75px;
  }
  .top-doctor__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .top-doctor__button {
    text-align: center;
    margin-top: 35px;
  }
  .top-contact {
    padding-bottom: 50px;
    margin-top: 0px;
  }
  .top-contact__content {
    border-radius: 30px;
  }
  .top-contact__body {
    padding: 30px 15px;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
  }
  .top-contact__access {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
    padding: 30px 15px;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
  }
  .top-contact__btn {
    font-size: 16px !important;
    padding-block: 13px;
  }
  .top-info__categories {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0px;
  }
  .top-info__category {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .voice__content {
    padding: 40px 15px;
  }
  .voice__image img {
    width: 100%;
  }
  .voice__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .voice__dt {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  .voice__dd {
    background-color: #fdfaf2;
  }
  .recruit-merit__items {
    margin-top: 50px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 30px;
  }
  .recruit-merit__item {
    width: 100%;
  }
  .recruit-merit__title {
    font-size: 16px;
  }
  .recruit__head-text {
    font-size: 16px;
    margin-top: 40px;
  }
  .recruit__driver-title {
    font-size: 17px;
  }
  .recruit__driver-text {
    line-height: 1.7;
  }
  .news__link::after {
    right: 10px;
    width: 25px;
    height: 25px;
  }
  .detail__title {
    font-size: 19px;
  }
  .detail__text-box {
    margin-top: 30px;
  }
  .detail__history-back {
    padding-top: 50px;
  }
  .tel-fax {
    padding-block: 50px;
  }
  .tel-fax__intro {
    letter-spacing: 0em;
    font-size: 20px;
  }
  .tel-fax__box {
    padding: 25px 10px;
  }
  .tel-fax__head {
    font-size: 14px;
  }
  .tel-fax__line {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .mail-form {
    padding-block: 50px;
  }
  .mail-form__title {
    font-size: 18px;
  }
  .mail-form__text {
    margin-top: 10px;
  }
  .mail-form .box-scroll__title {
    font-size: 16px;
  }
  .mail-form .privacy-btn {
    width: 100%;
    margin-bottom: 0px;
  }
  .mail-form .privacy-btn__wrapper {
    margin-top: 30px;
    margin-bottom: 15px;
  }
  .mail-form .send-btn__wrapper {
    width: 100%;
    margin-bottom: 0px;
    display: block;
  }
  .mail-form .send-btn {
    width: 100%;
    margin-bottom: 15px;
  }
  .mail-form .send-btn--back {
    margin-right: 0px;
  }
  .mail-form input[type="radio"] + span,
  .mail-form input[type="checkbox"] + span {
    padding: 0.1em 0.3em 0.3em 2em;
    font-size: 15px;
    margin-right: 0;
    line-height: 1.4;
    letter-spacing: 0;
  }
  .mail-form .selectWrap {
    width: 60%;
  }
  .service-h2 {
    font-size: 25px;
    padding-top: 25px;
  }
  .service-h2::before {
    font-size: 61px;
    top: -33px;
  }
  .about__text {
    margin-top: 25px;
  }
  .service-one__content {
    padding: 30px 15px;
  }
  .service__content {
    padding: 30px 15px;
  }
  .service__flow-wrap {
    margin-top: 50px;
  }
  .service__flow-wrap .flow > li:not(:first-child)::before {
    display: none;
  }
  .service__flow-wrap .flow > li dl {
    padding-inline: 15px;
  }
  .service__flow-wrap .flow > li dl dt {
    gap: 10px;
    font-size: 18px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .service-price {
    padding-block: 0px 60px;
  }
  .service-price__content {
    padding: 30px 15px;
  }
  .service-price__text {
    margin-top: 40px;
    font-size: 16px;
  }
  .service-admin__media {
    margin-top: 50px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 40px 15px;
  }
  .service-care__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .service-use__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .service-care__list .list {
    font-size: 16px;
  }
  .service-care__arrow {
    width: 30px;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  .service-use__image {
    text-align: center;
  }
  .service-cost__inner {
    margin-top: 60px;
  }
  .service-cost__items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .service-cost__text {
    font-size: 16px;
  }
  .service-cost__icon img {
    width: 30px;
  }
  .service-cost__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .service-cost__body {
    width: 100%;
  }
  .greeting {
    padding-block: 50px;
  }
  .greeting__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 30px;
    margin-top: 10px;
    padding-top: 30px;
  }
  .greeting__name {
    margin-top: 30px;
  }
  .vision {
    padding-block: 50px;
  }
  .vision__content {
    margin-top: 20px;
  }
  .vision__title {
    font-size: 18px;
    text-align: justify;
  }
  .vision__text {
    padding-left: 0px;
  }
  .vision__text-box {
    margin-top: 30px;
  }
  .history__title {
    margin-top: 30px;
    font-size: 18px;
  }
  .works__attention {
    margin-top: 12px;
    text-align: center;
    color: #888;
  }
  .company__access {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }
  .company__access1,
  .company__access2 {
    padding: 30px 15px;
  }
  .company__access-title {
    font-size: 20px;
  }
  .company__access-title img {
    width: 15px;
  }
  .company__access2 .company__access-title img {
    width: 20px;
  }
  .company-map__button {
    margin-top: 30px;
  }
  .business__title {
    font-size: 20px;
  }
  .business__title::before {
    font-size: 17px;
  }
  .business__intro-wrap {
    padding-block: 40px 30px;
  }
  .company .profile {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .company__banks {
    grid-template-columns: 1fr;
  }
  .recruit__table {
    margin-top: 35px;
    padding: 30px 15px;
  }
  .horizontal-table__header {
    width: 100%;
    border: 1px solid #e1e1e1;
    background-color: #e1e1e1;
    padding: 10px;
  }
  .horizontal-table__header:first-child {
    border-top-width: 0;
  }
  .horizontal-table__text {
    border-left: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    border-right: 1px solid #ccc;
  }
  .horizontal-table__text:first-of-type {
    border-top-width: 0;
  }
  .horizontal-table__text {
    width: 100%;
  }
  .horizontal-table__row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .normal {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .normal._reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .column {
    width: 100%;
  }
  .column-outside-right {
    margin-left: 0;
    margin-right: 0;
  }
  .column-outside-left {
    margin-left: 0;
    margin-right: 0;
  }
  ._top-intro .column {
    width: 100%;
  }
  ._top-intro .column-outside-right {
    margin-left: 0;
    margin-right: 0;
  }
  .is-business-intro .column .text-box {
    padding: 20px;
  }
  ._top-intro .column .text-box p {
    margin-top: 20px;
  }
  .md-none {
    display: none;
  }
  .l-inner--has-column {
    grid-template-columns: 1fr;
  }
  .p-breadcrumb {
    font-size: 14px;
  }
  .hidden-sp {
    display: none;
  }
  .mb-2 {
    margin-bottom: 10px;
  }
  .mb-3 {
    margin-bottom: 15px;
  }
  .mb-4 {
    margin-bottom: 20px;
  }
  .mb-5 {
    margin-bottom: 25px;
  }
  .mb-6 {
    margin-bottom: 30px;
  }
  .mb-7 {
    margin-bottom: 35px;
  }
  .mb-8 {
    margin-bottom: 40px;
  }
  .mb-9 {
    margin-bottom: 45px;
  }
  .mb-10 {
    margin-bottom: 50px;
  }
  .mt-2 {
    margin-top: 10px;
  }
  .mt-3 {
    margin-top: 15px;
  }
  .mt-4 {
    margin-top: 20px;
  }
  .mt-5 {
    margin-top: 25px;
  }
  .mt-6 {
    margin-top: 30px;
  }
  .mt-7 {
    margin-top: 35px;
  }
  .mt-8 {
    margin-top: 40px;
  }
  .mt-9 {
    margin-top: 45px;
  }
  .mt-10 {
    margin-top: 50px;
  }
}

@media screen and (min-width: 768px) {
  #page_top a:focus,
  #page_top a:hover {
    opacity: 0.6;
  }
  .top-header__line img:focus,
  .top-header__line img:hover,
  .top-header__insta img:focus,
  .top-header__insta img:hover,
  .header__insta img:focus,
  .header__insta img:hover {
    opacity: 0.6;
  }
  .top-header-nav__link:hover,
  .header-nav__link:hover {
    color: white;
  }
  .top-header-nav__link:hover::after,
  .header-nav__link:hover::after {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  .footer .address-area__box .location:focus,
  .footer .address-area__box .location:hover {
    opacity: 0.6;
  }
  .footer-nav__link:focus,
  .footer-nav__link:hover {
    opacity: 0.6;
  }
  .btn:focus,
  .btn:hover {
    background-color: #a4cd73;
    color: #1b1b1b;
  }
  .btn._top-business:focus,
  .btn._top-business:hover {
    background-color: #222;
  }
  .btn._recruit:focus,
  .btn._recruit:hover {
    background-color: #fdfaf2;
  }
  /* .top-news__link:focus,
  .top-news__link:hover {
    background-color: rgba(164, 205, 115, 0.1);
  } */
  .top-contact__btn {
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;
  }
  .top-contact__btn:focus,
  .top-contact__btn:hover {
    background-color: #a4cd73;
  }
  .top-info__category:focus,
  .top-info__category:hover {
    background-color: #a4cd73;
  }
  .qa__inner {
    padding-left: 30px;
    padding-right: 30px;
    max-width: 860px;
  }
  .qa__boxes {
    margin-top: 74px;
  }
  .qa-box__head {
    padding: 29px 77px 17px 17px;
  }
  .qa-box__head::after {
    right: 22px;
    right: 18px;
    margin-top: 2px;
  }
  .qa-box__head-icon {
    left: 17px;
  }
  .qa-box__head-text {
    font-size: 18px;
    line-height: 27px; /* 168.75% */
    letter-spacing: 1.28px;
  }
  .qa-box__body {
    padding: 3px 33px 17px 17px;
  }
  .qa-box__a {
    gap: 10px;
  }
  .qa-box__a-text {
    font-size: 17px;
    line-height: 27px; /* 168.75% */
    letter-spacing: 1.28px;
    padding-top: 7px;
  }
  /* .news__link:focus, .news__link:hover {
    background-color: rgba(204, 204, 204, 0.1);
  } */
  .detail__file {
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;
  }
  .detail__file:focus,
  .detail__file:hover {
    background-color: #efefef;
  }
  .history__btn:focus,
  .history__btn:hover {
    background: #a4cd73;
  }
  .history__btn:focus:after,
  .history__btn:hover:after {
    border-color: #fff;
  }
  .mail-form .privacy__link:hover {
    color: #999;
  }
  .mail-form .privacy-btn:focus,
  .mail-form .privacy-btn:hover {
    opacity: 0.6;
  }
  .mail-form .send-btn:focus,
  .mail-form .send-btn:hover {
    opacity: 0.6;
  }
  .works__attention {
    display: none;
  }
  .hidden-pc {
    display: none;
  }
}

@media screen and (max-width: 1199px) {
  .top-header__inner,
  .header__inner {
    height: 80px;
  }
  .top-header-logo-area__logo--img,
  .header-logo-area__logo--img {
    width: 300px;
  }
  .top-header__right-area,
  .header__right-area {
    display: none;
  }
  .top-header-nav,
  .header-nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .top-header-nav__item,
  .header-nav__item {
    margin-bottom: 10px;
  }
  .drawer-icon {
    display: block;
  }
  .drawer-content ul li .no-border {
    border-bottom-width: 0 !important;
  }
  .drawer-content ul li .border-top {
    border-top: 1px dotted #fff;
  }
  .footer__inner-wrapper {
    padding-block: 80px 350px;
    display: block;
  }
  .footer__company-area {
    text-align: center;
    margin-bottom: 10px;
  }
  .footer .address-area__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 14px;
  }
  .footer .address-area__box .location {
    text-align: center;
    margin-bottom: 0px;
    margin-left: 0px;
  }
  .footer .address-area__address {
    text-align: center;
  }
  .footer__nav-area {
    margin-top: 20px;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .footer-nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }
  .footer-nav__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
  }
  .footer-nav__link {
    letter-spacing: 0;
  }
  .fv {
    margin-top: 80px;
  }
  .picture {
    margin-left: calc(100vw - 77.9166666667%);
  }
  .slide {
    border-bottom-left-radius: 11.6763969975vw;
  }
  .fv__catch1,
  .fv__catch2 {
    font-size: 4.9868766404vw;
  }
  .fv__title {
    font-size: 2.9190992494vw;
  }
  .scroll__wrap {
    bottom: 3%;
  }
  .mv {
    background-color: #fff;
    margin-top: 80px;
  }
  .top-about__text {
    font-size: 16px;
    padding-left: 0px;
  }
  .top-news {
    padding-top: 90px;
  }
  .top-news__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .top-news__title {
    width: 90%;
    font-size: 16px;
  }
  .top-doctor__textBox {
    max-width: 450px;
  }
  .top-doctor__text {
    margin-top: 60px;
    font-size: 16px;
  }
  .top-contact {
    margin-top: -50px;
    padding-bottom: 80px;
  }
  .news {
    padding-block: 90px;
  }
  .news__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .news__title {
    /* width: 90%; */
    font-size: 16px;
  }
  .detail {
    padding-block: 90px;
  }
  .detail__content {
    display: block;
  }
  .working__inner {
    gap: 30px;
  }
  .service-admin__media {
    gap: 30px;
    padding-inline: 30px;
  }
  .service-care__deco {
    top: -15px;
    right: -10px;
  }
  .service-care__deco img {
    width: 80px;
  }
  .recruit-h2__title {
    -webkit-font-feature-settings: "palt";
    font-feature-settings: "palt";
    font-size: 31px;
  }
  .business__subtitle {
    font-size: 2.5020850709vw;
  }
  .column .text-box {
    padding: 30px;
  }
  .is-business-intro .column .text-box p {
    font-size: 1.5012510425vw;
  }
  .top-h2__title {
    font-size: 40px;
  }
  .top-h2__description {
    font-size: 18px;
  }
}

@media screen and (max-width: 1199px) and (max-width: 767px) {
  .top-header-logo-area__logo--img,
  .header-logo-area__logo--img {
    width: 230px;
  }
  .picture {
    margin-left: 10%;
  }
  .fv__catch1,
  .fv__catch2 {
    font-size: 11.0821382008vw;
  }
  .fv__title {
    font-size: 6.518904824vw;
  }
  .scroll__wrap {
    left: 1px;
  }
  .mv-jumbotron__text-wrapper {
    font-size: 40px;
    width: 100%;
  }
  .top-news {
    padding-top: 60px;
    padding-bottom: 100px;
  }
  .top-doctor__text {
    margin-top: calc(100px + 75px);
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.88);
    border-radius: 10px;
  }
  .news {
    padding-block: 60px;
  }
  .detail {
    padding-block: 60px;
  }
  .detail__content {
    margin-top: 30px;
  }
  .business__subtitle {
    font-size: 20px;
  }
  .is-business-intro .column .text-box p {
    font-size: 16px;
  }
}

@media screen and (max-width: 1023px) {
  .footer {
    background: url(../img/common/footer-bg-sp.webp) left 100% / cover no-repeat;
  }
  .footer .address-area .tel {
    margin-top: 20px;
  }
  .top-intro__inner {
    text-align: justify;
  }
  .top-intro__title {
    font-size: 27px;
  }
  .top-about {
    padding-bottom: 60px;
  }
  .top-service__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .top-service__content .text-box {
    width: 100%;
  }
  .top-doctor {
    padding-bottom: 60px;
  }
  .top-doctor__image img {
    max-width: 400px;
  }
  .top-contact__text {
    font-size: 16px;
  }
  .top-contact__btn,
  .top-contact__tel-btn {
    font-size: 20px;
    width: 285px;
  }
  .top-contact__btn img,
  .top-contact__tel-btn img {
    width: 25px;
  }
  .voice__media {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 30px;
  }
  .recruit-merit__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .benefits__items {
    gap: 20px;
  }
  .benefits__image img {
    height: 140px;
  }
  .benefits__body {
    font-size: 16px;
    width: 155px;
  }
  .detail__files {
    gap: 20px;
  }
  .tel-fax__wrapper {
    margin-top: 30px;
    grid-template-columns: 1fr;
    max-width: 400px;
  }
  .tel-fax .tel-number {
    font-size: 28px;
  }
  .mail-form .horizontal-table {
    margin-top: 20px;
  }
  .mail-form .horizontal-table__inner {
    font-size: 16px;
  }
  .mail-form .horizontal-table__header {
    border-bottom-width: 0;
    border-left: unset;
    background-color: #efefef;
    width: 100%;
    border-right: 0;
    padding: 10px;
  }
  .mail-form .horizontal-table__text {
    border-bottom-width: 0;
    border-inline: unset;
    width: 100%;
    padding: 10px 0;
  }
  .mail-form .horizontal-table__row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .mail-form .box-scroll {
    height: 220px;
    margin-bottom: 15px;
    padding: 15px;
    word-break: break-all;
  }
  .service-care__list {
    padding: 30px 15px;
  }
  .service-use__item {
    padding: 30px 15px;
  }
  .service-use__number {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .service-cost__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .service-cost__area {
    padding: 30px 15px;
  }
  .vision__box {
    padding: 30px 15px;
  }
  .company-map__inner iframe {
    height: 300px;
  }
  .recruit-h2__description {
    display: block;
    font-size: 18px;
  }
  .working__tel .head {
    display: block;
  }
  .working__tel .call {
    display: inline-block;
    margin-top: 10px;
    margin-left: 0px;
  }
  .top-h2__description::before {
    width: 30px;
  }
  .sp-none {
    display: none;
  }
}

@media screen and (max-width: 1199px) and (max-width: 1023px) {
  .footer__inner-wrapper {
    padding-block: 80px 200px;
  }
  .slide {
    border-bottom-left-radius: 10.4302477184vw;
  }
  .top-doctor__textBox {
    max-width: 350px;
  }
  .recruit-merit {
    background: url(../img/common/top-service-bg.webp) center left/cover
      no-repeat;
  }
  .working__inner {
    gap: 20px;
  }
  .recruit-h2__title {
    font-size: 25px;
    letter-spacing: 0;
  }
  .column .text-box {
    margin-top: 0px;
  }
  .top-h2__description {
    letter-spacing: normal;
  }
}

@media screen and (min-width: 1024px) {
  .footer .lg-only {
    display: none;
  }
  .hidden-tab {
    display: none;
  }
}

@media (max-width: 1350px) {
  .scroll__wrap .scroll-border {
    height: 80px;
    top: 14px;
  }
  .scroll__wrap .scroll-border::after {
    height: 15px;
    top: 15px;
  }
}

@media screen and (max-width: 1023px) and (max-width: 767px) {
  .top-intro__title {
    font-size: 20px;
  }
  .top-about {
    padding-top: 60px;
  }
  .top-doctor {
    margin-top: 75px;
  }
  .top-doctor__image img {
    width: 335px;
  }
  .top-contact__btn,
  .top-contact__tel-btn {
    width: 250px;
  }
  .voice__media {
    gap: 20px;
  }
  .benefits__items {
    gap: 40px;
    margin-top: 50px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .detail__files {
    margin-top: 50px;
  }
  .tel-fax .tel-number {
    margin-block: 10px;
    padding-left: 0;
  }
  .service-use__item {
    width: 100%;
  }
  .service-cost__item {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
  }
  .service-cost__area {
    width: 100%;
  }
  .company-map__inner iframe {
    height: 250px;
  }
}

@media screen and (max-width: 1199px) and (max-width: 1023px) and (max-width: 767px) {
  .top-about__text-box {
    margin-top: 0px;
    width: 100%;
    max-width: 100%;
  }
  .top-doctor__textBox {
    width: 100%;
  }
  .recruit-merit {
    padding-block: 60px;
    background: url(../img/common/top-service-bg.webp) center left -200px / cover
      no-repeat;
  }
  .working__inner {
    margin-top: 30px;
    grid-template-columns: 1fr;
  }
  .column .text-box {
    padding: 0 0 20px;
  }
  .top-h2__description {
    font-size: 16px;
  }
}

@media screen and (max-width: 768px) {
  nav {
    padding: 0;
  }
  nav ul {
    display: block;
  }
  nav li.has-child ul,
  nav li.has-child ul ul {
    position: relative;
    left: 0;
    top: 0;
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
    width: 100%;
    visibility: visible; /*JSで制御するため一旦表示*/
    opacity: 1; /*JSで制御するため一旦表示*/
    display: none; /*JSのslidetoggleで表示させるため非表示に*/
    -webkit-transition: none;
    transition: none; /*JSで制御するためCSSのアニメーションを切る*/
  }
  nav ul li.has-child ul li a {
    padding-inline: 20px 15px;
    color: #222;
    border-bottom-width: 0;
  }
  /*矢印の位置と向き*/
  nav ul li.has-child::before {
    border-top: 2px solid white;
    border-right: 2px solid white;
    width: 7px;
    height: 7px;
    left: auto;
    top: 25px;
    right: 20px;
  }
  nav ul li.has-child.active {
    border-bottom: none;
  }
  nav ul li.has-child.active::before {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
}
/*# sourceMappingURL=style.css.map */
.mail-form .send-btn--back {
  margin-right: 0px;
}
