@charset "UTF-8";
/*-----------------------------------------------
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;
}

/*-----------------------------------------------
variables
-----------------------------------------------*/
:root {
  --color-brand: #005D89;
  --color-brand-sub: #ffffff;
  --color-text: #000;
  --color-text-sub: #666666;
  --color-nav: #000000;
  --color-footer: #fff;
  --color-required: #FF0000;
  --font-family-base: Noto Sans JP, sans-serif;
  --font-family-title: Noto Sans JP, sans-serif;
  --font-size-base: 1.6rem;
  --font-size-section-title--ja: 4rem;
  --font-size-section-title--en: 2rem;
  --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);
  overflow-x: hidden;
  /* 横スクロール防止 */
}

.top {
  background-image: url(../img/top/bg.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.bg-white {
  background-color: #fff;
}

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

a {
  transition: all 0.3s ease;
}
@media (hover: hover) {
  a:hover, a:focus {
    opacity: 0.8;
  }
}

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

.container {
  width: 77.7777777778%;
  margin-inline: auto;
}
.container__inner {
  padding: 80px 0;
}
@media (width < 768px) {
  .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.75;
  letter-spacing: 0.1em;
  color: var(--color-brand);
}
.section__title .ja,
.section__title .en {
  display: block;
}
.section__title .ja {
  font-size: var(--font-size-section-title--ja);
}
.section__title .en {
  font-size: var(--font-size-section-title--en);
  text-transform: capitalize;
}
@media (width < 768px) {
  .section__title .ja {
    font-size: 2.4rem;
  }
  .section__title .en {
    font-size: 1.6rem;
  }
}

.line-height-1 {
  line-height: 1;
}

.line-height-2 {
  line-height: 2;
}

.sp-none {
  display: none;
}
@media (width < 768px) {
  .sp-none {
    display: block;
  }
}

@media (width < 1025px) {
  .pc-none {
    display: none;
  }
}

.mb-120 {
  margin-bottom: 120px;
}
@media (width < 768px) {
  .mb-120 {
    margin-bottom: 60px;
  }
}

.mb-100 {
  margin-bottom: 100px;
}
@media (width < 768px) {
  .mb-100 {
    margin-bottom: 50px;
  }
}

.mb-90 {
  margin-bottom: 90px;
}
@media (width < 768px) {
  .mb-90 {
    margin-bottom: 45px;
  }
}

.mb-80 {
  margin-bottom: 80px;
}
@media (width < 768px) {
  .mb-80 {
    margin-bottom: 40px;
  }
}

.mb-60 {
  margin-bottom: 60px;
}
@media (width < 768px) {
  .mb-60 {
    margin-bottom: 30px;
  }
}

.mb-40 {
  margin-bottom: 40px;
}
@media (width < 768px) {
  .mb-40 {
    margin-bottom: 20px;
  }
}

.mb-32 {
  margin-bottom: 32px;
}
@media (width < 768px) {
  .mb-32 {
    margin-bottom: 16px;
  }
}

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

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

.center {
  text-align: center;
}

.dl-list {
  line-height: 1.75;
}
.dl-list__item {
  display: flex;
  align-items: center;
}
.dl-list__item dt {
  color: #005D89;
}

/*-----------------------------------------------
swiper
-----------------------------------------------*/
.top-swiper {
  position: relative;
}
@media (width < 768px) {
  .top-swiper .swiper-slide img {
    height: 70vh;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.swiper-catch {
  font-size: 40.28px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.1em;
  color: #fff;
  position: absolute;
  top: 348px;
  left: min(80px, 5.5vw);
  filter: drop-shadow(0px 4.24px 10.6px rgba(0, 0, 0, 0.6));
  z-index: 10;
  max-width: 90%;
}
@media (width < 1025px) {
  .swiper-catch {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 94%;
    text-align: center;
  }
}
@media (width < 768px) {
  .swiper-catch {
    font-size: 32px;
  }
}
@media (width < 580px) {
  .swiper-catch {
    font-size: 24px;
    width: 90%;
  }
}

/*-----------------------------------------------
buttons
-----------------------------------------------*/
.btn {
  display: inline-block;
  font-size: 1.8rem;
  color: #fff;
  width: 240px;
  font-weight: 700;
  background: var(--color-brand);
  padding: 12px 0;
  text-align: center;
}
@media (hover: hover) {
  .btn:hover, .btn:focus {
    opacity: 0.8;
    color: #fff;
  }
}
@media (width < 768px) {
  .btn {
    width: 220px;
    font-size: 1.6rem;
  }
}
@media (width < 580px) {
  .btn {
    width: 200px;
  }
}

.top-btn {
  position: relative;
  display: block;
  width: 200px;
  border: 1px solid #fff;
  padding: 9.5px;
  padding-left: 38px;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  background: linear-gradient(90deg, #33C5E8 0%, #019CC8 100%);
}
.top-btn:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 13.5px;
  transform: translateY(-50%);
  display: block;
  width: 24px;
  height: 24px;
  background: url(../img/common/arrow-right.svg) no-repeat center center/contain;
}
@media (width < 768px) {
  .top-btn {
    width: 180px;
    font-size: 1.8rem;
  }
}
@media (width < 580px) {
  .top-btn {
    width: 160px;
    font-size: 1.6rem;
    padding-left: 30px;
  }
}

.contact_btn {
  display: inline-block;
  font-size: 2.4rem;
  width: 468px;
  color: #fff;
  background: var(--color-btn-form);
  padding: 22px 0;
  text-align: center;
}
@media (hover: hover) {
  .contact_btn:hover, .contact_btn:focus {
    opacity: 0.8;
    color: #fff;
  }
}
@media (width < 768px) {
  .contact_btn {
    width: 300px;
    font-size: 2rem;
    padding: 18px 0;
  }
}
@media (width < 580px) {
  .contact_btn {
    width: 240px;
    font-size: 1.8rem;
    padding: 15px 0;
  }
}

/*-----------------------------------------------
cards
-----------------------------------------------*/
.card {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 40px;
       column-gap: 40px;
}
.card__item {
  aspect-ratio: 570/360;
  position: relative;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.card__item:nth-child(2) {
  margin-top: 70px;
}
.card__item:nth-child(3) {
  margin-top: -30px;
}
.card__item:nth-child(4) {
  margin-top: 40px;
}
.card__content {
  position: absolute;
  bottom: 24px;
  left: 40px;
}
.card__title {
  font-family: "Montserrat";
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.75;
}
.card__title .en,
.card__title .ja {
  display: block;
}
.card__title .en {
  text-transform: capitalize;
  font-size: 64px;
}
.card__title .ja {
  font-size: 24px;
}
@media (width < 1025px) {
  .card {
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
  .card__title .en {
    font-size: 48px;
  }
  .card__title .ja {
    font-size: 20px;
  }
}
@media (width < 768px) {
  .card {
    grid-template-columns: 1fr;
    row-gap: 30px;
  }
  .card__item {
    margin-top: 0 !important;
  }
  .card__item:nth-child(2), .card__item:nth-child(3), .card__item:nth-child(4) {
    margin-top: 0;
  }
  .card__content {
    bottom: 16px;
    left: 20px;
  }
  .card__title .en {
    font-size: 40px;
  }
  .card__title .ja {
    font-size: 18px;
  }
}
@media (width < 580px) {
  .card {
    row-gap: 20px;
  }
  .card__content {
    bottom: 12px;
    left: 15px;
  }
  .card__title .en {
    font-size: 32px;
  }
  .card__title .ja {
    font-size: 16px;
  }
}

/*table_01
-----------------------------------------------*/
.table_01 {
  width: 100%;
  font-size: 1.8rem;
}
.table_01 tr {
  border-bottom: 1px solid #000;
}
.table_01 th,
.table_01 td {
  padding: 16px 0 12px;
}
.table_01 th {
  color: #0C476A;
  font-weight: 400;
  width: 300px;
}
.table_01__address:first-child {
  margin-bottom: 40px;
}
@media (max-width: 960px) {
  .table_01 {
    font-size: 16px;
  }
  .table_01 th,
.table_01 td {
    padding: 12px 8px;
  }
  .table_01 th {
    width: 120px;
  }
}
@media (max-width: 600px) {
  .table_01 {
    font-size: 1.4rem;
  }
}

/*company_table
-----------------------------------------------*/
.company_table {
  max-width: 1120px;
  text-align: left;
  vertical-align: top;
  overflow: hidden;
}
.company_table__header {
  width: 155px;
  height: 120px;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.75;
  position: relative;
  text-align: left;
  vertical-align: middle;
  padding: 0 45px 0 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.company_table__header span {
  font-size: 1.2rem;
  display: inline-block;
  margin-left: 0.5em;
  line-height: 1.4;
}
.company_table__header::before {
  content: "";
  display: block;
  width: 0.5px;
  background: var(--color-brand);
  height: 100%;
  position: absolute;
  top: 0;
  right: 31px;
  z-index: 1;
}
.company_table__header::after {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  background: linear-gradient(90deg, #78BBFA 0%, #3892F3 100%);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  z-index: 2;
}
tr:first-child .company_table__header::before {
  top: 50%;
}
tr:last-child .company_table__header::before {
  height: 50%;
}
.company_table__cell {
  font-size: 1.8rem;
  font-weight: 700;
  padding: 46px 0;
}
.company_table__definition {
  margin-bottom: 10px;
}
.company_table__definition-term {
  width: 46px;
  padding: 0;
  display: table-cell;
}
.company_table__definition-description {
  width: 543px;
  padding-left: 6px;
  display: table-cell;
  border-left: 1px solid #DDD;
  line-height: 1.4;
}
.company_table__list {
  list-style: none;
}
.company_table__list-item {
  position: relative;
  margin-bottom: 20px;
}
.company_table__list-item::before {
  content: "";
  position: absolute;
  padding-right: 4px;
  left: 0;
}
@media (max-width: 960px) {
  .company_table__header {
    width: 120px;
    height: 100px;
    font-size: 1.6rem;
    padding: 0 35px 0 0;
  }
  .company_table__header span {
    font-size: 1.1rem;
    margin-left: 0;
    display: block;
    margin-top: 2px;
  }
  .company_table__header::before {
    right: 25px;
  }
  .company_table__header::after {
    width: 12px;
    height: 12px;
    right: 19px;
  }
  .company_table__cell {
    font-size: 1.6rem;
    padding: 35px 0;
  }
  .company_table__definition-term {
    width: 40px;
  }
  .company_table__definition-description {
    width: auto;
    padding-left: 4px;
  }
}
@media (max-width: 600px) {
  .company_table__header {
    width: 90px;
    height: 80px;
    font-size: 1.4rem;
    padding: 0 25px 0 0;
  }
  .company_table__header span {
    font-size: 1rem;
  }
  .company_table__header::before {
    right: 18px;
  }
  .company_table__header::after {
    width: 10px;
    height: 10px;
    right: 13px;
  }
  .company_table__cell {
    font-size: 1.4rem;
    padding: 25px 0;
  }
  .company_table__definition-term {
    width: 35px;
  }
}
@media (max-width: 400px) {
  .company_table__cell {
    padding: 16px 0;
  }
}

/*-----------------------------------------------
recruit table
-----------------------------------------------*/
.recruit-table {
  margin-bottom: 40px;
  width: 100%;
  font-size: 1.8rem;
}
.recruit-table tr {
  border-bottom: 1px solid #A3A6AA;
}
.recruit-table th,
.recruit-table td {
  padding: 20px 0;
}
.recruit-table th {
  font-weight: 700;
  width: 240px;
}
@media (max-width: 960px) {
  .recruit-table {
    font-size: 16px;
  }
  .recruit-table th,
.recruit-table td {
    padding: 12px 8px;
  }
  .recruit-table th {
    width: 120px;
  }
}
@media (max-width: 600px) {
  .recruit-table {
    font-size: 1.4rem;
  }
}

/*-----------------------------------------------
product-spec-table          
-----------------------------------------------*/
.diagonal {
  max-width: 840px;
  width: 100%;
}
.diagonal tr {
  background: #D0E0E8;
}
.diagonal tr:first-child {
  background: var(--color-brand);
  color: #fff;
  border: none;
}
.diagonal tr:first-child th:first-child {
  width: 264px;
  padding: 9.56px 40px 6.44px;
  background-image: linear-gradient(to right top, transparent calc(50% - 0.5px), #B3B3B3 50%, #B3B3B3 calc(50% + 0.5px), transparent calc(50% + 1px));
  display: grid;
  justify-content: space-between;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 1fr;
}
.diagonal tr:first-child th:last-child {
  width: 100%;
  text-align: center;
  vertical-align: middle;
}
.diagonal tr:nth-child(2n) {
  background: #fff;
}
.diagonal th,
.diagonal td {
  font-weight: 700;
  border: 1px solid #B3B3B3;
  padding: 14px;
}
.diagonal td {
  text-align: center;
  vertical-align: middle;
}
.diagonal .col-header {
  grid-column-start: 2;
  text-align: right;
}
.diagonal .row-header {
  grid-column-start: 1;
}
.diagonal__header {
  background: var(--color-brand);
  color: #fff;
  border: none;
}
.diagonal__header th:first-child {
  width: 264px;
  padding: 9.56px 40px 6.44px;
}
.diagonal__header th:last-child {
  width: 100%;
  text-align: center;
  vertical-align: middle;
}
@media (max-width: 960px) {
  .diagonal {
    max-width: 100%;
    font-size: 1.6rem;
  }
  .diagonal tr:first-child th:first-child {
    width: 200px;
    padding: 8px 20px 6px;
  }
  .diagonal th,
.diagonal td {
    padding: 12px 10px;
  }
  .diagonal__header th:first-child {
    width: 200px;
    padding: 8px 20px 6px;
  }
}
@media (max-width: 1279px) {
  .diagonal {
    overflow-x: auto;
    display: block;
    white-space: nowrap;
    max-width: 100%;
    font-size: 1.6rem;
  }
  .diagonal tr:first-child th:first-child {
    width: 200px;
    padding: 8px 20px 6px;
  }
  .diagonal th,
.diagonal td {
    padding: 12px 10px;
  }
  .diagonal__header th:first-child {
    width: 200px;
    padding: 8px 20px 6px;
  }
}
@media (max-width: 600px) {
  .diagonal {
    overflow-x: auto;
    display: block;
    white-space: nowrap;
    font-size: 1.4rem;
  }
  .diagonal tr:first-child th:first-child {
    padding: 6px 10px 4px;
  }
  .diagonal th,
.diagonal td {
    padding: 8px 6px;
  }
  .diagonal .col-header {
    font-size: 1.2rem;
  }
  .diagonal .row-header {
    font-size: 1.2rem;
  }
  .diagonal__header th:first-child {
    width: 140px;
    padding: 6px 10px 4px;
  }
}

/*-----------------------------------------------
table-simple
-----------------------------------------------*/
.table-simple {
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.table-simple tr {
  background: #D0E0E8;
}
.table-simple tr:first-child {
  background: var(--color-brand);
  color: #fff;
  border: none;
}
.table-simple tr:nth-child(2n) {
  background: #fff;
}
.table-simple th,
.table-simple td {
  height: 53px;
  font-weight: 700;
  text-align: center;
  vertical-align: middle;
  border: 1px solid #B3B3B3;
}
.table-simple--main td {
  height: auto;
  text-align: left;
}
.table-simple--main td:first-child {
  padding: 14px;
}
.table-simple--main td:nth-child(2) {
  font-size: 1.6rem;
  font-weight: 400;
}
.table-simple__civil-row {
  background: #D0E0E8 !important;
}
.table-simple__list {
  list-style: disc;
  list-style-position: inside;
  padding-left: 13.5px;
}
@media (max-width: 1279px) {
  .table-simple {
    overflow-x: auto;
    display: block;
    white-space: nowrap;
  }
  .table-simple--usage {
    display: table;
  }
}

.table_flex {
  display: flex;
  gap: 20px;
}
@media (max-width: 1024px) {
  .table_flex {
    gap: 0;
    flex-direction: column;
  }
}

.usage-table {
  width: 100%;
  font-size: 1.6rem;
  font-weight: 400;
}
.usage-table__bg {
  background: #D0E0E8;
}
.usage-table tr:first-child {
  background: var(--color-brand);
  color: #fff;
  border: none;
}
.usage-table th {
  height: 53px;
  padding: 14px;
  font-weight: 700;
  text-align: center;
  vertical-align: middle;
  border: 1px solid #B3B3B3;
}
.usage-table td {
  vertical-align: middle;
  border: 1px solid #B3B3B3;
  padding: 13.5px;
}
.usage-table td:first-child {
  font-weight: 700;
  padding: 21.5px 10px;
  padding-left: 13.5px;
}
.usage-table__p0 {
  font-weight: 400 !important;
  padding: 0 !important;
  padding-left: 13.5px !important;
}
@media (max-width: 600px) {
  .usage-table__p0 {
    padding: 10px !important;
  }
}
@media (max-width: 960px) {
  .usage-table {
    font-size: 1.6rem;
  }
  .usage-table th,
.usage-table td {
    padding: 12px 8px;
  }
}
@media (max-width: 1279px) {
  .usage-table {
    overflow-x: auto;
    display: block;
    white-space: nowrap;
    font-size: 1.6rem;
  }
  .usage-table th,
.usage-table td {
    padding: 12px 8px;
  }
}
@media (max-width: 600px) {
  .usage-table {
    font-size: 1.4rem;
  }
  .usage-table th,
.usage-table td {
    padding: 8px 6px;
  }
}

/*-----------------------------------------------
service-spec-table
-----------------------------------------------*/
.service-spec-table {
  width: 100%;
}
.service-spec-table tr {
  background: #D0E0E8;
}
.service-spec-table tr:first-child {
  background: var(--color-brand);
  color: #fff;
  border: none;
}
.service-spec-table tr:first-child th:first-child {
  padding: 2px 40px 6.44px;
  background-image: linear-gradient(to right top, transparent calc(50% - 0.5px), #B3B3B3 50%, #B3B3B3 calc(50% + 0.5px), transparent calc(50% + 1px));
  display: grid;
  justify-content: space-between;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 1fr;
}
.service-spec-table tr:first-child th:not(:first-child) {
  text-align: center;
  vertical-align: middle;
}
.service-spec-table tr:not(:first-child) td {
  padding: 14px;
}
.service-spec-table tr:nth-child(2n) {
  background: #fff;
}
.service-spec-table th,
.service-spec-table td {
  font-weight: 700;
  border: 1px solid #B3B3B3;
}
.service-spec-table td {
  text-align: center;
  vertical-align: middle;
}
.service-spec-table td:first-child {
  text-align: left;
}
.service-spec-table .col-header {
  grid-column-start: 2;
  text-align: right;
}
.service-spec-table .row-header {
  grid-column-start: 1;
}
.service-spec-table .meta {
  max-width: 390px;
  min-width: 390px;
  width: 390px;
}
.service-spec-table--2 tr:not(:first-child) td {
  padding: 14px 20px;
}
@media (min-width: 1440px) {
  .service-spec-table .meta {
    max-width: 33%;
    min-width: 33%;
    width: 33%;
  }
}
@media (max-width: 1279px) {
  .service-spec-table {
    overflow-x: auto;
    display: block;
    white-space: nowrap;
    max-width: 100%;
    font-size: 1.6rem;
  }
}
@media (max-width: 600px) {
  .service-spec-table {
    font-size: 1.4rem;
  }
  .service-spec-table tr:first-child th:first-child {
    padding: 6px 10px 14px;
  }
  .service-spec-table th,
.service-spec-table td {
    padding: 8px 6px;
  }
  .service-spec-table .col-header {
    font-size: 1.2rem;
  }
  .service-spec-table .row-header {
    font-size: 1.2rem;
  }
  .service-spec-table__header th:first-child {
    padding: 6px 10px 4px;
  }
  .service-spec-table .meta {
    min-width: 166px;
    max-width: 166px;
    width: 166px;
  }
}
@media (max-width: 375px) {
  .service-spec-table {
    font-size: 1.2rem;
  }
  .service-spec-table th,
.service-spec-table td {
    padding: 6px 4px;
  }
  .service-spec-table .col-header,
.service-spec-table .row-header {
    font-size: 1.1rem;
  }
}

@media (max-width: 1279px) {
  .table-wrapper {
    overflow-x: auto;
    width: 100%;
  }
}

/*subpage_access_02
-----------------------------------------------*/
.subpage_access_02 {
  line-height: 1.5;
  font-size: 1.8rem;
}
.subpage_access_02__title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.35;
}
.subpage_access_02__inner {
  display: flex;
}
.subpage_access_02__text {
  margin-bottom: 20px;
}
.subpage_access_02__map {
  width: 50%;
  position: relative;
  height: 0;
  padding-top: 28.5714285714%;
}
.subpage_access_02__map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.subpage_access_02__img {
  width: 50%;
}
.subpage_access_02__img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1.75/1;
}
@media (max-width: 1200px) {
  .subpage_access_02 {
    width: 95%;
  }
}
@media (max-width: 767px) {
  .subpage_access_02 {
    width: 100%;
  }
  .subpage_access_02__inner {
    flex-direction: column;
    gap: 16px;
  }
  .subpage_access_02__map, .subpage_access_02__img {
    width: 100%;
  }
  .subpage_access_02__map {
    padding-top: 57.14%;
  }
}

/*-----------------------------------------------
form
-----------------------------------------------*/
.page-contact {
  letter-spacing: 0.08em;
  margin-bottom: 64px;
}
.page-contact__wrap {
  margin: 0 auto 64px;
  max-width: 616px;
}
.page-contact .form__inner {
  padding: 64px 185px;
  background: #E5E5E5;
}
.page-contact .red {
  font-size: 20px;
  line-height: 1.6;
  letter-spacing: 0.08em;
  color: var(--color-required);
}
.page-contact .text {
  font-size: 2rem;
  font-weight: 700;
  color: #4F4F4F;
}
.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: 17.21px 10px;
  border: 2px solid #e5e5e5;
  background: #fff;
  margin-top: 10px;
  margin-bottom: 20px;
}
.page-contact input[type=checkbox] {
  width: 16px;
  height: 16px;
  margin-right: 14px;
  -moz-appearance: auto;
       appearance: auto;
  -webkit-appearance: checkbox;
}
.page-contact .checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.page-contact .radio-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 10px;
  margin-bottom: 20px;
}
.page-contact .radio-group label {
  display: flex;
  align-items: center;
  font-size: 1.6rem;
  cursor: pointer;
}
.page-contact .radio-group input[type=radio] {
  width: 16px;
  height: 16px;
  margin-right: 14px;
  -moz-appearance: auto;
       appearance: auto;
  -webkit-appearance: radio;
}
.page-contact .checkbox {
  margin-top: 64px;
  margin-bottom: 44px;
}
.page-contact .checkbox label {
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-contact .checkbox p,
.page-contact .checkbox span {
  font-size: 1.4rem;
  line-height: 1.6;
  letter-spacing: 0.07em;
}
.page-contact .checkbox span {
  color: #222;
  font-weight: 500;
}
.page-contact .checkbox a {
  text-decoration: underline;
  text-underline-offset: 20%;
}
.page-contact .submit-btn {
  background: var(--color-brand);
  color: #fff;
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 2.4rem;
  letter-spacing: 0.08em;
  max-width: 500px;
  width: 100%;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  transition: 0.3s;
  cursor: pointer;
}
.page-contact .submit-btn:hover {
  opacity: 0.8;
}
@media (width < 1280px) {
  .page-contact .form__inner {
    padding: 32px 20px;
  }
}
@media (width < 768px) {
  .page-contact .checkbox {
    font-size: 1.2rem;
  }
}

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

/*-----------------------------------------------
header
-----------------------------------------------*/
.header {
  border-top: 5px solid #2CBEFD;
  padding: 15px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  background: rgba(255, 255, 255, 0.7);
  z-index: 100;
}
.header__logo {
  min-width: 385px;
  transition: 0.3s;
}
.header__inner {
  width: 94.4444444444%;
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (width < 1280px) {
  .header__logo {
    max-width: 300px;
    min-width: 300px;
  }
}
@media (width < 768px) {
  .header {
    height: 70px;
    padding: 10px 0;
  }
  .header__logo {
    max-width: 270px;
    min-width: 270px;
  }
  .header__inner {
    align-items: center;
    width: calc(100% - 30px);
    margin-inline: auto;
  }
}
@media (width < 580px) {
  .header {
    height: 60px;
  }
  .header__logo {
    max-width: 220px;
    min-width: 220px;
  }
}

.nav {
  width: 75vw;
}
.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: rgba(255, 255, 255, 0.86);
  text-align: center;
}
.nav__item {
  transition: 0.3s;
  font-weight: 700;
  text-align: center;
}
.nav__item:first-child {
  padding-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: linear-gradient(90deg, #33C5E8 0%, #019CC8 100%);
  border: 1px solid #fff;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 40px;
}
.nav__item--contact a {
  font-size: 20px;
  color: #fff;
  padding: 12px 0;
  width: 200px;
}
.nav__item--contact a::before {
  content: url(../img/common/i-email.svg);
  width: 25px;
  height: 19px;
  margin-right: 8px;
  display: inline-block;
  vertical-align: sub;
}
@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 < 1025px) {
  .nav {
    max-width: 70%;
    height: 0;
    opacity: 0;
    pointer-events: none;
  }
  .nav.is-active {
    width: 100%;
  }
  .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 a {
    font-size: 18px;
    padding: 10px;
  }
  .nav__item--contact {
    margin: 20px auto 0;
  }
  .nav__item--contact a {
    width: 180px;
    font-size: 18px;
  }
}
@media (width < 768px) {
  .nav.is-active {
    width: 100%;
  }
  .nav__list {
    top: 45%;
  }
  .nav__item {
    margin: 0 0 15px;
  }
  .nav__item a {
    font-size: 16px;
  }
  .nav__item--contact a {
    width: 160px;
    font-size: 16px;
    padding: 10px 0;
  }
}

.burger {
  --opacity: 1;
  --rotate: 0;
  --translate: .6rem;
  position: fixed;
  top: 12px;
  right: 47px;
  place-items: center;
  width: 60px;
  aspect-ratio: 1;
  display: none;
}
.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 < 768px) {
  .burger {
    width: 50px;
    top: 10px;
    right: 15px;
  }
}
@media (width < 580px) {
  .burger {
    width: 40px;
    top: 10px;
    right: 10px;
  }
}

/*footer
-----------------------------------------------*/
.footer {
  position: relative;
  z-index: 1;
  background: var(--color-brand);
  font-weight: 700;
}
.footer__inner {
  padding: 32px 20px 22px;
  font-weight: 700;
  color: var(--color-footer);
  max-width: var(--container-max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__logo {
 /* min-width: 385px;*/
  margin-bottom: 12px;
}
.footer__wrap {
  margin-bottom: 20px;
}

.footer__address {
  font-size: 1.4rem;
  font-weight: 700;
  padding: 10px 0px;
  line-height: 1.5;
}
.footer__address a {
  color: var(--color-footer);
}
.footer__list {
  display: flex;
  flex-wrap: wrap;
}
.footer__item {
  font-size: 1.6rem;
  padding: 11px 12px;
  margin: 0 4px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}
.footer__item:last-child {
  border-right: none;
}
.footer__item a {
  color: var(--color-footer);
}
.footer__nav .ssl {
display: flex;
justify-content: flex-end;
margin-top: 2rem;
}
@media (width < 1025px) {
.footer__nav .ssl {
display: flex;
justify-content: center;
margin-top: 2rem;
}
}



@media (hover: hover) {
  .footer__item a:hover, .footer__item a:focus {
    text-decoration: underline;
  }
}
.footer__copyright {
  font-size: 1.4rem;
  text-align: center;
  background: #333333;
  color: #fff;
  padding: 20px;
  letter-spacing: 0.04em;
  line-height: 1;
}
@media (width < 1280px) {
  .footer__inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (width < 1025px) {
  .footer__inner {
    flex-direction: column;
    padding-inline: 20px;
  }
  .footer__logo {
    padding: 0;
    margin-inline: auto;
    min-width: 320px;
  }
  .footer__address {
    text-align: center;
  }
  .footer__nav {
    width: 100%;
    margin-top: 20px;
  }
}
@media (width < 768px) {
  .footer__inner {
    padding: 30px 20px 20px;
  }
  .footer__logo {
    font-size: 20px;
    min-width: 270px;
  }
  .footer__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 0;
  }
  .footer__item {
    border-right: none;
    padding: 8px 12px;
    font-size: 1.4rem;
  }
  .footer__copyright {
    font-size: 1.2rem;
    padding: 15px;
  }
}
@media (width < 580px) {
  .footer__inner {
    padding: 25px 15px 15px;
  }
  .footer__logo {
    min-width: 220px;
  }
  .footer__address {
    font-size: 1.4rem;
  }
  .footer__list {
    -moz-column-gap: 0;
         column-gap: 0;
  }
  .footer__item {
    text-align: center;
    font-size: 1.3rem;
    padding: 6px 10px;
    margin: 0 2px;
  }
  .footer__copyright {
    font-size: 1.1rem;
    padding: 12px;
  }
}

/*-----------------------------------------------
top
-----------------------------------------------*/
.top-company {
  position: relative;
  overflow-x: hidden;
}
.top-company__bg {
  z-index: -1;
  position: absolute;
  bottom: 0;
  left: 0;
  line-height: 0.7;
  padding-top: 204px;
  background: linear-gradient(90deg, #41A2E3 0%, #6ABBE9 100%);
  width: 100%;
}
.top-company__bg p {
  opacity: 0.5;
  color: #C9E3FF;
  text-align: center;
  white-space: nowrap;
  font-size: 187px;
  font-family: "Montserrat";
  font-style: italic;
  font-weight: 800;
  letter-spacing: 0.13em;
  overflow: hidden;
  max-width: 100%;
  mix-blend-mode: screen;
}
@media (width < 768px) {
  .top-company__bg {
    padding-top: 100px;
  }
  .top-company__bg p {
    font-size: 100px;
    letter-spacing: 0.1em;
  }
}
@media (width < 580px) {
  .top-company__bg {
    padding-top: 60px;
  }
  .top-company__bg p {
    font-size: 51px;
  }
}

.top-service {
  position: relative;
  overflow: hidden;
}
.top-service__bg {
  width: 45%;
  padding: 50px;
  padding-left: 0;
  background: url(../img/top/bg_02.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right;
}
.top-service__bg--right {
  background: url(../img/top/bg_03.jpg);
  background-repeat: no-repeat;
  background-position: left;
  background-size: cover;
}
.top-service--left {
  margin-right: auto;
}
.top-service--right {
  margin-left: auto;
}
.top-service__img {
  position: relative;
  z-index: 1;
  width: 55%;
  filter: drop-shadow(0px 10px 10px rgba(0, 0, 0, 0.4));
  overflow: hidden;
}
.top-service__catch {
  font-family: "Montserrat";
  font-size: 110px;
  font-weight: 700;
  color: #DCE2E8;
  position: absolute;
  bottom: -48px;
  left: 0;
  mix-blend-mode: overlay;
  overflow: hidden;
  max-width: 100%;
  white-space: nowrap;
  text-overflow: clip;
  width: 100%;
}
.top-service__catch--right {
  text-align: right;
  right: 0;
  left: auto;
}
.top-service__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(480px, 37.5vw);
  margin-left: -3.05vw;
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.9);
  padding: 60px 50px;
  filter: drop-shadow(0px 10px 10px rgba(0, 0, 0, 0.4));
}
.top-service__text {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 32px;
}
.top-service .section__title {
  line-height: 1.5;
}
.top-service__inner {
  display: flex;
  align-items: center;
}
.top-service__inner--reverse {
  flex-direction: row-reverse;
}
.top-service__inner--reverse .top-service__bg {
  padding-right: 0;
}
.top-service__inner--reverse .top-service__content {
  margin-left: 14.5833333333vw;
}
@media (width < 1025px) {
  .top-service__inner {
    flex-direction: column;
  }
  .top-service__inner--reverse {
    flex-direction: column;
  }
  .top-service__inner--reverse .top-service__content {
    margin-left: 30px;
    padding-left: 30px;
  }
  .top-service__img {
    width: 100%;
    margin-bottom: 30px;
  }
  .top-service__catch {
    font-size: 80px;
    bottom: -30px;
  }
  .top-service__content {
    width: 90%;
    margin-left: 0;
    margin-right: 0;
    padding: 40px 30px;
  }
  .top-service__bg {
    width: 100%;
    padding: 30px;
    padding-left: 0px;
  }
}
@media (width < 768px) {
  .top-service {
    padding: 60px 0;
  }
  .top-service--right, .top-service--left {
    padding: 60px 10px;
  }
  .top-service__catch {
    font-size: 60px;
    bottom: -20px;
  }
  .top-service__content {
    width: 100%;
    padding: 30px 20px;
  }
  .top-service__text {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }
}
@media (width < 580px) {
  .top-service {
    padding: 40px 0;
  }
  .top-service--right, .top-service--left {
    padding: 40px 10px;
  }
  .top-service__catch {
    font-size: 40px;
    bottom: -15px;
  }
  .top-service__content {
    padding: 25px 15px;
  }
}

.top-recruit {
  background: url(../img/top/bg_04.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 77.5px 10px;
}
.top-recruit__wrap {
  position: relative;
  max-width: 480px;
  width: 100%;
  margin: 0 auto;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0px 8px 8px rgba(0, 0, 0, 0.25);
}
.top-recruit__wrap::before {
  content: url(../img/top/top_icon.png);
  position: absolute;
  top: -54px;
  right: -75px;
}
.top-recruit .section__title {
  line-height: 1.5;
}
@media (width < 1025px) {
  .top-recruit {
    padding: 60px 0;
  }
  .top-recruit__wrap {
    padding: 30px 20px;
    gap: 15px;
  }
  .top-recruit__wrap::before {
    top: -30px;
    right: 0;
    transform: scale(0.7);
    transform-origin: top right;
  }
}
@media (width < 580px) {
  .top-recruit {
    padding: 40px 10px;
  }
  .top-recruit__wrap {
    padding: 25px 15px;
  }
  .top-recruit__wrap::before {
    transform: scale(0.5);
  }
}

/*-----------------------------------------------
news
-----------------------------------------------*/
.news__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.news__item {
  border-bottom: 1px solid #EEEFF0;
  display: flex;
  padding-bottom: 16px;
}
.news__item:not(:first-child) {
  padding: 16px 0;
}
.news__item:last-child {
  margin-bottom: 0;
}
.news__date {
  min-width: 140px;
  color: rgba(34, 34, 34, 0.5);
}
.news__text {
  color: #222;
  font-weight: 700;
}
@media (width < 768px) {
  .news__item {
    flex-direction: column;
    gap: 5px;
  }
  .news__date {
    min-width: auto;
  }
}

.top-news {
  padding: 93px 0;
  max-width: 1440px;
  margin: 0 auto;
}
.top-news .section__title {
  line-height: 1.5;
}
.top-news__container {
  display: flex;
  gap: 40px;
}
.top-news__title {
  color: var(--color-brand);
  margin-bottom: 32px;
}
.top-news__inner {
  width: min(595px, 41.3vw);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (width < 1025px) {
  .top-news__container {
    flex-direction: column;
    align-items: center;
    gap: 60px;
  }
  .top-news__inner {
    width: 100%;
    max-width: 800px;
    margin-bottom: 0;
  }
}
@media (width < 768px) {
  .top-news {
    padding: 60px 0 40px;
  }
  .top-news__container {
    gap: 40px;
  }
}
@media (width < 580px) {
  .top-news {
    padding: 40px 0 30px;
  }
  .top-news__container {
    gap: 30px;
    padding: 0 15px;
  }
  .top-news__title {
    margin-bottom: 20px;
  }
}

/*-----------------------------------------------
top-contact
-----------------------------------------------*/
.top-contact {
  color: #fff;
  max-width: 485px;
  width: min(485px, 33.7vw);
  text-align: center;
  padding: 15px;
  background: url(../img/top/bg_top_contact.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.top-contact__inner {
  padding: 65px 0 81px;
  border: 1px solid #fff;
}
.top-contact__title {
  padding: 0 16px;
  font-size: 2rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin-bottom: 60px;
}
.top-contact__btn {
  display: inline-block;
  width: 240px;
  border: 1px solid #fff;
  padding: 12px;
}
@media (width < 1025px) {
  .top-contact {
    width: 100%;
    max-width: 485px;
  }
}
@media (width < 768px) {
  .top-contact__inner {
    padding: 40px 0;
  }
  .top-contact__title {
    font-size: 1.8rem;
    margin-bottom: 40px;
  }
}
@media (width < 580px) {
  .top-contact__inner {
    padding: 30px 0;
  }
  .top-contact__title {
    font-size: 1.6rem;
    margin-bottom: 30px;
  }
  .top-contact__btn {
    width: 200px;
  }
}

/*-----------------------------------------------
fv
-----------------------------------------------*/
.fv {
  position: relative;
  margin-bottom: 40px;
}
.fv__title {
  position: absolute;
  top: 27.75%;
  left: 10.6944444444%;
  color: var(--color-brand);
  font-weight: 700;
  border-left: 6px solid var(--color-brand);
}
.fv__title .en,
.fv__title .ja {
  padding-left: 20px;
  display: block;
}
.fv__title .en {
  font-family: "Montserrat", sans-serif;
  text-transform: capitalize;
  font-size: 72px;
  line-height: 1;
}
.fv__title .ja {
  font-size: 24px;
  line-height: 1.75;
}
@media (width < 768px) {
  .fv__title {
    top: 25%;
  }
  .fv__title .en {
    font-size: 24px;
  }
  .fv__title .ja {
    font-size: 16px;
  }
}

/*-----------------------------------------------
breadcrumb
-----------------------------------------------*/
.breadcrumb__inner {
  display: flex;
  align-items: center;
  font-weight: 700;
}
.breadcrumb p {
  line-height: 1.45;
  letter-spacing: 0.08em;
}
.breadcrumb p:first-child::after {
  text-decoration: none;
  content: ">";
  margin-left: 0.625rem;
  margin-right: 0.625rem;
}
.breadcrumb a {
  color: #1E4B9E;
  text-decoration: underline;
}
@media (hover: hover) {
  .breadcrumb a:hover, .breadcrumb a:focus {
    opacity: 0.8;
  }
}

/*-----------------------------------------------
page
-----------------------------------------------*/
.page {
  padding-top: 90px;
  font-size: 1.8rem;
  line-height: 1.5;
}
.page__red {
  color: #FF0000;
}
.page__container {
  padding: 120px 0;
}
.page__container--business {
  padding: 120px 0 0;
}
.page__container--service {
  padding: 120px 0 0;
}
.page__title {
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.2;
  letter-spacing: 0.08em;
  color: #fff;
  background: var(--color-brand);
  padding: 16px 30px 11px;
  position: relative;
  margin-bottom: 2.5em;
}
.page__title::before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 8px;
  width: 8px;
  height: 77.4%;
  content: "";
  background: #F2EEEE;
}
.page__sub-title {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 2;
  display: flex;
  align-items: flex-end;
  border-bottom: 1px solid var(--color-brand);
}
.page__sub-title:before {
  content: "";
  display: block;
  width: 12px;
  height: 40px;
  background: var(--color-brand);
  margin-right: 10px;
}
.page__list {
  list-style-type: disc;
  list-style-position: outside;
  padding-left: 1.5em;
}
.page__list--diamond {
  list-style-type: none;
  list-style-position: outside;
  padding-left: 1.5em;
}
.page__list--diamond li {
  position: relative;
}
.page__list--diamond li::before {
  content: "◆";
  position: absolute;
  left: -1.5em;
}
.page__list--3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.page__list li {
  margin-bottom: 0.5em;
}
.page__list li:last-child {
  margin-bottom: 0;
}
.page__list--products {
  color: #005D89;
  font-weight: 700;
}
.page__list--products li {
  margin-bottom: 0;
}
.page-num__list {
  list-style-type: decimal;
  list-style-position: outside;
  padding-left: 1.5em;
}
.page-num__item {
  margin-bottom: 18px;
}
.page-num__item:last-child {
  margin-bottom: 0;
}
@media (width < 1025px) {
  .page__list--3col {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (width < 768px) {
  .page__container {
    padding: 60px 0;
  }
  .page__container--business {
    padding: 60px 0 0;
  }
  .page__title {
    font-size: 2rem;
  }
  .page__list--3col {
    grid-template-columns: repeat(1, 1fr);
  }
}

/*-----------------------------------------------
company
-----------------------------------------------*/
.greeting__text {
  font-size: 2rem;
  line-height: 1.6;
  letter-spacing: 0;
  margin-bottom: 20px;
}
.greeting__img {
  width: 70px;
  height: 23px;
  margin-bottom: 20px;
}
.greeting__name {
  margin-left: auto;
  width: 300px;
  height: 64px;
}

/*-----------------------------------------------
business
-----------------------------------------------*/
.gallery {
  display: flex;
}

/*-----------------------------------------------
tel-contact
-----------------------------------------------*/
.tel-contact {
  margin-bottom: 64px;
}
.tel-contact__inner {
  max-width: 504px;
  margin: 0 auto;
}
.tel-contact__text {
  font-size: 2.4rem;
  line-height: 1.6;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.tel-contact__text span {
  font-size: 3.2rem;
  color: var(--color-brand);
}
@media (width < 768px) {
  .tel-contact {
    margin-bottom: 32px;
  }
  .tel-contact__text {
    font-size: 1.6rem;
  }
  .tel-contact__text span {
    font-size: 2.4rem;
  }
}

/*-----------------------------------------------
recruit
-----------------------------------------------*/
.recruit__wrap {
  overflow: hidden;
  z-index: -1;
  position: relative;
  color: var(--color-brand);
  text-align: center;
  border: 5px solid var(--color-brand);
  padding: 60px 20px;
  font-weight: 700;
  font-size: 2rem;
}
.recruit__wrap::before {
  content: "";
  position: absolute;
  top: -44px;
  right: -35px;
  width: 110%;
  height: 138%;
  background: url(../img/recruit/logo.png) no-repeat;
  background-size: contain;
  background-position: right;
}
.recruit__title {
  font-size: 2.4rem;
  text-decoration: underline;
  margin-bottom: 15px;
  text-underline-offset: 8px;
}
.recruit__entry-text {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.08rem;
}
.recruit__entry {
  color: #036AB9;
  text-decoration: underline;
}
@media (hover: hover) {
  .recruit__entry:hover, .recruit__entry:focus {
    opacity: 0.8;
  }
}

/*-----------------------------------------------
products
-----------------------------------------------*/
.products__wrap {
  display: flex;
  gap: 20px;
}
.products__wrap > a {
  max-width: 550px;
  width: 100%;
}
.products__list {
  font-size: 2rem;
  font-weight: 700;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px 44px;
}
.products__title {
  margin-bottom: 8px;
}
@media (width < 1025px) {
  .products__list {
    gap: 40px 20px;
  }
}
@media (width < 768px) {
  .products__list {
    gap: 40px 10px;
  }
}

/*-----------------------------------------------
service
-----------------------------------------------*/
.service .fig {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-brand);
  margin-bottom: 10px;
}
.service__intro {
  color: #fff;
  background-image: url(../img/service/service_bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 40px 56px;
}
.service__title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-brand);
}
.service__wrap {
  display: flex;
  align-items: center;
  gap: 60px;
}
.service__container {
  width: 57.7678571429%;
}
.service__img--480 {
  margin-inline: auto;
  max-width: 480px;
}
.service__links {
  margin-top: 60px;
}
.service__links-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #000;
}
.service__link {
  display: block;
  color: #003CFF;
  text-decoration: underline;
  transition: opacity 0.3s;
  word-wrap: break-word;
}
@media (hover: hover) {
  .service__link:hover, .service__link:focus {
    opacity: 0.8;
  }
}
@media (width < 1025px) {
  .service__wrap {
    flex-direction: column;
  }
  .service__container {
    width: 100%;
  }
}
@media (width < 768px) {
  .service__intro {
    padding: 32px 10px;
  }
  .service__link {
    margin-bottom: 20px;
  }
}

.service-section {
  margin-bottom: 100px;
}
@media (width < 768px) {
  .service-section {
    margin-bottom: 60px;
  }
}
/*# sourceMappingURL=style.css.map */