@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
/* タッチデバイス用の設定を追加 */
html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

/* ページ全体のタッチ操作を改善 */
.wrapper {
  min-height: 100vh;
  touch-action: pan-y; /* 縦スクロールのみ許可 */
}

body {
  font-family: "Hiragino Kaku Gothic Pro", "Meiryo UI", "Hiragino Sans", "Yu Gothic UI", "MS PGothic", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
  color: #111111;
  line-height: 1.4;
  min-width: 1200px;
  position: relative;
  margin-inline: auto;
  -webkit-overflow-scrolling: touch;
  background-color: #fff;
}
body.show {
  overflow: hidden;
}
@media (width < 1440px) {
  body {
    background-position: top left;
    background-size: auto !important;
    background-repeat: repeat-x !important;
  }
}
@media (width < 768px) {
  body {
    min-width: 100%;
    padding-top: 56px;
  }
}

a {
  text-decoration: none;
  transition: all 0.5s ease;
}
a:hover {
  opacity: 0.5;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

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

.onlyPC {
  display: block !important;
}

.onlySP {
  display: none !important;
}

@media (width < 768px) {
  .onlyPC {
    display: none !important;
  }
  .onlySP {
    display: block !important;
  }
}
.header {
  background-color: #fff;
  border-bottom: 1px solid #d7d7d7;
  padding-left: 16px;
  padding-right: 16px;
}
.header__inner {
  position: relative;
  max-width: 1200px;
  height: 73px;
  align-content: center;
  margin-inline: auto;
}
.header__logo {
  width: 123px;
  margin-inline: auto;
}
.header__btn {
  display: block;
  font-size: 15px;
  width: 220px;
  height: 36px;
  background-color: #eaeaea;
  text-align: center;
  align-content: center;
  border-radius: 38px;
  color: #111111;
  transition: all 0.3s ease;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.header__btn:hover {
  opacity: 1;
  background-color: #d7d7d7;
}
.header__btn-text {
  padding-left: 26px;
  background: url("../img/common/icon_arrow_black.svg") no-repeat left center/18px;
}
@media (width < 769px) {
  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transform: translateY(0);
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
  }
  .header.header-hidden {
    transform: translateY(-100%);
  }
  .header__inner {
    width: 100%;
    height: 56px;
  }
  .header__logo {
    width: 104px;
  }
  .header__btn {
    font-size: 0;
    width: 36px;
    height: 36px;
    border-radius: 100%;
  }
  .header__btn-text {
    display: block;
    padding-left: 0;
    width: 100%;
    height: 100%;
    background: url("../img/common/icon_arrow_black.svg") no-repeat center/18px;
  }
}

.footer__top {
  padding: 24px 13px 22px;
  background-color: #6c7883;
}
.footer__top-inner {
  width: 100%;
  margin-inline: auto;
}
.footer__top-link {
  width: 134px;
  display: block;
  margin-inline: auto;
}
.footer__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 21px;
  margin-top: 13px;
}
.footer__item-link {
  font-size: 12px;
  line-height: 2;
  color: #fff;
}
.footer__item-link:hover {
  text-decoration: underline;
}
.footer__bottom {
  background-color: #fff;
  padding-left: 16px;
  padding-right: 16px;
}
.footer__bottom-inner {
  max-width: 1200px;
  margin-inline: auto;
  height: 77px;
  align-content: center;
  display: flex;
  align-items: center;
  gap: 26px;
}
.footer__bottom-logo {
  width: 144px;
}
.footer__copyright {
  font-size: 14px;
  color: #111;
}
@media (width < 768px) {
  .footer__top {
    padding: 30px 30px 40px;
    border-top: 1px solid #c1c1c1;
  }
  .footer__top-inner {
    width: 100%;
  }
  .footer__top-link {
    width: 100px;
  }
  .footer__list {
    gap: 12px 24px;
    margin-top: 20px;
  }
  .footer__item-link {
    font-size: 13px;
  }
  .footer__bottom-inner {
    width: 100%;
    height: 92px;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding-top: 20px;
    padding-bottom: 14px;
  }
  .footer__bottom-inner__bottom-logo {
    width: 184px;
  }
  .footer__bottom-inner__copyright {
    font-size: 12px;
    line-height: 1;
  }
}

.main {
  padding-left: 16px;
  width: 100%;
  height: 400px;
  background-color: #f0f7f9;
}
.main__inner {
  position: relative;
  max-width: 1200px;
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
}
.main__headline {
  font-size: 40px;
  font-weight: bold;
  color: #354556;
}
.main__picture {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 740px;
}
@media (width < 768px) {
  .main {
    height: 350px;
  }
  .main__inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .main__headline {
    font-size: 26px;
    margin-top: 44px;
    margin-left: 23px;
  }
  .main__picture {
    width: 100%;
  }
}

.mission {
  padding: 100px 32px;
}
.mission__inner {
  max-width: 600px;
  margin-inline: auto;
}
.mission__headline {
  text-align: center;
  position: relative;
  color: #354556;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.25;
  padding-bottom: 14px;
}
.mission__headline::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background-color: #0f9cc4;
}
.mission__lead {
  text-align: center;
  margin-top: 24px;
  font-size: 30px;
  font-weight: bold;
  line-height: 1.5;
}
.mission__text {
  text-align: left;
  margin-top: 40px;
  font-size: 16px;
  line-height: 1.6;
  p + *{
    margin-top: 1em;
    }
}



@media (width < 768px) {
  .mission {
    padding: 40px 16px;
  }
  .mission__headline {
    font-size: 16px;
    padding-bottom: 10px;
  }
  .mission__headline::after {
    width: 60px;
  }
  .mission__lead {
    text-align: left;
    margin-top: 24px;
    font-size: 20px;
  }
  .mission__text {
    font-size: 16px;
    margin-top: 24px;
  }
}

.tagline__inner {
  background-color: #457b9d;
  border-radius: 10px;
  max-width: 1200px;
  margin-inline: auto;
  padding: 80px 60px;
}
.tagline__contents {
  display: grid;
  grid-template-columns: auto auto;
  color: #fff;
  -moz-column-gap: 80px;
       column-gap: 80px;
}
.tagline__headline {
  grid-column: 1/2;
  grid-row: 1/2;
  position: relative;
  padding-left: 29px;
  font-size: 22px;
  font-weight: bold;
  line-height: 1.25;
  margin-top: 39px;
}
.tagline__headline::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 13px;
  height: 13px;
  background-color: #fff;
  border-radius: 100%;
}
.tagline__catch {
  grid-column: 1/2;
  grid-row: 2/3;
  font-size: 28px;
  font-weight: bold;
  margin-top: 47px;
}
.tagline__text {
  grid-column: 1/2;
  grid-row: 3/4;
  font-size: 16px;
  line-height: 1.6;
  margin-top: 26px;
}
.tagline__figure {
  grid-column: 2/3;
  grid-row: 1/5;
  width: 500px;
  height: 280px;
  align-content: center;
  background-color: #fff;
  border-radius: 8px;
}
.tagline__image {
  display: block;
  width: 270px;
  margin-inline: auto;
}
@media (width < 768px) {
  .tagline {
    padding: 0 9px;
    margin-top: 40px;
  }
  .tagline__inner {
    padding: 40px 16px;
  }
  .tagline__contents {
    display: block;
  }
  .tagline__headline {
    padding-left: 24px;
    font-size: 18px;
    margin-top: 0;
  }
  .tagline__headline::before {
    width: 12px;
    height: 12px;
  }
  .tagline__catch {
    font-size: 20px;
    margin-top: 24px;
  }
  .tagline__text {
    font-size: 16px;
    margin-top: 24px;
  }
  .tagline__figure {
    width: 100%;
    height: auto;
    margin-top: 24px;
    padding: 40px 0;
  }
  .tagline__image {
    width: 190px;
  }
}

.contents {
  margin-top: 100px;
}
.contents__inner {
  background-color: #f5f5f5;
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  border-radius: 10px;
  padding: 80px 40px;
  margin-bottom: 100px;
}
.contents__item {
  display: grid;
  -moz-column-gap: 5vw;
       column-gap: 5vw;
}
.contents__item + .contents__item {
  margin-top: 80px;
  padding-top: 80px;
  border-top: 1px solid #d7d7d7;
}
.contents__headline {
  position: relative;
  grid-row: 1/2;
  font-size: 22px;
  font-weight: bold;
  line-height: 1.25;
  color: #354556;
  padding-left: 29px;
}
.contents__headline::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 13px;
  height: 13px;
  background-color: #0f9cc4;
  border-radius: 100%;
}
.contents__figure {
  align-content: center;
  border-radius: 8px;
  grid-row: 1/5;
  width: 500px;
  height: 281px;
  overflow: hidden;
}
.contents__figure--01 {
  background-color: #cbe6ef;
  grid-column: 1/2;
}
.contents__figure--02 {
  background-color: #cadcf1;
  grid-column: 2/3;
}
.contents__image {
  display: block;
  margin-inline: auto;
}
.contents__image--01 {
  width: 499px;
}
.contents__image--02 {
  width: 348px;
}
.contents__text {
  font-size: 16px;
  line-height: 1.6;
  margin-top: 40px;
}
.contents__btn-text {
  grid-row: 2/3;
  display: block;
  width: 100%;
  height: 100%;
  align-content: center;
}
.contents__btn {
  grid-row: 3/4;
  margin-top: 42px;
  width: 270px;
  height: 49px;
  border-radius: 38px;
  text-align: center;
  background-color: #6c7883;
  border: 1px solid #6c7883;
  font-size: 15px;
  font-weight: bold;
  color: #fff;
  transition: all 0.5s ease;
  background-image: url("../img/common/icon_arrow_right_white.svg");
  background-repeat: no-repeat;
  background-position: right 22.5px center;
  background-size: 18px;
}
.contents__btn:hover {
  opacity: 1;
  border: 1px solid #c1c1c1;
  background-color: #fff;
  background-image: url("../img/common/icon_arrow_right_black.svg");
  color: #000;
}
@media (width < 768px) {
  .contents {
    margin-top: 40px;
    padding-bottom: 0;
  }
  .contents__inner {
    padding: 40px 16px 80px;
    margin-bottom: 0;
  }
  .contents__item {
    display: block;
  }
  .contents__item + .contents__item {
    margin-top: 40px;
    padding-top: 40px;
  }
  .contents__headline {
    font-size: 18px;
    padding-left: 24px;
  }
  .contents__headline--01 {
    margin-top: 0;
  }
  .contents__headline::before {
    width: 12px;
    height: 12px;
  }
  .contents__figure {
    width: 100%;
    height: 193px;
    margin-top: 24px;
  }
  .contents__image--01 {
    width: 343px;
  }
  .contents__image--02 {
    width: 239px;
  }
  .contents__text {
    font-size: 16px;
    margin-top: 24px;
  }
  .contents__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 270px;
    margin-inline: auto;
    margin-top: 24px;
  }
  .contents .contents__item:nth-of-type(even) .contents__headline,
  .contents .contents__item:nth-of-type(even) .contents__text,
  .contents .contents__item:nth-of-type(even) .contents__btn {
    grid-column: 1/2;
  }
  .contents .contents__item:nth-of-type(even) .contents__figure {
    grid-column: 2/3;
  }
}/*# sourceMappingURL=style.css.map */