@charset "UTF-8";

:root {
  /* color */
  --base-color: #000;
  --base-color-rgb: 0, 0, 0;
  --main-color: #163162;
  --main-color-rgb: 22, 49, 98;
  --point-color: #0E419F;
  --point-color02: #0098F7;
  --point-color02-rgb: 56, 148, 240;
  --pink-color: #DB3A86;
  --pink-color-rgb: 219, 58, 134;
  --yellow-color: #DBA83A;
  --yellow-color-rgb: 219, 168, 58;
  --green-color: #65B60F;
  --green-color-rgb: 141, 219, 58;
  --bg-color: #F1F3F6;
  --line-color: rgba(22, 49, 98, 0.15);
  --gradation-color: linear-gradient(90deg, rgba(21, 78, 155, 0.6), rgba(201, 131, 178, 0.4), rgba(248, 246, 241, 0.2));
  /* transition */
  --base-transition: 0.35s ease-out;
  /* z-index */
  --header-index: 999;
  --modal-index: 9999;
}

/* animation
------------------------------ */

@-webkit-keyframes infinity-scroll-txt {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

@keyframes infinity-scroll-txt {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  word-break: break-word;
}

html {
  -webkit-text-size-adjust: 100%;
  position: relative;
  height: 100%;
  height: -webkit-fill-available;
  font-size: 62.5%;
}

body {
  position: relative;
  width: 100%;
  margin: 0 auto;
  color: var(--base-color);
  font-size: 1.6rem;
  line-height: 1.3;
  font-family: 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  letter-spacing: 0.05em;
}

body.fixed {
  position: fixed;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

section {
  position: relative;
  padding: 120px 0;
}

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

main {
  position: relative;
  margin-top: 100px;
  overflow: hidden;
}

.inner {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.inner.narrow {
  width: 100%;
  max-width: 1040px;
}

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

a,
button,
select {
  color: var(--base-color);
  font-family: 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  cursor: pointer;
}

input {
  color: var(--base-color);
  font-family: 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

select {
  background-color: #fff;
}

a {
  -webkit-transition: var(--base-transition);
  display: block;
  text-decoration: none;
  word-break: break-all;
  transition: var(--base-transition);
}

span,
sub,
sup {
  font-weight: inherit;
}

sup {
  vertical-align: top;
}

sub {
  vertical-align: bottom;
}

strong {
  font-weight: 700;
}

p.txt {
  line-height: 1.5;
}

.ib {
  display: inline-block;
}

.en {
  font-family: "Open Sans", sans-serif;
}

.caution {
  color: var(--pink-color);
}

.disable {
  opacity: 0.3;
  pointer-events: none;
}

/* hover
------------------------------ */

.c-hover {
  display: inline-block;
  overflow: hidden;
  line-height: 1;
}

.c-hover__inn {
  -webkit-transform: translateY(0);
  -webkit-transition: var(--base-transition);
  display: inline-block;
  transform: translateY(0);
  text-shadow: 0 20px var(--point-color02);
  transition: var(--base-transition);
}

/* bgTxt
------------------------------ */

.c-bgTxt {
  width: 100%;
  overflow: hidden;
}

.c-bgTxt__inn {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-animation: infinity-scroll-txt 30s linear infinite;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  width: 4920px;
  animation: infinity-scroll-txt 30s linear infinite;
}

.c-bgTxt img {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 820px;
  padding-right: 50px;
}

/* title
------------------------------ */

.c-title01 {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
  gap: 8px;
}

.c-title01 .en {
  position: relative;
  padding-left: 12px;
  color: var(--point-color);
  font-weight: 600;
  font-size: 1.4rem;
}

.c-title01 .en::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 6px;
  height: 6px;
  margin: auto;
  border-radius: 50%;
  background-color: var(--point-color);
  content: "";
}

.c-title01 .jp {
  font-weight: 700;
  font-size: 3.2rem;
}

.c-title01__white .en {
  color: #fff;
}

.c-title01__white .en::before {
  background-color: #fff;
}

.c-title01__white .jp {
  color: #fff;
}

.c-title01 + .txt {
  line-height: 2;
}

.c-title02 {
  position: relative;
  margin-bottom: 20px;
  padding-left: 13px;
  color: var(--main-color);
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.5;
}

.c-title02::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  border-radius: 10px;
  background-color: var(--main-color);
  content: "";
}

.c-title03 {
  position: relative;
  padding-top: 15px;
  border-top: solid 1px var(--line-color);
  color: var(--main-color);
  font-weight: 700;
  font-size: 2.8rem;
  line-height: 1.5;
}

.c-title03::before {
  position: absolute;
  top: -1px;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--main-color);
  content: "";
}

.c-title04 {
  -ms-flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-shadow: 4px 4px 0 rgba(var(--main-color-rgb), 0.6);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  flex-wrap: wrap;
  align-items: center;
  padding: 12px 10px;
  gap: 0 10px;
  background-color: var(--bg-color);
  box-shadow: 4px 4px 0 rgba(var(--main-color-rgb), 0.6);
  color: var(--main-color);
  font-weight: 700;
  font-size: 2.2rem;
  line-height: 1.5;
}

.c-title04 small {
  display: inline-block;
  font-weight: 700;
  font-size: 1.4rem;
}

.c-title04.--icon .icon {
  margin-left: auto;
  margin-right: 0;
}

/* button
------------------------------ */

.c-btn01 {
  -ms-flex-line-pack: center;
  display: grid;
  position: relative;
  align-content: center;
  width: 100%;
  max-width: 300px;
  height: 65px;
  padding: 0 50px 0 30px;
  border-radius: 100px;
  background-color: var(--point-color);
  color: #fff;
  font-weight: 700;
  font-size: 1.6rem;
}

.c-btn01 .c-hover__inn {
  text-shadow: 0 20px #fff;
}

.c-btn01__point {
  -webkit-transition: var(--base-transition);
  position: absolute;
  top: 0;
  right: 30px;
  bottom: 0;
  width: 8px;
  height: 8px;
  margin: auto;
  border-radius: 50%;
  background-color: #fff;
  opacity: 0.6;
  transition: var(--base-transition);
}

.c-btn02 {
  position: relative;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding-right: 24px;
  padding-bottom: 5px;
  border-bottom: solid 1px var(--main-color);
  color: var(--main-color);
  font-weight: 700;
  font-size: 1.4rem;
}

.c-btn02::after {
  -webkit-mask: url(../img/common/icon-arrow.svg) no-repeat center center/contain;
  -webkit-transition: var(--base-transition);
  position: absolute;
  top: 2px;
  right: 0;
  width: 14px;
  height: 10px;
  background-color: var(--main-color);
  content: "";
  mask: url(../img/common/icon-arrow.svg) no-repeat center center/contain;
  transition: var(--base-transition);
}

.c-btn02 .c-hover__inn {
  text-shadow: 0 20px var(--point-color);
}

.c-btn03 {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-transition: var(--base-transition);
  display: grid;
  position: relative;
  grid-template-columns: 20px -webkit-max-content;
  grid-template-columns: 20px max-content;
  place-content: center;
  align-items: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 10px 30px;
  gap: 10px;
  border: solid 1px var(--point-color);
  border-radius: 100px;
  background-color: #fff;
  color: var(--point-color);
  font-weight: 700;
  font-size: 1.4rem;
  transition: var(--base-transition);
}

.c-btn03 .icon {
  fill: var(--point-color);
  -webkit-transition: var(--base-transition);
  width: 20px;
  height: 20px;
  transition: var(--base-transition);
}

/* c-lowerHead
------------------------------ */

.c-lowerHead {
  height: 430px;
  padding-top: 0;
  background-color: var(--main-color);
}

.c-lowerHead::after {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 111px;
  border-radius: 100px 100px 0 0;
  background-color: #fff;
  content: "";
}

.c-lowerHead__list {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -ms-flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 15px 0;
  gap: 10px;
  color: #fff;
}

.c-lowerHead__list li {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-weight: 700;
  font-size: 1.2rem;
}

.c-lowerHead__list li + li {
  position: relative;
  padding-left: 15px;
}

.c-lowerHead__list li + li::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "/";
}

.c-lowerHead__list li + li:last-of-type {
  pointer-events: none;
}

.c-lowerHead__list li:not(:last-of-type) {
  opacity: 0.3;
}

.c-lowerHead__list a {
  color: #fff;
}

.c-lowerHead__title {
  z-index: 1;
  position: relative;
  margin-top: 76px;
}

.c-lowerHead__title .en {
  display: inline-block;
  margin-bottom: 20px;
  color: #fff;
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 1;
  opacity: 0.6;
}

.c-lowerHead__title .title {
  color: #fff;
  font-weight: 700;
  font-size: 4rem;
  line-height: 1;
}

.c-lowerHead .c-bgTxt {
  position: absolute;
  bottom: 110px;
  opacity: 0.3;
}

.c-lowerHead + section {
  padding-top: 10px;
}

/* c-secLine
------------------------------ */

.c-secLine::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  width: calc(100% - 40px);
  max-width: 1000px;
  height: 1px;
  margin: auto;
  border-top: dashed 1px var(--main-color);
  content: "";
}

/* c-pager
------------------------------ */

.c-pager {
  margin-top: 70px;
}

.c-pager .page-numbers {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.c-pager .page-numbers li {
  display: grid;
  place-items: center;
  width: 35px;
  height: 35px;
  overflow: hidden;
  border-radius: 50%;
}

.c-pager .page-numbers li > * {
  width: 100%;
  height: 100%;
  font-size: 1.4rem;
}

.c-pager .page-numbers .current {
  background-color: var(--main-color);
  color: #fff;
}

.c-pager .page-numbers .prev,
.c-pager .page-numbers .next {
  position: relative;
}

.c-pager .page-numbers .prev::after,
.c-pager .page-numbers .next::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 10px;
  height: 10px;
  margin: auto;
  border-bottom: solid 1px var(--main-color);
  border-left: solid 1px var(--main-color);
  content: "";
}

.c-pager .page-numbers .prev::after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.c-pager .page-numbers .next::after {
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.header {
  z-index: var(--header-index);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background-color: #fff;
}

.header__inner {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 0 0 40px;
}

.header__logo {
  width: 275px;
}

.header__btn {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: none;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: var(--point-color);
}

.header__btn_inn {
  position: relative;
  width: 30px;
  height: 20px;
}

.header__btn_line {
  -webkit-transition: var(--base-transition);
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
  transition: var(--base-transition);
}

.header__btn_line:first-of-type {
  top: 0;
}

.header__btn_line:nth-of-type(2) {
  top: 10px;
}

.header__btn_line:last-of-type {
  bottom: 0;
}

.header__btn.active .header__btn_line:first-of-type {
  -webkit-transform: rotate(45deg);
  top: 9px;
  transform: rotate(45deg);
}

.header__btn.active .header__btn_line:nth-of-type(2) {
  opacity: 0;
}

.header__btn.active .header__btn_line:last-of-type {
  -webkit-transform: rotate(-45deg);
  bottom: 10px;
  transform: rotate(-45deg);
}

.header__nav {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.header__nav_sp {
  display: none;
}

.header__nav_top {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 45px;
  gap: 5px;
}

.header__nav_top_member {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  align-items: center;
  padding: 6px 20px;
  gap: 5px;
  border: solid 1px var(--point-color02);
  border-radius: 5px;
  color: var(--point-color02);
  font-weight: 700;
  font-size: 1.4rem;
}

.header__nav_top_member::before {
  -webkit-mask: url(../img/common/icon-member.svg) no-repeat center center/contain;
  -webkit-transition: var(--base-transition);
  width: 20px;
  height: 20px;
  background-color: var(--point-color02);
  content: "";
  mask: url(../img/common/icon-member.svg) no-repeat center center/contain;
  transition: var(--base-transition);
}

.header__nav_top_list {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 10px 40px;
  gap: 30px;
  border-radius: 0 0 0 10px;
  background-color: var(--bg-color);
}

.header__nav_top_list a {
  color: var(--main-color);
  font-size: 14px;
}

.header__nav_list {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 55px;
  padding: 0 40px 0 0;
  gap: 50px;
}

.header__nav_item a,
.header__nav_item button {
  color: var(--main-color);
  font-weight: 700;
  font-size: 1.6rem;
}

.header__nav .megamenu {
  -webkit-transition: var(--base-transition);
  visibility: hidden;
  position: absolute;
  top: 100px;
  left: 0;
  width: 100vw;
  height: calc(100dvh - 100px);
  margin: 0 calc(50% - 50vw);
  opacity: 0;
  transition: var(--base-transition);
}

.header__nav .megamenu.open {
  visibility: visible;
  opacity: 1;
}

.header__nav .megamenu__label {
  position: relative;
  padding-right: 15px;
}

.header__nav .megamenu__label::after {
  -webkit-transform: rotate(45deg);
  -webkit-transition: var(--base-transition);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 6px;
  height: 6px;
  margin: auto;
  transform: rotate(45deg);
  border-right: solid 1px var(--main-color);
  border-bottom: solid 1px var(--main-color);
  content: "";
  transition: var(--base-transition);
}

.header__nav .megamenu__label.open .c-hover__inn {
  -webkit-transform: translateY(-20px);
  transform: translateY(-20px);
}

.header__nav .megamenu__label.open::after {
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
  border-right: solid 1px var(--point-color02);
  border-bottom: solid 1px var(--point-color02);
}

.header__nav .megamenu__overlay {
  z-index: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #001131;
  opacity: 0.6;
}

.header__nav .megamenu__contents {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: grid;
  z-index: 1;
  position: relative;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  max-width: 1000px;
  margin: 20px auto 0;
  padding: 30px 50px;
  border-radius: 20px;
  background-color: #fff;
}

.header__nav .megamenu__title .en {
  display: block;
  position: relative;
  padding-left: 11px;
  color: var(--point-color);
  font-weight: 600;
  font-size: 1.2rem;
}

.header__nav .megamenu__title .en::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 6px;
  height: 6px;
  margin: auto;
  border-radius: 50%;
  background-color: var(--point-color);
  content: "";
}

.header__nav .megamenu__title .jp {
  font-weight: 700;
  font-size: 2.4rem;
}

.header__nav .megamenu__list a {
  position: relative;
  padding: 15px 20px;
}

.header__nav .megamenu__list a::before {
  -webkit-transform: rotate(-45deg);
  -webkit-transition: var(--base-transition);
  position: absolute;
  top: -5px;
  bottom: 0;
  left: 0;
  width: 6px;
  height: 6px;
  margin: auto;
  transform: rotate(-45deg);
  border-right: solid 1px var(--main-color);
  border-bottom: solid 1px var(--main-color);
  content: "";
  transition: var(--base-transition);
}

.header__nav .megamenu__list a .c-hover__inn {
  text-shadow: 0 20px var(--point-color);
}

.footer {
  z-index: 1;
  position: relative;
  padding: 80px 0 0;
  background-color: var(--main-color);
}

.footer .inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 40px;
}

.footer__item a,
.footer__item_label {
  position: relative;
  padding: 15px 20px 15px 0;
  border-bottom: solid 1px rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1.4rem;
}

.footer__item a {
  position: relative;
  padding: 15px 20px 15px 0;
  border-bottom: solid 1px rgba(255, 255, 255, 0.12);
  color: #fff;
}

.footer__item a::after {
  -webkit-mask: url(../img/common/icon-arrow.svg) no-repeat center center/contain;
  -webkit-transition: var(--base-transition);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 12px;
  height: 12px;
  margin: auto;
  background-color: #fff;
  content: "";
  mask: url(../img/common/icon-arrow.svg) no-repeat center center/contain;
  transition: var(--base-transition);
}

.footer__item_label {
  display: block;
  width: 100%;
  margin-bottom: 5px;
}

.footer__item_sub {
  margin-bottom: 10px;
}

.footer__item_sub a {
  padding: 10px 0 10px 20px;
  border: none;
}

.footer__item_sub a::after {
  -webkit-mask: none;
  -webkit-transform: rotate(-45deg);
  right: inherit;
  left: 0;
  width: 6px;
  height: 6px;
  transform: rotate(-45deg);
  border-right: solid 1px #fff;
  border-bottom: solid 1px #fff;
  background-color: transparent;
  mask: none;
}

.footer__item .disable {
  color: rgba(255, 255, 255, 0.3);
  opacity: 1;
}

.footer__item .disable::after {
  content: none;
}

.footer__logo {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: grid;
  grid-template-columns: 180px 1fr;
  grid-row: 2/3;
  grid-column: 1/3;
  align-items: center;
  gap: 10px;
}

.footer__logo_img {
  width: 180px;
  padding: 5px 10px;
  background-color: #fff;
}

.footer__logo_txt {
  color: #fff;
  font-size: 1rem;
}

.footer__link {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  grid-row: 2/3;
  grid-column: 3/4;
  align-items: center;
  justify-content: end;
  gap: 45px;
}

.footer__link a {
  color: #fff;
  font-size: 1.4rem;
  text-decoration: underline;
  opacity: 0.6;
}

.footer__bottom {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: grid;
  grid-template-columns: 1fr 80px;
  align-items: center;
  margin-top: 30px;
  border-top: solid 1px rgba(255, 255, 255, 0.2);
}

.footer__copy {
  padding: 0 20px;
  color: #fff;
  font-size: 1.2rem;
  text-align: right;
  opacity: 0.4;
}

.footer__pagetop {
  position: relative;
  height: 80px;
  overflow: hidden;
  border-left: solid 1px rgba(255, 255, 255, 0.2);
  color: transparent;
}

.footer__pagetop::after {
  -webkit-transform: rotate(-45deg);
  position: absolute;
  top: 38px;
  right: 0;
  left: 0;
  width: 20px;
  height: 20px;
  margin: auto;
  transform: rotate(-45deg);
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  content: "";
}

.footer .c-bgTxt {
  -webkit-transform: translateY(-50%);
  z-index: -1;
  position: absolute;
  bottom: 30%;
  left: 0;
  margin: auto;
  transform: translateY(-50%);
  opacity: 0.2;
}

.about .intro__title {
  margin-bottom: 30px;
  color: var(--point-color);
  font-weight: 700;
  font-size: 3.2rem;
  line-height: 1.5;
}

.about .intro .txt {
  line-height: 2;
}

.about .history .c-title01 {
  margin-bottom: 70px;
}

.about .history__pc-head {
  display: grid;
  grid-template-columns: 1fr 110px 1fr;
  gap: 0 45px;
  margin-bottom: 35px;
}

.about .history__pc-head-title {
  border-radius: calc(infinity * 1px);
  color: #fff;
  font-size: 2.0rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  padding: 15px;
}

.about .history__pc-head-title:first-of-type {
  background-color: var(--point-color);
}

.about .history__pc-head-title:last-of-type {
  background-color: var(--point-color02);
  grid-column: 3 / 4;
}

.about .history__pc-wrapper {
  position: relative;
}

.about .history__pc-wrapper::after {
  position: absolute;
  top: -15px;
  left: 50%;
  width: 2px;
  height: 100%;
  background-image: repeating-linear-gradient(to bottom, var(--line-color), var(--line-color) 2px, transparent 2px, transparent 6px);
  transform: translateX(-50%);
  content: "";
  z-index: 0;
}

.about .history__pc-contents {
  display: grid;
  grid-template-columns: 1fr 110px 1fr;
  gap: 0 45px;
  position: relative;
  z-index: 1;
}

.about .history__pc-contents + .history__pc-contents {
  margin-top: 50px;
}

.about .history__pc-contents .--column1 {
  grid-column: 1 / 2;
}

.about .history__pc-contents .--column2 {
  grid-column: 2 / 3;
}

.about .history__pc-contents .--column3 {
  grid-column: 3 / 4;
}

.about .history__pc-year .en {
  background-color: #fff;
  border-radius: calc(infinity * 1px);
  color: var(--point-color);
  font-size: 2.2rem;
  font-weight: 600;
  text-align: center;
  display: block;
  padding: 7px;
  width: 100%;
}

.about .history__pc-list-item {
  line-height: 2;
  padding-left: 18px;
  position: relative;
}

.about .history__pc-list-item + .history__pc-list-item {
  margin-top: 30px;
}

.about .history__pc-list-item::before {
  content: '';
  background-color: var(--point-color);
  border-radius: 50%;
  position: absolute;
  top: 10px;
  left: 0;
  width: 10px;
  height: 10px;
}

.about .history__pc-list-item img {
  margin: 10px auto 0;
  width: var(--w, auto);
  max-width: var(--w, 100%);
}

.about .utility {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 0;
}

.about .utility__wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 497px;
  margin: 0 auto 0 max(5vw, 40px);
}

.about .utility__map {
  position: relative;
}

.about .utility__img {
  height: 100%;
}

.about .utility__img img {
  height: 100%;
  object-fit: contain;
}

.about .utility__pin {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.417vw;
  padding: 0.764vw 1.042vw;
  border-radius: 0.694vw;
  border: solid 2px #5D5E5E;
}

.about .utility__pin::before {
  content: '';
  position: absolute;
}

.about .utility__pin::after {
  content: '';
  border-radius: 50%;
  border: solid 2px #5D5E5E;
  background-color: #fff;
  position: absolute;
  width: 0.694vw;
  height: 0.694vw;
}

.about .utility__pin.--type01 {
  background-color: rgba(232, 169, 88, 0.7);
}

.about .utility__pin.--type02 {
  background-color: rgba(63, 177, 227, 0.7);
}

.about .utility__pin.--type03 {
  background-color: rgba(157, 118, 80, 0.7);
}

.about .utility__pin.--type04 {
  background-color: rgba(117, 113, 112, 0.7);
}

.about .utility__pin.--position01 {
  top: 12.5vw;
  left: 9.375vw;
}

.about .utility__pin.--position01::before {
  width: 2px;
  height: 1.806vw;
  bottom: -1.806vw;
  left: 50%;
  transform: translateX(-50%);
  background-color: #5D5E5E;
}

.about .utility__pin.--position01::after {
  bottom: -1.806vw;
  left: 50%;
  transform: translateX(-50%);
}

.about .utility__pin.--position02 {
  top: 8.681vw;
  left: 25.347vw;
}

.about .utility__pin.--position02::before {
  width: 0.139vw;
  height: 1.806vw;
  bottom: -1.806vw;
  right: 2.083vw;
  background-color: #5D5E5E;
}

.about .utility__pin.--position02::after {
  bottom: -1.806vw;
  right: 1.806vw;
}

.about .utility__pin.--position03 {
  top: 23.611vw;
  left: 23.194vw;
}

.about .utility__pin.--position03::before {
  border-top: solid 2px #5D5E5E;
  border-right: solid 2px #5D5E5E;
  top: -1.597vw;
  left: 4.514vw;
  width: 1.25vw;
  height: 1.597vw; 
}

.about .utility__pin.--position03::after {
  top: -1.806vw;
  left: 4.167vw;
}

.about .utility__pin.--position04 {
  top: 22.222vw;
  left: 39.375vw;
}

.about .utility__pin.--position04::before {
  width: 0.139vw;
  height: 1.806vw;
  bottom: -1.806vw;
  right: 1.736vw;
  background-color: #5D5E5E;
}

.about .utility__pin.--position04::after {
  bottom: -1.806vw;
  right: 1.458vw;
}

.about .utility__pin.--position05 {
  top: 29.444vw;
  left: 2.014vw;
}

.about .utility__pin.--position05::before {
  width: 0.139vw;
  height: 1.806vw;
  bottom: -1.806vw;
  left: 50%;
  transform: translateX(-50%);
  background-color: #5D5E5E;
}

.about .utility__pin.--position05::after {
  bottom: -1.806vw;
  left: 50%;
  transform: translateX(-50%);
}

.about .utility__pin.--position06 {
  top: 34.375vw;
  left: 12.847vw;
}

.about .utility__pin.--position06::before {
  width: 0.139vw;
  height: 1.806vw;
  bottom: -1.806vw;
  left: 40%;
  transform: translateX(-50%);
  background-color: #5D5E5E;
}

.about .utility__pin.--position06::after {
  bottom: -1.806vw;
  left: 40%;
  transform: translateX(-50%);
}

.about .utility__pin.--position07 {
  top: 34.375vw;
  left: 32.917vw;
}

.about .utility__pin.--position07::before {
  width: 0.139vw;
  height: 1.806vw;
  bottom: -1.806vw;
  left: 60%;
  transform: translateX(-50%);
  background-color: #5D5E5E;
}

.about .utility__pin.--position07::after {
  bottom: -1.806vw;
  left: 60%;
  transform: translateX(-50%);
}

.about .utility__pin li {
  width: 2.083vw;
  height: 2.083vw;
}

.about .utility__pin .pin.is-dim {
  opacity: 0.3;
}

.about .modal {
  -webkit-transition: var(--base-transition);
  display: grid;
  visibility: hidden;
  z-index: var(--modal-index);
  position: fixed;
  top: 0;
  right: 0;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: translateX(100%);
  transition: var(--base-transition);
}

.about .modal.active {
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
}

.about .modal__overlay {
  display: none;
  width: 100vw;
  height: 100%;
  background-color: var(--base-color);
  opacity: 0.5;
}

.about .modal__map {
  width: 100%;
  height: 100%;
}

.about .modal__map_img {
  height: 100%;
}

.about .modal__map img {
  -o-object-fit: cover;
  height: 100%;
  object-fit: cover;
}

.about .modal__contents {
  position: relative;
  height: 100%;
  padding: 90px 20px;
  overflow-y: scroll;
  background-color: #fff;
  grid-column: 2 / 3;
}

.about .modal__title {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 3.2rem;
  line-height: 1.3;
  margin-bottom: 22px;
}

.about .modal__method {
  margin-top: 20px;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.5;
}

.about .modal__method small {
  display: block;
  font-weight: 700;
  font-size: 1.6rem;
}

.about .modal .c-btn02 {
  margin: 18px 0 0 auto;
}

.about .modal__close {
  z-index: 10;
  position: fixed;
  right: 0;
  bottom: 0;
  width: 50%;
  height: 60px;
  padding-top: 30px;
  background-color: var(--point-color);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
}

.about .modal__close::before,
.about .modal__close::after {
  position: absolute;
  top: 23px;
  right: 0;
  left: 0;
  width: 30px;
  height: 2px;
  margin: auto;
  background-color: #fff;
  content: "";
}

.about .modal__close::before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.about .modal__close::after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.association .constitution .c-title01 {
  margin-bottom: 0;
}

.association .constitution__wrap {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: grid;
  grid-template-columns: auto 300px;
  align-items: center;
  gap: 30px;
}

.association .contact .txt {
  margin-bottom: 50px;
}

.association .contact__list {
  display: grid;
  grid-template-columns: 270px auto;
  border-top: solid 1px var(--line-color);
}

.association .contact__list dt,
.association .contact__list dd {
  padding: 10px;
  border-bottom: solid 1px var(--line-color);
  line-height: 1.8;
}

.association .contact__list dt {
  place-content: center;
  font-weight: 700;
}

.association .contact .c-btn01 {
  margin: 48px auto 0;
}

.contact .faq__question {
  margin-top: 10px;
}

.contact .faq__question.open button::before {
  -webkit-transform: rotate(0);
  transform: rotate(0);
}

.contact .faq__question button {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: grid;
  position: relative;
  grid-template-columns: 40px 1fr 25px;
  align-items: center;
  width: 100%;
  padding: 15px;
  gap: 10px;
  border-radius: 5px;
  background-color: var(--bg-color);
  color: var(--main-color);
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.5;
  text-align: left;
}

.contact .faq__question button::before,
.contact .faq__question button::after {
  -webkit-transition: var(--base-transition);
  width: 25px;
  height: 2px;
  background-color: var(--point-color);
  content: "";
  transition: var(--base-transition);
}

.contact .faq__question button::before {
  -webkit-transform: rotate(90deg);
  position: absolute;
  top: 0;
  right: 15px;
  bottom: 0;
  margin: auto;
  transform: rotate(90deg);
}

.contact .faq__question button .icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #fff;
  font-weight: 600;
  font-size: 2.2rem;
}

.contact .faq__answer {
  display: none;
}

.contact .faq__answer_inn {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: center;
  padding: 15px;
  gap: 10px;
}

.contact .faq__answer .icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(var(--pink-color-rgb), 0.2);
  color: var(--pink-color);
  font-weight: 600;
  font-size: 2.2rem;
}

.contact .faq__answer_txt {
  color: var(--pink-color);
  line-height: 1.8;
}

.contact .faq__answer_txt a {
  display: inline-block;
  color: var(--pink-color);
  text-decoration: underline;
}

.contact .form__info {
  margin-top: 30px;
  padding: 20px;
  background-color: rgba(var(--pink-color-rgb), 0.05);
}

.contact .form__info + .form__info {
  margin-top: 10px;
}

.contact .form__info .c-title02 {
  margin-bottom: 10px;
  color: var(--pink-color);
}

.contact .form__info .c-title02::before {
  background-color: var(--pink-color);
}

.contact .form__info_list,
.contact .form__info .txt {
  font-size: 1.4rem;
  line-height: 2;
}

.contact .form__info li {
  position: relative;
  padding-left: 20px;
}

.contact .form__info li::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "・";
}

.contact .form__info_wrap {
  -ms-flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  margin-top: 10px;
  gap: 10px;
}

.contact .form_wrap {
  margin-top: 30px;
  padding: 50px;
  border-radius: 10px;
  background-color: var(--bg-color);
}

.contact .form table {
  width: 100%;
}

.contact .form th,
.contact .form td {
  padding: 20px 10px;
  border-top: solid 1px var(--line-color);
  border-bottom: solid 1px var(--line-color);
  line-height: 1.8;
  vertical-align: middle;
}

.contact .form th {
  width: 180px;
  font-weight: 600;
  text-align: left;
}

.contact .form td .caution {
  font-size: 1.4rem;
}

.contact .form input[type=text],
.contact .form input[type=email],
.contact .form input[type=date],
.contact .form textarea {
  width: 100%;
  padding: 10px 20px;
  border: solid 1px #A6A8B0;
  border-radius: 5px;
  background-color: #fff;
  font-size: 1.6rem;
  font-family: 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.contact .form input[type=text]::-webkit-input-placeholder,
.contact .form input[type=email]::-webkit-input-placeholder,
.contact .form input[type=date]::-webkit-input-placeholder,
.contact .form textarea::-webkit-input-placeholder {
  color: #ccc;
}

.contact .form input[type=text]::-moz-placeholder,
.contact .form input[type=email]::-moz-placeholder,
.contact .form input[type=date]::-moz-placeholder,
.contact .form textarea::-moz-placeholder {
  color: #ccc;
}

.contact .form input[type=text]:-ms-input-placeholder,
.contact .form input[type=email]:-ms-input-placeholder,
.contact .form input[type=date]:-ms-input-placeholder,
.contact .form textarea:-ms-input-placeholder {
  color: #ccc;
}

.contact .form input[type=text]::-ms-input-placeholder,
.contact .form input[type=email]::-ms-input-placeholder,
.contact .form input[type=date]::-ms-input-placeholder,
.contact .form textarea::-ms-input-placeholder {
  color: #ccc;
}

.contact .form input[type=text]::placeholder,
.contact .form input[type=email]::placeholder,
.contact .form input[type=date]::placeholder,
.contact .form textarea::placeholder {
  color: #ccc;
}

.contact .form textarea {
  height: 120px;
}

.contact .form input[type=date] {
  position: relative;
  width: 250px;
  cursor: pointer;
  text-align: left;
}

.contact .form input[type=date]::-webkit-calendar-picker-indicator {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.contact .form input[type=date]::after {
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  width: 20px;
  height: 20px;
  margin: auto;
  background: url(../img/common/icon-calendar.svg) no-repeat center center/contain;
  content: "";
  pointer-events: none;
}

.contact .form .radio_wrap {
  -ms-flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 30px;
}

.contact .form .radio_wrap label {
  position: relative;
  cursor: pointer;
}

.contact .form .radio_wrap input {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
}

.contact .form .radio_wrap input:checked + span::after {
  opacity: 1;
}

.contact .form .radio_wrap span {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: grid;
  position: relative;
  grid-template-columns: 17px -webkit-max-content;
  grid-template-columns: 17px max-content;
  align-items: center;
  gap: 5px;
  font-weight: 500;
}

.contact .form .radio_wrap span::before {
  width: 17px;
  height: 17px;
  border: solid 1px var(--line-color);
  border-radius: 50%;
  background-color: #fff;
  content: "";
}

.contact .form .radio_wrap span::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 3px;
  width: 11px;
  height: 11px;
  margin: auto;
  border-radius: 50%;
  background-color: var(--point-color);
  content: "";
  opacity: 0;
}

.contact .form .addressbox_top {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -ms-flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 10px;
  gap: 10px 25px;
}

.contact .form .addressbox_num {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: grid;
  grid-template-columns: 170px auto 170px;
  align-items: center;
  gap: 10px;
}

.contact .form .addressbox_wrap {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: grid;
  grid-template-columns: auto 170px;
  align-items: center;
  gap: 10px;
}

.contact .form .addressbox .select_wrap {
  width: 100% !important;
}

.contact .form .select_wrap {
  position: relative;
  width: 250px;
}

.contact .form .select_wrap::after {
  -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  width: 10px;
  height: 8px;
  margin: auto;
  background-color: var(--base-color);
  content: "";
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  pointer-events: none;
}

.contact .form .select_wrap select {
  width: 100%;
  padding: 10px 20px;
  border: solid 1px #A6A8B0;
  border-radius: 5px;
  background-color: #fff;
  font-size: 1.6rem;
  line-height: 1.8;
}

.contact .form .file-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.contact .form .file-wrap label {
  display: inline-block;
  padding: 7px 20px;
  border-radius: 5px;
  background-color: var(--main-color);
  color: #fff;
  font-size: 1.6rem;
  line-height: 1.8;
  cursor: pointer;
}

.contact .form .file-wrap input[type=file] {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
}

.contact .form .file-text-area {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact .form .file-text-area input {
  background-color: #fff;
  border: solid 1px var(--main-color);
  border-radius: 50%;
  cursor: pointer;
  width: 25px;
  height: 25px;
  flex-shrink: 0;
  display: none;
}

.contact .form .file-text-area input.is-show {
  display: block;
}

.contact .form .privacy {
  margin-top: 30px;
}

.contact .form .privacy__link {
  color: var(--pink-color);
  text-align: center;
  text-decoration: underline;
}

.contact .form .privacyAgree {
  position: relative;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 20px auto 0;
}

.contact .form .privacyAgree__check {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
}

.contact .form .privacyAgree__check:checked + label::after {
  opacity: 1;
}

.contact .form .privacyAgree label {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: grid;
  position: relative;
  grid-template-columns: 15px auto;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.contact .form .privacyAgree label::before {
  width: 15px;
  height: 15px;
  border: solid 1px var(--base-color);
  content: "";
}

.contact .form .privacyAgree label::after {
  -webkit-transform: rotate(-45deg);
  position: absolute;
  top: -2px;
  bottom: 0;
  left: 3px;
  width: 10px;
  height: 6px;
  margin: auto;
  transform: rotate(-45deg);
  border-bottom: solid 2px var(--point-color);
  border-left: solid 2px var(--point-color);
  content: "";
  opacity: 0;
}

.contact .form .is-error {
  color: var(--pink-color);
  font-size: 1.4rem;
}

.contact .form .btn-area {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: grid;
  grid-template-columns: repeat(2, 270px);
  justify-content: center;
  margin-top: 30px;
  gap: 15px;
}

.contact .form .btn-area a,
.contact .form .btn-area input {
  -webkit-transition: var(--base-transition);
  display: grid;
  place-content: center;
  height: 60px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: var(--base-transition);
}

.contact .form .btn-area #reset,
.contact .form .btn-area .return-btn {
  background-color: var(--line-color);
}

.contact .form .btn-area #submit,
.contact .form .btn-area .submit-btn {
  background-color: var(--point-color);
  color: #fff;
}

.contact.thanks .form .c-btn01 {
  margin: 50px auto 0;
}

.contact .calling .inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px 30px;
}

.contact .calling .c-title01 {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
  margin-bottom: 0;
}

.contact .calling .txt {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}

.contact .calling .calling__list {
  display: grid;
  grid-template-columns: 160px 1fr;
}

.contact .calling .calling__list dt,
.contact .calling .calling__list dd {
  border-top: solid 1px var(--line-color);
  border-bottom: solid 1px var(--line-color);
  color: var(--point-color);
  padding: 25px 10px;
}

.contact .calling .calling__list dt {
  font-weight: 700;
}

/* .contact .calling .calling__list:first-of-type {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
}

.contact .calling .calling__list:last-of-type {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
} */

.documents .download__head {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 50px auto 120px;
  gap: 50px;
}

.documents .download__item {
  padding: 0 50px;
}

.documents .download__item .c-btn03 {
  margin: 0 auto;
}

.documents .download__thumb + .txt {
  margin: 20px 0;
  color: var(--main-color);
  font-weight: 700;
  font-size: 1.6rem;
  text-align: center;
}

.documents .download .c-btn01 {
  margin: 50px auto 0;
}

.documents__list {
  margin-top: 50px;
  border-top: solid 1px var(--line-color);
}

.documents__list + p.txt {
  margin-top: 120px;
}

.documents__item {
  -ms-flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  min-height: 105px;
  padding: 30px 10px;
  border-bottom: solid 1px var(--line-color);
  color: var(--main-color);
  font-weight: 700;
}

.documents__item .c-btn03 {
  margin-left: auto;
}

.documents .modal {
  -webkit-transition: var(--base-transition);
  visibility: hidden;
  z-index: var(--modal-index);
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: var(--base-transition);
}

.documents .modal.active {
  visibility: visible;
  opacity: 1;
}

.documents .modal__overlay {
  display: block;
  width: 100vw;
  height: 100%;
  background-color: #001131;
  opacity: 0.6;
}

.documents .modal__contents {
  -webkit-transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
  width: 670px;
  height: calc(100dvh - 200px);
  transform: translate(-50%, -50%);
  background-color: #fff;
}

.documents .modal__contents .pdf {
  height: 100%;
  padding: 50px 50px 80px;
  overflow-y: scroll;
}

.documents .modal__contents .pdf::-webkit-scrollbar {
  width: 10px;
}

.documents .modal__contents .pdf::-webkit-scrollbar-thumb {
  background-color: var(--line-color);
}

.documents .modal__contents .pdf img {
  pointer-events: none;
}

.documents .modal__close {
  z-index: 10;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  margin: auto;
  padding-top: 30px;
  background-color: var(--point-color);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
}

.documents .modal__close::before,
.documents .modal__close::after {
  position: absolute;
  top: 23px;
  right: 0;
  left: 0;
  width: 30px;
  height: 2px;
  margin: auto;
  background-color: #fff;
  content: "";
}

.documents .modal__close::before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.documents .modal__close::after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.feature .features__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px 30px;
}

.feature .features__item {
  padding: 40px;
  border-radius: 10px;
  background-color: var(--bg-color);
}

.feature .features__item_title {
  margin-bottom: 10px;
}

.feature .features__item_title .en {
  display: inline-block;
  margin-bottom: 5px;
  color: var(--point-color02);
  font-weight: 600;
  font-size: 1.4rem;
}

.feature .features__item_title .jp {
  color: var(--main-color);
  font-weight: 700;
  font-size: 2rem;
}

.feature .features__item .txt {
  color: var(--main-color);
  line-height: 1.8;
}

.feature .deterioration__list {
  display: grid;
  grid-template-columns: 157px auto;
  margin-top: 30px;
  border-top: solid 1px var(--line-color);
}

.feature .deterioration__list_title {
  grid-column: 1/2;
  place-content: center;
  padding: 30px 10px;
  font-weight: 700;
  font-size: 1.6rem;
}

.feature .deterioration__list_title:nth-of-type(1) {
  border-bottom: solid 1px #fff;
  background-color: rgba(var(--yellow-color-rgb), 0.2);
  color: var(--yellow-color);
}

.feature .deterioration__list_title:nth-of-type(2) {
  border-bottom: solid 1px #fff;
  background-color: rgba(var(--point-color02-rgb), 0.2);
  color: var(--point-color02);
}

.feature .deterioration__list_title:nth-of-type(3) {
  border-bottom: solid 1px var(--line-color);
  background-color: rgba(var(--pink-color-rgb), 0.2);
  color: var(--pink-color);
}

.feature .deterioration__sub {
  display: grid;
  grid-template-columns: 230px auto;
}

.feature .deterioration__sub dt,
.feature .deterioration__sub dd {
  place-content: center;
  padding: 30px 10px;
  border-bottom: solid 1px var(--line-color);
  color: var(--main-color);
  line-height: 1.8;
}

.feature .deterioration__sub dt {
  font-weight: 700;
}

.feature .list__table {
  width: 100%;
}

.feature .list__table table {
  width: 100%;
  min-width: 900px;
}

.feature .list__table thead th {
  padding: 15px 7px;
  border: solid 1px #fff;
  background-color: var(--main-color);
  color: #fff;
  font-weight: 600;
  line-height: 1;
  vertical-align: middle;
}

.feature .list__table thead .w200 {
  width: 200px;
}

.feature .list__table thead .w160 {
  width: 160px;
}

.feature .list__table thead .rl {
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

.feature .list__table thead .mid {
  font-size: 1.4rem;
}

.feature .list__table thead .small {
  font-size: 1.2rem;
}

.feature .list__table tbody tr.color-yellow th,
.feature .list__table tbody tr.color-yellow td {
  background-color: #FAEFE2;
  color: var(--yellow-color);
}

.feature .list__table tbody tr.color-pink th,
.feature .list__table tbody tr.color-pink td {
  background-color: rgba(var(--pink-color-rgb), 0.2);
  color: var(--pink-color);
}

.feature .list__table tbody tr.color-blue th,
.feature .list__table tbody tr.color-blue td {
  background-color: rgba(var(--point-color02-rgb), 0.2);
  color: var(--point-color02);
}

.feature .list__table tbody tr.color-navy th,
.feature .list__table tbody tr.color-navy td {
  background-color: var(--bg-color);
  color: var(--main-color);
}

.feature .list__table tbody th,
.feature .list__table tbody td {
  padding: 25px 10px;
  border: solid 1px #fff;
  vertical-align: middle;
}

.feature .list__table tbody th {
  font-weight: 700;
  text-align: left;
}

.feature .list__table tbody td {
  min-width: 40px;
}

.feature .list__table tbody td.center {
  text-align: center;
}

.feature .list__caution {
  margin-top: 20px;
  font-size: 1.2rem;
  line-height: 2;
}

.feature .type__container {
  margin-top: 50px;
}

.feature .type__wrapper:not(:first-of-type) {
  margin-top: 100px;
}

.feature .type__wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding-top: 38px;
  gap: 30px;
  scroll-margin-top: 100px;
}

.feature .type__wrap + .type__wrap {
  padding-top: 60px;
}

.feature .type__wrap .txt {
  line-height: 2;
}

.feature .type__list {
  -ms-flex-line-pack: start;
  display: grid;
  grid-template-columns: 100px auto;
  align-content: start;
  border-top: solid 1px var(--line-color);
}

.feature .type__list dt,
.feature .type__list dd {
  place-content: center;
  padding: 18px 10px;
  border-bottom: solid 1px var(--line-color);
  font-size: 1.4rem;
  line-height: 1.8;
}

.feature .type__list dt {
  font-weight: 700;
}

.flow .process .txt {
  line-height: 2;
}

.flow .process__list {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  max-width: 620px;
  height: 230px;
  margin: 50px auto 0;
  gap: 30px;
}

.flow .process li {
  -webkit-writing-mode: vertical-lr;
  -ms-writing-mode: tb-lr;
  display: grid;
  place-content: center;
  width: 60px;
  padding: 10px;
  border-radius: 5px;
  color: #fff;
  font-weight: 700;
  font-size: 2.4rem;
  writing-mode: vertical-lr;
}

.flow .process li + li {
  position: relative;
  margin-left: 50px;
}

.flow .process li + li::after {
  -webkit-mask: url(../img/common/icon-arrow.svg) no-repeat center center/contain;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -50px;
  width: 20px;
  height: 20px;
  margin: auto;
  background-color: var(--main-color);
  content: "";
  mask: url(../img/common/icon-arrow.svg) no-repeat center center/contain;
}

.flow .process li:nth-of-type(1) {
  background-color: #2E8CCC;
}

.flow .process li:nth-of-type(2) {
  background-color: #1765B1;
}

.flow .process li:nth-of-type(3) {
  background-color: #184686;
}

.flow .process li:nth-of-type(4),
.flow .process li:nth-of-type(5) {
  background-color: var(--main-color);
}

.flow .summary__wrap {
  display: grid;
  padding: 30px 0;
  gap: 30px 20px;
  border-top: solid 1px var(--line-color);
}

.flow .summary__wrap:last-of-type {
  border-bottom: solid 1px var(--line-color);
}

.flow .summary__wrap:has(.summary__img) {
  -webkit-box-align: start;
  -ms-flex-align: start;
  grid-template-rows: -webkit-max-content 1fr;
  grid-template-rows: max-content 1fr;
  grid-template-columns: auto 300px;
  align-items: start;
}

.flow .summary__wrap .txt {
  color: var(--main-color);
  line-height: 1.8;
}

.flow .summary__item {
  -ms-flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.flow .summary__item h3 {
  padding: 5px 20px;
  border-radius: 100px;
  background-color: var(--main-color);
  color: #fff;
  font-weight: 700;
  font-size: 2rem;
}

.flow .summary__img {
  position: relative;
  overflow: hidden;
}

.flow .summary__img figcaption {
  margin-top: 10px;
  color: var(--main-color);
  font-weight: 700;
  font-size: 1.4rem;
}

.flow .summary__img .swiper-navigation {
  display: grid;
  grid-template-columns: 1fr 28px 28px;
  margin-top: 10px;
  gap: 10px;
}

.flow .summary__img .swiper-pagination {
  position: relative;
  bottom: 0;
  text-align: left;
}

.flow .summary__img .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0 7px !important;
  background-color: var(--main-color);
}

.flow .summary__img .swiper-pagination-bullet-active {
  position: relative;
}

.flow .summary__img .swiper-pagination-bullet-active::after {
  -webkit-transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
  width: 180%;
  height: 180%;
  transform: translate(-50%, -50%);
  border: solid 1px var(--main-color);
  border-radius: 50%;
  content: "";
}

.flow .summary__img .swiper-button-prev,
.flow .summary__img .swiper-button-next {
  position: relative;
  top: inherit;
  right: inherit;
  left: inherit;
  width: 28px;
  height: 28px;
  margin: 0;
  border: solid 1px var(--main-color);
  border-radius: 50%;
}

.flow .summary__img .swiper-button-prev::after,
.flow .summary__img .swiper-button-next::after {
  width: 6px;
  height: 6px;
  border-top: solid 1px var(--main-color);
  border-left: solid 1px var(--main-color);
  content: "";
}

.flow .summary__img .swiper-button-prev::after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.flow .summary__img .swiper-button-next::after {
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

.flow .comb__wrap {
  margin-top: 50px;
}

.flow .comb__wrap + .comb__wrap {
  margin-top: 70px;
}

.flow .comb__table {
  width: 100%;
}

.flow .comb__table table {
  width: 100%;
}

.flow .comb__table thead th {
  padding: 30px 10px;
  border: solid 1px #fff;
  background-color: var(--main-color);
  color: #fff;
  font-weight: 700;
}

.flow .comb__table tbody th {
  padding: 30px 10px;
  border: solid 1px #fff;
  background-color: var(--bg-color);
  color: var(--main-color);
  font-weight: 700;
}

.flow .comb__table tbody td {
  padding: 30px 10px;
  border: solid 1px #fff;
  color: var(--main-color);
  font-weight: 700;
  text-align: center;
}

.flow .comb__table .color-pink {
  background-color: rgba(var(--pink-color-rgb), 0.2);
  color: var(--pink-color);
}

.flow .comb__table .color-yellow {
  background-color: rgba(var(--yellow-color-rgb), 0.2);
  color: var(--yellow-color);
}

.flow .comb__table .color-blue {
  background-color: rgba(var(--point-color02-rgb), 0.2);
  color: var(--point-color02);
}

.flow .comb__table .color-green {
  background-color: rgba(var(--green-color-rgb), 0.2);
  color: var(--green-color);
}

.flow .comb__table .color-navy {
  background-color: var(--bg-color);
  color: var(--main-color);
}

.flow .comb .table02 thead th {
  width: 220px;
}

.flow .comb .table02 thead th:not(:first-of-type) {
  width: 156px;
}

.flow .comb .table02 tbody th,
.flow .comb .table02 tbody td {
  border-top: solid 1px var(--line-color);
  border-bottom: solid 1px var(--line-color);
}

.flow .comb__preface {
  margin-bottom: 10px;
  font-size: 1.2rem;
  line-height: 2;
  text-align: right;
}

.flow .comb02 .txt {
  line-height: 2;
}

.flow .comb02__img {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 920px;
  margin: 50px auto 20px;
  gap: 20px 50px;
}

.flow .comb02__img_caution {
  grid-column: 1/3;
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 2;
}

.flow .comb02__caution {
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 2;
}

.flow .comb02__caution strong {
  color: var(--point-color);
}

.flow .comb02__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 70px;
  gap: 20px;
}

.flow .comb02__list figcaption {
  margin-top: 10px;
  color: var(--main-color);
  font-weight: 700;
  font-size: 1.4rem;
}

.memberList .organization__wrapper {
  margin-top: 70px;
}

.memberList .organization__wrapper.col2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 30px;
}

.memberList .organization__wrapper.col2 .c-title02 {
  grid-column: 1/3;
}

.memberList .organization__title {
  position: relative;
  margin-bottom: 15px;
  padding-left: 20px;
  color: var(--main-color);
  font-weight: 700;
  font-size: 1.8rem;
}

.memberList .organization__title::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 14px;
  height: 2px;
  margin: auto;
  background-color: var(--main-color);
  content: "";
}

.memberList .organization__list.col2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 30px;
}

.memberList .organization__list.col2 .organization__item:nth-of-type(-n+2) {
  border-top: solid 1px var(--line-color);
}

.memberList .organization__item {
  display: grid;
  grid-template-columns: 135px 135px 1fr;
  padding: 20px 10px;
  gap: 5px 10px;
  border-bottom: solid 1px var(--line-color);
}

.memberList .organization__item:first-of-type {
  border-top: solid 1px var(--line-color);
}

.memberList .organization__item:not(:has(.name)) {
  grid-template-columns: 135px 1fr;
}

.memberList .organization__item p {
  place-content: center;
  line-height: 1.8;
}

.memberList .members__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}

.memberList .members__head .c-title01 {
  margin-bottom: 0;
}

.memberList .members__date {
  text-align: right;
}

.memberList .members__category {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin: 50px 0 70px;
  gap: 10px;
}

.memberList .members__category button {
  padding: 13px 10px;
  border: solid 1px var(--point-color);
  border-radius: 5px;
  color: var(--point-color);
  font-weight: 700;
  font-size: 1.6rem;
}

.memberList .members__category button.current {
  background-color: var(--point-color);
  color: #fff;
}

.memberList .members__panel {
  display: none;
}

.memberList .members__panel.current {
  display: block;
}

.memberList .members__table table {
  width: 100%;
}

.memberList .members__table thead th {
  padding: 22px 10px;
  background-color: var(--main-color);
  color: #fff;
  font-weight: 700;
}

.memberList .members__table thead th:nth-of-type(1) {
  width: 42%;
}

.memberList .members__table thead th:nth-of-type(2) {
  width: 44%;
}

.memberList .members__table thead th:nth-of-type(3) {
  width: 14%;
}

.memberList .members__table tbody th,
.memberList .members__table tbody td {
  padding: 18px 10px;
  border-bottom: solid 1px var(--line-color);
  line-height: 1.5;
  vertical-align: middle;
}

.memberList .members__table tbody th {
  text-align: left;
}

.memberList .members__table tbody th a {
  display: inline-block;
  position: relative;
}

.memberList .members__table tbody th a::after {
  position: absolute;
  bottom: 6px;
  width: 12px;
  height: 12px;
  margin-left: 10px;
  background: url(../img/common/icon-external.svg) no-repeat center center/contain;
  content: "";
  opacity: 0.4;
}

.memberList .members__table tbody td:last-of-type {
  padding-right: 0;
  padding-left: 0;
  text-align: center;
}

.memberList .enrollment .inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.memberList .enrollment .c-btn01 {
  grid-column: 1/3;
  margin: 0 auto;
}

.member .contents__wrapper {
  margin-top: 50px;
}

.member .contents__wrapper + .contents__wrapper {
  margin-top: 80px;
}

.member .contents__wrapper .txt {
  font-size: 1.4rem;
  line-height: 2;
}
.member .contents .c-title02 {
  margin-bottom: 10px;
  color: var(--point-color);
}

.member .contents .c-title02::before {
  background-color: var(--point-color);
}

.member .contents__list {
  margin-top: 30px;
}

.member .contents__list-item {  
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 10px 20px;
}

.member .contents__list-item:nth-of-type(odd) {
  background-color: var(--bg-color);
}

.member .contents__list-title {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 2;
}

.member .contents__list-btn {
  display: grid;
  grid-template-columns: 20px max-content;
  gap: 10px;
  color: var(--point-color);
  font-size: 1.4rem;
  font-weight: 700;
  position: relative;
}

.member .contents__list-btn::before {
  content: '';
  background: url(../img/common/icon-document.svg) no-repeat center / contain;
  width: 20px;
  height: 20px;
}

.movie .intro__vide {
  max-width: 660px;
  margin: 50px auto 0;
}

.movie .intro__vide-wrap {
  aspect-ratio: 660 / 370;
}

.movie .intro__vide iframe {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.movie .case__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 50px;
  gap: 50px 30px;
}

.movie .case__video {
  position: relative;
  aspect-ratio: 485 / 273;
}

.movie .case__video iframe {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.news .list__category {
  -ms-flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 30px;
  gap: 8px 15px;
}

.news .list__category a {
  padding: 5px 18px;
  border: solid 1px var(--main-color);
  border-radius: 100px;
  color: var(--main-color);
  font-weight: 700;
  font-size: 1.4rem;
}

.news .list__category a.current {
  background-color: var(--main-color);
  color: #fff;
  pointer-events: none;
}

.news .list__container {
  border-top: solid 1px var(--line-color);
}

.news .list__item {
  border-bottom: solid 1px var(--line-color);
}

.news .list__item a {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: grid;
  grid-template-columns: -webkit-max-content 1fr;
  grid-template-columns: max-content 1fr;
  align-items: center;
  padding: 20px 10px;
  gap: 5px 15px;
}

.news .list__item a:not(:has(.category)) .date {
  grid-column: 1/3;
}

.news .list__item.pdf a {
  position: relative;
}

.news .list__item.pdf a::after {
  position: absolute;
  right: 10px;
  bottom: 22px;
  width: 24px;
  height: 24px;
  background: url(../img/common/icon-pdf.svg) no-repeat center center/contain;
  content: "";
}

.news .list__item.pdf .title {
  padding-right: 30px;
}

.news .list__item .category {
  grid-row: 1/2;
  grid-column: 1/2;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 5px 10px;
  border: solid 1px var(--main-color);
  border-radius: 100px;
  color: var(--main-color);
  font-weight: 700;
  font-size: 1.2rem;
  opacity: 0.7;
}

.news .list__item .date {
  grid-row: 1/2;
  grid-column: 2/3;
  font-weight: 600;
  font-size: 1.2rem;
  opacity: 0.3;
}

.news .list__item .title {
  grid-row: 2/3;
  grid-column: 1/3;
  overflow: hidden;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.8;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.news .article__head {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: grid;
  grid-template-columns: -webkit-max-content 1fr;
  grid-template-columns: max-content 1fr;
  align-items: center;
  margin-bottom: 40px;
  padding-bottom: 15px;
  gap: 15px;
  border-bottom: solid 1px var(--line-color);
}

.news .article__head_category {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 5px 10px;
  border: solid 1px var(--main-color);
  border-radius: 100px;
  color: var(--main-color);
  font-weight: 700;
  font-size: 1.2rem;
  opacity: 0.7;
}

.news .article__head_date {
  font-weight: 600;
  font-size: 1.4rem;
  opacity: 0.3;
}

.news .article__head_title {
  grid-column: 1/3;
  font-weight: 700;
  font-size: 2.8rem;
}

.news .article article {
  margin-bottom: 40px;
}

.news .article__pager {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.news .article__pager_wrap a {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: grid;
  position: relative;
  align-items: center;
  gap: 30px;
}

.news .article__pager_wrap a::before,
.news .article__pager_wrap a::after {
  -webkit-transition: var(--base-transition);
  content: "";
  transition: var(--base-transition);
}

.news .article__pager_wrap.prev {
  border-right: solid 1px var(--line-color);
}

.news .article__pager_wrap.prev a {
  grid-template-columns: 40px 1fr;
}

.news .article__pager_wrap.prev a::before {
  width: 40px;
  height: 40px;
  border: solid 1px var(--main-color);
  border-radius: 50%;
}

.news .article__pager_wrap.prev a::after {
  -webkit-transform: rotate(45deg);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 17px;
  width: 8px;
  height: 8px;
  margin: auto;
  transform: rotate(45deg);
  border-bottom: solid 1px var(--main-color);
  border-left: solid 1px var(--main-color);
}

.news .article__pager_wrap.next a {
  grid-template-columns: 1fr 40px;
  text-align: right;
}

.news .article__pager_wrap.next a::before {
  -webkit-transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 17px;
  bottom: 0;
  width: 8px;
  height: 8px;
  margin: auto;
  transform: rotate(45deg);
  border-top: solid 1px var(--main-color);
  border-right: solid 1px var(--main-color);
}

.news .article__pager_wrap.next a::after {
  width: 40px;
  height: 40px;
  border: solid 1px var(--main-color);
  border-radius: 50%;
}

.news .article__pager_button {
  font-weight: 700;
  font-size: 1.4rem;
}

.news .article__pager + .c-btn01 {
  margin: 60px auto 0;
}

.notFound .contents__title {
  margin-bottom: 40px;
  color: var(--main-color);
  font-weight: 700;
  font-size: 2.4rem;
  text-align: center;
}

.notFound .contents .txt {
  line-height: 1.8;
  text-align: center;
}

.notFound .contents .c-btn01 {
  margin: 50px auto 0;
}

.privacy .contents__wrapper .txt:first-of-type {
  line-height: 2;
}

.privacy .contents__wrapper .c-title02 {
  margin-top: 50px;
}

.privacy .contents__wrapper .c-title02:not(:first-of-type) {
  margin-top: 100px;
}

.privacy .contents li,
.privacy .contents .txt {
  line-height: 1.8;
}

.privacy .contents ol {
  counter-reset: number 0;
}

.privacy .contents ol li {
  position: relative;
  padding-left: 30px;
}

.privacy .contents ol li + li {
  margin-top: 10px;
}

.privacy .contents ol li::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "(" counter(number) ")";
  counter-increment: number 1;
}

.request .form__info {
  margin-top: 30px;
  padding: 20px;
  background-color: rgba(var(--pink-color-rgb), 0.05);
}

.request .form__info + .form__info {
  margin-top: 10px;
}

.request .form__info .c-title02 {
  margin-bottom: 10px;
  color: var(--pink-color);
}

.request .form__info .c-title02::before {
  background-color: var(--pink-color);
}

.request .form__info_list,
.request .form__info .txt {
  font-size: 1.4rem;
  line-height: 2;
}

.request .form__info li {
  position: relative;
  padding-left: 20px;
}

.request .form__info li::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "・";
}

.request .form__info_wrap {
  -ms-flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  margin-top: 10px;
  gap: 10px;
}

.request .form_wrap {
  margin-top: 30px;
  padding: 50px;
  border-radius: 10px;
  background-color: var(--bg-color);
}

.request .form table {
  width: 100%;
}

.request .form th,
.request .form td {
  padding: 20px 10px;
  border-top: solid 1px var(--line-color);
  border-bottom: solid 1px var(--line-color);
  line-height: 1.8;
  vertical-align: middle;
}

.request .form th {
  width: 180px;
  font-weight: 600;
  text-align: left;
}

.request .form input[type=text],
.request .form input[type=email],
.request .form textarea {
  width: 100%;
  padding: 10px 20px;
  border: solid 1px #A6A8B0;
  border-radius: 5px;
  background-color: #fff;
  font-size: 1.6rem;
  font-family: 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.request .form input[type=text]::-webkit-input-placeholder,
.request .form input[type=email]::-webkit-input-placeholder,
.request .form textarea::-webkit-input-placeholder {
  color: #ccc;
}

.request .form input[type=text]::-moz-placeholder,
.request .form input[type=email]::-moz-placeholder,
.request .form textarea::-moz-placeholder {
  color: #ccc;
}

.request .form input[type=text]:-ms-input-placeholder,
.request .form input[type=email]:-ms-input-placeholder,
.request .form textarea:-ms-input-placeholder {
  color: #ccc;
}

.request .form input[type=text]::-ms-input-placeholder,
.request .form input[type=email]::-ms-input-placeholder,
.request .form textarea::-ms-input-placeholder {
  color: #ccc;
}

.request .form input[type=text]::placeholder,
.request .form input[type=email]::placeholder,
.request .form textarea::placeholder {
  color: #ccc;
}

.request .form textarea {
  height: 120px;
}

.request .form .radio_wrap {
  -ms-flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 30px;
}

.request .form .radio_wrap label {
  position: relative;
  cursor: pointer;
}

.request .form .radio_wrap input {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
}

.request .form .radio_wrap input:checked + span::after {
  opacity: 1;
}

.request .form .radio_wrap span {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: grid;
  position: relative;
  grid-template-columns: 17px -webkit-max-content;
  grid-template-columns: 17px max-content;
  align-items: center;
  gap: 5px;
  font-weight: 500;
}

.request .form .radio_wrap span::before {
  width: 17px;
  height: 17px;
  border: solid 1px var(--line-color);
  border-radius: 50%;
  background-color: #fff;
  content: "";
}

.request .form .radio_wrap span::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 3px;
  width: 11px;
  height: 11px;
  margin: auto;
  border-radius: 50%;
  background-color: var(--point-color);
  content: "";
  opacity: 0;
}

.request .form .addressbox_top {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -ms-flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 10px;
  gap: 10px 25px;
}

.request .form .addressbox_num {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: grid;
  grid-template-columns: 170px auto 170px;
  align-items: center;
  gap: 10px;
}

.request .form .addressbox_wrap {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: grid;
  grid-template-columns: auto 170px;
  align-items: center;
  gap: 10px;
}

.request .form .addressbox .select_wrap {
  width: 100% !important;
}

.request .form .select_wrap {
  position: relative;
  width: 250px;
}

.request .form .select_wrap::after {
  -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  width: 10px;
  height: 8px;
  margin: auto;
  background-color: var(--base-color);
  content: "";
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  pointer-events: none;
}

.request .form .select_wrap select {
  width: 100%;
  padding: 10px 20px;
  border: solid 1px #A6A8B0;
  border-radius: 5px;
  background-color: #fff;
  font-size: 1.6rem;
  line-height: 1.8;
}

.request .form .check_wrap .wrap {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: grid;
  grid-template-columns: auto 96px 145px;
  align-items: center;
  margin-top: 20px;
  gap: 30px;
}

.request .form .check_wrap label {
  position: relative;
  width: 100%;
  cursor: pointer;
}

.request .form .check_wrap label input {
  position: absolute;
  width: 0;
  height: 0;
  overflow: 0;
}

.request .form .check_wrap label input:checked + span::after {
  opacity: 1;
}

.request .form .check_wrap label span {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
}

.request .form .check_wrap label span::before {
  width: 18px;
  height: 18px;
  margin-top: 5px;
  border: solid 1px var(--line-color);
  background-color: #fff;
  content: "";
}

.request .form .check_wrap label span::after {
  -webkit-transform: rotate(-45deg);
  position: absolute;
  top: 9px;
  left: 4px;
  width: 10px;
  height: 6px;
  transform: rotate(-45deg);
  border-bottom: solid 2px var(--point-color);
  border-left: solid 2px var(--point-color);
  content: "";
  opacity: 0;
}

.request .form .check_wrap .num {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  gap: 10px;
}

.request .form .check_wrap input[type=number] {
  width: 70px;
  padding: 10px 5px 10px 20px;
  border: solid 1px #A6A8B0;
  border-radius: 5px;
  font-size: 1.6rem;
  text-align: right;
}

.request .form .check_wrap input[type=number]::-webkit-input-placeholder {
  color: #ccc;
}

.request .form .check_wrap input[type=number]::-moz-placeholder {
  color: #ccc;
}

.request .form .check_wrap input[type=number]:-ms-input-placeholder {
  color: #ccc;
}

.request .form .check_wrap input[type=number]::-ms-input-placeholder {
  color: #ccc;
}

.request .form .check_wrap input[type=number]::placeholder {
  color: #ccc;
}

.request .form .privacy {
  margin-top: 30px;
}

.request .form .privacy__link {
  color: var(--pink-color);
  text-align: center;
  text-decoration: underline;
}

.request .form .privacyAgree {
  position: relative;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 20px auto 0;
}

.request .form .privacyAgree__check {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
}

.request .form .privacyAgree__check:checked + label::after {
  opacity: 1;
}

.request .form .privacyAgree label {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: grid;
  position: relative;
  grid-template-columns: 15px auto;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.request .form .privacyAgree label::before {
  width: 15px;
  height: 15px;
  border: solid 1px var(--base-color);
  content: "";
}

.request .form .privacyAgree label::after {
  -webkit-transform: rotate(-45deg);
  position: absolute;
  top: -2px;
  bottom: 0;
  left: 3px;
  width: 10px;
  height: 6px;
  margin: auto;
  transform: rotate(-45deg);
  border-bottom: solid 2px var(--point-color);
  border-left: solid 2px var(--point-color);
  content: "";
  opacity: 0;
}

.request .form .is-error {
  color: var(--pink-color);
  font-size: 1.4rem;
}

.request .form .btn-area {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: grid;
  grid-template-columns: repeat(2, 270px);
  justify-content: center;
  margin-top: 30px;
  gap: 15px;
}

.request .form .btn-area a,
.request .form .btn-area input {
  -webkit-transition: var(--base-transition);
  display: grid;
  place-content: center;
  height: 60px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: var(--base-transition);
}

.request .form .btn-area #reset,
.request .form .btn-area .return-btn {
  background-color: var(--line-color);
}

.request .form .btn-area #submit,
.request .form .btn-area .submit-btn {
  background-color: var(--point-color);
  color: #fff;
}

.request.thanks .form .c-btn01 {
  margin: 50px auto 0;
}

.request.thanks .form__tel {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 50px auto 0;
  padding: 30px 40px;
  gap: 20px;
  border-radius: 10px;
  background-color: var(--bg-color);
}

.request.thanks .form__tel .num {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: grid;
  grid-template-columns: 30px 1fr;
  align-items: center;
  gap: 10px;
  color: var(--point-color);
  font-weight: 700;
  font-size: 2.8rem;
}

.request.thanks .form__tel .num::before {
  width: 30px;
  height: 30px;
  background: url(../img/common/icon-tel.svg) no-repeat center center/contain;
  content: "";
}

.request.thanks .form__tel .txt {
  color: var(--point-color);
  font-size: 1.4rem;
  line-height: 1.8;
}

.sitemap__list {
  -webkit-box-align: start;
  -ms-flex-align: start;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: start;
  gap: 50px 60px;
}

.sitemap__list li {
  border-bottom: solid 1px var(--line-color);
}

.sitemap__list li:has(.sitemap__label) {
  border: none;
}

.sitemap__list li a {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 14px;
  gap: 10px;
  color: var(--main-color);
  font-weight: 700;
}

.sitemap__list li a::after {
  -webkit-mask: url(../img/common/icon-arrow.svg) no-repeat center center/contain;
  -ms-flex-negative: 0;
  -webkit-transition: var(--base-transition);
  flex-shrink: 0;
  width: 15px;
  height: 15px;
  background-color: var(--main-color);
  content: "";
  mask: url(../img/common/icon-arrow.svg) no-repeat center center/contain;
  transition: var(--base-transition);
}

.sitemap__list_sub li {
  border: none;
}

.sitemap__list_sub a {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  -webkit-box-pack: end !important;
  -ms-flex-pack: end !important;
  flex-direction: row-reverse;
  justify-content: flex-end !important;
  padding: 10px 0;
}

.sitemap__list_sub a::after {
  -webkit-mask: none !important;
  -webkit-transform: rotate(-45deg);
  width: 6px !important;
  height: 6px !important;
  transform: rotate(-45deg);
  border-right: solid 1px var(--main-color);
  border-bottom: solid 1px var(--main-color);
  background-color: transparent !important;
  mask: none !important;
}

.sitemap__label {
  display: block;
  margin-bottom: 10px;
  padding-bottom: 14px;
  border-bottom: solid 1px var(--line-color);
  color: var(--main-color);
  font-weight: 700;
  font-size: 1.6rem;
}

.sitemap__other {
  margin-top: 70px;
}

.sitemap__other_list {
  -webkit-box-align: start;
  -ms-flex-align: start;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: start;
  gap: 50px 60px;
}

.sitemap__other a {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  align-items: center;
  padding: 10px 0;
  gap: 10px;
  color: var(--main-color);
  font-weight: 700;
}

.sitemap__other a::before {
  -webkit-transform: rotate(-45deg);
  -ms-flex-negative: 0;
  -webkit-transition: var(--base-transition);
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  transform: rotate(-45deg);
  border-right: solid 1px var(--main-color);
  border-bottom: solid 1px var(--main-color);
  content: "";
  transition: var(--base-transition);
}

.top .mv {
  height: calc(100dvh - 100px);
  max-height: 900px;
  padding: 100px 0;
}

.top .mv::after {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 101px;
  border-radius: 100px 100px 0 0;
  border-radius: 50px 50px 0 0;
  background-color: #fff;
  content: "";
}

.top .mv .inner {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  padding-bottom: 40px;
}

.top .mv__title {
  width: 634px;
  margin-left: -135px;
}

.top .mv__txt {
  margin: 30px 0 20px;
  color: #fff;
  font-weight: 700;
  font-size: 4rem;
}

.top .mv__sub {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding-bottom: 5px;
  border-bottom: solid 1px #fff;
  color: #fff;
  font-weight: 700;
  font-size: 2rem;
}

.top .mv__bg {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.top .mv__bg::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--main-color);
  content: "";
  opacity: 0.6;
}

.top .mv__bg::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/common/pattern-dot.webp) repeat;
  content: "";
  opacity: 0.15;
}

.top .mv video {
  -o-object-fit: cover;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top .news {
  padding: 0 0 100px;
}

.top .news__contents {
  -webkit-box-align: start;
  -ms-flex-align: start;
  display: grid;
  grid-template-rows: -webkit-max-content 1fr;
  grid-template-rows: max-content 1fr;
  grid-template-columns: 280px 1fr;
  align-items: start;
  gap: 40px 0;
}

.top .news__button {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  grid-row: 1/2;
  grid-column: 1/2;
  flex-direction: column;
  gap: 15px;
}

.top .news__button button {
  -webkit-transition: var(--base-transition);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 8px 24px;
  border: solid 1px var(--main-color);
  border-radius: 100px;
  color: var(--main-color);
  font-weight: 700;
  font-size: 1.4rem;
  transition: var(--base-transition);
}

.top .news__button button.current {
  background-color: var(--main-color);
  color: #fff;
  pointer-events: none;
}

.top .news__list {
  grid-row: 1/3;
  grid-column: 2/3;
  border-top: solid 1px var(--line-color);
}

.top .news__item {
  border-bottom: solid 1px var(--line-color);
}

.top .news__item a {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: grid;
  grid-template-columns: -webkit-max-content 1fr;
  grid-template-columns: max-content 1fr;
  align-items: center;
  padding: 20px 10px;
  gap: 5px 15px;
}

.top .news__item.pdf a {
  position: relative;
}

.top .news__item.pdf a::after {
  position: absolute;
  right: 10px;
  bottom: 22px;
  width: 24px;
  height: 24px;
  background: url(../img/common/icon-pdf.svg) no-repeat center center/contain;
  content: "";
}

.top .news__item.pdf .news__title {
  padding-right: 30px;
}

.top .news__category {
  grid-row: 1/2;
  grid-column: 1/2;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 5px 10px;
  border: solid 1px var(--main-color);
  border-radius: 100px;
  color: var(--main-color);
  font-weight: 700;
  font-size: 1.2rem;
  opacity: 0.7;
}

.top .news__date {
  grid-row: 1/2;
  grid-column: 2/3;
  font-size: 1.2rem;
  opacity: 0.3;
}

.top .news__title {
  grid-row: 2/3;
  grid-column: 1/3;
  overflow: hidden;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.8;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.top .news .c-btn02 {
  grid-row: 2/3;
  grid-column: 1/2;
}

.top .about {
  border-radius: 0 100px 100px 0;
  background-color: var(--bg-color);
}

.top .about::before {
  z-index: -1;
  position: absolute;
  right: 0;
  bottom: -1px;
  width: 100px;
  height: 100px;
  background-color: var(--main-color);
  content: "";
}

.top .about::after {
  z-index: -1;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-color: var(--bg-color);
  content: "";
}

.top .about__thumb {
  position: relative;
  aspect-ratio: 366/275;
  overflow: hidden;
  border-radius: 10px;
}

.top .about__thumb::before {
  -webkit-transition: var(--base-transition);
  z-index: 1;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 43px;
  height: 43px;
  border-radius: 10px 0 0 0;
  background-color: var(--main-color);
  content: "";
  transition: var(--base-transition);
}

.top .about__thumb::after {
  -webkit-mask: url(../img/common/icon-arrow.svg) no-repeat center center/contain;
  z-index: 1;
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 16px;
  height: 16px;
  background-color: #fff;
  content: "";
  mask: url(../img/common/icon-arrow.svg) no-repeat center center/contain;
}

.top .about__thumb img {
  -o-object-fit: cover;
  -webkit-transition: var(--base-transition);
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--base-transition);
}

.top .about__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 50px;
  gap: 30px;
}

.top .about__title {
  -webkit-transition: var(--base-transition);
  margin: 20px 0 10px;
  font-weight: 700;
  font-size: 2.2rem;
  transition: var(--base-transition);
}

.top .method {
  border-radius: 100px 0 0 100px;
  background-color: var(--main-color);
}

.top .method::before {
  z-index: -1;
  position: absolute;
  top: -1px;
  left: 0;
  width: 100px;
  height: 100px;
  background-color: var(--bg-color);
  content: "";
}

.top .method::after {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-color: var(--main-color);
  content: "";
}

.top .method .inner {
  -webkit-box-align: start;
  -ms-flex-align: start;
  display: grid;
  grid-template-rows: -webkit-max-content 1fr;
  grid-template-rows: max-content 1fr;
  grid-template-columns: 1fr 690px;
  align-items: start;
}

.top .method .txt {
  color: #fff;
}

.top .method .c-title01 {
  grid-row: 1/2;
  grid-column: 1/2;
}

.top .method .c-title01 + .txt {
  grid-row: 2/3;
  grid-column: 1/2;
  line-height: 2;
}

.top .method__wrap {
  grid-row: 1/3;
  grid-column: 2/3;
}

.top .method__item {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 1;
  position: relative;
  flex-direction: column;
  justify-content: flex-end;
  height: 280px;
  padding: 28px;
  overflow: hidden;
  border-radius: 40px;
}

.top .method__item + .method__item {
  margin-top: 20px;
}

.top .method__item .txt {
  position: relative;
  padding-right: 100px;
}

.top .method__item .txt::before {
  -webkit-transition: var(--base-transition);
  position: absolute;
  top: 0;
  right: 0;
  width: 48px;
  height: 48px;
  border: solid 1px #FFF;
  border-radius: 50%;
  content: "";
  transition: var(--base-transition);
}

.top .method__item .txt::after {
  -webkit-mask: url(../img/common/icon-arrow.svg) no-repeat center center/contain;
  position: absolute;
  top: 17px;
  right: 16px;
  width: 14px;
  height: 14px;
  background-color: #fff;
  content: "";
  mask: url(../img/common/icon-arrow.svg) no-repeat center center/contain;
}

.top .method__img {
  -webkit-transition: var(--base-transition);
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: var(--base-transition);
}

.top .method__img img {
  -o-object-fit: cover;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top .method__title {
  margin-bottom: 10px;
  color: #fff;
  font-weight: 700;
  font-size: 2.4rem;
}

.top .c-bgTxt {
  position: absolute;
  bottom: 20%;
  left: 0;
}

.top .contact::before {
  z-index: -1;
  position: absolute;
  top: -1px;
  right: 0;
  width: 100px;
  height: 100px;
  background-color: var(--main-color);
  content: "";
}

.top .contact::after {
  z-index: -1;
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-color: #fff;
  content: "";
}

.top .contact__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 50px;
  gap: 30px;
}

.top .contact__item .disable {
  opacity: 1;
}

.top .contact__item .disable .contact__thumb::before {
  background-color: var(--line-color);
}

.top .contact__thumb {
  display: grid;
  position: relative;
  place-content: center;
  place-items: center;
  height: 206px;
  margin-bottom: 20px;
  overflow: hidden;
  gap: 12px;
  border-radius: 10px;
  background-color: var(--bg-color);
}

.top .contact__thumb::before {
  -webkit-transition: var(--base-transition);
  z-index: 1;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 43px;
  height: 43px;
  border-radius: 10px 0 0 0;
  background-color: var(--main-color);
  content: "";
  transition: var(--base-transition);
}

.top .contact__thumb::after {
  -webkit-mask: url(../img/common/icon-arrow.svg) no-repeat center center/contain;
  z-index: 1;
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 16px;
  height: 16px;
  background-color: #fff;
  content: "";
  mask: url(../img/common/icon-arrow.svg) no-repeat center center/contain;
}

.top .contact__thumb img {
  width: 115px;
  height: 115px;
}

.top .contact__title {
  -webkit-transition: var(--base-transition);
  color: var(--main-color);
  font-weight: 700;
  font-size: 2rem;
  transition: var(--base-transition);
}

.top .contact .caution {
  display: block;
  font-weight: 700;
  font-size: 1.2rem;
}

.top .bottom {
  height: 460px;
}

.top .bottom img {
  -o-object-fit: cover;
  height: 100%;
  object-fit: cover;
}

.works .case__table-unit {
  font-size: 1.2rem;
  text-align: right;
  margin-top: 50px;
  margin-bottom: 20px;
}

.works .case__table {
  width: 100%;
}

.works .case__table table {
  border-collapse: collapse;
  border-bottom: solid 1px var(--line-color);
  table-layout: fixed;
  width: 100%;
}

.works .case__table thead {
  position: sticky;
  top: 0;
  z-index: 1;
  display: block;
  padding-right: 11px;
  padding-left: 1px;
  background-color: var(--main-color);
}

.works .case__table thead tr,
.works .case__table tbody tr {
  display: table;
  table-layout: fixed;
  width: 100%;
}

.works .case__table thead th {
  color: #fff;
  text-align: center;
  font-weight: 700;
  padding: 25px 10px;
}

.works .case__table thead th:first-of-type {
  width: 170px;
}

.works .case__table thead th:not(:last-of-type) {
  border-right: solid 1px #fff;
}

.works .case__table tbody {
  display: block;
  overflow-y: auto;
  max-height: 560px;
  margin-top: -1px;
  width: 100%;
}

.works .case__table tbody::-webkit-scrollbar {
  width: 10px;
}

.works .case__table tbody::-webkit-scrollbar-thumb {
  background: rgba(22, 49, 98, 0.3);
}

.works .case__table tbody::-webkit-scrollbar-track {
  background: rgba(22, 49, 98, 0.2);
}

.works .case__table tbody th,
.works .case__table tbody td {
  border-top: solid 1px var(--line-color);
  border-left: solid 1px var(--line-color);
  border-right: solid 1px var(--line-color);
  color: var(--main-color);
  line-height: 1.5;
  padding: 4px 10px;
  vertical-align: middle;
}

.works .case__table tbody .year {
  background-color: var(--bg-color);
  font-weight: 700;
  text-align: center;
  width: 170px;
}

.works .case__table tbody td {
  text-align: right;
  width: calc((100% - 170px) / 6);
}

.works .case__table tbody .sum {
  background-color: var(--bg-color);
}

.works .case .c-title02 {
  margin-top: 70px;
}

.works .case02__tab {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin: 50px 0 30px;
}

.works .case02__tab-btn {
  background-color: #fff;
  border: solid 1px var(--point-color);
  border-radius: 5px;
  color: var(--point-color);
  font-weight: 700;
  text-align: center;
  padding: 14px;
}

.works .case02__tab-btn.is-active {
  background-color: var(--point-color);
  color: #fff;
  pointer-events: none;
}

.works .case02__table {
  display: none;
  width: 100%;
}

.works .case02__table.is-active {
  display: block;
}

.works .case02__table table {
  border-collapse: collapse;
  border-bottom: solid 1px var(--line-color);
  table-layout: fixed;
  width: 100%;
}

.works .case02__table thead {
  position: sticky;
  top: 0;
  z-index: 1;
  background-color: var(--main-color);
  display: grid;
  padding-right: 11px;
}

.works .case02__table thead tr {
  display: table;
  table-layout: fixed;
  width: 100%;
}

.works .case02__table thead tr.colspan-sub {
  position: absolute;
  top: 37px;
  left: 0;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
}

.works .case02__table thead th.colspan {
  font-size: 1.4rem;
  padding: 10px;
  vertical-align: top;
}

.works .case02__table thead th {
  color: #fff;
  text-align: center;
  font-weight: 700;
  padding: 25px 10px;
}

.works .case02__table thead th:not(:last-of-type) {
  border-right: solid 1px #fff;
}

.works .case02__table thead tr.colspan-sub th {
  border-top: solid 1px #fff;
  font-size: 1.4rem;
  padding: 7px 10px;
}

.works .case02__table tbody {
  display: block;
  overflow-y: auto;
  max-height: 560px;
  margin-top: -1px;
  width: 100%;
}

.works .case02__table tbody tr {
  display: table;
  table-layout: fixed;
  width: 100%;
}

.works .case02__table tbody::-webkit-scrollbar {
  width: 10px;
}

.works .case02__table tbody::-webkit-scrollbar-thumb {
  background: rgba(22, 49, 98, 0.3);
}

.works .case02__table tbody::-webkit-scrollbar-track {
  background: rgba(22, 49, 98, 0.2);
}

.works .case02__table tbody td {
  border-top: solid 1px var(--line-color);
  border-left: solid 1px var(--line-color);
  border-right: solid 1px var(--line-color);
  line-height: 1.5;
  color: var(--main-color);
  padding: 12px 10px;
  vertical-align: middle;
  text-align: center;
}

.works .case02__table tbody td.date {
  width: calc((100% / 6) / 2);
}

.works .case02__table tbody td {
  width: calc(100% / 6);
}


@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }

  .about .utility__wrap {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    padding: min(6.944vw, 100px) min(1.389vw, 20px);
  }

  .about .utility__wrap .c-title01 {
    margin-bottom: min(2.083vw, 30px);
    gap: min(0.556vw, 8px);
  }

  .about .utility__wrap .c-title01 .en {
    padding-left: min(0.833vw, 20px);
    font-size: min(0.972vw, 14px);
  }

  .about .utility__wrap .c-title01 .en::before {
    width: min(0.417vw, 6px);
    height: min(0.417vw, 6px);
  }

  .about .utility__wrap .c-title01 .jp {
    font-size: min(2.222vw, 32px);
  }

  .about .utility__wrap .txt {
    font-size: min(1.111vw, 16px);
  }

  .about .utility__wrap .img {
    max-width: min(27.083vw, 390px);
    margin-top: min(3.472vw, 50px);
  }

  .feature .deterioration__list_title:nth-of-type(1) {
    grid-row: 1/4;
  }

  .feature .deterioration__list_title:nth-of-type(2) {
    grid-row: 4/6;
  }

  .feature .deterioration__list_title:nth-of-type(3) {
    grid-row: 6/7;
  }

  .feature .deterioration__list_wrap {
    grid-column: 2/3;
  }

  .feature .deterioration__list_wrap:nth-of-type(1) {
    grid-row: 1/4;
  }

  .feature .deterioration__list_wrap:nth-of-type(2) {
    grid-row: 4/6;
  }

  .feature .deterioration__list_wrap:nth-of-type(3) {
    grid-row: 6/7;
  }

  .feature .type__wrap .c-title04 {
    grid-row: 1/2;
    grid-column: 1/3;
  }

  .feature .type__wrap .txt {
    grid-row: 2/3;
    grid-column: 1/3;
  }

  .feature .type__img {
    grid-row: 3/4;
    grid-column: 1/2;
  }

  .feature .type__list {
    grid-row: 3/4;
    grid-column: 2/3;
  }

  .flow .summary__wrap:has(.summary__img) .summary__item,
  .flow .summary__wrap:has(.summary__img) .txt {
    grid-column: 1/2;
  }

  .flow .summary__wrap:has(.summary__img) .summary__img {
    grid-row: 1/3;
    grid-column: 2/3;
  }

  .top .news__contents {
    padding-top: 40px;
    border-top: solid 1px rgba(var(--main-color-rgb), 0.3);
  }
}

@media screen and (max-width: 1023px) {
  .tab {
    display: none !important;
  }

  body {
    font-size: 1.4rem;
  }

  main {
    margin-top: 60px;
  }

  .c-lowerHead__list {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    overflow-x: scroll;
  }

  .c-lowerHead__list::-webkit-scrollbar {
    height: 5px;
  }

  .c-lowerHead__list::-webkit-scrollbar-track {
    background-color: transparent;
  }

  .c-lowerHead__list::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.4);
  }

  .header {
    height: 60px;
  }

  .header:has(.header__btn.active) {
    background-color: var(--main-color);
  }

  .header:has(.header__btn.active) .header__logo {
    visibility: hidden;
    opacity: 0;
  }

  .header__inner {
    padding: 0 0 0 20px;
  }

  .header__logo {
    width: 150px;
  }

  .header__btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .header__nav {
    -webkit-transition: var(--base-transition);
    visibility: hidden;
    z-index: 1;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    height: calc(100dvh - 60px);
    padding: 20px 20px 100px;
    overflow-y: scroll;
    background-color: var(--main-color);
    opacity: 0;
    transition: var(--base-transition);
  }

  .header__nav.active {
    visibility: visible;
    opacity: 1;
  }

  .header__nav_pc {
    display: none;
  }

  .header__nav_sp {
    display: block;
  }

  .header__nav_list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    flex-direction: column;
    align-items: flex-start;
    height: auto;
    padding: 0;
    gap: 10px;
  }

  .header__nav_item {
    width: 100%;
  }

  .header__nav_item a,
  .header__nav_item span {
    padding: 20px 20px 20px 0;
    border-bottom: solid 1px rgba(255, 255, 255, 0.12);
    color: #fff;
  }

  .header__nav_item a {
    position: relative;
  }

  .header__nav_item a::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 12px;
    height: 12px;
    margin: auto;
    background: url(../img/common/icon-arrow.svg) no-repeat center center/contain;
    content: "";
  }

  .header__nav_label {
    display: block;
    width: 100%;
    margin-bottom: 10px;
    font-weight: 700;
    font-size: 1.6rem;
  }

  .header__nav_sub a {
    padding: 10px 0 10px 20px;
    border: none;
    font-size: 1.4rem;
  }

  .header__nav_sub a::after {
    -webkit-transform: rotate(-45deg);
    right: inherit;
    left: 0;
    width: 6px;
    height: 6px;
    transform: rotate(-45deg);
    border-right: solid 1px #fff;
    border-bottom: solid 1px #fff;
    background: none;
  }

  .header__nav_wrap {
    margin-top: 35px;
  }

  .header__nav_wrap a {
    -webkit-box-align: center;
    -ms-flex-align: center;
    display: grid;
    position: relative;
    grid-template-columns: 60px 1fr;
    align-items: center;
    padding: 10px 20px;
    gap: 15px;
    border-radius: 10px;
    background-color: var(--bg-color);
    color: var(--main-color);
    font-weight: 700;
    font-size: 1.6rem;
  }

  .header__nav_wrap a + a {
    margin-top: 10px;
  }

  .header__nav_wrap a::after {
    -webkit-mask: url(../img/common/icon-arrow.svg) no-repeat center center/contain;
    position: absolute;
    top: 0;
    right: 20px;
    bottom: 0;
    width: 12px;
    height: 12px;
    margin: auto;
    background-color: var(--main-color);
    content: "";
    mask: url(../img/common/icon-arrow.svg) no-repeat center center/contain;
  }

  .header__nav_wrap a.disable {
    opacity: 1;
  }

  .header__nav_wrap a.disable::after {
    content: none;
  }

  .header__nav_wrap .icon {
    width: 60px;
    height: 60px;
  }

  .header__nav_wrap .txt span {
    color: var(--point-color02);
  }

  .footer .inner {
    gap: 40px 20px;
  }

  .footer__logo {
    grid-row: 3/4;
    grid-column: 1/4;
  }

  .footer__link {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    grid-row: 2/3;
    grid-column: 1/4;
    justify-content: start;
  }

  .about .utility__wrap {
    margin: 0 auto;
    padding: 0 50px 0 40px;
  }

  .about .modal__overlay {
    display: block;
  }

  .about .modal__map {
    display: none;
  }

  .about .modal__contents {
    position: absolute;
    top: 0;
    right: 0;
    width: calc(100% - 20px);
    max-width: 510px;
    padding: 75px 20px;
  }

  .about .modal__title {
    font-size: 2.2rem;
  }

  .about .modal__title:before {
    width: 24px;
    height: 31px;
  }

  .about .modal__method {
    font-size: 2rem;
  }

  .about .modal__method small {
    font-size: 1.4rem;
  }

  .about .modal__close {
    width: calc(50% - 20px);
    max-width: 510px;
  }

  .association .contact__list {
    grid-template-columns: 180px auto;
  }

  .contact .form_wrap {
    padding: 40px 30px;
  }

  .contact .form input[type=text],
  .contact .form input[type=email],
  .contact .form input[type=date],
  .contact .form textarea {
    font-size: 1.4rem;
  }

  .contact .form .select_wrap select {
    font-size: 1.4rem;
  }

  .contact .form .file-wrap label {
    font-size: 1.4rem;
  }

  .contact .calling .inner {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact .calling .c-title01 {
    grid-column: 1 / 2;
    margin-bottom: 30px;
  }

  .contact .calling .txt {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    margin-bottom: 30px;
  }
  
  .contact .calling .calling__list {
    grid-column: 1 / 2 !important;
    grid-template-columns: 140px 1fr;
  }
  
  .contact .calling .calling__list:first-of-type {
    grid-row: 3 / 4;
  }
  
  /* .contact .calling .calling__list:first-of-type dt,
  .contact .calling .calling__list:first-of-type dd {
    border-bottom: none;
  } */
  
  .contact .calling .calling__list:last-of-type {
    grid-row: 4 / 5;
  }

  .documents .download__item {
    padding: 0;
  }

  .feature .list__table {
    overflow-x: scroll;
  }

  .flow .summary__wrap {
    gap: 20px;
  }

  .flow .summary__item h3 {
    font-size: 1.6rem;
  }

  .memberList .organization__wrapper.col2 .c-title02 {
    grid-column: 1/2;
  }

  .memberList .organization__wrapper.col2 {
    grid-template-columns: 1fr;
  }

  .memberList .organization__wrap + .organization__wrap {
    margin-top: 50px;
  }

  .memberList .organization__list.col2 .organization__item:nth-of-type(-n+2) {
    border-top: none;
  }

  .memberList .organization__list.col2 {
    grid-template-columns: 1fr;
    border-top: solid 1px var(--line-color);
  }

  .memberList .members__date {
    width: 100%;
  } 

  .memberList .members__category {
    grid-template-columns: repeat(4, 1fr);
    margin: 0 0 50px;
  }

  .memberList .members__category button {
    font-size: 1.4rem;
  }

  .memberList .members__category button {
    min-height: 45px;
    padding: 0 10px;
  }

  .memberList .members__table thead th:nth-of-type(1) {
    width: 40%;
  }

  .memberList .members__table thead th:nth-of-type(3) {
    width: 16%;
  }

  .memberList .members__table tbody th a::after {
    bottom: 4px;
  }

  .request .form_wrap {
    padding: 40px 30px;
  }

  .request .form input[type=text],
  .request .form input[type=email],
  .request .form textarea {
    font-size: 1.4rem;
  }

  .request .form .select_wrap select {
    font-size: 1.4rem;
  }

  .sitemap__list {
    gap: 50px 30px;
  }

  .sitemap__list_sub a {
    font-size: 1.2rem;
  }

  .sitemap__label {
    font-size: 1.4rem;
  }

  .sitemap__label {
    font-size: 1.6rem;
  }

  .sitemap__other_list {
    gap: 50px 30px;
  }

  .sitemap__other a {
    font-size: 1.2rem;
  }

  .sitemap__other a {
    font-size: 1.4rem;
  }

  .top .mv {
    height: calc(100dvh - 80px);
    max-height: 727px;
  }

  .top .mv::after {
    height: 61px;
  }

  .top .mv .inner {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }

  .top .mv__title {
    width: 287px;
  }

  .top .mv__txt {
    margin: 20px 0;
    font-size: 2rem;
  }

  .top .mv__sub {
    font-size: 1.4rem;
  }

  .top .news__contents {
    grid-template-columns: 200px 1fr;
  }

  .top .method .inner {
    grid-template-columns: 1fr;
  }

  .top .method .c-title01 {
    grid-row: 1;
    grid-column: 1;
  }

  .top .method .c-title01 + .txt {
    grid-row: 2;
    grid-column: 1;
  }

  .top .method__wrap {
    grid-row: 3;
    grid-column: 1;
    margin-top: 30px;
  }

  .top .contact__thumb {
    height: 226px;
  }

  .top .contact__thumb img {
    width: 105px;
    height: 105px;
  }

  .top .contact__title {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }

  section {
    padding: 80px 0;
  }

  .c-title01 .en {
    font-size: 1.2rem;
  }

  .c-title01 .jp {
    font-size: 2.4rem;
  }

  .c-title02 {
    font-size: 1.6rem;
  }

  .c-title03 {
    padding-top: 12px;
    font-size: 2.2rem;
  }

  .c-title04 {
    padding-top: 12px;
    font-size: 1.8rem;
  }

  .c-title04 small {
    font-size: 1.2rem;
  }

  .c-btn01 {
    margin-right: auto;
    margin-left: auto;
  }

  .c-btn03 {
    margin-right: auto;
    margin-left: auto;
  }

  .c-lowerHead {
    height: 260px;
  }

  .c-lowerHead::after {
    height: 48px;
    border-radius: 50px 50px 0 0;
  }

  .c-lowerHead__title {
    margin-top: 30px;
  }

  .c-lowerHead__title .en {
    margin-bottom: 15px;
    font-size: 1.2rem;
  }

  .c-lowerHead__title .title {
    font-size: 2.6rem;
    line-height: 1.3;
  }

  .c-lowerHead .c-bgTxt {
    bottom: 40px;
  }

  .c-lowerHead .c-bgTxt .c-bgTxt__inn {
    width: 3840px;
  }

  .c-lowerHead .c-bgTxt img {
    width: 640px;
  }

  .c-pager {
    margin-top: 50px;
  }

  .c-pager .page-numbers {
    gap: 5px;
  }

  .footer {
    padding: 50px 0 0;
  }

  .footer .inner {
    display: block;
  }

  .footer__list + .footer__list {
    margin-top: 10px;
  }

  .footer__item + .footer__item {
    margin-top: 10px;
  }

  .footer__item_label {
    margin-bottom: 10px;
  }

  .footer__item_sub a {
    padding: 6px 0 6px 15px;
  }

  .footer__logo {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
    gap: 10px;
  }

  .footer__logo_txt {
    text-align: center;
    opacity: 0.8;
  }

  .footer__link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 30px;
    gap: 15px;
  }

  .footer__bottom {
    grid-template-columns: 1fr 60px;
  }

  .footer__copy {
    font-size: 1rem;
  }

  .footer__pagetop {
    height: 60px;
  }

  .footer__pagetop::after {
    top: 28px;
    width: 15px;
    height: 15px;
  }

  .footer .c-bgTxt {
    bottom: 20px;
  }

  .about .intro__title {
    font-size: 2.2rem;
  }

  .about .history .c-title01 {
    margin-bottom: 20px;
  }

  .about .history__sp-tab {
    border-bottom: solid 1px var(--point-color);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
    padding: 0 20px;
    width: 100vw;
    margin: 0 calc(50% - 50vw) 35px;
  }

  .about .history__sp-tab-btn {
    background-color: #fff;
    border-radius: 10px 10px 0 0;
    font-size: 1.6rem;
    font-weight: 700;
    text-align: center;
    padding: 16px;
  }

  .about .history__sp-tab-btn:first-of-type {
    color: var(--point-color);
    border-top: solid 1px var(--point-color);
    border-left: solid 1px var(--point-color);
    border-right: solid 1px var(--point-color);
  }
  .about .history__sp-tab-btn:last-of-type {
    color: var(--point-color02);
    border-top: solid 1px var(--point-color02);
    border-left: solid 1px var(--point-color02);
    border-right: solid 1px var(--point-color02);
  }

  .about .history__sp-tab-btn.is-active {
    color: #fff;
    pointer-events: none;
  }

  .about .history__sp-tab-btn:first-of-type.is-active {
    background-color: var(--point-color);
  }


  .about .history__sp-tab-btn:last-of-type.is-active {
    background-color: var(--point-color02);
  }

  .about .history__sp-list {
    position: relative;
    display: none;
  }

  .about .history__sp-list.is-active {
    display: block;
  }

  .about .history__sp-year {
    position: relative;
    margin-bottom: 10px;
  }

  .about .history__sp-year time {
    display: inline-block;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    padding: 6px 23px;
    border-radius: 100px;
    background-color: #fff;
    color: var(--point-color);
    font-weight: 600;
    font-size: 1.4rem;
  }

  .about .history__sp-txt {
    line-height: 2;
    padding-left: 16px;
    margin-left: 20px;
    position: relative;
  }

  .about .history__sp-txt + .history__sp-txt {
    margin-top: 20px;
  }

  .about .history__sp-txt + .history__sp-year {
    margin-top: 50px;
  }

  .about .history__sp-txt::before {
    position: absolute;
    top: 10px;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--point-color);
    content: "";
  }

  .about .history__sp-txt img {
    margin: 10px auto 0;
    width: var(--w, auto);
    max-width: var(--w, 100%);
  }

  .about .utility {
    grid-template-columns: 1fr;
  }

  .about .utility__wrap {
    width: 100%;
    max-width: inherit;
    padding: 80px 20px 50px;
  }

  .about .utility__wrap .img {
    margin: 30px 20px 0;
  }

  .about .utility__pin {
    border: solid 1px #5D5E5E;
    border-radius: 1.333vw;
    gap: 0.8vw;
    padding: 1.6vw 2.133vw;
  }

  .about .utility__pin::after {
    border: solid 1px #5D5E5E;
    width: 1.333vw;
    height: 1.333vw;
  }

  .about .utility__pin.--position01 {
    top: 24vw;
    left: 21.867vw;
  }

  .about .utility__pin.--position01::before {
    bottom: -3.467vw;
    height: 3.467vw;
    width: 0.267vw;
  }

  .about .utility__pin.--position01::after {
    bottom: -3.733vw;
  }

  .about .utility__pin.--position02 {
    top: 17.6vw;
    left: 50.133vw;
  }

  .about .utility__pin.--position02::before {
    width: 0.267vw;
    height: 3.467vw;
    bottom: -3.467vw;
    right: 3.733vw;
  }

  .about .utility__pin.--position02::after {
    bottom: -3.733vw;
    right: 3.2vw;
  }

  .about .utility__pin.--position03 {
    top: 48vw;
    left: 44.8vw;
  }

  .about .utility__pin.--position03::before {
    border-top: solid 1px #5D5E5E;
    border-right: solid 1px #5D5E5E;
    top: -3.733vw;
    left: 50%;
    width: 2.133vw;
    height: 3.733vw;
    transform: translateX(-50%);
  }

  .about .utility__pin.--position03::after {
    top: -4.267vw;
    left: 9.6vw;
  }

  .about .utility__pin.--position04 {
    top: 44vw;
    left: 79.2vw;
  }

  .about .utility__pin.--position04::before {
    width: 0.267vw;
    height: 3.2vw;
    bottom: -3.2vw;
    right: 3.733vw;
  }

  .about .utility__pin.--position04::after {
    bottom: -3.733vw;
    right: 3.2vw;
  }

  .about .utility__pin.--position05 {
    top: 58.933vw;
    left: 4.8vw;
  }

  .about .utility__pin.--position05::before {
    width: 0.267vw;
    height: 3.733vw;
    bottom: -3.733vw;
  }

  .about .utility__pin.--position05::after {
    bottom: -3.733vw;
  }

  .about .utility__pin.--position06 {
    top: 68.8vw;
    left: 26.667vw;
  }

  .about .utility__pin.--position06::before {
    width: 0.267vw;
    height: 3.733vw;
    bottom: -3.733vw;
  }

  .about .utility__pin.--position06::after {
    bottom: -3.733vw;
  }

  .about .utility__pin.--position07 {
    top: 69.333vw;
    left: 65.6vw;
  }

  .about .utility__pin.--position07::before {
    width: 0.267vw;
    height: 3.733vw;
    bottom: -3.733vw;
  }

  .about .utility__pin.--position07::after {
    bottom: -3.733vw;
  }

  .about .utility__pin li {
    width: 4vw;
    height: 4vw;
  }

  .about .modal {
    display: block;
  }

  .about .modal__map {
    display: none;
  }

  .about .modal .c-btn02 {
    margin: 25px 0 0 auto;
  }

  .about .modal__close {
    width: calc(100% - 20px);
  }

  .association .constitution__wrap {
    grid-template-columns: 1fr;
  }

  .association .contact .txt {
    margin-bottom: 30px;
  }

  .association .contact__list {
    grid-template-columns: 1fr;
  }

  .association .contact__list dt {
    padding: 20px 20px 10px;
    border-bottom: none;
  }

  .association .contact__list dd {
    padding: 0 20px 20px;
    border-top: none;
  }

  .association .contact .c-btn01 {
    margin: 26px auto 0;
  }

  .contact .faq__question button {
    grid-template-columns: 35px 1fr 20px;
    padding: 15px 10px;
    font-size: 1.6rem;
  }

  .contact .faq__question button::before,
  .contact .faq__question button::after {
    width: 20px;
  }

  .contact .faq__question button::before {
    right: 10px;
  }

  .contact .faq__question button .icon {
    width: 35px;
    height: 35px;
  }

  .contact .faq__answer_inn {
    grid-template-columns: 35px 1fr;
    padding: 15px 10px;
  }

  .contact .faq__answer .icon {
    width: 35px;
    height: 35px;
  }

  .contact .form__info_list,
  .contact .form__info .txt {
    font-size: 1.2rem;
  }

  .contact .form__info li {
    padding-left: 15px;
  }

  .contact .form__info li::before {
    font-size: 1.2rem;
  }

  .contact .form__info_wrap .c-btn03 {
    place-content: inherit;
    width: 100%;
  }

  .contact .form .is-error {
    font-size: 1.2rem;
  }

  .contact .form_wrap {
    padding: 0;
    background-color: transparent;
  }

  .contact .form table {
    border-bottom: solid 1px var(--line-color);
  }

  .contact .form th,
  .contact .form td {
    display: block;
    width: 100%;
    padding: 13px 20px;
  }

  .contact .form th {
    background-color: var(--bg-color);
    text-align: center;
  }

  .contact .form td {
    padding: 20px;
    border: none;
  }

  .contact .form td .caution {
    font-size: 1.2rem;
  }

  .contact .form input[type=text],
  .contact .form input[type=email],
  .contact .form input[type=date],
  .contact .form textarea {
    padding: 10px;
  }

  .contact .form input[type=date] {
    width: 100%;
    height: 46px;
  }

  .contact .form .date_wrap {
    display: flex;
  }

  .contact .form .radio_wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .contact .form .addressbox_num {
    grid-template-columns: 1fr -webkit-max-content 1fr;
    grid-template-columns: 1fr max-content 1fr;
    width: 100%;
  }

  .contact .form .addressbox_wrap {
    grid-template-columns: -webkit-max-content 1fr;
    grid-template-columns: max-content 1fr;
    width: 100%;
  }

  .contact .form .select_wrap {
    width: 100%;
  }

  .contact .form .btn-area {
    -webkit-box-align: center;
    -ms-flex-align: center;
    grid-template-columns: 1fr;
    align-items: center;
  }

  .contact .form .btn-area a,
  .contact .form .btn-area input {
    width: 100%;
    max-width: 290px;
    margin: 0 auto;
  }

  .contact.thanks .form .c-btn01 {
    margin: 30px auto 0;
  }

  .contact .calling .inner {
    grid-template-columns: 1fr;
  }

  /* .contact .calling .c-title01 {
    
  } */

  .documents .download__head {
    grid-template-columns: 1fr;
    margin: 30px auto 80px;
    gap: 40px;
  }

  .documents .download__item {
    padding: 0 60px;
  }

  .documents .download__thumb + .txt {
    margin: 10px 0;
  }

  .documents .download .c-btn01 {
    margin: 30px auto 0;
  }

  .documents__list {
    margin-top: 30px;
  }

  .documents__list + p.txt {
    margin-top: 50px;
  }

  .documents__item {
    min-height: inherit;
    padding: 20px;
  }

  .documents__item .c-btn03 {
    width: 100%;
    margin-top: 16px;
  }

  .documents .modal__contents {
    width: calc(100% - 40px);
    height: calc(100dvh - 100px);
  }

  .documents .modal__contents .pdf::-webkit-scrollbar {
    width: 5px;
  }

  .documents .modal__contents .pdf {
    padding: 30px 20px 80px;
  }

  .feature .features__list {
    grid-template-columns: 1fr;
  }

  .feature .features__item {
    padding: 30px 20px;
  }

  .feature .features__item_title .en {
    font-size: 1.2rem;
  }

  .feature .features__item_title .jp {
    font-size: 1.6rem;
  }

  .feature .deterioration__list {
    grid-template-columns: 1fr;
  }

  .feature .deterioration__list_title {
    padding: 25px 10px;
    border-bottom: solid 1px var(--line-color) !important;
    text-align: center;
  }

  .feature .deterioration__sub {
    grid-template-columns: 1fr;
  }

  .feature .deterioration__sub dt {
    padding: 20px 10px 2px;
    border-bottom: none;
  }

  .feature .deterioration__sub dd {
    padding: 0 10px 20px;
  }

  .feature .type__container {
    margin-top: 0;
  }

  .feature .type__wrapper:not(:first-of-type) {
    margin-top: 80px;
  }

  .feature .type__wrap {
    grid-template-columns: 1fr;
    padding-top: 30px;
    scroll-margin-top: 60px;
  }

  .feature .type__list {
    grid-template-columns: 90px auto;
  }

  .feature .type__list dt,
  .feature .type__list dd {
    padding: 13px 10px;
    font-size: 1.2rem;
  }

  .flow .process__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: auto;
    margin-top: 20px;
    padding: 0 20px;
    gap: 10px;
  }

  .flow .process li {
    -webkit-writing-mode: inherit;
    -ms-writing-mode: inherit;
    width: 100%;
    padding: 20px 10px;
    font-size: 1.8rem;
    writing-mode: inherit;
  }

  .flow .process li + li {
    margin-top: 30px;
    margin-left: 0;
  }

  .flow .process li + li::after {
    -webkit-transform: rotate(90deg);
    top: -30px;
    right: 0;
    bottom: inherit;
    left: 0;
    transform: rotate(90deg);
  }

  .flow .summary__wrap:has(.summary__img) {
    grid-template-rows: repeat(3, auto);
    grid-template-columns: 1fr;
  }

  .flow .summary__img {
    margin: 0 20px;
  }

  .flow .comb__table {
    overflow-x: scroll;
  }

  .flow .comb__table table {
    width: 750px;
  }

  .flow .comb__preface {
    font-size: 1rem;
    text-align: left;
  }

  .flow .comb02__img {
    grid-template-columns: 1fr;
    margin-top: 30px;
  }

  .flow .comb02__img .img {
    grid-column: 1/2;
  }

  .flow .comb02__img .img + .img {
    margin-top: 30px;
  }

  .flow .comb02__img_caution {
    grid-column: 1/2;
  }

  .flow .comb02__list {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 50px;
    gap: 10px;
  }

  .flow .comb02__list figcaption {
    font-size: 1.2rem;
  }

  .memberList .organization__wrapper {
    margin-top: 50px;
  }

  .memberList .organization__title {
    padding-left: 16px;
    font-size: 1.4rem;
  }

  .memberList .organization__title::after {
    width: 10px;
    height: 1px;
  }

  .memberList .organization__item {
    grid-template-columns: 80px 1fr;
    padding: 15px 10px;
  }

  .memberList .organization__item .position,
  .memberList .organization__item .name {
    border-bottom: none;
    font-weight: 700;
  }

  .memberList .organization__item .company {
    grid-row: 2/3;
    grid-column: 1/3;
  }

  .memberList .members__category {
    grid-template-columns: repeat(2, 1fr);
  }

  .memberList .members__table thead tr {
    display: grid;
    grid-template-columns: auto -webkit-max-content auto;
    grid-template-columns: auto max-content auto;
    width: 100%;
  }

  .memberList .members__table thead th {
    width: 100% !important;
    padding: 20px 0;
  }

  .memberList .members__table thead th:nth-of-type(1) {
    text-align: right;
  }

  .memberList .members__table thead th:nth-of-type(2) {
    position: relative;
    padding-right: 20px;
    padding-left: 20px;
  }

  .memberList .members__table thead th:nth-of-type(2)::before,
  .memberList .members__table thead th:nth-of-type(2)::after {
    position: absolute;
    top: 0;
    bottom: 0;
    height: 18px;
    margin: auto;
    content: "・";
  }

  .memberList .members__table thead th:nth-of-type(2)::before {
    left: 3px;
  }

  .memberList .members__table thead th:nth-of-type(2)::after {
    right: 3px;
  }

  .memberList .members__table thead th:nth-of-type(3) {
    text-align: left;
  }

  .memberList .members__table tbody th,
  .memberList .members__table tbody td {
    display: block;
    width: 100% !important;
    border-bottom: none;
  }

  .memberList .members__table tbody th {
    padding: 18px 20px 0;
    font-weight: 700;
  }

  .memberList .members__table tbody th a::after {
    opacity: 1;
  }

  .memberList .members__table tbody td {
    padding: 10px 20px 0;
  }

  .memberList .members__table tbody td:last-of-type {
    padding-right: 20px;
    padding-bottom: 18px;
    padding-left: 20px;
    border-bottom: solid 1px var(--line-color);
    text-align: left;
  }

  .memberList .enrollment {
    padding-bottom: 100px;
  }

  .memberList .enrollment .inner {
    grid-template-columns: 1fr;
  }

  .memberList .enrollment .c-btn01 {
    grid-column: 1/2;
    margin: 30px auto 0;
  }

  .member .contents__wrapper {
    margin-top: 30px;
  }

  .member .contents__wrapper .txt {
    font-size: 1.2rem;
  }

  .member .contents__list {
    margin-top: 20px;
  }

  .member .contents__list-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }

  .movie .case__list {
    grid-template-columns: 1fr;
    margin-top: 30px;
  }

  .news .list__category {
    margin-bottom: 20px;
    gap: 10px;
  }

  .news .list__category a {
    font-size: 1.2rem;
  }

  .news .list__item a {
    padding: 20px 0;
  }

  .news .list__item.pdf a::after {
    top: 49px;
    right: 0;
    bottom: inherit;
    margin: auto;
  }

  .news .list__item .category {
    font-size: 1rem;
  }

  .news .list__item .title {
    -webkit-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    white-space: wrap;
  }

  .news .article__head {
    margin-bottom: 30px;
  }

  .news .article__head_category {
    font-size: 1rem;
  }

  .news .article__head_title {
    font-size: 2.4rem;
  }

  .news .article article {
    margin-bottom: 70px;
  }

  .news .article__pager + .c-btn01 {
    margin: 35px auto 0;
  }

  .notFound .contents {
    padding: 40px 0 100px;
  }

  .notFound .contents__title {
    margin-bottom: 30px;
    font-size: 2.2rem;
    text-align: left;
  }

  .notFound .contents .txt {
    text-align: left;
  }

  .notFound .contents .c-btn01 {
    margin: 30px auto 0;
  }

  .privacy .contents__wrapper .c-title02 {
    margin-top: 30px;
  }

  .privacy .contents__wrapper .c-title02:not(:first-of-type) {
    margin-top: 70px;
  }

  .privacy .contents ol li {
    padding-left: 25px;
  }

  .request .form__info_list,
  .request .form__info .txt {
    font-size: 1.2rem;
  }

  .request .form__info li {
    padding-left: 15px;
  }

  .request .form__info li::before {
    font-size: 1.2rem;
  }

  .request .form__info_wrap .c-btn03 {
    place-content: inherit;
    width: 100%;
  }

  .request .form_wrap {
    padding: 0;
    background-color: transparent;
  }

  .request .form table {
    border-bottom: solid 1px var(--line-color);
  }

  .request .form th,
  .request .form td {
    display: block;
    width: 100%;
    padding: 13px 20px;
  }

  .request .form th {
    background-color: var(--bg-color);
    text-align: center;
  }

  .request .form td {
    padding: 20px;
    border: none;
  }

  .request .form input[type=text],
  .request .form input[type=email],
  .request .form textarea {
    padding: 10px;
  }

  .request .form .radio_wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .request .form .addressbox_num {
    grid-template-columns: 1fr -webkit-max-content 1fr;
    grid-template-columns: 1fr max-content 1fr;
    width: 100%;
  }

  .request .form .addressbox_wrap {
    grid-template-columns: -webkit-max-content 1fr;
    grid-template-columns: max-content 1fr;
    width: 100%;
  }

  .request .form .select_wrap {
    width: 100%;
  }

  .request .form .check_wrap .wrap {
    grid-template-columns: 80px 1fr;
    margin-top: 0;
    padding: 20px 0;
    gap: 15px;
    border-top: solid 1px var(--line-color);
  }

  .request .form .check_wrap label {
    grid-column: 1/3;
  }

  .request .form .check_wrap label span::before {
    margin-top: 3px;
  }

  .request .form .check_wrap label span::after {
    top: 7px;
  }

  .request .form .check_wrap .num {
    gap: 5px;
  }

  .request .form .check_wrap input[type=number] {
    width: 59px;
    padding: 7px 5px 7px 20px;
  }

  .request .form .is-error {
    font-size: 1.2rem;
  }

  .request .form .btn-area {
    -webkit-box-align: center;
    -ms-flex-align: center;
    grid-template-columns: 1fr;
    align-items: center;
  }

  .request .form .btn-area a,
  .request .form .btn-area input {
    width: 100%;
    max-width: 290px;
    margin: 0 auto;
  }

  .request.thanks .form .c-btn01 {
    margin: 30px auto 0;
  }

  .request.thanks .form__tel {
    grid-template-columns: 1fr;
    place-items: center;
    width: 100%;
    margin: 30px auto 0;
    padding: 20px;
    gap: 10px;
  }

  .request.thanks .form__tel .num {
    grid-template-columns: 24px 1fr;
    font-size: 2.4rem;
  }

  .request.thanks .form__tel .num::before {
    width: 24px;
    height: 24px;
  }

  .request.thanks .form__tel .txt {
    font-size: 1.2rem;
    text-align: center;
  }

  .sitemap .c-lowerHead + section {
    padding-top: 40px;
  }

  .sitemap__list {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .sitemap__list li a {
    font-size: 1.6rem;
  }

  .sitemap__list_sub a {
    font-size: 1.4rem !important;
  }

  .sitemap__other_list {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .top .mv {
    padding: 60px 0;
  }

  .top .news {
    padding: 0 0 80px;
  }

  .top .news__contents {
    grid-template-columns: 1fr;
    gap: 30px 0;
  }

  .top .news__button {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    -ms-flex-wrap: wrap;
    grid-row: 1;
    grid-column: 1;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
  }

  .top .news__button button {
    padding: 7px 26px;
    font-size: 1.2rem;
  }

  .top .news__list {
    grid-row: 2;
    grid-column: 1;
  }

  .top .news__item a {
    padding: 20px 0;
  }

  .top .news__item.pdf a::after {
    top: 49px;
    right: 0;
    bottom: inherit;
    margin: auto;
  }

  .top .news__category {
    font-size: 1rem;
  }

  .top .news__title {
    -webkit-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    white-space: wrap;
  }

  .top .news .c-btn02 {
    grid-row: 3;
    grid-column: 1;
    margin-right: 0;
    margin-left: auto;
  }

  .top .about {
    border-radius: 0 50px 50px 0;
  }

  .top .about::before {
    width: 50px;
    height: 50px;
  }

  .top .about::after {
    width: 100px;
    height: 100px;
  }

  .top .about__list {
    grid-template-columns: 1fr;
    margin-top: 30px;
  }

  .top .about__title {
    font-size: 1.8rem;
  }

  .top .method {
    padding-bottom: 145px;
    border-radius: 50px 0 0 50px;
  }

  .top .method::before {
    width: 50px;
    height: 50px;
  }

  .top .method::after {
    width: 100px;
    height: 100px;
  }

  .top .method__item {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    height: 256px;
    padding: 20px;
    border-radius: 20px;
  }

  .top .method__item + .method__item {
    margin-top: 40px;
  }

  .top .method__item .txt {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 0;
  }

  .top .method__item .txt::before {
    top: inherit;
    right: 0;
    bottom: 0;
  }

  .top .method__item .txt::after {
    top: inherit;
    right: 16px;
    bottom: 17px;
  }

  .top .method__title {
    font-size: 1.8rem;
  }

  .top .c-bgTxt {
    bottom: 40px;
  }

  .top .contact::before {
    width: 50px;
    height: 50px;
  }

  .top .contact::after {
    width: 100px;
    height: 100px;
  }

  .top .contact__list {
    grid-template-columns: 1fr;
    margin-top: 30px;
  }

  .top .contact__thumb {
    height: 190px;
  }

  .top .bottom {
    height: 275px;
  }

  .works .case__table-unit {
    margin: 20px 0;
  }

  .works .case__table {
    overflow-x: scroll;
  }

  .works .case__table::-webkit-scrollbar {
    height: 5px;
  }

  .works .case__table::-webkit-scrollbar-thumb {
    background-color: rgba(22, 49, 98, 0.3);
  }

  .works .case__table::-webkit-scrollbar-track {
    background-color: rgba(22, 49, 98, 0.2);
  }

  .works .case__table table {
    width: 800px;
  }

  .works .case__table thead {
    padding-right: 6px;
  }

  .works .case__table thead th {
    font-size: 1.3rem;
    padding: 20px 10px;
  }

  .works .case__table thead th:first-of-type {
    width: 136px;
  }

  .works .case__table tbody::-webkit-scrollbar {
    width: 5px;
  }

  .works .case__table tbody {
    max-height: 450px;
  }

  .works .case__table tbody th,
  .works .case__table tbody td {
    font-size: 1.3rem;
    line-height: 1.4;
  }

  .works .case__table tbody .year {
    width: 136px;
  }

  .works .case .c-title02 {
    margin-top: 50px;
  }

  .works .case__graph {
    overflow-x: scroll;
  }

  .works .case__graph::-webkit-scrollbar {
    height: 5px;
  }

  .works .case__graph::-webkit-scrollbar-thumb {
    background-color: rgba(22, 49, 98, 0.3);
  }

  .works .case__graph::-webkit-scrollbar-track {
    background-color: rgba(22, 49, 98, 0.2);
  }

  .works .case__graph img {
    width: 800px;
    max-width: revert;
  }

  .works .case02__tab {
    grid-template-columns: repeat(2, 1fr);
    margin: 30px 0;
  }

  .works .case02__table {
    overflow-x: scroll;
  }

  .works .case02__table::-webkit-scrollbar {
    height: 5px;
  }

  .works .case02__table::-webkit-scrollbar-thumb {
    background-color: rgba(22, 49, 98, 0.3);
  }

  .works .case02__table::-webkit-scrollbar-track {
    background-color: rgba(22, 49, 98, 0.2);
  }

  .works .case02__table table {
    width: 800px;
  }

  .works .case02__table thead {
    padding-right: 6px;
  }

  .works .case02__table thead tr.colspan-sub {
    top: 32px;
  }

  .works .case02__table thead th {
    font-size: 1.3rem;
    padding: 20px 10px;
  }

  .works .case02__table thead th.colspan {
    font-size: 1.1rem;
  }

  .works .case02__table thead tr.colspan-sub th {
    font-size: 1.1rem;
    padding: 5px 10px;
  }

  .works .case02__table tbody::-webkit-scrollbar {
    width: 5px;
  }

  .works .case02__table tbody {
    max-height: 450px;
  }

  .works .case02__table tbody th,
  .works .case02__table tbody td {
    font-size: 1.3rem;
    line-height: 1.4;
  }
}

@media (hover: hover) and (pointer: fine) {
  a:has(.c-hover):hover .c-hover__inn,
  button:has(.c-hover):hover .c-hover__inn {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  .c-btn01:hover .c-btn01__point {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }

  .c-btn02:hover {
    border-bottom: solid 1px var(--point-color);
  }

  .c-btn02:hover::after {
    background-color: var(--point-color);
  }

  .c-btn03:hover {
    background-color: var(--point-color);
    color: #fff;
  }

  .c-btn03:hover .icon {
    fill: #fff;
  }

  .c-pager .page-numbers li a:not(.prev, .next):hover {
    background-color: var(--line-color);
  }

  .header__nav_top_member:hover {
    background-color: var(--point-color02);
    color: #fff;
  }

  .header__nav_top_member:hover::before {
    background-color: #fff;
  }

  .header__nav_top_list a:hover {
    color: var(--point-color02);
  }

  .header__nav .megamenu__label:hover::after {
    border-right: solid 1px var(--point-color02);
    border-bottom: solid 1px var(--point-color02);
  }

  .header__nav .megamenu__list a:hover::after {
    border-right: solid 1px var(--point-color);
    border-bottom: solid 1px var(--point-color);
  }

  .footer__item a:hover {
    color: var(--point-color02);
  }

  .footer__item a:hover::after {
    background-color: var(--point-color02);
  }

  .footer__item_sub a:hover::after {
    border-right: solid 1px var(--point-color02);
    border-bottom: solid 1px var(--point-color02);
    background-color: transparent;
  }

  .footer__link a:hover {
    color: var(--point-color02);
  }

  .contact .form .btn-area #reset:hover,
  .contact .form .btn-area .return-btn:hover {
    background-color: #ccc;
  }

  .contact .form .btn-area #submit:hover,
  .contact .form .btn-area .submit-btn:hover {
    background-color: var(--point-color02);
  }

  .memberList .members__table tbody th a:hover {
    text-decoration: underline;
  }

  .memberList .members__table tbody th a:hover::after {
    opacity: 1;
  }

  .news .list__category a:hover {
    background-color: rgba(var(--main-color-rgb), 0.1);
  }

  .news .list__item a:hover {
    background-color: rgba(var(--main-color-rgb), 0.1);
  }

  .news .list__item a:hover .title {
    color: var(--main-color);
  }

  .news .article__pager_wrap a:hover {
    color: var(--main-color);
  }

  .news .article__pager_wrap.prev a:hover::before {
    background-color: var(--main-color);
  }

  .news .article__pager_wrap.prev a:hover::after {
    border-color: #fff;
  }

  .news .article__pager_wrap.next a:hover::before {
    border-color: #fff;
  }

  .news .article__pager_wrap.next a:hover::after {
    background-color: var(--main-color);
  }

  .request .form .btn-area #reset:hover,
  .request .form .btn-area .return-btn:hover {
    background-color: #ccc;
  }

  .request .form .btn-area #submit:hover,
  .request .form .btn-area .submit-btn:hover {
    background-color: var(--point-color02);
  }

  .sitemap__list li a:hover {
    color: var(--point-color02);
  }

  .sitemap__list li a:hover::after {
    background-color: var(--point-color02);
  }

  .sitemap__list_sub a:hover::after {
    border-color: var(--point-color02);
  }

  .sitemap__other a:hover {
    color: var(--point-color02);
  }

  .sitemap__other a:hover::before {
    border-color: var(--point-color02);
  }

  .top .news__button button:hover {
    background-color: rgba(var(--main-color-rgb), 0.1);
  }

  .top .news__item a:hover {
    background-color: rgba(var(--main-color-rgb), 0.1);
  }

  .top .news__item a:hover .news__title {
    color: var(--main-color);
  }

  .top .about__item a:hover .about__thumb::before {
    background-color: var(--point-color);
  }

  .top .about__item a:hover .about__thumb img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  .top .about__item a:hover .about__title {
    color: var(--point-color);
  }

  .top .method__item:hover .txt::before {
    background-color: rgba(255, 255, 255, 0.1);
  }

  .top .method__item:hover .method__img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }

  .top .contact__item a:hover .contact__thumb::before {
    background-color: var(--point-color);
  }

  .top .contact__item a:hover .contact__title {
    color: var(--point-color);
  }
}
/*# sourceMappingURL=style.css.map */
