@charset "UTF-8";
html:has(dialog[open]) {
  overflow: hidden;
}

body {
  font-size: 16px;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}
body.is-fixed {
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 12px;
  }
}

.underline {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.underline:hover {
  color: #333;
  opacity: 0.6;
}

.hover-decoration {
  -webkit-transition: 0.1s;
  transition: 0.1s;
}
.hover-decoration:hover {
  opacity: 0.7;
}

.bold {
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .hidden-sp {
    display: none;
  }
}

@media screen and (max-width: 1200px) {
  .hidden-tb {
    display: none;
  }
}

@media screen and (min-width: 1200px) {
  .hidden-pc {
    display: none;
  }
}

.button {
  height: 51px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 16px 41px;
  border-radius: 10px;
  border: 1px solid #fff;
  background: #193350;
  -webkit-box-shadow: 3px 4px 4px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 3px 4px 4px 0px rgba(0, 0, 0, 0.25);
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.32px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.button:hover {
  background: #2c4a7b;
}
@media screen and (max-width: 767px) {
  .button {
    padding: 10px 21px;
    font-size: 12px;
  }
}

.section-margin {
  margin-top: 109px;
}
@media screen and (max-width: 767px) {
  .section-margin {
    margin-top: 59px;
  }
}

.head {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 240px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: url(../img/page-title-bg.png) no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  .head {
    height: 120px;
  }
}

.page-title {
  font-size: 42px;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .page-title {
    font-size: 28px;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 109px;
  background: #fff;
  z-index: 9999;
  border-bottom: 1.5px solid #e2dddd;
}
@media screen and (max-width: 767px) {
  .header {
    height: 59px;
  }
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: inherit;
  padding: 21px 78px;
}
@media screen and (max-width: 1200px) {
  .header__inner {
    padding: 21px 78px;
  }
}
@media screen and (max-width: 767px) {
  .header__inner {
    padding: 21px 24px;
  }
}

.header__logo {
  max-width: 272px;
}
@media screen and (max-width: 767px) {
  .header__logo {
    max-width: 150px;
  }
}

.drawer-icon {
  display: none;
}
@media screen and (max-width: 1200px) {
  .drawer-icon {
    width: 32px;
    height: 27px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .drawer-icon.is-checked .drawer-icon__bar:nth-child(1) {
    top: 13.5px;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .drawer-icon.is-checked .drawer-icon__bar:nth-child(2) {
    display: none;
  }
  .drawer-icon.is-checked .drawer-icon__bar:nth-child(3) {
    top: 13.5px;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
}

.drawer-icon__bar {
  position: absolute;
  background-color: #333;
  border-radius: 3px;
  width: inherit;
  height: 3px;
  -webkit-transition: top 0.4s, background 0.4s, -webkit-transform 0.4s;
  transition: top 0.4s, background 0.4s, -webkit-transform 0.4s;
  transition: top 0.4s, transform 0.4s, background 0.4s;
  transition: top 0.4s, transform 0.4s, background 0.4s, -webkit-transform 0.4s;
}
.drawer-icon__bar:nth-child(1) {
  top: 0;
}
.drawer-icon__bar:nth-child(2) {
  top: 12px;
}
.drawer-icon__bar:nth-child(3) {
  top: 24px;
}

.header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1200px) {
  .header__nav {
    display: none;
  }
}

.header__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 25px;
}

.header__list {
  padding: 10px;
}

.header__link {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.4px;
}

.drawer__nav {
  display: block;
  width: 100%;
  height: calc(100vh - 109px);
  position: fixed;
  top: 109px;
  left: 0;
  padding-block: 82px;
  background: #ebf9ff;
  background: linear-gradient(127deg, rgba(235, 249, 255, 0.9) 0%, rgba(207, 240, 255, 0.9) 47%, rgba(189, 234, 255, 0.9) 100%);
  z-index: 100;
  -webkit-transform: translateY(-100vh);
          transform: translateY(-100vh);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  .drawer__nav {
    height: calc(100vh - 59px);
    top: 59px;
  }
}
.drawer__nav.is-checked {
  display: block;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

.drawer__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 14px;
}

.drawer__link {
  font-weight: 500;
  font-size: 16px;
}

.fv__head {
  position: relative;
}

.fv__company-name {
  color: #fff;
  position: absolute;
  top: 50%;
  right: 60px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  text-align: right;
}
@media screen and (max-width: 767px) {
  .fv__company-name {
    right: 16px;
  }
}

.fv__company-name-jp {
  font-size: 56px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.12px;
}
@media screen and (max-width: 1200px) {
  .fv__company-name-jp {
    font-size: 38px;
  }
}
@media screen and (max-width: 767px) {
  .fv__company-name-jp {
    font-size: 18px;
  }
}

.fv__company-name-en {
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1px;
}
@media screen and (max-width: 1200px) {
  .fv__company-name-en {
    font-size: 13px;
    letter-spacing: 0.22px;
  }
}
@media screen and (max-width: 767px) {
  .fv__company-name-en {
    font-size: 10px;
    letter-spacing: 0;
  }
}

.fv__body {
  padding: 63px 120px 41px;
}
@media screen and (max-width: 1200px) {
  .fv__body {
    padding: 40px;
  }
}
@media screen and (max-width: 767px) {
  .fv__body {
    padding: 20px;
  }
}

.fv__title {
  font-size: 24px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .fv__title {
    font-size: 16px;
  }
}

.fv__description {
  margin-top: 49px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .fv__description {
    margin-top: 20px;
    gap: 10px;
  }
}

.fv__text {
  line-height: 25px;
}
@media screen and (max-width: 767px) {
  .fv__text {
    line-height: 18px;
  }
}

.fv__services {
  margin-top: 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 46px;
}
@media screen and (max-width: 767px) {
  .fv__services {
    margin-top: 70px;
    gap: 26px;
  }
}

.fv__service {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
}

.fv__service-title {
  font-weight: 700;
}

/* スクロールCSS */
.fade-in {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: opacity 3s ease, -webkit-transform 2s ease;
  transition: opacity 3s ease, -webkit-transform 2s ease;
  transition: opacity 3s ease, transform 2s ease;
  transition: opacity 3s ease, transform 2s ease, -webkit-transform 2s ease;
}
@media screen and (max-width: 767px) {
  .fade-in {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
}

.scroll-in {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.contact-link {
  padding-top: 100px;
  padding-bottom: 150px;
  text-align: center;
}

.contact-link__title {
  font-size: 36px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .contact-link__title {
    font-size: 20px;
  }
}

.contact-link__button {
  margin-top: 31px;
}

.footer {
  color: #333;
  padding-block: 36px;
  text-align: center;
  background: #eff8fe;
}

.footer__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 46px;
}
@media screen and (max-width: 767px) {
  .footer__lists {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 10px 40px;
    padding-inline: 20px;
  }
}

.footer__link {
  letter-spacing: 0.32px;
}

.footer__bottom {
  margin-top: 22px;
}

.footer__copyright {
  font-size: 12px;
  letter-spacing: 0.24px;
}

.product__body {
  padding: 60px 120px 104px;
}
@media screen and (max-width: 1200px) {
  .product__body {
    padding: 40px;
  }
}
@media screen and (max-width: 767px) {
  .product__body {
    padding: 20px;
  }
}

.product__sub-title {
  font-size: 36px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .product__sub-title {
    font-size: 24px;
  }
}

.product__description {
  margin-top: 25px;
}

.product-category {
  margin-top: 76px;
  margin-left: 87px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 42px;
}
@media screen and (max-width: 767px) {
  .product-category {
    margin-left: 40px;
    gap: 20px;
  }
}

.product-category__title {
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .product-category__title {
    font-size: 18px;
  }
}

.product-category__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
}
@media screen and (max-width: 767px) {
  .product-category__lists {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 15px;
  }
}

@media screen and (max-width: 767px) {
  .product-category__list {
    margin-left: 20px;
  }
}

.product-category__icon {
  width: 24px;
  margin-right: 4px;
}

.product__cards {
  margin-top: 86px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 108px 60px;
}
@media screen and (max-width: 767px) {
  .product__cards {
    gap: 80px 60px;
  }
}

.product-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.product-card:hover {
  opacity: 0.7;
}

.product-card__image {
  width: 247px;
}

.product-card__name {
  margin-top: 15px;
}

.company__philosophy {
  font-size: 36px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .company__philosophy {
    font-size: 24px;
  }
}

.company__text {
  margin-top: 40px;
  font-weight: 500;
  font-size: 17px;
}
@media screen and (max-width: 767px) {
  .company__text {
    margin-top: 20px;
    font-size: 12px;
  }
}

.company__body {
  padding: 52px 120px 104px;
}
@media screen and (max-width: 1200px) {
  .company__body {
    padding: 52px 100px 104px;
  }
}
@media screen and (max-width: 767px) {
  .company__body {
    padding: 20px;
  }
}

.company__sub-title {
  font-size: 36px;
  font-weight: 700;
  margin-top: 120px;
}
@media screen and (max-width: 767px) {
  .company__sub-title {
    font-size: 24px;
    margin-top: 70px;
  }
}

.company__info {
  max-width: 673px;
  width: 100%;
  margin-inline: auto;
  margin-top: 67px;
  text-align: left;
  border-collapse: collapse;
  border-spacing: 0;
}
@media screen and (max-width: 1200px) {
  .company__info {
    max-width: 600px;
  }
}
@media screen and (max-width: 767px) {
  .company__info {
    max-width: 300px;
    margin-top: 20px;
  }
}
.company__info tr {
  height: 100px;
}
@media screen and (max-width: 767px) {
  .company__info tr {
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.company__info th,
.company__info td {
  border-bottom: 1px solid #000;
  vertical-align: middle;
  line-height: 1.5;
}
.company__info th {
  font-weight: 700;
  padding-left: 7.5px;
  width: 136px;
}
@media screen and (max-width: 767px) {
  .company__info th {
    border: none;
    padding-top: 14px;
    width: 200px;
  }
}
.company__info td {
  padding-left: 59px;
  padding-top: 10px;
  padding-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .company__info td {
    padding-left: 20px;
    padding-top: 5px;
    padding-bottom: 14px;
  }
}

.contact__body {
  padding-top: 217px;
  padding-bottom: 141px;
  padding-inline: 55px;
}
@media screen and (max-width: 1200px) {
  .contact__body {
    padding-top: 100px;
  }
}
@media screen and (max-width: 767px) {
  .contact__body {
    padding-top: 50px;
    padding-inline: 40px;
  }
}

.contact__form {
  max-width: 760px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .contact__form {
    max-width: 300px;
  }
}

.contact__fields {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
}

.form-field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
@media screen and (max-width: 767px) {
  .form-field {
    gap: 12px;
  }
}

.form-field__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.form-field__label {
  cursor: pointer;
}

.form-field__tag {
  color: #bc0f39;
}

.form-field__item input::-webkit-input-placeholder {
  color: rgba(51, 51, 51, 0.25);
}

.form-field__item input::-moz-placeholder {
  color: rgba(51, 51, 51, 0.25);
}

.form-field__item input:-ms-input-placeholder {
  color: rgba(51, 51, 51, 0.25);
}

.form-field__item input::-ms-input-placeholder {
  color: rgba(51, 51, 51, 0.25);
}

.form-field__item input::placeholder {
  color: rgba(51, 51, 51, 0.25);
}

.form-text {
  width: 100%;
  padding: 16px;
  border: 1px solid #aaa;
  background: #ebebeb;
}
@media screen and (max-width: 767px) {
  .form-text {
    padding: 12px;
  }
}
.form-text:focus {
  outline: none;
  border: 1px solid #111;
  background: #f7f5f5;
}
.form-text.is-error {
  border: 1px solid red;
  background: #fff0f7;
}

.form-textarea {
  width: 100%;
  height: 160px;
  padding: 16px;
  border: 1px solid #aaa;
  background: #ebebeb;
}
@media screen and (max-width: 767px) {
  .form-textarea {
    padding: 12px;
  }
}
.form-textarea::-webkit-input-placeholder {
  color: rgba(51, 51, 51, 0.25);
}
.form-textarea::-moz-placeholder {
  color: rgba(51, 51, 51, 0.25);
}
.form-textarea:-ms-input-placeholder {
  color: rgba(51, 51, 51, 0.25);
}
.form-textarea::-ms-input-placeholder {
  color: rgba(51, 51, 51, 0.25);
}
.form-textarea::placeholder {
  color: rgba(51, 51, 51, 0.25);
}
.form-textarea:focus {
  outline: none;
  border: 1px solid #111;
  background: #f7f5f5;
}
.form-textarea.is-error {
  border: 1px solid red;
  background: #fff0f7;
}

.form-note {
  font-size: 12px;
  margin-block: -22px -10px;
}

.contact__privacy {
  margin-top: 32px;
  font-size: 12px;
}

.form-checkbox__input {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
.form-checkbox__input:checked + .form-checkbox__text::after {
  opacity: 1;
}

.form-checkbox__text {
  padding-left: 30px;
  position: relative;
  cursor: pointer;
}
.form-checkbox__text::before, .form-checkbox__text::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.form-checkbox__text::before {
  width: 16px;
  height: 16px;
  border-radius: 2px;
  border: 1px solid #767676;
}
.form-checkbox__text::after {
  width: 16px;
  height: 16px;
  background: url(../img/Icon-check.png) no-repeat center center/contain;
  opacity: 0;
  top: 10px;
  left: -1px;
}

.contact__button {
  margin-top: 98px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contact__button {
    margin-top: 68px;
  }
}

.submit-button {
  padding: 12px 42px 12px 32px;
  border-radius: 10px;
  background: #193350;
  -webkit-box-shadow: 3px 4px 4px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 3px 4px 4px 0px rgba(0, 0, 0, 0.25);
  color: #fff;
  font-size: 14px;
  position: relative;
}
.submit-button::after {
  content: "";
  position: absolute;
  background: url(../img/arrow.png) no-repeat center center/contain;
  width: 10px;
  height: 10px;
  top: 50%;
  right: 16px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.submit-button:hover {
  background: #2c4a7b;
}

.privacy__body {
  padding: 76px 134px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
@media screen and (max-width: 1200px) {
  .privacy__body {
    padding: 40px;
  }
}
@media screen and (max-width: 767px) {
  .privacy__body {
    padding: 20px;
  }
}

.privacy__column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
}

.privacy__title {
  font-weight: 500;
  line-height: 1;
}

.privacy__text {
  font-weight: 350;
  line-height: 1;
}

.thanks__body {
  padding-block: 100px;
  text-align: center;
}

.thanks__text {
  font-size: 24px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .thanks__text {
    font-size: 18px;
  }
}

.thanks__button {
  margin-top: 20px;
}