@charset "UTF-8";
/*=====================================================
common.css
======================================================*/
/* ----------------------------------------------------
base設定
-----------------------------------------------------*/
html {
  font-size: 62.5%;
  height: 100%;
  overflow-y: scroll;
  width: 100%;
}

body,
button,
input,
select,
textarea {
  font-family: var(--font-base);
}

body {
  background: #fff;
  color: #252525;
  font-size: 1.6rem;
  line-height: 1.8;
  overflow-wrap: break-word;
  width: 100%;
  min-width: 320px;
  height: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

a {
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  color: #333;
  text-decoration: none;
  transition: opacity 0.3s;
}

img {
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.4;
  font-weight: normal;
}

.hide {
  opacity: 0;
  visibility: hidden;
}

.show {
  opacity: 1;
  visibility: visible;
}

/* ----------------------------------------------------
ヘッダー
-----------------------------------------------------*/
.header {
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #FFF;
  padding-block: 20px;
  transition: all 0.3s ease;
  background-color: rgba(72, 72, 72, 0.8);
}
@media screen and (max-width: 1000px) {
  .header {
    padding-block: 10px;
  }
}
.header-inner {
  display: grid;
  grid-template-columns: 1fr max-content;
  align-items: center;
  -moz-column-gap: 30px;
       column-gap: 30px;
  max-width: 1240px;
  padding-inline: min(3vw, 20px);
  margin-inline: auto;
}
@media screen and (max-width: 1000px) {
  .header h1 img {
    max-width: 45vw;
  }
}

/* ----------------------------------------------------
グローバルナビ
-----------------------------------------------------*/
/* ハンバーガーメニュー  */
.hamburger {
  display: none;
}
@media screen and (max-width: 1000px) {
  .hamburger {
    display: grid;
    place-content: center;
    position: absolute;
    top: 50%;
    right: min(3vw, 15px);
    transform: translateY(-50%);
    z-index: 9999;
    cursor: pointer;
    width: min(10vw, 60px);
    height: min(10vw, 60px);
  }
  .hamburger > p {
    transition: all 0.3s ease;
    font-family: var(--font-en);
    font-size: 1.5rem;
    color: #ffffff;
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translate(-50%, 0);
  }
  .hamburger > div {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60%;
    height: 45%;
    transform: translate(-50%, -50%);
  }
}
@media screen and (max-width: 1000px) and (max-width: 480px) {
  .hamburger > div {
    width: 80%;
    height: 70%;
  }
}
@media screen and (max-width: 1000px) {
  .hamburger > div > span {
    display: block;
    position: absolute;
    height: 0.2rem;
    width: 100%;
    background: #ffffff;
    left: 0;
    transition: 0.35s ease-in-out;
  }
  .hamburger > div > span:nth-child(1) {
    top: 0;
  }
  .hamburger > div > span:nth-child(2) {
    top: 50%;
  }
  .hamburger > div > span:nth-child(3) {
    bottom: 0;
  }
  .open .hamburger span:nth-child(1) {
    top: 48%;
    transform: rotate(315deg);
  }
  .open .hamburger span:nth-child(2) {
    width: 0;
    left: 50%;
  }
  .open .hamburger span:nth-child(3) {
    bottom: 48%;
    transform: rotate(-315deg);
  }
}

/* グローバルナビ  */
.naviset {
  position: relative;
  padding-right: 100px;
  visibility: visible !important;
}
@media screen and (max-width: 1000px) {
  .naviset {
    background-color: rgba(30, 30, 30, 0.9);
    width: 100%;
    height: 0;
    z-index: 9998;
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0s ease 0.3s;
    padding-right: 0;
  }
}
@media screen and (max-width: 1000px) {
  .open .naviset {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease;
    height: 100svh;
  }
}
.naviset .gnavi {
  display: grid;
  grid-auto-flow: column;
  align-items: center;
  justify-content: start;
  -moz-column-gap: 15px;
       column-gap: 15px;
}
@media screen and (max-width: 1000px) {
  .naviset .gnavi {
    grid-auto-flow: initial;
    place-content: center;
    text-align: center;
    align-items: center;
    row-gap: min(12vw, 50px);
    height: 100svh;
  }
}
.naviset .gnavi li {
  display: grid;
  grid-auto-flow: column;
  align-items: center;
}
.naviset .gnavi li::before {
  display: block;
  content: "";
  width: 1px;
  height: 16px;
  background-color: #FFFFFF;
  margin-right: 15px;
}
@media screen and (max-width: 1000px) {
  .naviset .gnavi li::before {
    content: none;
  }
}
.naviset .gnavi li:first-child::before {
  content: none;
}
.naviset .gnavi a {
  position: relative;
  line-height: 1;
  color: #FFFFFF;
}
@media screen and (max-width: 1000px) {
  .naviset .gnavi a {
    grid-auto-flow: initial;
    font-size: min(4vw, 2.4rem);
  }
}
@media screen and (max-width: 1000px) {
  .naviset .gnavi a:hover {
    opacity: 0.6;
  }
}
.naviset .gnavi a:hover::after {
  position: absolute;
  bottom: -10px;
  display: block;
  content: "";
  width: 100%;
  height: 2px;
  background-color: #FFFFFF;
}
@media screen and (max-width: 1000px) {
  .naviset .gnavi a:hover::after {
    content: none;
  }
}
.naviset .gnavi a.active::after {
  position: absolute;
  bottom: -10px;
  display: block;
  content: "";
  width: 100%;
  height: 2px;
  background-color: #FFFFFF;
}
@media screen and (max-width: 1000px) {
  .naviset .gnavi a.active::after {
    content: none;
  }
}
.naviset .navi-lang {
  font-size: min(3.6vw, 1.6rem);
  line-height: 1;
  position: absolute;
  top: -40px;
  right: 0;
  display: grid;
  place-content: center;
  color: #FFFFFF;
  background-color: #FF0303;
  width: 55px;
  height: 45px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
@media screen and (max-width: 1000px) {
  .naviset .navi-lang {
    top: 0;
    right: initial;
    left: min(5vw, 30px);
    visibility: hidden;
  }
}
@media screen and (max-width: 1000px) {
  .open .naviset .navi-lang {
    opacity: 1;
    visibility: visible;
  }
}

/* ----------------------------------------------------
フッター
-----------------------------------------------------*/
.footer {
  background-color: #000000;
  padding-block: min(12vw, 40px) min(9vw, 30px);
}
.footer__main {
  padding-block-end: min(15vw, 40px);
  color: #FFFFFF;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .footer__main {
    display: grid;
    row-gap: min(6vw, 20px);
  }
}
.footer__logo {
  border-right: 1px solid #FFFFFF;
  padding-right: min(10vw, 40px);
}
@media screen and (max-width: 767px) {
  .footer__logo {
    border: none;
    padding-right: 0;
    max-width: 70%;
    margin-inline: auto;
  }
}
.footer__info {
  padding-left: min(10vw, 40px);
}
@media screen and (max-width: 767px) {
  .footer__info {
    padding-left: 0;
    display: grid;
    justify-content: center;
  }
}
.footer__info br {
  display: none;
}
@media screen and (max-width: 480px) {
  .footer__info br {
    display: block;
  }
}
.footer__info--btn {
  margin-top: min(6vw, 20px);
}
.footer__info--btn a {
  max-width: 250px;
  display: grid;
  justify-content: center;
  color: #FFFFFF;
  border: 1px solid #FFFFFF;
  padding: min(3vw, 10px) min(9vw, 30px);
  transition: all 0.3s ease;
}
.footer__info--btn a:hover {
  background-color: #FFFFFF;
  color: #000000;
}
@media screen and (max-width: 767px) {
  .footer__info--btn {
    display: grid;
    justify-items: center;
  }
}
.footer__copy {
  color: #FFFFFF;
  max-width: 1240px;
  padding-inline: min(5vw, 30px);
  margin-inline: auto;
  text-align: center;
}
.footer__pagetop {
  color: #FFFFFF;
  position: absolute;
  top: max(-30vw, -110px);
  right: 0;
  background-color: #3E3E3E;
  width: min(15vw, 50px);
  height: min(15vw, 50px);
  display: grid;
  place-content: center;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .footer__pagetop {
    display: none;
  }
}
.footer__pagetop:hover {
  background-color: #000000;
}

/* ----------------------------------------------------
フレーム
-----------------------------------------------------*/
main {
  padding-bottom: min(12vw, 100px);
}

.content {
  padding-top: min(12vw, 80px);
}

/* ----------------------------------------------------
下層ページ共通パーツ
-----------------------------------------------------*/
.page-title {
  color: #FFFFFF;
  text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.6);
  display: grid;
  place-content: center;
  padding-top: min(12vw, 90px);
  height: min(60vw, 350px);
}
.page-title p {
  font-size: min(6.4vw, 4.2rem);
  font-weight: 500;
  font-family: var(--font-en);
}
.page-title h2 {
  font-size: min(5vw, 2.8rem);
  font-weight: 700;
  text-align: center;
}

.page-catch {
  position: relative;
  font-size: min(5vw, 36px);
  font-weight: 700;
  text-align: center;
  padding-bottom: min(6vw, 30px);
}
.page-catch::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  content: "";
  background-color: #969696;
  width: min(20vw, 120px);
  height: 3px;
}

.gray-block {
  max-width: 1000px;
  margin-inline: auto;
  background-color: #F0F0F0;
  padding: min(6vw, 40px) min(6vw, 50px);
  border-radius: 20px;
}

.equip-list__title {
  text-align: center;
  font-weight: 700;
  font-size: min(4vw, 2.6rem);
}
.equip-list__subtitle {
  font-weight: 700;
  font-size: min(3.6vw, 1.7rem);
}
.equip-list ul {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: min(4vw, 15px);
       column-gap: min(4vw, 15px);
  row-gap: min(3vw, 7px);
}
.equip-list ul li::before {
  content: "●";
  margin-right: min(0.5vw, 3px);
}

.equip-imglist figure {
  text-align: center;
}
.equip-imglist figure figcaption {
  margin-top: min(2vw, 8px);
}

.product-aligned-note {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: min(6vw, 30px);
       column-gap: min(6vw, 30px);
}
@media screen and (max-width: 767px) {
  .product-aligned-note {
    grid-template-columns: 1fr;
    row-gap: 3vw;
  }
}
.product-aligned-note__title {
  font-size: min(3.6vw, 2.2rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: min(6vw, 20px);
  text-decoration-line: underline;
  text-decoration-color: #FFF;
  text-decoration-thickness: 3px;
  text-underline-offset: 10px;
}

.sec-title {
  font-size: min(3.8vw, 2.4rem);
  font-weight: 700;
  background-color: #EBEBEB;
  padding: min(4vw, 15px) min(6vw, 20px);
}

.line-title {
  font-size: min(3.8vw, 2rem);
  padding-left: min(4vw, 15px);
  font-weight: 700;
  border-left: solid 7px #000000;
  margin-bottom: min(6vw, 20px);
}

.base-table {
  width: -webkit-fill-available;
  width: -moz-available;
  width: stretch;
}
.base-table th {
  font-weight: 700;
  padding: min(4vw, 15px) min(6vw, 30px);
  text-align: center;
  vertical-align: middle;
  background-color: #E9EAF4;
  border-right: 1px solid #FFFFFF;
  border-bottom: 1px solid #FFFFFF;
}
.base-table td {
  padding: min(4vw, 15px) min(6vw, 30px);
  vertical-align: middle;
  background-color: #F2F2F2;
  border-bottom: 1px solid #FFFFFF;
}

.form__table {
  width: -webkit-fill-available;
  width: -moz-available;
  width: stretch;
  max-width: 910px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .form__table {
    display: block;
  }
}
.form__table th {
  width: 180px;
  padding-block: min(1vw, 10px);
  vertical-align: top;
}
@media screen and (max-width: 767px) {
  .form__table th {
    display: block;
  }
}
.form__table td {
  width: -webkit-fill-available;
  width: -moz-available;
  width: stretch;
  padding-block: min(1vw, 10px);
  padding-left: min(3vw, 20px);
}
@media screen and (max-width: 767px) {
  .form__table td {
    display: block;
    padding-left: 0;
  }
}
.form__table td input {
  border: 1px solid #AEAEAE;
  background-color: #FFFFFF;
}
@media screen and (max-width: 767px) {
  .form__table td input {
    max-width: 100%;
  }
}
.form__table td textarea {
  width: 100%;
  border: 1px solid #AEAEAE;
  background-color: #FFFFFF;
}
@media screen and (max-width: 767px) {
  .form__table td textarea {
    width: 100%;
  }
}
.form__btn {
  display: grid;
  justify-content: center;
}
.form__btn button {
  font-weight: 700;
  cursor: pointer;
  color: #FFFFFF;
  background-color: #000000;
  border: 1px solid #000000;
  padding: min(3vw, 10px) min(12vw, 60px);
  transition: all 0.3s ease;
}
.form__btn button:hover {
  color: #333333;
  background-color: #FFFFFF;
}/*# sourceMappingURL=common.css.map */