/* reset.css */

/*
  Josh's Custom CSS Reset
  https://www.joshwcomeau.com/css/custom-css-reset/
*/
*, *::before, *::after {
  box-sizing: border-box;
}
* {
  margin: 0;
}
html, body {
  height: 100%;
}
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}
input, button, textarea, select {
  font: inherit;
}
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}
#root, #__next {
  isolation: isolate;
}

/* original common.css */

@charset "UTF-8";
/* Google Font: M PLUS 1p / Arimo/ Anton */
@import url("https://fonts.googleapis.com/css2?family=Anton&family=Arimo:ital,wght@0,400..700;1,400..700&family=M+PLUS+1p:wght@300;400;500;700&display=swap");
:root {
  --maincolor: #0043C0;
  --maincolor-sky: #0080DB;
  --maincolor-foreground: #FFF;
  --lightcolor: #EFF8FF;
  --article-max-width: 1280px;
  --font-title: 3rem;
  --font-xl: 2rem;
  --font-l: 1.5rem;
  --font-ml: 1.25rem;
  --font-m: 1rem;
  --font-s: 0.8rem;
}

html {
  height: auto;
  font-size: 100%;
  font-family: "M PLUS 1p", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, system-ui, -apple-system, sans-serif;
  font-style: normal;
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
@media screen and (max-width: 1279px) {
  html {
    scroll-padding-top: 70px;
  }
}

body {
  height: auto;
}

.font-serif {
  font-family: "Noto Serif JP", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", "ＭＳ 明朝", "MS Mincho", serif;
}

.font-sans-serif {
  font-family: "M PLUS 1p", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, system-ui, -apple-system, sans-serif;
  font-style: normal;
}

.font-bold, .h3 {
  font-weight: bold;
}

.font-title {
  font-size: var(--font-title);
}

.font-xl {
  font-size: var(--font-xl);
}

.font-l {
  font-size: var(--font-l);
}

.font-m {
  font-size: var(--font-m);
}

.font-s {
  font-size: var(--font-s);
}

.tac {
  text-align: center;
}

.tar {
  text-align: right;
}

.t-underline {
  text-decoration: underline;
}

.m-0 {
  margin: 0;
}

.m-tb05 {
  margin: 0.5em 0;
}

.m-tb1, .h3 {
  margin: 1em 0;
}

.m-tb2 {
  margin: 2em 0;
}
.m-tb2 li {
  margin: 1em 0;
}

.content-width-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, var(--article-max-width));
  grid-template-columns: minmax(0, var(--article-max-width));
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 40px 24px;
}
@media screen and (max-width: 511px) {
  .content-width-grid {
    padding: 20px;
  }
}
.content-width-padding {
  padding: 40px calc((100vw + 20px - var(--article-max-width)) / 2);
}
@media screen and (max-width: 1279px) {
  .content-width-padding {
    padding: 40px;
  }
}
.content-width--bg {
  background-color: var(--accent);
  color: var(--accent-foreground);
}

.p-0 {
  padding: 0;
}

.p-tb05 {
  padding: 0.5em 0;
}

.p-tb1 {
  padding: 1em 0;
}

.p-tb2 {
  padding: 2em 0;
}

.white {
  color: #FFF;
}

.black {
  color: #000;
}

.blue {
  color: #045bbd;
}

.red {
  color: #ff0000;
}

.green {
  color: #008000;
}

.maincolor {
  color: var(--maincolor);
}

.maincolor-bg {
  background-color: var(--maincolor);
}

.maincolor-foreground {
  color: var(--maincolor-foreground);
}

.block {
  display: block;
}

:root {
  --header-border-size: 5px;
}

.base-header {
  position: sticky;
  top: 0;
  background-color: #FFF;
  padding: 12px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 16px 1fr;
  grid-template-columns: auto 1fr;
  gap: 16px;
  z-index: 999;
}
.base-header__corp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
.base-header__corp-logo {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  max-width: 100%;
}
@media screen and (max-width: 512px) {
  .base-header__corp-logo {
    height: unset;
    height: 30px;
  }
}
.base-header__nav {
  display: -ms-grid;
  display: grid;
  gap: 8px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  justify-items: end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1023px) {
  .base-header__links {
    display: none;
  }
}
.base-header__mainlinks {
  list-style-type: none;
  margin-inline: unset;
  padding-inline: unset;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  font-size: var(--font-ml);
}
@media screen and (max-width: 1023px) {
  .base-header__mainlinks {
    font-size: var(-font-m);
    display: none;
  }
}
.base-header__item--contact .base-header__link {
  padding: 0.25em 1em;
  background-color: #0077C0;
  color: #FFF;
}
.base-header__item--contact .base-header__link:hover {
  background-color: #009dff;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.base-header__link {
  display: block;
  position: relative;
  color: var(--maincolor-sky);
  text-align: center;
  text-decoration: none;
  background-color: unset;
  border: none;
  width: 100%;
}
.base-header__dropdown {
  display: block;
  background-color: unset;
  border: none;
  background-image: url(img/menu.svg);
  background-size: cover;
  background-repeat: no-repeat;
  width: 28px;
  height: 28px;
  cursor: pointer;
}
@media screen and (min-width: 1024px) {
  .base-header__dropdown {
    display: none;
  }
}
@media screen and (max-width: 1023px) {
  .base-header__links {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    z-index: 99;
    background-color: #FFF;
    padding: 24px;
    text-align: center;
  }
  .base-header__mainlinks {
    display: -ms-grid;
    display: grid;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 0;
  }
}
@media screen and (max-width: 512px) {
  .base-header__links {
    top: 54px;
  }
}

.base-footer {
  background-color: var(--maincolor-sky);
  color: var(--maincolor-foreground);
  padding: 24px 12px;
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  justify-items: end;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 12px;
}
.base-footer__aboutus {
  width: 100%;
  text-align: center;
}
.base-footer__aboutus__name {
  display: block;
  font-size: var(--font-l);
  font-weight: bold;
  margin-bottom: 12px;
}
.base-footer__aboutus__address {
  font-style: normal;
  word-break: keep-all;
  overflow-wrap: anywhere;
}
.base-footer__nav {
  width: 100%;
}
.base-footer__mainlinks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.5em 1.5em;
  padding-inline: 0;
}
.base-footer__mainlinks__item {
  list-style-type: none;
}
.base-footer__mainlinks__link {
  color: unset;
  text-decoration: none;
}

.c-contact__area {
  margin-top: 4em;
  padding: 40px 0;
  background-image: url("img/contact_bk.jpg");
  background-size: cover;
}
.c-contact {
  max-width: 768px;
  margin: 3em auto;
  background-color: rgba(0, 67, 192, 0.7411764706);
  display: -ms-grid;
  display: grid;
  gap: 1em;
  -ms-grid-columns: minmax(0, 767px);
  grid-template-columns: minmax(0, 767px);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 1.5em 2em;
  font-weight: bold;
  color: #FFF;
}
.c-contact__wrap {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1em 1fr;
  grid-template-columns: 1fr 1fr;
  -webkit-column-gap: 1em;
     -moz-column-gap: 1em;
          column-gap: 1em;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-contact__title {
  font-size: var(--font-xl);
  font-weight: bold;
  text-align: center;
}
.c-contact__form {
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-grid-row-span: 2;
  grid-row: span 2;
  padding: 1em 0.5em;
  background-color: #FFF;
  font-size: var(--font-l);
  color: #000;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.c-contact__form::before {
  content: "";
  display: inline-block;
  height: 1.5em;
  width: 1.5em;
  background: url("img/icon_contact.svg") no-repeat center/contain;
}
.c-contact__form:hover {
  opacity: 0.9;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.c-contact__tel {
  -ms-grid-column: 2;
  grid-column: 2;
  font-style: normal;
  font-size: var(--font-l);
}

.c-pageheader {
  height: 180px;
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(550px, 3fr) 2fr;
  grid-template-columns: minmax(550px, 3fr) 2fr;
  -ms-grid-rows: 180px;
  grid-template-rows: 180px;
  background-color: var(--maincolor);
  color: var(--maincolor-foreground);
}

.c-pageheader > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}

.c-pageheader > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
}
@media screen and (max-width: 899px) {
  .c-pageheader {
    -ms-grid-columns: 3fr 1fr;
    grid-template-columns: 3fr 1fr;
  }
}
.c-pageheader__info {
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-grid-columns: 1fr 300px;
  grid-template-columns: 1fr 300px;
  -ms-grid-rows: 180px;
  grid-template-rows: 180px;
  background-color: var(--accent);
  color: var(--accent-foreground);
}
.c-pageheader__info > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.c-pageheader__info > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
}
@media screen and (max-width: 899px) {
  .c-pageheader__info {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.c-pageheader__info::after {
  display: block;
  height: 180px;
  margin-right: -165px;
  content: "";
  background-image: none;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 20;
}
@media screen and (max-width: 899px) {
  .c-pageheader__info::after {
    display: none;
  }
}
.c-pageheader__about {
  width: 100%;
  max-height: 180px;
  padding: 24px 0 24px 24px;
  max-width: calc(60vw - 300px - (100vw - 1280px) / 2 + 24px);
  margin-left: auto;
}
@media screen and (max-width: 1279px) {
  .c-pageheader__about {
    max-width: unset;
    padding: 10px 10px 10px 24px;
  }
}
.c-pageheader__title {
  font-weight: bold;
  font-size: clamp(32px, 3vw, 55px);
  word-break: keep-all;
  text-align: left;
  overflow-wrap: anywhere;
  line-height: 1.2;
}
.c-pageheader__subtitle {
  width: 100%;
  text-align: left;
  font-size: clamp(24px, 2vw, 32px);
  line-height: 1.1;
}
.c-pageheader::after {
  display: block;
  content: "";
  background-image: url("../assets/index/business_bk.webp");
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 10;
}

.c-pankuzu {
  width: 100%;
  max-width: 1536px;
  margin: 12px auto;
  padding-left: 24px;
  font-weight: 500;
}
.c-pankuzu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  list-style-type: none;
  padding-inline: 0;
}
.c-pankuzu__item:not(:last-child)::after {
  content: ">";
  color: #707070;
  margin: 0 8px;
}
.c-pankuzu__link {
  color: #707070;
  text-decoration: none;
}
.c-pankuzu__link:hover {
  text-decoration: underline;
}

.c-normalHeadline {
  margin: 0 auto;
  margin-bottom: 12px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  font-weight: bold;
  font-size: var(--font-title);
  border-radius: 8px;
  color: var(--accent);
}
@media screen and (max-width: 511px) {
  .c-normalHeadline {
    font-size: var(--font-xl);
  }
}
.c-normalHeadline--bg {
  padding: 12px 3em;
  background-color: var(--accent);
  color: var(--accent-foreground);
}
@media screen and (max-width: 511px) {
  .c-normalHeadline--bg {
    padding: 12px 1em;
  }
}
.c-normalHeadline--underline {
  padding-bottom: 6px;
  margin-bottom: 20px;
  border-bottom: 5px solid;
  border-color: var(--accent);
  border-radius: 0;
}

.c-nlinkbtn {
  padding: 8px 12px;
  text-align: left;
  text-decoration: none;
  color: #000;
  border: 1px solid #000;
  border-radius: 8px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  margin-left: auto;
}

.c-linkarrowbtn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 8px 16px;
  background-color: var(--maincolor-sky);
  color: var(--maincolor-foreground);
  text-decoration: none;
  font-weight: bold;
  font-size: var(--font-l);
}
.c-linkarrowbtn--large {
  width: 100%;
  max-width: 711px;
  margin: 0 auto;
}
.c-linkarrowbtn::after {
  display: inline-block;
  content: "→";
  font-weight: 300;
}
.c-linkarrowbtn:hover {
  opacity: 0.6;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
@media screen and (max-width: 511px) {
  .c-linkarrowbtn {
    padding: 12px;
  }
}

.c-sectionLinkList {
  display: -ms-grid;
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  margin-top: 1em;
}
.c-sectionLinkList--desc {
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
}
.c-sectionLinkList--desc .c-sectionLink {
  gap: 24px;
  -ms-grid-columns: minmax(100px, 400px) 24px 1fr;
  grid-template-columns: minmax(100px, 400px) 1fr;
}
@media screen and (max-width: 767px) {
  .c-sectionLinkList--desc .c-sectionLink {
    gap: 8px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 767px) {
  .c-sectionLinkList {
    gap: 12px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.c-sectionLink {
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
}
.c-sectionLink__desc {
  white-space: pre-line;
}

.c-content-notice {
  margin: 12px auto;
  padding: 16px;
  width: 100%;
  max-width: 600px;
  background-color: #F0F8FF;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
          box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
  text-align: center;
}

.c-normaltable__row {
  padding: 1em 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 12px 4fr;
  grid-template-columns: 1fr 4fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
.c-normaltable:not(.c-normaltable--no-underline) .c-normaltable__row {
  border-bottom: 1px solid #888;
}
.c-normaltable__title {
  text-align: left;
}

.c-normalTwoDiv {
  display: -ms-grid;
  display: grid;
  gap: 8px;
  -ms-grid-columns: 1fr 8px 1fr;
  grid-template-columns: 1fr 1fr;
}
@media screen and (max-width: 767px) {
  .c-normalTwoDiv {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.top-mainvisual {
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.top-mainvisual__video {
  height: 85vh;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
  width: 100%;
}
.top-mainvisual#mvA .top-mainvisual__enname,
.top-mainvisual#mvA .top-mainvisual__catch {
  position: absolute;
  color: #FFF;
  right: 0;
  left: 0;
  margin: 0 auto;
}
.top-mainvisual#mvA .top-mainvisual__enname {
  top: 120px;
  font-family: "Arimo", sans-serif;
  font-size: clamp(5.5em, 13vw, 170px);
  font-weight: 700;
  font-style: italic;
  text-align: center;
  letter-spacing: -10px;
  line-height: 0.8;
  opacity: 0.3;
}
.top-mainvisual#mvA .top-mainvisual__catch {
  top: 40px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 32px;
  letter-spacing: 4px;
  font-weight: 700;
  background: transparent;
  text-shadow: 0px 4px 20px rgba(0, 0, 0, 0.2509803922);
}
.top-mainvisual#mvB {
  display: none;
}
.top-mainvisual#mvB .top-mainvisual__textwrap {
  position: absolute;
  color: #FFF;
  top: 25%;
  right: 0;
  left: 0;
  margin: 0 auto;
}
.top-mainvisual#mvB .top-mainvisual__enname {
  font-family: "Anton", sans-serif;
  font-size: clamp(4em, 10vw, 120px);
  font-weight: 400;
  text-align: center;
  line-height: 1;
  opacity: 0.3;
}
.top-mainvisual#mvB .top-mainvisual__catch {
  text-align: center;
  font-size: 36px;
  letter-spacing: 2px;
  background: transparent;
  text-shadow: 0px 4px 30px rgba(0, 72, 186, 0.5019607843);
}

.top-news {
  color: #FFF;
  background-color: var(--maincolor);
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 3fr;
  grid-template-columns: 1fr 3fr;
  justify-items: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .top-news {
    padding: 16px;
  }
}
@media screen and (max-width: 511px) {
  .top-news {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.top-news__title {
  font-size: var(--font-xl);
}
.top-news__list {
  border-spacing: 1rem 1.5rem;
}
.top-news::-moz-selection {
  background-color: rgba(255, 255, 255, 0.568627451);
}
.top-news::selection {
  background-color: rgba(255, 255, 255, 0.568627451);
}

.top-section {
  margin: 40px auto;
  width: 100%;
  max-width: var(--article-max-width);
  padding: clamp(16px, 4.5vw, 60px);
}
.top-section#business {
  background-position: 50% 30%;
  background-image: url("../assets/index/business_bk.webp");
}
@media screen and (max-width: 1109px) {
  .top-section#business {
    background-position: 60% 60%;
  }
}
.top-section#policy {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 2em 1fr;
  grid-template-columns: 1fr 1fr;
  -webkit-column-gap: 2em;
     -moz-column-gap: 2em;
          column-gap: 2em;
}
.top-section#policy > * {
  -ms-grid-column: 1;
  grid-column: 1;
}
@media screen and (max-width: 799px) {
  .top-section#policy {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.top-section * {
  display: block;
}
.top-section__title {
  color: var(--maincolor-sky);
}
.top-section__title h2 {
  font-size: clamp(4em, 6.5vw, 80px);
  line-height: 1;
}
.top-section__title h2::first-letter {
  color: var(--maincolor);
}
.top-section__title p {
  font-size: 1.5rem;
}
@media screen and (min-width: 1110px) {
  .top-section#business > .top-section__catch, .top-section#business > .top-section__sub, .top-section#business > .top-section__desc {
    max-width: 60%;
  }
}
.top-section__catch {
  font-size: clamp(1.7em, 4.5vw, 55px);
  margin: 40px 0;
}
.top-section__catch--icon {
  display: inline;
  margin: 0 0.25em;
}
.top-section__sub {
  margin: 25px 0;
  font-weight: bold;
  font-size: 1.7em;
}
.top-section__desc {
  line-height: 2;
  margin-bottom: 20px;
}
.top-section#policy .top-section__photo {
  -ms-grid-column: 2;
  grid-column: 2;
  -ms-grid-row: 1;
  -ms-grid-row-span: 4;
  grid-row: 1/5;
  margin: auto 0;
}
@media screen and (max-width: 799px) {
  .top-section#policy .top-section__photo {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 1;
    grid-row: 1;
    margin: 0 auto;
    height: 300px;
    max-width: 100%;
    margin-bottom: 2em;
  }
}

.top-links {
  display: -ms-grid;
  display: grid;
  gap: 16px;
  -ms-grid-columns: 1fr 16px 1fr 16px 1fr;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 767px) {
  .top-links {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
.top-links__item {
  list-style-type: none;
}
.top-links__item__icon {
  height: 150px;
  margin: 20px 0;
}
.top-links__item__name {
  font-weight: bold;
  font-size: var(--font-l);
}
.top-links__link {
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  justify-items: center;
  padding: 10px 20px;
  text-decoration: none;
  color: var(--maincolor-sky);
  text-align: center;
  background-color: var(--lightcolor);
}
.top-links__link:hover {
  opacity: 0.6;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.top-policies {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  -ms-grid-rows: (300px)[2];
  grid-template-rows: repeat(2, 300px);
}

.top-policies > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}

.top-policies > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
}

.top-policies > *:nth-child(3) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}

.top-policies > *:nth-child(4) {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
}

.top-policies > *:nth-child(5) {
  -ms-grid-row: 2;
  -ms-grid-column: 2;
}

.top-policies > *:nth-child(6) {
  -ms-grid-row: 2;
  -ms-grid-column: 3;
}
@media screen and (max-width: 767px) {
  .top-policies {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    -ms-grid-rows: (300px)[3];
    grid-template-rows: repeat(3, 300px);
  }
  .top-policies > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .top-policies > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  .top-policies > *:nth-child(3) {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
  }
  .top-policies > *:nth-child(4) {
    -ms-grid-row: 2;
    -ms-grid-column: 2;
  }
  .top-policies > *:nth-child(5) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .top-policies > *:nth-child(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 2;
  }
}
@media screen and (max-width: 499px) {
  .top-policies {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
    -ms-grid-rows: (200px)[6];
    grid-template-rows: repeat(6, 200px);
  }
  .top-policies > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .top-policies > *:nth-child(2) {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
  }
  .top-policies > *:nth-child(3) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .top-policies > *:nth-child(4) {
    -ms-grid-row: 4;
    -ms-grid-column: 1;
  }
  .top-policies > *:nth-child(5) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .top-policies > *:nth-child(6) {
    -ms-grid-row: 6;
    -ms-grid-column: 1;
  }
}
.top-policies__item {
  list-style-type: none;
}
.top-policies__item__name {
  font-weight: bold;
  font-size: var(--font-l);
}
.top-policies__item {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.top-policies__item--cellular {
  background-image: url("../assets/index/job_01.png");
}
.top-policies__item--lan {
  background-image: url("../assets/index/job_02.png");
}
.top-policies__item--fiber {
  background-image: url("../assets/index/job_03.png");
}
.top-policies__item--tv {
  background-image: url("../assets/index/job_01.png");
}
.top-policies__item--maintenance {
  background-image: url("../assets/index/job_02.png");
}
.top-policies__item--sales {
  background-image: url("../assets/index/job_03.png");
}
.top-policies__link {
  height: 100%;
  display: -ms-grid;
  display: grid;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 10px 20px;
  text-decoration: none;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.3);
  color: #FFF;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.top-policies__link:hover {
  background-color: rgba(0, 0, 0, 0.1);
}
.top-recruit {
  margin-top:clamp(34px,5vw,76px);
}
.top-recruit__link {
  position:relative;
  display:grid;
  grid-template-columns:1fr auto;
  gap:10px 28px;
  align-items:center;
  min-height:210px;
  padding:clamp(30px,5vw,58px) clamp(24px,5vw,64px);
  overflow:hidden;
  color:#fff;
  background:#006eb8;
  text-decoration:none;
  box-shadow:0 20px 44px rgba(4,45,78,.16);
}
.top-recruit__link::before {
  content:"";
  position:absolute;
  inset:16px;
  border:1px solid rgba(255,255,255,.32);
  pointer-events:none;
}
.top-recruit__link::after {
  content:"RECRUIT";
  position:absolute;
  right:clamp(18px,4vw,54px);
  bottom:-.28em;
  color:rgba(255,255,255,.12);
  font-family:"Arimo",sans-serif;
  font-size:clamp(4rem,12vw,9.5rem);
  font-weight:700;
  font-style:italic;
  letter-spacing:-.06em;
  line-height:1;
  pointer-events:none;
}
.top-recruit__eyebrow,
.top-recruit__title,
.top-recruit__text,
.top-recruit__button {
  position:relative;
  z-index:1;
}
.top-recruit__eyebrow {
  grid-column:1;
  color:#9fe7ff;
  font-family:"Arimo",sans-serif;
  font-size:.9rem;
  font-weight:700;
  letter-spacing:.22em;
}
.top-recruit__title {
  grid-column:1;
  font-size:clamp(2.1rem,4vw,4rem);
  font-weight:800;
  line-height:1.15;
  letter-spacing:.08em;
}
.top-recruit__text {
  grid-column:1;
  max-width:620px;
  font-size:clamp(.98rem,1.5vw,1.15rem);
  line-height:1.9;
}
.top-recruit__button {
  grid-column:2;
  grid-row:1 / span 3;
  display:inline-grid;
  place-items:center;
  min-width:180px;
  padding:18px 28px;
  color:var(--sub-blue);
  background:#fff;
  font-weight:800;
  letter-spacing:.08em;
  transition:transform .2s ease, background .2s ease;
}
.top-recruit__button::after {
  content:"→";
  margin-left:.7em;
}
.top-recruit__link:hover .top-recruit__button {
  transform:translateX(6px);
  background:#e9f8ff;
}

/* top adjustments */

.top-mainvisual#mvB2 { height:85vh; min-height:560px; overflow:hidden; background:#07162b; isolation:isolate; }
.base-header__mainlinks { gap:26px; font-size:clamp(.82rem,.95vw,.98rem); letter-spacing:.08em; }
.base-header__item--contact .base-header__link { padding:.42em 1.2em; }
.top-section#policy .top-section__title h2 { line-height:1.16; padding-bottom:18px; }
.index .top-section,
.index .top-links,
.index .top-policies {
  width:min(var(--article-max-width), calc(100% - 48px));
  max-width:var(--article-max-width);
  margin-left:auto;
  margin-right:auto;
  padding-left:0;
  padding-right:0;
  box-sizing:border-box;
}
.index .top-section { padding:clamp(16px,4.5vw,60px); }
.index .top-links { justify-content:start; }
.index .top-section#policy { padding-right:0; padding-left:0; }

.top-mainvisual#mvB2 .mv-scene { position:absolute; inset:0; opacity:0; visibility:hidden; overflow:hidden; z-index:0; backface-visibility:hidden; transform:translateZ(0); transition:opacity 1.4s ease, visibility 0s linear 1.4s; will-change:opacity; }
.top-mainvisual#mvB2 .mv-scene--01 { opacity:1; visibility:visible; }
.top-mainvisual#mvB2.is-ready .mv-scene--01:not(.is-active) { opacity:0; visibility:hidden; }
.top-mainvisual#mvB2 .mv-scene.is-active { opacity:1; visibility:visible; z-index:1; transition:opacity 1.4s ease; }
.top-mainvisual#mvB2 .mv-scene::after { content:""; position:absolute; inset:0; background:linear-gradient(120deg,rgba(0,35,88,.46),rgba(0,104,148,.08) 55%,rgba(0,20,52,.34)); }
.top-mainvisual#mvB2 .top-mainvisual__video { position:absolute; inset:0; width:100%; height:100%; max-width:none; object-fit:cover; object-position:center bottom; transform-origin:center center; animation:mv-zoom 24s ease-in-out infinite alternate; }
.top-mainvisual#mvB2 .mv-scene--01 .top-mainvisual__video { object-fit:cover; object-position:center 68%; animation:none; transform:none; }
.top-mainvisual#mvB2 .mv-scene--02 .top-mainvisual__video { object-fit:cover; object-position:center center; animation:none; transform:none; }
.top-mainvisual#mvB2 .mv-scene--03 .top-mainvisual__video { object-fit:cover; object-position:center 70%; animation:none; transform:none; }
.top-mainvisual#mvB2 .top-mainvisual__textwrap { position:absolute; color:#fff; inset:0; z-index:2; display:flex; flex-direction:column; justify-content:center; align-items:center; padding:4vw; pointer-events:none; opacity:0; transition:opacity 1.1s ease; }
.top-mainvisual#mvB2 .top-mainvisual__textwrap--a { opacity:1; }
.top-mainvisual#mvB2.is-ready .top-mainvisual__textwrap--a:not(.is-active) { opacity:0; }
.top-mainvisual#mvB2 .top-mainvisual__textwrap.is-active { opacity:1; }
.top-mainvisual#mvB2 .top-mainvisual__enname { position:relative; width:100%; font-family:"Anton",sans-serif; font-size:clamp(4rem,8.6vw,118px); font-weight:400; text-align:center; line-height:.9; letter-spacing:-.025em; white-space:nowrap; opacity:.34; transform:none; animation:none; }
.top-mainvisual#mvB2 .top-mainvisual__enname--single {
  font-family:"Arimo",sans-serif;
  font-size:clamp(3.6rem,7.2vw,106px);
  font-weight:700;
  font-style:italic;
  line-height:1.05;
  letter-spacing:-.045em;
}
.top-mainvisual#mvB2 .top-mainvisual__enname--second { animation:none; }
.top-mainvisual#mvB2 .top-mainvisual__catch { position:relative; z-index:3; margin:.3em 0; text-align:center; font-size:clamp(1.5rem,2.6vw,36px); line-height:1.5; letter-spacing:2px; background:transparent; text-shadow:0 4px 30px rgba(0,72,186,.5); opacity:1; transform:none; animation:none; }
.top-mainvisual#mvB2 .top-mainvisual__textwrap--a .top-mainvisual__catch {
  position:absolute;
  top:50%;
  right:0;
  left:0;
  width:max-content;
  max-height:72%;
  margin:auto;
  padding:.7em .45em;
  font-size:clamp(1.25rem,2vw,1.9rem);
  font-weight:700;
  line-height:1.45;
  letter-spacing:.12em;
  writing-mode:vertical-rl;
  text-orientation:upright;
  white-space:nowrap;
  transform:translateY(-50%);
}
.top-mainvisual#mvB2 .top-mainvisual__textwrap--c {
  text-align:center;
}
.top-mainvisual#mvB2 .top-mainvisual__catch--wide {
  width:auto;
  margin:0;
  padding:0;
  font-size:clamp(2.4rem,5.2vw,5.6rem);
  font-weight:800;
  line-height:1.25;
  letter-spacing:.08em;
  writing-mode:horizontal-tb;
  text-orientation:mixed;
  white-space:normal;
  transform:none;
}
.top-mainvisual#mvB2 .top-mainvisual__subcopy {
  margin-top:18px;
  font-family:"Arimo",sans-serif;
  font-size:clamp(1.1rem,2vw,2rem);
  font-weight:700;
  letter-spacing:.08em;
  text-shadow:0 4px 24px rgba(0,20,50,.65);
}
@keyframes mv-media-01 { 0%,20%{opacity:1} 25%,95%{opacity:0} 100%{opacity:1} }
@keyframes mv-media-02 { 0%,20%{opacity:0} 25%,45%{opacity:1} 50%,100%{opacity:0} }
@keyframes mv-media-03 { 0%,45%{opacity:0} 50%,70%{opacity:1} 75%,100%{opacity:0} }
@keyframes mv-media-04 { 0%,70%{opacity:0} 75%,95%{opacity:1} 100%{opacity:0} }
@keyframes mv-copy-a { 0%,20%{opacity:1} 25%,45%{opacity:0} 50%,70%{opacity:1} 75%,95%{opacity:0} 100%{opacity:1} }
@keyframes mv-copy-b { 0%,20%{opacity:0} 25%,45%{opacity:1} 50%,70%{opacity:0} 75%,95%{opacity:1} 100%{opacity:0} }
@keyframes mv-zoom { 0%{transform:scale(1.12)} 100%{transform:scale(1.22)} }
@media (max-width:767px) {
  html { overflow-x:hidden; }
  .base-header { padding:10px 14px; gap:10px; }
  .base-header__mainlinks { gap:16px; font-size:.9rem; letter-spacing:.06em; }
  .base-header__corp-logo { width:auto; max-width:min(72vw,310px); height:34px; object-fit:contain; object-position:left center; }
  .base-header__dropdown { width:26px; height:26px; }

  .top-mainvisual#mvB2 { height:68svh; min-height:460px; max-height:680px; }
  .top-mainvisual#mvB2 .top-mainvisual__textwrap { justify-content:center; padding:40px 20px 24px; }
  .top-mainvisual#mvB2 .top-mainvisual__enname {
    width:92%;
    max-width:520px;
    font-size:clamp(2.35rem,10.5vw,4rem);
    line-height:.95;
    letter-spacing:-.035em;
    overflow-wrap:anywhere;
  }
  .top-mainvisual#mvB2 .top-mainvisual__enname--single { width:96%; font-size:clamp(2rem,9vw,3.5rem); line-height:1.08; white-space:normal; }
  .top-mainvisual#mvB2 .top-mainvisual__catch {
    width:min(88%,420px);
    padding:12px 14px;
    font-size:clamp(1.05rem,4.7vw,1.45rem);
    line-height:1.65;
    letter-spacing:.08em;
    background:rgba(0,30,70,.18);
    border-radius:4px;
    text-shadow:0 2px 14px rgba(0,20,50,.8);
  }
  .top-mainvisual#mvB2 .top-mainvisual__textwrap--a .top-mainvisual__catch { max-height:76%; font-size:1.15rem; }
  .top-mainvisual#mvB2 .top-mainvisual__catch--wide {
    width:auto;
    max-width:92%;
    padding:0;
    font-size:clamp(1.8rem,8vw,3rem);
    line-height:1.35;
    background:transparent;
  }
  .top-mainvisual#mvB2 .top-mainvisual__subcopy {
    margin-top:12px;
    font-size:clamp(.9rem,4vw,1.25rem);
  }

  .top-news { display:block; padding:24px 20px; }
  .top-news__title { margin:0 0 8px; font-size:clamp(1.8rem,8vw,2.5rem); text-align:left; }
  .top-news__list { width:100%; border-spacing:0; }
  .top-news__list tr { display:block; padding:14px 0; border-top:1px solid rgba(255,255,255,.28); }
  .top-news__list th,.top-news__list td { display:block; width:100%; padding:0; text-align:left; }
  .top-news__list th { margin-bottom:5px; font-size:.78rem; opacity:.8; }
  .top-news__list td { font-size:.95rem; line-height:1.65; }

  .index .top-section,
  .index .top-links,
  .index .top-policies { width:calc(100% - 28px); padding-left:0; padding-right:0; }
  .index .top-section { padding:32px 20px; }
  .index .top-links { justify-content:start; padding-left:0; padding-right:0; }
  .index .top-section#policy { padding-right:0; padding-left:0; }
  .top-section { margin:24px auto; padding:32px 20px; }
  .top-section#business {
    background-size:cover;
    background-repeat:no-repeat;
    background-position:82% center;
  }
  .top-section__title h2 { font-size:clamp(2.75rem,14vw,4.5rem); letter-spacing:-.035em; }
  .top-section__title p { margin-top:8px; font-size:1rem; }
  .top-section#policy .top-section__title h2 { line-height:1.18; padding-bottom:14px; }
  .top-section__catch { margin:28px 0 20px; font-size:clamp(1.75rem,8.5vw,2.6rem); line-height:1.35; }
  .top-section__catch--icon { width:30px; height:30px; }
  .top-section__sub { margin:18px 0; font-size:1.18rem; line-height:1.6; }
  .top-section__desc { margin-bottom:22px; font-size:.96rem; line-height:1.85; }
  .c-linkarrowbtn { min-height:48px; padding:.8em 1.2em; }

  .top-links { gap:10px; padding:0 14px; }
  .index .top-links { padding-left:0; padding-right:0; }
  .top-links__link { min-height:190px; padding:18px 10px; }
  .top-links__item__icon { height:82px; margin:4px auto 14px; }
  .top-links__item__name { font-size:1.05rem; }
  .top-links__link span:last-child { font-size:.76rem; line-height:1.35; }

  .top-policies { padding:0 14px; }
  .top-policies__item__name { font-size:1.05rem; line-height:1.45; }
  .top-policies__link { padding:18px 12px; }
  .top-policies__link span:last-child { font-size:.72rem; line-height:1.45; }
  .top-recruit { margin-top:34px; }
  .top-recruit__link {
    grid-template-columns:1fr;
    gap:12px;
    min-height:0;
    padding:30px 22px;
  }
  .top-recruit__link::before { inset:10px; }
  .top-recruit__link::after {
    right:12px;
    bottom:-.18em;
    font-size:4rem;
  }
  .top-recruit__title { font-size:2rem; }
  .top-recruit__text { font-size:.94rem; line-height:1.8; }
  .top-recruit__button {
    grid-column:1;
    grid-row:auto;
    justify-self:start;
    min-width:0;
    margin-top:8px;
    padding:14px 20px;
  }

  .c-contact__area { margin-top:40px; padding:24px 14px; }
  .c-contact { margin:0 auto; padding:24px 18px; }
  .c-contact__title { font-size:clamp(1.35rem,6vw,1.8rem); line-height:1.45; }
  .c-contact__wrap { grid-template-columns:1fr; gap:12px; width:100%; }
  .c-contact__form,.c-contact__tel { grid-column:1; grid-row:auto; }
  .c-contact__form { min-height:52px; padding:12px; }
  .c-contact__tel { font-size:1.1rem; text-align:center; }

  .base-footer { padding:28px 18px; }
  .base-footer__aboutus__name { font-size:1.1rem; }
  .base-footer__aboutus__address { font-size:.86rem; line-height:1.7; }
  .base-footer__mainlinks { gap:10px 18px; font-size:.85rem; line-height:1.5; }
}
@media (max-width:499px) {
  .top-links { grid-template-columns:1fr; }
  .top-links__link { min-height:154px; }
  .top-links__item__icon { height:68px; }
  .top-policies { grid-template-rows:repeat(6,170px); }
}
@media (max-width:374px) {
  .base-header__corp-logo { max-width:68vw; height:28px; }
  .top-mainvisual#mvB2 { min-height:430px; }
  .top-mainvisual#mvB2 .top-mainvisual__enname { font-size:2.25rem; }
  .top-mainvisual#mvB2 .top-mainvisual__catch { font-size:1rem; }
  .top-section#business { background-position:84% center; }
}
@media (prefers-reduced-motion:reduce) {
  .top-mainvisual#mvB2 .mv-scene,.top-mainvisual#mvB2 .top-mainvisual__video,.top-mainvisual#mvB2 .top-mainvisual__textwrap,.top-mainvisual#mvB2 .top-mainvisual__enname,.top-mainvisual#mvB2 .top-mainvisual__catch { animation:none; }
  .top-mainvisual#mvB2 .mv-scene:first-child,.top-mainvisual#mvB2 .top-mainvisual__textwrap--a,.top-mainvisual#mvB2 .top-mainvisual__catch { opacity:1; transform:none; }
}


/* inner adjustments */

:root {
  --sub-blue:#0077c0;
  --sub-cyan:#00a4a6;
  --sub-navy:#073763;
  --sub-bg:#f4f8fb;
  --sub-line:#d7e3eb;
}
html { scroll-behavior:smooth; }
body { color:#17212b; }
.page-title {
  min-height:300px;
  display:grid;
  place-items:center;
  padding:55px 20px;
  color:#fff;
  text-align:center;
  background:
    linear-gradient(110deg,rgba(0,42,90,.84),rgba(0,119,192,.38)),
    url("../assets/index/head_bk.webp") center top/cover no-repeat;
}
.page-title p { margin-bottom:8px; font-size:.84rem; font-weight:800; letter-spacing:.2em; }
.page-title h1 { font-size:clamp(2.5rem,5vw,4.2rem); }
.page-title span { display:block; margin-top:16px; line-height:1.8; }
.sub-hero {
  min-height:420px;
  display:grid;
  align-items:center;
  color:#fff;
  background:
    linear-gradient(90deg,rgba(0,42,90,.82),rgba(0,92,146,.35)),
    url("../assets/index/head_bk.webp") center top/cover no-repeat;
}
.sub-hero__inner { width:min(1120px,calc(100% - 40px)); margin:auto; }
.sub-hero__en { margin-bottom:18px; font-size:.85rem; font-weight:700; letter-spacing:.2em; opacity:.82; }
.sub-hero h1 { max-width:780px; font-size:clamp(2.5rem,6vw,5.2rem); line-height:1.15; letter-spacing:.02em; }
.sub-hero h1 + p { max-width:650px; margin-top:24px; font-size:clamp(1rem,1.8vw,1.25rem); line-height:1.8; }
.local-nav {
  position:sticky;
  top:76px;
  z-index:20;
  display:grid;
  grid-template-columns:repeat(5,1fr);
  width:min(1120px,calc(100% - 40px));
  margin:-28px auto 0;
  background:#fff;
  box-shadow:0 10px 30px rgba(0,47,88,.13);
}
.local-nav a { padding:18px 8px; color:var(--sub-navy); text-align:center; text-decoration:none; font-weight:700; border-right:1px solid var(--sub-line); }
.local-nav a:last-child { border-right:0; }
.local-nav a:hover { color:#fff; background:var(--sub-blue); }
.inner-section { width:min(1120px,calc(100% - 40px)); margin:auto; padding:100px 0; scroll-margin-top:130px; }
.inner-section--tint { width:100%; padding-right:max(20px,calc((100% - 1120px)/2)); padding-left:max(20px,calc((100% - 1120px)/2)); background:var(--sub-bg); }
.section-heading { margin-bottom:42px; border-bottom:1px solid #aebbc5; }
.section-heading p { color:var(--sub-blue); font-weight:800; letter-spacing:.16em; }
.section-heading h2 { margin:5px 0 20px; font-size:clamp(2rem,4vw,3.4rem); }
.section-lead { max-width:none; margin:-18px 0 42px; line-height:2; }
.service-index { display:grid; grid-template-columns:repeat(3,1fr); gap:12px; margin-bottom:70px; }
.service-index a { display:grid; place-items:center; min-height:74px; padding:12px; color:#fff; background:var(--sub-cyan); text-align:center; text-decoration:none; font-weight:700; }
.service-index--business { grid-template-columns:repeat(4,1fr); margin-bottom:64px; }
.service-index--business a {
  justify-content:center;
  place-items:center;
  min-height:74px;
  padding:12px;
  background:var(--sub-cyan);
  color:#fff;
  border-left:0;
  box-shadow:none;
}
.service-index--business a:hover { color:#fff; background:var(--sub-blue); }
.business-domain { margin-top:42px; }
.business-domain__heading {
  margin-bottom:34px;
  padding:34px 38px;
  color:#fff;
  background:linear-gradient(135deg,var(--sub-navy),var(--sub-blue));
}
.business-domain__heading span {
  display:block;
  margin-bottom:8px;
  font-size:.82rem;
  font-weight:800;
  letter-spacing:.18em;
  text-transform:uppercase;
  opacity:.85;
}
.business-domain__heading h3 {
  font-size:clamp(1.7rem,3.4vw,3rem);
  line-height:1.35;
}
.business-domain__heading p {
  margin-top:14px;
  line-height:1.8;
}
.business-domain__grid {
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:30px;
}
.business-card {
  position:relative;
  overflow:hidden;
  background:#fff;
  border:1px solid var(--sub-line);
  box-shadow:0 18px 40px rgba(4,45,78,.08);
}
.business-card__image { margin:0; }
.business-card__image img {
  width:100%;
  aspect-ratio:16/9;
  object-fit:cover;
}
.business-card__body {
  position:relative;
  padding:34px 34px 38px;
}
.business-card__number {
  position:absolute;
  top:-38px;
  right:24px;
  color:rgba(255,255,255,.9);
  font-size:4.2rem;
  font-weight:900;
  line-height:1;
  text-shadow:0 8px 24px rgba(0,38,80,.32);
}
.business-card h3 {
  position:relative;
  margin-bottom:18px;
  padding-bottom:16px;
  color:var(--sub-navy);
  font-size:clamp(1.35rem,2.3vw,1.9rem);
  line-height:1.45;
}
.business-card h3::after {
  content:"";
  position:absolute;
  bottom:0;
  left:0;
  width:70px;
  height:3px;
  background:var(--sub-blue);
}
.business-card h3 span {
  display:block;
  margin-top:4px;
  color:var(--sub-blue);
  font-size:.62em;
}
.business-card p {
  line-height:1.9;
}
.business-card__lead {
  margin-bottom:16px;
  color:var(--sub-blue);
  font-size:1.08rem;
  font-weight:800;
}
.business-card__area {
  margin-top:26px;
  padding:24px;
  background:var(--sub-bg);
  border-left:4px solid var(--sub-cyan);
}
.business-card__area h4 {
  margin-bottom:12px;
  color:var(--sub-navy);
  font-size:1rem;
}
.business-card__area ul {
  margin:0;
  padding:0;
}
.business-card__area li {
  position:relative;
  list-style:none;
  padding-left:1.1em;
  line-height:1.85;
}
.business-card__area li::before {
  content:"";
  position:absolute;
  top:.78em;
  left:0;
  width:.42em;
  height:.42em;
  background:var(--sub-blue);
  border-radius:50%;
}
.service-detail { margin-top:80px; padding-top:20px; scroll-margin-top:150px; }
.service-detail + .service-detail { padding-top:75px; border-top:1px solid var(--sub-line); }
.service-detail__copy h3,.minor-heading { padding-bottom:12px; font-size:1.55rem; border-bottom:1px solid #9aa8b2; }
.service-detail__copy p { margin:18px 0 26px; line-height:1.9; }
.service-points { display:grid; grid-template-columns:repeat(3,1fr); gap:10px; margin:0 0 28px; padding:0; }
.service-points li { list-style:none; padding:14px 16px; color:var(--sub-navy); background:#edf6f9; border-left:4px solid var(--sub-cyan); font-size:.92rem; line-height:1.55; }
.photo-grid { display:grid; gap:16px; }
.photo-grid--three { grid-template-columns:repeat(3,1fr); }
.photo-grid img { width:100%; aspect-ratio:4/3; object-fit:cover; }
.photo-grid figcaption { padding-top:8px; font-size:.85rem; }
.service-cards { display:grid; grid-template-columns:repeat(2,1fr); gap:18px; margin-top:70px; }
.service-cards article { padding:28px; background:var(--sub-bg); border-left:5px solid var(--sub-cyan); }
.service-cards h3 { margin-bottom:12px; font-size:1.2rem; }
.service-cards p,.privacy p { line-height:1.9; }
.message-panel { margin-bottom:55px; padding:34px; background:#fff; text-align:center; box-shadow:0 12px 35px rgba(0,57,92,.08); }
.message-panel > p:first-child { color:var(--sub-blue); font-size:1.3rem; font-weight:800; }
.message-panel h3 { margin:18px 0; font-size:clamp(1.4rem,3vw,2rem); }
.company-layout { display:block; max-width:980px; margin:0 auto 76px; padding-top:14px; }
.company-layout .minor-heading { margin-bottom:22px; }
.company-table > div { display:grid; grid-template-columns:140px 1fr; padding:17px 0; border-bottom:1px dotted #75b7cc; }
.company-table dt { font-weight:700; }
.company-table dd { line-height:1.9; }
.company-photo { width:100%; margin-top:55px; }
.company-layout + .minor-heading { margin-top:76px; margin-bottom:24px; }
.qualification-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:18px; margin-top:20px; margin-bottom:76px; }
.qualification-grid div { padding:25px; background:#fff; border-radius:8px; }
.qualification-grid p { margin-top:10px; line-height:1.8; }
.company-subsection { margin-top:70px; }
.access-layout { display:grid; grid-template-columns:.8fr 1.2fr; gap:30px; align-items:stretch; margin-top:24px; }
.access-layout address { margin:18px 0; font-style:normal; line-height:1.8; }
.access-layout p { line-height:1.8; }
.map-link { display:inline-block; margin-top:18px; padding:12px 24px; color:#fff; background:var(--sub-blue); text-decoration:none; }
.map-embed { min-height:260px; overflow:hidden; border:1px solid #bcd6e1; background:#e4f2f7; }
.map-embed iframe { display:block; width:100%; height:100%; min-height:360px; }
.map-placeholder { min-height:260px; display:grid; place-content:center; gap:10px; padding:30px; color:var(--sub-navy); text-align:center; background:linear-gradient(135deg,#e4f2f7,#fff); border:1px solid #bcd6e1; }
.map-placeholder span { font-size:2rem; font-weight:900; letter-spacing:.15em; }
.history-table { margin-top:20px; }
.history-table div { display:grid; grid-template-columns:150px 1fr; gap:20px; padding:16px 0; border-bottom:1px dotted #75b7cc; }
.history-table dt { color:var(--sub-blue); font-weight:700; }
#organization { scroll-margin-top:76px; padding-top:24px; padding-bottom:190px; }
.organization-chart { max-width:1160px; min-height:460px; margin:56px auto 0; padding:58px 42px 72px; text-align:center; background:#f8fcfe; border:1px solid #d4e6ee; }
.organization-chart__head { position:relative; width:320px; margin:auto; padding:26px 22px; color:#fff; background:var(--sub-blue); font-size:1.38rem; font-weight:800; }
.organization-chart__head::after { content:""; position:absolute; bottom:-58px; left:50%; width:2px; height:58px; background:#89aabd; transform:translateX(-50%); }
.organization-chart__branch { position:relative; display:grid; grid-template-columns:repeat(4,1fr); gap:32px; margin-top:112px; }
.organization-chart__branch::before { content:""; position:absolute; top:-54px; right:calc(12.5% - 16px); left:calc(12.5% - 16px); height:2px; background:#89aabd; }
.organization-chart__branch div { position:relative; display:grid; align-content:center; gap:14px; min-height:160px; padding:38px 26px; background:#fff; border:1px solid #bcd0dc; box-shadow:0 16px 32px rgba(0,70,120,.09); }
.organization-chart__branch div::before { content:""; position:absolute; top:-54px; left:50%; width:2px; height:54px; background:#89aabd; transform:translateX(-50%); }
.organization-chart__branch strong { font-size:1.16rem; }
.organization-chart__branch span { font-size:.96rem; line-height:1.8; }
.works-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:32px; }
.works-grid article { overflow:hidden; background:#fff; border:1px solid var(--sub-line); }
.works-grid img { width:100%; aspect-ratio:16/9; object-fit:cover; }
.works-grid article > div { padding:22px; }
.works-grid span { color:var(--sub-blue); font-size:.82rem; font-weight:700; }
.works-grid h3 { margin:7px 0 12px; font-size:1.25rem; }
.works-grid p { line-height:1.75; }
.work-category { margin-top:75px; padding-top:25px; }
.work-category + .work-category { padding-top:70px; border-top:1px solid var(--sub-line); }
.work-category__heading span { color:var(--sub-blue); font-size:.78rem; font-weight:800; letter-spacing:.16em; }
.work-category__heading h3 { margin:5px 0 14px; font-size:clamp(1.5rem,3vw,2rem); }
.work-category__heading p { max-width:none; margin-bottom:25px; line-height:1.9; }
.work-gallery { display:grid; grid-template-columns:repeat(3,1fr); gap:14px; }
.work-gallery img { width:100%; aspect-ratio:4/3; object-fit:cover; }
.work-gallery figcaption { padding-top:9px; font-size:.83rem; }
.works-history { margin-top:90px; }
.works-history__table { margin-top:22px; }
.works-history__table > div { display:grid; grid-template-columns:160px 1fr; gap:20px; padding:16px 14px; border-bottom:1px dotted #75b7cc; }
.works-history__head { color:#fff; background:var(--sub-cyan); border:0!important; font-weight:800; }
.works-history time { color:var(--sub-blue); font-weight:700; }
.recruit-section .section-lead { margin-bottom:42px; }
.recruit-table-wrap { overflow:hidden; background:#fff; border:1px solid #c8d8e3; border-radius:8px; box-shadow:0 16px 42px rgba(4,45,78,.08); }
.recruit-table { width:100%; border-collapse:collapse; }
.recruit-table th,
.recruit-table td { padding:22px 28px; border-bottom:1px solid #dbe8ef; vertical-align:top; line-height:1.9; }
.recruit-table tr:last-child th,
.recruit-table tr:last-child td { border-bottom:0; }
.recruit-table th { width:210px; color:#fff; background:var(--sub-blue); font-weight:800; text-align:left; letter-spacing:.08em; }
.recruit-table td { color:#17233a; background:#fff; }
.recruit-table ul { display:grid; gap:6px; margin:0; padding:0; list-style:none; }
.recruit-table li { position:relative; padding-left:1.2em; }
.recruit-table li::before { content:""; position:absolute; top:.85em; left:0; width:6px; height:6px; background:var(--sub-blue); border-radius:50%; }
.recruit-table p { margin:0; }
.recruit-table p + p { margin-top:6px; }
.recruit-table a { color:var(--sub-blue); font-weight:700; text-decoration:none; }
.recruit-table a:hover { text-decoration:underline; }
.contact-lead { max-width:760px; margin:-15px auto 38px; text-align:center; line-height:1.9; }
.contact-info { display:grid; grid-template-columns:1fr 1fr; max-width:820px; margin:0 auto 65px; overflow:hidden; color:#fff; background:var(--sub-navy); border-radius:8px; box-shadow:0 16px 36px rgba(4,45,78,.14); }
.contact-info > div { display:grid; place-items:center; padding:26px 18px; text-align:center; }
.contact-info > div + div { border-left:1px solid rgba(255,255,255,.22); }
.contact-info span { margin-bottom:7px; font-size:.88rem; opacity:.82; }
.contact-info a,.contact-info strong { color:#fff; font-size:clamp(1.45rem,3vw,2rem); font-weight:800; text-decoration:none; }
.contact-info small { grid-column:1/-1; padding:12px; text-align:center; background:rgba(255,255,255,.08); }
.contact-form-wrap { max-width:900px; margin:auto; padding:48px 55px; background:#fff; border-radius:10px; box-shadow:0 15px 45px rgba(4,45,78,.09); }
.contact-form-wrap > h3 { font-size:1.7rem; text-align:center; }
.contact-form-wrap > p { margin:12px 0 38px; text-align:center; line-height:1.7; }
.contact-form { display:grid; gap:0; }
.form-honeypot { position:absolute!important; left:-9999px!important; width:1px!important; height:1px!important; overflow:hidden!important; }
.form-row { display:grid; grid-template-columns:210px 1fr; gap:28px; align-items:center; padding:18px 0; border-top:1px solid var(--sub-line); }
.form-row > label { display:flex; align-items:center; justify-content:space-between; gap:12px; font-weight:700; }
.form-row label span { flex:none; padding:3px 7px; color:#fff; background:#e54848; border-radius:3px; font-size:.66rem; font-weight:700; }
.contact-form input,.contact-form select,.contact-form textarea { width:100%; padding:13px 14px; background:#f7f9fa; border:1px solid #c8d5dd; border-radius:3px; transition:border-color .2s,box-shadow .2s; }
.contact-form input:focus,.contact-form select:focus,.contact-form textarea:focus { outline:0; border-color:var(--sub-blue); box-shadow:0 0 0 3px rgba(0,119,192,.13); }
.form-row--textarea { align-items:start; }
.privacy-summary { margin:34px 0 22px; padding:22px 25px; background:#f3f7f9; border:1px solid var(--sub-line); }
.privacy-summary h4 { margin-bottom:8px; }
.privacy-summary p { font-size:.88rem; line-height:1.75; }
.privacy-summary a { display:inline-block; margin-top:9px; color:var(--sub-blue); font-size:.88rem; }
.contact-form .consent { display:flex; align-items:center; justify-content:center; gap:10px; margin-bottom:25px; font-weight:400; cursor:pointer; }
.contact-form .consent input { width:18px; height:18px; }
.contact-form .consent span { padding:0; color:inherit; background:none; font-size:.92rem; }
.contact-form button { width:min(100%,340px); margin:auto; padding:17px; color:#fff; background:var(--sub-blue); border:0; border-radius:3px; font-size:1rem; font-weight:700; cursor:pointer; transition:background .2s,transform .2s; }
.contact-form button:hover { background:#005e99; transform:translateY(-2px); }
.contact-form button:disabled { background:#b7c5d1; cursor:not-allowed; transform:none; opacity:.75; }
.contact-form button:disabled:hover { background:#b7c5d1; transform:none; }
.form-result { max-width:900px; }
.result-card { padding:45px; background:#fff; border-radius:10px; box-shadow:0 15px 45px rgba(4,45,78,.09); }
.result-card > h2 { margin-bottom:25px; text-align:center; }
.result-card > p { text-align:center; line-height:1.9; }
.result-card--error { border-top:5px solid #d94a4a; }
.result-card--complete { border-top:5px solid var(--sub-cyan); }
.error-list { max-width:600px; margin:0 auto 30px; padding:20px 20px 20px 45px; background:#fff4f4; line-height:1.9; }
.confirm-list > div { display:grid; grid-template-columns:190px 1fr; border-top:1px solid var(--sub-line); }
.confirm-list dt,.confirm-list dd { padding:17px; }
.confirm-list dt { font-weight:700; background:#f3f7f9; }
.result-actions { display:flex; justify-content:center; gap:14px; margin-top:35px; }
.result-button { display:inline-block; min-width:190px; padding:15px 20px; color:var(--sub-navy); background:#e5edf1; border:0; text-align:center; text-decoration:none; font-weight:700; cursor:pointer; }
.result-button--primary { color:#fff; background:var(--sub-blue); }
.privacy { max-width:900px; }
.privacy > p { margin-bottom:35px; }
.privacy article { margin-top:30px; }
.privacy h3 { margin-bottom:10px; color:var(--sub-blue); font-size:1.2rem; }
.security-policy { margin-top:90px; padding-top:75px; border-top:1px solid var(--sub-line); }
.security-policy > header { margin-bottom:35px; }
.security-policy > header p { color:var(--sub-blue); font-size:.8rem; font-weight:800; letter-spacing:.16em; }
.security-policy > header h2 { margin-top:6px; font-size:clamp(2rem,4vw,3rem); line-height:1.35; }
.security-policy__lead { padding:28px 30px; background:var(--sub-bg); border-left:5px solid var(--sub-blue); }
.security-policy__list { margin:45px 0 0; padding:0; counter-reset:security-policy; }
.security-policy__list li { position:relative; list-style:none; margin-top:34px; padding:0 0 34px 72px; border-bottom:1px solid var(--sub-line); counter-increment:security-policy; }
.security-policy__list li::before { content:counter(security-policy,decimal-leading-zero); position:absolute; top:-8px; left:0; color:#b9d9e7; font-size:2.4rem; font-weight:800; line-height:1; }
.security-policy__list h3 { margin-bottom:10px; }
.security-policy__list p { line-height:1.9; }
@media (max-width:900px) {
  .local-nav { top:58px; grid-template-columns:repeat(3,1fr); }
  .service-index { grid-template-columns:repeat(2,1fr); }
  .service-index--business,.business-domain__grid { grid-template-columns:repeat(2,1fr); }
  .company-layout,.access-layout { grid-template-columns:1fr; }
  .company-photo { max-width:520px; margin:0 auto; }
}
@media (max-width:600px) {
  .page-title { min-height:240px; padding:42px 18px; background-position:center top; }
  .page-title h1 { font-size:2.35rem; }
  .page-title span { font-size:.9rem; }
  .sub-hero { min-height:350px; background-position:center top; }
  .sub-hero__inner { width:calc(100% - 32px); }
  .sub-hero h1 { font-size:2.4rem; }
  .local-nav { position:relative; top:auto; grid-template-columns:repeat(2,1fr); width:calc(100% - 24px); }
  .local-nav a { padding:14px 6px; font-size:.84rem; }
  .inner-section { width:calc(100% - 32px); padding:70px 0; scroll-margin-top:70px; }
  .inner-section--tint { width:100%; padding-right:16px; padding-left:16px; }
  .section-heading { margin-bottom:32px; }
  .service-index,.service-cards,.photo-grid--three,.works-grid,.qualification-grid,.work-gallery { grid-template-columns:1fr; }
  .service-index--business,.business-domain__grid { grid-template-columns:1fr; }
  .service-index--business { margin-bottom:46px; }
  .business-domain__heading { padding:28px 22px; }
  .business-card__body { padding:28px 22px 32px; }
  .business-card__number { top:-30px; right:18px; font-size:3.2rem; }
  .business-card__area { padding:20px 18px; }
  .service-points { grid-template-columns:1fr; }
  .service-detail { margin-top:60px; }
  .service-detail + .service-detail { padding-top:55px; }
  .service-index { gap:8px; }
  .photo-grid--three { gap:24px; }
  .company-table > div { grid-template-columns:1fr; gap:5px; }
  .company-table dt { color:var(--sub-blue); }
  .history-table div,.works-history__table > div { grid-template-columns:1fr; gap:6px; }
  .organization-chart__head::after,.organization-chart__branch::before,.organization-chart__branch div::before { display:none; }
  #organization { scroll-margin-top:76px; padding-bottom:90px; }
  .organization-chart { min-height:auto; margin-top:30px; padding:28px 18px 32px; }
  .organization-chart__head { width:min(100%,260px); padding:18px 16px; font-size:1.08rem; }
  .organization-chart__branch { grid-template-columns:1fr; gap:18px; margin-top:30px; }
  .organization-chart__branch div { min-height:auto; padding:24px 20px; }
  .recruit-table-wrap { overflow:visible; border-radius:6px; }
  .recruit-table,
  .recruit-table tbody,
  .recruit-table tr,
  .recruit-table th,
  .recruit-table td { display:block; width:100%; }
  .recruit-table tr { border-bottom:1px solid #dbe8ef; }
  .recruit-table tr:last-child { border-bottom:0; }
  .recruit-table th { padding:13px 18px; border-bottom:0; }
  .recruit-table td { padding:17px 18px 22px; border-bottom:0; }
  .company-subsection,.works-history { margin-top:60px; }
  .work-category { margin-top:55px; }
  .work-category + .work-category { padding-top:50px; }
  .message-panel { padding:25px 18px; }
  .security-policy { margin-top:65px; padding-top:55px; }
  .security-policy__lead { padding:22px 20px; }
  .security-policy__list li { padding-left:54px; }
  .security-policy__list li::before { font-size:1.85rem; }
  .contact-info { grid-template-columns:1fr; }
  .contact-info > div + div { border-top:1px solid rgba(255,255,255,.22); border-left:0; }
  .contact-form-wrap { padding:32px 18px; }
  .form-row { grid-template-columns:1fr; gap:9px; padding:16px 0; }
  .form-row > label { justify-content:flex-start; }
  .result-card { padding:30px 18px; }
  .confirm-list > div { grid-template-columns:1fr; }
  .confirm-list dt { padding-bottom:8px; }
  .confirm-list dd { padding-top:8px; }
  .result-actions { flex-direction:column; }
  .result-button { width:100%; }
}

/* business page: image + text layout */
.business-domain {
  margin-top:56px;
}
.business-domain__heading {
  margin-bottom:64px;
  padding:0;
  color:var(--sub-navy);
  background:transparent;
}
.business-domain__heading span {
  color:var(--sub-blue);
}
.business-domain__heading p {
  max-width:none;
}
.business-domain__grid {
  display:grid;
  grid-template-columns:1fr;
  gap:0;
}
.business-card {
  display:grid;
  grid-template-columns:minmax(0,1.08fr) minmax(0,.92fr);
  gap:46px 62px;
  align-items:center;
  overflow:visible;
  background:transparent;
  border:0;
  box-shadow:none;
}
.business-card + .business-card {
  margin-top:82px;
  padding-top:82px;
  border-top:1px solid #c7d8e3;
}
.business-card:nth-child(even) .business-card__image {
  grid-column:2;
  grid-row:1;
}
.business-card:nth-child(even) .business-card__body {
  grid-column:1;
  grid-row:1;
}
.business-card__details {
  grid-column:1 / -1;
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:28px;
}
.business-card__image {
  overflow:hidden;
  border-radius:4px;
}
.business-card__image img {
  width:100%;
  aspect-ratio:16/9;
  object-fit:cover;
}
.business-card__body {
  padding:0;
}
.business-card__number {
  display:none;
}
.business-card h3 {
  display:grid;
  grid-template-columns:1fr;
  align-items:center;
  gap:0;
  margin-bottom:30px;
  padding-bottom:0;
  color:#202734;
  font-size:clamp(1.65rem,2.9vw,2.4rem);
  line-height:1.35;
  letter-spacing:.04em;
}
.business-card h3 span {
  display:block;
}
.business-card__title {
  grid-column:1;
}
.business-card__subtitle {
  grid-column:1;
  margin-top:6px;
  color:var(--sub-blue);
  font-size:.7em;
  font-weight:700;
  letter-spacing:.04em;
}
.business-card h3::before {
  display:none;
}
.business-card h3::after {
  display:none;
}
.business-card p {
  color:#17233a;
  font-size:1rem;
  line-height:2.05;
  letter-spacing:.04em;
}
.business-card__lead {
  margin-bottom:18px;
  color:#17233a;
  font-size:1.08rem;
  font-weight:800;
}
.business-card__area {
  margin-top:0;
  padding:26px 28px;
  background:#f7fbfd;
  border:1px solid #d5e4ec;
  border-left:4px solid var(--sub-blue);
}
.business-card__area--results {
  margin-top:0;
  padding-top:26px;
  border-top:1px solid #d5e4ec;
}
.business-card__area h4 {
  margin-bottom:10px;
  color:var(--sub-blue);
  font-size:.94rem;
}
.business-card__area li {
  line-height:1.9;
}

@media (max-width:900px) {
  .business-card {
    grid-template-columns:1fr;
    gap:30px;
  }
  .business-card + .business-card {
    margin-top:68px;
    padding-top:68px;
  }
  .business-card:nth-child(even) .business-card__image,
  .business-card:nth-child(even) .business-card__body,
  .business-card:nth-child(even) .business-card__details {
    grid-column:auto;
    grid-row:auto;
  }
  .business-card__details {
    grid-template-columns:1fr;
    gap:18px;
  }
}

@media (max-width:600px) {
  .business-domain {
    margin-top:42px;
  }
  .business-domain__heading {
    margin-bottom:42px;
  }
  .business-card + .business-card {
    margin-top:52px;
    padding-top:52px;
  }
  .business-card h3 {
    gap:0;
    grid-template-columns:1fr;
    margin-bottom:22px;
    font-size:1.55rem;
  }
  .business-card h3::before {
    display:none;
  }
  .business-card p {
    font-size:.95rem;
    line-height:1.9;
  }
}



