@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: #0062b4;
  --color-hover: #49a7ff;
  --color-base: #0062b4;
  --color-main: #49a7ff;
  --color-sub1: #c6e5ff;
  --color-sub2: #edf5fc;
  --color-sub3: #f3f3f3;
  --color-sub4: #d8d8d8;
  --color-grd1: rgba(0, 0, 0, 0);
  --color-grd2: rgba(0, 0, 0, 1);
  --transition: 0.3s;
  --inner-width: 110rem;
  --inner-width2: 90rem;
  --inner-width3: 160rem;
  --box-shadow: 0 0 4px 0 rgba(0, 0, 0, .25);
}

* {
  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 {
  position: relative;
}
@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;
  }
}
@media screen and (min-width: 768px), print {
  .c-section__inner {
    padding-right: 3rem;
    padding-left: 3rem;
  }
}
@media screen and (min-width: 1100px), print {
  .c-section__inner {
    padding-right: 4.5rem;
    padding-left: 4.5rem;
  }
}

/* 共通ヘッダー */
.c-header {
  position: relative;
  margin-bottom: 3rem;
}
@media screen and (min-width: 1100px), print {
  .c-header {
    margin-bottom: 4rem;
  }
}

/* 共通見出し */
.c-heading {
  position: relative;
  max-width: var(--inner-width);
  margin-inline: auto;
  line-height: 1.35;
  font-size: 1.6rem;
  text-align: center;
  font-feature-settings: "palt" 1;
}
.c-heading__en {
  display: block;
  line-height: 1;
  font-size: 4em;
}
@media screen and (min-width: 1100px), print {
  .c-heading__en {
    font-size: 5em;
  }
}
.c-heading--h2 {
  margin-bottom: 3rem;
  font-weight: 700;
  font-size: 2.2rem;
  color: var(--color-base);
  text-align: left;
}
.c-heading--h2::after {
  content: "";
  display: block;
  height: 0.3rem;
  margin-top: 1.35ch;
  background: linear-gradient(90deg, #006cd2, #49a7ff);
}
.c-heading--h2:not(:first-child) {
  margin-top: 7rem;
}
@media screen and (min-width: 768px), print {
  .c-heading--h2 {
    font-size: 2.5rem;
  }
}
@media screen and (min-width: 1100px), print {
  .c-heading--h2 {
    margin-bottom: 5rem;
    font-size: 3rem;
  }
  .c-heading--h2:not(:first-child) {
    margin-top: 10rem;
  }
}
/* リンクボタン */
.c-link-button {
  display: inline-block;
  vertical-align: top;
  position: relative;
  padding: 1.5rem 5rem 1.5rem 3rem;
  color: #fff;
  line-height: 1.35;
  font-weight: 500;
  font-size: 1.6rem;
  text-align: left;
  border-radius: 10em;
  background: linear-gradient(90deg, #006cd2, #49a7ff);
}
@media screen and (min-width: 1100px), print {
  .c-link-button {
    padding: 1.85rem 6rem 1.85rem 4rem;
  }
}
.c-link-button::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 3.3rem;
  width: 8px;
  height: 8px;
  margin: auto;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}
@media screen and (min-width: 1100px), print {
  .c-link-button::before {
    right: 4rem;
  }
}
.c-link-button--secondary {
  color: var(--color-link);
  background: #fff;
  transition: color var(--transition), background-color var(--transition);
}
/* 共通リンクボタン（ホバー）*/
.c-link-button[href]:hover {
  text-decoration: none;
  color: #fff;
}
@media (hover: hover) and (pointer: fine) {
  .c-link-button[href]:hover {
    color: #fff;
    background: var(--color-hover);
  }
}

/* コンテンツ画面中央寄せ */
.c-inner {
  position: relative;
  max-width: var(--inner-width);
  margin-inline: auto;
}
.c-inner::after {
  content: "";
  display: table;
  clear: both;
}
.c-inner--sm {
  max-width: var(--inner-width2);
}
.c-inner--xl {
  max-width: var(--inner-width3);
}

/* 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;
  margin-inline: -4px;
  line-height: 1.5;
}
.c-table tbody {
  display: block;
}
.c-table tr {
  display: table;
  width: 100%;
  border-collapse: separate;
  border-spacing: 4px 0;
}
.c-table th,
.c-table td {
  vertical-align: middle;
  padding: 2rem 1rem;
  border-bottom-width: 1px;
  border-style: solid;
}
.c-table th {
  padding-right: 0;
  border-color: var(--color-base);
}
.c-table td {
  border-color: var(--color-sub1);
}
.c-table .tel-link[href] {
  color: currentColor;
}
.c-table .tel-link[href]:hover {
  color: var(--color-link);
}
.c-table tr:first-child th,
.c-table tr:first-child td {
  border-top-width: 1px;
  border-top-style: solid;
}
@media screen and (max-width: 767.98px) {
  .c-table {
    margin-inline: 0;
  }
  .c-table tr,
  .c-table th,
  .c-table td {
    display: block;
  }
  .c-table tr + tr {
    margin-top: 3rem;
  }
  .c-table th,
  .c-table td {
    border-top-width: 1px;
    border-bottom: none;
  }
  .c-table th {
    width: auto !important;
    padding: 1rem 1rem;
    font-size: 1.6rem;
  }
  .c-table td {
    padding: 1.5rem 1rem 0 1rem;
  }
}

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

  汎用スタイル

-------------------------------- */
.u-list-unstyled {
  list-style: none;
}
.u-list-disc {
  list-style-type: "・";
  padding-left: 1em;
}
.u-list-box {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1rem;
  line-height: 1.3;
  font-size: 1.6rem;
  text-align: center;
}
.u-list-box li {
  display: grid;
  place-content: center;
  position: relative;
  height: 8rem;
  padding: 0.5rem;
  border: 1px solid var(--color-sub1);
  background-color: #fff;
}
.u-list-box li::before {
  content: "";
  aspect-ratio: 1/1;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 1.5rem;
  background: linear-gradient(90deg, #006cd2, #49a7ff);
  clip-path: polygon(0 0, 100% 0, 0 100%);
  pointer-events: none;
}
.u-list-check {
  line-height: 1.3;
  font-size: 1.6rem;
  border-top: 1px dashed currentColor;
}
.u-list-check li {
  position: relative;
  padding: 1rem 0 1rem 3.5rem;
  border-bottom: 1px dashed currentColor;
}
.u-list-check li::before {
  content: "";
  aspect-ratio: 23/20;
  display: block;
  position: absolute;
  top: 1.4rem;
  left: 1rem;
  width: 1.5rem;
  background: url(../img/base/icon-check_blu.svg) center no-repeat;
  background-size: cover;
}
@media screen and (min-width: 480px), print {
  .u-list-box {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1100px), print {
  .u-list-box {
    gap: 2rem;
    font-size: 1.8rem;
  }
  .u-list-box li {
    display: grid;
    place-content: center;
    height: 8rem;
    padding: 0.5rem;
  }
  .u-list-box li::before {
    width: 2rem;
  }
  .u-list-check {
    font-size: 1.8rem;
  }
  .u-list-check li {
    padding-left: 4.4rem;
  }
  .u-list-check li::before {
    top: 1.1rem;
    width: 2.3rem;
  }
}

.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: currentColor;
}
.u-text-marker {
  display: inline;
  background: linear-gradient(var(--color-grd1) 85%, var(--color-grd2) 0%);
}
.u-text-gradient-blue {
  background: linear-gradient(90deg, #006cd2, #49a7ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@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-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-gabarito {
  font-family: "Gabarito", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.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: 768px), print {
  .u-fs-lg {
    font-size: 1.8rem;
  }
}
.u-fs-xl {
  font-size: 1.6rem;
}
@media screen and (min-width: 768px), print {
  .u-fs-xl {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 1100px), print {
  .u-fs-xl {
    font-size: 2rem;
  }
}

.u-fw-normal {
  font-weight: 400;
}
.u-fw-normal * {
  font-weight: 400;
}
.u-fw-bold {
  font-weight: 700;
}
.u-fw-bold * {
  font-weight: 700;
}
.u-fw-exbold {
  font-weight: 800;
}
.u-fw-exbold * {
  font-weight: 800;
}
.u-bg-dark {
  background-color: var(--color-sub1);
}
.u-bg-light {
  background-color: var(--color-sub2);
}
.u-bg-base {
  background-color: var(--color-base);
}
.u-bg-main {
  background-color: var(--color-main);
}
.u-bg-white {
  background-color: #fff;
}
.u-bg-black {
  background-color: #000;
}
.u-bg-gradient-blue {
  background: linear-gradient(90deg, #006cd2, #49a7ff);
}
.u-bg-gradient-blue90 {
  background: linear-gradient(90deg, rgba(0, 109, 210, 0.9), rgba(73, 167, 255, 0.9));
}

.u-color-light {
  color: var(--color-sub2);
}
.u-color-base {
  color: var(--color-base);
}
.u-color-main {
  color: var(--color-main);
}
.u-color-text {
  color: var(--color-text);
}
.u-color-white {
  color: #fff;
}
.u-color-black {
  color: #000;
}
.u-color-danger {
  color: #b22c00;
}
.u-color-gray {
  color: var(--color-sub4);
}
.u-color-current {
  color: currentColor;
}

.u-flex-1 {
  flex: 1;
}

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

.u-lh-sm {
  line-height: 1.35;
}
.u-lh-base {
  line-height: 1.5;
}
.u-lh-lg {
  line-height: 1.8;
}
.u-lh-xl {
  line-height: 1.8;
}
@media screen and (min-width: 768px), print {
  .u-lh-xl {
    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-scroll-top {
  scroll-margin-top: 10rem;
}
@media screen and (min-width: 1100px), print {
  .u-scroll-top {
    scroll-margin-top: 16rem;
  }
}

.u-box-radius {
  border-radius: 1rem;
}
.u-box-radius-xl {
  border-radius: 1rem;
}
@media screen and (min-width: 1100px), print {
  .u-box-radius-xl {
    border-radius: 2.5rem;
  }
}

.u-box-shadow {
  box-shadow: var(--box-shadow);
}

.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;
}

@media screen and (min-width: 768px), print {
  .u-float-md-right {
    float: right;
  }
}
.u-border-1 {
  border: 1px solid var(--color-sub1);
}

.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: 6.4rem;
  overflow: hidden;
}
@media screen and (min-width: 768px), 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(255, 255, 255, 0.9);
  z-index: 900;
}
@media screen and (min-width: 768px), print {
  .l-header__container {
    display: block;
    position: absolute;
    height: auto;
    background: none;
    z-index: 1010;
  }
}
/* ヘッダーロゴ */
.c-header-logo img {
  display: block;
  width: 12rem;
}
@media screen and (min-width: 768px), print {
  .c-header-logo a {
    display: block;
    position: absolute;
    top: 2rem;
    left: 1rem;
  }
  .c-header-logo img {
    width: 12rem;
  }
}
@media screen and (min-width: 1100px), print {
  .c-header-logo a {
    top: 3rem;
    left: 1.8rem;
  }
  .c-header-logo img {
    width: 18rem;
  }
}
@media screen and (min-width: 1600px), print {
  .c-header-logo a {
    left: 4.5rem;
  }
  .c-header-logo img {
    width: 22rem;
  }
}

/* お問い合わせボタン（電話）*/
.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: 768px), print {
  .c-tel-button {
    display: none;
  }
}
.c-tel-button a {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-base);
}
.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.6rem;
  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: 768px), print {
  .c-contact-button {
    position: absolute;
    top: 0;
    right: 0;
    bottom: auto;
    left: auto;
    width: auto;
    height: auto;
    z-index: 1010;
  }
}
.c-contact-button a {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  height: 100%;
  color: #fff;
  text-align: center;
}
@media screen and (min-width: 768px), print {
  .c-contact-button a {
    flex-direction: column;
    width: 12rem;
    height: 8rem;
  }
}
@media screen and (min-width: 1100px), print {
  .c-contact-button a {
    flex-direction: row;
    width: 19rem;
  }
}
.c-contact-button a:hover {
  text-decoration: none;
}
@media (hover: hover) and (pointer: fine) {
  .c-contact-button a:hover {
    background: var(--color-hover);
  }
}
.c-contact-button a::before {
  aspect-ratio: 29/21;
  content: "";
  display: block;
  width: 3.5rem;
  margin: 0 1.5rem 0 -0.5rem;
  background: url(../img/base/icon-mail_wht.svg) center no-repeat;
  background-size: cover;
}
@media screen and (min-width: 768px), print {
  .c-contact-button a::before {
    width: 2.9rem;
    margin: 0.5rem 0 0.3rem;
  }
}
@media screen and (min-width: 1100px), print {
  .c-contact-button a::before {
    margin: 0.3rem 2rem 0 0;
  }
}
.c-contact-button__label {
  font-size: 2rem;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px), print {
  .c-contact-button__label {
    font-size: 1.8rem;
    letter-spacing: normal;
  }
}

/* スクロール時固定用 */
@media screen and (max-width: 767.98px) {
  .is-fixed .l-header__container {
    background-color: #fff;
    box-shadow: var(--box-shadow);
  }
}
@media screen and (min-width: 768px), print {
  .is-fixed .l-header__container,
  .is-fixed .c-contact-button {
    position: fixed;
    top: -60px;
    transform: translateY(60px);
    transition: transform var(--transition);
  }
  .is-fixed .c-header-logo a {
    top: 1rem;
  }
}
@media screen and (min-width: 1100px), print {
  .is-fixed .c-header-logo a {
    top: 0.5rem;
    left: 2rem;
  }
  .is-fixed .c-header-logo img {
    width: 15rem;
  }
}

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

  nav

-------------------------------- */
.l-nav {
  display: block;
  position: fixed;
  top: 0;
  left: -28rem;
  width: 28rem;
  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;
  z-index: 10;
}
.l-nav__info {
  text-align: center;
}
@media screen and (min-width: 768px), print {
  .l-nav {
    position: absolute;
    left: auto;
    width: 100%;
    height: auto;
  }
  .l-nav__container {
    display: flex;
    background-color: transparent;
    overflow: visible;
  }
  .l-nav__info {
    display: none;
  }
}
@media screen and (max-width: 767.98px) {
  .l-nav {
    transition: left 0.3s;
  }
  .nav-open .l-nav {
    left: 0;
  }
}

/* メインナビ */
.c-nav {
  padding: 6.5rem 1rem 1rem;
  background-color: var(--color-base);
}
.c-nav__item {
  position: relative;
}
.c-nav__link, .c-nav__label {
  display: flex;
  align-items: center;
  position: relative;
  height: 5rem;
  padding: 0 4.5rem 0 1rem;
  font-size: 1.6rem;
  color: #fff;
}
.c-nav__link:hover {
  text-decoration: none;
  color: #fff;
}
.c-nav__link::before, .c-nav__label::before {
  content: "";
  aspect-ratio: 1/1;
  display: block;
  width: 1.2em;
  margin: 0.1rem 1rem 0 0.6rem;
  background: url(../img/base/icon-nav_wht.svg) no-repeat center;
  background-size: cover;
  transform: rotate(90deg);
}
@media screen and (min-width: 768px), print {
  .c-nav {
    display: flex;
    margin: 0 0 0 auto;
    padding: 0 14rem 0 0;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 0 0 0 1rem;
  }
  .c-nav__item + .c-nav__item {
    margin-left: 2rem;
  }
  .c-nav__item--home, .c-nav__item--contact {
    display: none;
  }
  .c-nav__link, .c-nav__label {
    flex-direction: row-reverse;
    height: 8rem;
    padding: 0;
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--color-text);
  }
  .c-nav__link::before, .c-nav__label::before {
    margin-right: 0;
    background-image: url(../img/base/icon-nav_blk.svg);
  }
  .c-nav__link:hover {
    color: var(--color-text);
  }
}
@media screen and (min-width: 1100px), print {
  .c-nav {
    padding: 0 21.5rem 0 2.5rem;
  }
  .c-nav__item + .c-nav__item {
    margin-left: 2.5rem;
  }
  .c-nav__item--home {
    display: block;
  }
  .c-nav__item--contact {
    display: none;
  }
  .c-nav__link, .c-nav__label {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1280px), print {
  .c-nav {
    padding: 0 24rem 0 5rem;
  }
}
@media screen and (min-width: 1100px) and (hover: hover) and (pointer: fine), print {
  .c-nav__link:hover {
    color: var(--color-link);
  }
  .c-nav__link:hover::before {
    background-image: url(../img/base/icon-nav_blu.svg);
  }
}

/* サブメニュー */
.c-subnav {
  margin: 0 1.5rem;
  border-radius: 1rem;
  background-color: var(--color-sub1);
  overflow: hidden;
}
.c-subnav__item + .c-subnav__item {
  border-top: 1px solid #fff;
}
.c-subnav__link {
  display: block;
  padding: 1.6rem 0;
  line-height: 1.2;
  font-size: 1.6rem;
  color: var(--color-text);
  text-align: center;
}
.c-subnav__link:hover {
  text-decoration: none;
  color: var(--color-text);
}
@media screen and (min-width: 768px), print {
  .c-subnav {
    position: relative;
    left: 50%;
    width: 24rem;
    margin: 0 0 0 -12rem;
    background-color: transparent;
    border-radius: 2rem;
  }
  .c-subnav__item {
    position: relative;
  }
  .c-subnav__item + .c-subnav__item {
    border-top: none;
  }
  .c-subnav__item:not(:last-child)::before {
    content: "";
    display: block;
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 0.1rem;
    border-bottom: 1px solid #fff;
    z-index: 1;
  }
  .c-subnav__link {
    position: relative;
    padding: 2rem 0;
    color: var(--color-text);
    background-color: var(--color-sub1);
  }
  .c-subnav__link:hover {
    color: var(--color-text);
  }
}
@media screen and (min-width: 1100px), print {
  .c-subnav {
    width: 28rem;
    margin: 0 0 0 -14rem;
  }
  .c-subnav__link {
    padding: 2.2rem 0;
  }
}
@media screen and (min-width: 1100px) and (hover: hover) and (pointer: fine), print {
  .c-subnav__item:hover {
    z-index: 1;
  }
  .c-subnav__item:hover::before {
    border-color: var(--color-link);
  }
  .c-subnav__link:hover {
    color: #fff;
    background-color: var(--color-link);
  }
}

/* 会社情報・店舗情報・診療時間 */
.c-nav-info {
  padding: 4rem 0;
}
.c-nav-info__logo {
  margin-bottom: 3rem;
  padding-right: 1em;
}
.c-nav-info__logo img {
  width: 15rem;
}
.c-nav-info__add {
  margin-bottom: 1rem;
}
.c-nav-info__tel {
  font-size: 1.8rem;
}
.c-nav-info .tel-link {
  color: var(--color-text);
}
.c-nav-info .tel-link[href]:hover {
  color: var(--color-link);
}
/* ナビゲーション開閉ボタン */
.c-nav-button {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 6rem;
  height: 6rem;
  line-height: 1;
  font-family: inherit;
  background-color: #fff;
  cursor: pointer;
  z-index: 910;
}
@media screen and (min-width: 768px), 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.6rem;
  left: 0;
  width: 100%;
  line-height: 1;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-link);
  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 var(--color-link);
  border-bottom: 2px solid var(--color-link);
}
.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 var(--color-link);
}
.c-nav-button__icon::after {
  display: none;
}
.c-nav-button--close {
  position: absolute;
  background-color: transparent;
  z-index: 10;
}
@media screen and (max-width: 767.98px) {
  .nav-open .c-nav-button--close {
    display: block;
  }
}
.c-nav-button--close::before {
  content: "CLOSE";
  color: #fff;
}
.c-nav-button--close .c-nav-button__icon {
  border: none;
}
.c-nav-button--close .c-nav-button__icon::before, .c-nav-button--close .c-nav-button__icon::after {
  border-color: #fff;
}
.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: 768px), 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;
}

/* ドロップダウン：ボタン */
.dropdown-toggle {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 5rem;
  background: transparent;
  z-index: 10;
}
.dropdown-toggle:hover {
  cursor: pointer;
}
.dropdown-toggle::before {
  content: "";
  display: block;
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 0.9rem;
  height: 0.9rem;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(135deg);
}
.dropdown-toggle.show::before {
  top: 2.5rem;
  transform: rotate(-45deg);
}
.dropdown-toggle::after {
  display: none;
}
@media screen and (min-width: 768px), print {
  .dropdown-toggle {
    height: 100%;
    z-index: 30;
  }
  .dropdown-toggle::before {
    top: auto;
    right: 1.05ch;
    bottom: 1.5rem;
    left: 0;
    width: 0.7rem;
    height: 0.7rem;
    margin: auto;
    border-color: #ccc;
  }
  .dropdown-toggle.show::before {
    top: auto;
    bottom: 1.2rem;
    border-color: var(--color-link);
  }
  .dropdown-toggle.show + .c-nav__link, .dropdown-toggle.show + .c-nav__label {
    color: var(--color-link);
  }
}
@media screen and (min-width: 1100px) and (hover: hover) and (pointer: fine), print {
  .dropdown-toggle:hover + .c-nav__link, .dropdown-toggle:hover + .c-nav__label {
    color: var(--color-link);
  }
  .dropdown-toggle:hover::before {
    border-color: var(--color-link);
  }
}

/* ドロップダウン：メニュー */
.dropdown-menu {
  display: block !important;
  position: absolute;
  min-width: 0;
  width: 100%;
  margin: 0;
  margin-top: -10px !important;
  padding: 0;
  font-size: 100%;
  color: var(--color-text);
  text-align: left;
  list-style: none;
  border: none;
  border-radius: 0;
  background-color: transparent;
  background-clip: padding-box;
  z-index: 1000;
}
@media screen and (max-width: 767.98px) {
  .dropdown-menu {
    position: static !important;
    margin-top: 0 !important;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition);
  }
  .dropdown-menu.show {
    inset: auto !important;
    transform: none !important;
    max-height: var(--max-height);
  }
}
@media screen and (min-width: 768px), print {
  .dropdown-menu {
    margin-top: -20px !important;
    transition: margin-top var(--transition), opacity var(--transition);
    opacity: 0;
    pointer-events: none;
  }
  .dropdown-menu.show {
    margin-top: 10px !important;
    opacity: 1;
    pointer-events: auto;
  }
}

/* スクロール時固定用 */
@media screen and (min-width: 768px), print {
  .is-fixed .l-nav {
    position: fixed;
    top: -60px;
    background-color: #fff;
    box-shadow: var(--box-shadow);
    transform: translateY(60px);
    transition: transform var(--transition);
  }
  .is-fixed .c-nav {
    padding-left: 0;
    background: none;
  }
}

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

  main

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

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

  footer

-------------------------------- */
.l-footer {
  background-color: var(--color-sub2);
}
.l-footer__container {
  padding: 8rem 2rem;
  background: url(../img/base/footer.jpg) no-repeat bottom right;
  background-size: cover;
}
.l-footer__map {
  padding: 2rem;
}
.l-footer__main {
  margin-bottom: 4rem;
}
.l-footer__logo {
  margin-bottom: 2.5rem;
  text-align: center;
}
.l-footer__info {
  display: flex;
  justify-content: center;
}
.l-footer__nav {
  justify-content: center;
}
.l-footer__copy {
  padding: 5rem 0 3rem;
  background-color: var(--color-base);
}
.l-footer__pagetop {
  margin-top: 5rem;
  margin-bottom: -10.25rem;
}
@media screen and (min-width: 768px), print {
  .l-footer__main {
    margin-bottom: 0;
  }
  .l-footer__logo {
    text-align: left;
  }
  .l-footer__info {
    display: block;
  }
  .l-footer__nav {
    justify-content: flex-start;
    margin-left: auto;
    padding-right: 5rem;
  }
  .l-footer__copy {
    display: flex;
    align-items: center;
    height: 4rem;
    padding: 0 2rem;
  }
  .l-footer__pagetop {
    margin: 0;
  }
}
@media screen and (min-width: 1100px), print {
  .l-footer {
    background: url(../img/base/footer.jpg) no-repeat bottom;
    background-size: cover;
  }
  .l-footer__container {
    padding: 8rem 5rem;
    background: none;
  }
  .l-footer__map {
    margin-bottom: -4rem;
    padding: 8rem 5rem 0;
  }
  .l-footer__nav {
    padding-right: 0;
  }
  .l-footer__copy {
    padding: 0 5rem;
  }
}

/* マップ */
.c-footer-map {
  max-width: 140rem;
  height: 42rem;
  border: 5px solid #fff;
  background-color: #eee;
}
/* フッターロゴ */
.c-footer-logo {
  display: inline-block;
  vertical-align: top;
  width: 16rem;
}
@media screen and (min-width: 1100px), print {
  .c-footer-logo {
    width: auto;
  }
}

/* 店舗情報・会社情報 */
.c-footer-info {
  font-size: 1.4rem;
}
.c-footer-info__item {
  display: flex;
}
.c-footer-info dt {
  display: flex;
  width: 6ch;
}
.c-footer-info dt::after {
  content: "：";
  display: block;
  margin-left: auto;
}
.c-footer-info dd {
  flex: 1;
}
.c-footer-info .tel-link {
  color: var(--color-text);
}
.c-footer-info .tel-link[href] {
  color: var(--color-text);
}
.c-footer-info .tel-link[href]:hover {
  color: var(--color-link);
}
@media screen and (min-width: 1100px), print {
  .c-footer-info {
    font-size: 1.6rem;
  }
}

/* フッターナビ */
.c-footer-nav + .c-footer-nav {
  margin-left: 3.5rem;
}
.c-footer-nav__item + .c-footer-nav__item {
  margin-top: 1rem;
}
.c-footer-nav__link {
  display: inline-block;
  vertical-align: top;
  position: relative;
  padding-left: 3.3ch;
  line-height: 1.35;
  font-size: 1.4rem;
  color: currentColor;
}
.c-footer-nav__link::before {
  content: "";
  aspect-ratio: 1/1;
  display: block;
  position: absolute;
  top: 0.2ch;
  left: 0;
  width: 2.2ch;
  background: url(../img/base/icon-nav_blk.svg) no-repeat center;
  background-size: cover;
}
.c-footer-nav__link:hover {
  text-decoration: none;
  color: var(--color-link);
}
.c-footer-nav__link:hover::before {
  background-image: url(../img/base/icon-nav_blu.svg);
}
@media screen and (min-width: 768px), print {
  .c-footer-nav {
    padding: 0.5rem 0 0.5rem 3rem;
    border-left: 1px solid var(--color-sub1);
  }
}
@media screen and (min-width: 1100px), print {
  .c-footer-nav + .c-footer-nav {
    margin-left: 7.5rem;
  }
  .c-footer-nav__item + .c-footer-nav__item {
    margin-top: 2rem;
  }
  .c-footer-nav__link {
    font-size: 1.6rem;
  }
}

/* フッターサブメニュー */
.c-footer-subnav {
  margin-top: 1rem;
}
.c-footer-subnav__item + .c-footer-subnav__item {
  margin-top: 1rem;
}
.c-footer-subnav__link {
  display: inline-block;
  vertical-align: top;
  margin-left: 3.3ch;
  line-height: 1.35;
  font-size: 1.4rem;
  color: currentColor;
}
.c-footer-subnav__link:hover {
  text-decoration: none;
  color: var(--color-link);
}
@media screen and (min-width: 1100px), print {
  .c-footer-subnav {
    margin-top: 2rem;
  }
  .c-footer-subnav__item + .c-footer-subnav__item {
    margin-top: 2rem;
  }
  .c-footer-subnav__link {
    font-size: 1.6rem;
  }
}

/* フッターポリシー */
.c-footer-policy {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
}
.c-footer-policy__item {
  margin: 0 1rem;
}
.c-footer-policy__link {
  display: block;
  font-size: 1.2rem;
  color: #fff;
}
.c-footer-policy__link:hover {
  color: #fff;
}
@media screen and (min-width: 768px), print {
  .c-footer-policy {
    margin-bottom: 0;
  }
  .c-footer-policy__item {
    margin: 0 2rem 0 0;
  }
}
@media screen and (min-width: 1100px), print {
  .c-footer-policy__item {
    margin-right: 3.5rem;
  }
}

/* ページの先頭へ */
.c-footer-pagetop {
  display: block;
  position: relative;
  width: 4.5rem;
  height: 4.5rem;
  margin: auto;
  overflow: hidden;
  z-index: 100;
}
@media screen and (min-width: 768px), print {
  .c-footer-pagetop {
    position: fixed;
    right: 1rem;
    bottom: 5rem;
    margin: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
  }
  .is-fixed .c-footer-pagetop {
    opacity: 1;
    pointer-events: auto;
  }
}
@media screen and (min-width: 1100px), print {
  .c-footer-pagetop {
    width: 5rem;
    height: 5rem;
  }
}
.c-footer-pagetop a {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 0.5rem;
  color: var(--color-link);
  border: 1px solid var(--color-sub1);
  background-color: #fff;
  transition: border-color var(--transition), background-color var(--transition);
}
.c-footer-pagetop a:hover {
  text-decoration: none;
}
@media (hover: hover) and (pointer: fine) {
  .c-footer-pagetop a:hover {
    color: #fff;
    border-color: var(--color-link);
    background-color: var(--color-link);
  }
}
.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 currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(-45deg);
}

/* コピーライト */
.c-footer-copy {
  text-align: center;
}
.c-footer-copy small {
  display: block;
  width: 100%;
  font-size: 1.2rem;
  color: #fff;
  letter-spacing: 0.1em;
}
.c-footer-copy span {
  display: none;
}
@media screen and (min-width: 768px), print {
  .c-footer-copy {
    align-self: center;
    margin-left: auto;
    text-align: right;
  }
}
@media screen and (min-width: 1100px), print {
  .c-footer-copy small {
    font-size: 1.4rem;
  }
  .c-footer-copy span {
    display: inline;
  }
}

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

  ページタイトル

-------------------------------- */
.c-page-title {
  position: relative;
}
.c-page-title::after {
  content: "";
  display: block;
  height: 40rem;
  margin: -10rem 0 -28rem;
  background: linear-gradient(to top, rgba(212, 234, 255, 0.1), rgba(0, 114, 220, 0.1));
  pointer-events: none;
  clip-path: polygon(0 22%, 100% 0, 100% 100%, 0% 100%);
}
.c-page-title__container {
  position: relative;
  height: 40rem;
  z-index: 1;
}
.c-page-title__header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: absolute;
  inset: 0;
  left: 4rem;
  width: calc(100% - 4rem);
  height: 100%;
  line-height: 1;
  font-size: 1.8rem;
}
.c-page-title__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 80%);
}
.c-page-title__img:hover {
  clip-path: polygon();
}
.c-page-title__img::after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, rgb(255, 255, 255), rgba(255, 255, 255, 0));
}
.c-page-title__img img {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}
.c-page-title__heading {
  position: relative;
  font-size: 100%;
  z-index: 1;
}
.c-page-title__caption {
  mix-blend-mode: multiply;
  position: relative;
  margin-bottom: 0.15em;
  font-size: 3.3334em;
  z-index: 1;
}
.c-page-title__copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 4rem;
  height: 45rem;
  font-size: 1rem;
  pointer-events: none;
}
.c-page-title__copy::before, .c-page-title__copy::after {
  content: "";
  flex-grow: 1;
  display: block;
  width: 1px;
  background-color: transparent;
}
.c-page-title__copy-text {
  display: block;
  letter-spacing: 0.2em;
  writing-mode: vertical-rl;
}
@media screen and (min-width: 768px), print {
  .c-page-title::after {
    margin: -15rem 0 -22rem;
    clip-path: polygon(0 30%, 100% 0, 100% 100%, 0% 100%);
  }
  .c-page-title__header {
    left: 7rem;
    width: calc(100% - 7rem);
    font-size: 2.2rem;
  }
  .c-page-title__img {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 70%);
  }
  .c-page-title__copy {
    width: 7rem;
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 1100px), print {
  .c-page-title::after {
    height: 55rem;
    margin: -30rem 0 -24rem;
    clip-path: polygon(0 50%, 100% 0, 100% 100%, 0% 100%);
  }
  .c-page-title__container {
    height: 46rem;
  }
  .c-page-title__header {
    left: 10rem;
    width: calc(100% - 10rem);
    padding-top: 12rem;
    font-size: 3rem;
  }
  .c-page-title__img {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 50%);
  }
  .c-page-title__copy {
    width: 10rem;
    height: 60rem;
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 1280px), print {
  .c-page-title__copy {
    height: 100%;
  }
}

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

  ローディング

-------------------------------- */
.loader {
  display: grid;
  place-content: center;
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  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: 20rem;
  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 -20rem;
  padding: 0 0 0 4rem;
}
.p-mv__container {
  position: relative;
  min-height: 64.5rem;
}
.p-mv__main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.p-mv__main-item {
  position: relative;
  z-index: 1;
  opacity: 0;
}
.p-mv__main-item.is-loaded {
  animation: fadeInLeft 1.5s forwards;
}
.p-mv__main-item.is-reloaded {
  opacity: 1;
}
.p-mv__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: calc(100% - 6rem);
  pointer-events: none;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 90%);
  opacity: 0;
}
.p-mv__img.is-loaded {
  animation: fadeInRight 1s forwards;
}
.p-mv__img.is-reloaded {
  opacity: 1;
}
.p-mv__img:hover {
  clip-path: polygon();
}
.p-mv__img::after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  width: 30%;
  height: 100%;
  background: linear-gradient(90deg, rgb(255, 255, 255), rgba(255, 255, 255, 0));
}
.p-mv__img img {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}
.p-mv__catch {
  mix-blend-mode: multiply;
  line-height: 2.5lh;
  font-size: 6rem;
  font-size: calc(4rem + 3vw);
  pointer-events: none;
}
.p-mv__catch.is-loaded {
  animation-delay: 0s;
}
.p-mv__lede {
  margin: 2rem 0 2.5rem;
  font-size: 2.2rem;
}
.p-mv__lede.is-loaded {
  animation-delay: 0.25s;
}
.p-mv__text.is-loaded {
  animation-delay: 0.5s;
}
.p-mv__side {
  position: absolute;
  inset: 0;
  left: -4rem;
  width: calc(100% + 4rem);
  height: calc(100% - 6rem);
  background-color: #fff;
  clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
}
.p-mv__copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 4rem;
  height: 100%;
  font-size: 1rem;
  pointer-events: none;
}
.p-mv__copy::before, .p-mv__copy::after {
  content: "";
  flex-grow: 1;
  display: block;
  width: 1px;
}
.p-mv__copy::before {
  margin-bottom: 2rem;
  background-color: transparent;
}
.p-mv__copy-text {
  display: block;
  letter-spacing: 0.2em;
  writing-mode: vertical-rl;
}
.p-mv__copy::after {
  margin-top: 2rem;
  background-color: var(--color-sub3);
}
@media screen and (min-width: 768px), print {
  .p-mv__section {
    margin-bottom: -14rem;
    padding: 0 0 0 7rem;
  }
  .p-mv__img {
    height: 100%;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 80%);
  }
  .p-mv__catch {
    line-height: 3.5lh;
    font-size: 10rem;
  }
  .p-mv__lede {
    margin: 3rem 0 2.4rem;
    font-size: 2.8rem;
  }
  .p-mv__side {
    left: -7rem;
    width: calc(100% + 7rem);
    height: 100%;
    clip-path: polygon(0 0, 100% 0, 100% 80%, 0 100%);
  }
  .p-mv__copy {
    width: 7rem;
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 1100px), print {
  .p-mv__section {
    margin: 0 -5rem -14rem;
    padding: 0 0 0 10rem;
  }
  .p-mv__container {
    min-height: 80rem;
    max-height: 100rem;
  }
  .p-mv__main {
    padding: 5rem 0 0;
  }
  .p-mv__catch {
    line-height: 5lh;
    font-size: 14rem;
  }
  .p-mv__lede {
    margin: 3rem 0 3.5rem;
    font-size: 3rem;
  }
  .p-mv__side {
    left: -10rem;
    width: calc(100% + 10rem);
  }
  .p-mv__copy {
    width: 10rem;
    font-size: 1.4rem;
  }
  .p-mv__copy::before {
    margin-bottom: 4rem;
  }
  .p-mv__copy::after {
    margin-top: 4rem;
  }
}

/* 導入部 */
.p-top-about__section {
  margin: 0 -2rem;
  padding: 20rem 2rem 5rem;
  background: linear-gradient(to bottom, rgba(212, 234, 255, 0.1), rgba(0, 114, 220, 0.1));
}
.p-top-about__heading {
  line-height: 1.5;
  font-size: 2rem;
}
.p-top-about__heading .c-heading__en {
  margin-bottom: 0.1ch;
  opacity: 0.1;
}
.p-top-about__more {
  margin-top: 3rem;
}
@media screen and (min-width: 768px), print {
  .p-top-about__heading {
    font-size: 2.4rem;
  }
  .p-top-about__more {
    position: absolute;
    top: 3.5rem;
    right: 2rem;
    margin: 0;
  }
}
@media screen and (min-width: 1100px), print {
  .p-top-about__section {
    margin: 0 -5rem;
    padding: 25rem 5rem 10rem;
  }
  .p-top-about__header {
    margin-bottom: 3.5rem;
  }
  .p-top-about__heading {
    font-size: 3rem;
  }
  .p-top-about__more {
    top: 5rem;
    right: 5rem;
  }
}

/* 特徴 */
.p-top-feature {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1rem;
  margin-top: 5rem;
}
.p-top-feature__col {
  padding: 0 0 1rem;
}
.p-top-feature__en {
  display: grid;
  place-content: center;
  height: 4rem;
  padding: 0.35ch 0 0 0;
}
.p-top-feature__title {
  padding: 1rem 0 0.5rem;
  font-size: 2.2rem;
}
.p-top-feature__title::before {
  content: "";
  display: block;
  aspect-ratio: 1/1;
  width: 1.3em;
  margin-right: 0.85ch;
  background: url(../img/base/icon-check_blu.svg) center no-repeat;
  background-size: cover;
}
.p-top-feature__text {
  padding: 0 1rem;
  font-size: 1.3rem;
  letter-spacing: normal;
}
@media screen and (min-width: 768px), print {
  .p-top-feature {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 1100px), print {
  .p-top-feature__title {
    font-size: 2.8rem;
  }
}

/* お知らせ */
.p-top-news__container {
  padding: 5rem 0;
}
.p-top-news__heading {
  font-size: 3.6rem;
  border-radius: 1rem 1rem 0 0;
}
.p-top-news__body {
  padding: 2rem;
  border-radius: 0 0 1rem 1rem;
  background-color: var(--color-sub2);
}
.p-top-news__foot {
  margin-top: 4rem;
}
@media screen and (min-width: 768px), print {
  .p-top-news__header {
    width: 20rem;
  }
  .p-top-news__heading {
    display: grid;
    place-content: center;
    height: 100%;
    border-radius: 1rem 0 0 1rem;
  }
  .p-top-news__body {
    border-radius: 0;
    background-color: transparent;
  }
  .p-top-news__foot {
    display: grid;
    place-content: center;
    margin: 0;
  }
}
@media screen and (min-width: 1100px), print {
  .p-top-news__header {
    width: 27rem;
  }
  .p-top-news__heading {
    font-size: 4.6rem;
  }
  .p-top-news__body {
    padding: 3.5rem 6rem;
  }
}

/* サービス */
.p-top-service__section {
  margin: 0 -2rem 8rem;
}
.p-top-service__container {
  padding: 8rem 2rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.p-top-service__header {
  margin-bottom: 2.5rem;
}
.p-top-service__heading {
  margin-bottom: 2rem;
}
.p-top-service__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.p-top-service__item {
  display: flex;
  flex-direction: column;
  position: relative;
  height: 100%;
}
.p-top-service__img .u-img-wrap {
  aspect-ratio: 352/250;
}
.p-top-service__img img {
  transition: opacity var(--transition), transform var(--transition);
}
.p-top-service__title {
  position: relative;
  margin: -2rem 1rem 0;
  padding: 1rem 0;
  text-align: center;
}
.p-top-service__label {
  line-height: 1.2;
  font-size: 2rem;
}
.p-top-service__icon {
  display: block;
  height: 3.5rem;
  margin: 0 auto 1rem;
}
.p-top-service__text {
  padding: 1rem;
}
.p-top-service__more a:hover {
  text-decoration: none;
}
.p-top-service__more a::after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 10;
}
@media screen and (min-width: 768px), print {
  .p-top-service__title {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -2rem 2rem 0;
    padding: 1.5rem 0;
  }
  .p-top-service__label {
    font-size: 2.2rem;
  }
  .p-top-service__icon {
    margin: 0.4ch 1.5rem 0 0;
  }
  .p-top-service__text {
    padding: 1.75rem 2rem;
  }
}
@media screen and (min-width: 1100px), print {
  .p-top-service__section {
    margin: 0 -5rem 10rem;
  }
  .p-top-service__container {
    padding: 10rem 5rem;
  }
  .p-top-service__list {
    grid-template-columns: repeat(4, 1fr);
  }
  .p-top-service__title {
    display: inline-flex;
    vertical-align: top;
    height: 7rem;
    margin: -3.5rem 1rem -3.5rem 0;
    padding: 0;
    text-align: left;
  }
  .p-top-service__text {
    padding: 5.4rem 2rem 2rem;
  }
}
@media screen and (min-width: 1600px), print {
  .p-top-service__title {
    justify-content: flex-start;
    margin-right: 5rem;
    padding: 0 3rem;
  }
  .p-top-service__icon {
    margin-right: 2rem;
  }
  .p-top-service__label {
    font-size: 2.6rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-top-service__item:hover {
    background-color: var(--color-sub1);
  }
  .p-top-service__item:hover .p-top-service__img img {
    opacity: 0.75;
    transform: scale(1.1);
  }
  .p-top-service__item:hover .p-top-service__title {
    background: var(--color-link);
  }
}

/* 施工事例 */
.p-top-works__section {
  margin: 0 -2rem 8rem;
}
.p-top-works__container {
  position: relative;
}
.p-top-works__slider .swiper-slide {
  height: auto;
}
.p-top-works__button {
  display: flex;
  justify-content: center;
  margin: 3rem 0 3.5rem;
}
.p-top-works__prev, .p-top-works__next {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  inset: 0;
  width: 4rem;
  height: 4rem;
  margin: 0 1rem;
  padding: 0;
  color: var(--color-link);
  border-radius: 100%;
  border: 1px solid var(--color-link);
  background-color: #fff;
  transform: none;
}
@media (hover: hover) and (pointer: fine) {
  .p-top-works__prev:hover, .p-top-works__next:hover {
    color: #fff;
    background-color: var(--color-link);
  }
}
.p-top-works__prev svg, .p-top-works__next svg {
  display: none;
}
.p-top-works__prev::before, .p-top-works__next::before {
  content: "";
  aspect-ratio: 1/1;
  display: block;
  width: 30%;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}
.p-top-works__prev::before {
  margin-left: 0.5rem;
  transform: rotate(-135deg);
}
.p-top-works__next::before {
  margin-right: 0.3rem;
  transform: rotate(45deg);
}
@media screen and (min-width: 1100px), print {
  .p-top-works__section {
    margin: 0 -5rem 10rem;
  }
  .p-top-works__slider {
    padding-right: 5rem;
    padding-left: 5rem;
  }
}

/* 採用募集 */
.p-contact__section {
  margin: 0 -2rem -10rem;
}
.p-contact__container {
  padding: 8rem 2rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.p-contact__inner {
  padding: 4rem 2rem;
}
.p-contact__more {
  margin-top: 3rem;
}
.p-contact__caption {
  margin-bottom: 1.5rem;
  font-size: 2.4rem;
}
@media screen and (min-width: 768px), print {
  .p-contact__caption {
    font-size: 2.8rem;
  }
}
@media screen and (min-width: 1100px), print {
  .p-contact__section {
    margin: 0 -5rem -10rem;
  }
  .p-contact__container {
    padding: 10rem 5rem;
  }
  .p-contact__inner {
    padding: 5rem;
  }
  .p-contact__text {
    font-size: 2rem;
  }
  .p-contact__caption {
    font-size: 3.2rem;
  }
}

/* 共通アイコン */
.p-service-icon--water {
  aspect-ratio: 3/4;
}
.p-service-icon--aircon {
  aspect-ratio: 5/4;
}
.p-service-icon--toilet {
  aspect-ratio: 3.7/4;
}
.p-service-icon--fan {
  aspect-ratio: 4/4;
}
.p-service-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
/* --------------------------------

  お知らせ

-------------------------------- */
.news-list {
  margin-top: -0.8rem;
  margin-bottom: -1rem;
}
.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-more {
  margin-top: 5rem;
  text-align: center;
}
.news-back {
  margin-top: 5rem;
  text-align: center;
}
.news-link {
  display: block;
  position: relative;
  padding: 1rem 0;
  line-height: 1.5;
  color: var(--color-text);
}
.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-link {
    display: flex;
  }
  .news-date {
    width: 12ch;
    margin-bottom: 0;
  }
  .news-title {
    flex: 1;
  }
}
@media screen and (min-width: 1100px), print {
  .news-date {
    width: 15ch;
  }
}

/* お知らせ一覧：サムネイル（大）*/
.news-list-img {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  grid-column-gap: 1rem;
  grid-row-gap: 3rem;
  margin-top: 0;
  margin-bottom: 0;
}
.news-list-img .news-link {
  display: block;
  height: 100%;
  padding: 0 1rem 1.5rem;
  line-height: 1.5;
  text-align: center;
  border: none;
  background-color: #fff;
  box-shadow: var(--box-shadow);
}
.news-list-img .news-category {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}
.news-list-img .news-title {
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--color-link);
}
.news-list-img .news-title * {
  font-weight: 700;
}
.news-list-img .news-img {
  aspect-ratio: 410/310;
  margin: 0 -1rem 1.5rem;
  overflow: hidden;
}
.news-list-img .news-img img {
  transition: transform var(--transition);
}
.news-list-img .news-link:hover {
  color: var(--color-text);
}
.news-list-img .news-link:hover .news-title {
  text-decoration: none;
}
@media (hover: hover) and (pointer: fine) {
  .news-list-img .news-link:hover {
    color: #fff;
    background-color: var(--color-link);
  }
  .news-list-img .news-link:hover .news-img img {
    transform: scale(1.15);
  }
  .news-list-img .news-link:hover .news-title {
    color: #fff;
  }
}
@media screen and (min-width: 768px), print {
  .news-list-img {
    grid-template-columns: repeat(3, 1fr);
  }
  .news-list-img .news-link {
    padding-bottom: 2rem;
  }
  .news-list-img .news-category {
    font-size: 1.4rem;
  }
  .news-list-img .news-title {
    font-size: 1.8rem;
  }
  .news-list-img .news-img {
    margin-bottom: 2rem;
  }
}
@media screen and (min-width: 1100px), print {
  .news-list-img {
    grid-column-gap: 2.5rem;
    grid-row-gap: 5rem;
  }
  .news-list-img .news-category {
    font-size: 1.6rem;
  }
  .news-list-img .news-title {
    font-size: 2rem;
  }
}

/* お知らせ一覧スライダー：サムネイル（大）*/
.news-list-slider .news-topics {
  padding: 1rem 0;
}
.news-list-slider .news-link {
  display: block;
  height: 100%;
  padding: 0 1rem 2rem;
  line-height: 1.5;
  text-align: center;
  border: none;
  background-color: #fff;
  box-shadow: var(--box-shadow);
}
.news-list-slider .news-category {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}
.news-list-slider .news-title {
  overflow: hidden;
  font-variant: normal;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--color-link);
}
.news-list-slider .news-title * {
  font-weight: 700;
}
.news-list-slider .news-img {
  aspect-ratio: 410/310;
  margin: 0 -1rem 2rem;
  overflow: hidden;
}
.news-list-slider .news-img img {
  transition: transform var(--transition);
}
.news-list-slider .news-link:hover {
  color: var(--color-text);
}
.news-list-slider .news-link:hover .news-title {
  text-decoration: none;
}
@media (hover: hover) and (pointer: fine) {
  .news-list-slider .news-link:hover {
    color: #fff;
    background-color: var(--color-link);
  }
  .news-list-slider .news-link:hover .news-img img {
    transform: scale(1.15);
  }
  .news-list-slider .news-link:hover .news-title {
    color: #fff;
  }
}
@media screen and (min-width: 1100px), print {
  .news-list-slider .news-link {
    padding-bottom: 2.5rem;
  }
  .news-list-slider .news-category {
    font-size: 1.4rem;
  }
  .news-list-slider .news-title {
    font-size: 2.4rem;
  }
  .news-list-slider .news-img {
    margin-bottom: 2.5rem;
  }
}

/* topics_paging */
#topics_paging {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin: 0 -2rem;
}
#topics_paging_all {
  margin-top: 5rem;
  margin-bottom: 1rem;
  text-align: center;
}
#topics_paging li {
  display: flex;
  align-items: center;
  padding: 0.8rem 1.2rem;
  line-height: 1.2;
  font-size: 1.4rem;
  color: var(--color-text);
  text-align: center;
  border-radius: 0.5rem;
  border: 1px solid var(--color-sub1);
  background-color: #fff;
  list-style-type: none;
  list-style-image: none;
}
#topics_paging a {
  display: block;
  margin: -0.9rem -1.3rem;
  padding: 0.9rem 1.3rem;
  color: var(--color-text);
}
#topics_paging a:hover {
  text-decoration: none;
  color: #fff;
  border-radius: 0.35rem;
  background-color: var(--color-hover);
}
@media screen and (min-width: 768px), print {
  #topics_paging li {
    padding: 1rem 1.4rem;
    font-size: 1.6rem;
  }
  #topics_paging a {
    margin: -1.1rem -1.5rem;
    padding: 1.1rem 1.5rem;
  }
}

li#topics_paging_first,
li#topics_paging_last {
  padding: 0.8rem;
}
li#topics_paging_first a,
li#topics_paging_last a {
  margin: -0.9rem;
  padding: 0.9rem;
}
@media screen and (min-width: 768px), print {
  li#topics_paging_first,
  li#topics_paging_last {
    padding: 1rem;
  }
  li#topics_paging_first a,
  li#topics_paging_last a {
    margin: -1.1rem;
    padding: 1.1rem;
  }
}

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

#total_pages {
  margin-right: 1rem;
}

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

  下層ページ

-------------------------------- */
/* 事業内容 */
.p-service__header {
  margin: 0 -2rem 3rem 0;
}
.p-service__heading {
  display: grid;
  place-content: center;
  height: 13rem;
  padding: 0 2rem 0 0;
  border-radius: 0 0 0 1rem;
}
.p-service__icon {
  display: block;
  height: 3.5rem;
  margin: 0 auto 1rem;
}
.p-service__title {
  display: block;
  font-size: 2.4rem;
}
.p-service__mv {
  aspect-ratio: auto;
  height: 15rem;
  border-radius: 1rem 0 0 0;
}
.p-service__description {
  margin-bottom: 3rem;
}
@media screen and (min-width: 768px), print {
  .p-service__header {
    height: 20rem;
  }
  .p-service__heading {
    width: 30rem;
    height: auto;
    padding: 0;
    border-radius: 1rem 0 0 1rem;
  }
  .p-service__icon {
    height: 4rem;
  }
  .p-service__title {
    font-size: 3rem;
  }
  .p-service__mv {
    height: auto;
    border-radius: 0;
  }
}
@media screen and (min-width: 1100px), print {
  .p-service__header {
    height: 28rem;
    margin: 0 calc(50% - 50vw) 5rem;
    padding: 0 0 0 10rem;
  }
  .p-service__heading {
    width: 45rem;
  }
  .p-service__icon {
    height: 5rem;
  }
  .p-service__title {
    font-size: 4rem;
  }
  .p-service__description {
    margin-bottom: 5rem;
  }
}

/* 事業内容 */
.p-service-menu {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  position: relative;
  margin-bottom: 7rem;
  z-index: 10;
}
.p-service-menu__button {
  display: block;
  padding: 1.2rem 0 1rem;
  text-align: center;
  border-radius: 2rem;
}
.p-service-menu__button::before {
  right: 2rem;
}
.p-service-menu__icon {
  display: block;
  height: 3rem;
  margin: 0 auto 0.5rem;
}
@media screen and (min-width: 768px), print {
  .p-service-menu__button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 4rem 1.5rem 2.4rem;
    border-radius: 10em;
  }
  .p-service-menu__icon {
    margin: 0 1.5rem 0 0;
  }
  .p-service-menu__label {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 1100px), print {
  .p-service-menu {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 10rem;
  }
  .p-service-menu__button {
    display: inline-flex;
  }
}
@media screen and (min-width: 1600px), print {
  .p-service-menu__label {
    font-size: 2.2rem;
  }
}

/* 事業内容 */
.p-service-detail {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
}
.p-service-detail__col {
  padding: 0 2rem 2rem;
}
.p-service-detail__head {
  padding: 2rem 0;
}
.p-service-detail__title {
  font-size: 1.8rem;
}
@media screen and (min-width: 768px), print {
  .p-service-detail {
    grid-template-columns: 1fr 44%;
  }
  .p-service-detail__title {
    font-size: 2rem;
  }
}
@media screen and (min-width: 1100px), print {
  .p-service-detail {
    grid-template-columns: 1fr 39rem;
  }
  .p-service-detail__col {
    padding: 0 4rem 4rem;
  }
  .p-service-detail__head {
    padding: 2.5rem 0;
  }
  .p-service-detail__title {
    font-size: 2.2rem;
  }
}

/* 設置の流れ */
.p-service-flow {
  padding-right: 1rem;
  overflow: hidden;
}
.p-service-flow__list {
  counter-reset: service_flow;
}
.p-service-flow__item + .p-service-flow__item {
  margin-top: 2rem;
}
.p-service-flow__head {
  display: inline-block;
  vertical-align: top;
  padding: 1.5rem 2rem;
  font-size: 1.8rem;
  border-radius: 0 0 1rem 0;
}
.p-service-flow__counter {
  display: grid;
  place-content: center;
  width: 2.8rem;
  height: 2.8rem;
  font-size: 1em;
  margin-right: 1rem;
  padding: 0 0 0.1ch 0.1ch;
  border-radius: 100%;
  border: 2px solid currentColor;
}
.p-service-flow__counter::before {
  counter-increment: service_flow;
  content: counter(service_flow);
}
.p-service-flow__body {
  padding: 2rem 1rem 2rem 2rem;
}
@media screen and (min-width: 1100px), print {
  .p-service-flow__head {
    padding: 1.5rem 3rem;
    font-size: 2rem;
  }
  .p-service-flow__body {
    padding-left: 5rem;
  }
}

/* ご挨拶 */
.p-greeting__img {
  width: 24rem;
  margin: 0 auto 2rem;
}
.p-greeting__name {
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px), print {
  .p-greeting__img {
    margin: 0 0 0 2.5rem;
  }
}
@media screen and (min-width: 1100px), print {
  .p-greeting__img {
    width: 35rem;
    margin-left: 3rem;
  }
}

/* 会社概要 */
.p-outline th {
  width: 15rem;
}
.p-outline__map {
  margin-bottom: 2rem;
}
.p-outline__certificate {
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  width: 28rem;
  margin: 1.5rem auto 0;
}
.p-outline__certificate-item {
  width: 12rem;
}
@media screen and (min-width: 768px), print {
  .p-outline__certificate {
    flex-wrap: nowrap;
    justify-content: flex-start;
    width: auto;
    margin: 1rem 0 0;
  }
  .p-outline__certificate-item {
    width: auto;
  }
}
@media screen and (min-width: 1100px), print {
  .p-outline__certificate {
    max-width: none;
    margin-top: 1.5rem;
    gap: 3rem;
  }
}

/* 沿革 */
.p-history__row + .p-history__row {
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px), print {
  .p-history__row + .p-history__row {
    margin-top: 1rem;
  }
  .p-history__text {
    margin-left: 3rem;
  }
}
@media screen and (min-width: 1100px), print {
  .p-history__text {
    margin-left: 5rem;
  }
}

/* 取扱メーカー */
.p-brand__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.p-brand__item {
  display: grid;
  place-content: center;
  aspect-ratio: 200/80;
  border: 2px solid var(--color-sub1);
}
.p-brand__logo {
  display: block;
  margin: auto;
}
.p-brand__logo--toto {
  width: 50%;
}
.p-brand__logo--lixil {
  width: 44%;
}
.p-brand__logo--takagi {
  width: 52%;
}
.p-brand__logo--rinnai {
  width: 50%;
}
.p-brand__logo--paloma {
  width: 52%;
}
.p-brand__logo--purpose {
  width: 52%;
}
.p-brand__logo--cleanup {
  width: 56%;
}
.p-brand__logo--takara-standard {
  width: 74%;
}
.p-brand__logo--noritz {
  width: 64%;
}
.p-brand__logo--chofu {
  width: 80%;
}
.p-brand__logo--panasonic {
  width: 67%;
}
.p-brand__logo--corona {
  width: 70%;
}
.p-brand__note {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px), print {
  .p-brand__list {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media screen and (min-width: 1100px), print {
  .p-brand__note {
    margin-top: 3rem;
  }
}

/* 採用情報 */
.p-recruit-header {
  position: relative;
  margin-inline: -2rem;
  font-size: 1.4rem;
  text-align: center;
}
.p-recruit-header__counter {
  display: block;
  line-height: 1em;
  font-size: 6.66667em;
}
.p-recruit-header__counter::before {
  content: attr(data-counter);
}
.p-recruit-header__en {
  line-height: 1em;
  font-size: 1.11112em;
}
.p-recruit-header__heading {
  font-size: 2.33334em;
}
.p-recruit-header__caption {
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px), print {
  .p-recruit-header {
    margin-inline: 0;
    padding-left: 12rem;
    text-align: left;
  }
  .p-recruit-header::after {
    margin-left: -12rem;
  }
  .p-recruit-header__counter {
    position: absolute;
    top: 0;
    left: 0;
  }
}
@media screen and (min-width: 1100px), print {
  .p-recruit-header {
    padding-left: 17rem;
    font-size: 1.8rem;
  }
  .p-recruit-header::after {
    margin: 2.5rem 0 0 -17rem;
  }
}

/* 採用情報 */
.p-recruit-intro {
  padding-top: 5rem;
}
.p-recruit-intro__section {
  max-width: none;
  margin: 0 -2rem;
  padding: 0 2rem 5rem;
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: contain;
}
.p-recruit-intro__img {
  aspect-ratio: 870/400;
}
.p-recruit-intro__main {
  margin-top: 2.5rem;
}
.p-recruit-intro__heading {
  margin-bottom: 2rem;
  font-size: 2.4rem;
  letter-spacing: normal;
}
.p-recruit-intro__text {
  font-size: 1.4rem;
}
.p-recruit-intro--primary {
  flex-direction: row-reverse;
}
.p-recruit-intro--primary .p-recruit-intro__img {
  margin-right: calc(50% - 50vw);
  clip-path: polygon(14% 0, 100% 0, 100% 100%, 0% 100%);
}
.p-recruit-intro--secondary .p-recruit-intro__img {
  margin-left: calc(50% - 50vw);
  clip-path: polygon(0 0, 86% 0, 100% 100%, 0% 100%);
}
@media screen and (min-width: 768px), print {
  .p-recruit-intro {
    padding-top: 8rem;
  }
  .p-recruit-intro__section {
    padding-bottom: 10rem;
  }
  .p-recruit-intro__img {
    aspect-ratio: 3/2;
  }
  .p-recruit-intro__main {
    width: 45%;
    margin-top: 0;
  }
  .p-recruit-intro--secondary .p-recruit-intro__main {
    margin-left: 2rem;
  }
}
@media screen and (min-width: 1100px), print {
  .p-recruit-intro__section {
    margin: 0 -5rem;
    padding: 0 5rem 10rem;
  }
  .p-recruit-intro__inner {
    max-width: 134rem;
  }
  .p-recruit-intro__img {
    aspect-ratio: 870/400;
  }
  .p-recruit-intro__heading {
    margin-bottom: 3rem;
    font-size: 3.5rem;
  }
}
@media screen and (min-width: 1600px), print {
  .p-recruit-intro__main {
    width: 60rem;
  }
  .p-recruit-intro__heading {
    margin-bottom: 3rem;
    font-size: 4.2rem;
  }
}

/* どんな仕事をするのか */
.p-recruit-business {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-template-rows: auto;
  gap: 2rem;
  max-width: 36rem;
  margin-inline: auto;
}
.p-recruit-business__item {
  padding-bottom: 2rem;
  letter-spacing: normal;
  overflow: hidden;
}
.p-recruit-business__img {
  display: block;
  aspect-ratio: 340/150;
  margin-bottom: 1rem;
}
.p-recruit-business__title {
  display: block;
  margin-bottom: 0.75rem;
  font-size: 2.4rem;
}
.p-recruit-business__body {
  padding: 0 1rem;
}
@media screen and (min-width: 768px), print {
  .p-recruit-business {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    max-width: none;
    margin-inline: 0;
  }
  .p-recruit-business__title {
    font-size: 2.2rem;
  }
}
@media screen and (min-width: 1100px), print {
  .p-recruit-business__title {
    margin-bottom: 1rem;
    font-size: 2.8rem;
  }
}

/* 働く魅力 */
.p-recruit-appeal {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.p-recruit-appeal__item {
  padding: 2rem 0;
}
.p-recruit-appeal__text {
  display: block;
  font-size: 1.4rem;
  letter-spacing: normal;
}
.p-recruit-appeal__text::before {
  aspect-ratio: 58/50;
  content: "";
  display: block;
  width: 3ch;
  margin: 0 auto 1ch;
  background: url(../img/base/icon-check_blu.svg) center no-repeat;
  background-size: cover;
}
@media screen and (min-width: 768px), print {
  .p-recruit-appeal {
    grid-template-columns: repeat(3, 1fr);
  }
  .p-recruit-appeal__item {
    display: grid;
    place-content: center;
    height: 14rem;
    padding: 0;
  }
  .p-recruit-appeal__text {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1100px), print {
  .p-recruit-appeal__item {
    height: 16rem;
  }
  .p-recruit-appeal__text {
    font-size: 2rem;
  }
}
@media screen and (min-width: 1600px), print {
  .p-recruit-appeal__item {
    height: 18rem;
  }
  .p-recruit-appeal__text {
    font-size: 2.4rem;
  }
}

/* 募集要項 */
.p-recruit-news .news-link {
  padding-left: 4rem;
}
.p-recruit-news .news-link::after {
  content: "";
  aspect-ratio: 41/25;
  display: block;
  position: absolute;
  top: 1.2rem;
  left: 0;
  width: 3rem;
  background: url(../img/base/icon-members_blu.svg) center no-repeat;
  background-size: cover;
}
.p-recruit-news .news-link:hover {
  color: var(--color-link);
}
@media screen and (min-width: 768px), print {
  .p-recruit-news .news-link {
    padding-left: 5rem;
  }
  .p-recruit-news .news-link::after {
    width: 3.4rem;
  }
}
@media screen and (min-width: 1100px), print {
  .p-recruit-news {
    font-size: 2rem;
  }
  .p-recruit-news .news-link {
    padding-left: 6rem;
  }
  .p-recruit-news .news-link::after {
    top: 1.4rem;
    width: 4rem;
  }
}

/* 入社までの流れ */
.p-recruit-flow {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 4.5rem;
  counter-reset: recruit_flow;
  max-width: 36rem;
  margin-inline: auto;
  font-size: 2rem;
}
.p-recruit-flow__item {
  position: relative;
  padding: 2rem 1rem 2rem 2.8rem;
}
.p-recruit-flow__item:not(:last-child):before {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  bottom: -3.5rem;
  left: 0;
  height: 2rem;
  margin: auto;
  aspect-ratio: 1/0.8660254038;
  background-color: var(--color-sub1);
  clip-path: polygon(50% 100%, 100% 0, 0 0);
}
.p-recruit-flow__counter {
  display: grid;
  place-content: center;
  width: 4.8rem;
  height: 4.8rem;
  margin-right: 1.5rem;
  font-size: 1.2857em;
  border-radius: 100%;
}
.p-recruit-flow__counter::before {
  counter-increment: recruit_flow;
  content: counter(recruit_flow, decimal-leading-zero);
}
@media screen and (min-width: 768px), print {
  .p-recruit-flow {
    grid-template-columns: repeat(3, 1fr);
    max-width: none;
    margin-inline: 0;
  }
  .p-recruit-flow__item {
    padding: 2rem 0 1.4rem;
    text-align: center;
  }
  .p-recruit-flow__item:not(:last-child):before {
    top: 0;
    bottom: 0;
    right: -3.5rem;
    left: auto;
    height: 2.6rem;
    aspect-ratio: 0.8660254038;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
  }
  .p-recruit-flow__counter {
    margin: 0 auto 0.5rem;
  }
}
@media screen and (min-width: 1100px), print {
  .p-recruit-flow {
    font-size: 2.8rem;
  }
  .p-recruit-flow__item {
    padding: 2.8rem 3.2rem;
  }
  .p-recruit-flow__counter {
    width: 5.4rem;
    height: 5.4rem;
    margin: 0 1.5rem 0 0;
  }
}

/* よくある質問 */
.p-recruit-faq__row {
  padding: 2.5rem 2rem;
}
.p-recruit-faq__row + .p-recruit-faq__row {
  margin-top: 2rem;
}
.p-recruit-faq__icon {
  display: grid;
  place-content: center;
  width: 3.2rem;
  height: 3.2rem;
  margin-right: 1.6rem;
  font-size: 2rem;
  border-radius: 100%;
}
.p-recruit-faq__icon-a {
  margin-top: -0.2ch;
}
.p-recruit-faq__question {
  font-size: 1.8rem;
}
.p-recruit-faq__answer {
  margin-top: 2rem;
}
@media screen and (min-width: 768px), print {
  .p-recruit-faq__row {
    padding: 3.2rem;
  }
  .p-recruit-faq__row + .p-recruit-faq__row {
    margin-top: 3rem;
  }
  .p-recruit-faq__answer {
    margin-top: 3rem;
  }
}
@media screen and (min-width: 1100px), print {
  .p-recruit-faq__question {
    font-size: 2rem;
  }
}

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

  プリント

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

  修正・追加用

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