/*-----------------------------------------------
variables
-----------------------------------------------*/
:root {
  --color-brand: #0db7d6;
  --color-brand-sub: #ff461e;
  --color-text: #333333;
  --color-text-sub: #666666;
  --color-nav: #000000;
  --color-required: #ff0000;
  --color-bg-form: rgba(216, 231, 244, 0.4);
  --font-family-base: "BIZ UDGothic", sans-serif;
  --font-family-title: "BIZ UDGothic", sans-serif;
  --font-size-base: 1.6rem;
  --font-size-section-title--ja: 2rem;
  --font-size-section-title--en: 1.8rem;
  --font-size-page-title: 2.4rem;
  --line-height-base: 1.6;
  --container-max-width: 112rem;
}

/*-----------------------------------------------
reset
-----------------------------------------------*/
/*! destyle.css v4.0.1 | MIT License | https://github.com/nicolas-cusan/destyle.min.css */
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
  min-width: 0;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
}

main {
  display: block;
}

p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

dt {
  font-weight: 700;
}

dd {
  margin-left: 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

pre {
  font-family: monospace, monospace;
  font-size: inherit;
}

address {
  font-style: inherit;
}

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

abbr[title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: inherit;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
}

button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

option {
  padding: 0;
}

fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

[type=number] {
  -moz-appearance: textfield;
}

label[for] {
  cursor: pointer;
}

details {
  display: block;
}

summary {
  display: list-item;
}

[contenteditable]:focus {
  outline: auto;
}

table {
  border-color: inherit;
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: 700;
}

/*-----------------------------------------------
base
-----------------------------------------------*/
html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}
@media (width >= 640px) {
  html {
    font-size: clamp(7.5px, 1.171875vw, 10px);
    /* 10px / 640px * 100 */
  }
}
@media (width > 800px) {
  html {
    font-size: clamp(6.5px, 0.8125vw, 10px);
    /* 10px / 1440px * 100 */
  }
}
@media (width >= 1440px) {
  html {
    font-size: 62.5%;
  }
}

body {
  font-family: var(--font-family-base);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--color-text);
}

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

a {
  transition: all 0.3s ease;
}
@media (hover: hover) {
  a:hover, a:focus {
    color: var(--color-link-hover);
  }
}

a[href^="tel:"] {
  pointer-events: none;
  cursor: default;
}
@media (width <= 800px) {
  a[href^="tel:"] {
    pointer-events: auto;
    cursor: pointer;
  }
}

.container {
  width: 112rem;
  margin-inline: auto;
}
.container--pars {
  width: 118.2rem;
}
.container__inner {
  padding: 8rem 0;
}
@media (width <= 800px) {
  .container {
    width: 94%;
  }
  .container__inner {
    padding: 4rem 0;
  }
}

.section--white {
  color: var(--color-text-white);
}
.section--center {
  text-align: center;
}
.section__title {
  line-height: 1;
  margin-bottom: 4rem;
  color: #00006e;
}
.section__title .ja,
.section__title .en {
  display: block;
}
.section__title .ja {
  font-size: 2.4rem;
  letter-spacing: 0.04em;
}
.section__title .en {
  font-size: 7.2rem;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0;
  text-transform: uppercase;
}
.section__title--center {
  text-align: center;
}
@media (width <= 800px) {
  .section__title .ja {
    font-size: 1.6rem;
  }
  .section__title .en {
    font-size: 4.8rem;
  }
}

.mb-40 {
  margin-bottom: 4rem;
}

/*-----------------------------------------------
buttons
-----------------------------------------------*/
.btn {
  display: inline-block;
  font-size: 1.6rem;
  color: #fff;
  width: 18rem;
  font-weight: 700;
  background: var(--color-brand-sub);
  padding: 1.3rem 0;
  text-align: center;
  position: relative;
}
.btn::before, .btn::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 2.2rem;
  width: 10px;
  height: 2px;
  border-radius: 9999px;
  background-color: #fff;
  transform-origin: calc(100% - 1px) 50%;
}
.btn::before {
  transform: rotate(-45deg);
}
.btn::after {
  transform: rotate(45deg);
}
@media (hover: hover) {
  .btn:hover, .btn:focus {
    opacity: 0.8;
    color: #fff;
  }
}

/*-----------------------------------------------
top-news
-----------------------------------------------*/
.p-news {
  -webkit-clip-path: inset(0);
          clip-path: inset(0);
  position: relative;
  width: 100vw;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .p-news {
    background-position: 65% bottom;
  }
}
.p-news__inner {
  display: flex;
  align-items: center;
  gap: 4.375vw;
  justify-content: space-between;
  padding-bottom: 7.2916666667vw;
  padding-top: 4.5138888889vw;
  position: relative;
}
@media screen and (max-width: 1440px) {
  .p-news__inner {
    gap: 63px;
    padding-bottom: 105px;
    padding-top: 65px;
  }
}
@media screen and (max-width: 1159px) {
  .p-news__inner {
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .p-news__inner {
    gap: 30px;
    padding-bottom: 60px;
    padding-top: 65px;
  }
}
.p-news__left {
  min-width: 232px;
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  margin-top: 2.4305555556vw;
}
@media screen and (max-width: 1159px) {
  .p-news__left {
    flex-direction: row;
    justify-content: space-between;
    margin-top: 45px;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .p-news__left {
    display: contents;
  }
}
@media screen and (max-width: 768px) {
  .p-news__title {
    order: 1;
    width: 100%;
  }
}
.p-news__right {
  margin-top: 2.4305555556vw;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-news__right {
    order: 2;
  }
}
@media screen and (max-width: 1159px) {
  .p-news__btn-wrap {
    margin-top: 15px;
  }
}
@media screen and (max-width: 768px) {
  .p-news__btn-wrap {
    margin-top: 0;
    order: 3;
  }
}
.p-news__btn {
  display: block;
  width: 12.5vw;
}
@media screen and (max-width: 1440px) {
  .p-news__btn {
    width: 180px;
  }
}
@media screen and (max-width: 768px) {
  .p-news__btn {
    width: 200px;
  }
}
.p-news__item {
  border-bottom: 1px solid #000;
  color: #000;
  padding-bottom: 1.25vw;
}
@media screen and (max-width: 1440px) {
  .p-news__item {
    padding-bottom: 18px;
  }
}
.p-news__item:not(:first-child) {
  padding-top: 1.5972222222vw;
}
.p-news__item time {
  font-size: 16px;
  letter-spacing: 0.7px;
}

.p-news-item__title {
  letter-spacing: 0.01px;
  margin-top: 0.3472222222vw;
}

.business-items {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 1.6rem;
}

.business-item {
  display: flex;
  flex-direction: row;
  gap: 0.8rem;
  align-items: flex-start;
}
.business-item__header {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.8rem;
  flex-shrink: 0;
}
.business-item__title {
  color: #00006e;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.6;
}
.business-item__icon {
  display: inline-block;
  width: 2.2rem;
  height: 2.2rem;
  position: relative;
  flex-shrink: 0;
}
.business-item__icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 1.1rem 0 1.1rem 1.9rem;
  border-color: transparent transparent transparent #00006e;
}
.business-item__description {
  color: #000;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.6;
}

.business-description {
  color: #000;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
}

.product {
  position: relative;
  overflow: hidden;
  background-image: url(../img/top/business-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
}
.product_inner {
  position: relative;
  z-index: 1;
  padding-top: 10rem;
  padding-bottom: 7rem;
  max-width: 138rem;
}
.product_inner .product-content {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20rem;
}
.product_inner .product-content .product-left {
  max-width: 56rem;
  padding-top: 16.5rem;
  width: 100%;
}
.product_inner .product-content .product-left .text1 {
  color: #00006e;
  margin-bottom: 1.6rem;
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 160%;
  /* 44.8px */
  letter-spacing: 0.56px;
}
.product_inner .product-content .product-left .text2 {
  color: #000;
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: 0;
}
.product_inner .product-content .product-right {
  max-width: 58.6rem;
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 6rem;
  padding-right: 2rem;
  background: #fff;
  box-shadow: 1rem 1rem 2rem 0 rgba(0, 0, 0, 0.25);
}
.product_inner .product-content .product-right__list {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.product_inner .product-content .product-right__item {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  font-size: 2rem;
  padding: 1.3rem 0;
}
.product_inner .product-content .product-right__item::before {
  content: "";
  background-image: url(../img/top/icon-sq.png);
  width: 3rem;
  height: 3rem;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.product_inner .ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 3.2rem;
}
.product_inner .ctas__item {
  max-width: 54.4rem;
  width: 100%;
  box-shadow: 0 0 16px 0 rgba(0, 65, 76, 0.16);
}
.product_inner .ctas__item:hover img {
  transform: scale(1.02);
  opacity: 0.9;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .product {
    position: relative;
  }
  .product_inner {
    position: relative;
    z-index: 1;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  .product_inner .product-content {
    flex-wrap: wrap !important;
    row-gap: 4rem;
    justify-content: space-between;
    margin-bottom: 4rem;
  }
  .product_inner .product-content .product-left {
    padding-top: 0;
    width: 100%;
    padding-left: 0;
  }
  .product_inner .product-content .product-left .text1 {
    font-size: 1.8rem;
  }
  .product_inner .product-content .product-right {
    max-width: 47.443rem;
    width: 100%;
    padding: 4rem 3.6rem;
    background: #fff;
    box-shadow: 10px 10px 20px 0 rgba(0, 0, 0, 0.25);
  }
  .product .product-right__item {
    font-size: 1.6rem;
  }
}
/*-----------------------------------------------
top-contact
-----------------------------------------------*/
.contact {
  background-image: url(../img/top/contact_bg.jpg);
  background-size: cover;
}
.contact__inner {
  padding-top: 10rem;
  padding-bottom: 13.4rem;
  max-width: 112rem;
  margin: 0 auto;
}
.contact__inner .contact-head {
  font-family: "Montserrat", sans-serif;
  color: #00006e;
  text-align: center;
  font-weight: 700;
  font-size: 7.2rem;
  margin-bottom: 3.5rem;
}
.contact__inner .contact-content {
  display: flex;
  justify-content: space-between;
}
.contact__inner .contact-content .contact-left {
  max-width: 55rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact__inner .contact-content .contact-left .tel {
  margin-bottom: 0.7rem;
}
.contact__inner .contact-content .contact-left .tel .tel-logo {
  margin-bottom: 0.7rem;
  display: flex;
  justify-content: center;
}
.contact__inner .contact-content .contact-left .tel .tel-text {
  color: #222;
  font-size: 4.8rem;
  font-style: normal;
  line-height: normal;
  letter-spacing: 3.84px;
}
.contact__inner .contact-content .contact-left .fax {
  color: #222;
  font-size: 2rem;
  font-style: normal;
  line-height: normal;
  letter-spacing: 1.6px;
}
.contact__inner .contact-content .bar {
  width: 2px;
  background-color: #222;
}
.contact__inner .contact-content .contact-right {
  max-width: 55rem;
  width: 100%;
  display: flex;
  justify-content: center;
}
.contact__inner .contact-content .contact-right .email .email-logo {
  margin-bottom: 2.5rem;
  display: flex;
  justify-content: center;
}
.contact__inner .contact-content .contact-right .email .email-text {
  color: #222;
  text-align: center;
  font-size: 2.4rem;
  font-style: normal;
  line-height: 175%;
  /* 42px */
}
@media (width <= 800px) {
  .contact__inner {
    padding-top: 5rem;
    padding-bottom: 7rem;
  }
  .contact__inner .contact-head {
    font-size: 5rem;
    margin-bottom: 1.6rem;
  }
  .contact__inner .contact-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .contact__inner .contact-content .contact-left {
    max-width: 55rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-bottom: 1px solid #222;
    padding-bottom: 2rem;
  }
  .contact__inner .contact-content .contact-left .tel {
    margin-bottom: 0.7rem;
  }
  .contact__inner .contact-content .contact-left .tel .tel-logo {
    margin-bottom: 0px;
    display: flex;
    justify-content: center;
  }
  .contact__inner .contact-content .contact-left .tel .tel-logo svg {
    width: 4rem;
  }
  .contact__inner .contact-content .contact-left .tel .tel-text {
    color: #222;
    font-size: 2.4rem;
    font-style: normal;
    line-height: normal;
    letter-spacing: 3.84px;
  }
  .contact__inner .contact-content .contact-left .fax {
    color: #222;
    font-size: 2rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 1.6px;
  }
  .contact__inner .contact-content .bar {
    width: 2px;
    background-color: #222;
  }
  .contact__inner .contact-content .contact-right {
    max-width: 55rem;
    width: 100%;
    display: flex;
    justify-content: center;
    padding-top: 2rem;
  }
  .contact__inner .contact-content .contact-right .email .email-logo {
    margin-bottom: 0px;
    display: flex;
    justify-content: center;
  }
  .contact__inner .contact-content .contact-right .email .email-logo svg {
    width: 4rem;
  }
  .contact__inner .contact-content .contact-right .email .email-text {
    color: #222;
    text-align: center;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 700;
    line-height: 175%;
    /* 42px */
  }
}

/*table_01
-----------------------------------------------*/
.table_01 {
  width: 100%;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.75;
}
.table_01 tr {
  border-bottom: 1px solid #b1b1b1;
}
.table_01 th,
.table_01 td {
  padding: 24px 0;
}
.table_01 th {
  width: 260px;
}
.table_01 td {
  word-break: break-word;
}
@media (max-width: 768px) {
  .table_01 {
    font-size: 16px;
  }
  .table_01 tbody {
    display: block;
    width: 100%;
  }
  .table_01 tr {
    display: flex;
    border-bottom: 1px solid #b1b1b1;
  }
  .table_01 th,
.table_01 td {
    padding: 12px 8px;
  }
  .table_01 th {
    width: 35%;
    min-width: 120px;
    padding-right: 16px;
  }
  .table_01 td {
    width: 65%;
    padding-left: 0;
  }
}
@media (max-width: 640px) {
  .table_01 {
    display: block;
  }
  .table_01 tbody,
.table_01 tr {
    display: block;
    width: 100%;
  }
  .table_01 tr {
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
    border-bottom: 1px solid #254fbb;
  }
  .table_01 th,
.table_01 td {
    display: block;
    width: 100%;
    padding: 12px;
  }
  .table_01 th {
    background: rgba(37, 79, 187, 0.1);
    border-bottom: none;
  }
  .table_01 td {
    padding-top: 8px;
  }
  .table_01 td br {
    display: block;
    margin: 8px 0;
    content: "";
  }
}

.table_02 {
  max-width: 930px;
  width: 100%;
  font-weight: 700;
  line-height: 1.75;
}
.table_02 td {
  width: 33.3333333333%;
  padding: 0.8rem 1.6rem;
}
.table_02 tr {
  border-bottom: 1px solid #a1a1a1;
}
.table_02 tr:first-child {
  border-top: 1px solid #a1a1a1;
}
.table_02 tr:nth-child(even) {
  background-color: #efefef;
}
@media (max-width: 640px) {
  .table_02 {
    font-size: 14px;
  }
  .table_02 td {
    padding: 0.8rem;
  }
}

/*-----------------------------------------------
form
-----------------------------------------------*/
.page-contact {
  margin-bottom: 8rem;
}
.page-contact__wrap {
  margin-bottom: 4rem;
}
.page-contact__form {
  margin-bottom: 4.8rem;
  background: var(--bg);
  padding: 6.4rem 11rem;
  border-radius: 1.6rem;
}
.page-contact .red {
  font-size: 1.6rem;
  line-height: 1.6;
  letter-spacing: 0.08em;
  color: var(--color-required);
}
.page-contact .text {
  font-size: 2rem;
  font-weight: 400;
  color: #000;
  letter-spacing: 0.02em;
}
.page-contact .checkbox-group {
  margin: 1rem 0 2rem;
  color: #222;
}
.page-contact .checkbox-group input[type=checkbox] {
  width: 1.6rem;
  height: 1.6rem;
  margin-right: 1.6rem;
  vertical-align: bottom;
}
.page-contact input[type=text],
.page-contact input[type=tel],
.page-contact input[type=email],
.page-contact textarea {
  font-size: 1.6rem;
  width: 100%;
  padding: 1.6rem 2.4rem;
  border: 0.2rem solid #e5e5e5;
  background: #fff;
  margin: 0.8rem 0 4rem;
}
.page-contact ::-moz-placeholder {
  color: #999999;
}
.page-contact ::placeholder {
  color: #999999;
}
.page-contact .checkbox {
  margin-bottom: 2rem;
}
.page-contact .checkbox label {
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-contact .checkbox input[type=checkbox] {
  width: 1.6rem;
  height: 1.6rem;
  background: #fff;
  border: 1px solid #222;
  margin-right: 1.4rem;
  display: flex;
  align-items: center;
}
.page-contact .checkbox input[type=checkbox i]:checked {
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
}
.page-contact .checkbox p {
  color: #4c4c4c;
  font-size: 1.4rem;
  line-height: 1.6;
  letter-spacing: 0.07em;
}
.page-contact .checkbox a {
  color: #4c4c4c;
}
.page-contact .submit-btn {
  display: block;
  margin-inline: auto;
  text-align: center;
  font-size: 1.8rem;
  max-width: 360px;
  width: 100%;
  padding: 20px 0;
  color: #fff;
  background: var(--color-brand-sub);
  position: relative;
}
.page-contact .submit-btn::before, .page-contact .submit-btn::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 10rem;
  width: 10px;
  height: 2px;
  border-radius: 9999px;
  background-color: #fff;
  transform-origin: calc(100% - 1px) 50%;
}
.page-contact .submit-btn::before {
  transform: rotate(-45deg);
}
.page-contact .submit-btn::after {
  transform: rotate(45deg);
}
.page-contact .submit-btn:hover {
  opacity: 0.8;
}
.page-contact .privacy__title {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 2.4rem;
}
.page-contact .privacy__description {
  margin-bottom: 4rem;
}
@media (width <= 800px) {
  .page-contact .checkbox-group {
    flex-direction: column;
    gap: 1.6rem;
  }
}

.privacy__title {
  font-size: 2.4rem;
  font-weight: 400;
  margin-bottom: 2.4rem;
}
.privacy__description {
  margin-bottom: 4rem;
}

/*-----------------------------------------------
header
-----------------------------------------------*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 9rem;
  font-size: var(--font-size-base);
  background: linear-gradient(rgba(0, 0, 0, 0.55) 0, rgba(255, 255, 255, 0) 80%);
  z-index: 100;
}
.header__logo {
  white-space: nowrap;
  color: #fff;
  font-size: 2.8rem;
  max-width: 100%;
  transition: 0.3s;
  position: relative;
  z-index: 1;
  text-align: center;
  line-height: 1.5;
  min-height: 7rem;
  align-items: center;
  justify-content: center;
}
.header__logo a {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header__logo-text-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 5rem;
}
.header__logo-text {
  display: block;
  min-height: 2.8rem;
}
.header__logo-text-sub {
  display: block;
  font-family: Montserrat, sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0;
  min-height: 2.2rem;
  font-size-adjust: 0.5;
}
.header__logo img {
  width: 8.4rem;
  height: 4.7rem;
}
.header__logo::before {
  z-index: -1;
  content: "";
  width: 49.3rem;
  height: 17.8rem;
  background-image: url(../img/common/header_left-bg.png);
  background-position: top left;
  background-repeat: no-repeat;
  background-size: contain;
  left: -2.7777777778vw;
  position: absolute;
  transition: background-image 0.3s;
}
.header__inner {
  width: 94.4444444444%;
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (width <= 800px) {
  .header__logo {
    margin-left: 0;
    font-size: 1.8rem;
    min-height: 5rem;
  }
  .header__logo::before {
    width: 30rem;
    height: 10rem;
  }
  .header__logo-text-wrapper {
    min-height: 3.5rem;
  }
  .header__logo-text {
    min-height: 1.8rem;
  }
  .header__logo-text-sub {
    font-size: 1.1rem;
    min-height: 1.3rem;
  }
  .header__logo img {
    width: 4rem;
    height: 2.2rem;
  }
  .header__inner {
    align-items: center;
  }
}

.nav__list {
  text-align: center;
  justify-content: flex-end;
  display: flex;
  align-items: center;
}
.nav.is-active {
  transition: opacity 0.4s ease;
  width: 70%;
  height: 100%;
  opacity: 1;
  pointer-events: all;
  position: fixed;
  top: 0;
  right: 0;
  color: #000000;
  background-color: var(--color-brand);
  text-align: center;
}
.nav__item {
  font-size: 1.4rem;
  transition: 0.3s;
  font-weight: 400;
  text-align: center;
  margin-left: 4rem;
}
.nav__item:first-child {
  margin-left: 0;
}
.nav__item a {
  color: #fff;
  display: block;
  width: 100%;
}
@media (hover: hover) {
  .nav__item a:hover, .nav__item a:focus {
    opacity: 0.8;
  }
}
.nav__item--contact {
  background: #ff461e;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 4rem;
}
.nav__item--contact a {
  font-size: 2rem;
  color: #fff;
  padding: 1.2rem 0;
  min-width: 24rem;
}
.nav__item--contact a::before {
  content: url(../img/common/i-email.svg);
  margin-right: 0.8rem;
  vertical-align: middle;
}
@media (hover: hover) {
  .nav__item--contact:hover, .nav__item--contact:focus {
    opacity: 0.8;
  }
  .nav__item--contact:hover a, .nav__item--contact:focus a {
    color: #fff;
  }
}
@media (width <= 800px) {
  .nav {
    max-width: 70%;
    height: 0;
    opacity: 0;
    pointer-events: none;
  }
  .nav__list {
    flex-direction: column;
    margin: 0 auto;
    padding: 0;
    position: absolute;
    width: 100%;
    max-width: 76.8rem;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .nav__item {
    margin: 0 0 2rem;
    border: none;
  }
}

.burger {
  --opacity: 1;
  --rotate: 0;
  --translate: 0.6rem;
  position: fixed;
  top: 2rem;
  right: 4.7rem;
  place-items: center;
  width: 6rem;
  aspect-ratio: 1;
  display: grid;
  right: 2rem;
}
.burger.is-active {
  --opacity: 0;
  --rotate: 135deg;
  --translate: 0;
  position: fixed;
}
.burger span {
  width: 50%;
  height: 3px;
  border-radius: 0.4rem;
  background-color: #fff;
  grid-area: 1/1/-1/-1;
  transition: opacity 0.4s ease, rotate 0.4s ease, translate 0.4s ease;
}
.burger span:nth-child(1) {
  opacity: var(--opacity);
}
.burger span:nth-child(2) {
  translate: 0 calc(var(--translate) * -1);
  rotate: var(--rotate);
}
.burger span:nth-child(3) {
  translate: 0 var(--translate);
  rotate: calc(var(--rotate) * -1);
}
.burger__text {
  font-size: 1.2rem;
  font-weight: 600;
  position: absolute;
  bottom: 0.4rem;
}
@media (width <= 800px) {
  .burger {
    top: 0;
  }
}
@media (width > 800px) {
  .burger {
    display: none;
  }
}

/*footer
-----------------------------------------------*/
.footer {
  position: relative;
  z-index: 1;
  background: var(--color-brand);
  color: #fff;
}
.footer__inner {
  padding: 5.6rem 0;
  font-weight: 700;
  max-width: var(--container-max-width);
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.footer__logo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 1.2rem;
}
.footer__logo img {
  width: 8.4rem;
  height: 4.7rem;
}
.footer__logo a {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.footer__logo-text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  align-items: center;
}
.footer__logo-text {
  font-size: 2.8rem;
}
.footer__logo-text-sub {
  font-size: 1.8rem;
}
.footer__address {
  font-size: 1.6rem;
  font-weight: 700;
  padding: 1rem 0;
  line-height: 1.5;
}
.footer__address-tel {
  display: flex;
  gap: 1.6rem;
}
.footer__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.footer__item {
  font-size: 1.6rem;
  margin-right: 3.2rem;
}
.footer__item:last-child {
  margin-right: 0;
}
.footer__copyright {
  font-size: 1.4rem;
  text-align: center;
  background: #fff;
  color: #00006e;
  padding: 2rem;
  letter-spacing: 0.04em;
  line-height: 1;
}
@media (width <= 800px) {
  .footer__inner {
    padding: 3.2rem 1.6rem;
    flex-direction: column;
    align-items: center;
  }
  .footer__logo {
    padding: 0;
    margin-inline: auto;
  }
  .footer__address {
    text-align: center;
  }
  .footer__list {
    justify-content: center;
  }
  .footer__item {
    border-right: none;
  }
  .footer__copyright {
    font-size: 1.2rem;
  }
}

/*-----------------------------------------------
top
-----------------------------------------------*/
.top-fv {
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.top-fv::after {
  background-image: url(../img/top/fv_bg.png);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: contain;
  bottom: 0;
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  width: 100%;
}
.top-fv__inner {
  position: relative;
}
.top-fv__img {
  position: relative;
  width: 100%;
  z-index: -1;
}
.top-fv__text-wrap {
  color: #fff;
  left: 0;
  padding-left: 13.5rem;
  padding-top: 17.4rem;
  position: absolute;
  top: 0;
  z-index: 1;
  isolation: auto;
}
.top-fv__title {
  display: flex;
  gap: 16px;
  flex-direction: column;
  line-height: 1;
  letter-spacing: 0.03em;
  margin-bottom: 4rem;
}
.top-fv__title .en {
  font-family: "Montserrat", sans-serif;
  font-size: 7.2rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.5);
}
.top-fv__title .ja {
  font-size: 2.8rem;
  font-weight: 700;
  text-shadow: 2px 4px 4px rgba(0, 0, 0, 0.8);
}
.top-fv__catch > div {
  font-size: 2.5rem;
  display: inline-block;
  background: rgba(49, 49, 49, 0.7);
  mix-blend-mode: multiply;
  margin-bottom: 1rem;
  padding: 0.5rem 1.2rem;
  position: relative;
  z-index: 1;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.5);
}
@media (width <= 800px) {
  .top-fv__text-wrap {
    padding-left: 3.6rem;
  }
  .top-fv__title .en {
    font-size: 18px;
  }
  .top-fv__catch > div {
    font-size: 12px;
  }
  .top-fv__img img {
    -o-object-fit: cover;
       object-fit: cover;
    height: 100vh;
  }
}

/*-----------------------------------------------
top-company
-----------------------------------------------*/
.top-company {
  padding: 8rem 4rem;
  position: relative;
}
.top-company__inner {
  max-width: 144rem;
  margin: 0 auto;
}
.top-company__content {
  position: relative;
  width: 100%;
}
.top-company__wrap {
  position: relative;
  z-index: 2;
  padding: 10rem 12rem;
  border-left: 1px solid #000;
}
.top-company__wrap::before {
  content: url(../img/top/logo_text.png);
  position: absolute;
  padding: 0.8rem;
  top: 0;
  left: 0;
  display: block;
  border-right: 1.3px solid #00186e;
  border-bottom: 1.3px solid #00186e;
}
.top-company__wrap::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 40%;
  height: 1px;
  background: #00186e;
}
.top-company__text {
  max-width: 39.6rem;
  font-size: 2.2rem;
  font-weight: 400;
  color: #000;
  line-height: 1.9;
  letter-spacing: 0;
}
.top-company__img {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  display: flex;
  gap: 2rem;
}
.top-company__img img {
  max-width: 38rem;
  width: 100%;
  height: auto;
  aspect-ratio: 0.6375838926;
}
.top-company__link {
  margin-top: 6rem;
}
@media (width <= 1340px) {
  .top-company__img {
    width: 50%;
  }
}
@media (width <= 1024px) {
  .top-company {
    padding-bottom: 4rem;
  }
  .top-company__wrap {
    padding: 6rem;
    margin-bottom: 3rem;
  }
  .top-company__img {
    position: static;
    width: 100%;
  }
  .top-company__img img {
    max-width: 47%;
  }
}
@media (width <= 800px) {
  .top-company {
    padding: 4rem 1.6rem;
  }
  .top-company__wrap {
    padding: 6rem;
  }
  .top-company__wrap::after {
    width: 80%;
  }
}

/*-----------------------------------------------
top-access
-----------------------------------------------*/
.top-access {
  padding: 8rem 0;
  position: relative;
  background: url(../img/top/access_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.top-access::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 56%;
  max-height: 67.3rem;
  background-image: url(../img/top/access_text.png);
  background-position: bottom right;
  background-repeat: no-repeat;
  background-size: contain;
}
.top-access__wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}
.top-access__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
  width: 100%;
  max-width: 112rem;
}
.top-access__texts {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  max-width: 112rem;
}
.top-access__text {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.75;
  text-align: center;
}
.top-access__text-title {
  font-size: 2.4rem;
  color: #00006e;
}
.top-access__address {
  margin-bottom: 1.6rem;
}
.top-access__address-tel {
  display: flex;
  justify-content: center;
  gap: 1.6rem;
}
.top-access__map {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  gap: 4rem;
  height: 28.7rem;
  width: 100%;
}
.top-access__map-images {
  display: flex;
  align-items: center;
  align-self: stretch;
  gap: 2.4rem;
  width: 100%;
}
.top-access__map-image {
  flex: 1;
  width: 100%;
  height: 100%;
  aspect-ratio: 548/287;
}
.top-access__map-image--photo {
  -o-object-fit: cover;
     object-fit: cover;
}
.top-access__map-image--map {
  border: 0;
}
.top-access__btn-wrap {
  margin-bottom: 4rem;
  text-align: center;
}
@media (width <= 800px) {
  .top-access__wrap {
    gap: 3.2rem;
  }
  .top-access__map {
    height: auto;
  }
  .top-access__map-images {
    flex-direction: column;
    gap: 1.6rem;
  }
  .top-access__map-image {
    width: 100%;
    height: auto;
  }
}

/*-----------------------------------------------
fv
-----------------------------------------------*/
.fv {
  position: relative;
  margin-bottom: 4rem;
}
.fv__title {
  position: absolute;
  top: 45.7777777778%;
  left: 11.1111111111%;
  color: #fff;
  font-weight: 700;
}
.fv__title .en,
.fv__title .ja {
  display: block;
}
.fv__title .en {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.fv__title .ja {
  font-size: 5.2rem;
  line-height: 1.2;
  letter-spacing: 0.08em;
}
@media (width <= 800px) {
  .fv__img-wrap img {
    aspect-ratio: 4/3;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .fv__title {
    top: 42%;
  }
  .fv__title .en {
    font-size: 2rem;
  }
  .fv__title .ja {
    font-size: 4.2rem;
  }
}

/*-----------------------------------------------
breadcrumb
-----------------------------------------------*/
.breadcrumb {
  color: #4c4c4c;
}
.breadcrumb__inner {
  display: flex;
  align-items: center;
  font-weight: 700;
}
.breadcrumb ol {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.breadcrumb li {
  line-height: 1.45;
  letter-spacing: 0.08em;
}
.breadcrumb li:not(:last-child)::after {
  text-decoration: none;
  content: ">";
  margin-left: 0.625rem;
  margin-right: 0.625rem;
}
.breadcrumb a {
  color: #4c4c4c;
  text-decoration: underline;
}
@media (hover: hover) {
  .breadcrumb a:hover, .breadcrumb a:focus {
    opacity: 0.8;
  }
}

/*-----------------------------------------------
page
-----------------------------------------------*/
.page__title {
  width: 100%;
  background: #00006e;
  color: #fff;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.45;
  margin-bottom: 3.2rem;
  position: relative;
  padding: 1.4rem 2.8rem 1.3rem;
}
.page__title::before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0.8rem;
  width: 0.6rem;
  height: 77.4%;
  content: "";
  background: #fff;
}
.page__sub-title {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 2;
  border-bottom: 1px solid #00006e;
  margin-bottom: 1.6rem;
  position: relative;
}
.page__sub-title::before {
  content: "";
  display: inline-block;
  vertical-align: bottom;
  width: 1.2rem;
  height: 3.6rem;
  background: linear-gradient(to bottom, #000000 0%, #000000 50%, #00006e 50%, #00006e 100%);
  margin-right: 1.2rem;
}
.page__sub-title--subtext {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.45;
  margin-left: 1.6rem;
}
@media (width <= 800px) {
  .page__sub-title {
    font-size: 1.8rem;
  }
}

/*-----------------------------------------------
news
-----------------------------------------------*/
.news-list__item {
  border-bottom: 1px solid #000;
  padding-bottom: 16px;
}
.news-list__item:not(:first-child) {
  padding-top: 16px;
}
.news-list__date {
  font-size: 1.6rem;
  font-weight: 400;
  color: #000;
  margin-bottom: 0.4rem;
}
.news-list__text {
  font-weight: 700;
}

/*-----------------------------------------------
access
-----------------------------------------------*/
.page-access__wrap {
  font-size: 1.6rem;
  color: #222;
  font-weight: 700;
  margin-bottom: 3.2rem;
}
.page-access__address {
  margin-bottom: 1.6rem;
}
.page-access__address-tel {
  display: flex;
  gap: 1.6rem;
}
.page-access__map {
  width: 100%;
}
.page-access__map-images {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  width: 100%;
}
.page-access__map-image {
  flex: 1;
  width: 100%;
  height: 28.7rem;
  aspect-ratio: 548/287;
}
.page-access__map-image--photo {
  -o-object-fit: cover;
     object-fit: cover;
}
@media (width <= 800px) {
  .page-access__map-images {
    flex-direction: column;
    gap: 1.6rem;
  }
  .page-access__map-image {
    height: auto;
  }
}

/*-----------------------------------------------
business
-----------------------------------------------*/
.page-business {
  margin-bottom: 8rem;
}
.page-business:last-child {
  margin-bottom: 0;
}
.page-business__flex {
  display: flex;
  gap: 3.2rem;
}
.page-business__equipment {
  margin-bottom: 3.2rem;
}
@media (width <= 800px) {
  .page-business__flex {
    flex-direction: column-reverse;
    align-items: center;
  }
}

/* Coating performance */
/*# sourceMappingURL=style.css.map */