@charset "UTF-8";
/*-----------------------------------------------
reset
-----------------------------------------------*/
/*! destyle.css?v=1.0.0 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;
}

/*-----------------------------------------------
variables
-----------------------------------------------*/
:root {
  --color-brand: #163934;
  --color-brand-sub: #ffffff;
  --color-text: #000;
  --color-text-sub: #666666;
  --color-nav: #222;
  --color-required: #FF0000;
  --font-family-base: BIZ UDPGothic, sans-serif;
  --font-family-title: BIZ UDPGothic, sans-serif;
  --font-size-base: 1.6rem;
  --font-size-section-title--ja: 24px;
  --font-size-section-title--en: 72px;
  --font-size-page-title: 2.4rem;
  --line-height-base: 1.6;
  --container-max-width: 77.7777777778%;
}

/*-----------------------------------------------
base
-----------------------------------------------*/
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

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

body.en {
  font-family: "BIZ UDPGothic", sans-serif !important;
}

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 < 600px) {
  a[href^="tel:"] {
    pointer-events: auto;
    cursor: pointer;
  }
}

.container {
  width: 77.7777777778%;
  margin-inline: auto;
}
.container__inner {
  padding: 80px 0;
}
@media (width < 600px) {
  .container {
    width: 94%;
  }
  .container__inner {
    padding: 40px 0;
  }
}

.section--white {
  color: var(--color-text-white);
}
.section--center {
  text-align: center;
}
.section__title {
  font-family: var(--font-family-title);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.section__title .ja,
.section__title .en {
  display: block;
}
.section__title .ja {
  font-size: var(--font-size-section-title--ja);
}
.section__title .ja--company {
  letter-spacing: 0.08em;
  line-height: 0;
}
.section__title .en {
  font-family: "Barlow Condensed", sans-serif;
  font-size: var(--font-size-section-title--en);
  text-transform: capitalize;
}
@media (width < 600px) {
  .section__title .ja {
    font-size: 2.4rem;
  }
  .section__title .en {
    font-size: 1.6rem;
  }
}
.section__subtitle {
  padding-left: 4px;
  color: #444;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  margin-bottom: 24px;
  border-left: 6px solid #444;
}

.mb-32 {
  margin-bottom: 32px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-80 {
  margin-bottom: 80px;
}

.lang {
  display: none;
}
.lang__wrapper {
  display: flex;
  align-items: center;
}
.lang__wrapper:before {
  content: "";
  display: block;
  width: 21px;
  height: 21px;
  background-image: url(../img/common/i-trans.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-right: 10px;
}
@media (width < 1025px) {
  .lang {
    font-weight: 700;
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 100px;
  }
}
@media (width < 600px) {
  .lang {
    right: 72px;
  }
}

/*-----------------------------------------------
buttons
-----------------------------------------------*/
.btn {
  display: inline-block;
  font-size: 2rem;
  color: #fff;
  width: 176px;
  font-weight: 400;
  background: var(--color-brand);
  padding: 13px 0;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  border: 2px solid #E6E6E6;
}
.btn--xs {
  width: 160px;
}
.btn--lg {
  width: 246px;
}
.btn::after {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background: url(../img/common/btn_arrow.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (hover: hover) {
  .btn:hover, .btn:focus {
    opacity: 0.8;
    color: #fff;
  }
}

/*-----------------------------------------------
cards
-----------------------------------------------*/
.card {
  background: var(--color-secondary);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.card__img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
.card__content {
  padding: var(--spacing-base);
}
.card__title {
  font-size: var(--font-size-h3);
  margin-bottom: var(--spacing-small);
}
.card__text {
  margin-bottom: var(--spacing-base);
}

/*-----------------------------------------------
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;
  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__inner:after {
  background-image: url(../img/top/news_bg.jpg);
  background-position: center bottom;
  background-size: cover;
  content: "";
  display: block;
  height: 100vh;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: -1;
}
.p-news__left {
  min-width: 232px;
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 40px;
  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;
  }
}
.p-news__btn-wrap {
  max-width: 232px;
  width: 100%;
}
@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;
}

/*-----------------------------------------------
map
-----------------------------------------------*/
.subpage_access_02__text {
  margin-bottom: 24px;
}
.subpage_access_02__inner {
  display: flex;
}
.subpage_access_02__tel {
  font-size: 1.8rem;
  display: flex;
  gap: 16px;
}
.subpage_access_02__map {
  width: 100%;
  height: 0;
  position: relative;
  padding-top: 28.5714285714%;
}
.subpage_access_02__map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.subpage_access_02__img {
  width: 100%;
  height: 0;
  position: relative;
}
.subpage_access_02__img img {
  position: absolute;
  top: 0;
  left: 0;
}

/*subpage_access_03
-----------------------------------------------*/
.subpage_access_03__inner {
  margin-bottom: 32px;
}
.subpage_access_03__title {
  font-size: 20px;
}
.subpage_access_03__text {
  text-align: center;
  margin-bottom: 24px;
}
.subpage_access_03__text--start {
  text-align: start;
}
.subpage_access_03__address {
  font-size: 18px;
}
.subpage_access_03__tel {
  font-size: 16px;
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
}
.subpage_access_03__tel--start {
  justify-content: start;
}
.subpage_access_03__tel a {
  text-decoration: none;
  color: #222;
}
@media (width < 600px) {
  .subpage_access_03__tel {
    font-size: 1.4rem;
    flex-direction: column;
  }
}
.subpage_access_03__map {
  width: 100%;
  height: 0;
  position: relative;
  padding-top: 28.5714285714%;
  /* 比率を1120:320に固定 */
}
.subpage_access_03__map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.subpage_access_03__btn-wrap {
  display: inline-block;
}
@media (max-width: 768px) {
  .subpage_access_03__map {
    padding-top: 57.1428571429%;
  }
}

/*-----------------------------------------------
form
-----------------------------------------------*/
.page-contact {
  background: #fafafa;
  margin-bottom: 80px;
}
.page-contact__wrap {
  margin-bottom: 40px;
}
.page-contact__form {
  margin-bottom: 48px;
  background: var(--bg);
  padding: 64px 110px;
  border-radius: 16px;
}
.page-contact .red {
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.08em;
  color: var(--color-required);
}
.page-contact .row {
  margin-bottom: 40px;
}
.page-contact .text {
  font-size: 2rem;
  font-weight: 400;
  color: #000;
  letter-spacing: 0.02em;
}
.page-contact .checkbox-group {
  margin: 10px 0 20px;
  color: #222;
}
.page-contact .checkbox-group input[type=checkbox] {
  width: 16px;
  height: 16px;
  margin-right: 16px;
  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: 16px 24px;
  border: 2px solid #e5e5e5;
  background: #fff;
  margin-top: 8px;
}
.page-contact ::-moz-placeholder {
  color: #999999;
}
.page-contact ::placeholder {
  color: #999999;
}
.page-contact .checkbox {
  margin-top: 64px;
  margin-bottom: 44px;
}
.page-contact .checkbox label {
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-contact .checkbox input[type=checkbox] {
  width: 16px;
  height: 16px;
  background: #fff;
  border: 1px solid #222;
  margin-right: 14px;
  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;
  text-decoration: underline;
  text-underline-offset: 20%;
}
.page-contact .submit-btn {
  background: var(--color-brand);
  color: #fff;
  text-align: center;
  font-size: 2rem;
  line-height: 1.5;
  letter-spacing: 0;
  max-width: 360px;
  width: 100%;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0 auto;
  transition: 0.3s;
  cursor: pointer;
}
.page-contact .submit-btn::after {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background: url(../img/common/btn_arrow.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.page-contact .submit-btn:hover {
  opacity: 0.8;
}
.page-contact .privacy__title {
  font-size: 2.4rem;
  font-weight: 400;
  margin-bottom: 24px;
}
.page-contact .privacy__description {
  margin-bottom: 40px;
}
@media (width < 600px) {
  .page-contact .checkbox-group {
    flex-direction: column;
    gap: 16px;
  }
}

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

/*table_01
-----------------------------------------------*/
.table_01 {
  width: 100%;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.75;
}
.table_01 tr {
  border-bottom: 1px solid #959595;
}
.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 #959595;
  }
  .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;
  }
}
.table_01 .dl_01__item {
  display: flex;
  gap: 20px;
}
.table_01 .dl_01__item dt {
  font-weight: 400;
  min-width: 108px;
}
.table_01 .dl_01__item dd {
  flex: 1;
}
@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 {
  width: 100%;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.75;
}
.table_02 th,
.table_02 td {
  padding: 24px 0;
}
.table_02 th {
  min-width: 150px;
  max-width: 150px;
  border-bottom: 1px solid rgba(237, 36, 70, 0.5);
}
.table_02 th .date-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  width: 100%;
  min-height: 48px;
}
.table_02 th .year {
  flex: 0 0 auto;
  font-weight: 400;
  text-align: left;
  margin-right: 16px;
}
.table_02 th .month {
  flex: 0 0 auto;
  font-weight: 400;
  text-align: right;
  white-space: nowrap;
}
.table_02 th .month-list {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}
.table_02 td {
  padding-left: 32px;
  border-bottom: 1px solid #959595;
}
.table_02 td .content-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.table_02 td .content-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.table_02 td .content-month {
  font-weight: 600;
  min-width: 40px;
  flex-shrink: 0;
  font-size: 14px;
}
.table_02 td .content-text {
  flex: 1;
  line-height: 1.6;
}
.table_02 td .content-month {
  display: none;
}
@media (max-width: 768px) {
  .table_02 {
    font-size: 16px;
  }
  .table_02 tbody {
    display: block;
    width: 100%;
  }
  .table_02 tr {
    display: flex;
    border-bottom: 1px solid #959595;
  }
  .table_02 th,
.table_02 td {
    padding: 12px 8px;
  }
  .table_02 th {
    width: 35%;
    min-width: 120px;
    max-width: none;
    padding-right: 16px;
  }
  .table_02 th .date-wrapper {
    min-height: auto;
  }
  .table_02 th .year {
    margin-right: 8px;
    font-size: 14px;
  }
  .table_02 th .month {
    font-size: 13px;
  }
  .table_02 th .month-list {
    gap: 1px;
  }
  .table_02 td {
    width: 65%;
    padding-left: 0;
  }
  .table_02 td .content-list {
    gap: 8px;
  }
  .table_02 td .content-item {
    gap: 8px;
  }
  .table_02 td .content-month {
    min-width: 35px;
    font-size: 13px;
  }
  .table_02 td .content-text {
    font-size: 14px;
  }
  .table_02 td .content-month {
    display: block;
  }
}
@media (max-width: 640px) {
  .table_02 {
    font-size: 14px;
  }
  .table_02 th {
    min-width: 100px;
    max-width: none;
    padding-right: 8px;
  }
  .table_02 th .date-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    min-height: auto;
  }
  .table_02 th .year {
    font-weight: 600;
    font-size: 14px;
    text-align: left;
    margin-right: 0;
  }
  .table_02 th .month {
    font-size: 12px;
    color: #666;
    text-align: left;
    white-space: normal;
    line-height: 1.3;
  }
  .table_02 th .month-list {
    flex-direction: row;
    align-items: flex-start;
    gap: 4px;
    flex-wrap: wrap;
  }
  .table_02 th .month-list .month:not(:last-child)::after {
    content: "・";
    margin-left: 2px;
    color: #999;
  }
  .table_02 th .month,
.table_02 th .month-list {
    display: none;
  }
  .table_02 td .content-list {
    gap: 12px;
  }
  .table_02 td .content-item {
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
  }
  .table_02 td .content-month {
    font-weight: 700;
    font-size: 12px;
    min-width: auto;
  }
  .table_02 td .content-text {
    font-size: 13px;
    line-height: 1.5;
  }
  .table_02 td .content-month {
    display: block;
  }
}

@media (max-width: 640px) {
  .en .table_02 th {
    display: none;
  }
}
/*-----------------------------------------------
header
-----------------------------------------------*/
.header {
  display: flex;
  border-top: 4px solid #BDC3C9;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 113px;
  font-size: var(--font-size-base);
  z-index: 100;
  background: rgba(243, 246, 250, 0.5);
}
.header__logo {
  margin-left: 5px;
  width: 250px;
  min-width: 250px;
  max-width: 250px;
  transition: 0.3s;
}
.header__inner {
  width: 91.6666666667%;
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (width < 1280px) {
  .header__logo {
    margin-left: 0;
  }
}
@media (width < 600px) {
  .header {
    height: 66px;
  }
  .header__logo {
    margin-left: 0;
    width: 200px;
    min-width: 200px;
    max-width: 200px;
  }
  .header__inner {
    align-items: center;
  }
}

.nav {
  width: 75vw;
}
.nav__list {
  text-align: center;
  justify-content: flex-end;
  display: flex;
  align-items: center;
}
.nav.is-active {
  z-index: 1;
  transition: opacity 0.4s ease;
  width: 70%;
  height: 100%;
  opacity: 1;
  pointer-events: all;
  position: fixed;
  top: 0;
  right: 0;
  color: #000000;
  background: rgba(255, 255, 255, 0.86);
  text-align: center;
}
.nav__item {
  transition: 0.3s;
  font-weight: 700;
  text-align: center;
  color: var(--color-nav);
  margin-left: 3%;
}
.nav__item:first-child {
  padding-left: 0;
  margin-left: 0;
}
.nav__item > a {
  color: var(--color-nav);
  display: block;
  width: 100%;
  padding: 7px 9.5px;
}
@media (hover: hover) {
  .nav__item > a:hover, .nav__item > a:focus {
    color: var(--color-brand);
  }
}
.nav__item--contact {
  background: var(--color-brand);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 33px;
}
.nav__item--contact a {
  font-size: 18px;
  color: #fff;
  padding: 12px 0;
  width: 240px;
}
.nav__item--contact a::before {
  content: url(../img/common/i-email.svg);
  width: 24px;
  height: 17px;
  margin-right: 8px;
  margin-top: 1px;
  display: inline-block;
  vertical-align: top;
}
@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 < 1280px) {
  .nav__item {
    margin-left: 0;
  }
  .nav__item--contact {
    margin-left: 3%;
  }
}
@media (width < 1025px) {
  .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: 768px;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .nav__item {
    margin: 0 0 20px;
    border: none;
  }
  .nav__item--lang {
    display: none;
  }
}

.burger {
  --opacity: 1;
  --rotate: 0;
  --translate: .6rem;
  position: fixed;
  right: 47px;
  place-items: center;
  width: 60px;
  aspect-ratio: 1;
  display: none;
  z-index: 1;
}
.burger.is-active {
  --opacity: 0;
  --rotate: 135deg;
  --translate: 0;
  position: fixed;
}
.burger span {
  width: 50%;
  height: 3px;
  border-radius: 4px;
  background-color: var(--color-text);
  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: 4px;
}
@media (width < 1025px) {
  .burger {
    display: grid;
    right: 20px;
  }
}
@media (width < 600px) {
  .burger {
    right: 4px;
  }
}

/*footer
-----------------------------------------------*/
.footer {
  position: relative;
  z-index: 1;
  background: #FFFFFF;
}
.footer__inner {
  padding: 32px 0 22px;
  color: #000;
  max-width: var(--container-max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__logo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-width: 250px;
  margin-bottom: 12px;
}
.footer__address {
  font-size: 1.6rem;
  padding: 10px 0px;
  line-height: 1.5;
}
.footer__list {
  display: flex;
  flex-wrap: wrap;
}
.footer__item {
  font-size: 1.6rem;
  padding: 11px 12px;
  margin: 0 4px;
  border-right: 1px solid rgba(0, 0, 0, 0.6);
}
.footer__item:last-child {
  border-right: none;
}
.footer__contact > div {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer__contact dt {
  font-weight: 400;
  min-width: 50px;
  display: flex;
  justify-content: space-between;
}
.footer__contact dt:after {
  content: ":";
}
.footer__copyright {
  font-size: 1.4rem;
  text-align: center;
  background: #BDC3C9;
  color: #fff;
  padding: 20px;
  letter-spacing: 0.04em;
  line-height: 1;
}
@media (width < 1025px) {
  .footer__inner {
    flex-direction: column;
  }
  .footer__logo {
    padding: 0;
    margin-inline: auto;
  }
  .footer__address {
    text-align: center;
  }
}
@media (width < 600px) {
  .footer__logo {
    font-size: 20px;
    min-width: 270px;
  }
  .footer__item {
    border-right: none;
  }
  .footer__copyright {
    font-size: 1.2rem;
  }
}

/*-----------------------------------------------
top-fv
-----------------------------------------------*/
.top {
  overflow-x: hidden;
}

.top-fv {
  position: relative;
  background-image: url(../img/top/fv_bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}
.top-fv__inner {
  padding-top: 80px;
}
.top-fv__img {
  max-width: 1920px;
  margin-inline: auto;
  position: relative;
  width: 90%;
  margin-inline: auto;
  z-index: 1;
  margin-bottom: 60px;
}
.top-fv__img::before {
  max-width: 1920px;
  margin-inline: auto;
  content: "";
  display: block;
  width: 96vw;
  height: 100%;
  background: url(../img/top/fv_img.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-3deg);
  z-index: -1;
}
.top-fv__text {
  z-index: 10;
  position: absolute;
  color: #fff;
  font-size: 155px;
  font-weight: 700;
  font-family: "Barlow Condensed";
  line-height: 0.8;
  text-shadow: 6px 6px 6px rgba(0, 0, 0, 0.25);
  letter-spacing: 0;
}
.top-fv__text--1 {
  display: flex;
  gap: 19px;
  align-items: flex-end;
  bottom: 25.8208955224%;
  left: 4.0972222222%;
}
.top-fv__text--2 {
  bottom: 5.0746268657%;
  right: 3.8888888889%;
}
.top-fv__text-wrap {
  font-size: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.top-fv__text-wrap-item {
  text-align: center;
  width: 240px;
  padding: 4px;
  background: rgba(0, 0, 0, 0.8);
}
.top-fv__text-wrap-item--1 {
  width: 224px;
}
.top-fv__text-wrap-item--2 {
  width: 240px;
}
.top-fv::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #000;
}
@media (width < 1280px) {
  .top-fv__text {
    font-size: 100px;
  }
}
@media (width < 1025px) {
  .top-fv__text {
    font-size: 80px;
  }
  .top-fv__text-wrap {
    font-size: 10px;
  }
  .top-fv__text-wrap-item--1 {
    width: 180px;
  }
  .top-fv__text-wrap-item--2 {
    width: 180px;
  }
}
@media (width < 600px) {
  .top-fv__text {
    font-size: 30px;
  }
}

.logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.0833333333%;
  padding: 0 3.4722222222% 40px;
}
@media (width < 600px) {
  .logo-wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-row-gap: 1em;
    grid-column-gap: 2em;
  }
}

/*-----------------------------------------------
p-business
-----------------------------------------------*/
.p-business {
  padding-top: 80px;
  padding-bottom: 148px;
  background-image: url(../img/top/business_bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  width: 100vw;
}
.p-business::before {
  background-image: url(../img/top/business_text.png);
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  max-width: 572px;
  width: 100%;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
}
.p-business__inner {
  display: flex;
  gap: 32px;
}
.p-business__wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 8px 16px;
  border-left: 1px solid #000;
}
.p-business__container {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.p-business__right {
  width: 225px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (width < 1025px) {
  .p-business__container {
    flex-direction: column;
    gap: 32px;
  }
}
@media (width < 600px) {
  .p-business {
    background-position: 37% 75%;
  }
  .p-business__inner {
    flex-direction: column;
  }
  .p-business__left, .p-business__right {
    width: 100%;
  }
  .p-business__wrap {
    border-left: none;
    border-top: 1px solid #000;
  }
}

/*-----------------------------------------------
p-company
-----------------------------------------------*/
.p-company {
  position: relative;
  padding: 80px 0 60px;
}
.p-company::before {
  content: "";
  display: block;
  max-width: 790px;
  width: 100%;
  height: 100%;
  background: url(../img/top/about.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
.p-company__title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(32px, 7.6388888889vw, 110px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
}
.p-company__left {
  padding: 80px 0;
  max-width: 650px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.p-company__btn-wrap {
  display: flex;
  gap: 20px;
}
@media (width < 1025px) {
  .p-company:before {
    width: 50%;
    height: 50%;
  }
}

.p-access {
  position: relative;
  padding: 80px 0;
  border: 10px solid #000;
  text-align: center;
}

/*-----------------------------------------------
TOP-CONTACT
-----------------------------------------------*/
.contact {
  background-image: url(../img/top/contact_bg.png);
  background-size: cover;
}
.contact__inner {
  padding-top: 100px;
  padding-bottom: 134px;
  max-width: 1120px;
  margin: 0 auto;
}
.contact__inner .contact-head {
  font-family: "Barlow Condensed", sans-serif;
  color: #000;
  text-align: center;
  font-weight: 400;
  font-size: 112px;
  margin-bottom: 35px;
}
.contact__inner .contact-content {
  display: flex;
  justify-content: space-between;
}
.contact__inner .contact-content .contact-left {
  max-width: 550px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact__inner .contact-content .contact-left .tel {
  margin-bottom: 7px;
}
.contact__inner .contact-content .contact-left .tel .tel-logo {
  margin-bottom: 7px;
  display: flex;
  justify-content: center;
}
.contact__inner .contact-content .contact-left .tel .tel-text {
  color: #000;
  font-size: 48px;
  font-style: normal;
  line-height: normal;
  letter-spacing: 3.84px;
}
.contact__inner .contact-content .contact-left .fax {
  color: #000;
  font-size: 20px;
  font-style: normal;
  line-height: normal;
  letter-spacing: 1.6px;
}
.contact__inner .contact-content .bar {
  width: 2px;
  background-color: #000;
}
.contact__inner .contact-content .contact-right {
  max-width: 550px;
  width: 100%;
  display: flex;
  justify-content: center;
}
.contact__inner .contact-content .contact-right .email .email-logo {
  margin-bottom: 25px;
  display: flex;
  justify-content: center;
}
.contact__inner .contact-content .contact-right .email .email-text {
  color: #000;
  text-align: center;
  font-size: 24px;
  font-style: normal;
  line-height: 175%;
  /* 42px */
}
@media (width < 1025px) {
  .contact__inner {
    padding-top: 50px;
    padding-bottom: 70px;
  }
  .contact__inner .contact-head {
    color: #000;
    text-align: center;
    font-size: 50px;
    font-style: normal;
    font-weight: 400;
    margin-bottom: 16px;
  }
  .contact__inner .contact-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .contact__inner .contact-content .contact-left {
    max-width: 550px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-bottom: 1px solid #000;
    padding-bottom: 20px;
  }
  .contact__inner .contact-content .contact-left .tel {
    margin-bottom: 7px;
  }
  .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: 40px;
  }
  .contact__inner .contact-content .contact-left .tel .tel-text {
    color: #000;
    font-size: 24px;
    font-style: normal;
    line-height: normal;
    letter-spacing: 3.84px;
  }
  .contact__inner .contact-content .contact-left .fax {
    color: #000;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 1.6px;
  }
  .contact__inner .contact-content .bar {
    width: 2px;
    background-color: #000;
  }
  .contact__inner .contact-content .contact-right {
    max-width: 550px;
    width: 100%;
    display: flex;
    justify-content: center;
    padding-top: 20px;
  }
  .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: 40px;
  }
  .contact__inner .contact-content .contact-right .email .email-text {
    color: #000;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 175%;
    /* 42px */
  }
}

/*-----------------------------------------------
fv
-----------------------------------------------*/
.fv {
  position: relative;
  margin-bottom: 40px;
}
.fv__title {
  position: absolute;
  top: 47.5%;
  left: 11.1111111111%;
  color: #fff;
  font-weight: 700;
}
.fv__title .en,
.fv__title .ja {
  display: block;
}
.fv__title .en {
  text-transform: capitalize;
  font-family: "Barlow Condensed";
  font-style: normal;
  font-weight: 700;
  font-size: 72px;
  line-height: 100%;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.25);
}
.fv__title .ja {
  font-size: 24px;
  letter-spacing: 0.04em;
}
@media (width < 600px) {
  .fv img {
    aspect-ratio: 2/1;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .fv__title {
    top: 50%;
  }
  .fv__title .en {
    font-size: 24px;
  }
  .fv__title .ja {
    font-size: 16px;
  }
}

/*-----------------------------------------------
breadcrumb
-----------------------------------------------*/
.breadcrumb {
  font-family: "Barlow Condensed";
  font-weight: 400;
  font-size: 16px;
  line-height: 175%;
  color: #4C4C4C;
}
.breadcrumb__inner {
  display: flex;
  align-items: center;
}
.breadcrumb p:first-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 {
  font-family: var(--font-family-title);
  font-weight: 700;
  background: #EDEDED;
  color: #000;
  font-size: 2.8rem;
  letter-spacing: 0.12em;
  line-height: 1;
  padding: 11px 0 15px 11px;
  margin-bottom: 32px;
  border-left: 11px solid #FD452D;
}
.page__sub-title {
  font-size: 2.2rem;
  font-weight: 700;
}
.page__textbox {
  font-size: 1.8rem;
}

/*-----------------------------------------------
page-company
-----------------------------------------------*/
.page-company__flex {
  padding: 32px 57px;
  background: #E7F0F5;
}
.page-company__textbox {
  max-width: 620px;
  margin: 0;
}
@media (width < 1280px) {
  .page-company__flex {
    padding: 32px 24px;
  }
}
@media (width < 1025px) {
  .page-company__flex {
    flex-direction: column;
  }
  .page-company__flex .page__img {
    order: -1;
  }
}

.president {
  font-size: 1.8rem;
  font-weight: 400;
  color: #000;
  margin-top: 16px;
}

.president__name {
  font-size: 2.4rem;
  letter-spacing: 0.08em;
  line-height: 1.6;
  color: #222;
  font-family: "Yuji Syuku";
  font-weight: 400;
}
.president__name--en {
  font-family: "BIZ UDPGothic", sans-serif;
}

.page-company-concept {
  font-size: 2.2rem;
  font-weight: 700;
}

/*-----------------------------------------------
business
-----------------------------------------------*/
.page-business {
  background: #FAFAFA;
}
.page-business__section {
  padding-bottom: 32px;
  margin-bottom: 32px;
  border-bottom: 1px solid #C5C5C5;
}
.page-business__wrap {
  display: flex;
  justify-content: center;
  gap: 42px;
}
.page-business__left {
  width: 38.75%;
}
.page-business__list {
  width: 57.5%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
@media (width < 600px) {
  .page-business__wrap {
    flex-direction: column;
  }
  .page-business__left {
    width: 100%;
  }
  .page-business__list {
    width: 100%;
  }
}

.product__list {
  max-width: 1120px;
  width: 100%;
  text-align: center;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 69.5px;
  margin-inline: auto;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.12em;
  line-height: 1;
}
.product__item {
  max-width: 327px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (width < 1025px) {
  .product__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}
@media (width < 600px) {
  .product {
    font-size: 14px;
  }
  .product__list {
    grid-template-columns: repeat(1, 1fr);
  }
  .product__item {
    max-width: 100%;
  }
}

/*-----------------------------------------------
translate
-----------------------------------------------*/
.translate {
  margin-top: 24px;
}
.translate__inner {
  display: flex;
  gap: 10px;
}
.translate p {
  padding: 4px 12px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  background: #323232;
}
.translate p:has(a) {
  background: #fff;
  color: #222222;
  padding: 0;
}
.translate p:has(a) a {
  display: block;
  width: 100%;
  height: 100%;
  border: 1px solid #000;
  padding: 4px 12px;
}
@media (hover: hover) {
  .translate p:has(a) a:hover, .translate p:has(a) a:focus {
    background: #323232;
    color: #fff;
  }
}

/*-----------------------------------------------
news
-----------------------------------------------*/
.news-list__item {
  border-bottom: 1px solid #AAA;
  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: 4px;
}
/*# sourceMappingURL=style.css.map */