@charset "UTF-8";
/* main colors */
/*トップページのスタイル*/
.loading-screen {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100dvw;
  height: 80dvh;
  min-height: unset;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.8s;
}

.home_main_contents {
  opacity: 0;
}
.home_main_contents.is-visible {
  opacity: 1;
}

.main_visual {
  inset: 0;
  display: flex;
}
@media (min-width: 920px) {
  .main_visual {
    position: fixed;
    z-index: -1;
    padding-block: 132px 40px;
    padding-inline: 40px;
    pointer-events: none;
  }
}
@media (max-width: 919px) {
  .main_visual {
    position: absolute;
    padding-block: 104px 20px;
    padding-inline: 20px;
  }
  .main_visual .mvFadeOut {
    opacity: 1 !important;
    filter: blur(0) !important;
    transform: none !important;
  }
}
.main_visual-container {
  position: relative;
  width: 100%;
}
.main_visual-image {
  height: 100%;
  border-radius: min(20px, 1.4285714286vw);
  overflow: hidden;
}
.main_visual-image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  max-width: inherit;
  max-height: inherit;
}
@media (max-width: 919px) {
  .main_visual-image {
    opacity: 1 !important;
  }
}
.main_visual-iso {
  position: absolute;
  top: 40px;
  left: 40px;
  display: flex;
  gap: 8px;
}
.main_visual-iso .item {
  background-color: #fff;
  width: 91px;
  width: 91px;
  width: 6.5vw;
  padding: 8px;
  border-radius: 8px;
  text-align: center;
  font-size: 10px;
  font-size: 0.7142857143vw;
  white-space: nowrap;
  line-height: 1.3;
  font-family: "Lato", sans-serif;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.main_visual-iso img {
  margin-bottom: 5px;
}
@media (max-width: 919px) {
  .main_visual-iso {
    display: none;
  }
}
.main_visual-text {
  position: absolute;
  color: #fff;
  font-weight: bold;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
@media (min-width: 920px) {
  .main_visual-text {
    bottom: 40px;
    left: 40px;
  }
}
@media (max-width: 919px) {
  .main_visual-text {
    bottom: 200px;
    left: 16px;
  }
}
.main_visual-text .txt-1 {
  line-height: 1.3;
}
@media (min-width: 920px) {
  .main_visual-text .txt-1 {
    font-size: 56px;
    font-size: 4vw;
  }
}
@media (max-width: 919px) {
  .main_visual-text .txt-1 {
    font-size: 26px;
  }
}
.main_visual-text .txt-2 {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  line-height: 1.5;
}
@media (min-width: 920px) {
  .main_visual-text .txt-2 {
    font-size: 20px;
    font-size: 1.4285714286vw;
  }
}
@media (max-width: 919px) {
  .main_visual-text .txt-2 {
    font-size: 15px;
  }
}
.main_visual-text .label-yellow {
  background-color: #FDD000;
  padding: 2px 6px;
  color: #004098;
}
.main_visual-character {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 16px;
}
@media (min-width: 920px) {
  .main_visual-character {
    bottom: -50px;
    right: 40px;
  }
  .main_visual-character .text {
    width: 102px;
    width: 7.2857142857vw;
  }
  .main_visual-character .image {
    width: 146px;
    width: 10.4285714286vw;
  }
}
@media (max-width: 919px) {
  .main_visual-character {
    bottom: -32px;
    right: 16px;
  }
  .main_visual-character .text {
    width: 102px;
    margin-top: 40px;
  }
  .main_visual-character .image {
    width: 114px;
  }
}

.home_images {
  position: relative;
  z-index: 2;
  background-color: #fff;
  padding-inline: calc(50dvw - 620px);
}
@media (max-width: 1320px) {
  .home_images {
    padding-inline: 40px;
  }
}
@media (max-width: 920px) {
  .home_images {
    padding-inline: 20px;
  }
}
@media (min-width: 920px) {
  .home_images {
    margin-top: calc(100dvh + 300px);
    padding-block: 40px;
  }
}
@media (max-width: 919px) {
  .home_images {
    margin-top: 100dvh;
    padding-block: 20px;
  }
}
.home_images-pc {
  position: relative;
  aspect-ratio: 1240/480;
}
.home_images-pc > * {
  position: absolute;
  top: 0;
  bottom: 0;
  width: calc(33.333% - 5.2px);
  height: 100%;
  overflow: hidden;
}
@media (max-width: 919px) {
  .home_images-pc {
    display: none;
  }
}
@media (min-width: 920px) {
  .home_images-sp {
    display: none;
  }
}
.home_images-main {
  z-index: 3;
  left: 50%;
  translate: -50%;
  transform: translateY(calc(-100dvh + 132px));
  width: calc(100vw - 96px);
  height: calc(100dvh - 132px - 40px);
  opacity: 0;
}
.home_images-main img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  max-width: inherit;
  max-height: inherit;
  border-radius: min(20px, 1.4285714286vw);
}
.home_images-right {
  right: 0;
}

.home_about {
  padding-inline: calc(50dvw - 620px);
  display: grid;
  align-items: start;
}
@media (max-width: 1320px) {
  .home_about {
    padding-inline: 40px;
  }
}
@media (max-width: 920px) {
  .home_about {
    padding-inline: 20px;
  }
}
@media (min-width: 920px) {
  .home_about {
    padding-block: 100px 60px;
    grid-template-columns: 39fr 29fr 39fr;
    gap: 80px;
  }
}
@media (max-width: 919px) {
  .home_about {
    padding-block: 40px 100px;
    grid-template-columns: 30% 1fr;
    grid-template-columns: 102px 1fr;
    gap: 32px 24px;
    position: relative;
  }
}
@media (min-width: 920px) {
  .home_about-header {
    position: sticky;
    top: 160px;
  }
  .home_about-header .section_title {
    margin-bottom: 20px;
  }
  .home_about-header .btn {
    margin-top: 30px;
  }
}
@media (max-width: 919px) {
  .home_about-header {
    grid-area: 1/1/2/3;
  }
  .home_about-header .section_title {
    margin-bottom: 16px;
  }
  .home_about-header .btn {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
  }
}
@media (min-width: 920px) {
  .home_about-images {
    position: sticky;
    top: 160px;
  }
}
@media (min-width: 920px) {
  .home_about-images .image {
    opacity: 0;
    transition: opacity 0.7s;
    z-index: 1;
  }
  .home_about-images .image:not(:first-child) {
    position: absolute;
    top: 0;
  }
  .home_about-images .image.active {
    opacity: 1;
    z-index: 2;
  }
}
@media (max-width: 919px) {
  .home_about-images .image + .image {
    margin-top: 24px;
  }
}
@media (min-width: 920px) {
  .home_about-body .text {
    padding-block: 140px 100px;
  }
  .home_about-body .text + .text {
    margin-top: 80px;
  }
}
@media (max-width: 919px) {
  .home_about-body .text {
    display: grid;
    align-content: center;
  }
  .home_about-body .text + .text {
    margin-top: 24px;
  }
}
.home_about-body .text h3 {
  margin-bottom: 0.5em;
  font-weight: 700;
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #004098;
  line-height: 1.35;
}
@media (min-width: 920px) {
  .home_about-body .text h3 {
    font-size: 24px;
  }
}
@media (max-width: 919px) {
  .home_about-body .text h3 {
    font-size: 18px;
  }
}

.home_service {
  position: relative;
}
@media (min-width: 920px) {
  .home_service {
    padding-inline: calc(50dvw - 620px);
    padding-block: 240px 60px;
  }
}
@media (min-width: 920px) and (max-width: 1320px) {
  .home_service {
    padding-inline: 40px;
  }
}
@media (min-width: 920px) and (max-width: 920px) {
  .home_service {
    padding-inline: 20px;
  }
}
@media (max-width: 919px) {
  .home_service {
    margin-top: 60px;
    padding-block: 140px 60px;
  }
}
.home_service::before {
  position: absolute;
  inset: 0;
  content: "";
  background: url(../img/home/bg-service.png) no-repeat center top 40px/cover;
  background-attachment: fixed;
  opacity: 0;
  filter: blur(8px);
  transition: opacity 1.4s ease, filter 0.8s ease;
}
@media (max-width: 919px) {
  .home_service::before {
    background-position: right top 150px;
    background-size: max(100%, 500px);
  }
}
.home_service.is-bg::before {
  opacity: 1;
  filter: blur(0);
}
.home_service .section_title {
  position: relative;
  z-index: 2;
  text-align: center;
}
@media (min-width: 920px) {
  .home_service-container {
    margin-top: 50px;
    display: grid;
    align-items: start;
    grid-template-columns: 1fr 73%;
  }
}
.home_service-content_wrapper {
  z-index: 1;
}
@media (min-width: 920px) {
  .home_service-content_wrapper {
    margin-right: -50%;
    grid-area: 1/1/2/2;
  }
}
@media (max-width: 919px) {
  .home_service-content_wrapper {
    overflow: hidden;
  }
}
@media (min-width: 920px) {
  .home_service-content {
    display: grid;
    gap: 40px;
  }
}
@media (max-width: 919px) {
  .home_service-content {
    padding-inline: 20px;
    padding-block: 100px 340px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
  }
}
.home_service-content .panel {
  background-color: #fff;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.16);
}
@media (min-width: 920px) {
  .home_service-content .panel {
    padding: 40px 40px 30px;
    border-radius: 32px;
  }
}
@media (max-width: 919px) {
  .home_service-content .panel {
    padding: 20px 20px 20px;
    border-radius: 20px;
    width: 320px;
    flex: 0 0 auto;
    z-index: 2;
  }
}
.home_service-content .panel h3 {
  margin-bottom: 0.8em;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
}
.home_service-content .panel h3 em {
  color: #004098;
  font-style: normal;
}
@media (min-width: 920px) {
  .home_service-content .panel h3 {
    font-size: 24px;
  }
}
@media (max-width: 919px) {
  .home_service-content .panel h3 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 2.6em;
    font-size: 20px;
  }
}
.home_service-content .panel p {
  margin-top: 1.2em;
  font-size: 15px;
}
@media (max-width: 919px) {
  .home_service-content .panel p {
    display: none;
  }
}
.home_service-content .panel .note {
  margin-top: 1.3em;
  background-color: #F7F7F7;
  padding: 1em;
  line-height: 1.5;
  font-size: 12px;
}
@media (max-width: 919px) {
  .home_service-content .panel .note {
    display: none;
  }
}
.home_service-content .panel ul {
  list-style: disc;
}
.home_service-content .panel ul li {
  margin-left: 1.5em;
}
.home_service-content .panel .btn {
  margin: auto;
  border: none;
}
@media (min-width: 920px) {
  .home_service-content .panel .btn {
    margin-top: 20px;
    height: 50px;
  }
}
@media (max-width: 919px) {
  .home_service-content .panel .btn {
    margin-top: 15px;
    height: 40px;
  }
}
.home_service-illustration {
  position: sticky;
}
@media (min-width: 920px) {
  .home_service-illustration {
    top: 24vh;
    grid-area: 1/2/2/3;
  }
}
@media (max-width: 919px) {
  .home_service-illustration {
    top: 280px;
    overflow: hidden;
  }
}
@media (max-width: 919px) {
  .home_service-illustration .map img {
    position: relative;
    left: 50%;
    translate: -50%;
    width: 593px;
    max-width: none;
  }
}
.home_service-illustration .pickup {
  position: absolute;
  border: 3px solid #FD2200;
  border-radius: 50%;
  transition: 0.4s ease;
}
.home_service-illustration .pickup.is-active::after {
  content: "";
  position: absolute;
  top: -35%;
  left: 50%;
  translate: -50%;
  width: 40%;
  aspect-ratio: 38/54;
  background: url(../img/home/ico-location.svg) no-repeat center/contain;
}
@media (min-width: 920px) {
  .home_service-illustration .pickup {
    width: 10.5%;
  }
  .home_service-illustration .pickup.pickup-1 {
    top: 32%;
    left: 24%;
  }
  .home_service-illustration .pickup.pickup-2 {
    top: 56%;
    left: 23%;
  }
  .home_service-illustration .pickup.pickup-3 {
    top: 69%;
    left: 57%;
  }
  .home_service-illustration .pickup.pickup-4 {
    top: 45%;
    left: 55%;
  }
  .home_service-illustration .pickup.is-active {
    scale: 1.25;
  }
}
@media (max-width: 919px) {
  .home_service-illustration .pickup {
    width: 20%;
    width: 64px;
  }
  .home_service-illustration .pickup.pickup-1 {
    top: 35%;
    left: 21%;
  }
  .home_service-illustration .pickup.pickup-2 {
    top: 56%;
    left: 18%;
  }
  .home_service-illustration .pickup.pickup-3 {
    top: 69%;
    left: 52%;
  }
  .home_service-illustration .pickup.pickup-4 {
    top: 47%;
    left: 52%;
  }
  .home_service-illustration .pickup.is-active {
    scale: 1.35;
  }
}
.home_service-illustration .chara {
  position: absolute;
  bottom: 0;
  right: 0;
}
@media (min-width: 920px) {
  .home_service-illustration .chara {
    width: 28%;
  }
}
@media (max-width: 919px) {
  .home_service-illustration .chara {
    display: none;
  }
}
@media (min-width: 920px) {
  .home_service .contents_nav.pc {
    margin: auto;
    padding-top: 30px;
  }
  .home_service .contents_nav.sp {
    display: none;
  }
}
@media (max-width: 919px) {
  .home_service .contents_nav.pc {
    display: none;
  }
  .home_service .contents_nav.sp {
    margin: auto;
    position: relative;
    z-index: 2;
    width: fit-content;
    padding-top: 30px;
  }
}

.home_blog {
  padding-inline: calc(50dvw - 620px);
  background: #F9F7F1;
}
@media (max-width: 1320px) {
  .home_blog {
    padding-inline: 40px;
  }
}
@media (max-width: 920px) {
  .home_blog {
    padding-inline: 20px;
  }
}
@media (min-width: 920px) {
  .home_blog {
    padding-block: 120px;
  }
}
@media (max-width: 919px) {
  .home_blog {
    padding-block: 80px;
  }
}
.home_blog .section_title {
  text-align: center;
}
.home_blog-body {
  display: grid;
}
@media (min-width: 920px) {
  .home_blog-body {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 40px;
  }
}
@media (max-width: 919px) {
  .home_blog-body {
    margin-top: 32px;
    gap: 20px;
  }
}
.home_blog-banner {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 600/272;
  transition: color 0.2s ease;
}
@media (min-width: 920px) {
  .home_blog-banner {
    border-radius: 20px;
  }
}
@media (max-width: 919px) {
  .home_blog-banner {
    border-radius: 12px;
    aspect-ratio: 350/156;
  }
}
.home_blog-banner.bnr-1 {
  color: #90CEF0;
}
.home_blog-banner.bnr-1:hover {
  color: #81B8D6;
}
.home_blog-banner.bnr-2 {
  color: #FDD000;
}
.home_blog-banner.bnr-2:hover {
  color: #D6B000;
}
.home_blog-banner .label {
  position: absolute;
  left: 50%;
  bottom: 55%;
  translate: -50%;
  z-index: 3;
  color: #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  white-space: nowrap;
}
@media (min-width: 920px) {
  .home_blog-banner .label {
    font-size: 24px;
  }
}
@media (max-width: 919px) {
  .home_blog-banner .label {
    font-size: 18px;
  }
}
.home_blog-banner .icon-arrow {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 55%;
  translate: -50%;
  background-color: #fff;
  border-radius: 50%;
  aspect-ratio: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.home_blog-banner .icon-arrow::after {
  content: "";
  background: currentColor;
  mask: url(../img/common/btn_arrow.svg) no-repeat center/contain;
  transition: 0.3s ease;
  aspect-ratio: 1;
  rotate: -35deg;
}
@media (min-width: 920px) {
  .home_blog-banner .icon-arrow {
    width: 40px;
  }
  .home_blog-banner .icon-arrow::after {
    width: 30px;
  }
}
@media (max-width: 919px) {
  .home_blog-banner .icon-arrow {
    width: 32px;
  }
  .home_blog-banner .icon-arrow::after {
    width: 24px;
  }
}
.home_blog-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: currentColor;
}
.home_access {
  padding-inline: calc(50dvw - 620px);
}
@media (max-width: 1320px) {
  .home_access {
    padding-inline: 40px;
  }
}
@media (max-width: 920px) {
  .home_access {
    padding-inline: 20px;
  }
}
@media (min-width: 920px) {
  .home_access {
    padding-block: 120px;
  }
}
@media (max-width: 919px) {
  .home_access {
    padding-block: 80px;
  }
}
@media (max-width: 919px) {
  .home_access .section_title_wrap {
    display: block;
    margin-bottom: 32px;
    text-align: center;
  }
  .home_access .section_title_wrap .btn {
    display: none;
  }
}
.home_access_body {
  display: grid;
}
@media (min-width: 920px) {
  .home_access_body {
    grid-template-columns: 1fr 50%;
    gap: 80px;
  }
}
@media (max-width: 919px) {
  .home_access_body {
    gap: 20px;
  }
}
.home_access_body_map {
  position: relative;
}
.home_access_body_map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 919px) {
  .home_access_body_map {
    height: 311px;
  }
}
.home_access_body_text {
  background: #f9f7f1;
  border-radius: 20px;
}
@media (min-width: 920px) {
  .home_access_body_text {
    padding: 32px;
  }
}
@media (max-width: 919px) {
  .home_access_body_text {
    padding: 24px;
  }
}
.home_access_body_text h3 {
  margin-bottom: 0.7em;
  font-weight: 700;
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #004098;
  line-height: 1;
}
@media (min-width: 920px) {
  .home_access_body_text h3 {
    font-size: 24px;
  }
}
@media (max-width: 919px) {
  .home_access_body_text h3 {
    font-size: 20px;
  }
}
.home_access_body_text address {
  line-height: 1.6;
  font-style: normal;
}
.home_access_body_text .directions {
  display: grid;
  gap: 0.8em;
  background: #fff;
  border-radius: 12px;
  margin: 1.4em 0;
}
@media (min-width: 920px) {
  .home_access_body_text .directions {
    padding: 24px;
  }
}
@media (max-width: 919px) {
  .home_access_body_text .directions {
    padding: 16px;
  }
}
.home_access_body_text .directions dt {
  margin-bottom: 0.3em;
  font-weight: 700;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 1;
}
@media (min-width: 920px) {
  .home_access_body_text .directions dt {
    font-size: 20px;
  }
}
@media (max-width: 919px) {
  .home_access_body_text .directions dt {
    font-size: 16px;
  }
}
.home_access_body_text .directions dd {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}
@media (min-width: 920px) {
  .home_access_body_text .directions dd {
    font-size: 14px;
  }
}
@media (max-width: 919px) {
  .home_access_body_text .directions dd {
    font-size: 12px;
  }
}
.home_access_body_text .directions .num {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #004098;
  border-radius: 50%;
  aspect-ratio: 1;
  color: #fff;
  font-weight: 500;
  font-size: 12px;
  font-family: "Lato", sans-serif;
}
@media (min-width: 920px) {
  .home_access_body_text .directions .num {
    width: 24px;
    height: 24px;
    transform: translateY(-0.1em);
  }
}
@media (max-width: 919px) {
  .home_access_body_text .directions .num {
    width: 18px;
    height: 18px;
  }
}