@charset "UTF-8";
html {
  font-size: 17px;
}
@media screen and (max-width: 768px) {
  html {
    font-size: 4.2666666667vw;
  }
}

body {
  font-family: "Noto Sans JP";
  line-height: 1.7;
  color: #333;
  letter-spacing: 0.05rem;
}

/* ↓ chromeの画像のぼやけ対策 -------*/
img {
  backface-visibility: hidden;
}

/* ↓ pcのみに表示する要素に付ける -------*/
.pcmode {
  display: block !important;
}
@media screen and (max-width: 768px) {
  .pcmode {
    display: none !important;
  }
}

/* ↓ スマホのみに表示する要素に付ける -------*/
.spmode {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .spmode {
    display: block !important;
  }
}

/* ↓ フェイドインアニメーション要素に付ける -------*/
.js-observe,
.js-observeShort {
  opacity: 0;
}

/* ↓ フォントの定義 -------*/
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  src: url(../webfonts/NotoSansJP-Regular.woff2) format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 700;
  src: url(../webfonts/NotoSansJP-Bold.woff2) format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "Noto Serif JP";
  font-style: normal;
  font-weight: 400;
  src: url(../webfonts/NotoSerifJP-Regular.woff2) format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "Noto Serif JP";
  font-style: normal;
  font-weight: 700;
  src: url(../webfonts/NotoSerifJP-Bold.woff2) format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "M PLUS 2";
  font-style: normal;
  font-weight: 400;
  src: url(../webfonts/MPLUS2-Regular.woff2) format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "M PLUS 2";
  font-style: normal;
  font-weight: 700;
  src: url(../webfonts/MPLUS2-Bold.woff2) format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "M PLUS Rounded 1c";
  font-style: normal;
  font-weight: 400;
  src: url(../webfonts/MPLUSRounded1c-Regular.woff2) format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "M PLUS Rounded 1c";
  font-style: normal;
  font-weight: 700;
  src: url(../webfonts/MPLUSRounded1c-Bold.woff2) format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  src: url(../webfonts/Roboto-Regular.woff2) format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  src: url(../webfonts/Roboto-Bold.woff2) format("woff2");
  font-display: swap;
}
/* ↓ アニメーションの定義 -------*/
@keyframes shiny {
  0% {
    opacity: 0;
    transform: scale(0) rotate(25deg);
  }
  50% {
    opacity: 1;
    transform: scale(1) rotate(25deg);
  }
  100% {
    opacity: 0;
    transform: scale(50) rotate(25deg);
  }
}
@keyframes scroll-btn {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(200px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(200px);
  }
}
@keyframes leaf-move {
  from {
    transform: rotate(7.5deg);
  }
  to {
    transform: rotate(-7.5deg);
  }
}
.fadeIn {
  animation: fadeIn 3s ease 0s both 1 normal;
}

.fadeInRight {
  animation: fadeInRight 1.5s ease 0s both 1 normal;
}

.fadeInLeft {
  animation: fadeInLeft 1.5s ease 0s both 1 normal;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
.fadeInUp0 {
  animation: fadeInUp0 1.25s ease 0s both 1 normal;
}

.fadeInUp1 {
  animation: fadeInUp1 1.25s ease 0.5s both 1 normal;
}

.fadeInUp2 {
  animation: fadeInUp2 1.25s ease 1s both 1 normal;
}

.fadeInUp3 {
  animation: fadeInUp3 1.25s ease 1.5s both 1 normal;
}

.fadeInUp4 {
  animation: fadeInUp4 1.25s ease 2s both 1 normal;
}

.fadeInUp5 {
  animation: fadeInUp5 1.25s ease 2.5s both 1 normal;
}

@keyframes fadeInUp0 {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeInUp1 {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeInUp2 {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeInUp3 {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeInUp4 {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeInUp5 {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15);
  }
}
/* ↓ インナーの定義 -------*/
.w1200 {
  width: 1200px;
  max-width: 95%;
  margin: 0 auto;
}

.w1093 {
  width: 1093px;
  max-width: 80%;
  margin: 0 auto;
}

.w1080 {
  width: 1080px;
  max-width: 95%;
  margin: 0 auto;
}

.w890 {
  width: 890px;
  max-width: 75%;
  margin: 0 auto;
}

.w850 {
  width: 850px;
  max-width: 95%;
  margin: 0 auto;
}

.w555 {
  width: 555px;
  max-width: 95%;
  margin: 0 auto;
}
@media screen and (max-width: 1300px) {
  .w555 {
    width: 375px;
  }
}
@media screen and (max-width: 768px) {
  .w555 {
    width: 100%;
    margin-right: 0;
  }
}

@media screen and (max-width: 768px) {
  .sw100 {
    width: 100%;
    max-width: 100%;
  }
  .sw98 {
    max-width: 98%;
  }
  .sw92 {
    max-width: 92%;
  }
  .sw88 {
    max-width: 88%;
  }
  .sw82 {
    max-width: 82%;
  }
}
.btn-basic {
  display: block;
  width: 16rem;
  padding: 1rem 0 !important;
  font-size: clamp(1rem, 181.8823529412rem + -400vw, 1.25rem);
  line-height: 1.9 !important;
  color: #fff !important;
  text-align: center;
  background: #f5cf1f;
  border-radius: 9999px;
  cursor: pointer;
  transition: ease opacity 0.3s;
}
@media (any-hover: hover) {
  .btn-basic:hover {
    opacity: 0.3;
  }
}
.btn-basic.btn-modal {
  background: #f5cf1f;
}
@media screen and (max-width: 768px) {
  .btn-basic {
    width: 19rem;
  }
}

.bnr-contact {
  position: relative;
  padding: 4rem;
  overflow: hidden;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .bnr-contact {
    padding: 3rem 1rem;
  }
}
.bnr-contact h2 {
  margin-bottom: 2.5rem;
  font-size: clamp(1.375rem, -360.1176470588rem + 800vw, 1.875rem);
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .bnr-contact h2 {
    margin-bottom: 2rem;
  }
}
.bnr-contact h2 span {
  display: inline-block;
  background: linear-gradient(transparent 60%, #f5cf1f 60%);
}
.bnr-contact p {
  position: relative;
  display: inline-block;
  margin-bottom: 2.5rem;
  font-size: clamp(0.9375rem, -134.6470588235rem + 300vw, 1.125rem);
  line-height: 2.1;
}
@media screen and (max-width: 768px) {
  .bnr-contact p {
    margin-bottom: 1.5rem;
  }
}
.bnr-contact--darc {
  background: rgba(158, 158, 158, 0.3019607843);
}
.bnr-contact--darc p:before {
  position: absolute;
  display: block;
  content: "";
  inset: auto -25rem -13rem auto;
  width: 20rem;
  height: 20rem;
  background: url(../img/image_man.png) center/cover;
}
@media screen and (max-width: 768px) {
  .bnr-contact--darc p:before {
    display: none;
  }
}
.bnr-contact--freedom {
  background: rgba(158, 158, 158, 0.102);
}
.bnr-contact--freedom .btn-basic {
  flex-direction: row !important;
  background: #f5cf1f !important;
}
.bnr-contact--freedom img {
  display: block;
  margin: 0 auto 1.5rem;
}
@media screen and (max-width: 768px) {
  .bnr-contact--freedom img {
    width: 10rem;
    margin: 0 auto 1rem;
  }
}

.contact-btns {
  display: flex;
  gap: 2rem;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .contact-btns {
    flex-wrap: wrap;
    gap: 1rem;
  }
}
.contact-btns .btn-basic {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 19rem;
  font-size: clamp(1.25rem, 91.6470588235rem + -200vw, 1.375rem);
  line-height: 1.7 !important;
  background: #f5cf1f;
}
@media screen and (max-width: 768px) {
  .contact-btns .btn-basic {
    width: 100%;
  }
}
.contact-btns .btn-basic.btn-tel {
  flex-direction: column;
  background: #1e9dd8;
}
.contact-btns .btn-basic i {
  margin-right: 0.25rem;
  transform: translateY(0.1rem);
}

.bg-gray {
  background: rgba(51, 51, 51, 0.05);
}

.ttlSec {
  text-align: center;
}
.ttlSec h1 {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 9.2rem;
  font-family: "M PLUS 2";
  font-size: clamp(1.25rem, -450.5882352941rem + 1000vw, 1.875rem);
  font-weight: 400;
  line-height: 1.65;
  color: #1e9dd8;
  background: rgba(30, 157, 216, 0.1);
}
@media screen and (max-width: 768px) {
  .ttlSec h1 {
    height: 8rem;
    letter-spacing: 0;
  }
}
.ttlSec p {
  padding: 1.2rem 1rem;
  font-size: clamp(0.875rem, -134.7058823529rem + 300vw, 1.0625rem);
  background: #fff;
}
.ttlSec .btn-basic {
  margin: 1rem auto 3rem;
}

.detailSec {
  padding: 2rem 0 7rem;
}
@media screen and (max-width: 768px) {
  .detailSec {
    padding: 1rem 0 5rem;
  }
}
.detailSec h1,
.detailSec h2,
.detailSec h3,
.detailSec h4,
.detailSec h5,
.detailSec h6 {
  font-size: revert;
}
.detailSec ul,
.detailSec ol {
  padding: revert;
  margin: revert;
  list-style-type: revert;
}
.detailSec a {
  text-decoration: underline;
  cursor: pointer;
  transition: ease opacity 0.3s;
}
@media (any-hover: hover) {
  .detailSec a:hover {
    opacity: 0.3;
  }
}

.page-mvSec {
  position: relative;
  padding: 4rem 3.5rem;
  margin-bottom: 5.5rem !important;
  text-align: center;
  border-radius: 1rem;
}
@media screen and (max-width: 768px) {
  .page-mvSec {
    padding: 2.5rem 0;
    margin-bottom: 3rem !important;
  }
}
.page-mvSec img {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 80%;
}
.page-mvSec:before {
  position: absolute;
  display: block;
  content: "";
  inset: 0;
  background: rgba(255, 255, 255, 0.3);
}
.page-mvSec__ttl {
  position: relative;
  width: 100%;
  padding: 2.5rem 1.5rem 3rem;
  font-family: "M PLUS 2";
  font-size: clamp(0.875rem, -179.8823529412rem + 400vw, 1.125rem);
  line-height: 2.1;
  background: rgba(255, 255, 255, 0.8);
}
@media screen and (max-width: 768px) {
  .page-mvSec__ttl {
    width: 100%;
    padding: 1.5rem 1.5rem 2rem;
  }
}
.page-mvSec__ttl h2 {
  margin-bottom: 1.5rem;
  font-family: "M PLUS 2";
  font-size: clamp(1.5rem, -540.7058823529rem + 1200vw, 2.25rem);
  line-height: 1.4;
  color: #1e9dd8;
}
@media screen and (max-width: 768px) {
  .page-mvSec__ttl h2 {
    margin-bottom: 1rem;
  }
}
.page-mvSec__ttl .contact-btns {
  margin-top: 1.5rem;
}
.page-mvSec__ttl .contact-btns .btn-basic {
  font-size: clamp(1.125rem, -89.2941176471rem + 200vw, 1.25rem);
}

.pageSec {
  padding: 2rem 0 5rem;
}
@media screen and (max-width: 768px) {
  .pageSec {
    padding: 1rem 0 4rem;
  }
}
.pageSec__ttl {
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .pageSec__ttl {
    margin-left: 2rem;
  }
}
.pageSec__ttl h2 {
  position: relative;
  font-family: "M PLUS 2";
  font-size: clamp(1.5rem, -540.7058823529rem + 1200vw, 2.25rem);
  line-height: 1.4;
  color: #1e9dd8;
}
.pageSec__ttl h2::before {
  top: 1.85rem;
  right: 102.5%;
  left: -9rem;
  height: 1px;
  background: #333;
  position: absolute;
  display: block;
  content: "";
}
@media screen and (max-width: 1300px) {
  .pageSec__ttl h2::before {
    left: -4rem;
  }
}
@media screen and (max-width: 768px) {
  .pageSec__ttl h2::before {
    top: 1.15rem;
    left: -2rem;
  }
}
.pageSec__ttl p {
  display: block;
  margin-top: 1.5rem;
  font-size: clamp(1rem, -224.9411764706rem + 500vw, 1.3125rem);
  color: #333;
}
@media screen and (max-width: 768px) {
  .pageSec__ttl p {
    margin-top: 1rem;
  }
}
.pageSec__list01 li,
.pageSec__list01 p {
  margin-bottom: 1rem;
  line-height: 2.25;
}
@media screen and (max-width: 768px) {
  .pageSec__list01 li,
  .pageSec__list01 p {
    line-height: 1.9;
  }
}
.pageSec__list01 li:last-child,
.pageSec__list01 p:last-child {
  margin-bottom: 0;
}
.pageSec__list01 li span,
.pageSec__list01 p span {
  font-size: clamp(1.125rem, -134.4705882353rem + 300vw, 1.3125rem);
  font-weight: 700;
}
.pageSec__list02 {
  padding: 1.5rem 2.5rem 2rem;
  background: rgba(51, 51, 51, 0.05);
}
@media screen and (max-width: 768px) {
  .pageSec__list02 {
    padding: 1rem 1rem 1.5rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
}
.pageSec__list02 h3 {
  padding-bottom: 1rem;
  margin-bottom: 2rem;
  font-size: clamp(1.25rem, -360.2352941176rem + 800vw, 1.75rem);
  font-weight: 400;
  text-align: center;
  border-bottom: 1px solid #1e9dd8;
}
@media screen and (max-width: 768px) {
  .pageSec__list02 h3 {
    margin-bottom: 1.5rem;
  }
}
.pageSec__list02 li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
  font-size: clamp(1rem, -270.1176470588rem + 600vw, 1.375rem);
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  .pageSec__list02 li {
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
  }
}
.pageSec__list02 li:last-child {
  margin-bottom: 0;
}
.pageSec__list02 li ul {
  margin-top: 0.75rem;
}
.pageSec__list02 li ul li {
  padding-left: 1.5rem;
  margin-bottom: 0.25rem;
  font-size: clamp(0.875rem, -179.8823529412rem + 400vw, 1.125rem);
}
@media screen and (max-width: 768px) {
  .pageSec__list02 li ul li {
    padding-left: 1.25rem;
  }
}
.pageSec__list02 ul li:before {
  position: absolute;
  top: 0.1rem;
  left: 0;
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  color: #1e9dd8;
  content: "\f058";
}
.pageSec__list02 ul li li:before {
  content: "・";
}
.pageSec__list02 ol {
  list-style-type: none;
  counter-reset: number;
}
.pageSec__list02 ol li::before {
  position: absolute;
  top: 0.2rem;
  left: 0.25rem;
  font-size: clamp(0.875rem, -179.8823529412rem + 400vw, 1.125rem);
  color: #fff;
  content: counter(number);
  counter-increment: number;
}
@media screen and (max-width: 768px) {
  .pageSec__list02 ol li::before {
    top: 0.15rem;
    left: 0rem;
  }
}
.pageSec__list02 ol li::after {
  position: absolute;
  top: 0.2rem;
  left: -0.5rem;
  z-index: -10;
  display: block;
  width: 2rem;
  height: 2rem;
  content: "";
  background: #1e9dd8;
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  .pageSec__list02 ol li::after {
    top: 0.2rem;
    width: 1.5rem;
    height: 1.5rem;
  }
}
.pageSec__list02 ol li:nth-child(n+10)::before {
  left: -0.1rem;
}
@media screen and (max-width: 768px) {
  .pageSec__list02 ol li:nth-child(n+10)::before {
    left: -0.25rem;
  }
}
.pageSec__list02 ol li p {
  margin-top: 1rem;
  font-size: clamp(0.75rem, -180rem + 400vw, 1rem);
}
@media screen and (max-width: 768px) {
  .pageSec__list02 ol li p {
    margin-top: 0.5rem;
  }
}
.pageSec__list03 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
@media screen and (max-width: 768px) {
  .pageSec__list03 {
    gap: 1.5rem;
  }
}
.pageSec__list03 li {
  width: calc(33.333% - 0.667rem);
  padding: 1.5rem 1rem;
  background: rgba(51, 51, 51, 0.05);
  border-radius: 1rem;
}
@media screen and (max-width: 768px) {
  .pageSec__list03 li {
    width: 100%;
    padding: 1.5rem 1rem 1.5rem;
  }
}
.pageSec__list03 li h3 {
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
  font-size: clamp(1.125rem, -179.6470588235rem + 400vw, 1.375rem);
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  border-bottom: 1px solid #1e9dd8;
}
@media screen and (max-width: 768px) {
  .pageSec__list03 li h3 {
    margin-bottom: 1rem;
  }
}
.pageSec__list03 li p {
  margin-bottom: 1rem;
}
.pageSec__list03 li p:last-child {
  margin: 0;
}

.current-menu a {
  color: #f5cf1f !important;
}

.footerSec .current-menu a {
  color: #f5cf1f !important;
}

/*------ モーダル ------*/
.modal-area {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
  display: none;
  width: 100%;
  height: 100%;
  padding: 0;
  transform: scale(1.4);
  transition: transform ease 0.4s;
}
.modal-area.scale-modal {
  transform: scale(1);
}
.modal-area h2 {
  position: relative;
  margin-bottom: 0.9rem;
  font-size: clamp(1.40625rem, -66.4411764706rem + 150vw, 1.5rem);
  color: #1e9dd8;
}
@media screen and (max-width: 768px) {
  .modal-area h2 {
    margin-left: 3.25rem;
  }
}
.modal-area h2::before {
  top: 0;
  right: 102.5%;
  bottom: 0;
  left: -9rem;
  height: 1px;
  margin: auto;
  background: #1e9dd8;
  position: absolute;
  display: block;
  content: "";
}
@media screen and (max-width: 1300px) {
  .modal-area h2::before {
    left: -4rem;
  }
}
@media screen and (max-width: 768px) {
  .modal-area h2::before {
    left: -3rem;
  }
}
.modal-area h2 {
  margin-bottom: 2rem;
  margin-left: 9rem;
}
@media screen and (max-width: 1300px) {
  .modal-area h2 {
    margin-left: 4rem;
  }
}
@media screen and (max-width: 768px) {
  .modal-area h2 {
    margin-bottom: 1rem;
    margin-left: 3rem;
  }
}
.modal-area .modal-bg {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}
.modal-area .close-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 10;
  height: 66%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .modal-area .close-wrapper {
    height: 75%;
  }
}
.modal-area .close-modal {
  position: absolute;
  top: 3rem;
  right: -28rem;
  width: 3.2rem;
  height: 3.2rem;
  cursor: pointer;
  background: #1e9dd8;
  border-radius: 50%;
  box-shadow: 0 0.05rem 0.25rem 0.025rem rgba(44, 30, 28, 0.78);
  transform: translate(-50%, -50%);
  cursor: pointer;
  transition: ease opacity 0.3s;
}
@media (any-hover: hover) {
  .modal-area .close-modal:hover {
    opacity: 0.3;
  }
}
@media screen and (max-width: 1000px) {
  .modal-area .close-modal {
    right: -45vw;
  }
}
@media screen and (max-width: 768px) {
  .modal-area .close-modal {
    top: 2.5rem;
    right: -10.75rem;
    width: 2.5rem;
    height: 2.5rem;
  }
}
.modal-area .modal-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 950px;
  max-width: 95%;
  height: 66%;
  padding: 1rem 3rem 5rem;
  overflow: auto;
  background-color: #fff;
  border-radius: 1.5rem;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .modal-area .modal-inner {
    max-width: 92%;
    height: 75%;
    padding: 0.5rem 1rem 3rem;
  }
}
.modal-area .modal-inner::-webkit-scrollbar {
  width: 15px;
}
@media screen and (max-width: 768px) {
  .modal-area .modal-inner::-webkit-scrollbar {
    width: 7.5px;
  }
}
.modal-area .modal-inner::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 10px;
}
.modal-area .modal-inner::-webkit-scrollbar-thumb {
  background: #1e9dd8;
  border-radius: 10px;
}
.modal-area .close-modal::before,
.modal-area .close-modal::after {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 1.75rem;
  height: 2px;
  margin: auto;
  background: #fff;
  position: absolute;
  display: block;
  content: "";
}
@media screen and (max-width: 768px) {
  .modal-area .close-modal::before,
  .modal-area .close-modal::after {
    width: 1.5rem;
  }
}
.modal-area .close-modal::before {
  transform: translateY(0) rotate(45deg);
}
.modal-area .close-modal::after {
  transform: translateY(0) rotate(-45deg);
}

.modal-table {
  margin-top: 2rem;
  border-bottom: 1px solid #efefef;
}
@media screen and (max-width: 768px) {
  .modal-table {
    margin-top: 1rem;
  }
}
.modal-table--division dl {
  gap: 1.5rem;
}
.modal-table dl {
  display: flex;
  padding: 1.35rem 0;
  line-height: 1.4;
  border-top: 1px solid #efefef;
}
@media screen and (max-width: 768px) {
  .modal-table dl {
    flex-wrap: wrap;
    gap: 0.5rem 2rem;
    padding: 0.75rem 0;
  }
}
.modal-table dl dt {
  flex-shrink: 0;
  width: 9rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .modal-table dl dt {
    width: auto;
  }
}
.modal-table dl dd:first-of-type {
  flex-shrink: 0;
  font-weight: 700;
}

/*------ テーブル ------*/
.table-company {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}
@media screen and (max-width: 768px) {
  .table-company {
    border-bottom: 1px solid #ddd;
  }
}
.table-company td {
  padding: 0.75rem 1rem;
  font-size: clamp(1rem, -89.4117647059rem + 200vw, 1.125rem);
  border: 1px solid #ddd;
}
.table-company td:first-child {
  width: 12.5rem;
  font-size: clamp(1.125rem, -134.4705882353rem + 300vw, 1.3125rem);
  color: #fff;
  background: #1e9dd8;
}
@media screen and (max-width: 768px) {
  .table-company td {
    display: block;
    width: 100% !important;
    padding: 1rem;
    border-bottom: none;
  }
}
.table-company td ul {
  padding-left: 1.5rem;
  list-style: disc;
}
@media screen and (max-width: 768px) {
  .table-company td ul {
    padding-left: 1rem;
  }
}
.table-company td span {
  font-size: clamp(1.125rem, -134.4705882353rem + 300vw, 1.3125rem);
  font-weight: 700;
  color: #f5cf1f;
}
.table-company td a {
  display: inline-block;
  padding: 0.5rem 1rem;
  color: #fff;
  background: #1e9dd8;
  border-radius: 9999px;
  cursor: pointer;
  transition: ease opacity 0.3s;
}
@media (any-hover: hover) {
  .table-company td a:hover {
    opacity: 0.3;
  }
}
.table-company td a i {
  margin: 0 0.25rem;
}

/*------ message ------*/
.messageSec {
  padding: 4rem 0;
  font-family: "Noto Serif JP";
  font-feature-settings: "palt";
  text-align: center;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  .messageSec {
    padding: 2rem 0;
  }
}
.messageSec p {
  margin-bottom: 1.5rem;
  font-size: clamp(0.75rem, -180rem + 400vw, 1rem);
  line-height: 1.9;
}
.messageSec p:last-child {
  margin-bottom: 0;
}
.messageSec img {
  width: 30rem;
  margin-top: 2rem;
  overflow: hidden;
  border-radius: 0.5rem;
}
@media screen and (max-width: 768px) {
  .messageSec img {
    width: 100%;
    margin-top: 1rem;
  }
}
.messageSec h2 {
  margin-top: 3.5rem;
  font-size: clamp(1.5625rem, -450.2941176471rem + 1000vw, 2.1875rem);
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .messageSec h2 {
    margin-top: 2rem;
  }
}
.messageSec h3 {
  margin-top: 1rem;
  font-size: clamp(2.5rem, -449.4117647059rem + 1000vw, 3.125rem);
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .messageSec h3 {
    margin-top: 0.5rem;
  }
}

/* ↓ 固定ページのブロック間余白の制御 -------*/
.page .is-layout-flow > * {
  margin: 0;
}

.sidebar-list {
  margin-left: 1.5rem !important;
}
.sidebar-list li {
  position: relative;
  list-style-type: none;
}
.sidebar-list li a::before {
  position: absolute;
  left: -1.5rem;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #1e9dd8;
  content: "\f138";
  transform: translateY(0.15rem);
}

/* ------ メガメニュー ------ */
.headerSec {
  position: sticky;
  top: 0;
  z-index: 999;
  padding: 1rem 1.5rem;
  background: #fff;
  border-bottom: 5px solid #1e9dd8;
}
@media screen and (max-width: 768px) {
  .headerSec {
    padding: 1.2rem 1rem;
  }
}
.headerSec__logo {
  margin-right: auto;
  text-align: left !important;
}
@media screen and (max-width: 1600px) {
  .headerSec__logo {
    order: 0;
  }
}
.headerSec__logo a {
  display: inline-block;
  width: 100%;
  max-width: 17rem;
  cursor: pointer;
  transition: ease opacity 0.3s;
}
@media (any-hover: hover) {
  .headerSec__logo a:hover {
    opacity: 0.3;
  }
}
@media screen and (max-width: 768px) {
  .headerSec__logo a {
    width: 17rem;
  }
}
.headerSec__logo a img {
  width: 100%;
}
.headerSec__container {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
@media screen and (max-width: 1600px) {
  .headerSec__container {
    flex-wrap: wrap;
    gap: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .headerSec__container {
    gap: 0;
  }
}
.headerSec__container .btn-entry {
  display: flex;
  gap: 0.75rem;
}
@media screen and (max-width: 1600px) {
  .headerSec__container .btn-entry {
    order: 1;
  }
}
@media screen and (max-width: 768px) {
  .headerSec__container .btn-entry {
    display: none;
  }
}
.headerSec__container .btn-entry a {
  width: 11rem;
  font-size: clamp(1rem, 0.9411764706rem + 0vw, 1rem);
  line-height: 1.9;
}
.headerSec__container .btn-entry a i {
  margin-right: 0.15rem;
  font-size: clamp(1rem, -89.4117647059rem + 200vw, 1.125rem);
  transform: translateY(0.05rem);
}
.headerSec__container .btn-entry a:last-child {
  background: #1e9dd8;
}
.headerSec__menu {
  flex-shrink: 0;
}
@media screen and (max-width: 1600px) {
  .headerSec__menu {
    order: 2;
    width: 100%;
  }
}
.headerSec__menu ul {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1300px) {
  .headerSec__menu ul {
    gap: 0.75rem;
  }
}
@media screen and (max-width: 768px) {
  .headerSec__menu ul {
    display: none !important;
  }
}
.headerSec__menu ul li {
  line-height: 1.4;
  text-align: center;
}
.headerSec__menu ul li a {
  font-size: clamp(0.75rem, 0.2875816993rem + 0.9259259259vw, 1rem);
  color: #333;
  cursor: pointer;
  transition: ease color 0.3s;
}
@media (any-hover: hover) {
  .headerSec__menu ul li a:hover {
    color: #f5cf1f;
  }
}
.headerSec__menu ul li a i {
  display: block;
  padding-bottom: 0.5rem;
  font-size: clamp(1.5rem, 1.4117647059rem + 0vw, 1.5rem);
}

/*------ target ------*/
@media screen and (max-width: 768px) {
  .targetSec {
    display: none;
  }
}
.targetSec__list {
  display: flex;
  border-top: 2px solid #fff;
}
@media screen and (max-width: 768px) {
  .targetSec__list {
    flex-wrap: wrap;
  }
}
.targetSec__item {
  width: 100%;
  line-height: 1.4;
  text-align: center;
  border-right: 2px solid #fff;
  position: relative;
}
.targetSec__item:hover .sub-menu {
  visibility: visible;
  opacity: 1;
}
.targetSec__item .sub-menu {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s ease-in-out all;
}
@media screen and (max-width: 1300px) {
  .targetSec__item .sub-menu {
    top: 60%;
  }
}
.targetSec__item .sub-menu .child-menu {
  position: relative;
  z-index: 10;
  padding: 20px 10px 25px 70px;
  background: rgba(30, 157, 216, 0.9);
}
.targetSec__item .sub-menu .child-menu li {
  position: relative;
  text-align: left;
}
.targetSec__item .sub-menu .child-menu li:not(:first-child) {
  margin-top: 15px;
}
.targetSec__item .sub-menu .child-menu li::before {
  top: 12.5px;
  left: -40px;
  width: 24px;
  height: 3px;
  margin: auto;
  background: #fff;
  position: absolute;
  display: block;
  content: "";
}
.targetSec__item .sub-menu .child-menu li a {
  display: inline-block;
  font-size: clamp(1rem, -89.4117647059rem + 200vw, 1.125rem);
  font-weight: 400;
  color: #fff;
  cursor: pointer;
  transition: ease opacity 0.3s;
}
@media (any-hover: hover) {
  .targetSec__item .sub-menu .child-menu li a:hover {
    opacity: 0.3;
  }
}
@media screen and (max-width: 768px) {
  .targetSec__item {
    border-right: none;
    border-bottom: 2px solid #fff;
  }
}
.targetSec__item:first-child {
  border-left: 2px solid #fff;
}
.targetSec__link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 1.25rem 0.5rem;
  font-size: clamp(0.5625rem, -0.8300653595rem + 3.0092592593vw, 1.375rem);
  color: #fff;
  background: #1e9dd8;
  cursor: pointer;
  transition: ease opacity 0.3s;
}
@media (any-hover: hover) {
  .targetSec__link:hover {
    opacity: 0.3;
  }
}
@media screen and (max-width: 768px) {
  .targetSec__link {
    padding: 0.75rem 0;
  }
}
.targetSec__link i {
  display: block;
  margin-bottom: 0.5rem;
  font-size: clamp(1.25rem, -0.3921568627rem + 3.4722222222vw, 2.1875rem);
}

/*------ hamburger ------*/
.spNav {
  display: none;
}
@media screen and (max-width: 768px) {
  .spNav {
    display: block;
  }
}

.js-bg {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: none;
  background: rgba(0, 0, 0, 0.5);
}

.fat-nav {
  z-index: 9999;
  background: none;
  transform-origin: 50% 0%;
}

.hamburger {
  top: 0.75rem;
  right: 1.25rem;
  z-index: 99999;
  display: none;
  width: 3rem;
  height: 3rem;
  padding: 0;
  background: #fff;
  border: 1px solid #ddd;
}
@media screen and (max-width: 768px) {
  .hamburger {
    display: block;
  }
}
.hamburger.active {
  background: #1e9dd8;
  border: none;
}
.hamburger.active .hamburger__icon::before,
.hamburger.active .hamburger__icon::after {
  background: #fff;
}
.hamburger.active .hamburger__icon::before {
  top: -12px;
}
.hamburger.active .hamburger__icon::after {
  top: 12px;
}
.hamburger__icon {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 1.4rem;
  height: 3px;
  margin: auto;
  background: #1e9dd8;
}
.hamburger__icon::before {
  top: -0.5rem;
  width: 1.4rem;
  height: 3px;
  background: #1e9dd8;
}
.hamburger__icon::after {
  top: 0.5rem;
  width: 1.4rem;
  height: 3px;
  background: #1e9dd8;
}

.nav-container {
  width: 100%;
  padding-top: 4.5rem;
  background: #fff;
}
.nav-container .nav-list {
  display: block;
  margin-top: 0.5rem;
}
.nav-container .nav-list li {
  padding: 0;
  border-top: 1px solid #ddd;
}
.nav-container .nav-list li:last-child {
  border-bottom: 1px solid #ddd;
}
.nav-container .nav-list li a {
  display: block;
  padding: 0.75rem 0;
  padding-left: 1rem;
  font-size: clamp(1.0625rem, 1rem + 0vw, 1.0625rem);
  text-align: left;
  background: #fff;
}
.nav-container .nav-list li a i {
  margin-left: 0.5rem;
}
.nav-container .nav-list li dl div {
  display: none;
}
.nav-container .nav-list li dl dt a {
  pointer-events: none;
}
.nav-container .nav-list li dl dt {
  position: relative;
  width: 100%;
  padding-right: 1rem;
  text-align: left;
  cursor: pointer;
  background: #fff;
}
.nav-container .nav-list li dl dt::before {
  top: 0;
  right: 1.5rem;
  bottom: 0;
  width: 1.5rem;
  height: 0.2rem;
  margin: auto;
  background: #1e9dd8;
  border-radius: 0.2rem;
  transition: 0.4s;
  position: absolute;
  display: block;
  content: "";
}
.nav-container .nav-list li dl dt::after {
  top: 0;
  right: 2.1rem;
  bottom: 0;
  width: 0.2rem;
  height: 1.5rem;
  margin: auto;
  background: #1e9dd8;
  border-radius: 1rem;
  transform: rotate(0deg);
  transition: 0.4s;
  position: absolute;
  display: block;
  content: "";
}
.nav-container .nav-list li dl dt.open::before {
  right: 1.5rem;
}
.nav-container .nav-list li dl dt.open::after {
  right: 2.1rem;
  transform: rotate(90deg);
}
.nav-container .nav-list li dl dd a {
  font-size: clamp(1rem, 0.9411764706rem + 0vw, 1rem);
  background: #f3f3f3 !important;
  border-top: 1px solid #ddd;
}

.nav-headBtns {
  display: flex !important;
  gap: 0.75rem;
  justify-content: center;
  padding: 1rem 0 !important;
  background: #fff;
}

.nav-headBtn {
  padding: 0 !important;
}
.nav-headBtn:last-child a {
  background: #1e9dd8;
}
.nav-headBtn a {
  width: 10.5rem;
  padding: 1.25rem 0 !important;
  font-size: clamp(1rem, 0.9411764706rem + 0vw, 1rem);
  line-height: 1.55 !important;
}
.nav-headBtn a i {
  margin-right: 0.15rem;
}

#js-bottomNavi {
  position: sticky;
  z-index: 99;
  transition: 0.5s;
}
#js-bottomNavi.is-show {
  bottom: 0 !important;
  box-shadow: rgba(44, 30, 28, 0.3) 0px 0px 7.5px;
}

.bottomNavi {
  display: none;
}
@media screen and (max-width: 768px) {
  .bottomNavi {
    display: flex;
  }
}
.bottomNavi__btns {
  display: flex;
  width: 100%;
}
.bottomNavi__btns div {
  width: 100%;
}
.bottomNavi__btns div:last-child a {
  background: #1e9dd8;
}
.bottomNavi__btns div a {
  position: relative;
  display: flex;
  gap: 0.25rem;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0.9rem 0;
  font-size: clamp(0.9375rem, 0.8823529412rem + 0vw, 0.9375rem);
  line-height: 1.4;
  color: #fff !important;
  text-align: center;
  background: #f5cf1f;
}
.bottomNavi__btns div a i {
  margin-right: 0.15rem;
  font-size: clamp(1.125rem, 1.0588235294rem + 0vw, 1.125rem);
  transform: translateY(0.05rem);
}

.footerSec {
  position: relative;
  color: #fff;
  background: #1e9dd8;
}
.footerSec__container {
  display: flex;
  gap: 11rem;
  padding: 3rem 0 3rem;
}
@media screen and (max-width: 1300px) {
  .footerSec__container {
    gap: 5%;
  }
}
@media screen and (max-width: 768px) {
  .footerSec__container {
    flex-wrap: wrap;
    gap: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  .footerSec__container li {
    width: 100%;
  }
}
.footerSec__logo {
  display: block;
  width: 26rem;
  margin: 0 auto 2.5rem auto;
  text-align: center;
  cursor: pointer;
  transition: ease opacity 0.3s;
}
@media (any-hover: hover) {
  .footerSec__logo:hover {
    opacity: 0.3;
  }
}
@media screen and (max-width: 768px) {
  .footerSec__logo {
    width: 20.5rem;
    margin: 0 auto 2rem auto;
  }
}
.footerSec__logo img {
  width: 100%;
}
.footerSec__company {
  padding-left: 1.25rem;
  margin-bottom: 1.5rem;
  font-size: clamp(1rem, -179.7647058824rem + 400vw, 1.25rem);
}
@media screen and (max-width: 768px) {
  .footerSec__company {
    padding-left: 0;
  }
}
.footerSec__mail {
  color: #fff;
  cursor: pointer;
  transition: ease opacity 0.3s;
}
@media (any-hover: hover) {
  .footerSec__mail:hover {
    opacity: 0.3;
  }
}
.footerSec__link {
  padding: 1.5rem 2rem;
  line-height: 1.4;
  border: 1px solid #fff;
  border-radius: 2rem;
}
@media screen and (max-width: 1300px) {
  .footerSec__link {
    padding: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  .footerSec__link {
    padding: 1rem;
    border-radius: 1.5rem;
  }
}
.footerSec__link-text {
  display: block;
  font-size: clamp(1rem, 0.3137254902rem + 1.3888888889vw, 1.375rem);
  text-align: center;
}
@media screen and (max-width: 768px) {
  .footerSec__link-text {
    margin-bottom: 0.25rem;
  }
}
.footerSec__link-tel {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
  font-size: clamp(2.5625rem, 0.9477124183rem + 3.2407407407vw, 3.4375rem);
  color: #fff;
  cursor: pointer;
  transition: ease opacity 0.3s;
}
@media (any-hover: hover) {
  .footerSec__link-tel:hover {
    opacity: 0.3;
  }
}
@media screen and (max-width: 768px) {
  .footerSec__link-tel {
    gap: 0.35rem;
  }
}
.footerSec__link-tel i {
  padding-top: 0.5rem;
  font-size: clamp(1.75rem, 1.0196078431rem + 1.3888888889vw, 2.125rem);
}
@media screen and (max-width: 768px) {
  .footerSec__link-tel i {
    padding-top: 0.35rem;
  }
}
.footerSec__link-mail {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  justify-content: center;
  font-size: clamp(1.4375rem, 0.5163398693rem + 1.8518518519vw, 1.9375rem);
  color: #fff;
  cursor: pointer;
  transition: ease opacity 0.3s;
}
@media (any-hover: hover) {
  .footerSec__link-mail:hover {
    opacity: 0.3;
  }
}
@media screen and (max-width: 768px) {
  .footerSec__link-mail {
    gap: 0.5rem;
  }
}
.footerSec__link-mail i {
  padding-top: 0.5rem;
  font-size: clamp(1.75rem, 0.3921568627rem + 2.7777777778vw, 2.5rem);
}
@media screen and (max-width: 768px) {
  .footerSec__link-mail i {
    padding-top: 0.35rem;
  }
}
.footerSec__menu {
  width: 40%;
}
@media screen and (max-width: 768px) {
  .footerSec__menu {
    width: 100%;
  }
}
.footerSec__menu h2 {
  display: block;
  margin-bottom: 0.5rem;
  font-size: clamp(1.25rem, 1.1764705882rem + 0vw, 1.25rem);
  font-weight: 400;
  letter-spacing: 0.15rem;
  border-bottom: 1px solid #fff;
}
.footerSec__menu ul li {
  margin-bottom: 0.25rem;
}
.footerSec__menu ul li a {
  font-size: clamp(1rem, -89.4117647059rem + 200vw, 1.125rem);
  color: #fff;
  cursor: pointer;
  transition: ease opacity 0.3s;
}
@media (any-hover: hover) {
  .footerSec__menu ul li a:hover {
    opacity: 0.3;
  }
}
.footerSec__menu ul li a i {
  margin-right: 0.25rem;
}
.footerSec__menu ul li .btn-mail {
  font-size: clamp(2.125rem, 2rem + 0vw, 2.125rem);
}
.footerSec__copyright {
  padding: 1.25rem 0;
  font-size: clamp(0.625rem, -180.1176470588rem + 400vw, 0.875rem);
  line-height: 1.5;
  color: #333;
  text-align: center;
  letter-spacing: 0.1rem;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .footerSec__copyright {
    padding: 0.75rem 0;
  }
}

.groupSec {
  padding: 3rem 0 5rem;
  background: #1e9dd8;
}
.groupSec h2 {
  display: block;
  margin-bottom: 1.5rem;
  font-size: clamp(1.75rem, 1.6470588235rem + 0vw, 1.75rem);
  font-weight: 400;
  border-bottom: 1px solid #fff;
}
.groupSec h3 {
  margin-bottom: 1rem;
  font-size: clamp(1.25rem, 1.1764705882rem + 0vw, 1.25rem);
  font-weight: 400;
}
.groupSec p {
  margin-bottom: 1.5rem;
  font-size: clamp(0.75rem, -180rem + 400vw, 1rem);
}
.groupSec a {
  display: inline-block;
  margin-left: 0.25rem;
  color: #fff;
  cursor: pointer;
  transition: ease opacity 0.3s;
}
@media (any-hover: hover) {
  .groupSec a:hover {
    opacity: 0.3;
  }
}
.groupSec__list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.groupSec__item {
  width: calc(33.333% - 0.667rem);
  padding: 1rem 1rem;
  font-size: clamp(0.875rem, -89.5294117647rem + 200vw, 1rem);
  line-height: 1.4;
  color: #333;
  background: #fff;
  border-radius: 0.75rem;
}
@media screen and (max-width: 1300px) {
  .groupSec__item {
    width: calc(50% - 0.5rem);
  }
}
@media screen and (max-width: 768px) {
  .groupSec__item {
    width: 100%;
  }
}
.groupSec__item span span {
  display: block;
  margin-bottom: 0.25rem;
  font-size: clamp(1.125rem, -134.4705882353rem + 300vw, 1.3125rem);
  font-weight: 700;
  letter-spacing: 0;
}

.pageTop {
  position: fixed;
  right: 2rem;
  z-index: 99;
  width: 5rem;
  height: 5rem;
  transform: translateY(200px);
}
@media screen and (max-width: 768px) {
  .pageTop {
    right: 1.25rem;
    width: 2.75rem;
    height: 2.75rem;
  }
}
.pageTop a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: clamp(0.8125rem, -225.1176470588rem + 500vw, 1.125rem);
  line-height: 1.4;
  color: #fff;
  text-align: center;
  background: #1e9dd8;
  border: 1px solid #fff;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: ease opacity 0.3s;
}
@media (any-hover: hover) {
  .pageTop a:hover {
    opacity: 0.3;
  }
}
@media screen and (max-width: 768px) {
  .pageTop a {
    border-radius: 0.35rem;
  }
}

.pageTop.UpMove {
  animation: UpAnime 0.5s forwards;
}

.pageTop.DownMove {
  animation: DownAnime 0.5s forwards;
}
