@charset "UTF-8";

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

html {
  scroll-behavior: smooth;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
dl,
dt,
dd,
figure,
figcaption,
blockquote,
table,
th,
td,
tr,
form,
fieldset,
legend,
input,
textarea,
select,
button {
  margin: 0;
  padding: 0;
}

ul,
ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  border: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
  background: transparent;
  border: none;
  appearance: none;
  -webkit-appearance: none;
}

button {
  cursor: pointer;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

iframe {
  border: 0;
}

/* ========================================
   Base
======================================== */
body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #000;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

body.is-menu-open,
body.is-modal-open {
  overflow: hidden;
}

#wrapper {
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

#main {
  flex: 1;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.inner {
  width: 90%;
  max-width: 1440px;
  margin: 0 auto;
}

.inner--narrow {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.inner--form {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}

/* ========================================
   Common button
======================================== */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 250px;
  height: 55px;
  padding: 0 28px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  background: #013bcc;
  border-radius: 5px;
  transition: background 0.3s ease, opacity 0.3s ease;
}

.btn:hover {
  background: #012f9e;
}

.btn::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-left: 12px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}

.btn__arrow {
  display: none;
}

/* ========================================
   Tel link (PC不可 / SP可)
======================================== */
.tel-link {
  display: none;
}

.tel-text {
  display: inline;
}

/* ========================================
   Header
======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 80px;
  background: #fff;
}

.header__inner {
  width: 95%;
  max-width: 1920px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo img {
  width: 268px;
  height: auto;
}

.header__right {
  display: flex;
  align-items: center;
  gap: 38px;
}

.header__nav ul {
  display: flex;
  align-items: center;
  gap: 38px;
}

.header__nav a {
  position: relative;
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #000;
  transition: color 0.2s ease;
}

.header__nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: #013bcc;
  transform: translateX(-50%);
  transition: width 0.2s ease;
}

.header__nav a:hover,
.header__nav a.is-active {
  color: #013bcc;
}

.header__nav a:hover::after,
.header__nav a.is-active::after {
  width: 100%;
}

.header__contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 145px;
  height: 44px;
  padding: 0 22px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
  background: linear-gradient(90deg, #013bcc 0%, #27c7f3 100%);
  border-radius: 999px;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.header__contact img {
  width: 16px;
  height: auto;
}

.header__contact:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

.header__menu-button {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  z-index: 1002;
}

.header__menu-button span {
  position: absolute;
  left: 10px;
  width: 24px;
  height: 2px;
  background: #000;
  transition: transform 0.3s ease, opacity 0.3s ease, top 0.3s ease;
}

.header__menu-button span:nth-child(1) {
  top: 14px;
}

.header__menu-button span:nth-child(2) {
  top: 21px;
}

.header__menu-button span:nth-child(3) {
  top: 28px;
}

.header__menu-button[aria-expanded="true"] span:nth-child(1) {
  top: 21px;
  transform: rotate(45deg);
}

.header__menu-button[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.header__menu-button[aria-expanded="true"] span:nth-child(3) {
  top: 21px;
  transform: rotate(-45deg);
}

.header__drawer {
  display: none;
}

/* ========================================
   Lower KV
======================================== */
.lower-kv {
  position: relative;
  width: 100%;
  max-width: 1920px;
  margin-top: 80px;
  margin-right: auto;
  margin-left: auto;
  min-height: 350px;
  background: #f7f9fc;
  overflow: hidden;
}

.lower-kv__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0 auto;
  min-height: 350px;
  display: flex;
  align-items: center;
}

.lower-kv__content {
  position: relative;
  z-index: 3;
  /* max-width: 520px; */
  margin-left: 5%;
}

.lower-kv__en {
  font-size: 80px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #000;
}

.lower-kv__title {
  margin-top: 12px;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.4;
  color: #000;
}

.lower-kv__visual {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 58%;
  height: 100%;
  background-position: center right;
  background-size: cover;
  background-repeat: no-repeat;
}

.lower-kv__visual::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 45%;
  height: 100%;
  background: linear-gradient(90deg, #f7f9fc 0%, rgba(247, 249, 252, 0) 100%);
  pointer-events: none;
}

.lower-kv--company .lower-kv__visual {
  background-image: url("../images/company/pc/kv_company.webp");
}

.lower-kv--news .lower-kv__visual {
  background-image: url("../images/news/pc/kv_news.webp");
}

.lower-kv--faq .lower-kv__visual {
  background-image: url("../images/faq/pc/kv_faq.webp");
}

.lower-kv--privacy .lower-kv__visual {
  background-image: url("../images/privacy/pc/kv_privacy.webp");
}

.lower-kv--terms .lower-kv__visual {
  background-image: url("../images/terms/pc/kv_terms.webp");
}

.lower-kv--legal .lower-kv__visual {
  background-image: url("../images/legal/pc/kv_legal.webp");
}

.lower-kv--contact .lower-kv__visual {
  background-image: url("../images/contact/pc/kv_contact.webp");
}

/* ========================================
   Breadcrumb
======================================== */
.breadcrumb {
  width: 100%;
  max-width: 1920px;
  margin-right: auto;
  margin-left: auto;
  background: #eff4fa;
}

.breadcrumb--white {
  background: #fff;
}

.breadcrumb__inner {
  width: 90%;
  max-width: 1920px;
  height: 60px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  font-size: 14px;
}


.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.breadcrumb li:not(:last-child)::after {
  content: "＞";
  margin-left: 8px;
  color: #000;
}

.breadcrumb a {
  color: #000;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: #013bcc;
}

.breadcrumb [aria-current="page"] {
  color: #013bcc;
  font-weight: 700;
}

/* ========================================
   Common CONTACT CTA
======================================== */
.common-contact {
  padding: 80px 0 10px;
  background: #fff;
}

.common-contact__inner {
  width: 90%;
  max-width: 1440px;
  margin: 0 auto;
}

.common-contact__box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 32px 40px;
  background: linear-gradient(90deg, #01328f 0%, #013bcc 48%, #27c7f3 100%);
  border-radius: 6px;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2);
}

.common-contact__en {
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #fff;
}

.common-contact__title {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
}

.common-contact__text {
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.7;
  color: #fff;
}

.common-contact__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-shrink: 0;
  width: 280px;
  height: 50px;
  padding: 0 24px;
  font-size: 16px;
  font-weight: 700;
  color: #013bcc;
  background: #fff;
  border-radius: 5px;
  white-space: nowrap;
  transition: opacity 0.3s ease, background 0.3s ease;
}

.common-contact__button img {
  width: 18px;
  height: auto;
}

.common-contact__button:hover {
  opacity: 0.9;
  background: #eef5ff;
}

.common-contact__button::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-left: 4px;
  border-top: 2px solid #013bcc;
  border-right: 2px solid #013bcc;
  transform: rotate(45deg);
}

.common-contact__arrow {
  display: none;
}

/* ========================================
   Footer
======================================== */
.footer {
  padding: 70px 0 30px;
  background: #fff;
}

.footer__inner {
  width: 90%;
  max-width: 1300px;
  margin: 0 auto;
}

.footer__main {
  display: flex;
  justify-content: space-between;
  gap: 60px;
}

.footer__logo img {
  width: 268px;
  height: auto;
}

.footer__address,
.footer__tel {
  margin-top: 18px;
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}

.footer__nav {
  display: flex;
  gap: 120px;
}

.footer__nav-column {
  display: flex;
  flex-direction: column;
}

.footer__nav-title {
  position: relative;
  display: inline-block;
  margin-bottom: 18px;
  padding-bottom: 10px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #013bcc;
}

.footer__nav-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background: #0894ff;
}

.footer__nav-title--sub {
  margin-top: auto;
  padding-top: 28px;
}

.footer__nav-column ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 0;
}

.footer__nav-column ul a {
  font-size: 16px;
  line-height: 1.6;
  color: #000;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #013bcc;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 60px;
  padding-top: 22px;
  border-top: 1px solid #e5e8ef;
}

.footer__policy {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
}

.footer__policy a {
  position: relative;
  padding: 0 14px;
  font-size: 16px;
  font-weight: 700;
  color: #000;
}

.footer__policy a:first-child {
  padding-left: 0;
}

.footer__policy a:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 1px;
  height: 14px;
  background: #bbb;
  transform: translateY(-50%);
}

.footer__copyright {
  font-size: 12px;
  color: #666;
}

/* ========================================
   Info table (common) — dl/dt/dd
======================================== */
.info-table {
  width: 100%;
  border-top: 1px solid #d9dee8;
  border-left: 1px solid #d9dee8;
  border-right: 1px solid #d9dee8;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2);
}

.info-table__row {
  display: flex;
  border-bottom: 1px solid #d9dee8;
}

.info-table__label,
.info-table__value {
  margin: 0;
  padding: 22px 28px;
  font-size: 18px;
  line-height: 34px;
  text-align: left;
}

.info-table__label {
  width: 28%;
  flex-shrink: 0;
  font-weight: 700;
  color: #013bcc;
  background: #eff4fa;
}

.info-table__value {
  flex: 1;
  background: #fff;
  color: #000;
}

/* ========================================
   Section label / heading helpers
======================================== */
.section-label {
  font-size: 21px;
  font-weight: 700;
  color: #013bcc;
  letter-spacing: 0.04em;
}

.section-heading {
  margin-top: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.4;
  color: #000;
}

.section-text {
  margin-top: 24px;
  font-size: 18px;
  line-height: 34px;
  color: #000;
}

/* ========================================
   People diagonal images
======================================== */
.people-diagonal {
  display: flex;
  align-items: stretch;
}

.people-diagonal__item {
  width: 30%;
  overflow: hidden;
  clip-path: polygon(14% 0, 100% 0, 86% 100%, 0 100%);
  margin-left: -3%;
}

.people-diagonal__item:first-child {
  margin-left: 0;
}

.people-diagonal__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* ========================================
   News list helpers
======================================== */
.news-category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 26px;
  padding: 0 10px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  background: #013bcc;
  border-radius: 3px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ========================================
   Modal (CONTACT)
======================================== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 5%;
}

.modal.is-open {
  display: flex;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.modal__dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 760px;
  max-height: 85vh;
  overflow-y: auto;
  padding: 40px 36px;
  background: #fff;
  border-radius: 4px;
}

.modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 44px;
  height: 44px;
  font-size: 28px;
  line-height: 1;
  color: #333;
}

.modal__title {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
}

.modal__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.modal__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 48px;
  padding: 0 20px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 4px;
  transition: opacity 0.3s ease, background 0.3s ease;
}

.modal__button--primary {
  color: #fff;
  background: #013bcc;
}

.modal__button--primary:hover {
  opacity: 0.85;
}

.modal__button--primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.modal__button--secondary {
  color: #013bcc;
  background: #fff;
  border: 1px solid #013bcc;
}

.modal__button--secondary:hover {
  background: #eff4fa;
}

/* ========================================
   Page top button
======================================== */
.page-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  color: #fff;
  background: #013bcc;
  border: none;
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  cursor: pointer;
  transition: opacity 0.3s ease, visibility 0.3s ease, background 0.3s ease;
}

.page-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.page-top:hover {
  background: #012f9e;
}

.page-top::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(-45deg);
  margin-top: 4px;
}

body.is-menu-open .page-top,
body.is-modal-open .page-top {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.pc_only,
.pc_tb,
.pc_sp {
	display: block;
}

.sp_only,
.tb_only,
.sp_tb,
.note_pc {
	display: none!important;
}

@media screen and (max-width:1300px) {
	.note_pc {
		display: block!important;
	}
}

@media screen and (max-width:1200px) {
	.tb_only,
	.sp_tb {
		display: block!important;
	}

	.pc_only,
	.pc_sp {
		display: none!important;
	}
}

@media screen and (max-width:890px) {
	.pc_only {
		display: none!important;
	}

	.pc_tb {
		display: block!important;
	}

	.sp_only {
		display: none!important;
	}

	.sp_tb {
		display: block!important;
	}

	.sp_none {
		display: none;
	}
}

@media screen and (max-width:599px) {
	.pc_only,
	.tb_only,
	.pc_tb {
		display: none!important;
	}

	.sp_only,
	.sp_tb,
	.pc_sp {
		display: block!important;
	}
}

/* ----------------------------------------
   Scroll fade-in
---------------------------------------- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.fade-in.is-show {
  opacity: 1;
  transform: translateY(0);
}

.fade-delay-1 {
  transition-delay: 0.1s;
}

.fade-delay-2 {
  transition-delay: 0.2s;
}

.fade-delay-3 {
  transition-delay: 0.3s;
}

.fade-delay-4 {
  transition-delay: 0.4s;
}

@media (prefers-reduced-motion: reduce) {
  .fade-in {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .fade-delay-1,
  .fade-delay-2,
  .fade-delay-3,
  .fade-delay-4 {
    transition-delay: 0s;
  }
}
