@charset "UTF-8";
/* CSS Document */
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
  box-sizing: border-box;
  scroll-behavior: smooth;
  scroll-padding-top: 97px;
}
main {
  padding-top: 97px;
}
@media (max-width: 1200px) {
  html {
    scroll-margin-top: 89px;
  }
  main {
    padding-top: 89px;
  }
}
@media (max-width: 1023px) {
  html {
    scroll-margin-top: 68px;
  }
  main {
    padding-top: 68px;
  }
}
body {
  color: #333333;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic Pro", "Meiryo", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
  text-align: center;
  overflow-x: hidden;
}
* {
  margin: 0;
  padding: 0;
}
a, address {
  text-decoration: none;
  transition: color 0.3s;
}
/* スクロールフェードイン */
.u-fade-type-up {
  transform: translateY(50px);
  opacity: 0;
}
.u-fade-type-up.is-active {
  transition: .6s;
  transform: translateY(0);
  opacity: 1;
}
/*スワイパーページネーション調整*/
.swiper-pagination {
  width: initial !important;
  left: 3% !important;
  bottom: 4% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.swiper-pagination-bullet {
  width: 10px !important;
  height: 10px !important;
  margin: 0 6px !important;
  background-color: #898989 !important;
  opacity: 1 !important;
  text-align: center !important;
}
.swiper-pagination-bullet-active {
  width: 18px !important;
  height: 18px !important;
  background-color: #fff !important;
}
@media (max-width: 1023px) {
  .swiper-pagination {
    left: 50% !important;
    transform: translateX(-50%) !important;
    bottom: 16px !important;
  }
  .swiper-pagination-bullet {
    width: 6px !important;
    height: 6px !important;
  }
  .swiper-pagination-bullet-active {
    width: 10px !important;
    height: 10px !important;
  }
}
/*フォント*/
.noto_Black {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
}
.roboto-bold {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-style: normal;
}
/*大文字*/
.uppercase {
  text-transform: uppercase;
}
/*大見出し黒*/
.h2-jp-noto {
  color: #333;
  font-size: 3.9rem;
  font-weight: 900;
  line-height: 1.0;
  margin-bottom: 29px;
  text-align: center;
}
/*大見出し紺*/
.h2-jp-noto-g {
  color: #00315F;
  font-size: 3.9rem;
  font-weight: 900;
  line-height: 1.0;
  margin-bottom: 29px;
  text-align: center;
}
/*大見出し白*/
.h2-jp-noto-w {
  color: #fff;
  font-size: 3.9rem;
  font-weight: 900;
  line-height: 1.0;
  margin-bottom: 29px;
  text-align: center;
}
/*大見出し黒改行あり*/
.h2-jp-noto__br {
  color: #333;
  font-size: 3.9rem;
  font-weight: 900;
  line-height: 1.5;
  text-align: center;
}
/*大見出し黒左よせ*/
.h2-jp-noto-left {
  color: #333;
  font-size: 3.9rem;
  font-weight: 900;
  line-height: 1.0;
  margin-bottom: 21px;
  text-align: left;
}
/*大見出し黒左よせ→センター*/
.h2-jp-noto-left-2 {
  color: #333;
  font-size: 3.9rem;
  font-weight: 900;
  line-height: 1.0;
  margin-bottom: 21px;
  text-align: left;
}
/*大見出し白左よせ*/
.h2-jp-noto-w-left {
  color: #fff;
  font-size: 3.9rem;
  font-weight: 900;
  line-height: 1.0;
  margin-bottom: 29px;
  text-align: left;
}
/*英語見出し黄色*/
.h2-en-Roboto-y {
  font-family: "Roboto", sans-serif;
  font-size: 2.0rem;
  font-weight: 700;
  color: #F5D930;
  text-transform: uppercase;
}
/*英語見出し水色*/
.h2-en-Roboto-b {
  font-family: "Roboto", sans-serif;
  font-size: 2.0rem;
  font-weight: 700;
  color: #00BBEA;
  text-transform: uppercase;
}
@media (max-width:1023px) {
  .h2-jp-noto-left-2 {
    text-align: center;
  }
}
@media (max-width: 767px) {
  /*大見出し黒*/
  .h2-jp-noto {
    font-size: 2.9rem;
    line-height: 1.3;
  }
  /*大見出し紺*/
  .h2-jp-noto-g {
    font-size: 2.9rem;
    line-height: 1.3;
  }
  /*大見出し白*/
  .h2-jp-noto-w {
    font-size: 2.9rem;
    line-height: 1.3;
  }
  /*大見出し黒改行あり*/
  .h2-jp-noto__br {
    font-size: 2.9rem;
  }
  /*大見出し黒左よせ*/
  .h2-jp-noto-left {
    font-size: 2.9rem;
    line-height: 1.3;
  }
  /*大見出し白左よせ*/
  .h2-jp-noto-w-left {
    font-size: 2.9rem;
    line-height: 1.3;
  }
  .h2-jp-noto-left-2 {
    font-size: 2.9rem;
    text-align: center;
    line-height: 1.3;
  }
}
/*topへ戻るボタン*/
#scroll-to-top-btn {
  z-index: 9999;
  position: fixed;
  bottom: 8%;
  right: calc(8.5% + var(--scrollbar-width, 0px));
  height: 70px;
  width: 70px;
  color: #00315F;
  font-size: 2.5rem;
  background-color: rgba(255, 255, 255, 0.5); /* 背景色を50%の不透明度に */
  border: 2px solid #00315F;
  border-radius: 50%;
  outline: none;
  transform: rotate(-90deg);
  transition: background-color 0.3s, transform 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
#scroll-to-top-btn:hover {
  color: #fff;
  background-color: #00315F;
}
@media (max-width: 767px) {
  #scroll-to-top-btn {
    bottom: 4%;
    right: calc(7% + var(--scrollbar-width, 0px));
    height: 49px;
    width: 49px;
    font-size: 2.0rem;
  }
}
/*header*/
.header__rogo {
  height: 61px;
}
header {
  z-index: 9999;
  position: fixed;
  background-color: #ffffff;
  width: 100vw;
}
#header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 7.3%;
}
.nav ul {
  display: flex;
}
.nav ul li {
  margin-right: 2.7Vw;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav ul li:last-child {
  margin-right: 0px;
  background-color: #00315F;
  border-radius: 30px;
  border: solid 2px #00315F;
  transition: background-color 0.3s, border 0.3s;
}
.nav ul li a {
  color: #333;
  font-size: 1.6rem;
  font-weight: 700;
  transition: color 0.3s;
}
.navigation__contact {
  color: #fff !important;
  padding: 12px 33.4px;
  display: flex;
  align-items: center;
  transition: color 0.3s;
}
.navigation__contact span {
  content: "";
  background-image: url("../images/common/mark/form-log2.png");
  display: block;
  width: 35px;
  height: 27px;
  background-size: contain;
  background-repeat: no-repeat;
  margin-left: 20px;
}
#nav-toggle {
  display: none;
}
.nav ul li a:hover {
  color: #F5D930;
}
.nav ul li:first-child {
  display: none;
}
.nav ul li:last-child:hover {
  background-color: #fff;
  border-color: #00315F;
}
.nav ul li:last-child:hover .navigation__contact {
  color: #00315F !important;
}
.nav ul li:last-child:hover .navigation__contact span {
  background-image: url("../images/common/mark/form-log.png");
}
/*ハンバーガーへ切り替え*/
@media (max-width: 1200px) {
  #header {
    padding: 14px 3%;
  }
  .nav ul li {
    margin-right: 2vw;
  }
}
@media (max-width: 1023px) {
	  .header__rogo {
    display: block;
    height: 40px;
  }
  .header__rogo img {
    width: 180px;
    height: 40px;
  }
  #header {
    padding: 14px 6%;
  }
  /* ハンバーガーメニューボタン */
  #nav-toggle {
    display: block;
    z-index: 9999;
    position: relative;
    width: 39px;
    height: 39px;
    appearance: none;
    border: 0;
    background-color: #00315F;
    cursor: pointer;
  }
  #nav-toggle span, #nav-toggle span::after, #nav-toggle span::before {
    position: absolute;
    display: block;
    content: "";
    width: 18px;
    height: 2px;
    background-color: #FFF;
    transition: all 0.5s;
    left: 50%;
    transform: translateX(-50%);
  }
  #nav-toggle span::before {
    top: -6px;
  }
  #nav-toggle span::after {
    bottom: -6px;
  }
  #nav-toggle.open span {
    background-color: transparent;
  }
  #nav-toggle.open span::before {
    top: 0;
    transform: translateX(-50%) rotate(45deg);
  }
  #nav-toggle.open span::after {
    bottom: 0;
    transform: translateX(-50%) rotate(-45deg);
  }
  /* メニュー画面 */
  .nav {
    z-index: 1;
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    right: -100vw;
    background-color: #00315F;
    padding: clamp(65px, 6%, 105px) 0;
    opacity: 0;
    transition: right 0.5s ease, opacity 0.5s ease;
  }
  /* メニューリスト */
  .nav ul {
    flex-direction: column;
    padding: 0;
    margin: 0;
  }
  .nav ul li {
    margin: 18px 0;
    text-align: center;
  }
  .nav ul li a {
    font-size: 2.4rem;
    color: #fff;
    text-decoration: none;
    font-weight: 900;
  }
  .nav ul li:first-child {
    display: flex;
    text-transform: uppercase;
  }
  /* メニューが開いた時のスタイル */
  .nav.open {
    right: 0;
    opacity: 1;
  }
  /*お問い合わせ*/
  .nav ul li:last-child {
    background-color: #fff;
    border: solid 2px #fff;
    width: 223px;
    height: auto;
    display: flex;
    margin: 0 auto;
    border-radius: 40px;
    transform: translateY(35px);
    transition: color 0.3s, background-color 0.3s;
  }
  .navigation__contact {
    font-size: 1.6rem !important;
    font-weight: 700 !important;
    align-items: center;
    color: #00315F !important;
    transition: color 0.3s;
  }
  .navigation__contact span {
    background-image: url("../images/common/mark/form-log.png");
  }
  .nav ul li:last-child:hover {
    background-color: #00315F;
    border-color: #fff;
  }
  .nav ul li:last-child:hover .navigation__contact {
    color: #fff !important;
  }
  .nav ul li:last-child:hover .navigation__contact span {
    background-image: url("../images/common/mark/form-log2.png");
  }
}
/*footer*/
footer {
  z-index: -1;
  height: 786px;
  background-color: #00315F;
  margin-top: -200px;
}
.footer__rogo {
  padding-bottom: 18px;
}
.footer__flex {
  margin: 0 auto;
  padding: 387px 5Vw 62px;
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  text-align: left;
}
.footer__flex p {
  color: #fff;
}
.footer__flex a {
  color: #fff;
  transition: color 0.3s;
}
.footer__flex__left__p {
  font-size: 1.4rem;
  padding-bottom: 20px;
}
.footer__flex__left__p__span {
  font-size: 1.6rem;
  font-weight: 700;
}
.footer__right {
  display: flex;
  justify-content: space-between;
  width: 525px;
  height: 240px;
}
.footer__right__box__p {
  margin-bottom: 7px;
  position: relative;
  font-weight: 700;
}
.footer__right__box__sdgs {
  transform: translateY(-35px);
  position: relative;
  font-weight: 700;
}
.footer__right ul li {
  list-style: none;
  margin-bottom: 7px;
}
.footer__right ul li:last-child {
  margin-bottom: 0px;
}
.footer__right__box {
  margin-right: 2%;
}
.footer__right__box-flex {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
.footer__right__box__p::before {
  content: "●";
  color: #F5D930;
  font-size: 1.2rem;
  margin-right: 6px;
  position: absolute;
  left: -20px;
  top: 4px;
}
.footer__right__box__sdgs::before {
  content: "●";
  color: #F5D930;
  font-size: 1.2rem;
  position: absolute;
  left: -20px;
  top: 4px;
}
small {
  color: #fff;
  font-size: 1.4rem;
}
.footer__flex__left__p__br-mb {
  display: none;
}
.footer__flex a:hover {
  color: #F5D930;
}
.footer__flex__left__link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 55px;
}
.footer__flex__left__privacy {
  position: relative;
}
.footer__flex__left__privacy::before {
  content: "";
  background-color: #fff;
  display: inline-block;
  width: 220px;
  height: 1px;
  position: absolute;
  top: 28px;
  transition: background-color 0.3s;
}
.footer__flex a:hover.footer__flex__left__privacy::before {
  background-color: #F5D930;
}
/*お問い合わせボタン*/
.footer__flex__left__contact {
  width: 223px;
  height: 49px;
  margin-right: 35px;
  background-color: #fff;
  border-radius: 30px;
  border: solid 2px #fff;
  transition: background-color 0.3s, border 0.3s, color 0.3s;
}
.footer__flex__left__contact a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00315F;
  font-weight: 700;
  padding: 10px 0;
  transition: color 0.3s;
}
.footer__flex__left__contact span {
  content: "";
  background-image: url("../images/common/mark/form-log.png");
  display: block;
  width: 35px;
  height: 27px;
  background-size: contain;
  background-repeat: no-repeat;
  margin-left: 20px;
}
.footer__flex__left__contact:hover {
  background-color: #00315F;
  border-color: #fff;
}
.footer__flex__left__contact:hover.footer__flex__left__contact a {
  color: #fff;
}
.footer__flex__left__contact:hover.footer__flex__left__contact span {
  background-image: url("../images/common/mark/form-log2.png");
}
@media (max-width: 1200px) {
  .footer__flex__left__link {
    flex-flow: column;
    align-items: flex-start;
    justify-content: space-between;
    height: 97px;
  }
  .footer__right {
    width: 480px;
  }
}
@media (max-width: 1023px) {
  .footer__right {
    width: 450px;
  }
  .footer__flex {
    padding: 387px 3vw 62px;
    letter-spacing: 0;
  }
  .footer__flex p {
    letter-spacing: 0;
    white-space: nowrap;
  }
  .footer__flex__left__privacy::before {
    width: 205px;
  }
}
/*フッター切り替え*/
@media (max-width: 860px) {
  .footer__rogo img {
    display: block;
    width: 274px;
	height: auto;
  }
  .footer__rogo {
    width: 274px;
    margin: 0 auto;
  }
  .footer__right {
    display: none;
  }
  .footer__flex {
    padding: 340px 6vw 22px;
    justify-content: center;
    text-align: center;
  }
  .footer__flex__left__link {
    align-items: center;
  }
  .footer__flex__left__contact {
    margin-right: 0;
  }
  .footer__flex__left__p__br-mb {
    display: block;
  }
}
/*共通コンバージョン*/
/*contact*/
.section__contact {
  max-width: 1200px;
  padding: 0 5Vw;
  display: grid;
  grid-template-columns: minmax(325px, 1fr) minmax(325px, 1fr);
  gap: 2.5%;
  margin: 0 auto;
}
.section__contact__download {
  z-index: 1;
  position: relative;
  width: 100%;
}
.section__contact__download__img {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-radius: 25px;
}
.section__contact__download__img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
  transition: 0.5s all;
}
.section__contact__download:hover .section__contact__download__img img {
  transform: scale(1.2);
}
.section__contact__download__front {
  width: 317px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 10;
}
.section__contact__form {
  z-index: 1;
  position: relative;
  width: 100%;
}
.section__contact__form__img {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-radius: 25px;
}
.section__contact__form__img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
  transition: 0.5s all;
}
.section__contact__form:hover .section__contact__form__img img {
  transform: scale(1.2);
}
.section__contact__form__front {
  width: 317px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 10;
}
.section__contact__download__p {
  padding: 4px 0 37px;
  color: #333;
  white-space: nowrap;
}
.section__contact__form__p {
  color: #fff;
  padding: 4px 0 37px;
}
.section__contact__download__p__br-mb {
  display: none;
}
@media (max-width: 1023px) {
  .section__contact__download {
    width: min(400px, 100%);
    margin: 0 auto;
  }
  .section__contact__form {
    width: min(400px, 100%);
    margin: 0 auto;
  }
  .section__contact__download__p__br-mb {
    display: block;
  }
  .section__contact__download__p {
    padding: 4px 0 15px;
  }
}
@media (max-width: 767px) {
  .section__contact {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .section__contact__download {
    width: min(350px, 100%);
  }
  .section__contact__form {
    width: min(350px, 100%);
  }
}
/*ダウンロードボタン*/
.section__contact__download__link {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  width: 254px;
  height: 50px;
  background-color: #00315F;
  border-radius: 30px;
  border: solid 2px #00315F;
  transition: background-color 0.3s, border 0.3s, color 0.3s;
}
.section__contact__download__link p {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  padding: 10px 0;
}
.section__contact__download__link span {
  content: "";
  background-image: url("../images/common/mark/download-icon.png");
  display: block;
  width: 23px;
  height: 24px;
  background-size: contain;
  background-repeat: no-repeat;
  margin: 0 0 0 -2px;
}
.section__contact__download:hover .section__contact__download__link {
  background-color: #fff;
  border-color: #00315F;
}
.section__contact__download:hover .section__contact__download__link p {
  color: #00315F;
}
.section__contact__download:hover .section__contact__download__link span {
  background-image: url("../images/common/mark/download-icon2.png");
}
/*お問い合わせボタン*/
.section__contact__form__link {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  width: 203px;
  height: 50px;
  background-color: #fff;
  border-radius: 30px;
  border: solid 2px #fff;
  transition: background-color 0.3s, border 0.3s, color 0.3s;
}
.section__contact__form__link p {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00315F;
  font-weight: 700;
  padding: 10px 0;
  transform: translateX(4px);
}
.section__contact__form__link span {
  content: "";
  background-image: url("../images/common/mark/arrow2.png");
  display: block;
  width: 39px;
  height: 39px;
  background-size: contain;
  background-repeat: no-repeat;
  margin-left: 5.5px;
}
.section__contact__form:hover .section__contact__form__link {
  background-color: #00315F;
  border-color: #fff;
}
.section__contact__form:hover .section__contact__form__link p {
  color: #fff;
}
.section__contact__form:hover .section__contact__form__link span {
  background-image: url("../images/common/mark/arrow.png");
}