@charset "UTF-8";
/* --------------------------------

  CSS Reset

-------------------------------- */
html, body,
h1, h2, h3, h4, h5, h6,
a, p, span,
em, small, strong,
sub, sup,
mark, del, ins, strike,
abbr, dfn,
blockquote, q, cite,
code, pre,
ol, ul, li, dl, dt, dd,
div, section, article,
main, aside, nav,
header, hgroup, footer,
img, figure, figcaption,
address, time,
audio, video,
canvas, iframe,
details, summary,
fieldset, form, label, legend,
table, caption,
tbody, tfoot, thead,
tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: 400;
  font-style: normal;
}

article, aside, footer, header, nav, section, main, figure, figcaption {
  display: block;
}

:root {
  --font-family: "Noto Sans JP", sans-serif;
  --color-text: #000;
  --color-link: #417abe;
  --color-hover: #41a1be;
  --color-base: #417abe;
  --color-main: #41a1be;
  --color-sub1: #051a2e;
  --color-sub2: #f4f4f4;
  --color-sub3: #ddd;
  --color-sub4: #aaa;
  --color-sub5: #e9f2f5;
  --color-sub6: #d5e6ec;
  --color-grd1: rgba(0, 0, 0, 0);
  --color-grd2: rgba(0, 0, 0, 1);
  --transition: 0.3s;
  --inner-width: 110rem;
  --inner-width2: 130rem;
  --inner-width3: 160rem;
  --box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.3);
  --box-shadow2: 0 0 10px 5px rgba(7, 38, 73, 1);
  --box-shadow3: 0 0 10px 0 rgba(1, 48, 104, 0.5);
  --text-shadow: 0 0 10px rgba(7, 38, 73, 1), 0 0 10px rgba(7, 38, 73, 1);
  --text-shadow2: 0 0 10px rgba(7, 38, 73, 0.5), 0 0 10px rgba(7, 38, 73, 0.5);
}

* {
  scroll-behavior: auto !important;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*:before,
*:after,
*::before,
*::after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

a {
  color: var(--color-link);
  border: none;
  text-decoration: none;
}

a:hover {
  color: var(--color-hover);
  text-decoration: underline;
}

img, video, iframe {
  max-width: 100%;
}

img {
  height: auto;
  border: none;
  vertical-align: top;
}

b, strong {
  font-weight: 700;
}

em {
  font-style: italic;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
blockquote::before,
blockquote::after,
q:before,
q:after,
q::before,
q::after {
  content: "";
  content: none;
}

a, area, button, [role=button], input:not([type=range]), label, select, summary, textarea {
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}

button {
  border: none;
  background: none;
}
button:hover, button:active, button:focus {
  outline: none;
}
button:active, button:focus {
  box-shadow: none;
}

/* --------------------------------

  共通スタイル

-------------------------------- */
html,
body {
  height: 100%;
}

html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
@media screen and (min-width: 1100px), print {
  html {
    overflow-y: scroll;
  }
}

body {
  min-width: 32rem;
  line-height: 1.5;
  font-size: 1.4rem;
  font-family: var(--font-family);
  color: var(--color-text);
  text-align: left;
  letter-spacing: 0.05em;
  background-color: #fff;
}
@media screen and (min-width: 768px), print {
  body {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 1099.98px) {
  html.nav-open {
    position: relative;
    width: 100%;
    height: 100%;
    overflow-y: hidden;
    overflow-x: hidden;
  }
}

/* 共通セクション */
.c-section {
  line-height: 1.8;
}
.c-section__secondary {
  line-height: 1.8;
}
@media screen and (min-width: 1100px), print {
  .c-section__secondary {
    max-width: var(--inner-width);
    margin-inline: auto;
  }
}
.c-section__secondary:not(:last-child) {
  margin-bottom: 10rem;
}
@media screen and (min-width: 1100px), print {
  .c-section__secondary:not(:last-child) {
    margin-bottom: 15rem;
  }
}
.c-section__dummy:not(:last-child) {
  margin-bottom: 10rem;
}
@media screen and (min-width: 1100px), print {
  .c-section__dummy:not(:last-child) {
    margin-bottom: 15rem;
  }
}
.c-section__dummy--fluid {
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
}

/* 共通ヘッダー */
.c-header {
  position: relative;
  margin-bottom: 5rem;
}
/* 共通見出し */
.c-heading {
  position: relative;
  max-width: var(--inner-width);
  margin-inline: auto;
  line-height: 1.2;
  font-feature-settings: "palt" 1;
}
.c-heading.__h2 {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  font-weight: 700;
  font-size: 2.5rem;
  text-align: center;
  border-bottom: 0.4rem solid var(--color-sub4);
}
.c-heading.__h2::before {
  content: "";
  display: block;
  position: absolute;
  bottom: -0.4rem;
  left: 0;
  width: 50%;
  height: 0.4rem;
  background-color: var(--color-base);
}
@media screen and (min-width: 768px), print {
  .c-heading.__h2 {
    margin-bottom: 5rem;
    padding-bottom: 2.5rem;
    font-size: 3rem;
  }
}
@media screen and (min-width: 1100px), print {
  .c-heading.__h2 {
    font-size: 3.5rem;
    border-bottom-width: 0.5rem;
  }
  .c-heading.__h2::before {
    bottom: -0.5rem;
    height: 0.5rem;
  }
}
.c-heading .__sm {
  margin-inline: 0.3ch;
  font-weight: 700;
  font-size: 0.7em;
}

/* リンクボタン */
.c-link-button {
  display: inline-block;
  vertical-align: top;
  position: relative;
  min-width: 20rem;
  padding: 1.2rem 4rem 1.2rem 2rem;
  line-height: 1.2;
  font-weight: 500;
  font-size: 1.6rem;
  color: #fff;
  text-align: left;
  border-radius: 0.5rem;
  background-color: var(--color-link);
  transition: color var(--transition), border-color var(--transition), background-color var(--transition);
}
.c-link-button::before {
  content: "";
  display: block;
  position: absolute;
  top: 0.025em;
  right: 2rem;
  bottom: 0;
  width: 1rem;
  height: 1rem;
  margin: auto;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}
.c-link-button-lg {
  font-size: 1.1em;
}
/* 共通リンクボタン（ホバー）*/
.c-link-button[href]:hover {
  text-decoration: none;
  color: #fff;
}
@media (hover: hover) and (pointer: fine) {
  .c-link-button[href]:hover {
    color: #fff;
    background-color: var(--color-hover);
  }
}

/* コンテンツ画面中央寄せ */
.c-inner {
  position: relative;
  max-width: var(--inner-width);
  margin-inline: auto;
}
.c-inner::after {
  content: "";
  display: table;
  clear: both;
}
/* Google Maps */
.c-map-area {
  position: relative;
  height: 40rem;
}
.c-map-area iframe {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* 共通テーブル */
.c-table {
  display: block;
  line-height: 1.5;
}
.c-table tbody {
  display: block;
}
.c-table tr {
  display: table;
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background-color: var(--color-sub2);
}
.c-table tr:nth-of-type(even) {
  background-color: #fff;
}
.c-table th,
.c-table td {
  vertical-align: middle;
  padding: 2rem 3rem;
}
.c-table th {
  padding-right: 0;
  font-weight: bold;
}
.c-table td {
  padding-left: 0;
}
.c-table .tel-link[href] {
  text-decoration: underline;
  color: var(--color-link);
}
.c-table .tel-link[href]:hover {
  text-decoration: none;
  color: var(--color-hover);
}
@media screen and (max-width: 767.98px) {
  .c-table tr,
  .c-table th,
  .c-table td {
    display: block;
  }
  .c-table th,
  .c-table td {
    padding: 2rem;
  }
  .c-table th {
    width: auto !important;
    padding-bottom: 0;
    font-size: 1.6rem;
  }
  .c-table td {
    padding-top: 1rem;
  }
}

/* 共通お問い合わせ */
.c-global-contact {
  line-height: 1.5;
  text-align: center;
}
.c-global-contact__item + .c-global-contact__item {
  margin-top: 2rem;
}
@media screen and (min-width: 768px), print {
  .c-global-contact {
    display: inline-flex;
    align-items: center;
  }
  .c-global-contact__item + .c-global-contact__item {
    margin-top: 0;
    margin-left: 3rem;
  }
}
@media screen and (min-width: 1100px), print {
  .c-global-contact__item + .c-global-contact__item {
    margin-left: 5rem;
  }
}

/* 共通お問い合わせ（電話）*/
.c-global-tel__text {
  display: block;
}
.c-global-tel__num {
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 2.5rem;
}
.c-global-tel__num::before {
  content: "";
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  margin: 0 1rem 0 0;
  background: url(../img/base/icon-tel_wht.svg) no-repeat center;
  background-size: contain;
}
.c-global-tel .tel-link {
  display: grid;
  place-content: center;
  height: 6rem;
  padding: 0.2em 0 0;
  color: #fff;
  background-color: var(--color-link);
  transition: color var(--transition), background-color var(--transition);
}
.c-global-tel .tel-link[href] {
  color: #fff;
}
.c-global-tel .tel-link[href]:hover {
  text-decoration: none;
  color: #fff;
}
@media (hover: hover) and (pointer: fine) {
  .c-global-tel .tel-link[href]:hover {
    background-color: var(--color-hover);
  }
}
@media screen and (min-width: 768px), print {
  .c-global-tel .tel-link {
    width: 30rem;
  }
}
/* 共通お問い合わせ（メール）*/
.c-global-mail__link {
  display: grid;
  place-content: center;
  height: 6rem;
  padding: 0.2em 0 0;
  color: #fff;
  background-color: var(--color-hover);
  transition: color var(--transition), background-color var(--transition);
}
.c-global-mail__link:hover {
  text-decoration: none;
  color: #fff;
}
@media (hover: hover) and (pointer: fine) {
  .c-global-mail__link:hover {
    background-color: var(--color-link);
  }
}
.c-global-mail__text {
  display: block;
}
.c-global-mail__label {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 2rem;
}
.c-global-mail__label::before {
  content: "";
  display: block;
  width: 3rem;
  height: 2.4rem;
  margin: 0 1rem 0 0;
  background: url(../img/base/icon-mail2_wht.svg) no-repeat center;
  background-size: contain;
}
@media screen and (min-width: 768px), print {
  .c-global-mail__link {
    width: 30rem;
  }
}
/* 共通ページ導入部 */
.c-page-intro__section {
  margin: 0 -2rem 10rem;
  padding: 5rem 2rem 0;
  background: url(../img/base/bg.jpg) no-repeat top left;
  background-size: 80rem auto;
}
.c-page-intro__header {
  margin-bottom: 3rem;
  padding-right: 0.5ch;
  text-align: right;
}
.c-page-intro__heading {
  line-height: 1.3;
  font-size: 3rem;
}
.c-page-intro__heading::first-letter {
  color: var(--color-base);
}
.c-page-intro__main {
  font-size: 1.6rem;
}
@media screen and (min-width: 768px), print {
  .c-page-intro__section {
    background-size: 100rem auto;
  }
  .c-page-intro__header {
    margin-bottom: 4rem;
  }
  .c-page-intro__heading {
    font-size: 3.5rem;
  }
  .c-page-intro__main {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 1100px), print {
  .c-page-intro__section {
    margin: 0 -5rem;
    padding: 8.5rem 5rem 0;
    background-position: top;
    background-size: 160rem auto;
  }
  .c-page-intro__header {
    margin: 0 7rem 0 0;
    padding: 0;
    text-align: left;
  }
}
@media screen and (min-width: 1920px), print {
  .c-page-intro__section {
    background-size: 192rem auto;
  }
}

/* --------------------------------

  汎用スタイル

-------------------------------- */
.u-list li + li {
  margin-top: 1rem;
}
.u-list-unstyled {
  list-style: none;
}
.u-list-disc {
  list-style-type: none;
  line-height: 1.5;
  margin-left: 0.5ch;
}
.u-list-disc li {
  position: relative;
  padding-left: 1.15em;
}
.u-list-disc li::before {
  content: "";
  display: block;
  position: absolute;
  top: 0.5em;
  left: 0;
  width: 0.55em;
  height: 0.55em;
  background-color: var(--color-base);
}

.u-text-left {
  text-align: left;
}
.u-text-center {
  text-align: center;
}
.u-text-right {
  text-align: right;
}
.u-text-indent {
  text-indent: 1em;
}
.u-text-link {
  color: var(--color-link);
  text-decoration: underline;
}
.u-text-link:hover {
  text-decoration: none;
}
@media screen and (min-width: 768px), print {
  .u-text-md-left {
    text-align: left;
  }
  .u-text-md-center {
    text-align: center;
  }
}
@media screen and (min-width: 1100px), print {
  .u-text-lg-left {
    text-align: left;
  }
  .u-text-lg-center {
    text-align: center;
  }
  .u-text-lg-right {
    text-align: right;
  }
}

.u-d-none {
  display: none;
}
.u-d-block {
  display: block;
}
.u-d-flex {
  display: flex;
}
@media screen and (min-width: 480px), print {
  .u-d-sm-none {
    display: none;
  }
  .u-d-sm-block {
    display: block;
  }
  .u-d-sm-flex {
    display: flex;
  }
}
@media screen and (min-width: 768px), print {
  .u-d-md-none {
    display: none;
  }
  .u-d-md-block {
    display: block;
  }
  .u-d-md-flex {
    display: flex;
  }
}
@media screen and (min-width: 1100px), print {
  .u-d-lg-none {
    display: none;
  }
  .u-d-lg-block {
    display: block;
  }
  .u-d-lg-flex {
    display: flex;
  }
}
@media screen and (min-width: 1600px), print {
  .u-d-xl-none {
    display: none;
  }
  .u-d-xl-block {
    display: block;
  }
  .u-d-xl-flex {
    display: flex;
  }
}

.u-ft-roboto {
  font-family: "Roboto", sans-serif;
}

.u-fs-sm {
  font-size: 1.2rem;
}
@media screen and (min-width: 1100px), print {
  .u-fs-sm {
    font-size: 1.4rem;
  }
}
.u-fs-lg {
  font-size: 1.6rem;
}
@media screen and (min-width: 1100px), print {
  .u-fs-lg {
    font-size: 1.8rem;
  }
}
.u-fs-xl {
  font-size: 1.8rem;
}
@media screen and (min-width: 1100px), print {
  .u-fs-xl {
    font-size: 2rem;
  }
}

.u-fw-medium {
  font-weight: 500;
}
.u-fw-medium * {
  font-weight: 500;
}
.u-fw-bold {
  font-weight: 700;
}
.u-fw-bold * {
  font-weight: 700;
}
.u-fw-black {
  font-weight: 900;
}
.u-fw-black * {
  font-weight: 900;
}

.u-bg-light {
  background-color: var(--color-sub5);
}
.u-bg-base {
  background-color: var(--color-base);
}
.u-bg-main {
  background-color: var(--color-main);
}
.u-bg-white {
  background-color: #fff;
}
.u-color-base {
  color: var(--color-base);
}
.u-color-main {
  color: var(--color-main);
}
.u-color-white {
  color: #fff;
}
.u-color-danger {
  color: #b22c00;
}
.u-flex-1 {
  flex: 1;
}

.u-clearfix::after {
  content: "";
  clear: both;
  display: block;
}

.u-lh-sm {
  line-height: 1.5;
}
.u-lh-base {
  line-height: 1.8;
}
.u-lh-lg {
  line-height: 1.8;
}
@media screen and (min-width: 1100px), print {
  .u-lh-lg {
    line-height: 2;
  }
}

.u-indent {
  margin-left: 1em;
  text-indent: -1em;
}

.u-anchor-point::before {
  content: "";
  display: block;
  position: relative;
  height: 1px;
  margin-top: -10rem;
  margin-bottom: 10rem;
  background: transparent;
  pointer-events: none;
  z-index: -100;
}
@media screen and (min-width: 1100px), print {
  .u-anchor-point::before {
    margin-top: -16rem;
    margin-bottom: 16rem;
  }
}

.u-box-radius {
  border-radius: 1rem;
}
@media screen and (min-width: 768px), print {
  .u-box-radius {
    border-radius: 1.5rem;
  }
}
.u-img-wrap {
  aspect-ratio: 4/3;
  display: block;
  position: relative;
  overflow: hidden;
}

.u-img-cover {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.u-w-100 {
  width: 100%;
}

@media screen and (min-width: 768px), print {
  .float-md-right {
    float: right;
  }
}

.flex-row-reverse {
  flex-direction: row-reverse;
}

.align-items-center {
  align-items: center;
}

.justify-content-center {
  justify-content: center;
}

.font-feature-settings {
  font-feature-settings: "palt" 1;
}

/* ios高さ100%用 */
.full-height {
  height: calc(var(--vh, 1vh) * 100);
}

/* --------------------------------

  wrapper

-------------------------------- */
.l-wrapper {
  position: relative;
  padding-bottom: 6rem;
  overflow: hidden;
}
@media screen and (min-width: 1100px), print {
  .l-wrapper {
    padding-bottom: 0;
  }
}

/* --------------------------------

  header

-------------------------------- */
.l-header__container {
  display: grid;
  place-content: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 6rem;
  font-size: 100%;
  background-color: rgba(22, 47, 72, 0.85);
  z-index: 900;
}
.l-header__title {
  margin-bottom: 8rem;
}
@media screen and (min-width: 1100px), print {
  .l-header__container {
    display: block;
    position: absolute;
    height: auto;
    background: none;
    z-index: 1010;
  }
  .l-header__title {
    margin-bottom: 10rem;
  }
}

/* ヘッダーロゴ */
.c-header-logo img {
  display: block;
  width: 15rem;
}
@media screen and (min-width: 1100px), print {
  .c-header-logo {
    position: absolute;
    top: 5rem;
    left: 5rem;
  }
  .c-header-logo a {
    display: block;
  }
  .c-header-logo img {
    width: 24.4rem;
  }
}

/* お問い合わせボタン（電話）*/
.c-tel-button {
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  width: 6rem;
  height: 6rem;
  overflow: hidden;
  cursor: pointer;
  z-index: 990;
}
@media screen and (min-width: 1100px), print {
  .c-tel-button {
    display: none;
  }
}
.c-tel-button a {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
}
.c-tel-button a:hover {
  text-decoration: none;
}
.c-tel-button a::before {
  content: "";
  display: block;
  position: absolute;
  top: 1rem;
  right: 0;
  left: 0;
  width: 2.4rem;
  height: 2.4rem;
  margin: auto;
  background: url(../img/base/icon-tel_wht.svg) center no-repeat;
  background-size: cover;
}
.c-tel-button a::after {
  content: "TEL";
  display: block;
  position: absolute;
  bottom: 0.8rem;
  left: 0;
  width: 100%;
  line-height: 1;
  font-weight: 700;
  font-size: 1.1rem;
  font-family: inherit;
  color: #fff;
  text-align: center;
  letter-spacing: 0.15em;
}

/* お問い合わせボタン（メール）*/
.c-contact-button {
  display: block;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6rem;
  overflow: hidden;
  z-index: 900;
}
@media screen and (min-width: 1100px), print {
  .c-contact-button {
    position: absolute;
    top: 5rem;
    right: 5rem;
    bottom: auto;
    left: auto;
    width: auto;
    height: auto;
    z-index: 1010;
    overflow: visible;
  }
}
.c-contact-button a {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  height: 100%;
  color: #fff;
  text-align: center;
  background-color: var(--color-hover);
}
@media screen and (min-width: 1100px), print {
  .c-contact-button a {
    display: grid;
    place-content: center;
    width: 18rem;
    height: 6rem;
    line-height: 1.5;
    border-radius: 0.5rem;
    box-shadow: var(--box-shadow2);
    transition: background-color var(--transition);
  }
}
.c-contact-button a:hover {
  text-decoration: none;
}
@media (hover: hover) and (pointer: fine) {
  .c-contact-button a:hover {
    background-color: var(--color-link);
  }
}
.c-contact-button__label {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
}
.c-contact-button__label::before {
  content: "";
  aspect-ratio: 25/18;
  display: block;
  width: 3rem;
  margin: 0.05em 1rem 0 0;
  background: url(../img/base/icon-mail1_wht.svg) center no-repeat;
  background-size: contain;
}
@media screen and (min-width: 1100px), print {
  .c-contact-button__label {
    font-size: 1.6rem;
  }
  .c-contact-button__label::before {
    width: 2.5rem;
    margin: 0.075em 1rem 0 0;
  }
}

/* スクロール時固定用 */
@media screen and (max-width: 1099.98px) {
  .is-fixed .l-header__container {
    box-shadow: var(--box-shadow);
  }
}
@media screen and (min-width: 1100px), print {
  .is-fixed .l-header__container,
  .is-fixed .c-contact-button {
    position: fixed;
    top: -60px;
    margin-top: 3rem;
    transform: translateY(60px);
    transition: transform var(--transition);
  }
  .is-fixed .c-header-logo {
    top: -1rem;
  }
}

/* --------------------------------

  nav

-------------------------------- */
.l-nav {
  display: block;
  position: fixed;
  top: 0;
  left: -30rem;
  width: 30rem;
  height: 100%;
  z-index: 1000;
}
.l-nav__container {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background-color: #fff;
  background-color: var(--color-sub1);
  z-index: 10;
}
.l-nav__info {
  padding: 4rem 0 5rem;
}
@media screen and (min-width: 1100px), print {
  .l-nav {
    position: absolute;
    left: auto;
    width: 100%;
    height: auto;
  }
  .l-nav__container {
    background-color: transparent;
    overflow: visible;
  }
  .l-nav__info {
    display: none;
  }
}
@media screen and (max-width: 1099.98px) {
  .l-nav {
    transition: left 0.3s;
  }
  .nav-open .l-nav {
    left: 0;
  }
}

/* メインナビ */
.c-nav {
  padding: 8rem 2rem 0;
}
.c-nav__item {
  position: relative;
}
.c-nav__link {
  display: flex;
  align-items: center;
  position: relative;
  height: 6rem;
  padding: 0 1rem;
  font-size: 1.8rem;
  color: #fff;
}
.c-nav__link:hover {
  text-decoration: none;
  color: #fff;
}
@media screen and (min-width: 1100px) and (hover: hover) and (pointer: fine), print {
  .c-nav__link:hover {
    color: var(--color-hover);
  }
}
@media screen and (min-width: 1100px), print {
  .c-nav {
    display: flex;
    justify-content: flex-end;
    padding: 5rem 26.5rem 0 0;
  }
  .c-nav__item + .c-nav__item {
    margin-left: 3.5rem;
  }
  .c-nav__item--contact {
    display: none;
  }
  .c-nav__link {
    flex-direction: column;
    justify-content: center;
    height: 6rem;
    padding: 0;
    font-weight: 700;
    text-shadow: var(--text-shadow);
  }
}
@media screen and (max-width: 1099.98px) {
  .c-nav__item {
    border-top: 1px solid rgba(255, 255, 255, 0.25);
  }
  .c-nav__item--contact {
    padding-top: 3rem;
  }
  .c-nav__item--contact .c-nav__link {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 6rem;
    margin: auto;
    padding: 0;
    line-height: 1.5;
    font-weight: 700;
    font-size: 1.8rem;
    color: #fff;
    text-align: center;
    letter-spacing: 0.1em;
    border-radius: 0.5rem;
    background-color: var(--color-hover);
    box-shadow: var(--box-shadow2);
  }
  .c-nav__item--contact .c-nav__link::before {
    content: "";
    aspect-ratio: 25/18;
    display: block;
    width: 3rem;
    margin: 0.05em 1rem 0 0;
    background: url(../img/base/icon-mail1_wht.svg) center no-repeat;
    background-size: contain;
  }
}

/* トップページ用 */
@media screen and (min-width: 1100px), print {
  .c-nav__index {
    display: block;
    position: absolute;
    top: 13rem;
    right: 5rem;
    padding: 0;
  }
  .c-nav__index .c-nav__item + .c-nav__item {
    margin-left: 0;
  }
  .c-nav__index .c-nav__link {
    align-items: flex-end;
    height: 4.5rem;
  }
}

/* 会社情報 */
.c-nav-info {
  line-height: 1.8;
  font-size: 1.4rem;
  text-align: center;
}
.c-nav-info__logo {
  margin-bottom: 1rem;
}
.c-nav-info .tel-link[href] {
  color: currentColor;
}

/* ナビゲーション開閉ボタン */
.c-nav-button {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 6rem;
  height: 6rem;
  line-height: 1;
  font-family: inherit;
  background-color: transparent;
  cursor: pointer;
  z-index: 910;
}
@media screen and (min-width: 1100px), print {
  .c-nav-button {
    display: none;
  }
}
.nav-open .c-nav-button {
  display: none;
}
.c-nav-button::before {
  content: "MENU";
  display: block;
  position: absolute;
  bottom: 0.8rem;
  left: 0;
  width: 100%;
  line-height: 1;
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  text-align: center;
}
.c-nav-button__icon {
  display: block;
  position: absolute;
  inset: 0;
  top: -1.4rem;
  width: 3rem;
  height: 1.8rem;
  margin: auto;
  border-top: 2px solid #fff;
  border-bottom: 2px solid #fff;
}
.c-nav-button__icon::before, .c-nav-button__icon::after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 2px;
  margin: auto;
  border-top: 2px solid #fff;
}
.c-nav-button__icon::after {
  display: none;
}
.c-nav-button__close {
  position: absolute;
  z-index: 10;
}
@media screen and (max-width: 1099.98px) {
  .nav-open .c-nav-button__close {
    display: block;
  }
}
.c-nav-button__close::before {
  content: "CLOSE";
}
.c-nav-button__close .c-nav-button__icon {
  border: none;
}
.c-nav-button__close .c-nav-button__icon::before {
  transform: rotate(45deg);
}
.c-nav-button__close .c-nav-button__icon::after {
  display: block;
  transform: rotate(-45deg);
}

/* ナビゲーション背景 */
@media screen and (min-width: 1100px), print {
  .o-nav-screen {
    display: none;
  }
}
.o-nav-screen__overlay {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--transition);
}
.nav-open .o-nav-screen__overlay {
  pointer-events: auto;
  opacity: 0.35;
  cursor: pointer;
}

/* スクロール時固定用 */
@media screen and (min-width: 1100px), print {
  .is-fixed .l-nav {
    position: fixed;
    top: -60px;
    background-color: rgba(1, 38, 82, 0.9);
    box-shadow: var(--box-shadow);
    transform: translateY(60px);
    transition: transform var(--transition);
  }
  .is-fixed .c-nav {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .is-fixed .c-nav__index {
    display: flex;
    position: static;
    padding-right: 26.5rem;
  }
  .is-fixed .c-nav__index .c-nav__item + .c-nav__item {
    margin-left: 3.5rem;
  }
  .is-fixed .c-nav__index .c-nav__link {
    align-items: center;
    height: 6rem;
  }
}

/* --------------------------------

  main

-------------------------------- */
.l-main {
  padding: 0 2rem 10rem;
}
@media screen and (min-width: 1100px), print {
  .l-main {
    padding: 0 5rem 15rem;
  }
}

/* --------------------------------

  footer

-------------------------------- */
.l-footer__container {
  padding: 8rem 2rem;
  background-color: var(--color-sub1);
}
.l-footer__main {
  margin-bottom: 5rem;
}
.l-footer__side {
  max-width: 26rem;
  margin-inline: auto;
}
@media screen and (min-width: 480px), print {
  .l-footer__side {
    max-width: 48rem;
  }
}
@media screen and (min-width: 768px), print {
  .l-footer__side {
    max-width: 68rem;
  }
}
@media screen and (min-width: 1100px), print {
  .l-footer__container {
    padding: 11.5rem 5rem;
  }
  .l-footer__inner {
    display: flex;
    align-items: center;
  }
  .l-footer__main {
    margin-bottom: 0;
  }
  .l-footer__side {
    max-width: none;
    margin: 0 0 0 auto;
  }
}

/* フッターロゴ */
.c-footer-logo {
  display: inline-block;
  vertical-align: top;
  width: 25rem;
}
@media screen and (min-width: 768px), print {
  .c-footer-logo {
    width: 30rem;
  }
}
@media screen and (min-width: 1100px), print {
  .c-footer-logo {
    width: auto;
  }
}

/* 会社情報 */
.c-footer-info {
  color: #fff;
  text-align: center;
}
.c-footer-info__logo {
  margin-bottom: 3rem;
}
.c-footer-info__tel {
  margin-top: 1rem;
}
.c-footer-info__license {
  margin-top: 2rem;
}
.c-footer-info .tel-link[href] {
  color: currentColor;
}
@media screen and (min-width: 1100px), print {
  .c-footer-info {
    text-align: left;
  }
}

/* フッターナビ */
.c-footer-nav__list + .c-footer-nav__list {
  margin-top: 0.5rem;
}
.c-footer-nav__item + .c-footer-nav__item {
  margin-top: 0.5rem;
}
.c-footer-nav__link {
  display: block;
  padding: 1rem 0;
  font-size: 1.4rem;
  color: #fff;
  text-align: center;
  background-color: rgb(22, 47, 72);
}
.c-footer-nav__link:hover {
  text-decoration: none;
  color: #fff;
}
@media (hover: hover) and (pointer: fine) {
  .c-footer-nav__link:hover {
    background-color: var(--color-hover);
  }
}
@media screen and (min-width: 480px), print {
  .c-footer-nav {
    margin: 0 -0.5rem -0.5rem 0;
    overflow: hidden;
  }
  .c-footer-nav__list {
    display: inline;
  }
  .c-footer-nav__list + .c-footer-nav__list {
    margin-top: 0;
  }
  .c-footer-nav__item {
    float: left;
    width: 50%;
    padding: 0 0.5rem 0.5rem 0;
  }
  .c-footer-nav__item + .c-footer-nav__item {
    margin-top: 0;
  }
}
@media screen and (min-width: 768px), print {
  .c-footer-nav__item {
    width: 33.33333%;
  }
}
@media screen and (min-width: 1100px), print {
  .c-footer-nav {
    display: flex;
    align-items: flex-start;
    margin: 0;
    overflow: visible;
  }
  .c-footer-nav__list {
    display: block;
    padding-left: 3rem;
    border-left: 1px solid #fff;
  }
  .c-footer-nav__list + .c-footer-nav__list {
    margin-left: 10rem;
  }
  .c-footer-nav__item {
    float: none;
    width: auto;
    padding: 0;
  }
  .c-footer-nav__item + .c-footer-nav__item {
    margin-top: 2.5rem;
  }
  .c-footer-nav__link {
    display: inline-block;
    vertical-align: top;
    margin: -1rem;
    padding: 1rem;
    font-size: 1.6rem;
    background-color: transparent;
  }
  .c-footer-nav__link:hover {
    text-decoration: underline;
    background-color: transparent;
  }
}
@media screen and (min-width: 1100px) and (hover: hover) and (pointer: fine), print and (hover: hover) and (pointer: fine) {
  .c-footer-nav__link:hover {
    color: var(--color-hover);
  }
}

/* ページの先頭へ */
.c-footer-pagetop {
  display: block;
  position: fixed;
  right: 0.75rem;
  bottom: 6.75rem;
  width: 4.5rem;
  height: 4.5rem;
  overflow: hidden;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px), print {
  .c-footer-pagetop {
    right: 1.5rem;
    bottom: 7.5rem;
    width: 5rem;
    height: 5rem;
  }
}
@media screen and (min-width: 1100px), print {
  .c-footer-pagetop {
    bottom: 1.5rem;
  }
}
.is-fixed .c-footer-pagetop {
  opacity: 1;
  pointer-events: auto;
}
.c-footer-pagetop a {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 0.5rem;
  background-color: var(--color-link);
  transition: background-color var(--transition);
}
.c-footer-pagetop a:hover {
  text-decoration: none;
}
@media (hover: hover) and (pointer: fine) {
  .c-footer-pagetop a:hover {
    background-color: var(--color-hover);
  }
}
.c-footer-pagetop a::before {
  content: "";
  display: block;
  position: absolute;
  top: 0.8rem;
  right: 0;
  bottom: 0;
  left: 0;
  width: 1.2rem;
  height: 1.2rem;
  margin: auto;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(-45deg);
}

/* コピーライト */
.c-footer-copy {
  display: grid;
  place-content: center;
  height: 6rem;
}
.c-footer-copy small {
  display: block;
  width: 100%;
  font-size: 1.2rem;
}
@media screen and (min-width: 768px), print {
  .c-footer-copy {
    height: 8rem;
  }
  .c-footer-copy small {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1100px), print {
  .c-footer-copy small {
    font-size: 1.8rem;
  }
}

/* --------------------------------

  ページタイトル

-------------------------------- */
.c-page-title {
  background-color: var(--color-sub1);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.c-page-title__container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 30rem;
  padding-top: 6rem;
}
.c-page-title__heading {
  margin-top: -0.5ch;
  line-height: 1.2;
  font-weight: 700;
  font-size: 2.5rem;
  color: #fff;
  text-align: center;
  text-shadow: var(--text-shadow2);
}
.c-page-title__heading::before {
  content: attr(data-subtitle);
  display: block;
  margin-bottom: 1rem;
  line-height: 1em;
  font-weight: 900;
  font-size: 1.9em;
}
@media screen and (min-width: 768px), print {
  .c-page-title__container {
    height: 35rem;
  }
  .c-page-title__heading {
    font-size: 3rem;
  }
}
@media screen and (min-width: 1100px), print {
  .c-page-title__container {
    height: 42rem;
    padding-top: 10rem;
  }
  .c-page-title__heading {
    font-size: 3.5rem;
  }
  .c-page-title__heading::before {
    margin-bottom: 2rem;
    font-size: 2.3em;
  }
}

/* --------------------------------

  ローディング

-------------------------------- */
.loader {
  display: grid;
  place-content: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-sub1);
  z-index: 9999;
  opacity: 1;
  pointer-events: none;
}
.loader.is-loaded {
  animation: fadeOut 1s forwards;
}
.loader.is-reloaded {
  animation: fadeOut 0.5s forwards;
}
.loader-logo {
  display: block;
  width: 26.4rem;
  opacity: 0;
  transform: translateY(100px);
}
.loader-logo.is-loaded {
  animation: fadeInUp 0.5s forwards;
}

/* --------------------------------

  アニメーション

-------------------------------- */
.js-anime {
  pointer-events: none;
}
.js-anime.is-active {
  pointer-events: auto;
}
.js-anime.fadeIn {
  opacity: 0;
}
.js-anime.fadeIn.is-active {
  animation: fadeIn 0.75s forwards;
}
.js-anime.fadeInUp {
  opacity: 0;
  transform: translateY(100px);
}
.js-anime.fadeInUp.is-active {
  animation: fadeInUp 0.75s forwards;
}
.js-anime.fadeZoomIn {
  opacity: 0;
  transform: scale(1.4);
}
.js-anime.fadeZoomIn.is-active {
  animation: fadeZoomIn 0.75s forwards;
}
.js-anime.fadeInRight {
  opacity: 0;
  transform: translateX(100px);
}
.js-anime.fadeInRight.is-active {
  animation: fadeInRight 0.75s forwards;
}
.js-anime.fadeInLeft {
  opacity: 0;
  transform: translateX(-100px);
}
.js-anime.fadeInLeft.is-active {
  animation: fadeInLeft 0.75s forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeZoomIn {
  from {
    opacity: 0;
    transform: scale(1.4);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0px);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0px);
  }
}
/* --------------------------------

  トップページ

-------------------------------- */
/* メイングラフィック */
.p-mv__section {
  margin: 0 -2rem;
  background-color: rgb(0, 48, 112);
}
.p-mv__container {
  max-width: none;
}
.p-mv__img {
  opacity: 0;
}
.p-mv__img.is-loaded {
  animation: fadeIn 1s forwards;
}
.p-mv__img.is-reloaded {
  opacity: 1;
}
.p-mv__img img {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}
.p-mv__catch {
  display: grid;
  place-content: center;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 6rem 0;
  font-size: calc(2rem + 2vw);
  text-shadow: var(--text-shadow);
  opacity: 0;
}
.p-mv__catch.is-loaded {
  animation: fadeInUp 1s forwards;
}
.p-mv__catch.is-reloaded {
  opacity: 1;
}
.p-mv__catch--main {
  margin: 0 -0.35ch 2rem 0;
  line-height: 1.2;
}
.p-mv__catch--main .lg {
  font-size: 1.27em;
}
.p-mv__catch--side {
  line-height: 2;
  font-size: 0.4em;
}
@media screen and (min-width: 768px), print {
  .p-mv__catch {
    font-size: calc(2.5rem + 2vw);
  }
}
@media screen and (min-width: 1100px), print {
  .p-mv__section {
    margin: 0 -5rem;
  }
  .p-mv__container {
    min-height: 78rem;
  }
  .p-mv__catch {
    display: block;
    height: auto;
    padding: 0 10rem 10rem;
    font-size: 5.5rem;
  }
  .p-mv__catch--inner {
    max-width: 192rem;
  }
  .p-mv__catch--main {
    margin: 0 -0.3em 3rem 0;
  }
  .p-mv__catch--side {
    font-size: 1.8rem;
  }
}

/* NEWS */
.p-top-news__section {
  position: relative;
  margin: -1px -2rem 0;
  padding: 0 2rem 10rem;
  background: linear-gradient(to bottom, rgb(0, 48, 112) 0%, rgb(2, 47, 103) 100%);
}
.p-top-news__container {
  padding: 3rem 0 10.4rem 2rem;
  background-color: rgba(1, 37, 82, 0.8);
}
.p-top-news__container::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 100%;
  width: 100vw;
  height: 100%;
  background-color: rgba(1, 37, 82, 0.8);
  pointer-events: none;
}
.p-top-news__header {
  margin-bottom: 2rem;
}
.p-top-news__heading {
  line-height: 1.2;
  font-size: 2rem;
}
.p-top-news__heading .en {
  display: block;
  margin-bottom: 0.2em;
  line-height: 1em;
  font-size: 2.2em;
}
.p-top-news__more {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 3rem 0;
}
.p-top-news__object {
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 80rem;
}
.p-top-news__object img {
  display: block;
  width: 100%;
  max-width: none;
  mix-blend-mode: lighten;
}
@media screen and (min-width: 768px), print {
  .p-top-news__container {
    padding: 5rem 3rem 5rem 5rem;
  }
  .p-top-news__header {
    margin-bottom: 3rem;
  }
  .p-top-news__more {
    position: static;
    width: auto;
    margin-left: auto;
    padding: 0;
  }
  .p-top-news__object {
    width: 100rem;
  }
}
@media screen and (min-width: 1100px), print {
  .p-top-news__section {
    margin: -1px -5rem 0;
    padding: 0 5rem 16rem;
  }
  .p-top-news__container {
    padding: 4rem 0 4rem 8rem;
  }
  .p-top-news__header {
    margin: 0 12.5rem 0 0;
  }
  .p-top-news__heading {
    font-size: 3.5rem;
  }
  .p-top-news__more {
    margin: 4rem 0 0;
  }
  .p-top-news__object {
    bottom: 0;
    width: 160rem;
  }
}
@media screen and (min-width: 1600px), print {
  .p-top-news__object {
    width: 100%;
  }
}

/* ABOUT */
.p-top-about__section {
  position: relative;
  margin: 0 -2rem;
  padding: 8rem 2rem 10rem;
  background: linear-gradient(to bottom, rgb(2, 47, 103) 0%, rgb(22, 47, 72) 100%);
}
.p-top-about__img {
  margin-bottom: 2rem;
  box-shadow: var(--box-shadow2);
}
.p-top-about__img .u-img-wrap {
  aspect-ratio: 1/1;
}
.p-top-about__header {
  margin-bottom: 2rem;
}
.p-top-about__heading {
  line-height: 1.5;
  font-size: 2.8rem;
}
.p-top-about__more {
  margin-top: 3rem;
}
@media screen and (min-width: 768px), print {
  .p-top-about__img {
    width: 40%;
    margin: 0 2rem 0 0;
  }
}
@media screen and (min-width: 1100px), print {
  .p-top-about__section {
    margin: 0 -5rem;
    padding: 10rem 5rem 16rem;
  }
  .p-top-about__img {
    width: 50rem;
    margin: 0 5rem 0 0;
  }
  .p-top-about__header {
    margin-bottom: 3rem;
  }
  .p-top-about__heading {
    font-size: 4rem;
  }
  .p-top-about__more {
    margin-top: 4rem;
  }
}
@media screen and (min-width: 1600px), print {
  .p-top-about__img {
    width: 55rem;
    margin: 0 8rem 0 0;
  }
  .p-top-about__heading {
    font-size: 5rem;
  }
}

/* SERVICE */
.p-top-service__section {
  position: relative;
  margin: 0 -2rem;
  padding: 8rem 2rem 0;
  background: linear-gradient(to bottom, rgb(22, 47, 72) 0%, rgb(15, 36, 57) 100%);
}
.p-top-service__container {
  max-width: none;
}
.p-top-service__container.__primary {
  padding-bottom: 5rem;
}
.p-top-service__container.__secondary {
  padding-bottom: 30%;
}
.p-top-service__list {
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: auto;
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  margin-bottom: 3rem;
}
.p-top-service__list.__primary {
  counter-reset: service_list_01;
  position: relative;
  z-index: 1;
}
.p-top-service__list.__secondary {
  counter-reset: service_list_02 1;
}
.p-top-service__list--item {
  position: relative;
}
.p-top-service__list--img {
  aspect-ratio: 1041/476;
}
.p-top-service__list--img img {
  filter: grayscale(100%);
  transition: filter 0.3s;
}
.p-top-service__list--more .counter {
  display: block;
  margin: 0 0 1rem 1rem;
}
.p-top-service__list--more .counter::before {
  display: block;
  line-height: 1em;
  font-size: 5rem;
  text-shadow: var(--text-shadow2);
}
.p-top-service__list--more .counter-01::before {
  counter-increment: service_list_01;
  content: counter(service_list_01, decimal-leading-zero);
}
.p-top-service__list--more .counter-02::before {
  counter-increment: service_list_02;
  content: counter(service_list_02, decimal-leading-zero);
}
.p-top-service__list--more .caption {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(100% - 1.5rem);
  height: 6rem;
  line-height: 1.4;
  font-size: 1.8rem;
  color: var(--color-link);
  text-align: center;
  background-color: #fff;
  box-shadow: var(--box-shadow3);
  transition: color var(--transition), background-color var(--transition);
}
.p-top-service__list--more .caption-01 {
  font-size: 2rem;
}
.p-top-service__list--more .caption-04 img {
  display: block;
  width: 20rem;
}
.p-top-service__list--more .sm {
  font-size: 0.7em;
}
.p-top-service__list--more a {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0 0 1.5rem;
  color: #fff;
  background-color: transparent;
  z-index: 1;
}
.p-top-service__list--more a:hover {
  text-decoration: none;
}
.p-top-service__list--more a:hover .caption {
  color: #fff;
  background-color: var(--color-hover);
}
.p-top-service__list--more a:hover .caption-04 {
  background-color: #fff;
}
.p-top-service__list--item:hover .p-top-service__list--img img {
  filter: grayscale(0%);
}
.p-top-service__header {
  margin-bottom: 2rem;
  text-align: center;
}
.p-top-service__heading {
  line-height: 1.5;
  font-size: 2rem;
}
.p-top-service__more {
  margin-top: 4rem;
}
.p-top-service__more--item + .p-top-service__more--item {
  margin-top: 1.5rem;
}
.p-top-service__object {
  position: absolute;
  bottom: 0;
  left: -2rem;
  width: calc(100% + 4rem);
  pointer-events: none;
}
.p-top-service__object img {
  display: block;
  width: 100%;
  max-width: none;
}
@media screen and (min-width: 768px), print {
  .p-top-service__list.__secondary {
    grid-template-columns: repeat(3, 1fr);
  }
  .p-top-service__list--img.__secondary {
    aspect-ratio: 337/476;
  }
  .p-top-service__list--more .counter::before {
    font-size: 6rem;
  }
  .p-top-service__list--more .caption {
    height: 7rem;
  }
  .p-top-service__list--more .caption-01 {
    max-width: 40rem;
  }
  .p-top-service__heading {
    font-size: 2.4rem;
  }
  .p-top-service__more {
    display: flex;
    justify-content: center;
  }
  .p-top-service__more--item + .p-top-service__more--item {
    margin-top: 0;
    margin-left: 3rem;
  }
}
@media screen and (min-width: 1100px), print {
  .p-top-service__section {
    margin: 0 -5rem;
    padding: 15rem 0 16rem;
  }
  .p-top-service__container.__primary {
    padding-left: 5rem;
    padding-bottom: 8rem;
    z-index: 1;
  }
  .p-top-service__container.__secondary {
    padding-right: 5rem;
    padding-bottom: 0;
  }
  .p-top-service__list {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    margin-bottom: 0;
  }
  .p-top-service__list.__primary {
    grid-template-columns: repeat(1, 1fr);
  }
  .p-top-service__list--img.__secondary {
    aspect-ratio: auto;
    height: 100%;
  }
  .p-top-service__list--more .counter::before {
    font-size: 10rem;
  }
  .p-top-service__list--more .caption {
    width: calc(100% - 2rem);
    height: 8rem;
    font-size: calc(0.5rem + 1vw);
    text-align: left;
  }
  .p-top-service__list--more .caption-01 {
    max-width: 30rem;
    height: 6.8rem;
    font-size: 3rem;
  }
  .p-top-service__list--more .caption-02 {
    justify-content: flex-start;
    padding-left: 1.5rem;
  }
  .p-top-service__list--more .caption-03 {
    justify-content: flex-start;
    padding-left: 1.5rem;
  }
  .p-top-service__list--more .caption-04 img {
    width: 70%;
  }
  .p-top-service__list--more a {
    padding: 0 0 2rem;
  }
  .p-top-service__main {
    position: relative;
  }
  .p-top-service__main.__primary {
    margin-right: 10rem;
  }
  .p-top-service__main.__secondary {
    margin-left: 3rem;
  }
  .p-top-service__header {
    text-align: left;
  }
  .p-top-service__heading {
    font-size: 3rem;
  }
  .p-top-service__more {
    display: block;
    margin-top: 3rem;
  }
  .p-top-service__more--item + .p-top-service__more--item {
    margin-top: 0.6rem;
    margin-left: 0;
  }
  .p-top-service__object {
    top: -100%;
    bottom: auto;
    left: 0;
    width: 100%;
  }
}
@media screen and (min-width: 1600px), print {
  .p-top-service__container.__primary {
    padding-left: 12.5rem;
  }
  .p-top-service__container.__secondary {
    align-items: center;
    padding-right: 12.5rem;
  }
  .p-top-service__list--img.__secondary {
    aspect-ratio: 337/476;
    height: auto;
  }
}

/* REASON */
.p-top-reason__section {
  position: relative;
  margin: 0 -2rem;
  padding: 6rem 2rem 8rem;
  background: linear-gradient(to bottom, rgb(15, 36, 57) 0%, rgb(5, 26, 46) 100%);
}
.p-top-reason__container {
  max-width: 78rem;
}
.p-top-reason__img {
  margin-bottom: 3rem;
  box-shadow: var(--box-shadow2);
}
.p-top-reason__img .u-img-wrap {
  aspect-ratio: 2/1;
}
.p-top-reason__header {
  margin-bottom: 2rem;
  text-align: center;
}
.p-top-reason__heading {
  font-size: 2.3rem;
}
@media screen and (min-width: 768px), print {
  .p-top-reason__section {
    padding-top: 10rem;
  }
  .p-top-reason__heading {
    font-size: 2.6rem;
  }
}
@media screen and (min-width: 1100px), print {
  .p-top-reason__section {
    margin: 0 -5rem;
    padding: 10rem 5rem 10rem;
  }
  .p-top-reason__container {
    max-width: var(--inner-width);
  }
  .p-top-reason__img {
    width: 39.5rem;
    margin: 0 0 0 8rem;
  }
  .p-top-reason__img .u-img-wrap {
    aspect-ratio: 1/1;
  }
  .p-top-reason__main {
    padding-top: 8rem;
  }
  .p-top-reason__header {
    margin-bottom: 3rem;
    text-align: left;
  }
  .p-top-reason__heading {
    font-size: 3rem;
  }
}

/* CONTACT */
.p-contact__section {
  margin: 0 -2rem -10rem;
  padding: 8rem 2rem;
  background: url(../img/top/img4.jpg) no-repeat center;
  background-size: cover;
}
.p-contact__container {
  padding: 5rem 2rem;
  background-color: rgba(255, 255, 255, 0.8);
}
.p-contact__header {
  margin-bottom: 1.5rem;
}
.p-contact__heading {
  line-height: 1em;
  font-size: 5rem;
}
.p-contact__text {
  font-size: 1.6rem;
}
.p-contact__more {
  max-width: 36rem;
  margin: 3rem auto 0;
}
.p-contact__note {
  margin-bottom: 3rem;
}
@media screen and (min-width: 768px), print {
  .p-contact__header {
    margin-bottom: 2rem;
  }
  .p-contact__heading {
    font-size: 6rem;
  }
  .p-contact__text {
    font-size: 2rem;
  }
  .p-contact__more {
    max-width: none;
    margin: 3rem 0 0;
  }
  .p-contact__note {
    margin-bottom: 5rem;
  }
}
@media screen and (min-width: 1100px), print {
  .p-contact__section {
    margin: 0 -5rem -15rem;
    padding: 10rem 5rem;
  }
  .p-contact__container {
    padding: 5rem;
    background-color: rgba(255, 255, 255, 0.9);
  }
  .p-contact__header {
    margin-bottom: 3rem;
  }
  .p-contact__heading {
    font-size: 8rem;
  }
  .p-contact__text {
    font-size: 2.5rem;
  }
}

/* CAPTION */
.o-top-caption {
  position: absolute;
  pointer-events: none;
}
.o-top-caption::before {
  content: attr(data-label);
  display: block;
  line-height: 1em;
  font-size: 8rem;
  color: rgba(255, 255, 255, 0.25);
}
.o-top-caption__about {
  top: -1rem;
  left: 0;
}
.o-top-caption__service {
  top: -1.2rem;
  right: 0;
}
.o-top-caption__reason {
  top: -3rem;
  left: -1rem;
}
@media screen and (min-width: 768px), print {
  .o-top-caption::before {
    font-size: 18rem;
  }
  .o-top-caption__about {
    top: -3rem;
  }
  .o-top-caption__service {
    top: -3rem;
    z-index: 1;
  }
}
@media screen and (min-width: 1100px), print {
  .o-top-caption::before {
    font-size: 25rem;
  }
  .o-top-caption__reason {
    top: -3.5rem;
    left: -1.5rem;
  }
}

/* --------------------------------

  お知らせ

-------------------------------- */
.news-body {
  margin-top: 1rem;
  line-height: 1.8;
  word-break: break-all;
  word-wrap: break-word;
}
.news-body * {
  word-break: break-all;
  word-wrap: break-word;
}
.news-body::after {
  content: "";
  display: table;
  clear: both;
}
.news-back {
  margin-top: 5rem;
  text-align: center;
}
.news-topics:first-child {
  margin-top: -1.2rem;
}
.news-link {
  display: block;
  position: relative;
  padding: 1.5rem 0;
  line-height: 1.4;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-sub4);
}
.news-link:hover {
  text-decoration: none;
}
.news-link:hover .news-date {
  color: var(--color-hover);
}
.news-link:hover .news-title {
  text-decoration: underline;
}
.news-date {
  margin-bottom: 0.5rem;
}
.news-title {
  word-break: break-all;
  word-wrap: break-word;
}
.news-img {
  position: relative;
  overflow: hidden;
}
.news-img img {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}
@media screen and (min-width: 768px), print {
  .news-topics:first-child {
    margin-top: -1.7rem;
  }
  .news-link {
    display: flex;
    padding: 2rem 0;
  }
  .news-date {
    width: 14ch;
    margin-bottom: 0;
  }
  .news-title {
    flex: 1;
  }
}
@media screen and (min-width: 1100px), print {
  .news-topics:first-child {
    margin-top: -2.2rem;
  }
  .news-link {
    padding: 2.5rem 0;
  }
}

/* お知らせ一覧：トップページ用 */
.news-list-index .news-link {
  color: #fff;
}
.news-list-index .news-link:hover {
  color: #fff;
}
.news-list-index .news-link:hover .news-date {
  color: currentColor;
}
.news-list-index .news-link:hover .news-title {
  text-decoration: underline;
}
.news-list-index .news-date {
  color: currentColor;
}
@media screen and (min-width: 1100px), print {
  .news-list-index .news-title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
  }
}

/* お知らせ一覧：サムネイル（大）*/
.news-list-img {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  grid-column-gap: 1rem;
  grid-row-gap: 3rem;
}
.news-list-img .news-link {
  display: block;
  height: 100%;
  padding: 0;
  text-align: center;
  border: none;
}
.news-list-img .news-date {
  display: block;
  width: auto;
  margin: 1rem 0 0.5rem;
}
.news-list-img .news-img {
  aspect-ratio: 4/3;
}
@media screen and (min-width: 768px), print {
  .news-list-img {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 1100px), print {
  .news-list-img {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
  }
}

/* topics_paging */
#topics_paging {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 -2rem;
}
#topics_paging_all {
  margin-top: 5rem;
  margin-bottom: 1rem;
  text-align: center;
}
#topics_paging li {
  display: flex;
  align-items: center;
  margin: 0 0.25rem;
  padding: 1rem 1.5rem;
  line-height: 1.2;
  color: var(--color-text);
  text-align: center;
  border: 1px solid var(--color-link);
  background-color: #fff;
  list-style-type: none;
  list-style-image: none;
}
@media screen and (max-width: 767.98px) {
  #topics_paging li {
    font-size: 1.4rem;
  }
}
#topics_paging a {
  display: block;
  margin: -1rem -1.5rem;
  padding: 1rem 1.5rem;
  color: var(--color-text);
}
#topics_paging a:hover {
  text-decoration: none;
  color: #fff;
  border-radius: 0.35rem;
  background-color: var(--color-hover);
}

#calculated_page {
  margin-left: -1rem;
}

#total_pages {
  margin-right: 1rem;
}

/* --------------------------------

  下層ページ

-------------------------------- */
/* 会社概要 */
.p-company__map {
  margin: 3rem 0;
}
@media screen and (min-width: 768px), print {
  .p-company__access th {
    width: 20rem;
  }
  .p-company__map {
    margin: 5rem 0;
  }
}
@media screen and (min-width: 1100px), print {
  .p-company__access th {
    width: 30rem;
  }
  .p-company__map {
    height: 50rem;
  }
  .p-company__text {
    min-height: 40rem;
  }
}

/* サービス */
.p-service__section + .p-service__section {
  margin-top: 10rem;
}
.p-service__section + .p-contact__section {
  margin-top: 10rem;
}
@media screen and (min-width: 1100px), print {
  .p-service__section + .p-service__section {
    margin-top: 15rem;
  }
  .p-service__section + .p-contact__section {
    margin-top: 15rem;
  }
}

/* サービス */
.p-service__content:not(:first-child) {
  margin-top: 10rem;
}
.p-service__content:not(:last-child) {
  margin-bottom: 10rem;
}
@media screen and (min-width: 1100px), print {
  .p-service__content:not(:first-child) {
    margin-top: 15rem;
  }
  .p-service__content:not(:last-child) {
    margin-bottom: 15rem;
  }
}

/* サービス一覧 */
.p-service__menu {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  margin-bottom: 5rem;
}
.p-service__menu--link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: #fff;
  background-color: var(--color-link);
  transition: background-color var(--transition);
  box-shadow: var(--box-shadow);
}
.p-service__menu--link:hover {
  text-decoration: none;
  color: #fff;
  background-color: var(--color-hover);
}
.p-service__menu--link:hover .p-service__menu--img img {
  filter: grayscale(0%);
}
.p-service__menu--img {
  aspect-ratio: 2.4/1;
  background-color: #fff;
}
.p-service__menu--img img {
  filter: grayscale(100%);
  transition: filter 0.3s;
}
.p-service__menu--label {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 1rem 0 2.5rem;
  line-height: 1.5;
  font-weight: 500;
  font-size: 1.2rem;
  text-align: center;
}
.p-service__menu--label::before {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  bottom: 1rem;
  left: 0;
  width: 0.8rem;
  height: 0.8rem;
  margin: auto;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(135deg);
}
@media screen and (min-width: 768px), print {
  .p-service__menu {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
  }
  .p-service__menu--img {
    aspect-ratio: 355/100;
  }
  .p-service__menu--label {
    justify-content: flex-start;
    padding: 1.1rem 4rem 1.1rem 2rem;
    font-size: 1.4rem;
    text-align: left;
  }
  .p-service__menu--label::before {
    top: 0.025em;
    right: 2rem;
    bottom: 0;
    left: auto;
    width: 1rem;
    height: 1rem;
    transform: rotate(45deg);
  }
}
@media screen and (min-width: 1100px), print {
  .p-service__menu {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 1600px), print {
  .p-service__menu--label {
    font-size: 1.6rem;
  }
}

/* サービス画像 */
.p-service__img {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
}
.p-service__img:not(:first-child) {
  margin-top: 3rem;
}
.p-service__img:not(:last-child) {
  margin-bottom: 3rem;
}
@media screen and (min-width: 480px), print {
  .p-service__img {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 768px), print {
  .p-service__img {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
  }
  .p-service__img:not(:first-child) {
    margin-top: 5rem;
  }
  .p-service__img:not(:last-child) {
    margin-bottom: 5rem;
  }
}

/* サービス説明文 */
.p-service__text:not(:first-child) {
  margin-top: -1ch;
}
.p-service__text:not(:last-child) {
  margin-bottom: -1ch;
}

/* サービス詳細 */
.p-service__detail--container {
  overflow: hidden;
}
.p-service__detail--container:not(:first-child) {
  margin-top: 3rem;
}
.p-service__detail--container:not(:last-child) {
  margin-bottom: 3rem;
}
.p-service__detail--wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 -1rem -2rem 0;
}
.p-service__detail--wrap.__nogap {
  margin: 0;
}
.p-service__detail--col {
  width: 100%;
  padding: 0 1rem 2rem 0;
}
.p-service__detail--col.__col-2-2-3 {
  width: 50%;
}
.p-service__detail--inner, .p-service__detail--img {
  height: 100%;
  text-align: center;
  background-color: var(--color-sub5);
}
.p-service__detail--inner.__bgnone, .p-service__detail--img.__bgnone {
  background: none;
}
.p-service__detail--inner {
  padding: 1rem;
  border: 1px solid var(--color-sub6);
}
.p-service__detail--img {
  padding: 1rem;
}
.p-service__detail--img img {
  width: 100%;
}
.p-service__detail--caption {
  margin-top: 1rem;
  font-size: 1.6rem;
}
.p-service__detail--title {
  margin-bottom: 1.5rem;
  font-size: 1.6rem;
}
.p-service__detail--title img {
  margin-bottom: 1.5rem;
}
.p-service__detail--list {
  margin: 0.75rem 0.5rem 0.5rem;
  font-size: 1.4rem;
}
@media screen and (min-width: 768px), print {
  .p-service__detail--container:not(:first-child) {
    margin-top: 5rem;
  }
  .p-service__detail--container:not(:last-child) {
    margin-bottom: 5rem;
  }
  .p-service__detail--wrap {
    margin: 0 -2rem -2rem 0;
  }
  .p-service__detail--col {
    padding: 0 2rem 2rem 0;
  }
  .p-service__detail--col.__col-1-2-2 {
    width: 50%;
  }
  .p-service__detail--col.__col-1-2-3 {
    width: 50%;
  }
  .p-service__detail--img.__lg {
    padding: 1.5rem;
  }
  .p-service__detail--caption.__lg {
    margin-bottom: -0.5rem;
  }
}
@media screen and (min-width: 1100px), print {
  .p-service__detail--col.__col-1-2-3 {
    width: 33.3333%;
  }
  .p-service__detail--col.__col-2-2-3 {
    width: 33.3333%;
  }
  .p-service__detail--caption.__lg {
    font-size: 1.8rem;
  }
  .p-service__detail--title {
    font-size: 1.8rem;
  }
}

/* サービス一覧 */
.p-service__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  grid-column-gap: 1rem;
  grid-row-gap: 4rem;
}
.p-service__list:not(:first-child) {
  margin-top: 3rem;
}
.p-service__list:not(:last-child) {
  margin-bottom: 3rem;
}
.p-service__list--caption {
  margin-top: 1.2rem;
}
@media screen and (min-width: 768px), print {
  .p-service__list {
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 1.7rem;
    grid-row-gap: 5rem;
  }
  .p-service__list:not(:first-child) {
    margin-top: 5rem;
  }
  .p-service__list:not(:last-child) {
    margin-bottom: 5rem;
  }
}

/* 1～4級水準測量 */
.p-grade__img {
  max-width: 30rem;
  margin: 0 auto 3rem;
}
.p-grade__img .u-img-wrap {
  aspect-ratio: 500/444;
}
.p-grade__info th {
  width: 18rem;
}
@media screen and (min-width: 768px), print {
  .p-grade__img {
    max-width: 40rem;
    margin-bottom: 5rem;
  }
}
@media screen and (min-width: 1100px), print {
  .p-grade__img {
    width: 50rem;
    max-width: none;
    margin: 0 0 0 2rem;
  }
}

/* i-Construction */
.p-i-construction__logo {
  display: inline-block;
  vertical-align: middle;
  width: 28rem;
  margin-bottom: -0.3ch;
}
.p-i-construction__img {
  grid-column-gap: 0.5rem;
  grid-row-gap: 1rem;
}
@media screen and (min-width: 768px), print {
  .p-i-construction__logo {
    width: 34rem;
    margin-bottom: 0;
  }
  .p-i-construction__img {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (min-width: 1100px), print {
  .p-i-construction__logo {
    width: 40rem;
  }
}

/* --------------------------------

  プリント

-------------------------------- */
@media print {
  html, body {
    width: var(--inner-width);
    background: none;
  }
}
/* --------------------------------

  修正・追加用

-------------------------------- */