@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: #38422b;
  --color-link: #518416;
  --color-hover: #7ab673;
  --color-base: #518416;
  --color-main: #7ab673;
  --color-sub1: #e55b4c;
  --color-sub2: #685851;
  --color-sub3: #8b8b8b;
  --color-sub4: #ffa734;
  --color-sub5: #c4decb;
  --color-sub6: #e3eee6;
  --color-sub8: #888888;
  --color-sub9: #a9a9a9;
  --color-sub10: #7b3f1b;
  --color-sub11: #4e8212;
  --color-sub12: #385a3d;
  --color-sub13: #e1e6e2;
  --color-sub14: #848484;
  --color-sub15: #231815;
  --color-sub16: #f7f4ee;
  --color-sub17: #e2e7a3;
  --color-sub18: #eadcad;
  --color-sub19: #fafff9;
  --color-sub20: #965757;
  --color-sub21: #052346;
  --color-sub22: #f4f4f4;
  --color-sub23: #e5f6e3;
  --color-sub24: #adadad;
  --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: 140rem;
  --box-shadow: 0 0 3px 0 rgba(0, 0, 0, .3);
  --box-shadow2: 0 1px 10px 0 rgba(139, 139, 139, .25);
  --box-shadow3: 0 2px 2px 0 rgba(0, 0, 0, .1);
  --box-shadow4: 0 1px 11px 0 rgba(139, 139, 139, .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;
}

.list-unstyled {
  list-style: none;
}

.text-left, .text-start {
  text-align: left;
}
.text-center {
  text-align: center;
}
.text-right, .text-end {
  text-align: right;
}
.text-indent {
  text-indent: 1em;
}
@media screen and (min-width: 768px), print {
  .text-md-left {
    text-align: left;
  }
  .text-md-center {
    text-align: center;
  }
}
@media screen and (min-width: 1100px), print {
  .text-lg-left {
    text-align: left;
  }
  .text-lg-center {
    text-align: center;
  }
}

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

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

.fw-light {
  font-weight: 300;
}
.fw-light * {
  font-weight: 300;
}
.fw-normal {
  font-weight: 400;
}
.fw-normal * {
  font-weight: 400;
}
.fw-medium {
  font-weight: 500;
}
.fw-medium * {
  font-weight: 500;
}
.fw-semibold {
  font-weight: 600;
}
.fw-semibold * {
  font-weight: 600;
}
.fw-bold {
  font-weight: 700;
}
.fw-bold * {
  font-weight: 700;
}
.fw-exbold {
  font-weight: 800;
}
.fw-exbold * {
  font-weight: 800;
}
.fw-black {
  font-weight: 900;
}
.fw-black * {
  font-weight: 900;
}

.ft-gothic {
  font-family: "Noto Sans JP", sans-serif;
}
.ft-mincho {
  font-family: "Noto Serif JP", sans-serif;
}
.ft-rrone {
  font-family: "RocknRoll One", sans-serif;
}

.bg-light {
  background-color: var(--color-sub19);
}
.bg-base {
  background-color: var(--color-base);
}
.bg-main {
  background-color: var(--color-main);
}
.bg-white {
  background-color: #fff;
}
.bg-box1 {
  background: var(--color-sub6);
}
.bg-box2 {
  background: var(--color-sub16);
}
.bg-box3 {
  background: var(--color-sub23);
}

.color-light {
  color: var(--color-sub17);
}
.color-base {
  color: var(--color-base);
}
.color-main {
  color: var(--color-main);
}
.color-text {
  color: var(--color-sub15);
}
.color-white {
  color: #fff;
}
.color-black {
  color: #000;
}
.color-danger {
  color: #b22c00;
}
.color-sub1 {
  color: var(--color-sub1);
}
.clearfix::after {
  content: "";
  clear: both;
  display: block;
}

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

.flex-1 {
  flex: 1;
}

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

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

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

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

.w-100 {
  width: 100%;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mx-auto {
  margin-inline: auto;
}

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

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

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

  共通スタイル

-------------------------------- */
/* 共通見出し */
.heading {
  position: relative;
  max-width: var(--inner-width);
  margin-inline: auto;
  line-height: 1.2;
  font-feature-settings: "palt" 1;
}
.heading.h2 {
  margin-bottom: 4rem;
  padding-bottom: 4rem;
  font-weight: 700;
  font-size: 3.4rem;
  text-align: center;
  color: var(--color-sub2);
  border-bottom: 1px solid var(--color-sub9);
}
.heading.h2.en::after {
  content: attr(data-subtitle);
  display: block;
  margin-top: 1rem;
  font-weight: 500;
  font-size: 1.8rem;
  color: var(--color-sub8);
}
@media screen and (min-width: 768px), print {
  .heading.h2 {
    font-size: 4rem;
  }
  .heading.h2.en::after {
    margin-top: 1.5rem;
    font-size: 2rem;
  }
}
@media screen and (min-width: 1100px), print {
  .heading.h2 {
    margin-bottom: 5rem;
    padding-bottom: 5rem;
  }
}
.heading.h3 {
  margin-bottom: 4rem;
  line-height: 1.4;
  font-weight: 700;
  font-size: 2.6rem;
  color: #000;
  text-align: center;
}
.heading.h3::after {
  content: "";
  display: block;
  max-width: 38rem;
  height: 0.5rem;
  margin: 1rem auto 0;
  background-color: var(--color-sub1);
}
.heading.h3.__wide::after {
  max-width: 54rem;
}
@media screen and (min-width: 768px), print {
  .heading.h3 {
    margin-bottom: 6rem;
    font-size: 3.4rem;
  }
  .heading.h3::after {
    max-width: 48rem;
    height: 0.6rem;
  }
  .heading.h3.__wide::after {
    max-width: 68rem;
  }
}
@media screen and (min-width: 1100px), print {
  .heading.h3 {
    margin-bottom: 9rem;
    font-size: 4rem;
  }
  .heading.h3::after {
    max-width: 53.8rem;
    height: 0.9rem;
  }
  .heading.h3.__wide::after {
    max-width: 80rem;
  }
}
.heading.h4 {
  margin-bottom: 2rem;
  font-weight: 700;
  font-size: 2.4rem;
}
@media screen and (min-width: 768px), print {
  .heading.h4 {
    margin-bottom: 3rem;
    font-size: 3.2rem;
  }
}
@media screen and (min-width: 1100px), print {
  .heading.h4 {
    margin-bottom: 4rem;
    font-size: 3.6rem;
  }
}
/* 共通リスト */
.list {
  list-style-type: none;
  line-height: 1.5;
}
.list li {
  position: relative;
  padding-left: 1.15em;
}
.list li::before {
  content: "";
  display: block;
  position: absolute;
  top: 0.45em;
  left: 0;
  width: 0.55em;
  height: 0.55em;
  border-radius: 100%;
  background-color: var(--color-base);
}
.list li + li {
  margin-top: 0.35em;
}

/* チェックリスト */
.check-list {
  line-height: 1.5;
}
.check-list li + li {
  margin-top: 2rem;
}
.check-list li {
  position: relative;
  padding-left: 4.5rem;
}
.check-list li::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 3rem;
  height: 3rem;
  background: url(../img/base/icon-checkbox.svg) center no-repeat;
  background-size: contain;
}

/* インデント */
.indent {
  margin-left: 1em;
  text-indent: -1em;
}

/* リンクボタン */
.link-button {
  display: inline-block;
  vertical-align: top;
  position: relative;
  padding: 1.4rem 5rem 1.4rem 3rem;
  color: #fff;
  line-height: 1.2;
  font-size: 1.6rem;
  text-align: center;
  border-radius: 10em;
  background-color: var(--color-link);
  transition: color var(--transition), border-color var(--transition), background-color var(--transition);
}
@media screen and (min-width: 1100px), print {
  .link-button {
    padding: 1.5rem 8rem 1.5rem 6rem;
    font-size: 1.8rem;
  }
}
.link-button::before {
  content: "";
  display: block;
  position: absolute;
  top: 0.1em;
  right: 3rem;
  bottom: 0;
  width: 1rem;
  height: 1rem;
  margin: auto;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}
@media screen and (min-width: 1100px), print {
  .link-button::before {
    right: 5.6rem;
  }
}
.link-button-secondary {
  background-color: var(--color-sub2);
}
.link-button-lg {
  font-size: 1.1em;
}
/* 共通リンクボタン（ホバー）*/
a.link-button:hover {
  text-decoration: none;
  color: #fff;
}
@media (hover: hover) and (pointer: fine) {
  a.link-button:hover {
    color: #fff;
    border-color: var(--color-hover);
    background-color: var(--color-hover);
  }
}

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

/* アンカー位置調整 */
.anchor-point {
  scroll-margin-top: 10rem;
}
@media screen and (min-width: 1100px), print {
  .anchor-point {
    scroll-margin-top: 16rem;
  }
}

/* 画像を角丸にする */
.img-radius {
  border-radius: 1rem;
}
/* コンテンツを角丸にする */
.box-radius {
  border-radius: 1rem;
}
.box-radius-sm {
  border-radius: 0.5rem;
}

/* 画像を囲う要素 */
.img-wrap {
  aspect-ratio: 4/3;
  display: block;
  position: relative;
  overflow: hidden;
}

/* 画像をトリミング */
.img-cover {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

/* Google Maps */
.gmap-area {
  position: relative;
  height: 40rem;
}
.gmap-area iframe {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* 共通テーブル */
.table-style {
  display: block;
  line-height: 1.5;
  font-size: 2rem;
}
.table-style tbody {
  display: block;
}
.table-style tr {
  display: table;
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}
.table-style tr + tr {
  margin-top: 2rem;
}
.table-style th {
  vertical-align: top;
  padding: 0 0 2rem 0.5rem;
  font-weight: 700;
  border-bottom: 3px solid var(--color-base);
}
.table-style td {
  vertical-align: top;
  padding: 0 1rem 2rem 3rem;
  border-bottom: 3px solid var(--color-sub22);
}
.table-style .tel-link {
  color: currentColor;
}
.table-style .tel-link[href] {
  color: currentColor;
}
.table-style .tel-link[href]:hover {
  color: var(--color-hover);
}
@media screen and (max-width: 1099.98px) {
  .table-style {
    font-size: 1.6rem;
  }
  .table-style td {
    padding-left: 2rem;
  }
}
@media screen and (max-width: 767.98px) {
  .table-style tr,
  .table-style th,
  .table-style td {
    display: block;
  }
  .table-style tr + tr {
    margin-top: 3rem;
  }
  .table-style th {
    width: auto !important;
    padding: 0 1rem 1rem;
  }
  .table-style td {
    padding: 1rem;
  }
}

/* アコーディオン */
.accordion + .accordion {
  margin-top: 2rem;
}
.accordion-label {
  list-style: none;
  position: relative;
  padding: 2rem 2rem 5rem;
  line-height: 1.5;
  border-radius: 1rem;
  background-color: #efefef;
  cursor: pointer;
}
.accordion-label::before {
  content: attr(data-label);
  display: grid;
  place-content: center;
  width: 10rem;
  height: 4rem;
  margin: 0 auto 1.5rem;
  line-height: 1em;
  font-weight: 700;
  font-size: 1.6rem;
  color: #fff;
  border-radius: 10em;
  background-color: var(--color-base);
}
.accordion-label .label {
  flex: 1;
  display: block;
  font-weight: 700;
  font-size: 1.6rem;
  word-break: break-all;
  word-wrap: break-word;
}
.accordion-label::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  bottom: 2rem;
  left: 0;
  width: 1.8rem;
  height: 1.8rem;
  margin: auto;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
  transform: rotate(135deg);
  pointer-events: none;
}
.accordion-panel {
  display: none;
  padding: 2rem 0.5rem 4rem;
}
.accordion[open] .accordion-label::after {
  bottom: 1rem;
  transform: rotate(-45deg);
}
.accordion[open] .accordion-panel {
  display: block;
}
@media screen and (min-width: 768px), print {
  .accordion-label {
    display: flex;
    align-items: center;
    padding: 2rem;
  }
  .accordion-label::before {
    margin: 0 2rem 0 0;
  }
  .accordion-label .label {
    font-size: 1.8rem;
  }
  .accordion-label::after {
    position: static;
    margin: 0 1rem;
  }
  .accordion[open] .accordion-label::after {
    margin-top: 1rem;
  }
}
@media screen and (min-width: 1100px), print {
  .accordion-label {
    padding: 2.6rem 3rem;
  }
  .accordion-label::before {
    margin-right: 3rem;
    width: 14rem;
    height: 5rem;
    font-size: 2.4rem;
  }
  .accordion-label .label {
    font-size: 2.4rem;
  }
  .accordion-label::after {
    width: 2.4rem;
    height: 2.4rem;
    margin: 0 1rem 0 3rem;
  }
  .accordion-panel {
    display: none;
    padding: 5rem 1.5rem;
  }
  .accordion[open] .accordion-label::after {
    margin-top: 1.5rem;
  }
}

/* 下線マーカー */
.marker {
  display: inline;
}
.marker-grn {
  background: linear-gradient(rgba(196, 222, 203, 0) 50%, rgb(196, 222, 203) 0%);
}
.marker-gry {
  background: linear-gradient(rgba(225, 230, 226, 0) 50%, rgb(225, 230, 226) 0%);
}

/* 会社名 */
.site-name {
  display: inline-block;
  vertical-align: top;
  position: relative;
  padding-left: 0.5em;
  line-height: 1.4;
  font-size: 1.4rem;
  text-align: center;
  z-index: 10;
}
.site-name .text {
  display: block;
  margin-bottom: 0.5em;
  letter-spacing: 0.1em;
}
.site-name .type,
.site-name .name {
  display: inline-block;
  vertical-align: middle;
}
.site-name .type {
  margin: 0 0.5em -0.5em -0.5em;
  font-size: 1.1em;
  letter-spacing: 0.2em;
}
.site-name .name {
  line-height: 1.2;
  font-size: 2.1em;
  letter-spacing: normal;
}
.site-name:hover {
  text-decoration: none;
}
.site-name.color-white:hover {
  color: #fff;
}
@media screen and (min-width: 375px), print {
  .site-name {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 768px), print {
  .site-name {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 1600px), print {
  .site-name {
    font-size: 2rem;
  }
}

/* 会社情報 */
.site-info {
  line-height: 1.5;
  color: #000;
}
.site-info * {
  font-weight: 700;
}
.site-info-row + .site-info-row {
  margin-top: 2rem;
}
.site-info dt {
  display: grid;
  place-content: center;
  width: 9rem;
  height: 2.2rem;
  margin: 0 auto 1rem;
  font-size: 1.4rem;
  font-family: "Noto Serif JP", sans-serif;
  color: #fff;
  border-radius: 10em;
  background-color: #000;
}
.site-info dd {
  text-align: center;
}
.site-info .tel-link[href] {
  color: currentColor;
}
.site-info .tel-link[href]:hover {
  text-decoration: underline;
  color: currentColor;
}
.site-info.color-white .tel-link {
  color: var(--color-white);
}
@media screen and (min-width: 768px), print {
  .site-info-row {
    display: flex;
    align-items: center;
  }
  .site-info-row + .site-info-row {
    margin-top: 1.6rem;
  }
  .site-info dt {
    margin: 0;
  }
  .site-info dd {
    flex: 1;
    margin-left: 2rem;
    text-align: left;
  }
}
/* 連絡先 */
.site-contact * {
  font-weight: 700;
}
.site-contact + .site-contact {
  margin-top: 2rem;
}
.site-contact .tel-link, .site-contact-link {
  display: block;
  padding: 1.4rem 0;
  line-height: 1.5;
  color: #fff;
  text-align: center;
  border-radius: 0.5rem;
  background-color: #000;
  transition: background-color var(--transition);
}
.site-contact .tel-link {
  background-color: var(--color-base);
}
.site-contact-link {
  background-color: var(--color-sub1);
}
.site-contact .tel-link[href]:hover, .site-contact-link:hover {
  text-decoration: none;
  color: #fff;
  background-color: var(--color-hover);
}
.site-contact-text {
  display: block;
  margin-bottom: 0.8rem;
  font-size: 1.4rem;
}
.site-contact-num, .site-contact-label {
  display: inline-flex;
  align-items: center;
}
.site-contact-num::before, .site-contact-label::before {
  content: "";
  display: block;
  width: 3rem;
  height: 3rem;
  margin-right: 1rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.site-contact-num {
  line-height: 1em;
  font-size: 3rem;
}
.site-contact-num::before {
  background-image: url(../img/base/icon-tel_wht.svg);
}
.site-contact-label {
  line-height: 1em;
  font-size: 2.4rem;
}
.site-contact-label::before {
  background-image: url(../img/base/icon-mail_wht.svg);
}
@media screen and (min-width: 1280px), print {
  .site-contact .tel-link, .site-contact-link {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 7rem;
    padding: 0;
    text-align: left;
  }
  .site-contact-text {
    margin: 0 2rem 0 0;
  }
  .site-contact-label {
    width: 18ch;
  }
}

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

  html, body

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

html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -o-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  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;
  }
}

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

  wrapper

-------------------------------- */
.wrapper {
  position: relative;
  overflow: hidden;
}
/* --------------------------------

  header

-------------------------------- */
.header {
  padding-top: 7rem;
}
@media screen and (min-width: 1100px), print {
  .header {
    padding-top: 0;
  }
}
.header-container {
  display: grid;
  place-content: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 7rem;
  font-size: 100%;
  background-color: var(--color-sub19);
  z-index: 900;
}
@media screen and (min-width: 1100px), print {
  .header-container {
    display: block;
    position: absolute;
    height: auto;
    background: none;
    z-index: 1010;
  }
}
.header-logo .site-logo img {
  display: block;
  width: 16rem;
}
@media screen and (min-width: 1100px), print {
  .header-logo {
    position: relative;
  }
  .header-logo .site-logo {
    position: absolute;
    top: 3.8rem;
    left: 3.4rem;
  }
  .header-logo .site-logo img {
    width: 21rem;
  }
}
.header-tel {
  display: none;
}
@media screen and (min-width: 1100px), print {
  .header-tel {
    display: block;
    position: relative;
  }
  .header-tel .tel-link {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    right: 0;
    width: 26rem;
    height: 6rem;
    line-height: 1;
    font-weight: 700;
    font-size: 2.4rem;
    color: #fff;
    background-color: var(--color-hover);
    border-radius: 0 0 0 1.5rem;
  }
  .header-tel .tel-link::before {
    content: "";
    display: block;
    width: 2.4rem;
    height: 2.4rem;
    margin: 0.25rem 1rem 0 0.25rem;
    background: url(../img/base/icon-tel_wht.svg) center no-repeat;
    background-size: contain;
  }
  .header-tel .tel-link[href]:hover {
    text-decoration: none;
  }
}
@media screen and (min-width: 1280px), print {
  .header-tel .tel-link {
    width: 28.4rem;
    height: 8.4rem;
    font-size: 3rem;
  }
  .header-tel .tel-link::before {
    width: 2.8rem;
    height: 2.8rem;
  }
}

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

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

  nav

-------------------------------- */
.nav {
  display: block;
  position: fixed;
  top: 0;
  left: -28rem;
  width: 28rem;
  height: 100%;
  z-index: 1000;
}
.nav-container {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background-color: var(--color-sub19);
  z-index: 10;
}
@media screen and (min-width: 1100px), print {
  .nav {
    position: absolute;
    left: auto;
    width: 100%;
    height: auto;
  }
  .nav-container {
    display: flex;
    background-color: transparent;
    overflow: visible;
  }
}
@media screen and (max-width: 1099.98px) {
  .nav {
    transition: left 0.3s;
  }
  .nav-open .nav {
    left: 0;
  }
}

/* メインナビ */
.main-nav {
  padding: 7rem 1rem 1rem;
}
.main-nav .nav-item {
  position: relative;
}
.main-nav .nav-link,
.main-nav .nav-label {
  display: flex;
  align-items: center;
  position: relative;
  height: 6rem;
  padding: 0 5rem 0 2rem;
  font-weight: 500;
  font-size: 1.6rem;
  color: var(--color-base);
}
.main-nav .nav-link:hover {
  text-decoration: none;
}
@media screen and (min-width: 1100px) and (hover: hover) and (pointer: fine), print {
  .main-nav .nav-link:hover {
    color: var(--color-hover);
  }
}
@media screen and (min-width: 1100px), print {
  .main-nav {
    display: flex;
    margin-left: auto;
    padding: 5rem 3rem 0 0;
  }
  .main-nav .nav-item + .nav-item {
    margin-left: 3rem;
  }
  .main-nav .nav-link,
  .main-nav .nav-label {
    flex-direction: column;
    justify-content: center;
    height: 8.4rem;
    padding: 0;
    font-size: 1.8rem;
    letter-spacing: normal;
    transition: color var(--transition);
  }
  .main-nav .nav-home {
    display: none;
  }
}
@media screen and (min-width: 1280px), print {
  .main-nav {
    padding: 0 31.4rem 0 0;
  }
  .main-nav .nav-item + .nav-item {
    margin-left: 3rem;
  }
}
@media screen and (min-width: 1600px), print {
  .main-nav {
    padding-right: 33.2rem;
  }
  .main-nav .nav-item + .nav-item {
    margin-left: 4rem;
  }
}
@media screen and (max-width: 1099.98px) {
  .main-nav .nav-item {
    border-top: 1px solid var(--color-sub5);
  }
  .main-nav .nav-item:last-child {
    border-bottom: 1px solid var(--color-sub5);
  }
}

/* メインナビ（第2階層）*/
.sub-nav {
  margin: 0 2rem 3rem;
  background-color: var(--color-main);
  border-radius: 1rem;
}
.sub-nav a {
  display: block;
  padding: 1.6rem 0;
  line-height: 1.2;
  font-size: 1.6rem;
  color: #fff;
  text-align: center;
  letter-spacing: normal;
  transition: background-color var(--transition);
}
.sub-nav a:hover {
  text-decoration: none;
}
@media (hover: hover) and (pointer: fine) {
  .sub-nav a:hover {
    background-color: var(--color-hover);
  }
}
@media screen and (min-width: 1100px), print {
  .sub-nav {
    position: relative;
    left: 50%;
    width: 24rem;
    margin: 0 0 0 -12rem;
    box-shadow: var(--box-shadow3);
    overflow: hidden;
  }
  .sub-nav a {
    font-size: 1.8rem;
  }
  .sub-nav a:hover {
    background-color: var(--color-link);
  }
}

/* ドロップダウン：ボタン */
.dropdown-toggle {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 6rem;
  background: transparent;
  z-index: 10;
}
.dropdown-toggle:hover {
  cursor: pointer;
}
.dropdown-toggle::before {
  content: "";
  display: block;
  position: absolute;
  top: 2.4rem;
  right: 2rem;
  width: 0.9rem;
  height: 0.9rem;
  border-top: 2px solid var(--color-sub20);
  border-right: 2px solid var(--color-sub20);
  transform: rotate(135deg);
}
.dropdown-toggle.show::before {
  top: 2.8rem;
  transform: rotate(-45deg);
}
.dropdown-toggle::after {
  display: none;
}
@media screen and (min-width: 1100px), print {
  .dropdown-toggle {
    height: 100%;
    z-index: 30;
  }
  .dropdown-toggle::before {
    top: auto;
    right: 0;
    bottom: 1.2rem;
    left: 0;
    width: 0.8rem;
    height: 0.8rem;
    margin: auto;
    border-width: 1px;
  }
  .dropdown-toggle.show::before {
    top: auto;
    bottom: 0.8rem;
  }
  .dropdown-toggle.show + .nav-link, .dropdown-toggle.show + .nav-label {
    color: var(--color-hover);
  }
}
@media screen and (min-width: 1100px) and (hover: hover) and (pointer: fine), print {
  .dropdown-toggle:hover + .nav-link, .dropdown-toggle:hover + .nav-label {
    color: var(--color-hover);
  }
}

/* ドロップダウン：メニュー */
.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: 1099.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: 1100px), 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: 5px !important;
    opacity: 1;
    pointer-events: auto;
  }
}

/* ナビゲーション開閉ボタン */
.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: 1100px), print {
  .nav-button {
    display: none;
  }
}
.nav-open .nav-button {
  display: none;
}
.nav-button-icon {
  display: block;
  position: absolute;
  top: -1.4rem;
  right: 0;
  bottom: 0;
  left: 0;
  width: 3rem;
  height: 1.8rem;
  margin: auto;
  border-top: 2px solid var(--color-link);
  border-bottom: 2px solid var(--color-link);
}
.nav-button-icon::before, .nav-button-icon::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  margin: auto;
  border-top: 2px solid var(--color-link);
}
.nav-button-icon::after {
  display: none;
}
.nav-button::after {
  content: "MENU";
  display: block;
  position: absolute;
  bottom: 0.6rem;
  left: 0;
  width: 100%;
  line-height: 1;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--color-link);
  text-align: center;
}
/* ナビゲーション開閉ボタン */
.nav-close-button {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 6rem;
  height: 6rem;
  line-height: 1;
  font-family: inherit;
  background-color: transparent;
  cursor: pointer;
  z-index: 10;
}
@media screen and (min-width: 1100px), print {
  .nav-close-button {
    display: none;
  }
}
.nav-close-button .nav-button-icon {
  border: none;
}
.nav-close-button .nav-button-icon::before, .nav-close-button .nav-button-icon::after {
  border-color: var(--color-link);
}
.nav-close-button .nav-button-icon::before {
  transform: rotate(45deg);
}
.nav-close-button .nav-button-icon::after {
  display: block;
  transform: rotate(-45deg);
}
.nav-close-button::after {
  content: "CLOSE";
  display: block;
  position: absolute;
  bottom: 0.6rem;
  left: 0;
  width: 100%;
  line-height: 1;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--color-link);
  text-align: center;
}

/* ナビゲーション背景 */
@media screen and (min-width: 1100px), print {
  .nav-screen {
    display: none;
  }
}
.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 .nav-screen-overlay {
  pointer-events: auto;
  opacity: 0.35;
  cursor: pointer;
}

/* スクロール時固定用 */
@media screen and (min-width: 1100px), print {
  .is-fixed .nav {
    position: fixed;
    top: -60px;
    background-color: var(--color-sub19);
    box-shadow: var(--box-shadow);
    transform: translateY(60px);
    transition: transform var(--transition);
  }
}
@media screen and (min-width: 1280px), print {
  .is-fixed .main-nav {
    padding-bottom: 2rem;
  }
}

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

  main

-------------------------------- */
.main {
  position: relative;
  padding-right: 2rem;
  padding-left: 2rem;
}
@media screen and (min-width: 1100px), print {
  .main {
    padding-right: 5rem;
    padding-left: 5rem;
  }
}
.top .main {
  position: static;
  padding-right: 0;
  padding-left: 0;
}

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

  footer

-------------------------------- */
.footer {
  padding: 0 2rem 6rem;
  background-color: var(--color-sub12);
}
.footer-container {
  padding: 6rem 0 0;
}
.footer-main {
  margin-bottom: 4rem;
}
.footer-logo {
  margin: 0 -2rem 4rem;
}
.footer-info {
  display: flex;
  justify-content: center;
}
.footer-info .site-info {
  color: #fff;
}
.footer-info .site-info dt {
  background-color: var(--color-base);
}
.footer-nav {
  max-width: 28rem;
  margin: 0 auto 4rem;
}
.footer-nav .nav-list + .nav-list {
  margin-top: 1rem;
}
.footer-nav .nav-item + .nav-item {
  margin-top: 1rem;
}
.footer-nav .nav-label,
.footer-nav .nav-link {
  display: block;
  position: relative;
  padding: 1rem 0;
  font-size: 1.6rem;
  color: var(--color-text);
  text-align: center;
  background-color: var(--color-sub5);
}
.footer-nav .nav-label {
  border-radius: 1rem 1rem 0 0;
}
.footer-nav .nav-link {
  border-radius: 1rem;
}
.footer-nav .nav-label[href]:hover,
.footer-nav .nav-link:hover {
  text-decoration: none;
}
.footer-subnav {
  padding: 1rem 1.5rem;
  border-radius: 0 0 1rem 1rem;
  background-color: var(--color-sub6);
}
.footer-subnav a {
  display: block;
  position: relative;
  padding: 1rem 0;
  font-size: 1.6rem;
  color: var(--color-text);
  text-align: center;
}
.footer-subnav a:hover {
  text-decoration: none;
}
.footer-sidenav {
  max-width: 28rem;
  margin: auto;
}
.footer-sidenav .nav-list {
  text-align: center;
}
.footer-sidenav li + li {
  margin-top: 1rem;
}
.footer-sidenav a {
  display: block;
  padding: 1rem;
  font-size: 1.4rem;
  color: #fff;
  text-align: center;
  border-radius: 1rem;
  border: 1px solid var(--color-sub5);
}
.footer-sidenav a:hover {
  text-decoration: none;
}
@media screen and (min-width: 640px), print {
  .footer-nav {
    display: flex;
    max-width: none;
    margin: 0 0 4rem;
  }
  .footer-nav .nav-list {
    width: 33.3333%;
  }
  .footer-nav .nav-list + .nav-list {
    margin-top: 0;
    padding-left: 2rem;
  }
  .footer-nav .nav-link {
    padding: 1.24rem 0;
  }
  .footer-sidenav {
    max-width: none;
    margin: 0;
  }
  .footer-sidenav .nav-list {
    display: flex;
    justify-content: center;
  }
  .footer-sidenav li + li {
    margin: 0 0 0 2rem;
  }
  .footer-sidenav a {
    margin: -1rem;
    padding: 1rem;
    border-radius: 0;
    border: none;
  }
  .footer-sidenav a:hover {
    text-decoration: underline;
  }
}
@media screen and (min-width: 1100px), print {
  .footer {
    padding: 0 5rem;
  }
  .footer-container {
    display: flex;
    flex-direction: row-reverse;
    max-width: 160rem;
    padding: 6rem 0;
  }
  .footer-main {
    align-self: center;
    margin: 0 0 0 3rem;
    padding-bottom: 0;
    border-bottom: none;
  }
  .footer-side {
    flex: 1;
  }
  .footer-logo {
    margin: -4rem 0 4rem;
  }
  .footer-info .site-info dt {
    background-color: var(--color-base);
  }
  .footer-nav {
    margin-bottom: 3rem;
    padding: 0 0 3.4rem 0.5rem;
    border-bottom: 1px solid var(--color-sub14);
  }
  .footer-nav .nav-list + .nav-list {
    padding-left: 0;
  }
  .footer-nav .nav-label,
  .footer-nav .nav-link {
    display: inline-block;
    vertical-align: top;
    padding: 0 0 0 2rem;
    color: #fff;
    text-align: left;
    background-color: transparent;
  }
  .footer-nav .nav-label::before,
  .footer-nav .nav-link::before {
    content: "";
    display: block;
    position: absolute;
    top: 0.5em;
    left: 0;
    width: 1rem;
    height: 1rem;
    border-radius: 100%;
    background-color: #fff;
  }
  .footer-nav .nav-label {
    border-radius: 0;
  }
  .footer-nav .nav-link {
    border-radius: 0;
  }
  .footer-subnav {
    margin: 0.5rem 0 0 2rem;
    padding: 0;
    border-radius: 0;
    background-color: transparent;
  }
  .footer-subnav li + li {
    margin-top: 0.25rem;
  }
  .footer-subnav a {
    display: inline-block;
    vertical-align: top;
    padding: 0 0 0 1em;
    font-size: 1.6rem;
    color: #fff;
  }
  .footer-subnav a:hover {
    text-decoration: underline;
  }
  .footer-subnav a::before {
    content: "・";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
  }
  .footer-sidenav {
    padding: 0 0 0 0.5rem;
  }
  .footer-sidenav .nav-list {
    justify-content: flex-start;
  }
  .footer-sidenav a {
    display: inline-block;
    vertical-align: top;
    margin: 0;
    padding: 0;
    font-size: 1.4rem;
    text-align: left;
  }
}
@media screen and (min-width: 1600px), print {
  .footer {
    padding: 0 10rem;
  }
  .footer-main {
    margin-left: 10rem;
  }
  .footer-logo {
    margin-top: -2rem;
  }
  .footer-nav .nav-label,
  .footer-nav .nav-link {
    font-size: 2rem;
  }
  .footer-subnav a {
    font-size: 2rem;
  }
  .footer-sidenav li + li {
    margin-left: 3.5rem;
  }
  .footer-sidenav a {
    font-size: 1.8rem;
  }
}

/* ページの先頭へ */
.pagetop {
  display: block;
  position: fixed;
  right: 0.5rem;
  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 {
  .pagetop {
    right: 1rem;
    bottom: 7rem;
    width: 5rem;
    height: 5rem;
  }
}
@media screen and (min-width: 1100px), print {
  .pagetop {
    right: 1rem;
    bottom: 1rem;
  }
}
.is-fixed .pagetop {
  opacity: 1;
  pointer-events: auto;
}
.pagetop a {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 0.5rem;
  background-color: var(--color-link);
  transition: background-color var(--transition);
}
.pagetop a:hover {
  text-decoration: none;
}
@media (hover: hover) and (pointer: fine) {
  .pagetop a:hover {
    background-color: var(--color-hover);
  }
}
.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);
}

/* コピーライト */
.copy {
  display: grid;
  place-content: center;
  height: 6rem;
  margin: 4rem -2rem 0;
  border-top: 1px solid var(--color-sub5);
}
.copy small {
  display: block;
  width: 100%;
  font-size: 1.4rem;
  color: #fff;
  letter-spacing: 0.1em;
}
.copy span {
  display: none;
}
@media screen and (min-width: 768px), print {
  .copy {
    height: 7rem;
  }
  .copy small {
    letter-spacing: 0.2em;
  }
  .copy span {
    display: inline;
  }
}
@media screen and (min-width: 1100px), print {
  .copy {
    display: block;
    height: auto;
    margin: 0;
    padding: 4rem 0 0 0.5rem;
    border-top: none;
  }
}

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

  ページタイトル

-------------------------------- */
.page-title {
  display: grid;
  place-content: center;
  position: relative;
  height: 14rem;
  line-height: 1.2;
  font-weight: 700;
  font-size: calc(1.8rem + 2vw);
  color: #fff;
  text-align: center;
  background-color: var(--color-main);
  z-index: 10;
}
.page-title-container {
  position: relative;
  margin-bottom: -6rem;
  background-color: var(--color-sub19);
}
.page-title-inner {
  position: relative;
  padding: 0 2rem 14rem 0;
}
.page-title-wrap {
  position: relative;
  background-color: #fff;
}
.page-title-wrap::before, .page-title-wrap::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.page-title-wrap::before {
  top: 2rem;
  left: 2rem;
  background-color: var(--color-sub18);
}
.page-title-wrap::after {
  inset: 0;
  background-color: #fff;
}
.page-title-img {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 0.5rem;
  grid-row-gap: 0.5rem;
  position: relative;
  padding: 0 0.5rem 0.5rem 0;
  aspect-ratio: 1460/326;
  z-index: 10;
}
.page-title-img .img-item {
  position: relative;
}
.page-title-img .img-item1 {
  grid-area: 1/6/2/7;
}
.page-title-img .img-item2 {
  grid-area: 1/5/2/6;
}
.page-title-img .img-item3 {
  grid-area: 1/4/2/5;
}
.page-title-img .img-item4 {
  grid-area: 1/2/3/3;
}
.page-title-img .img-item5 {
  grid-area: 1/1/2/2;
}
.page-title-img .img-item6 {
  grid-area: 1/3/3/4;
}
.page-title-img .img-item7 {
  grid-area: 2/5/3/7;
}
.page-title-img .img-item8 {
  grid-area: 2/1/3/2;
}
.page-title-img .img-item9 {
  grid-area: 2/4/3/5;
}
.page-title-img .img-wrap {
  aspect-ratio: 1/1;
}
.page-title-img .img-auto {
  height: 100%;
}
@media screen and (min-width: 768px), print {
  .page-title {
    height: 18rem;
  }
}
@media screen and (min-width: 1100px), print {
  .page-title {
    width: 34%;
    height: auto;
    font-size: calc(1.2rem + 1.8vw);
  }
  .page-title-container {
    margin-bottom: -10rem;
    padding: 15rem 0 0 0;
  }
  .page-title-inner {
    padding: 0 14rem 24rem 0;
  }
  .page-title-wrap {
    display: flex;
  }
  .page-title-wrap::before {
    top: 3rem;
    left: 3rem;
  }
  .page-title-img {
    padding: 0 0.5rem 0 0;
  }
}
.page-subtitle {
  display: block;
  margin: -0.5rem 0 1rem;
  font-weight: 700;
  font-size: 0.8em;
}

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

  お問い合わせボタン

-------------------------------- */
/* お問い合わせ（電話）*/
.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 {
  .tel-button {
    display: none;
  }
}
.tel-button a {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 0 0 0 1rem;
  background-color: var(--color-hover);
}
.tel-button a:hover {
  text-decoration: none;
}
.tel-button a::before {
  content: "";
  display: block;
  position: absolute;
  top: 0.8rem;
  right: 0;
  left: 0;
  width: 2.6rem;
  height: 2.6rem;
  margin: auto;
  background: url(../img/base/icon-tel_wht.svg) center no-repeat;
  background-size: cover;
}
.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.2rem;
  font-family: inherit;
  color: #fff;
  text-align: center;
  letter-spacing: 0.15em;
}

/* お問い合わせ（メール）*/
.contact-button {
  display: block;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6rem;
  padding: 0 0.5rem;
  overflow: hidden;
  z-index: 900;
}
@media screen and (min-width: 1100px), print {
  .contact-button {
    position: fixed;
    top: 50%;
    right: 0;
    bottom: auto;
    left: auto;
    width: 8rem;
    height: auto;
    margin-top: 5rem;
    padding: 0;
    z-index: 1010;
    transform: translateY(-50%);
  }
}
.contact-button a {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  height: 100%;
  color: #fff;
  text-align: center;
  border-radius: 1rem 1rem 0 0;
  background-color: var(--color-sub1);
}
@media screen and (min-width: 1100px), print {
  .contact-button a {
    flex-direction: column;
    height: 25rem;
    line-height: 1.5;
    border-radius: 2rem 0 0 2rem;
    transition: background-color var(--transition);
  }
}
.contact-button a:hover {
  text-decoration: none;
}
@media (hover: hover) and (pointer: fine) {
  .contact-button a:hover {
    background-color: var(--color-sub4);
  }
}
.contact-button a::before {
  content: "";
  display: block;
  width: 2rem;
  height: 2.6rem;
  margin-right: 0.5em;
  background: url(../img/base/icon-karte_wht.svg) center no-repeat;
  background-size: contain;
}
@media screen and (min-width: 1100px), print {
  .contact-button a::before {
    margin: 0 auto 1.8rem;
  }
}
.contact-button span {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
}
@media screen and (min-width: 1100px), print {
  .contact-button span {
    display: inline-block;
    vertical-align: top;
    vertical-align: inherit;
    width: 2.5em;
    line-height: 2.5em;
    writing-mode: vertical-rl;
    letter-spacing: 0.3em;
  }
}

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

  トップページ

-------------------------------- */
/* ページ内共通 */
.section-secondary {
  line-height: 1.8;
  color: #000;
}
@media screen and (min-width: 1100px), print {
  .section-secondary {
    max-width: var(--inner-width);
    margin-inline: auto;
  }
}
.section-secondary:not(:last-child) {
  margin-bottom: 10rem;
}
@media screen and (min-width: 1100px), print {
  .section-secondary:not(:last-child) {
    margin-bottom: 15rem;
  }
}
.section-dummy:not(:last-child) {
  margin-bottom: 5rem;
  position: relative;
  z-index: 30;
}
@media screen and (min-width: 1100px), print {
  .section-dummy:not(:last-child) {
    margin-bottom: 5rem;
  }
}
.section-dummy-fluid {
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
}
.section-header {
  position: relative;
  margin-bottom: 4rem;
}
@media screen and (min-width: 1100px), print {
  .section-header {
    margin-bottom: 5rem;
  }
}
.section-heading {
  line-height: 1.2;
  font-weight: 700;
  font-size: 3.4rem;
  text-align: center;
  color: var(--color-sub2);
}
.section-heading::after {
  content: attr(data-subtitle);
  display: block;
  margin-top: 1rem;
  font-weight: 500;
  font-size: 1.8rem;
  color: var(--color-sub8);
}
@media screen and (min-width: 768px), print {
  .section-heading {
    font-size: 4rem;
  }
  .section-heading::after {
    margin-top: 1.5rem;
    font-size: 2rem;
  }
}
.section-shape {
  display: block;
  position: absolute;
  width: 100%;
  padding-top: 20%;
  pointer-events: none;
}
@media screen and (min-width: 768px), print {
  .section-shape {
    padding-top: 12%;
  }
}
@media screen and (min-width: 1100px), print {
  .section-shape {
    height: calc(12rem + 1px);
    padding-top: 0;
  }
}
.section-shape-primary {
  top: -1px;
  right: 0;
  clip-path: polygon(100% 0, 0 0, 100% 100%);
}
.section-shape-secondary {
  right: 0;
  bottom: -1px;
  clip-path: polygon(100% 100%, 100% 0, 0 100%);
}
.section-container {
  margin-inline: calc(50% - 50vw);
  padding-right: 2rem;
  padding-left: 2rem;
}
@media screen and (min-width: 1100px), print {
  .section-container {
    padding-right: 5rem;
    padding-left: 5rem;
  }
}

/* メイングラフィック */
.mv-section {
  position: relative;
}
.mv-container {
  position: relative;
  padding: 0 1.6rem 11.6rem 0;
}
.mv-inner {
  position: relative;
}
.mv-inner::before {
  content: "";
  aspect-ratio: 874/1460;
  display: block;
  position: absolute;
  top: 1.6rem;
  left: 1.6rem;
  width: 100%;
  background-color: var(--color-sub18);
  pointer-events: none;
}
.mv-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(5, 1fr);
  grid-column-gap: 0.4rem;
  grid-row-gap: 0.4rem;
  aspect-ratio: 874/1460;
  position: relative;
  padding: 0 0.8rem 0.8rem 0;
  background-color: #fff;
  z-index: 10;
}
.mv-wrap.is-loaded .mv-img {
  animation: fadeIn 1s forwards;
}
.mv-wrap.is-loaded .mv-img1 {
  animation-delay: 0s;
}
.mv-wrap.is-loaded .mv-img2 {
  animation-delay: 0.1s;
}
.mv-wrap.is-loaded .mv-img3 {
  animation-delay: 0.2s;
}
.mv-wrap.is-loaded .mv-img4 {
  animation-delay: 0.3s;
}
.mv-wrap.is-loaded .mv-img5 {
  animation-delay: 0.4s;
}
.mv-wrap.is-loaded .mv-img6 {
  animation-delay: 0.5s;
}
.mv-wrap.is-loaded .mv-img7 {
  animation-delay: 0.6s;
}
.mv-wrap.is-loaded .mv-img8 {
  animation-delay: 0.7s;
}
.mv-wrap.is-loaded .mv-img9 {
  animation-delay: 0.8s;
}
.mv-wrap.is-reloaded .mv-img {
  opacity: 1;
}
.mv-item1 {
  grid-area: 1/3/2/4;
}
.mv-item2 {
  grid-area: 1/2/2/3;
}
.mv-item3 {
  grid-area: 1/1/2/2;
}
.mv-item4 {
  grid-area: 3/1/5/2;
}
.mv-item5 {
  grid-area: 4/3/5/4;
}
.mv-item6 {
  grid-area: 3/2/5/3;
}
.mv-item7 {
  grid-area: 5/2/6/4;
}
.mv-item8 {
  grid-area: 5/1/6/2;
}
.mv-item9 {
  grid-area: 3/3/4/4;
}
.mv-item10 {
  grid-area: 2/1/3/4;
}
.mv-img {
  position: relative;
  height: 100%;
  overflow: hidden;
  opacity: 0;
}
.mv-catch {
  display: grid;
  place-content: center;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.mv-catch.is-loaded {
  animation: fadeZoomIn 1s forwards;
}
.mv-catch.is-reloaded {
  opacity: 1;
}
.mv-catch .site-name {
  padding-left: 0;
  font-size: calc(0.8rem + 1vw);
}
.mv-catch .site-name .text {
  font-size: 1.2em;
}
@media screen and (min-width: 768px), print {
  .mv-inner::before {
    aspect-ratio: 1460/880;
  }
  .mv-wrap {
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(3, 1fr);
    aspect-ratio: 1460/880;
  }
  .mv-item1 {
    grid-area: 1/5/2/6;
  }
  .mv-item2 {
    grid-area: 1/4/2/5;
  }
  .mv-item3 {
    grid-area: 1/3/2/4;
  }
  .mv-item4 {
    grid-area: 1/2/3/3;
  }
  .mv-item5 {
    grid-area: 1/1/2/2;
  }
  .mv-item6 {
    grid-area: 2/1/4/2;
  }
  .mv-item7 {
    grid-area: 3/2/4/4;
  }
  .mv-item8 {
    grid-area: 3/4/4/5;
  }
  .mv-item9 {
    grid-area: 3/5/4/6;
  }
  .mv-item10 {
    grid-area: 2/3/3/6;
  }
}
@media screen and (min-width: 1100px), print {
  .mv-section {
    position: relative;
    padding: 15rem 0 0;
  }
  .mv-container {
    position: relative;
    padding: 0 14rem 18rem 0;
  }
  .mv-inner {
    position: relative;
  }
  .mv-inner::before {
    content: "";
    aspect-ratio: 1460/880;
    display: block;
    position: absolute;
    top: 3rem;
    left: 3rem;
    width: 100%;
    background-color: var(--color-sub18);
    pointer-events: none;
  }
  .mv-wrap {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(3, 1fr);
    grid-column-gap: 0.8rem;
    grid-row-gap: 0.8rem;
    aspect-ratio: 1460/880;
    position: relative;
    padding: 0;
    background-color: #fff;
    z-index: 10;
  }
  .mv-item1 {
    grid-area: 1/5/2/6;
  }
  .mv-item2 {
    grid-area: 1/4/2/5;
  }
  .mv-item3 {
    grid-area: 1/3/2/4;
  }
  .mv-item4 {
    grid-area: 1/2/3/3;
  }
  .mv-item5 {
    grid-area: 1/1/2/2;
  }
  .mv-item6 {
    grid-area: 2/1/4/2;
  }
  .mv-item7 {
    grid-area: 3/2/4/4;
  }
  .mv-item8 {
    grid-area: 3/4/4/5;
  }
  .mv-item9 {
    grid-area: 3/5/4/6;
  }
  .mv-item10 {
    grid-area: 2/3/3/6;
  }
  .mv-img {
    position: relative;
    height: 100%;
    overflow: hidden;
  }
  .mv-catch {
    display: grid;
    place-content: center;
    width: 100%;
    height: 100%;
  }
  .mv-catch .site-name {
    font-size: calc(0.4rem + 1vw);
  }
  .mv-catch .site-name .text {
    margin-bottom: 1em;
    font-size: 1.45em;
  }
}

/* 業務案内 */
.ecotrust-service-section {
  padding: 0 2rem 10rem;
}
.ecotrust-service-container {
  max-width: 160rem;
}
.ecotrust-service-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 -2rem -4rem 0;
}
.ecotrust-service-item {
  width: 100%;
  padding: 0 2rem 4rem 0;
}
.ecotrust-service-inner {
  display: flex;
  flex-direction: column;
  position: relative;
  height: 100%;
  padding-bottom: 8rem;
  border-radius: 0.5rem 0.5rem 0 0;
  background-color: #fff;
  box-shadow: var(--box-shadow2);
}
.ecotrust-service-img {
  aspect-ratio: 2/1;
  border-radius: 0.5rem 0.5rem 0 0;
}
.ecotrust-service-img img {
  transition: opacity var(--transition), transform var(--transition);
}
.ecotrust-service-head {
  margin-bottom: 2rem;
}
.ecotrust-service-body {
  flex: 1;
  padding: 0 2rem;
  line-height: 1.65;
  color: var(--color-sub15);
}
.ecotrust-service-title {
  position: relative;
  line-height: 1.4;
  font-size: 2.4rem;
  color: var(--color-sub8);
}
.ecotrust-service-title .icon {
  display: block;
  width: 9rem;
  height: 9rem;
  margin: -4.5rem auto 2rem;
  border-radius: 100%;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  box-shadow: var(--box-shadow3);
}
.ecotrust-service-title .icon-roof {
  background-image: url(../img/base/icon-roof.svg);
}
.ecotrust-service-title .icon-interior {
  background-image: url(../img/base/icon-interior.svg);
}
.ecotrust-service-title .icon-wateraround {
  background-image: url(../img/base/icon-wateraround.svg);
}
.ecotrust-service-title .icon-care {
  background-image: url(../img/base/icon-care.svg);
}
.ecotrust-service-title .icon-waterheaters {
  background-image: url(../img/base/icon-waterheaters.svg);
}
.ecotrust-service-more a:hover {
  text-decoration: none;
}
.ecotrust-service-more a::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 10;
}
.ecotrust-service-more .more {
  display: block;
  position: absolute;
  right: 0;
  bottom: 2rem;
  left: 0;
  width: 4rem;
  height: 4rem;
  margin: auto;
  border-radius: 100%;
  background-color: var(--color-link);
  transition: background-color var(--transition);
}
.ecotrust-service-more .more::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  left: -0.5rem;
  width: 1.2rem;
  height: 1.2rem;
  margin: auto;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
}
.ecotrust-service-inner:hover {
  background-color: var(--color-sub19);
}
.ecotrust-service-inner:hover .ecotrust-service-img img {
  opacity: 0.75;
  transform: scale(1.05);
}
.ecotrust-service-inner:hover .ecotrust-service-more .more {
  background-color: var(--color-hover);
}
@media screen and (min-width: 768px), print {
  .ecotrust-service-item {
    width: 50%;
  }
  .ecotrust-service-img {
    aspect-ratio: 480/351;
  }
}
@media screen and (min-width: 1100px), print {
  .ecotrust-service-section {
    padding: 0 5rem 10rem;
  }
  .ecotrust-service-list {
    margin: 0 -3.6rem -5.6rem 0;
  }
  .ecotrust-service-item {
    width: 33.3333%;
    padding: 0 3.6rem 5.6rem 0;
  }
  .ecotrust-service-inner {
    padding-bottom: 10rem;
  }
  .ecotrust-service-head {
    margin-bottom: 3.5rem;
  }
  .ecotrust-service-body {
    padding: 0 3rem;
  }
  .ecotrust-service-title {
    font-size: 2.6rem;
  }
  .ecotrust-service-title .icon {
    width: 10.5rem;
    height: 10.5rem;
    margin: -5.25rem auto 2rem;
  }
  .ecotrust-service-more .more {
    bottom: 3rem;
  }
}

/* 給湯器専門店 */
.ecotrust-intro-container {
  position: relative;
  padding-bottom: 10rem;
}
.ecotrust-intro-inner {
  position: relative;
}
.ecotrust-intro-header {
  margin-bottom: 5rem;
  text-align: center;
}
.ecotrust-intro-heading {
  display: inline-block;
  vertical-align: top;
  position: relative;
  padding: 1.4rem 1rem;
  text-align: center;
  background-color: var(--color-sub4);
}
.ecotrust-intro-heading .site-name {
  font-size: calc(0.8rem + 1vw);
}
.ecotrust-intro-heading .site-name .text {
  margin-bottom: 0;
}
.ecotrust-intro-heading::before, .ecotrust-intro-heading::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  width: 5rem;
  height: 100%;
  margin: auto;
  background-color: var(--color-sub4);
  pointer-events: none;
}
.ecotrust-intro-heading::before {
  left: -2rem;
  clip-path: polygon(100% 0%, 100% 50%, 100% 100%, 0 100%, 30% 50%, 0 0);
}
.ecotrust-intro-heading::after {
  right: -2rem;
  clip-path: polygon(100% 0%, 70% 50%, 100% 100%, 0 100%, 0 50%, 0 0);
}
.ecotrust-intro-body {
  align-items: center;
  max-width: none;
}
.ecotrust-intro-img {
  position: relative;
  margin: 0 4rem 2rem 0;
}
.ecotrust-intro-img::before {
  content: "";
  display: block;
  position: absolute;
  right: -2rem;
  bottom: -2rem;
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  background-color: rgba(227, 238, 230, 0.5);
}
.ecotrust-intro-img .img-wrap {
  aspect-ratio: 707/818;
  z-index: 1;
}
.ecotrust-intro-main {
  padding: 3rem 2rem 0;
}
.ecotrust-intro-text {
  margin-bottom: 3rem;
  font-size: 1.6rem;
}
.ecotrust-intro-sideimg {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 -1rem -1rem 0;
}
.ecotrust-intro-sideimg-item {
  width: 50%;
  padding: 0 1rem 1rem 0;
}
.ecotrust-intro-sideimg .img-wrap {
  aspect-ratio: 1/1;
}
.ecotrust-intro-detail {
  margin-top: 4rem;
}
.ecotrust-intro-detail-title {
  padding: 2rem 0;
  font-size: 1.8rem;
  border-radius: 1.5rem 1.5rem 0 0;
  background-color: var(--color-sub5);
}
.ecotrust-intro-detail-title .title {
  display: block;
  position: relative;
  text-align: center;
}
.ecotrust-intro-detail-title .title::before {
  content: "";
  display: block;
  width: 7.2rem;
  height: 7.2rem;
  margin: 0 auto 1.5rem;
  border-radius: 100%;
  background: #fff url(../img/base/icon-waterheaters.svg) center no-repeat;
  background-size: 2.6rem auto;
}
.ecotrust-intro-detail-title .lg {
  line-height: 1.4;
  font-size: 1.2em;
}
.ecotrust-intro-detail-list {
  display: flex;
  justify-content: center;
  padding: 3rem 2rem 4rem;
  font-size: 1.6rem;
  border-radius: 0 0 1.5rem 1.5rem;
  background-color: var(--color-sub6);
}
.ecotrust-intro-detail-list .lg {
  line-height: 1.4;
  font-size: 1.1em;
}
.ecotrust-intro-more {
  margin-top: 2.5rem;
}
@media screen and (min-width: 480px), print {
  .ecotrust-intro-sideimg-item {
    width: 33.3333333333%;
  }
}
@media screen and (min-width: 1100px), print {
  .ecotrust-intro-container {
    padding-bottom: 20rem;
  }
  .ecotrust-intro-heading {
    padding: 1.4rem 4rem;
  }
  .ecotrust-intro-heading .site-name {
    font-size: 1.8rem;
  }
  .ecotrust-intro-img {
    width: 43.75%;
    margin: 0 0 7rem calc(50% - 50vw);
  }
  .ecotrust-intro-img::before {
    bottom: -7rem;
  }
  .ecotrust-intro-main {
    padding: 0 5rem;
  }
  .ecotrust-intro-sideimg {
    margin: 0 -2rem -2rem 0;
  }
  .ecotrust-intro-sideimg-item {
    width: 33.3333333333%;
    padding: 0 2rem 2rem 0;
  }
}
@media screen and (min-width: 1600px), print {
  .ecotrust-intro-header {
    margin-bottom: 6.6rem;
  }
  .ecotrust-intro-heading {
    padding: 1.4rem 8rem;
  }
  .ecotrust-intro-heading .site-name {
    font-size: 2rem;
  }
  .ecotrust-intro-img::before {
    right: -3rem;
    bottom: -7rem;
    width: 66rem;
    height: 70rem;
  }
  .ecotrust-intro-main {
    padding: 0 10rem;
  }
  .ecotrust-intro-text {
    margin-bottom: 4rem;
    font-size: 1.8rem;
  }
  .ecotrust-intro-sideimg {
    margin: 0 -4.2rem -4.2rem 0;
  }
  .ecotrust-intro-sideimg-item {
    padding: 0 4.2rem 4.2rem 0;
  }
  .ecotrust-intro-detail {
    margin-top: 4.6rem;
  }
  .ecotrust-intro-detail-title {
    display: grid;
    place-content: center;
    height: 10rem;
    padding: 0;
  }
  .ecotrust-intro-detail-title .title {
    padding-left: 9.7rem;
    text-align: left;
  }
  .ecotrust-intro-detail-title .title::before {
    position: absolute;
    inset: 0;
    right: auto;
    margin: auto;
  }
  .ecotrust-intro-detail-title .lg {
    font-size: 1.3em;
  }
  .ecotrust-intro-detail-list {
    padding: 4rem 2rem;
    font-size: 1.8rem;
  }
  .ecotrust-intro-detail-list .lg {
    font-size: 1.2em;
  }
}

/* お知らせ */
.ecotrust-news-section {
  position: relative;
  padding: 0 2rem;
  z-index: 10;
}
.ecotrust-news-container {
  padding: 3rem 0;
}
.ecotrust-news-header {
  margin-bottom: 0;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--color-sub9);
}
.ecotrust-news-more {
  margin-top: 4rem;
}
@media screen and (min-width: 1100px), print {
  .ecotrust-news-section {
    padding: 0 5rem;
  }
  .ecotrust-news-container {
    padding: 3rem 0 6rem;
  }
  .ecotrust-news-header {
    padding-bottom: 5rem;
  }
}

/* 事例紹介 */
.ecotrust-works-container {
  position: relative;
  padding: 10rem 0;
}
.ecotrust-works-inner {
  position: relative;
}
.ecotrust-works-body {
  position: relative;
}
.ecotrust-works-caption {
  margin-top: 3rem;
  font-size: 1.6rem;
  text-align: center;
}
.ecotrust-works-slider .swiper-slide {
  height: auto;
}
.ecotrust-works-nav {
  margin: 3rem 0;
}
.ecotrust-works-nav .swiper-button {
  display: flex;
  justify-content: center;
}
.ecotrust-works-nav .swiper-button-next,
.ecotrust-works-nav .swiper-button-prev {
  display: block;
  position: relative;
  width: 4rem;
  height: 4rem;
  margin: 0;
  color: var(--color-sub21);
  border-radius: 100%;
  border: 1px solid currentColor;
  background-color: transparent;
}
.ecotrust-works-nav .swiper-button-next::before,
.ecotrust-works-nav .swiper-button-prev::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  width: 1.2rem;
  height: 1.2rem;
  margin: auto;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}
.ecotrust-works-nav .swiper-button-next:hover,
.ecotrust-works-nav .swiper-button-prev:hover {
  color: var(--color-hover);
}
.ecotrust-works-nav .swiper-button-prev {
  left: auto;
  margin-right: 2rem;
}
.ecotrust-works-nav .swiper-button-prev::before {
  right: -0.5rem;
  transform: rotate(-135deg);
}
.ecotrust-works-nav .swiper-button-next {
  right: auto;
  margin-left: 2rem;
}
.ecotrust-works-nav .swiper-button-next::before {
  left: -0.5rem;
  transform: rotate(45deg);
}
.ecotrust-works-nav .swiper-navigation-icon {
  display: none;
}
@media screen and (min-width: 1100px), print {
  .ecotrust-works-container {
    padding: 22rem 5rem 17rem;
  }
  .ecotrust-works-header {
    display: flex;
    max-width: 130rem;
  }
  .ecotrust-works-heading {
    text-align: left;
  }
  .ecotrust-works-caption {
    margin: -0.5rem 0 0 9rem;
    font-size: 1.8rem;
    text-align: left;
    letter-spacing: 0.15em;
  }
  .ecotrust-works-body {
    margin: 0 -5rem;
  }
  .ecotrust-works-more {
    margin-top: 6rem;
  }
  .ecotrust-works-nav {
    position: absolute;
    top: -12.5rem;
    right: 0;
    left: 0;
    width: 100%;
    height: 1px;
    margin: auto;
    padding: 0 5rem;
    z-index: 30;
  }
  .ecotrust-works-nav .swiper-button {
    display: block;
    position: relative;
    max-width: 130rem;
    margin: auto;
  }
  .ecotrust-works-nav .swiper-button-next,
  .ecotrust-works-nav .swiper-button-prev {
    position: absolute;
  }
  .ecotrust-works-nav .swiper-button-prev {
    right: 6rem;
    margin-right: 0;
  }
  .ecotrust-works-nav .swiper-button-next {
    right: 0;
  }
}

/* メニュー */
.ecotrust-menu-section {
  padding: 0 2rem;
}
.ecotrust-menu-container {
  padding: 5rem 0;
}
.ecotrust-menu-list {
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: auto;
  grid-column-gap: 2rem;
  grid-row-gap: 4rem;
}
.ecotrust-menu-item {
  position: relative;
}
.ecotrust-menu-img {
  margin-bottom: 1.5rem;
}
.ecotrust-menu-img .img-wrap {
  aspect-ratio: 3/1;
  background-color: #fff;
}
.ecotrust-menu-img img {
  transition: opacity var(--transition), transform var(--transition);
}
.ecotrust-menu-label {
  margin-bottom: 1rem;
}
.ecotrust-menu-label a:hover {
  text-decoration: none;
}
.ecotrust-menu-label a::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 10;
}
.ecotrust-menu-label .label {
  display: block;
  position: relative;
  line-height: 1.2;
  font-weight: 700;
  font-size: 2.4rem;
}
.ecotrust-menu-label .label::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 1.4rem;
  bottom: 0;
  width: 1.8rem;
  height: 1.8rem;
  margin: auto;
  border-top: 4px solid var(--color-sub12);
  border-right: 4px solid var(--color-sub12);
  transform: rotate(45deg);
}
.ecotrust-menu-caption {
  color: var(--color-sub2);
}
.ecotrust-menu-item:hover .ecotrust-menu-img img {
  opacity: 0.75;
  transform: scale(1.05);
}
.ecotrust-menu-item:hover .ecotrust-menu-label .label::before {
  border-color: currentColor;
}
.ecotrust-menu-item:hover .ecotrust-menu-caption {
  color: var(--color-hover);
}
@media screen and (min-width: 768px), print {
  .ecotrust-menu-list {
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 2.4rem;
    grid-row-gap: 0px;
  }
  .ecotrust-menu-img .img-wrap {
    aspect-ratio: 638/322;
  }
}
@media screen and (min-width: 1100px), print {
  .ecotrust-menu-section {
    padding: 0 5rem;
  }
  .ecotrust-menu-container {
    padding: 14rem 0 8rem;
  }
  .ecotrust-menu-img {
    margin-bottom: 2rem;
  }
  .ecotrust-menu-label {
    margin-bottom: 1.5rem;
  }
  .ecotrust-menu-label .label {
    font-size: 2.8rem;
  }
  .ecotrust-menu-label .label::before {
    top: 50%;
    width: 2.8rem;
    height: 2.8rem;
    border-width: 5px;
  }
}

/* 会社情報 */
.ecotrust-info-section {
  padding: 0 2rem 6rem;
}
.ecotrust-info-img {
  margin-bottom: 4rem;
}
.ecotrust-info-img .img-wrap {
  aspect-ratio: 635/396;
}
.ecotrust-info-logo {
  margin-bottom: 2rem;
}
.ecotrust-info-detail {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
}
.ecotrust-info-contact {
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: auto;
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  max-width: 74rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px), print {
  .ecotrust-info-img {
    max-width: 60%;
    margin-inline: auto;
  }
  .ecotrust-info-contact {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1100px), print {
  .ecotrust-info-section {
    padding: 0 5rem 12rem;
  }
  .ecotrust-info-img {
    width: calc(50% - 1.2rem);
    max-width: none;
    margin: 0 5rem 0 0;
  }
  .ecotrust-info-img .img-wrap {
    aspect-ratio: auto;
    height: 100%;
  }
  .ecotrust-info-main {
    align-self: center;
  }
  .ecotrust-info-contact {
    grid-template-columns: auto;
  }
}
@media screen and (min-width: 1600px), print {
  .ecotrust-info-img .img-wrap {
    aspect-ratio: 635/396;
    height: auto;
  }
}

/* 求人情報 */
.ecotrust-recruit-section.__secondary {
  margin-inline: -2rem;
}
.ecotrust-recruit-container {
  position: relative;
  padding: 6rem 2rem;
  background: url(../img/base/img-recruit.jpg) no-repeat center;
  background-size: cover;
}
.ecotrust-recruit-container::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(1, 31, 54, 0.36);
}
.ecotrust-recruit-inner {
  padding: 3rem 0;
  background-color: #fff;
}
.ecotrust-recruit-header {
  margin-bottom: 2.5rem;
}
.ecotrust-recruit-heading {
  line-height: 1.2;
  font-size: 2.4rem;
  color: var(--color-sub2);
}
.ecotrust-recruit-heading::before {
  content: attr(data-subtitle);
  display: block;
  margin-bottom: 1rem;
  font-size: 4.8rem;
  color: var(--color-base);
}
.ecotrust-recruit-body {
  font-size: 1.6rem;
}
.ecotrust-recruit-more {
  margin-top: 2rem;
}
@media screen and (min-width: 768px), print {
  .ecotrust-recruit-inner {
    padding: 4.5rem 0;
  }
  .ecotrust-recruit-header {
    margin-bottom: 4rem;
  }
  .ecotrust-recruit-heading {
    font-size: 3rem;
  }
  .ecotrust-recruit-heading::before {
    font-size: 6.4rem;
  }
  .ecotrust-recruit-body {
    font-size: 1.8rem;
  }
  .ecotrust-recruit-more {
    margin-top: 3.5rem;
  }
}
@media screen and (min-width: 1100px), print {
  .ecotrust-recruit-section.__secondary {
    margin-inline: -5rem;
  }
  .ecotrust-recruit-container {
    padding: 8.5rem 5rem;
  }
  .ecotrust-recruit-heading {
    font-size: 3.8rem;
  }
  .ecotrust-recruit-heading::before {
    margin-bottom: 2rem;
    font-size: 8rem;
  }
  .ecotrust-recruit-body {
    font-size: 2rem;
  }
  .ecotrust-recruit-more {
    margin-top: 3rem;
  }
}

/* ローディング */
.loader {
  display: grid;
  place-content: center;
  position: fixed;
  top: 0;
  left: 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 {
  display: none;
}
.loader-logo {
  display: block;
  width: 21rem;
  opacity: 0;
  transform: translateY(100px);
}
.loader-logo.is-loaded {
  animation: fadeInUp 0.6s forwards;
}

/* アニメーション */
.anim-item {
  pointer-events: none;
}
.anim-item.is-active {
  pointer-events: auto;
}
.anim-item.fadeIn {
  opacity: 0;
}
.anim-item.fadeIn.is-active {
  animation: fadeIn 0.75s forwards;
}
.anim-item.fadeInUp {
  opacity: 0;
  transform: translateY(100px);
}
.anim-item.fadeInUp.is-active {
  animation: fadeInUp 0.75s forwards;
}
.anim-item.fadeZoomIn {
  opacity: 0;
  transform: scale(1.4);
}
.anim-item.fadeZoomIn.is-active {
  animation: fadeZoomIn 0.75s forwards;
}
.anim-item.fadeInRight {
  opacity: 0;
  transform: translateX(100px);
}
.anim-item.fadeInRight.is-active {
  animation: fadeInRight 0.75s forwards;
}
.anim-item.fadeInLeft {
  opacity: 0;
  transform: translateX(-100px);
}
.anim-item.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);
  }
}
/* --------------------------------

  お知らせ

-------------------------------- */
.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: 3rem;
  text-align: center;
}
.news-back {
  margin-top: 5rem;
  text-align: center;
}
.news-link {
  display: block;
  position: relative;
  padding: 2rem 0;
  line-height: 1.5;
  border-bottom: 1px dotted #ddd;
}
.news-link:hover {
  text-decoration: none;
}
.news-link:hover .news-date {
  color: var(--color-hover);
}
.news-link:hover .news-title {
  text-decoration: none;
}
.news-date {
  margin-bottom: 0.5rem;
  color: var(--color-text);
}
.news-title {
  word-break: break-all;
  word-wrap: break-word;
}
.news-img {
  position: relative;
}
.news-img-inner {
  display: block;
  position: relative;
  background-color: #fff;
  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: 7em;
    margin-bottom: 0;
  }
  .news-title {
    flex: 1;
  }
}
@media screen and (min-width: 1100px), print {
  .news-link {
    padding: 3rem 0;
  }
}

/* お知らせ一覧：サムネイル（大）*/
.news-list-img {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  grid-column-gap: 2rem;
  grid-row-gap: 5rem;
}
.news-list-img .news-link {
  display: block;
  height: 100%;
  padding: 0;
  border: none;
}
.news-list-img .news-link:hover .news-img img {
  opacity: 0.75;
  transform: scale(1.05);
}
.news-list-img .news-link:hover .news-img::before {
  background-color: var(--color-sub5);
}
.news-list-img .news-link:hover .news-category {
  background-color: var(--color-hover);
}
.news-list-img .news-link:hover .news-title {
  color: var(--color-hover);
}
.news-list-img .news-category {
  display: inline-block;
  vertical-align: top;
  padding: 0.6rem 2rem 0.8rem;
  line-height: 1em;
  font-size: 1.2rem;
  color: #fff;
  border-radius: 10em;
  background-color: var(--color-sub10);
}
.news-list-img .news-title {
  margin-top: 1rem;
  color: #000;
}
.news-list-img .news-img {
  margin-bottom: 2.5rem;
}
.news-list-img .news-img::before {
  content: "";
  display: block;
  position: absolute;
  right: -1rem;
  bottom: -1rem;
  width: 100%;
  height: 100%;
  background-color: var(--color-sub17);
}
.news-list-img .news-img img {
  transition: opacity var(--transition), transform var(--transition);
  z-index: 1;
}
.news-list-img .news-img-inner {
  aspect-ratio: 416/278;
}
@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: 4rem;
    grid-row-gap: 7rem;
  }
  .news-list-img .news-category {
    padding: 0.8rem 2.5rem 1rem;
    font-size: 1.4rem;
  }
  .news-list-img .news-img {
    margin-bottom: 4rem;
  }
  .news-list-img .news-img::before {
    right: -2rem;
    bottom: -2rem;
  }
}

/* お知らせ一覧スライダー：サムネイル（大）*/
.news-list-slider .news-link {
  display: block;
  height: 100%;
  padding: 0;
  border: none;
}
.news-list-slider .news-link:hover .news-img img {
  opacity: 0.75;
  transform: scale(1.05);
}
.news-list-slider .news-link:hover .news-img::before {
  background-color: var(--color-sub5);
}
.news-list-slider .news-link:hover .news-category {
  background-color: var(--color-hover);
}
.news-list-slider .news-link:hover .news-title {
  color: var(--color-hover);
}
.news-list-slider .news-category {
  display: inline-block;
  vertical-align: top;
  padding: 0.6rem 2rem 0.8rem;
  line-height: 1em;
  font-size: 1.2rem;
  color: #fff;
  border-radius: 10em;
  background-color: var(--color-sub10);
}
.news-list-slider .news-title {
  overflow: hidden;
  font-variant: normal;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-top: 1rem;
  color: #000;
}
.news-list-slider .news-img {
  margin-bottom: 2.5rem;
}
.news-list-slider .news-img::before {
  content: "";
  display: block;
  position: absolute;
  right: -1rem;
  bottom: -1rem;
  width: 100%;
  height: 100%;
  background-color: var(--color-sub17);
}
.news-list-slider .news-img img {
  transition: opacity var(--transition), transform var(--transition);
  z-index: 1;
}
.news-list-slider .news-img-inner {
  aspect-ratio: 416/278;
}
@media screen and (min-width: 1100px), print {
  .news-list-slider .news-category {
    padding: 0.8rem 2.5rem 1rem;
    font-size: 1.4rem;
  }
  .news-list-slider .news-img {
    margin-bottom: 4rem;
  }
  .news-list-slider .news-img::before {
    right: -2rem;
    bottom: -2rem;
  }
}

/* topics_paging */
#topics_paging {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 -2rem;
}
#topics_paging_all {
  margin-top: 10rem;
  margin-bottom: 2rem;
  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-radius: 0.5rem;
  border: 1px solid var(--color-hover);
  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-link);
}
#topics_paging a:hover {
  text-decoration: none;
  color: var(--color-hover);
}

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

#total_pages {
  margin-right: 1rem;
}

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

  下層ページ

-------------------------------- */
.page-caption {
  position: relative;
  max-width: 36rem;
  margin: 0 auto 2.5rem;
  padding: 1.5rem 0.5rem;
  line-height: 1.4;
  font-size: 1.6rem;
  text-align: center;
  border-radius: 10em;
  background-color: currentColor;
}
.page-caption::before {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  bottom: -1.5rem;
  left: 0;
  width: 2rem;
  height: 1.6rem;
  margin: auto;
  clip-path: polygon(50% 100%, 100% 0, 0 0);
  background-color: currentColor;
}
.page-intro {
  font-size: 1.6rem;
}
@media screen and (min-width: 768px), print {
  .page-caption {
    max-width: 48rem;
    font-size: 2rem;
  }
  .page-intro {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 1100px), print {
  .page-caption {
    max-width: 55.6rem;
    margin-bottom: 3rem;
    padding: 2rem 1rem;
    font-size: 2.4rem;
  }
  .page-intro {
    margin-inline: -5rem;
    font-size: 2rem;
  }
}

/* 選ばれる理由 */
.reason-list {
  counter-reset: reason_list;
  margin-top: 5rem;
}
.reason-list-row + .reason-list-row {
  margin-top: 2rem;
}
.reason-list-row {
  position: relative;
  padding: 16rem 2rem 2rem;
}
.reason-list-counter {
  display: grid;
  place-content: center;
  position: absolute;
  top: 3rem;
  right: 0;
  left: 0;
  width: 10rem;
  height: 10rem;
  margin: auto;
  padding: 1.4ch 0 0;
  line-height: 1.2;
  font-size: 1.6rem;
  text-align: center;
  border-radius: 10rem 1rem 10rem 10rem;
}
.reason-list-counter::before, .reason-list-counter::after {
  content: "";
  display: block;
}
.reason-list-counter::before {
  content: "REASON";
  display: block;
}
.reason-list-counter::after {
  counter-increment: reason_list;
  content: counter(reason_list, decimal-leading-zero);
  font-size: 1.5em;
}
.reason-list-title {
  display: block;
  margin: -1rem 0 2rem;
  font-size: 2rem;
}
.reason-list-title .lg {
  font-size: 1.5em;
}
@media screen and (min-width: 1100px), print {
  .reason-list {
    margin-top: 9rem;
  }
  .reason-list-row + .reason-list-row {
    margin-top: 3rem;
  }
  .reason-list-row {
    min-height: 22rem;
    padding: 4rem 4rem 4rem 22rem;
  }
  .reason-list-counter {
    top: 0;
    right: auto;
    bottom: 0;
    left: 4rem;
    width: 12rem;
    height: 12rem;
    font-size: 2rem;
  }
  .reason-list-title {
    margin-bottom: 2.4rem;
    font-size: 2.4rem;
  }
}

/* 代表のご挨拶 */
.greeting-name {
  font-size: 1.8em;
}

/* 会社情報 */
.company-outline th {
  width: 16rem;
}
.company-map {
  margin-top: 4rem;
  margin-bottom: 4rem;
  background-color: var(--color-sub16);
}
@media screen and (min-width: 1100px), print {
  .company-map {
    height: 47rem;
    margin-top: 6rem;
    margin-bottom: 6rem;
  }
}

/* 資格保有者 */
.license {
  max-width: 28ch;
}
.license-row + .license-row {
  margin-top: 0.5rem;
}

/* 住宅リフォーム */
.reform-container {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.reform-mv {
  aspect-ratio: 1321/588;
  margin-bottom: 2rem;
}
.reform-img {
  aspect-ratio: 1600/662;
  margin-inline: -2rem;
  margin-bottom: 8rem;
  overflow: visible;
}
.reform-icon {
  aspect-ratio: 1/1;
  display: block;
  position: absolute;
  right: 0;
  bottom: -5rem;
  left: 0;
  width: 10rem;
  margin: auto;
  border-radius: 100%;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  box-shadow: var(--box-shadow3);
  z-index: 1;
}
.reform-icon-roof {
  background-image: url(../img/base/icon-roof.svg);
  background-size: 64% auto;
}
.reform-icon-interior {
  background-image: url(../img/base/icon-interior.svg);
  background-size: 60% auto;
}
.reform-icon-wateraround {
  background-image: url(../img/base/icon-wateraround.svg);
  background-size: 50% auto;
}
.reform-icon-care {
  background-image: url(../img/base/icon-care.svg);
  background-size: 50% auto;
}
.reform-content {
  box-shadow: var(--box-shadow4);
  overflow: hidden;
}
.reform-content:not(:first-child) {
  margin-top: 3rem;
}
.reform-content-main {
  padding: 3rem 2rem;
}
.reform-before_after {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  grid-column-gap: 3rem;
  grid-row-gap: 0px;
  margin-top: 3rem;
}
.reform-before_after li {
  position: relative;
}
.reform-before_after li + li::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -1.9rem;
  width: 1rem;
  height: 2rem;
  margin: auto;
  background-color: var(--color-sub24);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.reform-before_after .img-wrap {
  aspect-ratio: 606/373;
}
.reform-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 3rem -1rem -1rem 0;
}
.reform-gallery-col {
  width: 50%;
  padding: 0 1rem 1rem 0;
}
.reform-gallery .img-wrap {
  aspect-ratio: 437/280;
}
.reform-more {
  margin-top: 5rem;
}
@media screen and (min-width: 768px), print {
  .reform-mv {
    margin-bottom: 3rem;
  }
  .reform-img {
    margin-bottom: 9rem;
  }
  .reform-icon {
    bottom: -6rem;
    width: 12rem;
    height: 12rem;
  }
  .reform-content:not(:first-child) {
    margin-top: 4rem;
  }
  .reform-content-img {
    width: 40%;
  }
  .reform-content-img .img-wrap {
    aspect-ratio: auto;
    height: 100%;
  }
  .reform-content-main {
    padding: 3rem;
  }
  .reform-before_after {
    grid-column-gap: 6rem;
    margin-top: 4rem;
  }
  .reform-before_after li + li::before {
    left: -3.5rem;
    width: 1.5rem;
    height: 3rem;
  }
  .reform-gallery {
    margin: 4rem -2rem -2rem 0;
  }
  .reform-gallery-col {
    width: 33.33333%;
    padding: 0 2rem 2rem 0;
  }
}
@media screen and (min-width: 1100px), print {
  .reform-container {
    padding-top: 9rem;
    padding-bottom: 9rem;
  }
  .reform-mv {
    margin-bottom: 4rem;
  }
  .reform-img {
    margin-inline: -5rem;
    margin-bottom: 11.9rem;
  }
  .reform-icon {
    bottom: -7.4rem;
    width: 14.8rem;
    height: 14.8rem;
  }
  .reform-content:not(:first-child) {
    margin-top: 5rem;
  }
  .reform-content-img {
    width: 48rem;
  }
  .reform-content-main {
    padding: 6rem;
  }
  .reform-before_after {
    grid-column-gap: 9rem;
  }
  .reform-before_after li + li::before {
    left: -5.1rem;
    width: 2rem;
    height: 4rem;
  }
  .reform-gallery {
    margin: 4rem -4.5rem -4.5rem 0;
  }
  .reform-gallery-col {
    width: 33.33333%;
    padding: 0 4.5rem 4.5rem 0;
  }
  .reform-more {
    margin-top: 5rem;
  }
}
/* --------------------------------

  プリント

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

  修正・追加用

-------------------------------- */
/* 
  公開時非表示設定
  ・給湯器
  ・よくある質問
  ・お客様の声
*/
.ecotrust-service-section.__secondary .ecotrust-service-container {
  max-width: 110rem;
}
.ecotrust-service-section.__secondary .ecotrust-service-list {
  margin: 0 -2rem -2rem 0;
}
.ecotrust-service-section.__secondary .ecotrust-service-item {
  padding: 0 2rem 2rem 0;
}
@media screen and (min-width: 1100px), print {
  .ecotrust-service-section.__secondary .ecotrust-service-item {
    width: 50%;
  }
  .ecotrust-service-section.__secondary .ecotrust-service-list {
    margin: 0 -4rem -4rem 0;
  }
  .ecotrust-service-section.__secondary .ecotrust-service-item {
    padding: 0 4rem 4rem 0;
  }
}