@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+1p:wght@300;400;500;700;800;900&display=swap");
@font-face {
  font-family: "DIN Condensed Bold";
  font-style: normal;
  font-weight: normal;
  src: url("../fonts/D-DINCondensed-Bold.woff") format("woff");
}
html {
  font-size: 62.5%;
}

body {
  font-family: "M PLUS 1p", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  min-width: 1190px;
}
@media (max-width: 1024px) {
  body {
    min-width: 1px;
  }
}

a {
  text-decoration: none;
}

/* ---layout classes--- */
/* basic layouts */
.spOnly {
  display: none;
}
@media (max-width: 500px) {
  .spOnly {
    display: block;
  }
}

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

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

@media (max-width: 500px) {
  .tabAndPc {
    display: none;
  }
}

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

/**/
.inner {
  width: 1170px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 1024px) {
  .inner {
    width: 90%;
    box-sizing: border-box;
    padding: 0;
  }
}

.inner2 {
  width: 905px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .inner2 {
    width: 90%;
  }
  .inner .inner2 {
    width: 100%;
  }
}

.mainColor {
  color: #008CD6;
}

.red {
  color: red;
}

/* helpers */
.mb1line {
  margin-bottom: 1.8rem;
}

.mb2line {
  margin-bottom: 3.2rem;
}

.center {
  text-align: center;
}

.left {
  text-align: left;
}

.right {
  text-align: right;
}

/* header */
.pageTop {
  display: none;
  background-color: #008CD6;
  width: 75px;
  height: 75px;
  color: white;
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 50;
  cursor: pointer;
  transition: opacity 0.3s;
}
.pageTop_inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1024px) {
  .pageTop {
    width: 55px;
    height: 55px;
  }
}
.pageTop_image {
  margin-bottom: 6px;
}
@media (max-width: 1024px) {
  .pageTop_image {
    width: 38px;
  }
}
.pageTop_text {
  text-align: center;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  text-indent: 0.04em;
}
@media (max-width: 1024px) {
  .pageTop_text {
    font-size: 1rem;
    transform: scale(0.8, 0.8);
  }
}

.header {
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: white;
  width: 100%;
  z-index: 100;
}
@media (max-width: 1024px) {
  .header {
    position: fixed;
    height: 60px;
    overflow: visible;
  }
}
.header_inner {
  display: flex;
  justify-content: space-between;
  padding-right: 0;
}
@media screen and (max-width: 1350px) {
  .header_inner {
    min-width: 100%;
  }
}
@media (max-width: 1024px) {
  .header_inner {
    padding: 0 16px;
  }
}
.header_logo {
  margin-top: 18px;
  margin-left: 1vw;
}
@media (max-width: 1024px) {
  .header_logo {
    margin-top: 8px;
    margin-left: 0;
  }
  .header_logo img {
    width: auto;
    height: 45px;
  }
}

.hamButton {
  padding-top: 6px;
  width: 50px;
  cursor: pointer;
}
.hamButton_line {
  background-color: black;
  width: 100%;
  height: 6px;
  margin: 7px auto;
}

.closeButton {
  width: 60px;
  height: 60px;
  padding: 10px;
  background-color: #008CD6;
  position: absolute;
  top: 0;
  left: -60px;
  z-index: 100;
  cursor: pointer;
}
.closeButton_line {
  border-radius: 2px;
  background-color: white;
  width: 48px;
  height: 4px;
  position: absolute;
  left: 7px;
  top: 28px;
}
.closeButton_line:nth-of-type(1) {
  transform: rotate(45deg);
}
.closeButton_line:nth-of-type(2) {
  transform: rotate(-45deg);
}

.mask {
  position: fixed;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.5);
  height: 100vh;
  width: 100%;
  z-index: 200;
  display: none;
}

.globalNav {
  letter-spacing: 0.04em;
  display: flex;
}
@media (max-width: 1024px) {
  .globalNav {
    background-color: rgb(255, 255, 255);
    position: fixed;
    width: 270px;
    height: 100vh;
    top: 0;
    z-index: 2000;
    right: -330px;
    display: block;
    transition: right 0.4s;
  }
  .globalNav.isOpen {
    right: 0;
  }
}
.globalNav_list {
  border-top: 15px solid #008CD6;
  display: flex;
  z-index: 1000;
  align-items: flex-start;
  padding: 34px 0 30px;
  margin-right: 4vw;
  position: relative;
}
@media (max-width: 1100px) {
  .globalNav_list {
    margin-right: 1.5vw;
  }
}
@media (max-width: 1024px) {
  .globalNav_list {
    display: block;
    margin: 0;
    margin-bottom: 10px;
    padding: 25px 0 0;
  }
}
.globalNav_item {
  border-right: 2px solid black;
  padding: 0 25px;
}
.globalNav_item:first-of-type {
  padding-left: 0;
}
.globalNav_item:nth-last-child(2) {
  padding-right: 0;
  border-right: none;
}
@media (max-width: 1024px) {
  .globalNav_item {
    font-size: 1.8rem;
    padding: 0px;
    margin-bottom: 25px;
    font-weight: 400;
    border: none;
    width: 100%;
    text-align: center;
  }
  .globalNav_item:first-of-type {
    padding: 0px;
  }
  .globalNav_item:nth-last-child(2) {
    padding: 0;
  }
}
.globalNav_contact {
  width: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  background-color: #008CD6;
  transition: opacity 0.3s;
}
.globalNav_contactImage {
  margin-right: 9px;
}
.globalNav_contactText {
  text-align: center;
}
.globalNav_contactText-jpn {
  display: block;
  margin-bottom: 7px;
}
.globalNav_contactText-eng {
  display: block;
  font-size: 12px;
}
.globalNav_contact:hover {
  opacity: 0.8;
}
@media (max-width: 1024px) {
  .globalNav_contact {
    width: 100%;
    height: 60px;
  }
}
.globalNav_bar {
  height: 5px;
  background-color: #008CD6;
  width: 0px;
  position: absolute;
  left: 0;
  bottom: 0;
}

/****** main ******/
.main {
  padding-top: 94px;
}
.main-subpage {
  border-bottom: 1px solid #c0bebb;
  padding-bottom: 42px;
}
@media (max-width: 1024px) {
  .main {
    padding-top: 60px;
  }
}

/* common parts */
.fadein {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s;
  transition-delay: 0.2s;
}

.text {
  letter-spacing: 0;
  line-height: 1.875;
}
@media (max-width: 500px) {
  .text {
    text-align: left;
  }
}

.largeText {
  text-align: center;
  font-size: 3.2rem;
  letter-spacing: 0.04em;
  font-weight: 700;
}
@media (max-width: 1024px) {
  .largeText {
    font-size: 2.4rem;
    line-height: 1.5;
  }
}
@media (max-width: 500px) {
  .largeText {
    font-size: 2rem;
  }
}

.largeHeading {
  text-align: center;
  font-size: 32px;
  letter-spacing: 0.04em;
  font-weight: 700;
  margin-bottom: 38px;
}
@media (max-width: 1024px) {
  .largeHeading {
    font-size: 2.4rem;
    line-height: 1.5;
  }
}
@media (max-width: 500px) {
  .largeHeading {
    font-size: 2rem;
  }
}

.smallHeading {
  color: #008CD6;
  text-align: center;
  letter-spacing: 0.04em;
  margin-bottom: 22px;
}
.smallHeading::before {
  content: "＞＞＞　";
}
.smallHeading::after {
  content: "　＜＜＜";
}

/* sections */
.mainVisual {
  height: auto;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.mainVisual_video {
  display: block;
  width: auto;
  position: relative;
  min-height: calc(100vh - 94px);
  min-width: 100%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 1024px) {
  .mainVisual {
    height: auto;
    overflow: hidden;
    padding-top: 68%;
    position: relative;
    width: 100%;
  }
  .mainVisual_video {
    min-width: 1px;
    min-height: 1px;
    position: absolute;
    height: 100%;
    width: auto;
    top: 0;
    left: 41%;
    transform: translateX(-50%);
  }
}
@media (max-width: 500px) {
  .mainVisual {
    padding-top: 70%;
  }
}

.lead {
  background-color: white;
  text-align: center;
  padding: 8px 0 73px;
  box-shadow: 0px 0px 10px rgba(75, 71, 60, 0.2);
  border-bottom: 1px solid #c0bebb;
}
@media (max-width: 500px) {
  .lead {
    padding: 4px 0 50px;
  }
}
.lead_image {
  margin-bottom: 42px;
}
.lead_text-red {
  color: #C30D23;
}

.features {
  position: relative;
}
.features_upper {
  padding: 70px 0;
}
@media (max-width: 500px) {
  .features_upper {
    padding: 50px 0;
  }
}
.features_lower {
  padding: 105px 0;
  background-color: #E4E4E2;
  position: relative;
}
@media (max-width: 500px) {
  .features_lower {
    padding: 70px 0 50px;
  }
}
.features_lower::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  border-top: 50px solid white;
  border-right: 50px solid transparent;
  border-left: 50px solid transparent;
}
@media (max-width: 500px) {
  .features_lower::before {
    border-width: 25px;
  }
}

.point {
  background-color: white;
  width: 350px;
  height: 350px;
  border-radius: 175px;
  text-align: center;
  padding-top: 153px;
  position: relative;
  margin-bottom: 83px;
}
.pointWrapper {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .pointWrapper {
    display: block;
  }
}
@media (max-width: 1024px) {
  .point {
    margin: 0 auto 50px;
  }
}
@media (max-width: 500px) {
  .point {
    width: 282px;
    height: 282px;
    padding-top: 110px;
  }
}
.point_icon {
  position: absolute;
  top: -6%;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 500px) {
  .point_icon {
    transform: translateX(-50%) scale(0.75, 0.75);
    top: -11.5%;
  }
}
.point_heading {
  letter-spacing: 0.04em;
  font-size: 2.4rem;
  margin-bottom: 22px;
  font-weight: 800;
}
.point_heading::before {
  content: "「";
  color: #9FA0A0;
}
.point_heading::after {
  content: "」";
  color: #9FA0A0;
}
@media (max-width: 500px) {
  .point_heading {
    font-size: 2rem;
  }
}
@media (max-width: 500px) {
  .point_text {
    text-align: center;
    font-size: 1.4rem;
  }
}

.slider img {
  display: block;
}

.service {
  padding: 95px 0 76px;
}
@media (max-width: 500px) {
  .service {
    padding: 50px 0;
  }
}
.service_backImage {
  position: absolute;
  display: block;
  z-index: -1;
}
@media (max-width: 1024px) {
  .service_backImage {
    width: 50vw;
  }
}
.service_backImage-1 {
  top: -3.5%;
  right: 1.3%;
}
@media (max-width: 500px) {
  .service_backImage-1 {
    top: 12%;
    right: 0px;
  }
}
.service_backImage-2 {
  top: 39.8%;
  left: 1.5%;
}
.service_backImage-3 {
  bottom: -4.5%;
  right: 1%;
}
@media (max-width: 1024px) {
  .service_backImage-3 {
    width: 40vw;
    right: 50%;
  }
}
@media (max-width: 500px) {
  .service_backImage-3 {
    bottom: -20px;
  }
}
.service_contents {
  position: relative;
  margin-top: 62px;
}

.media {
  border: 6px solid #C9CACA;
  width: 768px;
  height: 278px;
  margin: 0 auto 52px;
  padding: 0 50px 0 306px;
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  transform: translateX(23px);
}
.media:last-of-type {
  margin-bottom: 0;
}
.media-reverse {
  transform: translateX(-23px);
  padding: 0 306px 0 50px;
}
@media (max-width: 1024px) {
  .media {
    min-height: 36vw;
    width: 100%;
    height: auto;
    padding: 20px;
    padding-left: 50%;
    transform: translateX(10px);
  }
  .media-reverse {
    padding: 20px;
    padding-right: 50%;
    transform: translateX(-10px);
  }
}
@media (max-width: 500px) {
  .media {
    height: auto;
    padding: 30px 20px 20px;
    width: 100%;
    transform: none;
  }
}
.media_figure {
  position: absolute;
  left: -52px;
  top: -16px;
}
.media-reverse .media_figure {
  left: auto;
  right: -52px;
}
@media (max-width: 1024px) {
  .media_figure {
    width: 50%;
    left: -26px;
  }
  .media-reverse .media_figure {
    right: -26px;
  }
  .media_figure img {
    width: 100%;
  }
}
@media (max-width: 500px) {
  .media_figure {
    width: 100%;
    position: relative;
    top: 0;
    left: 0;
    margin-bottom: 25px;
  }
  .media-reverse .media_figure {
    left: 0;
    right: 0;
  }
}
@media (max-width: 500px) {
  .media_image {
    display: block;
    margin: 0 auto;
  }
}
.media_tag {
  background-color: #008CD6;
  color: white;
  width: 176px;
  height: 38px;
  margin-bottom: 17px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.04em;
}
@media (max-width: 500px) {
  .media_tag {
    position: absolute;
    top: -54px;
    left: -32px;
  }
}
.media_heading {
  letter-spacing: 0.04em;
  font-weight: 700;
  font-size: 2.8rem;
  margin-bottom: 25px;
}
@media (max-width: 1024px) {
  .media_heading {
    font-size: 2rem;
  }
}
.media-reverse .media_heading {
  text-align: right;
}
@media (max-width: 500px) {
  .media-reverse .media_heading {
    text-align: left;
  }
}
.media_text {
  font-weight: 400;
}

.strength {
  padding: 78px 0;
  background-color: rgba(0, 140, 214, 0.2);
}
@media (max-width: 500px) {
  .strength {
    padding: 50px 0px;
  }
}
.strength_object {
  display: block;
  margin: 17px auto 24px;
}
@media (max-width: 1024px) {
  .strength_object {
    display: none;
  }
}
@media (max-width: 1024px) {
  .strength_text {
    margin-bottom: 55px;
  }
}

.facility {
  width: 250px;
}
.facilityWrapper {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .facilityWrapper {
    display: block;
  }
}
@media (max-width: 1024px) {
  .facility {
    margin: 0 auto 55px;
    width: 85%;
    text-align: center;
  }
  .facility:last-of-type {
    margin-bottom: 0;
  }
}
.facility_image {
  margin-bottom: 21px;
}
.facility_heading {
  font-size: 2.1rem;
  color: #008CD6;
  margin-bottom: 17px;
}
.facility_text {
  font-weight: 400;
}
@media (max-width: 1024px) {
  .facility_text {
    text-align: left;
  }
}

.flow {
  padding: 88px 0 113px;
  text-align: center;
}
@media (max-width: 500px) {
  .flow {
    padding: 50px 0;
  }
}
.flow_headingImage {
  margin-bottom: 14px;
}
@media (max-width: 1024px) {
  .flow_headingImage {
    max-width: 90%;
  }
}
.flow_heading {
  font-size: 2.1rem;
  color: #008CD6;
  margin-bottom: 42px;
}
@media (max-width: 500px) {
  .flow_heading {
    font-size: 2rem;
  }
}

.flowChart {
  text-align: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 70px;
}
@media (max-width: 1024px) {
  .flowChart {
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 50px;
  }
}
@media (max-width: 500px) {
  .flowChart {
    display: block;
    margin-bottom: 40px;
  }
}
.flowChart_item {
  color: white;
  background-color: #008CD6;
  width: 167px;
  height: 167px;
  border-radius: 83.5px;
  padding-top: 40px;
  position: relative;
  z-index: 1;
}
@media (max-width: 1024px) {
  .flowChart_item {
    margin: 0 16px 25px;
  }
}
@media (max-width: 500px) {
  .flowChart_item {
    margin: 0 auto 30px;
  }
}
.flowChart_item::after {
  content: "";
  display: block;
  position: absolute;
  background-color: inherit;
  width: 24px;
  height: 24px;
  top: 50%;
  right: -10px;
  transform: translateY(-50%) rotate(45deg);
  z-index: -1;
}
@media (max-width: 500px) {
  .flowChart_item::after {
    top: auto;
    bottom: -10px;
    right: 50%;
    transform: translateX(50%) rotate(45deg);
  }
}
.flowChart_item:last-of-type::after {
  display: none;
}
.flowChart_item:nth-of-type(1) {
  background-color: #5FB4E6;
}
.flowChart_item:nth-of-type(2) {
  background-color: #2DA9E2;
}
.flowChart_item:nth-of-type(3) {
  background-color: #009EDD;
}
.flowChart_item:nth-of-type(4) {
  background-color: #0094DA;
}
.flowChart_item:nth-of-type(5) {
  background-color: #008CD6;
}
.flowChart_item:nth-of-type(6) {
  background-color: #E99413;
}
.flowChart_title {
  font-size: 2.4rem;
  letter-spacing: 0.04em;
  text-indent: 0.04em;
  border-bottom: 1px solid white;
  padding-bottom: 11px;
  margin: 0 auto 8px;
  width: 80%;
  white-space: nowrap;
}
.flowChart_title span {
  margin: 0 -0.3em;
}
.flowChart_text {
  font-size: 12px;
  line-height: 18px;
  font-weight: 400;
}

.greeting {
  background-color: #E4E4E2;
  padding: 95px 0 109px;
}
@media (max-width: 500px) {
  .greeting {
    padding: 50px 0;
  }
}
.greeting_inner {
  position: relative;
}
.greeting_heading {
  margin-bottom: 90px;
}
@media (max-width: 500px) {
  .greeting_heading {
    margin-bottom: 40px;
  }
}
.greeting_headingImage {
  position: absolute;
  top: 98px;
  left: 16px;
  z-index: 1;
}
@media (max-width: 1024px) {
  .greeting_headingImage {
    width: 240px;
  }
}
@media (max-width: 500px) {
  .greeting_headingImage {
    width: 160px;
    top: 70px;
  }
}
.greeting_imageWrapper {
  background-repeat: no-repeat;
  background-position: center top 83px;
  text-align: center;
  padding-top: 30px;
  padding-bottom: 30px;
}
@media (max-width: 1024px) {
  .greeting_imageWrapper {
    background-size: contain;
    background-position: center top 30%;
  }
}

.message {
  width: 1028px;
  height: 500px;
  margin: 0 auto 94px;
  border-top: 6px solid #C9CACA;
  border-left: 6px solid #C9CACA;
  display: flex;
  justify-content: space-between;
  padding: 97px 0 0 47px;
}
@media (max-width: 1024px) {
  .message {
    width: 100%;
    height: auto;
    flex-direction: column-reverse;
    padding: 8% 0 5% 5%;
  }
}
@media (max-width: 500px) {
  .message {
    margin-bottom: 50px;
  }
}
.message_content {
  width: 661px;
}
@media (max-width: 1024px) {
  .message_content {
    width: 100%;
  }
}
.message_heading {
  font-size: 2.1rem;
  margin-bottom: 23px;
}
@media (max-width: 1024px) {
  .message_heading {
    font-size: 1.8rem;
    text-align: center;
  }
}
.message_text {
  font-weight: 400;
}
.message_figure {
  margin-top: -36px;
  margin-right: -8px;
}
@media (max-width: 1024px) {
  .message_figure {
    margin: 0 auto 8%;
  }
}
.message_image {
  margin-bottom: 16px;
}
.message_name {
  font-size: 2.1rem;
  font-weight: 500;
  text-align: center;
}
@media (max-width: 1024px) {
  .message_name {
    font-weight: 500;
  }
}
.message_position {
  font-size: 1.6rem;
  margin-right: 1.6rem;
}

.faqBox {
  overflow: hidden;
}
.faqBox_upper {
  padding: 53px 0 105px;
  background-color: #BADAF3;
  background-image: url(../images/bg2.png);
  text-align: center;
  position: relative;
}
.faqBox_upper::before {
  content: "";
  position: absolute;
  display: block;
  background-color: white;
  width: 50vw;
  height: 50px;
  bottom: 0;
  right: 50%;
  transform: translateX(-50px);
}
@media (max-width: 500px) {
  .faqBox_upper::before {
    height: 25px;
    transform: translateX(-25px);
  }
}
.faqBox_upper::after {
  content: "";
  position: absolute;
  display: block;
  border-left: 25px solid white;
  border-bottom: 25px solid white;
  border-top: 25px solid transparent;
  border-right: 25px solid transparent;
  bottom: 0;
  right: 50%;
}
@media (max-width: 500px) {
  .faqBox_upper::after {
    border-width: 12.5px;
  }
}
@media (max-width: 500px) {
  .faqBox_upper {
    padding: 50px 0 70px;
  }
}
.faqBox_headingImage {
  margin-bottom: 24px;
}
.faqBox_lower {
  position: relative;
  background-color: white;
  padding: 77px 0 105px;
}
.faqBox_lower::before {
  content: "";
  position: absolute;
  display: block;
  background-color: white;
  width: 50vw;
  height: 50px;
  top: -50px;
  left: 50%;
  transform: translateX(50px);
}
@media (max-width: 500px) {
  .faqBox_lower::before {
    top: -25px;
    height: 25px;
    transform: translateX(25px);
  }
}
.faqBox_lower::after {
  content: "";
  position: absolute;
  display: block;
  border-bottom: 25px solid white;
  border-right: 25px solid white;
  border-top: 25px solid transparent;
  border-left: 25px solid transparent;
  top: -50px;
  left: 50%;
}
@media (max-width: 500px) {
  .faqBox_lower::after {
    border-width: 12.5px;
    top: -25px;
  }
}
@media (max-width: 500px) {
  .faqBox_lower {
    padding: 50px 0;
  }
}

.faq {
  margin-bottom: 62px;
}
@media (max-width: 500px) {
  .faq {
    margin-bottom: 40px;
  }
}
.faq_question {
  letter-spacing: 0.04em;
  display: flex;
  border-bottom: 1px solid #008CD6;
  margin-bottom: 20px;
}
@media (max-width: 500px) {
  .faq_question {
    display: block;
  }
}
.faq_questionText {
  font-size: 2.1rem;
  line-height: 40px;
}
@media (max-width: 1024px) {
  .faq_questionText {
    font-size: 1.6rem;
    line-height: 1.75;
    margin-top: -5px;
    padding-bottom: 10px;
  }
}
.faq_tag {
  color: white;
  width: 170px;
  height: 40px;
  text-align: right;
  font-size: 24px;
  font-weight: 700;
  padding: 0 16px;
  line-height: 40px;
  margin-right: 20px;
  flex-shrink: 0;
}
.faq_tag-question {
  background-color: #008CD6;
}
.faq_tag-answer {
  background-color: #E99413;
}
@media (max-width: 500px) {
  .faq_tag {
    text-align: left;
    margin-bottom: 16px;
  }
}
.faq_answer {
  display: flex;
}
.faq_answerText {
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.04em;
  margin-top: -5px;
}
@media (max-width: 500px) {
  .faq_answer {
    display: block;
  }
}

.contactLink {
  text-align: center;
}
.contactLink_object {
  margin-bottom: 47px;
}
.contactLink_heading {
  font-weight: 800;
  font-size: 2.4rem;
  letter-spacing: 0.04em;
  margin-bottom: 36px;
}
@media (max-width: 1024px) {
  .contactLink_heading {
    font-size: 2rem;
  }
}
.contactLink_button {
  margin-bottom: 30px;
  transform: translateX(6px);
}
.contactLink_note {
  font-size: 1.2rem;
}

.smallButton {
  text-align: center;
  padding-top: 14px;
  width: 254px;
  height: 49px;
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  font-size: 1.8rem;
  letter-spacing: 0.02em;
  color: #008CD6;
  background-image: url(../images/small-button.png);
  transition: color 0.3s;
}
.smallButton:hover {
  color: #5FB4E6;
}

.company {
  background-color: #E4E4E2;
  padding: 116px 0 0;
}
@media (max-width: 500px) {
  .company {
    padding: 50px 0 0;
  }
}
.company_heading {
  color: #595757;
  margin-bottom: 67px;
}
@media (max-width: 500px) {
  .company_heading {
    margin-bottom: 38px;
  }
}

.dataList {
  display: flex;
  border-top: 1px solid #c0bebb;
  padding: 8px 0;
}
.dataList:last-of-type {
  border-bottom: 1px solid #c0bebb;
}
.dataListWrapper {
  margin-bottom: 68px;
}
@media (max-width: 500px) {
  .dataListWrapper {
    margin-bottom: 40px;
  }
}
.dataList_title {
  width: 188px;
  flex-shrink: 0;
  border-right: 1px solid #c0bebb;
  font-size: 2rem;
  display: flex;
  align-items: center;
}
@media (max-width: 1024px) {
  .dataList_title {
    width: 25%;
    font-size: 1.6rem;
    line-height: 1.66666;
    min-width: 92px;
  }
}
@media (max-width: 500px) {
  .dataList_title {
    font-size: 1.3rem;
    justify-content: center;
  }
}
.dataList_desc {
  font-size: 1.8rem;
  line-height: 1.66666;
  font-weight: 400;
  padding: 13px 0 13px 27px;
}
@media (max-width: 1024px) {
  .dataList_desc {
    font-size: 1.6rem;
  }
}
@media (max-width: 500px) {
  .dataList_desc {
    font-size: 1.5rem;
    padding-left: 8px;
  }
}

.subHeading {
  color: #008CD6;
  font-size: 2.4rem;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}
@media (max-width: 1024px) {
  .subHeading {
    font-size: 2rem;
  }
}

@media (max-width: 1024px) {
  .companyImage {
    width: 30%;
  }
}
.companyImageWrapper {
  margin: 85px auto 110px;
  display: flex;
  /*justify-content: space-between;*/
  justify-content: center;
  gap: 5rem;
}
@media (max-width: 500px) {
  .companyImageWrapper {
    margin: 0 auto 50px;
    gap: 2rem;
  }
}
.companyImage_image {
  margin-bottom: 11px;
}
.companyImage_text {
  font-weight: 400;
}
@media (max-width: 500px) {
  .companyImage_text {
    font-size: 1.2rem;
    line-height: 1.5;
    text-align: center;
  }
}

.smallDataList {
  display: flex;
  white-space: nowrap;
  margin-bottom: 22px;
}
.smallDataList_title {
  font-size: 2rem;
  flex-shrink: 0;
  margin-right: 1.6rem;
}
.smallDataList_desc {
  font-size: 1.8rem;
  line-height: 2rem;
  font-weight: 400;
}
@media (max-width: 1024px) {
  .smallDataList {
    display: block;
    white-space: normal;
  }
  .smallDataList_title {
    font-size: 1.6rem;
    line-height: 1.875;
  }
  .smallDataList_desc {
    font-size: 1.6rem;
    line-height: 1.6;
  }
}

.map {
  width: 100%;
  height: 450px;
  margin-bottom: 124px;
}
.map:last-of-type {
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  .map {
    height: 400px;
    margin-bottom: 74px;
  }
}
@media (max-width: 500px) {
  .map {
    margin-bottom: 40px;
  }
}

.footer {
  text-align: center;
  padding: 64px 0 30px;
}
.footer_logo {
  margin-bottom: 56px;
}
.footer_copyRight {
  display: block;
  color: #008CD6;
  font-size: 12px;
  font-weight: 400;
}

/* CONTACT */
.pageHeader {
  height: 200px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top 59%;
  padding-top: 77px;
}
@media (max-width: 500px) {
  .pageHeader {
    padding-top: 10%;
  }
}
.pageHeader_title {
  font-size: 32px;
  text-align: left;
}
@media (max-width: 1024px) {
  .pageHeader_title {
    font-size: 2.4rem;
  }
}

.pageHeading {
  font-family: "DIN Condensed Bold";
  font-size: 4.2rem;
  letter-spacing: 0.02em;
  color: #008CD6;
  text-align: center;
  transform: scaleX(0.8);
  margin-bottom: 10px;
}

.mediumButton {
  margin-left: auto;
  margin-right: auto;
  color: white;
  background-color: #008CD6;
  border: 3px solid #008CD6;
  font-family: inherit;
  font-size: 1.8rem;
  height: 50px;
  width: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: inherit;
  cursor: pointer;
  transition: all 0.3s;
}
.mediumButton:hover {
  background-color: white;
  color: #008CD6;
}

.contact {
  padding: 63px 0 0;
}
@media (max-width: 500px) {
  .contact {
    padding-top: 50px;
  }
}
.contact_text {
  margin-bottom: 42px;
  text-align: center;
}
.contact_formNote {
  font-size: 1.4rem;
  line-height: 1.68em;
  margin-bottom: 42px;
  font-weight: 400;
}
.contact_note {
  font-size: 1.2rem;
  line-height: 1.46;
  font-weight: 400;
}
.contact_noteItem {
  margin-bottom: 18px;
}
.contact_noteTitle {
  margin-bottom: 10px;
}
.contact_button {
  margin-bottom: 63px;
}
.contact_buttonWrapper {
  display: flex;
  justify-content: center;
}
.contact_buttonWrapper > .contact_button {
  margin-right: 10px;
  margin-left: 10px;
}
@media (max-width: 500px) {
  .contact_buttonWrapper > .contact_button {
    height: 40px;
    font-size: 1.6rem;
  }
}

.naviChart {
  margin: 0 auto 38px;
  display: flex;
  justify-content: space-between;
  width: 395px;
}
@media (max-width: 500px) {
  .naviChart {
    width: 90%;
  }
}
.naviChart_item {
  width: 100px;
  height: 100px;
  border-radius: 50px;
  border: 3px solid #008CD6;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #008CD6;
  text-indent: 0.2em;
  letter-spacing: 0.2em;
  background-color: white;
  position: relative;
  z-index: 1;
}
.naviChart_item::after {
  content: "";
  position: absolute;
  display: block;
  left: 100%;
  border-top: 3px solid #008CD6;
  width: 100px;
  z-index: -1;
}
@media (max-width: 500px) {
  .naviChart_item::after {
    width: 22vw;
  }
}
.naviChart_item:last-of-type::after {
  display: none;
}
.naviChart_item-active {
  color: white;
  background-color: #008CD6;
}
@media (max-width: 500px) {
  .naviChart_item {
    width: 22vw;
    height: 22vw;
    border-radius: 11vw;
  }
}

.form {
  display: flex;
  border-top: 1px solid #c0bebb;
}
.formWrapper-confirm .form_data {
  padding: 12px;
}
.form:last-of-type {
  border-bottom: 1px solid #c0bebb;
}
@media (max-width: 1024px) {
  .form {
    display: block;
  }
}
.formWrapper {
  margin-bottom: 35px;
}
@media (max-width: 1024px) {
  .formWrapper {
    margin-bottom: 20px;
  }
}
.form_title {
  padding: 28px 14px 0;
  width: 34%;
  flex-shrink: 0;
  font-size: 1.8rem;
  background-color: rgba(0, 140, 214, 0.1);
  position: relative;
}
@media (max-width: 1024px) {
  .form_title {
    font-size: 1.6rem;
  }
}
@media (max-width: 1024px) {
  .form_title {
    width: 100%;
    padding: 15px 12px;
  }
}
.form_data {
  font-size: 1.8rem;
  line-height: 1.66666;
  font-weight: 400;
  padding: 22px 0 22px 55px;
  flex: 1;
}
@media (max-width: 1024px) {
  .form_data {
    font-size: 1.6rem;
  }
}
@media (max-width: 1024px) {
  .form_data {
    padding: 15px 0;
  }
}
.form_data-col2 {
  display: flex;
  justify-content: space-between;
}
.form_dataHalf {
  width: 49%;
  text-align: right;
}
@media (max-width: 1024px) {
  .form_dataHalf {
    width: 50%;
  }
}
.form_must {
  position: absolute;
  top: 28px;
  right: 16%;
  color: red;
}
@media (max-width: 1024px) {
  .form_must {
    font-size: 1.6rem;
    right: 12px;
    top: 12px;
  }
}
.form_note {
  font-size: 12px;
  vertical-align: middle;
  margin-left: 1em;
}

.inputText {
  height: 30px;
  width: 100%;
  border: none;
  background-color: #EFEFEF;
}
.inputText-short {
  width: 80%;
  margin-left: 1em;
}
@media (max-width: 1024px) {
  .inputText-short {
    width: 74%;
    margin-left: 0.25em;
  }
}
.inputText-large {
  height: 240px;
  box-sizing: border-box;
  padding: 8px 12px;
  line-height: 1.5;
}

.phone {
  border-top: 1px solid #c0bebb;
  border-bottom: 1px solid #c0bebb;
  padding: 30px 0 26px;
  text-align: center;
  margin-bottom: 18px;
}
.phone_number {
  display: inline-block;
  margin-bottom: 17px;
}
@media (max-width: 500px) {
  .phone_number {
    width: 90%;
  }
}
.phone_text {
  font-weight: 400;
  font-size: 12px;
}
@media (max-width: 500px) {
  .phone_text {
    line-height: 1.5;
  }
}
/*# sourceMappingURL=style.css.map */