@charset "utf-8";

/* ブレークポイントで要素を表示・非表示 */
.show-pc {
  display: block;
}

.show-tab {
  display: none;
}

.show-sp {
  display: none;
}

.sp-none-inline {
  display: inline;
}

.pc-none {
  display: none;
}

.tab-none {
  display: block;
}

.sp-none {
  display: block;
}

@media (max-width: 1024px) {
  .show-pc {
    display: none;
  }

  .pc-none {
    display: block;
  }

  .show-tab {
    display: block;
  }

  .tab-none {
    display: none;
  }
}

@media (max-width: 750px) {
  .show-sp {
    display: block;
  }

  .sp-none {
    display: none;
  }

  .sp-none-inline {
    display: none;
  }
}

/* ---------------------------
    基本設定
----------------------------- */
html {
  /* 1440px以下の場合1rem = 10px */
  font-size: 0.694444vw !important;
}

@media screen and (min-width: 1441px) {

  /* 1441px以上の場合1rem = 10px */
  html {
    font-size: 10px !important;
  }
}

@media screen and (max-width: 750px) {

  /* 750px以下の場合1rem = 10px */
  html {
    font-size: 2.5641025641vw !important;
  }
}

body {
  width: 100%;
  margin: 0 auto;
  overflow-x: hidden;
  /* 横スクロール防止 */
  word-break: break-all;
  /* 英単語の途中で改行 */
}




/* ---------------------------
    基本フォント・カラー設定
----------------------------- */
:root {
  --font-main: "Noto Sans JP", sans-serif;
  --font-strong: "Shippori Mincho B1", serif;
  --font-latin: "Marcellus", serif;
  --font-num: "Cardo", serif;
  --color-main: #171C61;
  --color-light: #FCFEFF;
  --color-light-blue: #4AA6E7;
}

/* ベースフォント設定 */
body {
  font-family: var(--font-main);
  color: var(--color-main);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.75px;
}

.font-strong {
  font-family: var(--font-strong);
}

.font-latin {
  font-family: var(--font-latin);
}

.font-inter {
  font-family: "Inter", sans-serif;
}

.font-num {
  font-family: var(--font-num);
}

@media screen and (max-width: 750px) {
  body {
    font-size: 1.4rem;
    letter-spacing: 0.07rem;
  }
}

/* ---------------------------
    共通パーツ
----------------------------- */
.page__container {
  margin-top: 100px;
}

.page__inner,
.section__inner {
  padding: 90px 40px;
}

.page__wrapper,
.section__wrapper {
  max-width: 1150px;
  width: 100%;
  margin: 0 auto;
}

.contentWrap {
  max-width: 865px;
  width: 100%;
  margin: 0 auto;
}

.page__title,
.section__title {
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 1.3px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--color-light-blue);
}

.page__text {
  padding-top: 15px;
  font-size: 16px;
  font-weight: 600;
}

.common__link {
  color: var(--color-light-blue);
  text-decoration: underline;
  transition: .5s ease;

}

.common__link:hover {
  opacity: 0.5;
}

@media screen and (max-width: 1024px) {
  .page__container {
    margin-top: 90px;
  }
}

@media screen and (max-width: 750px) {
  .page__container {
    margin-top: 9rem;
  }

  .page__inner,
  .section__inner {
    padding: 6rem 3.3rem;
  }

  .page__title,
  .section__title {
    font-size: 2rem;
    letter-spacing: 0.1rem;
    padding-bottom: 1rem;
  }

  .page__text {
    padding-top: 1.5rem;
    font-size: 1.4rem;
    letter-spacing: 0.07rem;
  }
}

/* ---------------------------
    header
----------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  z-index: 999;
  pointer-events: none;
  transition: 0.3s ease-in-out;
  background: var(--color-light);
}

.header.header__hidden {
  transform: translateY(-100%);
}

.header a {
  pointer-events: all;
  transition: 0.5s ease;
}

.header a:hover {
  opacity: 0.5;
}

.header__wrapper {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 32px;
}

.header__logo {
  position: relative;
  z-index: 999;
  transition: 0.5s ease;
  width: 106px;
  height: 47px;
}

.header__logo img {
  position: absolute;
  top: 0;
  left: 0;
}

.header__logo .blue,
.header__logo.is-active .white {
  opacity: 1;
}

.header__logo .white,
.header__logo.is-active .blue {
  opacity: 0;
}


.header__logo:hover {
  opacity: 0.5;
}

.header__nav {
  margin-left: 10px;
  flex: 1;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: end;
}

.header__list {
  display: flex;
  align-items: flex-end;
  gap: 40px;
}

.header__listIn a {
  transition: 0.3s ease;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1.4px;
}


.header__lang {
  margin: 0 60px;
}

.header__lang__link {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.4px;
}

.header__lang__divider {
  padding: 0 8px;
}

.header__btn {
  max-width: 230px;
  width: 100%;
  height: 100%;
  color: var(--color-light);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1.6px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-main);
}

a.header__btn:hover {
  opacity: 0.7;
}

.header__btn--label {
  height: 100px;
  position: fixed;
  z-index: 888;
  right: 0;
  display: flex;
  padding: 15px;
  gap: 10px;
}

.header__btn--label.blue {
  top: 100px;
  background: linear-gradient(180deg, #D4F1FF 0%, #33A6E0 100%);
}

.header__btn--label.yello {
  top: 200px;
  background-image: url(../images/top/bgHeaderBtn02.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


.header__btn--label .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.header__btn--label .top p {
  color: var(--color-main);
  font-size: 21px;
  line-height: 0.8;
  font-weight: 700;
}

.header__btn--label .top p.medium {
  font-size: 18px;
  line-height: 1;
}

.header__btn--label .top span {
  font-size: 12.5px;
  font-weight: 700;
}

.header__btn--label .bottom {
  margin-top: 5px;
  font-size: 16px;
  font-weight: 700;
}

/* ハンバーガーメニュー */
.hamburger {
  position: relative;
  z-index: 999;
  display: none;
  width: 90px;
  height: 90px;
  position: relative;
  background: var(--color-main);
  pointer-events: all;
  align-items: center;
  justify-content: center;
  padding: 36px 27px 36px;
}

.hamburger__inner {
  position: relative;
  width: 35px;
  height: 20px;
}

.hamburger__border {
  display: block;
  width: 35px;
  height: 2px;
  background-color: #fff;
  position: absolute;
  left: 0;
  transition: all 0.3s ease;
}

.hamburger__border--01 {
  top: 0;
}

.hamburger__border--02 {
  top: 50%;
  transform: translateY(-50%);
}

.hamburger__border--03 {
  bottom: 0;
}

.hamburger__border--01.is-active {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.hamburger__border--02.is-active {
  opacity: 0;
}

.hamburger__border--03.is-active {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

.hamburger__nav {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  background: var(--color-main);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 888;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  pointer-events: none;
  overflow: scroll;
}

.hamburger__nav.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.hamburger__nav-inner {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 30rem 20rem 5rem;
}

.hamburger__nav__links {
  display: flex;
  flex-direction: column;
  gap: 6rem;
}

.hamburger__nav-listIn a {
  color: #FCFEFF;
  font-size: 5rem;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.6rem;
}



@media screen and (max-width: 1280px) {

  .header__lang {
    margin: 0 30px;
  }

  .header__list {
    gap: 20px;
  }

  .header__listIn a,
  .header__lang__link {
    font-size: 1.6rem;
    letter-spacing: 0.14rem;
  }

  .header__btn {
    max-width: 220px;
  }

  .header__btn--label .top {
    gap: 6px;
  }

  .header__btn--label .arrow img {
    width: 20px;
    height: auto;
  }
}

@media screen and (max-width: 1024px) {
  .header {
    height: 90px;
  }

  .header__list,
  .header__lang,
  .header__btn--contact {
    display: none;
  }

  .header__lang--hamburger {
    display: flex;
  }

  .header__lang {
    margin: 6rem 0 0 0;
  }

  .header__lang__link {
    color: #FCFEFF;
    font-size: 5rem;
    font-weight: 500;
    line-height: 1.7;
    letter-spacing: 0.6rem;
  }

  .header__lang__divider {
    color: #FCFEFF;
    font-size: 5rem;
    font-weight: 500;
    letter-spacing: 0.6rem;
    line-height: 1.4;
    padding: 0 1.5rem;
  }

  .header__btn--label {
    max-width: 100%;
    width: 50%;
    bottom: 0;
    justify-content: center;
  }

  .header__btn--label.blue {
    top: inherit;
    left: 0;
  }

  .header__btn--label.yello {
    top: inherit;
    right: 0;
  }

  .hamburger {
    display: flex;
  }

}

@media screen and (max-width: 750px) {
  .header {
    height: 9rem;
  }

  .header__wrapper {
    padding-left: 1.1rem;
  }

  .header__logo img {
    width: 9rem;
    height: auto;
  }

  .header__btn--label {
    height: 8.7rem;
    padding: 1.5rem 1.5rem 1.5rem 1.6rem;
    gap: 1rem;
  }

  .header__btn--label.yello {
    padding: 1.7rem 1.4rem 1.7rem 1.4rem;
  }

  .header__btn--label .top {
    gap: 1rem;
  }

  .header__btn--label .top img {
    width: 2.4rem;
    height: auto;
  }

  .header__btn--label .top p {
    font-size: 1.8rem;
  }

  .header__btn--label .arrow img {
    width: 2rem;
    height: auto;
  }

  .header__btn--label .top p.medium {
    font-size: 1.5rem;
  }

  .header__btn--label .top span {
    font-size: 1rem;
  }

  .header__btn--label .bottom {
    margin-top: 0.5rem;
    font-size: 1.3rem;
  }

  /* ハンバーガーメニュー */
  .hamburger {
    width: 9rem;
    height: 9rem;
    padding: 3.6rem 2.7rem 3.6rem;
  }

  .hamburger__inner {
    position: relative;
    width: 3.5rem;
    height: 2rem;
  }

  .hamburger__border {
    width: 3.5rem;
    height: 0.2rem;
  }

  .hamburger__nav-inner {
    padding: 12.4rem 7.5rem 8rem;
  }

  .hamburger__nav__links {
    gap: 3rem;
  }

  .hamburger__nav-listIn a {
    font-size: 1.4rem;
    letter-spacing: 0.07rem;
  }

  .header__lang {
    margin-top: 3rem;
  }

  .header__lang__link {
    font-size: 1.4rem;
    letter-spacing: 0.07rem;
  }

  .header__lang__divider {
    font-size: 1.4rem;
    letter-spacing: 0.07rem;
    padding: 0 1rem;
  }
}


/* ---------------------------
    footer
----------------------------- */
.footer {
  background-image: url(../images/common/bgFooter.webp);
  padding-bottom: 30px;
  padding: 120px 4rem 30px;
}

.footer a {
  transition: 0.5s ease;
}

.footer a:hover {
  opacity: 0.5;
}

.footer__inner {
  max-width: 1150px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}


.footer__nav {
  width: 70%;
}

.footer__list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 40px;

}

.footer__listIn a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.7px;
}

.footer__copyright {
  margin-top: 70px;
  display: flex;
  justify-content: end;
}

.footer__copyright__text {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.6px;
}

@media screen and (max-width: 750px) {
  .footer {
    padding: 7rem 3rem 2.5rem;
  }

  .footer__inner {
    flex-direction: column;
    align-items: start;
    gap: 6rem;
  }

  .footer__logo img {
    width: 13rem;
    height: auto;
  }

  .footer__nav {
    width: 100%;
    text-align: center;
  }

  .footer__list {
    gap: 3rem 4rem;
  }

  .footer__listIn a {
    font-size: 1.4rem;
    letter-spacing: 0.07rem;
  }

  .footer__copyright {
    margin-top: 6rem;
    justify-content: center;
    width: 100%;
  }

  .footer__copyright__text {
    font-size: 1.2rem;
    letter-spacing: 0.06rem;
  }
}


/* -----------------
  お問い合わせセクション
------------------*/
.contact {
  padding: 90px 40px;
  background: var(--color-light);
}

.contact__list {
  max-width: 1150px;
  margin: 0 auto;
  display: flex;
  gap: 30px;
}

.contact__item {
  width: 50%;
  height: 100%;
  min-height: 325px;
  padding: 86px 30px;
}

.contact__item--01 {
  background: #F2F8FD;
}

.contact__item--02 {
  background: #F6F7FF;
}

.contact__title {
  text-align: center;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 1.3px;
  padding-bottom: 10px;
}

.contact__item--01 .contact__title {
  border-bottom: 1px solid var(--color-light-blue);
}

.contact__item--02 .contact__title {
  border-bottom: 1px solid #7C77D1;
}

.contact a {
  transition: .5s ease;
}

.contact__tel {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  font-size: 40px;
  font-weight: 400;
  letter-spacing: 1.2px;
}

.contact__tel:hover {
  opacity: 0.5;
}

.contact__btn {
  margin: 30px auto 0;
  max-width: 275px;
  height: 80px;
  padding: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  border: 1px solid var(--color-main);
  background: var(--color-light);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.8px;
}

.contact__btn:hover {
  background: var(--color-main);
  color: var(--color-light);
}


.contact__text {
  text-align: center;
  margin-top: 10px;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 1px;
}

.contact__text .small {
  padding-left: 15px;
  font-size: 14px;
  letter-spacing: 0.7px;
}

@media screen and (max-width: 1024px) {

  .contact__list {
    flex-direction: column;
  }

  .contact__item {
    width: 100%;
  }
}

@media screen and (max-width: 750px) {
  .contact {
    padding: 6rem 3.3rem;
  }

  .contact__list {
    gap: 3rem;
  }

  .contact__item {
    padding: 3rem 2rem;
    min-height: 0;
  }

  .contact__title {
    text-align: center;
    font-size: 1.8rem;
    letter-spacing: 0.1rem;
    padding-bottom: 1rem;
    margin: 0 2rem;
  }

  .contact__tel {
    margin-top: 1.4rem;
    gap: 1.5rem;
    font-size: 2.4rem;
    letter-spacing: 0.072rem;
  }

  .contact__tel svg {
    width: 1.6rem;
    height: 2.1rem;
  }

  .contact__btn {
    margin: 2rem auto 0;
    max-width: 21.5rem;
    height: 7rem;
    padding: 2.8rem 1rem;
    font-size: 1.4rem;
    letter-spacing: 0.07rem;
    border-radius: 5rem;
  }

  .contact__text {
    margin-top: 1rem;
    font-size: 1.4rem;
    letter-spacing: 0.07rem;
  }

  .contact__text .small {
    padding-left: 0.6rem;
    font-size: 1.2rem;
    letter-spacing: 0.06rem;
  }
}


/* -----------------
  お知らせ
------------------*/
.news {
  padding: 90px 40px;
  background: var(--color-light);
}

.news__list {
  margin-top: 32px;
}

.news__item-title {
  flex: 1;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.7px;

  /* 1行で切り詰める */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news__link {
  padding: 20px 0;
  border-bottom: 1px solid rgba(74, 166, 231, 0.4);
  transition: .5s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

.news__link:hover {
  opacity: 0.5;
}

.news__item:first-child .news__link {
  padding-top: 0;
}

.news__item:last-child .news__link {
  border-bottom: none;
}

.news__meta {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 30px;
}

.news__date {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.8px;
}

.news__category {
  color: var(--color-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.6px;
  width: 110px;
  height: 25px;
  border-radius: 15px;
}

.news__category--information {
  background: #7C77D1;
}

.news__category--event {
  background: #E68135;
}

.news__category--media {
  background: #0BAEA9;
}

.news__category--new_products {
  background: #4AA6E7;
}

.news__btn {
  margin: 30px 0 0 auto;
  width: 275px;
  height: 80px;
  border-radius: 50px;
  border: 1px solid var(--color-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.8px;
  transition: .5s ease;
}

.news__btn:hover {
  background: var(--color-main);
  color: var(--color-light);
}

@media screen and (max-width: 750px) {
  .news {
    padding: 6rem 3.3rem;
  }

  .news__list {
    margin-top: 3rem;
  }

  .news__link {
    padding: 1.5rem 0;
    flex-direction: column;
    align-items: start;
    gap: 1rem;
  }

  .news__item:last-child .news__link {
    border-bottom: 1px solid rgba(74, 166, 231, 0.4);
  }

  .news__item-title {
    font-size: 1.4rem;
    letter-spacing: 0.07rem;
    width: 100%;
  }

  .news__meta {
    gap: 3rem;
  }

  .news__date {
    font-size: 1.6rem;
    letter-spacing: 0.08rem;
  }

  .news__category {
    font-size: 1.2rem;
    letter-spacing: 0.06rem;
    width: 11rem;
    height: 2.5rem;
    padding: 0.5rem 1rem;
    border-radius: 1.5rem;
  }

  .news__btn {
    margin: 3rem auto 0;
    width: 30rem;
    height: 7rem;
    font-size: 1.6rem;
    letter-spacing: 0.08rem;
    border-radius: 5rem;
  }

}

/* -----------------
  確認モーダル
------------------- */
/* モーダル関連のスタイル */
.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(23, 28, 97, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  /* 他の要素より手前に表示 */
  backdrop-filter: blur(5px);
  /* 背景をぼかす */
  -webkit-backdrop-filter: blur(5px);
  /* Safari対応 */
}

.modal__content {
  background-color: #F9F9F9;
  padding: 72px 75px;
  text-align: center;
  max-width: 660px;
  width: 90%;
  animation: fadeIn 0.5s ease-out;
  /* フェードインアニメーション */
}

.modal__text {
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.7px;
}

.modal__question {
  margin-top: 20px;
  text-align: center;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 1.3px;
}

.modal__buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  padding: 0 20px;
}

.modal__button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 60px;
  border: none;
  border-radius: 100px;
  font-size: 1em;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s;
  outline: none;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 1.1px;
  background-color: #F9F9F9;
  color: var(--color-main);
  border: 1px solid var(--color-main);
  transition: .3s ease;
}

.modal__button:hover {
  background: var(--color-main);
  color: #F9F9F9;
}




/* アニメーション */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* スクロール禁止用クラス */
.no-scroll {
  overflow: hidden;
}

@media screen and (max-width: 750px) {
  .modal__overlay {
    padding: 3rem 0;
  }

  .modal__content {
    padding: 6rem 2rem;
  }

  .modal__text {
    font-size: 1.4rem;
    letter-spacing: 0.07rem;
  }

  .modal__question {
    margin-top: 2rem;
    font-size: 2rem;
    letter-spacing: 0.1rem;
  }

  .modal__buttons {
    margin-top: 3rem;
    flex-direction: column;
    gap: 2rem;
    padding: 0 4rem;
  }

  .modal__button {
    width: 100%;
    font-size: 1.6rem;
    letter-spacing: 0.08rem;
    height: 6rem;
    border-radius: 10rem;
  }
}

.grecaptcha-badge{
  display: none !important;
}