﻿@charset "UTF-8";
/**/
.is-overflow-clip,
html.noScroll {
  overflow: clip;
}

/* ----- Company Content ----- */
div.wrapper_ {
  max-width: none;
}

div.container_ {
  margin: auto;
  max-width: 1600px;
}

@media (min-width: 769px) {
  div.wrapper_ {
    padding-top: 128px;
  }
}

/* ----- Company Header ----- */
.block-header {
  position: fixed;
  top: 0;
  left: 0;
  padding: 16px 24px;
  width: 100%;
  background-color: #fff;
  z-index: 100000;
}

.block-header--inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.block-header--logo {
  width: 30%;
}

.block-header--items {
  display: flex;
  align-items: center;
  margin-left: auto;
}

.block-header--menu,
.block-header--labo {
  display: none;
}

/* ラボリンク */
.block-header--labo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 4px;
  border: 1px solid #00a3af;
  background-color: #fff;
  padding: 17px 27px;
  transition: var(--transition-opacity);
}

.block-header--labo-link::after {
  display: block;
  content: "";
  width: 7px;
  height: 13px;
  background: url(../img/icon_arrow_green.svg) no-repeat 0 0;
  background-size: 100% auto;
}

/* 言語選択 */
.block-header--lang {
  position: relative;
}

.block-header--lang-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.block-header--lang-icon svg {
  width: 16px;
  height: 16px;
}

.block-header--lang-text {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: bold;
}

.block-header--lang-text::after {
  position: relative;
  top: 0;
  display: block;
  content: "";
  width: 12px;
  height: 12px;
  background: url(../img/icon_header_lang_arrow_.svg) no-repeat 0 0;
  background-size: 100% auto;
}

.block-header--lang-list {
  display: none;
  padding: 16px;
  position: absolute;
  top: 40px;
  right: 0;
  background-color: #fff;
  box-shadow: 0 3px 6px #0000001A;
  width: 236px;
  border-radius: 8px;
  z-index: 1;
}

.block-header--lang-list.is-active {
  display: block;
}

.block-header--lang-list > li > a {
  display: block;
  padding: 15px 12px;
}

.block-header--lang-list > li > a:is(:hover, :focus) {
  background-color: #f4f4f4;
  text-decoration: none;
}

/* メニューボタン */
.block-header--button {
  margin-left: 16px;
}

.block-header--button-item {
  appearance: none;
  background: url(../img/icon_header_menu_open.svg) no-repeat 0 0;
  background-size: 100% auto;
  background-color: transparent;
  border: 0;
  width: 48px;
  height: 48px;
  padding: 0;
}

.block-header--button-item.is-active {
  background-image: url(../img/icon_header_menu_close.svg);
}

.block-header--button-item > span {
  display: block;
  width: 0;
  height: 0;
  white-space: nowrap;
  overflow: hidden;
}

@media (min-width: 769px) {
  .block-header {
    padding: 34px clamp(40px, calc(50vw - 800px), 60px);
  }

  .block-header--button {
    display: none;
  }

  .block-header--logo {
    width: auto;
  }

  .block-header--logo > a {
    transition: var(--transition-opacity);
  }

  .block-header--logo > a:is(:hover, :focus) {
    opacity: .6;
  }

  .block-header--menu {
    display: block;
  }

  .block-header--menu-list {
    display: flex;
    align-items: center;
    gap: 32px;
  }

  .block-header--menu-link {
    color: var(--color-default);
    font-size: clamp(0px, 1.15vw, 16px);
    font-weight: bold;
    transition: var(--transition-all);
  }

  .block-header--menu-link:is(:hover, :focus) {
    color: var(--color-primary);
  }

  /* ラボリンク */
  .block-header--labo {
    display: block;
    margin-left: 32px;
  }

  .block-header--labo-link:is(:hover, :focus) {
    opacity: .8;
  }

  /* 言語選択 */
  .block-header--lang {
    margin-left: 40px;
  }

  .block-header--lang-link {
    flex-direction: column;
    cursor: pointer;
    transition: var(--transition-opacity);
  }

  .block-header--lang-link:is(:hover, :focus) {
    opacity: .8;
  }

  .block-header--lang-icon svg {
    width: 20px;
    height: 20px;
  }

  .block-header--lang-text {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    font-size: 11px;
  }

  .block-header--lang-text::after {
    transition: var(--transition-all);
  }

  .block-header--lang-list {
    top: 60px;
  }

  .block-header--lang-link:is(:hover, :focus) .block-header--lang-text::after {
    top: 4px;
  }
}

@media (min-width: 1367px) {
  .block-header--menu-list {
    gap: 44px;
  }

  .block-header--labo {
    margin-left: 80px;
  }
}

/* ----- Company Header ToggleNavi ----- */
.block-header-nav {
  display: none;
  background-color: var(--color-tert);
  padding: 32px;
  width: 100%;
  height: calc(100svh - 80px);
  position: fixed;
  top: 80px;
  left: 0;
  z-index: 99999;
}

.block-header-nav.is-active {
  display: block;
}

.block-header-nav--menu {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #dedede;
}

.block-header-nav--menu-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.block-header-nav--menu-link {
  font-weight: bold;
  font-size: 16px;
}

.block-header-nav--other {
  margin-bottom: 32px;
}

.block-header-nav--other-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.block-header-nav--other-link {
  font-weight: 500;
  font-size: 13px;
}

/* ラボリンク */
.block-header-nav--labo {
  margin-bottom: 32px;
}

.block-header-nav--labo-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 4px;
  border: 1px solid #00a3af;
  background-color: #fff;
  padding: 17px 27px;
  transition: var(--transition-opacity);
}

.block-header-nav--labo-link::after {
  display: block;
  content: "";
  width: 7px;
  height: 13px;
  background: url(../img/icon_arrow_green.svg) no-repeat 0 0;
  background-size: 100% auto;
}

/* sns */
.block-header-nav--sns {
  display: flex;
  align-items: center;
  gap: 32px;
}

@media (min-width: 769px) {
  .block-header-nav.is-active {
    display: none;
  }
}

/* ----- Company Footer ----- */
.block-footer {
  background-color: #8a857e;
  padding: 42px 24px;
  color: #fff;
}

.block-footer a {
  color: #fff;
}

.block-footer--top {
  margin-bottom: 24px;
}

.block-footer--logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 42px;
}

.block-footer--logo img {
  display: block;
}

.block-footer--sns {
  margin-bottom: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.block-footer--about > div dl {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.block-footer--about > div dl > dt,
.block-footer--about > div dl dd {
  width: 100%;
}

.block-footer--about > div dl > dt {
  margin-bottom: 16px;
}

.block-footer--about-item {
  border-bottom: 1px solid #ffffff33;
  padding-bottom: 8px;
}

.block-footer--about-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  font-weight: bold;
}

.block-footer--about-title::after {
  display: block;
  content: "";
  width: 24px;
  height: 24px;
  background: url(../img/icon_arrow_white_l.svg.svg) no-repeat 0 0;
  background-size: 100% auto;
  position: relative;
  top: -1px;
}

.block-footer--about-link {
  font-size: 13px;
  font-weight: 500;
}

.block-footer--bottom {
  margin-bottom: 48px;
}

.block-footer--nav {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #ffffff33;
}

.block-footer--nav-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.block-footer--nav-item {
  width: 100%;
}

.block-footer--nav-link {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  font-weight: bold;
}

.block-footer--nav-link::after {
  display: block;
  content: "";
  width: 24px;
  height: 24px;
  background: url(../img/icon_arrow_white_l.svg.svg) no-repeat 0 0;
  background-size: 100% auto;
  position: relative;
  top: -1px;
}

.block-footer--other-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.block-footer--other-item {
  width: 100%;
}

.block-footer--other-link {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ffffff1A;
  border-radius: 4px;
  background-color: rgba(255, 255, 255, .1);
  width: 100%;
  padding: 12px;
  font-size: 14px;
  font-weight: bold;
}

.block-footer--other-link::after {
  display: block;
  content: "";
  width: 24px;
  height: 24px;
  background: url(../img/icon_arrow_white_l.svg.svg) no-repeat 0 0;
  background-size: 100% auto;
  position: relative;
  top: -1px;
}

.block-footer--aside {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.block-footer--lang {
  position: relative;
}

.block-footer--lang-link {
  display: flex;
  align-items: center;
  gap: 4px;
}

.block-footer--lang-icon img {
  display: block;
}

.block-footer--lang-icon svg {
  width: 16px;
  height: 16px;
}

.block-footer--lang-text {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: normal;
}

.block-footer--lang-text::after {
  position: relative;
  top: -1px;
  display: block;
  content: "";
  width: 12px;
  height: 12px;
  background: url(../img/icon_arrow_white_s.svg) no-repeat 0 0;
  background-size: 100% auto;
}

.block-footer--lang-list {
  display: none;
  padding: 16px;
  position: absolute;
  bottom: 25px;
  left: 0;
  background-color: #fff;
  box-shadow: 0 3px 6px #0000001A;
  width: 236px;
  border-radius: 8px;
  z-index: 1;
}

.block-footer--lang-list.is-active {
  display: block;
}

.block-footer--lang-list > li > a {
  display: block;
  padding: 15px 12px;
  color: var(--color-default);
}

.block-footer--lang-list > li > a:is(:hover, :focus) {
  background-color: #f4f4f4;
  text-decoration: none;
}

.block-footer--copy {
  display: flex;
  align-items: center;
  font-size: 11px;
}

.block-footer--copy-mark {
  width: 40px;
  height: 40px;
}

@media (min-width: 769px) {
  .block-footer--inner {
    margin: auto;
    max-width: 1600px;
  }

  .block-footer--logo {
    display: none;
  }

  .block-footer--sns {
    justify-content: flex-start;
    gap: 26px;
  }

  .block-footer--about {
    margin-bottom: 16px;
  }

  .block-footer--about > div dl {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0;
  }

  .block-footer--about > div dl > dt {
    margin-bottom: 16px;
  }

  .block-footer--about-title {
    width: fit-content;
    font-size: 18px;
  }

  .block-footer--about > div dl dd {
    position: relative;
    width: fit-content;
    border-bottom: 0;
    display: flex;
    gap: 12px;
    margin-right: 12px;
  }

  .block-footer--about > div dl dd::before {
    display: block;
    content: "｜";
  }

  .block-footer--about > div dl dt + dd::before {
    display: none;
  }

  .block-footer--about > div dl dd:first-child {
    margin-left: 0;
    padding-left: 0;
  }

  .block-footer--about-link {
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition-opacity);
  }

  .block-footer--about-link:is(:hover, :focus) {
    opacity: .8;
    text-decoration: underline;
  }

  .block-footer--bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #ffffff33;
    width: 100%;
    margin-bottom: 16px;
    padding-bottom: 24px;
  }

  .block-footer--nav {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .block-footer--nav-list {
    flex-direction: row;
    gap: 24px;
  }

  .block-footer--nav-item {
    width: fit-content;
  }

  .block-footer--nav-link {
    font-size: 18px;
    transition: var(--transition-opacity);
  }

  .block-footer--nav-link:is(:hover, :focus) {
    opacity: .8;
  }

  .block-footer--other-list {
    flex-direction: row;
    gap: 12px;
  }

  .block-footer--other-item {
    width: fit-content;
  }

  .block-footer--other-link {
    padding: 12px 15px 12px 20px;
    gap: 4px;
    transition: var(--transition-all);
  }

  .block-footer--other-link::after {
    width: 10px;
    height: 10px;
    background: url(../img/icon_footer_other.svg) no-repeat 0 0;
    background-size: 100% auto;
    transition: var(--transition-all);
  }

  .block-footer--other-link:is(:hover, :focus) {
    background-color: rgba(255, 255, 255, .15);
  }

  .block-footer--other-link:is(:hover, :focus)::after {
    background-image: url(../img/icon_footer_other_hover.svg);
  }

  .block-footer--lang-text::after {
    top: 0;
  }

  .block-footer--copy {
    font-size: 12px;
  }

  .block-footer--copy-mark {
    width: 60px;
    height: 60px;
  }
}