@charset "UTF-8";
/* ------------------------
    base
------------------------ */
html,
body {
  overflow-x: clip;
}

body {
  min-height: 100svh;
  line-height: 1.5;
  line-break: strict;
  word-break: normal;
  overflow-wrap: anywhere;
}

a {
  display: block;
}

img {
  width: 100%;
  height: auto;
}

textarea {
  resize: vertical;
}

/* ------------------------
    utility
------------------------ */
.u-word {
  display: inline-block;
}

.u-pc {
  display: block;
}
@media (max-width: 768px) {
  .u-pc {
    display: none;
  }
}

.u-tab {
  display: none;
}
@media (max-width: 1024px) {
  .u-tab {
    display: block;
  }
}

.u-sp {
  display: none;
}
@media (max-width: 768px) {
  .u-sp {
    display: block;
  }
}

:root {
  --black: #000;
  --main: #275ad0;
  --white: #fff;
  --accent: #29abff;
  --bg-right-gray: #f6f6f6;
  --bg-gray: #eee;
  --transition: 0.4s;
  --fs-17: 1.0625rem;
  --header-height: 70px;
  --lh-17: 1.7647058824;
}

@media (max-width: 1024px) {
  :root {
    --fs-17: 0.9375rem;
  }
}
@media (max-width: 768px) {
  :root {
    --header-height: 45px;
  }
}
/* ------------------------
    common
------------------------ */
body {
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", "Yu Gothic UI", Meiryo, sans-serif;
  font-style: normal;
  font-optical-sizing: auto;
  position: relative;
  font-size: var(--fs-17);
  font-weight: 500;
  line-height: var(--lh-17);
  color: var(--black);
  background-color: var(--white);
}

main {
  position: relative;
}

.container {
  width: 100%;
  max-width: 1400px;
  margin-right: auto;
  margin-left: auto;
}

.inner {
  width: 94%;
  max-width: 980px;
  margin-right: auto;
  margin-left: auto;
}
.inner--l {
  max-width: 1300px;
}
@media (max-width: 768px) {
  .inner {
    width: 90%;
  }
}

.btn {
  display: grid;
  place-content: center;
  width: min(100%, 320px);
  min-height: 66px;
  padding: 0 2.3em;
  margin-inline: auto;
  color: var(--white);
  text-align: center;
  background-color: var(--main);
  border-radius: 9999px;
  transition: background-color var(--transition);
}
@media (max-width: 768px) {
  .btn {
    width: min(90%, 300px);
    min-height: 55px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .btn:hover, .btn:focus {
    background-color: rgb(66.7473684211, 112.905465587, 219.7026315789);
  }
}
@media (hover: none) {
  .btn:active {
    background-color: rgb(66.7473684211, 112.905465587, 219.7026315789);
  }
}

.heading {
  font-family: Lato, "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-style: normal;
  padding-top: 0.4em;
  padding-bottom: 0.4em;
  font-size: 5.25rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.1em;
}
@media (max-width: 1024px) {
  .heading {
    font-size: 4.375rem;
  }
}
@media (max-width: 768px) {
  .heading {
    font-size: 3.125rem;
  }
}
.heading::first-letter {
  color: var(--main);
}

.sub-heading {
  display: grid;
  grid-template-columns: 0.8em auto 0.8em;
  column-gap: 0.3em;
  align-items: center;
  justify-content: center;
  font-size: 2.625rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media (max-width: 1024px) {
  .sub-heading {
    font-size: 2.1875rem;
  }
}
@media (max-width: 768px) {
  .sub-heading {
    font-size: 1.5rem;
  }
}
.sub-heading::before, .sub-heading::after {
  width: 100%;
  height: 3px;
  content: "";
  background-color: currentcolor;
}

/* ------------------------
    header
------------------------ */
.header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  padding-left: 2%;
  transition: background-color var(--transition);
}
@media (max-width: 768px) {
  .header {
    position: static;
  }
}
.header_logo {
  align-content: center;
  width: 300px;
  filter: drop-shadow(0 0 2px var(--white)) drop-shadow(0 0 2px var(--white)) drop-shadow(0 0 2px var(--white));
  transition: opacity var(--transition);
}
@media (max-width: 768px) {
  .header_logo {
    width: 230px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .header_logo:hover, .header_logo:focus {
    opacity: 0.8;
  }
}
@media (hover: none) {
  .header_logo:active {
    opacity: 0.8;
  }
}
.header_logo img {
  vertical-align: middle;
}

.entry-btn-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 768px) {
  .entry-btn-group {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 30;
    visibility: hidden;
    width: 100%;
    font-size: 14px;
    border-top-right-radius: 10px;
    opacity: 0;
  }
}
.entry-btn-group.is-show {
  visibility: visible;
  opacity: 1;
}

.entry-btn {
  display: grid;
  place-content: center;
  width: 14.5em;
  height: var(--header-height);
  line-height: 1.2941176471;
  color: var(--white);
  text-align: center;
  border-bottom-left-radius: 10px;
  transition: background-color var(--transition);
}
@media (max-width: 768px) {
  .entry-btn {
    width: 100%;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 0;
  }
}
@media (max-width: 550px) {
  .entry-btn {
    font-size: 13px;
  }
}
.entry-btn--full {
  background-color: var(--main);
  filter: drop-shadow(0 0 1px var(--white)) drop-shadow(0 0 1px var(--white));
}
@media (hover: hover) and (pointer: fine) {
  .entry-btn--full:hover, .entry-btn--full:focus {
    background-color: rgb(66.7473684211, 112.905465587, 219.7026315789);
  }
}
@media (hover: none) {
  .entry-btn--full:active {
    background-color: rgb(66.7473684211, 112.905465587, 219.7026315789);
  }
}
.entry-btn--part {
  background-color: var(--accent);
  filter: drop-shadow(1px 0 1px var(--white)) drop-shadow(1px 0 1px var(--white));
}
@media (hover: hover) and (pointer: fine) {
  .entry-btn--part:hover, .entry-btn--part:focus {
    background-color: rgb(73.1, 183.6, 255);
  }
}
@media (hover: none) {
  .entry-btn--part:active {
    background-color: rgb(73.1, 183.6, 255);
  }
}

/* ------------------------
    footer
------------------------ */
.footer {
  position: relative;
  padding: 50px 5% 60px;
  font-size: 0.9375rem;
  color: var(--white);
  background-color: #123893;
}
@media (max-width: 768px) {
  .footer {
    padding-bottom: 70px;
    font-size: 0.75rem;
  }
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4em 2em;
  justify-content: center;
  margin-inline: auto;
  margin-bottom: 5px;
}
@media (max-width: 768px) {
  .footer-nav {
    margin-bottom: 10px;
  }
}
.footer-nav a {
  position: relative;
}
.footer-nav a:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -1em;
  display: block;
  width: 1px;
  height: 0.9em;
  content: "";
  background: var(--white);
  transform: translateY(-50%);
}
@media (hover: hover) and (pointer: fine) {
  .footer-nav a:not(:last-child)::after:hover, .footer-nav a:not(:last-child)::after:focus {
    opacity: 0.75;
  }
}
@media (hover: none) {
  .footer-nav a:not(:last-child)::after:active {
    opacity: 0.75;
  }
}
@media (max-width: 550px) {
  .footer-nav a:nth-last-child(2)::after {
    display: none;
  }
}

.copyright {
  text-align: center;
}

/* ------------------------
    mv
------------------------ */
.mv {
  margin-top: var(--header-height);
}
@media (max-width: 768px) {
  .mv {
    margin-top: 0;
  }
}

/* ------------------------
    message
------------------------ */
.message {
  padding-bottom: 180px;
  background: linear-gradient(90deg, var(--bg-right-gray) 0%, var(--bg-right-gray) 33%, var(--white) 33%, var(--white) 100%);
}
@media (max-width: 768px) {
  .message {
    padding-bottom: 90px;
  }
}
.message_container {
  max-width: 1600px;
}
.message_body {
  position: relative;
  padding-top: 115px;
  margin-bottom: 120px;
}
@media (max-width: 768px) {
  .message_body {
    margin-bottom: 90px;
  }
}
.message_img {
  position: absolute;
  top: 0;
  left: 0;
  width: min(39.2857142857%, 550px);
}
@media (max-width: 768px) {
  .message_img {
    width: min(55%, 285px);
  }
}
.message_cont {
  width: min(71.4285714286%, 700px);
  padding: 90px 3% 65px 13%;
  margin-left: auto;
  color: var(--white);
  background-color: var(--main);
}
@media (max-width: 768px) {
  .message_cont {
    width: 100%;
    padding: min(86%, 430px) 3% 45px 8%;
    margin-right: -6%;
  }
}
.message_cont-heading {
  margin-bottom: 0.8em;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.4166666667;
  letter-spacing: 0.05em;
}
@media (max-width: 1024px) {
  .message_cont-heading {
    font-size: 2.5rem;
  }
}
@media (max-width: 768px) {
  .message_cont-heading {
    position: relative;
    padding: 1.5em 0 2em 8%;
    margin-top: -5.5em;
    margin-bottom: -0.5em;
    margin-left: -9%;
    font-size: 1.375rem;
    background-color: var(--main);
  }
}
.message_txt-container {
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .message_txt-container {
    margin-bottom: 50px;
  }
}
.message_txt {
  font-size: 1.1176470588em;
  line-height: 2;
}
.message_txt + .message_txt {
  margin-top: 2em;
}
.message_signature {
  width: fit-content;
  padding-right: 1em;
  margin-left: auto;
  font-size: 1.1176470588em;
}
.message_signature-img {
  width: 12em;
  margin-top: 4px;
}
@media (max-width: 768px) {
  .message_signature-img {
    width: 10em;
  }
}
.message_vision {
  margin-bottom: 160px;
}
@media (max-width: 768px) {
  .message_vision {
    margin-bottom: 100px;
  }
}
.message_vision-img {
  display: block;
  max-width: 850px;
  margin-inline: auto;
}
.message_person {
  margin-bottom: 200px;
  background: url("../images/image_03.jpg") no-repeat top right/30.0714285714%;
}
@media (max-width: 768px) {
  .message_person {
    margin-bottom: 90px;
    background-size: 0;
  }
}
.message_person-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: flex-start;
  margin-top: 40px;
  margin-bottom: 30px;
  counter-reset: person-num;
}
@media (max-width: 768px) {
  .message_person-list {
    grid-template-columns: min(90%, 400px);
    justify-content: center;
  }
}
.message_person-item {
  min-height: 365px;
  padding: 20px 10px 30px;
  color: var(--white);
  counter-increment: person-num;
  background-color: var(--main);
}
@media (max-width: 1024px) {
  .message_person-item {
    min-height: 315px;
  }
}
@media (max-width: 768px) {
  .message_person-item {
    min-height: unset;
  }
}
.message_person-item::before {
  font-family: Lato, "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-style: normal;
  display: block;
  margin-bottom: 10px;
  font-size: 3.125rem;
  line-height: 1;
  content: counter(person-num, decimal-leading-zero);
}
@media (max-width: 768px) {
  .message_person-item::before {
    padding-left: 0.2em;
    margin-bottom: -20px;
    font-size: 2.5rem;
  }
}
.message_person-item:nth-child(2) {
  margin-top: 90px;
}
@media (max-width: 768px) {
  .message_person-item:nth-child(2) {
    margin-top: 0;
  }
}
.message_person-item:nth-child(3) {
  margin-top: 180px;
}
@media (max-width: 768px) {
  .message_person-item:nth-child(3) {
    margin-top: 0;
  }
}
.message_person-txt {
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1.4615384615;
  text-align: center;
  letter-spacing: 0.05em;
}
@media (max-width: 1024px) {
  .message_person-txt {
    font-size: 1.3125rem;
  }
}
@media (max-width: 768px) {
  .message_person-txt {
    font-size: 1.125rem;
  }
}
.message_person-txt::before {
  display: block;
  width: 115px;
  aspect-ratio: 98/75;
  margin-inline: auto;
  margin-bottom: 0.6em;
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
}
.message_person-item:nth-child(1) .message_person-txt::before {
  background-image: url("../images/icon_01.svg");
}
.message_person-item:nth-child(2) .message_person-txt::before {
  background-image: url("../images/icon_02.svg");
}
.message_person-item:nth-child(3) .message_person-txt::before {
  background-image: url("../images/icon_03.svg");
}
.message_person-message {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--main);
  text-align: center;
  letter-spacing: 0.05em;
}
@media (max-width: 1024px) {
  .message_person-message {
    font-size: 1.5625rem;
  }
}
@media (max-width: 768px) {
  .message_person-message {
    font-size: 1.3125rem;
  }
}

.gallery {
  display: flex;
  overflow: hidden;
}

.slider-wrapper {
  display: flex;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  will-change: transform;
}

.slide-pic {
  flex: 0 0 auto;
  width: 376px;
  margin-right: 25px;
}
.slide-pic:nth-child(2n) {
  margin-top: 63px;
}
@media (max-width: 768px) {
  .slide-pic:nth-child(2n) {
    margin-top: 20px;
  }
}
@media (max-width: 768px) {
  .slide-pic {
    width: 220px;
    margin-right: 15px;
  }
}

.slide-pic img {
  display: block;
  width: 100%;
  height: auto;
}

/* ------------------------
    about
------------------------ */
.about {
  padding-top: 10px;
  padding-bottom: 170px;
  background: linear-gradient(90deg, var(--white) 0%, var(--white) 33%, var(--bg-right-gray) 33%, var(--bg-right-gray) 100%);
}
.about .heading {
  padding-bottom: 0;
  margin-bottom: -0.3em;
  text-align: right;
}
@media (max-width: 768px) {
  .about .heading {
    margin-bottom: 0;
  }
}
.about_container {
  max-width: 1600px;
  padding-top: 130px;
  background: url("../images/image_10.jpg") no-repeat top left/29.2142857143%;
}
@media (max-width: 768px) {
  .about_container {
    padding-top: 30px;
    background-size: 0;
  }
}
.about_body {
  position: relative;
}
.about_list {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  align-items: flex-start;
  justify-content: center;
  margin-top: 20px;
}
.about_item {
  display: grid;
  grid-template-rows: auto auto 1fr;
  width: calc((100% - 50px) / 3);
  min-height: 440px;
  color: var(--white);
  text-align: center;
  letter-spacing: 0.05em;
  background-color: var(--main);
  border: 3px solid var(--white);
  --mt: 90px;
}
.about_item:nth-child(1) {
  margin-top: calc(var(--mt) * 2);
}
.about_item:nth-child(2) {
  margin-top: var(--mt);
}
.about_item:nth-child(5) {
  margin-top: calc(var(--mt) * -1);
}
@media (max-width: 1024px) {
  .about_item {
    min-height: 390px;
  }
}
@media (max-width: 768px) {
  .about_item {
    width: min(90%, 450px);
    min-height: unset;
    margin-top: 0 !important;
  }
}
.about_item-name {
  padding-top: 0.2em;
  padding-bottom: 0.2em;
  margin: 4px;
  font-size: 2rem;
  font-weight: 700;
  color: var(--main);
  background-color: var(--white);
}
@media (max-width: 1024px) {
  .about_item-name {
    font-size: 1.5625rem;
  }
}
@media (max-width: 768px) {
  .about_item-name {
    font-size: 1.3125rem;
  }
}
.about_item-detail {
  align-content: center;
  padding-top: 0.8em;
  padding-bottom: 0.8em;
  font-size: 1.3125rem;
}
@media (max-width: 1024px) {
  .about_item-detail {
    font-size: 1.1875rem;
  }
}
@media (max-width: 768px) {
  .about_item-detail {
    padding-bottom: 1.3em;
    font-size: 1.0625rem;
  }
}

/* ------------------------
    interview
------------------------ */
.interview {
  padding-bottom: 170px;
  background-color: var(--bg-gray);
}
.interview_item-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media (max-width: 768px) {
  .interview_item-group {
    grid-template-columns: min(90%, 450px);
    justify-content: center;
  }
}
.interview_item-body {
  padding: 30px 25px 35px;
  background-color: var(--white);
}
.interview_item-info {
  margin-bottom: 20px;
  font-size: 1.5625rem;
  font-weight: 700;
}
@media (max-width: 1024px) {
  .interview_item-info {
    font-size: 1.3125rem;
  }
}
@media (max-width: 768px) {
  .interview_item-info {
    font-size: 1.1875rem;
  }
}
.interview_item-name {
  display: block;
  font-size: 0.92em;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.remodal-overlay {
  background-color: rgba(41, 171, 255, 0.8);
}

.remodal {
  padding-top: 80px;
  padding-bottom: 350px;
  margin-bottom: 0;
  overflow-x: clip;
}

[data-remodal-target] {
  cursor: pointer;
}

.modal {
  position: relative;
  padding: 70px 75px 75px 50px;
  text-align: left;
  background-color: var(--white);
}
@media (max-width: 1024px) {
  .modal {
    padding-right: 55px;
  }
}
@media (max-width: 768px) {
  .modal {
    padding: 55px 5% 75px;
  }
}
.modal_close-btn {
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  aspect-ratio: 1;
  background: url("../images/icon_close.svg") no-repeat center/30%, var(--main);
  border-radius: 50%;
  transform: translate(50%, -35%);
}
@media (max-width: 1024px) {
  .modal_close-btn {
    transform: translate(30%, -35%);
  }
}
@media (max-width: 768px) {
  .modal_close-btn {
    width: 50px;
  }
}
.modal_top {
  display: grid;
  grid-template-columns: 324px 1fr;
  margin-bottom: 65px;
}
@media (max-width: 768px) {
  .modal_top {
    grid-template-columns: 1fr;
    padding-right: 5px;
    padding-left: 5px;
    margin-bottom: 50px;
    margin-left: -5px;
  }
}
.modal_top-body {
  padding-top: 40px;
}
@media (max-width: 768px) {
  .modal_top-body {
    padding-top: 0;
  }
}
.modal_copy {
  position: relative;
  display: inline;
  padding: 0.1em 0.4em;
  font-size: 2rem;
  line-height: 2;
  color: var(--white);
  white-space: nowrap;
  background: var(--main);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
@media (max-width: 1024px) {
  .modal_copy {
    font-size: 1.6875rem;
  }
}
@media (max-width: 768px) {
  .modal_copy {
    font-size: 1.3125rem;
  }
}
.modal_info {
  margin-top: 20px;
  font-size: 1.5625rem;
  font-weight: 700;
}
@media (max-width: 1024px) {
  .modal_info {
    font-size: 1.3125rem;
  }
}
@media (max-width: 768px) {
  .modal_info {
    margin-top: 12px;
    font-size: 1.1875rem;
  }
}
.modal_name {
  font-size: 1.4375rem;
  letter-spacing: 0.05em;
}
@media (max-width: 1024px) {
  .modal_name {
    font-size: 1.1875rem;
  }
}
@media (max-width: 768px) {
  .modal_name {
    font-size: 1.0625rem;
  }
}
@media (max-width: 768px) {
  .modal_img {
    order: -1;
    margin-bottom: -1.6em;
    margin-left: 5px;
  }
}

.qa {
  margin-bottom: 75px;
}
.qa_item {
  color: #464646;
}
.qa_item + .qa_item {
  margin-top: 50px;
}
.qa_question {
  position: relative;
  padding-left: 2.2em;
  margin-bottom: 0.5em;
  font-size: 1.4375rem;
  font-weight: 700;
}
@media (max-width: 768px) {
  .qa_question {
    padding-left: 2em;
    font-size: 1.1875rem;
    line-height: 1.5;
  }
}
.qa_question::before {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  place-content: center;
  width: 1.7em;
  aspect-ratio: 1;
  padding-bottom: 0.3em;
  font-size: 1.0434782609em;
  font-weight: 500;
  line-height: 1;
  color: var(--white);
  content: "Q";
  background-color: var(--main);
  border-radius: 50%;
}
@media (max-width: 768px) {
  .qa_question::before {
    width: 1.6em;
    font-size: 1em;
  }
}
.qa_answer {
  padding: 1em;
  text-align: justify;
  background-color: #f0f0f0;
}

/* ------------------------
    data
------------------------ */
.data {
  padding-bottom: 130px;
  background-image: linear-gradient(rgba(18, 56, 147, 0.5), rgba(18, 56, 147, 0.5)), url("../images/bg_01.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.data .heading {
  color: var(--white);
}
.data .heading::first-letter {
  color: var(--accent);
}
.data_subheading {
  font-family: Lato, "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-style: normal;
  margin-bottom: 1em;
  font-size: 2.25rem;
  font-weight: 900;
  line-height: 1.4;
  color: var(--white);
  text-align: center;
  letter-spacing: 0.1em;
}
@media (max-width: 768px) {
  .data_subheading {
    font-size: 1.625rem;
  }
}
.data_list {
  display: grid;
  grid-template-areas: "item01 item01 item01 item02 item02 item02" "item03 item03 item04 item04 item05 item05" "item06 item06 item07 item07 item08 item08";
  grid-template-columns: repeat(6, 1fr);
  gap: 25px 4%;
}
@media (max-width: 1024px) {
  .data_list {
    gap: 20px 3%;
  }
}
@media (max-width: 768px) {
  .data_list {
    grid-template-areas: "item01 item01" "item02 item02" "item03 item04" "item05 item06" "item07 item08";
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 550px) {
  .data_list {
    grid-template-areas: unset;
    grid-template-columns: 90%;
    justify-content: center;
  }
}
.data_item {
  min-height: 264px;
  padding: 35px 10px 20px;
  background-color: var(--white);
}
@media (max-width: 1024px) {
  .data_item {
    min-height: 240px;
  }
}
@media (max-width: 768px) {
  .data_item {
    min-height: unset;
  }
}
@media (max-width: 550px) {
  .data_item {
    grid-area: unset !important;
    padding: 22px 10px;
  }
}
.data_item--01 {
  grid-area: item01;
  padding: 30px 10px 15px;
  font-size: min(4.387755102vw, 2.6875rem);
}
@media (max-width: 768px) {
  .data_item--01 {
    font-size: 6vw;
  }
}
@media (max-width: 550px) {
  .data_item--01 {
    padding-top: 22px;
    font-size: 2rem;
  }
}
.data_item--01 .data_item-heading {
  margin-bottom: calc(-1.3em - 15px);
}
@media (max-width: 550px) {
  .data_item--01 .data_item-heading {
    margin-bottom: -1.3em;
  }
}
.data_item--01 .data_item-cont {
  display: grid;
  grid-template-columns: 55% 1fr;
  gap: 5%;
}
.data_item--01 .data_item-txt {
  margin-top: 1.5em;
}
.data_item--01 .emphasis {
  font-size: 2.1860465116em;
  color: var(--main);
}
@media (max-width: 768px) {
  .data_item--01 .data_item-img {
    max-width: 200px;
  }
}
.data_item--02 {
  grid-area: item02;
  padding-top: 30px;
  font-size: min(5.4081632653vw, 3.3125rem);
}
@media (max-width: 550px) {
  .data_item--02 {
    padding-top: 22px;
    font-size: 1.875rem;
  }
}
.data_item--02 .emphasis {
  font-size: 2.1886792453em;
  color: var(--accent);
}
.data_item--03 {
  grid-area: item03;
  font-size: min(4.693877551vw, 2.875rem);
}
@media (max-width: 550px) {
  .data_item--03 {
    font-size: 2.0625rem;
  }
}
.data_item--03 .data_item-heading {
  margin-bottom: 0.5em;
}
.data_item--03 .emphasis {
  font-size: 1.6304347826em;
  color: var(--accent);
}
.data_item--03 .data_item-note {
  margin-top: 1em;
  letter-spacing: 0.1em;
}
@media (max-width: 550px) {
  .data_item--03 .data_item-attention {
    font-size: 1rem;
  }
}
.data_item--04 {
  grid-area: item04;
  font-size: 2.875rem;
  font-size: min(4.693877551vw, 2.875rem);
}
@media (max-width: 550px) {
  .data_item--04 {
    font-size: 1.875rem;
  }
}
.data_item--04 .data_item-heading {
  margin-bottom: 0.5em;
}
.data_item--04 .emphasis {
  font-size: 2.152173913em;
  color: var(--main);
}
.data_item--05 {
  grid-area: item05;
  padding-right: 5px;
  padding-left: 5px;
  font-size: 2.25rem;
  font-size: min(3.6734693878vw, 2.25rem);
}
@media (max-width: 550px) {
  .data_item--05 {
    font-size: 1.875rem;
  }
}
.data_item--05 .data_item-heading {
  margin-bottom: 1.5em;
}
@media (max-width: 550px) {
  .data_item--05 .data_item-heading {
    margin-bottom: 0.5em;
  }
}
.data_item--05 .emphasis {
  margin-right: 4px;
  font-size: 2.0833333333em;
  color: var(--accent);
}
.data_item--05 .emphasis .small {
  font-size: 0.75em;
}
.data_item--06 {
  grid-area: item06;
  padding-right: 12px;
  padding-left: 12px;
}
.data_item--06 .data_item-heading {
  margin-bottom: 0.8em;
}
@media (max-width: 550px) {
  .data_item--06 .data_item-img {
    display: block;
    width: 90%;
    margin-inline: auto;
  }
}
.data_item--07 {
  grid-area: item07;
  font-size: 3.5rem;
  font-size: min(5.2040816327vw, 3.1875rem);
}
@media (max-width: 550px) {
  .data_item--07 {
    font-size: 2.0625rem;
  }
}
.data_item--07 .data_item-heading {
  margin-bottom: -0.2em;
}
.data_item--07 .emphasis {
  font-size: 1.8823529412em;
  color: var(--accent);
}
.data_item--07 .emphasis .small {
  font-size: 0.75em;
}
.data_item--07 .data_item-note {
  margin-top: 0.5em;
}
.data_item--08 {
  grid-area: item08;
  font-size: 3.5rem;
  font-size: min(5.7142857143vw, 3.5rem);
}
@media (max-width: 550px) {
  .data_item--08 {
    font-size: 2.1875rem;
  }
}
.data_item--08 .data_item-heading {
  margin-bottom: 0.5em;
  letter-spacing: 0.05em;
}
.data_item--08 .emphasis {
  font-size: 1.7678571429em;
  color: var(--main);
}
.data_item--08 .emphasis .small {
  font-size: 0.75em;
}
.data_item-heading {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  letter-spacing: 0.1em;
}
@media (max-width: 1024px) {
  .data_item-heading {
    font-size: 1.625rem;
  }
}
@media (max-width: 768px) {
  .data_item-heading {
    font-size: 1.375rem;
  }
}
@media (max-width: 550px) {
  .data_item-heading {
    font-size: 1.25rem;
  }
}
.data_item-txt {
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  letter-spacing: 0.05em;
}
.data_item-txt .emphasis {
  letter-spacing: 0;
}
.data_item-note {
  font-size: min(2.1428571429vw, 1.3125rem);
  font-weight: 700;
  line-height: 1;
  text-align: center;
}
@media (max-width: 550px) {
  .data_item-note {
    font-size: 0.9375rem;
  }
}
.data_item-attention {
  margin-top: 1em;
  font-size: min(1.5306122449vw, 0.9375rem);
  font-weight: 700;
  line-height: 1;
  text-align: center;
}
@media (max-width: 550px) {
  .data_item-attention {
    font-size: 0.75rem;
  }
}

/* ------------------------
    search
------------------------ */
.search {
  padding-top: 150px;
}
@media (max-width: 768px) {
  .search {
    padding-top: 50px;
  }
}
.search .heading {
  margin-bottom: 0.7em;
  text-align: right;
}
.search_body {
  background: url("../images/image_16.jpg") no-repeat left top/20.9285714286%;
}
@media (max-width: 768px) {
  .search_body {
    background: linear-gradient(rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.6)), url("../images/image_16.jpg") no-repeat left top/min(40%, 210px);
  }
}
.search_btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 10px;
  justify-content: center;
  padding-top: 40px;
  padding-bottom: 130px;
}
@media (max-width: 768px) {
  .search_btn-group {
    gap: 25px;
    padding-top: 30px;
    padding-bottom: 80px;
  }
}
.search_btn-group--type {
  gap: 30px;
}
@media (max-width: 768px) {
  .search_btn-group--type {
    gap: 25px;
  }
}
.search .btn {
  min-height: 83px;
  margin-inline: unset;
}
@media (max-width: 768px) {
  .search .btn {
    width: min(80%, 300px);
    min-height: 65px;
  }
}

.box_map-container {
  padding-top: 65px;
  padding-bottom: 60px;
  background-color: var(--bg-right-gray);
}
@media (max-width: 768px) {
  .box_map-container {
    padding-top: 20px;
  }
}

.box_map {
  max-width: 650px;
  padding: unset;
  background-color: unset;
  border: unset;
}
.box_map form {
  background-color: unset;
}
@media (max-width: 768px) {
  .box_map form {
    display: flex;
    flex-direction: column;
  }
}
.box_map label {
  align-content: center;
  height: 40px;
  padding-right: 1.7em;
  padding-left: 1.7em;
  color: var(--white);
  background-color: var(--accent);
}
@media (max-width: 768px) {
  .box_map label {
    width: 100%;
  }
}
.box_map input[type=text] {
  height: 40px;
  padding: 0 1em;
  margin: 0;
  background-color: var(--white);
  border-color: #969696;
  border-right-width: 0;
  border-left-width: 0;
  border-radius: 0;
}
@media (max-width: 768px) {
  .box_map input[type=text] {
    width: 100%;
    border-right-width: 1px;
    border-left-width: 1px;
  }
}
.box_map button[type=submit] {
  width: 63px;
  height: 40px;
  background-color: var(--main);
  border-radius: 0;
  transition: background-color var(--transition);
}
@media (hover: hover) and (pointer: fine) {
  .box_map button[type=submit]:hover, .box_map button[type=submit]:focus {
    background-color: rgb(66.7473684211, 112.905465587, 219.7026315789);
  }
}
@media (hover: none) {
  .box_map button[type=submit]:active {
    background-color: rgb(66.7473684211, 112.905465587, 219.7026315789);
  }
}
@media (max-width: 768px) {
  .box_map button[type=submit] {
    width: 80%;
    height: auto;
    padding: 10px 1em;
    margin-top: 20px;
    text-align: center;
    border-radius: 9999px;
  }
  .box_map button[type=submit]::after {
    font-size: 0.9375rem;
    content: "検索する";
  }
}
.box_map button[type=submit] img {
  display: block;
  width: 25px;
  margin: auto;
}
@media (max-width: 768px) {
  .box_map button[type=submit] img {
    display: inline-block;
    width: 15px;
    margin-right: 5px;
    vertical-align: -0.1em;
  }
}

.box_map-txt {
  width: fit-content;
  margin: 1em auto 0;
  font-size: 1.3125rem;
  color: var(--black) !important;
  text-decoration: underline;
  text-underline-offset: 0.15em;
  transition: opacity var(--transition);
}
@media (max-width: 1024px) {
  .box_map-txt {
    font-size: 1.125rem;
  }
}
@media (max-width: 768px) {
  .box_map-txt {
    font-size: 1rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .box_map-txt:hover, .box_map-txt:focus {
    opacity: 0.75;
  }
}
@media (hover: none) {
  .box_map-txt:active {
    opacity: 0.75;
  }
}/*# sourceMappingURL=style.css.map */