@charset "utf-8";

/*================================================================
# 全ページ共通
================================================================ */
/* header
------------------------------------------------------ */
.header {
  width: 100%;
  height: 64px;
  padding: 0 12px;
  background: var(--white);
  position: relative;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  z-index: 100;
}

body.is-header-fixed {
  padding-top: 64px;
}

.header.is-scrolled {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
}

.header.is-animated {
  animation: header-slide-in 0.4s cubic-bezier(0.645, 0.045, 0.355, 1) forwards;
  transform: translateY(-100%);
}

.header.is-no-animation,
body.is-nav-open .header,
body.is-nav-closing .header {
  animation: none !important;
  transform: translateY(0) !important;
}

@keyframes header-slide-in {
  to {
    transform: translateY(0);
  }
}

.header__logo {
  width: 126px;
  position: relative;
  flex: 0 0 auto;
  z-index: 2;
}

.header__logo a {
  background: none;
  display: block;
}

.header__logo a::before {
  display: none;
}

.header__logo a img {
  width: 100%;
  height: auto;
  opacity: 1;
  display: block;
}

.header__menu {
  width: 48px;
  height: 48px;
  margin-left: auto;
  padding: 0;
  cursor: pointer;
  border: 0;
  background: var(--primary);
  box-shadow: 0 6px 16px rgba(18, 124, 197, 0.22);
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 102;
  transition: background-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  gap: 6px;
}

.header__menu .line {
  width: 22px;
  height: 1px;
  background: var(--white);
  display: block;
  transition: opacity 0.25s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  transform-origin: center;
}

.header__menu.is-open {
  background: var(--white);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.14);
  transform: rotate(90deg);
}

.header__menu.is-open .line {
  background: var(--primary);
}

.header__menu.is-open .line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header__menu.is-open .line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.header__menu.is-open .line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.header__nav {
  width: 100%;
  height: calc(100svh - 64px);
  padding: 40px 24px 48px;
  opacity: 0;
  background: var(--primary);
  position: fixed;
  top: 64px;
  right: 0;
  bottom: 0;
  left: 0;
  visibility: hidden;
  overflow-y: auto;
  box-sizing: border-box;
  z-index: 101;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.header__nav:before {
  width: 110%;
  height: 40%;
  background: url(../../top/img/business_bg.png) no-repeat left top / cover;
  position: absolute;
  content: "";
  bottom: 0;
  left: -10%;
}

.header__nav.is-open {
  opacity: 1;
  visibility: visible;
}

.header .h-nav {
  position: relative;
  z-index: 1;
}

.header .h-nav__list {
  margin: 0;
  padding: 0;
  display: block;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

.header .h-nav__list li {
  opacity: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: opacity 0.45s ease, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  transform: translateY(20px);
}

.header__nav.is-open .h-nav__list li {
  opacity: 1;
  transform: translateY(0);
}

.header__nav.is-open .h-nav__list li:nth-child(1) {
  transition-delay: 0.08s;
}

.header__nav.is-open .h-nav__list li:nth-child(2) {
  transition-delay: 0.12s;
}

.header__nav.is-open .h-nav__list li:nth-child(3) {
  transition-delay: 0.16s;
}

.header__nav.is-open .h-nav__list li:nth-child(4) {
  transition-delay: 0.2s;
}

.header__nav.is-open .h-nav__list li:nth-child(5) {
  transition-delay: 0.24s;
}

.header__nav.is-open .h-nav__list li:nth-child(6) {
  transition-delay: 0.28s;
}

.header .h-nav__list a {
  min-height: 64px;
  padding: 18px 8px;
  background: none;
  position: relative;
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  box-sizing: border-box;
}

.header .h-nav__list a::after {
  width: 8px;
  height: 8px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  position: absolute;
  content: "";
  top: 50%;
  right: 8px;
  transform: translateY(-50%) rotate(45deg);
}

.header .h-nav__list .h-nav__contact {
  margin-top: 32px;
  border: 0;
}

.header .h-nav__list .h-nav__contact a {
  min-height: 58px;
  padding: 16px 40px 18px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--primary);
}

.header .h-nav__list .h-nav__contact a::after {
  right: 20px;
}

html.is-nav-open {
  height: 100%;
  overflow: hidden;
}

body.is-nav-open {
  width: 100%;
  position: fixed;
  right: 0;
  left: 0;
  overflow: hidden;
}

body.is-nav-open .header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 103;
}

body.is-nav-open .header__nav {
  position: fixed;
  top: 64px;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 101;
}

body.is-nav-open .header__menu {
  z-index: 104;
}

/* footer-contact
------------------------------------------------------ */
.footer-contact {
  margin: 0 0 -64px;
  padding: 80px 0 0;
  position: relative;
  text-align: center;
}

.footer-contact__inner {
  min-height: 0;
  margin: auto;
  padding: 48px 32px;
  background: var(--bg02);
  display: block;
  color: var(--black);
  box-sizing: border-box;
}

.footer-contact .button {
  margin-top: 32px;
}

.footer-contact .button__link {
  width: 100%;
  min-width: 0;
  padding: 17px 48px 18px 32px;
  font-size: 14px;
}

/* footer
------------------------------------------------------ */
.footer {
  margin: 0;
}

.footer__body {
  margin: 0;
  padding: 120px 0 32px;
  background: var(--footer);
  color: var(--white);
}

.footer__row {
  width: 100%;
  margin: auto;
  padding: 0 0 32px;
  display: block;
}

.footer__lower {
  width: 100%;
  margin: auto;
  padding: 32px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.55);
}

.footer__logo {
  margin: 0;
}

.footer__logo img {
  width: 184px;
  height: auto;
  display: block;
}

.footer__nav {
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 24px;
}

.footer__nav a {
  padding: 0;
  background: none;
  display: block;
  font-size: 13px;
  line-height: 1.7;
  color: var(--white);
}

.footer__lower .footer__col {
  width: 100%;
  display: block;
}

.footer__office {
  margin: 0;
}

.footer__office + .footer__office {
  margin-top: 24px;
}

.footer__office-name {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 600;
}

.footer__office p {
  font-size: 11px;
  line-height: 1.8;
}

.footer__copyright {
  margin: 32px 0 0;
  font-family: var(--text-en);
  font-size: 10px;
  line-height: 1.6;
  text-align: left;
  white-space: normal;
}

/* heading / lead / text
------------------------------------------------------ */
.heading01 {
  margin: 0;
}

.heading01__en {
  width: max-content;
  margin: auto;
  overflow: hidden;
  transition: clip-path 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.8s;
  clip-path: inset(0 100% 0 0);
}

.heading01__en .en {
  margin: 0;
  font-family: var(--text-en);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.3s;
  transform: translateX(-20px);
}

.heading01__en.is-show {
  clip-path: inset(0 0 0 0);
}

.heading01__en.is-show .en {
  transform: translateX(0);
}

.heading01 .ja {
  margin: 8px 0 0;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.heading01.js-cliptext .ja::before {
  opacity: 0;
}

.heading01.js-cliptext.visibled .ja::before {
  opacity: 1;
  transition: opacity 0.4s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
}

.heading01.white .en,
.heading01.white .ja {
  color: var(--white);
}

.lead01 {
  margin: 0 0 24px;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.55;
}

.text01 {
  margin: 32px 0 0;
  font-size: 13px;
  line-height: 2;
}

.text01 p + p {
  margin-top: 16px;
}

/* button
------------------------------------------------------ */
.button {
  margin: 32px 0 0;
}

.button__link {
  width: 100%;
  min-width: 0;
  padding: 16px 48px 17px 32px;
  background: var(--primary);
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.05em;
  box-sizing: border-box;
  transition: background-color 0.4s cubic-bezier(0.645, 0.045, 0.355, 1), color 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.button__arrow {
  width: 8px;
  height: 12px;
  position: absolute;
  top: 50%;
  right: 20px;
  display: block;
  transform: translateY(-50%);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.button__link.white {
  background: var(--white);
  color: var(--primary);
}

@keyframes button-arrow {
  0% {
    opacity: 1;
    transform: translate(0, -50%);
  }

  45% {
    opacity: 0;
    transform: translate(8px, -50%);
  }

  45.1% {
    opacity: 0;
    transform: translate(-8px, -50%);
  }

  100% {
    opacity: 1;
    transform: translate(0, -50%);
  }
}

/*================================================================
# animation
================================================================ */
/* 下からフェード
------------------------------------------------------ */
.js-fade-up {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  transform: translateY(20px);
}

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

/* 画像
------------------------------------------------------ */
.js-image-reveal {
  position: relative;
  overflow: hidden;
}

.js-image-reveal::after {
  background: var(--white);
  position: absolute;
  content: "";
  z-index: 2;
  transition: transform 0.9s cubic-bezier(0.76, 0, 0.24, 1);
  transform: translateX(0);
  inset: 0;
}

.js-image-reveal img {
  transition: transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
  transform: scale(1.06);
}

.js-image-reveal.is-show::after {
  transform: translateX(101%);
}

.js-image-reveal.is-show img {
  transform: scale(1);
}

/* 縦方向
------------------------------------------------------ */
.js-vertical-reveal {
  opacity: 0;
  transition: opacity 0.5s ease, clip-path 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  transform: translateY(24px);
  clip-path: inset(100% 0 0);
}

.js-vertical-reveal.is-show {
  opacity: 1;
  transform: translateY(0);
  clip-path: inset(0);
}

/* 横方向
------------------------------------------------------ */
.js-horizontal-reveal {
  opacity: 0;
  transition: opacity 0.4s ease, clip-path 1s cubic-bezier(0.76, 0, 0.24, 1);
  clip-path: inset(0 100% 0 0);
}

.js-horizontal-reveal.is-show {
  opacity: 1;
  clip-path: inset(0);
}

/*================================================================
# section
================================================================ */
.section {
  padding: 80px 0 0;
}

/*================================================================
# page-title
================================================================ */
.page-title {
  height: 240px;
  background-color: var(--primary);
  position: relative;
  overflow: hidden;
}

.page-title::before {
  background-color: var(--primary);
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  transition: transform 1s cubic-bezier(0.76, 0, 0.24, 1) 0.15s;
  transform: scaleX(1);
  transform-origin: right center;
}

.page-title::after {
  background: rgba(18, 45, 98, 0.5);
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  transition: background-color 1.3s cubic-bezier(0.22, 1, 0.36, 1) 0.6s;
}

.page-title img {
  width: 100%;
  height: 100%;
  opacity: 0;
  display: block;
  object-fit: cover;
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.3s, transform 1.8s cubic-bezier(0.22, 1, 0.36, 1) 0.3s;
  transform: scale(1.12);
  object-position: center;
}

.page-title__body {
  width: calc(100% - 48px);
  position: absolute;
  top: 50%;
  left: 50%;
  color: var(--white);
  text-align: center;
  z-index: 2;
  transform: translate(-50%, -50%);
}

.page-title__en,
.page-title__title {
  overflow: hidden;
}

.page-title__body .en {
  margin: 0;
  opacity: 0;
  font-family: var(--text-en);
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.85s, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.85s;
  transform: translateY(100%);
}

.page-title__body h1 {
  margin: 8px 0 0;
  opacity: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1em;
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1) 1.05s, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) 1.05s;
  transform: translateY(100%);
}

.page-title.is-show::before {
  transform: scaleX(0);
}

.page-title.is-show::after {
  background-color: rgba(18, 45, 98, 0.1);
}

.page-title.is-show img {
  opacity: 1;
  transform: scale(1);
}

.page-title.is-show .en,
.page-title.is-show h1 {
  opacity: 1;
  transform: translateY(0);
}

/*================================================================
# definition-list
================================================================ */
.definition-list {
  margin: 40px 0 0;
}

.definition-list .row {
  padding: 20px 0;
  border-bottom: 1px solid #e5e7ed;
}

.definition-list dt,
.definition-list dd {
  margin: 0;
  font-size: 13px;
  line-height: 1.8;
}

.definition-list dt {
  padding: 0 0 10px;
  border-bottom: 1px solid var(--primary);
  font-weight: 600;
}

.definition-list dd {
  padding: 14px 0 0;
}

#page-top a {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: #fff;
  width: 40px;
  height: 40px;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 0.6rem;
  transition: all 0.3s;
  position: relative;
  border-radius: 50%;
  border: 1px solid #3c519e;
}
#page-top a:before {
  content: "";
  width: 10px;
  height: 10px;
  border: 0;
  border-top: solid 2px #3c519e;
  border-right: solid 2px #3c519e;
  position: absolute;
  top: 50%;
  left: 14px;
  margin-top: -4px;
  transform: rotate(-45deg);
  transition: all 0.3s;
}

#page-top a:hover {
  background: #3c519e;
}
#page-top a:hover::before {
  border-color: #fff;
}

#page-top {
  position: fixed;
  right: 10px;
  bottom: 20px;
  z-index: 10;
  opacity: 0;
  transform: translateY(100px);
}

#page-top.UpMove {
  -webkit-animation: UpAnime 0.5s forwards;
  animation: UpAnime 0.5s forwards;
}

@-webkit-keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(200px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(200px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
#page-top.DownMove {
  -webkit-animation: DownAnime 0.5s forwards;
  animation: DownAnime 0.5s forwards;
}

@-webkit-keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(200px);
  }
}
@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(200px);
  }
}
