@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&family=Shippori+Mincho+B1:wght@400;500;600;700;800&display=swap");
:root {
  --base-bg-color:#eae4d1;
  --point-bg-color:#004ea2;
  --header-link-color:colors(base);
  --btn-color:#fff;
  --btnline-color:#000;
  --btntxt-color:#000;
  --btn-width:18rem;
  --en-color:colors(c_yellow);
  --ja-color:#be1e1e;
  --item-color:red;
  --list-color:#fff;
  --base-gradation:linear-gradient(90deg, rgba(5, 100, 205, 1) 20%, rgba(60, 160, 255, 1) 100%) ;
  --reverse-gradation:linear-gradient(270deg, rgba(5, 100, 205, 1) 20%, rgba(60, 160, 255, 1) 100%) fixed;
  --base-gradation-opacity:linear-gradient(90deg, rgba(5, 100, 205, .5) 20%, rgba(60, 160, 255, .5) 100%) ;
  --base-content:1440;
  --btn-size:30rem;
}

@keyframes slideIcon {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(0.5em);
  }
}
@keyframes reverseGradation {
  0% {
    background: var(--base-gradation);
  }
  100% {
    background: var(--reverse-gradation);
  }
}
*,
*:before,
*:after {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
}

html {
  color: #000;
  background: #FFF;
}

body {
  -webkit-text-size-adjust: 100%;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
input, textarea, button, select,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}

td, th {
  vertical-align: top;
}

img {
  vertical-align: bottom;
}

ul, ol, li {
  list-style: none;
}

table {
  border-collapse: separate;
  border-spacing: 0;
}

p, li, dd, dt, td, th {
  word-wrap: break-word;
}

select, input {
  word-wrap: normal;
}

address, caption, cite, code, dfn, em, strong, th, var, time, mark {
  font-style: normal;
  font-weight: normal;
}

caption, th {
  text-align: left;
}

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

abbr, acronym {
  border: 0;
  font-variant: normal;
}

mark {
  color: #000;
  background: #FFF;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

input, textarea, select, keygen {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

legend {
  color: #000;
}

pre, code,
kbd, samp, tt {
  font-family: monospace;
  line-height: 100%;
}

input:not([type=radio]):not([type=checkbox]), textarea, button {
  /* iosでボタンなどのデフォルト装飾を解除 */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input:focus,
select:focus,
textarea:focus {
  outline: 0;
}

/* Firefoxでボタン系の高さが1pxずれる対策 */
button::-moz-focus-inner,
input[type=button]::-moz-focus-inner,
input[type=reset]::-moz-focus-inner,
input[type=submit]::-moz-focus-inner {
  border: 0px;
}

/*----------------------
     html base
---------------------------------------- */
*,
*:before,
*:after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  height: 100%;
  font-size: 10px; /* 1rem = 10px */
  background: #fff;
}

body {
  min-height: 100%;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1;
  font-family: Noto Sans JP, ヒラギノ角ゴ ProN W3, Hiragino Kaku Gothic ProN, 游ゴシック, YuGothic, メイリオ, Meiryo, Arimo, sans-serif;
  font-weight: 400;
  background: #fff;
}

a {
  color: #000;
  text-decoration: none;
  transition: all 1s;
}
button, input, textarea {
  font-family: Noto Sans JP, ヒラギノ角ゴ ProN W3, Hiragino Kaku Gothic ProN, 游ゴシック, YuGothic, メイリオ, Meiryo, Arimo, sans-serif;
}

input[type=text], textarea, select, input[type=password] {
  padding: 0.5em 1em;
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 6px;
  width: 100%;
}

textarea {
  height: 10em;
}

button {
  cursor: pointer;
}

@media (max-width: 767px) {
  img {
    max-width: 100%;
  }
}
.c-btn-disabled {
  pointer-events: none;
}

.c-btn {
  display: block;
  border: 3px solid var(--btn-border-color);
  border-radius: 2.2rem;
  background: var(--btn-bg-color);
  color: var(--btn-text-color);
  width: var(--btn-width);
  font-weight: var(--btn-text-weight);
  font-size: var(--btn-text-size);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.6rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  padding: 0.4em 1em;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .c-btn {
    font-size: clamp(1.4rem, 8vw, 3.2rem);
  }
}
@media (max-width: 767px) {
  .c-btn {
    display: grid;
    font-size: clamp(1.4rem, 8vw, 4rem);
    white-space: nowrap;
  }
}
.c-btn:hover {
  background: var(--btn-border-color);
  color: var(--btn-hovertext-color);
  opacity: 1;
  text-decoration: none;
}
.c-btn .__attention {
  font-weight: 400;
  font-size: 1.8rem;
  white-space: wrap;
}
@media (max-width: 1023px) {
  .c-btn .__attention {
    font-size: 1.44rem;
  }
}

.c-btn:disabled {
  background-color: #999;
  border-color: #999;
  pointer-events: none;
}

.c-fixed {
  display: fixed;
  overflow: hidden;
}

.c-marker {
  background: linear-gradient(transparent 50%, #fff 50%);
}

.c-listicon {
  display: flex;
}
.c-listicon:before {
  content: attr(data-icon);
  margin-right: 0.2em;
}

.c-animation2__text {
  position: relative;
  display: inline;
  width: -moz-fit-content;
  width: fit-content;
}
.c-animation2__text > span {
  display: inline-block;
  will-change: transform, opacity;
  opacity: 0;
  transform: rotateY(80deg) translateY(60%);
  transition: opacity 1s cubic-bezier(0.19, 1, 0.22, 1), clip-path 1s cubic-bezier(0.19, 1, 0.22, 1), transform 1s cubic-bezier(0.19, 1, 0.22, 1);
}
.c-animation2__text.is_view > span.is_display {
  transform: rotateY(0) translateY(0);
  opacity: 1;
}
.c-animation2__slide {
  position: relative;
}
.c-animation2__slide > * {
  opacity: 0;
  will-change: clip-path, opacity;
  clip-path: inset(0% 100% 0% 0%);
  transition: opacity 1s cubic-bezier(0.19, 1, 0.22, 1), clip-path 1s ease-in-out;
}
.c-animation2__slide.is_view .is_display {
  clip-path: inset(0 0 0 0);
  opacity: 1;
}

.c-animation__text {
  position: relative;
  display: inline;
  width: -moz-fit-content;
  width: fit-content;
}
.c-animation__text > span {
  display: inline-block;
  opacity: 0;
  transform: rotateY(80deg) translateY(40px);
  clip-path: inset(0% 0% 0% 100%);
  transition: opacity 1s cubic-bezier(0.19, 1, 0.22, 1), clip-path 1s cubic-bezier(0.19, 1, 0.22, 1), rotate 1s cubic-bezier(0.19, 1, 0.22, 1), translate 1s cubic-bezier(0.19, 1, 0.22, 1);
}
.c-animation__text.is_view > span.is_display {
  transform: rotateY(0) translateY(0);
  clip-path: inset(0 0 0 0);
  opacity: 1;
}
.c-animation__slide {
  position: relative;
}
.c-animation__slide > * {
  opacity: 0;
  will-change: clip-path, opacity;
  clip-path: inset(0% 100% 0% 0%);
  transition: opacity 1s cubic-bezier(0.19, 1, 0.22, 1), clip-path 1s ease-in-out;
}
.c-animation__slide.is_view .is_display {
  clip-path: inset(0 0 0 0);
  opacity: 1;
}

.c-gradation__text {
  font-size: 4rem;
  --elem-size:var(--js-elem-size);
  width: -moz-fit-content;
  width: fit-content;
}

/* グラデーション文字の個々のspanにも適用 */
.c-gradation__text span {
  background: var(--base-gradation);
  background-size: calc(var(--elem-size) * 1px + 50px);
  background-position-x: calc(var(--js-w) * -1px);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* 共通アニメーション */
.c-animation__text > span {
  display: inline-block;
  opacity: 0;
  transform: rotateY(80deg) translateY(40px);
  transition: opacity 1s cubic-bezier(0.19, 1, 0.22, 1), transform 1s cubic-bezier(0.19, 1, 0.22, 1);
}

/* 表示時のスタイル */
.c-animation__text > span.is_display {
  opacity: 1;
  transform: rotateY(0deg) translateY(0);
}

.l-container {
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  background: var(--base-bg-color);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
}

.l-contents {
  text-align: center;
  line-height: 1.6;
  display: grid;
  gap: 3.2rem;
}
@media (min-width: 1024px) {
  .l-contents {
    margin-top: calc(7.2rem * 1);
    margin-bottom: calc(7.2rem * 0);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .l-contents {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 0);
  }
}
@media (max-width: 767px) {
  .l-contents {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 0);
  }
}
@media (max-width: 767px) {
  .l-contents {
    padding: 0 5vw;
  }
}

.l-goods {
  margin-top: 6.4rem;
}
@media (max-width: 767px) {
  .l-goods {
    margin-top: 1.6rem;
  }
}

.l-main {
  position: relative;
  width: 100%;
}
@media (max-width: 1023px) {
  .l-main {
    margin-top: 0;
  }
}

.l-header {
  position: sticky;
  z-index: 100;
  top: 0;
  left: 0;
  top: -3rem;
}
@media (max-width: 767px) {
  .l-header {
    top: 0rem;
  }
}

.l-footer {
  position: relative;
  width: 100%;
}

.p-top {
  --notice-list-gap:1em;
}
.p-top__image img {
  max-width: 100%;
}
.p-top__notice-list {
  color: var(--notice-list-color);
  font-size: var(--notice-list-fontsize);
  font-weight: var(--notice-list-fontweight);
  margin-block: var(--notice-list-margin);
  gap: var(--notice-list-gap);
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}
.p-top__notice-list .__item {
  position: relative;
  display: flex;
  gap: 0.2em;
  font-feature-settings: "palt";
  line-height: 1.4;
}
.p-top__notice-list .__item:before {
  content: attr(data-icon);
}
@media (max-width: 767px) {
  .p-top__notice-list .__item {
    text-align: left;
  }
}

.p-top-mv {
  display: flex;
  justify-content: center;
  padding-block: 2.4rem;
}
.p-top-mv img {
  aspect-ratio: 1920/820;
  max-width: 100%;
  max-height: calc(100vh - 18rem);
}

.p-top-introduction {
  --notice-list-color:#fff;
  --notice-list-fontsize:1.6rem;
  --notice-list-fontweight:400;
  --notice-list-margin:1.6rem;
  --btn-border-color:#fff;
  --btn-bg-color: #ffe200;
  --btn-text-color: #000;
  --btn-hovertext-color: #000;
  --btn-text-weight:700;
  --btn-text-size:4rem;
  --btn-width:fit-content;
  background: url(../images/bg_wave_upper.png) repeat-x top center, url(../images/bg_wave_lower.png) repeat-x bottom center, linear-gradient(180deg, transparent 0%, transparent 10rem, #004ea2 10rem, #004ea2 calc(100% - 10rem), transparent calc(100% - 10rem), transparent 10rem);
  color: #fff;
  overflow: hidden;
}
.p-top-introduction__inner {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1023px) {
  .p-top-introduction__inner {
    padding-inline: 5vw;
  }
}
@media (min-width: 1024px) {
  .p-top-introduction__inner {
    margin-top: calc(7.2rem * 1);
    margin-bottom: calc(7.2rem * 1);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-top-introduction__inner {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 1);
  }
}
@media (max-width: 767px) {
  .p-top-introduction__inner {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 1);
  }
}
.p-top-introduction__image {
  width: 100%;
  max-width: 105rem;
  margin-left: auto;
  margin-right: auto;
}
.p-top-introduction__text {
  text-align: center;
  line-height: 1.6;
  color: #ffe200;
  font-weight: 700;
  font-size: 2.4rem;
  font-feature-settings: "palt";
}
@media (max-width: 1023px) {
  .p-top-introduction__text {
    font-size: 1.92rem;
  }
}
@media (min-width: 1024px) {
  .p-top-introduction__text {
    margin-top: calc(7.2rem * 0.5);
    margin-bottom: calc(7.2rem * 0.5);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-top-introduction__text {
    margin-top: calc(4rem * 0.5);
    margin-bottom: calc(4rem * 0.5);
  }
}
@media (max-width: 767px) {
  .p-top-introduction__text {
    margin-top: calc(4rem * 0.5);
    margin-bottom: calc(4rem * 0.5);
  }
}
@media (max-width: 1023px) {
  .p-top-introduction__text {
    text-align: left;
  }
}
.p-top-introduction__link {
  --notice-list-fontsize:1.5rem;
  --notice-list-gap:.8rem;
  display: grid;
  gap: 1.6rem;
  justify-content: center;
}

.p-top-description {
  z-index: 1;
}
.p-top-description__inner {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1023px) {
  .p-top-description__inner {
    padding-inline: 5vw;
  }
}
@media (min-width: 1024px) {
  .p-top-description__inner {
    margin-top: calc(7.2rem * 1);
    margin-bottom: calc(7.2rem * 1);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-top-description__inner {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 1);
  }
}
@media (max-width: 767px) {
  .p-top-description__inner {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 1);
  }
}
@media (max-width: 1440px) {
  .p-top-description__inner {
    padding-inline: 1.6rem;
  }
}
@media (max-width: 767px) {
  .p-top-description__title {
    font-weight: 700;
    font-size: 2.4rem;
    text-align: center;
    line-height: 1.6;
  }
}
.p-top-description__about {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 1em;
}
@media (max-width: 767px) {
  .p-top-description__about {
    grid-template-columns: 1fr;
  }
}
.p-top-description__about .__image {
  text-align: center;
}
.p-top-description__about .__text {
  line-height: 1.8;
  font-weight: 700;
  font-size: 2rem;
}
.p-top-description__list {
  display: grid;
  gap: 2.4rem;
}
@media (min-width: 1024px) {
  .p-top-description__list {
    margin-top: calc(7.2rem * 0.5);
    margin-bottom: calc(7.2rem * 0.5);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-top-description__list {
    margin-top: calc(4rem * 0.5);
    margin-bottom: calc(4rem * 0.5);
  }
}
@media (max-width: 767px) {
  .p-top-description__list {
    margin-top: calc(4rem * 0.5);
    margin-bottom: calc(4rem * 0.5);
  }
}
.p-top-description__list .__group {
  display: grid;
  grid-template-columns: 12rem 1fr;
  align-items: start;
  gap: 1.6rem;
}
@media (max-width: 767px) {
  .p-top-description__list .__group {
    grid-template-columns: 1fr;
  }
}
.p-top-description__list .__group .__title {
  flex-shrink: 0;
  background: #fff;
  border-radius: 7px;
  text-align: center;
  padding: 0.2em 1em 0.3em;
  line-height: 1;
  color: #004ea2;
  font-weight: 700;
  font-size: 1.7rem;
  margin-top: 0.4em;
}
.p-top-description__list .__group .__title.a-middle {
  align-self: center;
}
.p-top-description__list .__group .__detail {
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 1.8;
}
.p-top-description__list .__group .__detail.a-years {
  display: flex;
  align-items: baseline;
  -moz-column-gap: 0.5em;
       column-gap: 0.5em;
}
.p-top-description__list .__group .__detail.a-years .__year {
  font-weight: 700;
  font-size: 3rem;
}
@media (max-width: 1023px) {
  .p-top-description__list .__group .__detail.a-years .__year {
    font-size: 2.4rem;
  }
}
.p-top-description__list .__group .__detail.a-years .__month {
  font-weight: 700;
  font-size: 5.6rem;
  line-height: 1;
}
@media (max-width: 1023px) {
  .p-top-description__list .__group .__detail.a-years .__month {
    font-size: 4.48rem;
  }
}
.p-top-description__list .__group .__detail.a-years .__month-suffix {
  font-weight: 700;
  font-size: 3.6rem;
}
@media (max-width: 1023px) {
  .p-top-description__list .__group .__detail.a-years .__month-suffix {
    font-size: 2.88rem;
  }
}
@media (max-width: 767px) {
  .p-top-description__list .__group .__detail.a-years {
    flex-wrap: wrap;
  }
}
.p-top-description__list .__group .__detail.a-with-image {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 1em;
}
@media (max-width: 1023px) {
  .p-top-description__list .__group .__detail.a-with-image {
    grid-template-columns: 1fr;
  }
  .p-top-description__list .__group .__detail.a-with-image .__image {
    text-align: center;
  }
}
@media (max-width: 1023px) {
  .p-top-description__list .__group .__detail.a-with-image__tabsp {
    display: grid;
    gap: 1em;
    grid-template-columns: 1fr;
  }
  .p-top-description__list .__group .__detail.a-with-image__tabsp .__image {
    text-align: center;
  }
}
.p-top-description__list .__group .__detail.a-bold {
  font-weight: 700;
}
@media (min-width: 1024px) {
  .p-top-description__example {
    margin-top: calc(7.2rem * 1);
    margin-bottom: calc(7.2rem * 1);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-top-description__example {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 1);
  }
}
@media (max-width: 767px) {
  .p-top-description__example {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 1);
  }
}

.p-top-survey {
  z-index: 1;
  --notice-list-color:#000;
  --notice-list-fontsize: 1.6rem;
  --notice-list-fontweight: 400;
  --notice-list-margin: 0;
  --notice-list-gap: 0em;
  --btn-border-color:#fff;
  --btn-bg-color: #004ea2;
  --btn-text-color: #fff;
  --btn-hovertext-color: #004ea2;
  --btn-text-weight: 700;
  --btn-text-size: 4rem;
  --btn-width: fit-content;
}
.p-top-survey__inner {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1023px) {
  .p-top-survey__inner {
    padding-inline: 5vw;
  }
}
@media (min-width: 1024px) {
  .p-top-survey__inner {
    margin-top: calc(7.2rem * 1);
    margin-bottom: calc(7.2rem * 1);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-top-survey__inner {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 1);
  }
}
@media (max-width: 767px) {
  .p-top-survey__inner {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 1);
  }
}
.p-top-survey__title {
  font-weight: 700;
  font-size: 3.6rem;
  text-align: center;
  line-height: 1.6;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  padding-inline: 0.5em 0.2em;
  position: relative;
}
@media (max-width: 1023px) {
  .p-top-survey__title {
    font-size: 2.88rem;
  }
}
@media (min-width: 1024px) {
  .p-top-survey__title {
    margin-top: calc(7.2rem * 0.75);
    margin-bottom: calc(7.2rem * 0);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-top-survey__title {
    margin-top: calc(4rem * 0.75);
    margin-bottom: calc(4rem * 0);
  }
}
@media (max-width: 767px) {
  .p-top-survey__title {
    margin-top: calc(4rem * 0.75);
    margin-bottom: calc(4rem * 0);
  }
}
.p-top-survey__title:after {
  content: "";
  display: block;
  background: url(../images/img_useful.svg) no-repeat center center/contain;
  max-width: 15rem;
  width: 50%;
  aspect-ratio: 156/115;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 100%;
}
@media (max-width: 474px) {
  .p-top-survey__title {
    margin-right: auto;
    margin-left: 0;
  }
  .p-top-survey__title:after {
    width: 50%;
  }
}
@media (max-width: 370px) {
  .p-top-survey__title {
    margin-bottom: 12rem;
    margin-right: auto;
    margin-left: auto;
  }
  .p-top-survey__title:after {
    transform: unset;
    left: unset;
    width: 50%;
    right: 0;
    top: 100%;
  }
}
.p-top-survey__link {
  --notice-list-fontsize: 1.5rem;
  --notice-list-gap: .8rem;
  display: grid;
  gap: 1.6rem;
  justify-content: center;
}
@media (min-width: 1024px) {
  .p-top-survey__link {
    margin-top: calc(7.2rem * 1);
    margin-bottom: calc(7.2rem * 1);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-top-survey__link {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 1);
  }
}
@media (max-width: 767px) {
  .p-top-survey__link {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 1);
  }
}
.p-top-survey__list {
  display: grid;
  gap: 2.4rem;
}
@media (min-width: 1024px) {
  .p-top-survey__list {
    margin-top: calc(7.2rem * 0.5);
    margin-bottom: calc(7.2rem * 0.5);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-top-survey__list {
    margin-top: calc(4rem * 0.5);
    margin-bottom: calc(4rem * 0.5);
  }
}
@media (max-width: 767px) {
  .p-top-survey__list {
    margin-top: calc(4rem * 0.5);
    margin-bottom: calc(4rem * 0.5);
  }
}
.p-top-survey__list .__group {
  display: grid;
  grid-template-columns: 20rem 1fr;
  align-items: start;
  gap: 1.6rem;
}
@media (max-width: 767px) {
  .p-top-survey__list .__group {
    grid-template-columns: 1fr;
  }
}
.p-top-survey__list .__group .__title {
  flex-shrink: 0;
  background: #fff;
  border-radius: 7px;
  text-align: center;
  padding: 0.2em 1em 0.3em;
  line-height: 1;
  color: #004ea2;
  font-weight: 700;
  font-size: 1.7rem;
  margin-top: 0.4em;
}
.p-top-survey__list .__group .__title.a-middle {
  align-self: center;
}
.p-top-survey__list .__group .__detail {
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 1.8;
}
.p-top-survey__list .__group .__detail.a-detail {
  max-width: 85rem;
}
.p-top-survey__list .__group .__detail.a-with-image {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 1em;
}
.p-top-survey__list .__group .__detail.a-bold {
  font-weight: 700;
}
@media (min-width: 1024px) {
  .p-top-survey__list .__group .__type {
    margin-top: calc(7.2rem * 0.5);
    margin-bottom: calc(7.2rem * 0.5);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-top-survey__list .__group .__type {
    margin-top: calc(4rem * 0.5);
    margin-bottom: calc(4rem * 0.5);
  }
}
@media (max-width: 767px) {
  .p-top-survey__list .__group .__type {
    margin-top: calc(4rem * 0.5);
    margin-bottom: calc(4rem * 0.5);
  }
}
.p-top-survey__list .__group .__type-title {
  width: -moz-fit-content;
  width: fit-content;
  padding-inline: 0.2em;
}
.p-top-survey__list .__group .__type-note {
  font-size: 1.6rem;
}
.p-top-survey__list .__group .__flow {
  display: flex;
  justify-content: space-between;
}
@media (min-width: 1024px) {
  .p-top-survey__list .__group .__flow {
    margin-top: calc(7.2rem * 0.25);
    margin-bottom: calc(7.2rem * 0.25);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-top-survey__list .__group .__flow {
    margin-top: calc(4rem * 0.25);
    margin-bottom: calc(4rem * 0.25);
  }
}
@media (max-width: 767px) {
  .p-top-survey__list .__group .__flow {
    margin-top: calc(4rem * 0.25);
    margin-bottom: calc(4rem * 0.25);
  }
}
@media (max-width: 1023px) {
  .p-top-survey__list .__group .__flow {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .p-top-survey__list .__group .__flow {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: center;
  }
}
.p-top-survey__list .__group .__flow-item {
  width: -moz-fit-content;
  width: fit-content;
}
.p-top-survey__list .__group .__flow-item img {
  max-width: 100%;
  max-height: 11.3rem;
}
@media (max-width: 600px) {
  .p-top-survey__list .__group .__flow-item {
    margin-left: auto;
    margin-right: auto;
  }
}
.p-top-survey__list .__group .__flow-item:not(:last-of-type) {
  position: relative;
}
.p-top-survey__list .__group .__flow-item:not(:last-of-type):after {
  content: "";
  display: block;
  background: url(../images/icon_arrow.svg) no-repeat center center/contain;
  width: 2.7rem;
  aspect-ratio: 27/19;
  position: absolute;
  top: 40%;
  left: 93%;
}
@media (max-width: 600px) {
  .p-top-survey__list .__group .__flow-item:not(:last-of-type):after {
    top: 85%;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
  }
}

.p-page-heading {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  height: 20rem;
  background: #fff no-repeat center center;
  background-image: var(--heading-image);
}
@media (max-width: 1023px) {
  .p-page-heading {
    padding-inline: 5vw;
  }
}
.p-page-heading__title {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  height: inherit;
  display: grid;
  gap: 1.6rem;
  align-content: center;
  color: var(--heading-text-color);
}
@media (max-width: 1023px) {
  .p-page-heading__title {
    padding-inline: 5vw;
  }
}
@media (max-width: 1440px) {
  .p-page-heading__title {
    padding-inline: 1.6rem;
  }
}
.p-page-heading__title .__ja {
  font-weight: 800;
  font-size: 3.2rem;
  font-family: "Shippori Mincho B1", "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  font-feature-settings: "palt";
  letter-spacing: -0.05em;
  text-shadow: var(--heading-text-shadow);
}
.p-page-heading__title .__en {
  font-weight: 600;
  font-size: 1.5rem;
  font-family: "Montserrat", "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, "Arimo", sans-serif;
}

.p-page-breadcrumbs {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  padding-block: 1.6rem;
}
@media (max-width: 1023px) {
  .p-page-breadcrumbs {
    padding-inline: 5vw;
  }
}
@media (max-width: 1440px) {
  .p-page-breadcrumbs {
    padding-inline: 1.6rem;
  }
}
.p-page-breadcrumbs__list {
  display: flex;
  gap: 1em;
}
.p-page-breadcrumbs__list-item {
  font-size: 1.3rem;
}
.p-page-breadcrumbs__list-item a {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
.p-page-breadcrumbs__list-item a:hover {
  text-decoration: none;
}
.p-page-breadcrumbs__list-item:has(a):after {
  display: inline-block;
  transform: rotate(45deg);
  width: 0.5em;
  height: 0.5em;
  margin-left: 10px;
  margin-bottom: 2px;
  border-top: 1px solid #333333;
  border-right: 1px solid #333333;
  content: "";
}

@media (min-width: 1024px) {
  .p-page-contents {
    margin-top: calc(7.2rem * 1);
    margin-bottom: calc(7.2rem * 1);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-page-contents {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 1);
  }
}
@media (max-width: 767px) {
  .p-page-contents {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 1);
  }
}
.p-page-contents__inner {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1023px) {
  .p-page-contents__inner {
    padding-inline: 5vw;
  }
}
@media (max-width: 1440px) {
  .p-page-contents__inner {
    padding-inline: 1.6rem;
  }
}
.p-page-contents .a-bg2 {
  background: #f5f7f5;
}

.p-page-title__border {
  font-weight: 800;
  font-size: 4.2rem;
  font-family: "Shippori Mincho B1", "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  border-bottom: 1px solid #000;
  text-align: center;
  padding-bottom: 1em;
}
@media (max-width: 1023px) {
  .p-page-title__border {
    font-size: 3.36rem;
  }
}

.p-page-title__min {
  font-weight: 800;
  font-size: 4.2rem;
  font-family: "Shippori Mincho B1", "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  text-align: center;
  padding-bottom: 1em;
  line-height: 1.4;
}
@media (max-width: 1023px) {
  .p-page-title__min {
    font-size: 3.36rem;
  }
}

.p-page-title__green {
  font-weight: 800;
  font-size: 4.2rem;
  font-family: "Shippori Mincho B1", "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  text-align: center;
  padding-bottom: 1em;
  position: relative;
}
@media (max-width: 1023px) {
  .p-page-title__green {
    font-size: 3.36rem;
  }
}
.p-page-title__green:after {
  content: "";
  display: block;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 4rem;
  height: 0.5rem;
  background: #37b44b;
}

.p-page-title__bg-green {
  background: #e1f5e6;
  color: #37b44b;
  font-weight: 700;
  font-size: 1.8rem;
  padding: 1em 1em;
}

.p-page-title__bg-green2 {
  background: #37b44b;
  color: #fff;
  font-weight: 700;
  font-size: 1.8rem;
  padding: 1em 1em;
}

.p-page-title__text-green {
  color: #37b44b;
  font-weight: 700;
  font-size: 2.8rem;
}

.p-council__inner {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  gap: 4rem;
}
@media (max-width: 1023px) {
  .p-council__inner {
    padding-inline: 5vw;
  }
}
@media (max-width: 1440px) {
  .p-council__inner {
    padding-inline: 1.6rem;
  }
}
@media (min-width: 1024px) {
  .p-council__inner {
    margin-top: calc(7.2rem * 1);
    margin-bottom: calc(7.2rem * 1);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-council__inner {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 1);
  }
}
@media (max-width: 767px) {
  .p-council__inner {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 1);
  }
}
.p-council__title {
  text-align: center;
  font-weight: 700;
  font-size: 4.8rem;
}
@media (max-width: 1023px) {
  .p-council__title {
    font-size: 3.84rem;
  }
}
.p-council__text {
  line-height: 1.8;
  font-size: 2rem;
}
.p-council__meeting {
  width: 100%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-council__meeting {
    padding-inline: 5vw;
  }
}
@media (min-width: 1024px) {
  .p-council__meeting {
    margin-top: calc(7.2rem * 0.5);
    margin-bottom: calc(7.2rem * 0.5);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-council__meeting {
    margin-top: calc(4rem * 0.5);
    margin-bottom: calc(4rem * 0.5);
  }
}
@media (max-width: 767px) {
  .p-council__meeting {
    margin-top: calc(4rem * 0.5);
    margin-bottom: calc(4rem * 0.5);
  }
}
.p-council__meeting .__title {
  font-size: 1.8rem;
}
.p-council__meeting .__cont {
  display: flex;
  -moz-column-gap: 1em;
       column-gap: 1em;
  font-feature-settings: "palt";
}
@media (max-width: 767px) {
  .p-council__meeting .__cont {
    flex-wrap: wrap;
  }
}
.p-council__meeting .__cont-title {
  font-size: 1.8rem;
}
@media (max-width: 767px) {
  .p-council__meeting .__cont-title {
    margin-left: 0;
  }
}
.p-council__meeting .__cont-detail {
  font-size: 1.8rem;
}
.p-council__meeting .__link {
  text-decoration: underline;
  text-underline-offset: 0.2em;
  color: #004ea2;
}

.p-faq__inner {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  gap: 4rem;
}
@media (max-width: 1023px) {
  .p-faq__inner {
    padding-inline: 5vw;
  }
}
@media (max-width: 1440px) {
  .p-faq__inner {
    padding-inline: 1.6rem;
  }
}
@media (min-width: 1024px) {
  .p-faq__inner {
    margin-top: calc(7.2rem * 1);
    margin-bottom: calc(7.2rem * 1.5);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-faq__inner {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 1.5);
  }
}
@media (max-width: 767px) {
  .p-faq__inner {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 1.5);
  }
}
.p-faq__title {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1em;
}
.p-faq__title .__text {
  flex-shrink: 0;
  white-space: nowrap;
  font-size: clamp(2rem, 6vw, 4.8rem);
  font-weight: 700;
}
.p-faq__title:before, .p-faq__title:after {
  content: "";
  background: url(../images/img_accesarry.png) no-repeat center center/contain;
  display: block;
  width: 100%;
  max-width: 17.6rem;
  aspect-ratio: 176/50;
}
.p-faq__text {
  line-height: 1.8;
  font-size: 2rem;
}
@media (max-width: 1023px) {
  .p-faq__text {
    font-size: 1.6rem;
  }
}
.p-faq__lists {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1024px) {
  .p-faq__lists {
    margin-top: calc(7.2rem * 1);
    margin-bottom: calc(7.2rem * 0);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-faq__lists {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 0);
  }
}
@media (max-width: 767px) {
  .p-faq__lists {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 0);
  }
}
.p-faq__lists-title {
  font-weight: 700;
  font-size: 2.4rem;
  color: #036eb8;
}
@media (max-width: 1023px) {
  .p-faq__lists-title {
    font-size: 1.92rem;
  }
}
.p-faq__list {
  display: grid;
  gap: 2.4rem;
}
@media (min-width: 1024px) {
  .p-faq__list {
    margin-top: calc(7.2rem * 0.25);
    margin-bottom: calc(7.2rem * 0);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-faq__list {
    margin-top: calc(4rem * 0.25);
    margin-bottom: calc(4rem * 0);
  }
}
@media (max-width: 767px) {
  .p-faq__list {
    margin-top: calc(4rem * 0.25);
    margin-bottom: calc(4rem * 0);
  }
}
.p-faq__list .__group {
  display: grid;
  gap: 0.8rem;
}
.p-faq__list .__ans_wrap {
  display: none;
}
.p-faq__list .__ques,
.p-faq__list .__ans {
  background: #fff;
  border: 1px solid #036eb8;
  border-radius: 1rem;
  padding: 0.8rem 1.6rem;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 1.6;
  display: grid;
  grid-template-columns: 4rem auto;
  gap: 1.6rem;
}
@media (max-width: 1023px) {
  .p-faq__list .__ques,
  .p-faq__list .__ans {
    font-size: 1.44rem;
  }
}
@media (max-width: 767px) {
  .p-faq__list .__ques,
  .p-faq__list .__ans {
    padding: 0.8rem 0.8rem;
    gap: 0.8rem;
  }
}
.p-faq__list .__ques:before,
.p-faq__list .__ans:before {
  content: "";
  display: block;
  width: 3.2rem;
  aspect-ratio: 1/1;
  background: url(../images/icon_q.svg) no-repeat center center/contain;
}
.p-faq__list .__ans {
  font-weight: 500;
  font-size: 1.6rem;
}
@media (max-width: 1023px) {
  .p-faq__list .__ans {
    font-size: 1.28rem;
  }
}
.p-faq__list .__ans:before {
  background: url(../images/icon_a.svg) no-repeat center center/contain;
  align-self: flex-start;
}
.p-faq__list .__ques {
  grid-template-columns: 4rem auto 2rem;
  align-items: center;
}
.p-faq__list .__ques .__oc_block {
  width: 20px;
  height: 20px;
  position: relative;
}
.p-faq__list .__ques .__oc_block:before, .p-faq__list .__ques .__oc_block:after {
  position: absolute;
  content: "";
  margin: auto;
  vertical-align: middle;
}
.p-faq__list .__ques .__oc_block:before {
  border-top: 2px solid #036eb8;
  width: 20px;
  height: 0;
  top: 0;
  bottom: 0;
  right: 0;
}
.p-faq__list .__ques .__oc_block:after {
  border-left: 2px solid #036eb8;
  width: 0;
  height: 20px;
  top: 0;
  bottom: 0;
  right: 9px;
  transition: 0.3s;
}
.p-faq__list .__ques.is_open .__oc_block:after {
  height: 0;
}

.p-result__inner {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  gap: 4rem;
}
@media (max-width: 1023px) {
  .p-result__inner {
    padding-inline: 5vw;
  }
}
@media (max-width: 1440px) {
  .p-result__inner {
    padding-inline: 1.6rem;
  }
}
@media (min-width: 1024px) {
  .p-result__inner {
    margin-top: calc(7.2rem * 1);
    margin-bottom: calc(7.2rem * 1.5);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-result__inner {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 1.5);
  }
}
@media (max-width: 767px) {
  .p-result__inner {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 1.5);
  }
}
.p-result__title {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1em;
}
.p-result__title .__text {
  flex-shrink: 0;
  white-space: nowrap;
  font-size: clamp(2rem, 6vw, 4.8rem);
  font-weight: 700;
}
.p-result__title:before, .p-result__title:after {
  content: "";
  background: url(../images/img_accesarry.png) no-repeat center center/contain;
  display: block;
  width: 100%;
  max-width: 17.6rem;
  aspect-ratio: 176/50;
}
.p-result__text {
  line-height: 1.8;
  font-size: 2rem;
}
@media (max-width: 1023px) {
  .p-result__text {
    font-size: 1.6rem;
  }
}
.p-result__cont {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  background: #fff;
  height: 70vh;
}
@media (max-width: 1023px) {
  .p-result__cont {
    padding-inline: 5vw;
  }
}

.p-header {
  background: var(--point-bg-color);
  height: 11rem;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .p-header {
    height: 8rem;
  }
}
.p-header__inner {
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  height: 8rem;
}
@media (max-width: 1023px) {
  .p-header__inner {
    padding-inline: 5vw;
  }
}
@media (max-width: 1440px) {
  .p-header__inner {
    padding-inline: 1.6rem;
  }
}
.p-header__logo {
  display: block;
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  z-index: 110;
  pointer-events: none;
  padding-inline: 4rem;
  border-right: 1px solid #fff;
  width: -moz-fit-content;
  width: fit-content;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .p-header__logo {
    margin-inline: unset;
    flex-shrink: 0;
  }
  .p-header__logo img {
    transition: 0.3s;
  }
}
.p-header__logo-link {
  display: block;
  pointer-events: all;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  line-height: 1.2;
  white-space: nowrap;
}
.p-header__logo-link img {
  width: clamp(20rem, 50vw, 30.6rem);
}
.p-header__logo-link .__upper {
  font-weight: 700;
  font-size: 2.6rem;
}
@media (max-width: 767px) {
  .p-header__logo-link .__upper {
    font-size: clamp(1.4rem, 4vw, 2.6rem);
  }
}
.p-header__logo-link .__lower {
  font-weight: 700;
  font-size: 3.5rem;
}
@media (max-width: 767px) {
  .p-header__logo-link .__lower {
    font-size: clamp(1.6rem, 4.5454545455vw, 3.2rem);
  }
}
@media (max-width: 767px) {
  .p-header__sp-hide {
    display: none !important;
  }
}
.p-header__display-toggle {
  opacity: 0;
  visibility: hidden;
  pointer-events: none !important;
}

.p-header-nav {
  width: 100%;
  z-index: 111;
  pointer-events: none;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1.6rem;
}
.p-header-nav__list {
  width: 100%;
  display: flex;
  gap: clamp(0.8rem, 4vw, 4rem);
  align-items: center;
  justify-content: center;
}
.p-header-nav__hook {
  display: block;
  padding: 0.5em 0;
  font-weight: 400;
  font-size: 2.4rem;
  font-size: clamp(1.6rem, 1.7647058824vw, 2.4rem);
  color: #fff;
  letter-spacing: 0.2em;
  pointer-events: all;
}
.p-header-nav__hook:hover {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.p-header-contact {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  background: #37b44b;
  border: 2px solid #37b44b;
  border-radius: 2.5em;
  color: #fff;
  width: 18rem;
  font-weight: 700;
  text-align: center;
  padding: 1em;
  transition: background 0.3s;
}
.p-header-contact__wrap {
  position: relative;
  pointer-events: all;
}
@media (max-width: 1023px) {
  .p-header-contact__wrap {
    padding-inline: 0;
  }
}
@media (max-width: 1120px) {
  .p-header-contact {
    margin-inline: auto 0;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.p-header-contact:before {
  content: "";
  -webkit-mask-image: url(../images/common/icon_letter.svg);
          mask-image: url(../images/common/icon_letter.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: #fff;
  width: 2.2rem;
  aspect-ratio: 1/1;
  display: block;
  transition: background-color 0.3s;
}
.p-header-contact:hover {
  background: #fff;
  color: #37b44b;
}
.p-header-contact:hover:before {
  background-color: #37b44b;
}
@media (max-width: 1120px) {
  .p-header-contact__text {
    display: none;
  }
}

.p-header-megamenu {
  width: 5.8rem;
  height: 5.8rem;
  text-align: center;
  padding: 1em;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: all;
  position: absolute;
  z-index: 110;
  display: none;
}
@media (max-width: 767px) {
  .p-header-megamenu {
    display: flex;
    width: 6rem;
  }
}

.p-header-meganav {
  display: block;
  position: fixed;
  right: 0;
  top: -6rem;
  background: #004ea2;
  padding: 12rem 4.8rem 4.8rem;
  pointer-events: all;
  transition: 0.3s;
  width: 100%;
  max-width: 112rem;
  --list-width:32rem;
  --flex-pos:column;
}
@media (max-width: 767px) {
  .p-header-meganav {
    padding: 12rem 0 4.8rem;
    height: calc(100vh + 6rem);
  }
}
.p-header-meganav__inner {
  z-index: 100;
  display: flex;
  gap: 1.6rem;
  width: 80%;
  height: 80%;
  margin-inline: auto;
  justify-content: center;
  align-items: center;
  position: relative;
  padding-inline: 3vw;
}
.p-header-meganav__link {
  font-weight: 700;
  font-size: 1.4rem;
  flex-shrink: 0;
  display: block;
  border: 1px solid #fff;
  border-radius: 2.5em;
  padding: 1em 2em;
  color: #fff;
  text-align: center;
}
@media (max-width: 767px) {
  .p-header-meganav__link {
    font-weight: 700;
    font-size: 1.6rem;
    padding: 1em 1em;
  }
}
.p-header-meganav__link:hover {
  background: #fff;
  color: #000;
}
.p-header-meganav__list-title {
  font-weight: 700;
  font-size: 1.6rem;
  color: #fff;
}
@media (max-width: 767px) {
  .p-header-meganav {
    --list-width:16rem;
    --flex-pos:row;
  }
}
.p-header-meganav__group-other {
  width: 100%;
  grid-column: 1/-1;
}
.p-header-meganav__innerlist-other {
  padding-block: 2.4rem 0;
  display: grid;
  gap: 0.8rem 1.6rem;
  grid-template-columns: repeat(1, 1fr);
  width: 100%;
  max-width: 102.4rem;
  flex-wrap: wrap;
  justify-content: center;
  --item-width: 32rem;
}
@media (max-width: 390px) {
  .p-header-meganav__innerlist-other {
    grid-template-columns: repeat(1, 1fr);
  }
}
.p-header-meganav__innerlist-item {
  flex-shrink: 0;
  display: block;
  border: 1px solid #fff;
  border-radius: 2.5em;
  padding: 1em 2em;
  color: #fff;
  font-weight: 700;
  font-size: 1.4rem;
  max-width: var(--list-width);
}
@media (max-width: 767px) {
  .p-header-meganav__innerlist-item {
    padding: 1em 1em;
    width: var(--item-width);
    font-weight: 700;
    font-size: 1.2rem;
    max-width: unset;
  }
}
.p-header-meganav__innerlist-item:hover {
  background: #fff;
  color: #000;
}
.p-header-meganav__innerlist-other-item {
  flex-shrink: 0;
  display: block;
  border: 1px solid #fff;
  border-radius: 2.5em;
  padding: 1em 2em;
  color: #fff;
  font-weight: 700;
  font-size: 1.4rem;
  width: 100%;
  max-width: var(--list-width);
}
@media (max-width: 767px) {
  .p-header-meganav__innerlist-other-item {
    padding: 1em 1em;
    width: var(--list-width);
    font-weight: 700;
    font-size: 1.2rem;
    max-width: unset;
  }
}
.p-header-meganav__innerlist-other-item:hover {
  background: #fff;
  color: #000;
}
.p-header-meganav__overlay {
  display: none;
  width: 100vw;
  height: calc(100vh + 8rem);
  position: fixed;
  top: -8rem;
  left: 0;
  z-index: -1;
  pointer-events: none;
}
.p-header-meganav__overlay.is-open {
  display: block;
  pointer-events: all;
}

.p-header-open {
  justify-content: center;
  align-items: center;
  cursor: pointer;
  position: relative;
  z-index: 110;
  transition: background-color 0.3s;
}
@media (max-width: 1023px) {
  .p-header-open {
    display: flex;
    height: 4.8rem;
    width: 4.8rem;
  }
}
.p-header-open__inner {
  display: block;
  width: 1.6rem;
  height: 1.6rem;
  position: relative;
}
.p-header-open span {
  display: block;
  margin: 0;
  border: none;
  width: 1.6rem;
  height: 0.2rem;
  background: #fff;
  transform-origin: 0% 50%;
  position: absolute;
  top: 0.2rem;
  left: 0;
  transition: 0.3s;
}
.p-header-open span:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
}
.p-header-open span:nth-of-type(3) {
  top: unset;
  bottom: 0.2rem;
}
.p-header-open.is-open {
  transition: background-color 0.3s;
}
.p-header-open.is-open span {
  left: 0;
}
.p-header-open.is-open span:nth-of-type(1) {
  transform: rotate(45deg);
  width: 2rem;
}
.p-header-open.is-open span:nth-of-type(2) {
  opacity: 0;
}
.p-header-open.is-open span:nth-of-type(3) {
  top: unset;
  bottom: -0.2rem;
  transform: rotate(-45deg);
  width: 2rem;
}

.p-footer {
  background: #fff;
}
.p-footer__inner {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 4rem 1.6rem;
}
@media (max-width: 1023px) {
  .p-footer__inner {
    padding-inline: 5vw;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-footer__inner {
    gap: 2.4rem;
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767px) {
  .p-footer__inner {
    display: grid;
    grid-template-columns: 1fr;
    padding: 2.4rem 1.6rem 1.6rem;
  }
}

.p-footer-info {
  color: #000;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  align-items: start;
}
.p-footer-info__logo {
  font-weight: 600;
  font-size: 2.4rem;
}
.p-footer-info__address {
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .p-footer-info__address {
    font-weight: 400;
    font-size: 1.5rem;
    font-feature-settings: "palt";
  }
}
.p-footer-info__address .__item {
  display: flex;
  gap: 1em;
}
@media (max-width: 767px) {
  .p-footer-info__address .__item {
    display: grid;
    gap: 0.1em;
    grid-template-columns: 1fr;
  }
}
.p-footer-info__address .__address {
  display: flex;
  -moz-column-gap: 1em;
       column-gap: 1em;
  row-gap: 0.5em;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-footer-info {
    order: 1;
  }
  .p-footer-info__address {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }
}
.p-footer-info .__underline {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
@media (max-width: 767px) {
  .p-footer-info {
    order: 1;
  }
}

.p-footer__copyright {
  grid-column: 1/3;
  text-align: center;
}
@media (min-width: 1024px) {
  .p-footer__copyright {
    margin-top: calc(7.2rem * 0.25);
    margin-bottom: calc(7.2rem * 0.25);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-footer__copyright {
    margin-top: calc(4rem * 0.25);
    margin-bottom: calc(4rem * 0.25);
  }
}
@media (max-width: 767px) {
  .p-footer__copyright {
    margin-top: calc(4rem * 0.25);
    margin-bottom: calc(4rem * 0.25);
  }
}
.p-footer__copyright-text {
  font-weight: 500;
  font-size: 1.2rem;
  color: #000;
  letter-spacing: 0.1em;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-footer__copyright {
    width: 100%;
    text-align: center;
    grid-column: 1/2;
    order: 3;
  }
}
@media (max-width: 767px) {
  .p-footer__copyright {
    grid-column: 1/2;
    order: 3;
    margin-top: 2.4rem;
  }
}

.p-footer-nav {
  color: #000;
}
@media (max-width: 1023px) {
  .p-footer-nav {
    order: 2;
  }
}
@media (max-width: 767px) and (min-width: 1024px) {
  .p-footer-nav {
    margin-top: calc(7.2rem * 0.25);
    margin-bottom: calc(7.2rem * 0.25);
  }
}
@media (max-width: 767px) and (min-width: 768px) and (max-width: 1023px) {
  .p-footer-nav {
    margin-top: calc(4rem * 0.25);
    margin-bottom: calc(4rem * 0.25);
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  .p-footer-nav {
    margin-top: calc(4rem * 0.25);
    margin-bottom: calc(4rem * 0.25);
  }
}
.p-footer-nav__group {
  display: flex;
  -moz-column-gap: 2.4rem;
       column-gap: 2.4rem;
  align-items: center;
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .p-footer-nav__group {
    max-width: 100%;
    justify-content: center;
  }
}
.p-footer-nav__group-name {
  font-weight: 700;
  font-size: 1.8rem;
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  flex-shrink: 0;
}
.p-footer-nav__list {
  line-height: 2;
  display: flex;
  gap: 2em;
}
@media (max-width: 767px) {
  .p-footer-nav__list {
    width: 100%;
    justify-content: center;
  }
}
.p-footer-nav__list-item {
  list-style: none;
  font-weight: 500;
  font-size: 1.8rem;
}
.p-footer-nav__list-item a:hover {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.p-pagetop {
  position: fixed;
  right: 10px;
  z-index: 90;
  opacity: 0;
  transform: translateY(100px);
}
.p-pagetop > span {
  display: grid;
  place-content: center;
  text-align: center;
  align-items: center;
  width: 4.5rem;
  height: 4.5rem;
  transition: all 0.3s;
  cursor: pointer;
  background: #004ea2;
  color: #fff;
  font-size: 1.2rem;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}
.p-pagetop > span:hover {
  opacity: 0.7;
}
.p-pagetop.upMove {
  animation: UpAnime 0.5s forwards;
}
.p-pagetop.downMove {
  animation: DownAnime 0.5s forwards;
}

@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(100px);
  }
}
@media (min-width: 1024px) {
  .h-pc_hide,
  .h-pc_tab_hide {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .h-tab_hide,
  .h-pc_tab_hide,
  .h-sp_tab_hide {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .h-sp_hide,
  .h-sp_tab_hide {
    display: none !important;
  }
}
.h-hide {
  display: none;
}

.h-inlineblock {
  display: inline-block;
}

.h-mb0 {
  margin-bottom: 0rem !important;
}
@media (max-width: 767px) {
  .h-mb0 {
    margin-bottom: 0rem !important;
  }
}

.h-mt0 {
  margin-top: 0rem !important;
}
@media (max-width: 767px) {
  .h-mt0 {
    margin-top: 0rem !important;
  }
}

.h-pb0 {
  padding-bottom: 0rem !important;
}
@media (max-width: 767px) {
  .h-pb0 {
    padding-bottom: 0rem !important;
  }
}

.h-mb10 {
  margin-bottom: 1.6rem !important;
}
@media (max-width: 767px) {
  .h-mb10 {
    margin-bottom: 0.8rem !important;
  }
}

.h-mt10 {
  margin-top: 1.6rem !important;
}
@media (max-width: 767px) {
  .h-mt10 {
    margin-top: 0.8rem !important;
  }
}

.h-pb10 {
  padding-bottom: 1.6rem !important;
}
@media (max-width: 767px) {
  .h-pb10 {
    padding-bottom: 0.8rem !important;
  }
}

.h-mb20 {
  margin-bottom: 3.2rem !important;
}
@media (max-width: 767px) {
  .h-mb20 {
    margin-bottom: 1.6rem !important;
  }
}

.h-mt20 {
  margin-top: 3.2rem !important;
}
@media (max-width: 767px) {
  .h-mt20 {
    margin-top: 1.6rem !important;
  }
}

.h-pb20 {
  padding-bottom: 3.2rem !important;
}
@media (max-width: 767px) {
  .h-pb20 {
    padding-bottom: 1.6rem !important;
  }
}

.h-mb30 {
  margin-bottom: 4.8rem !important;
}
@media (max-width: 767px) {
  .h-mb30 {
    margin-bottom: 2.4rem !important;
  }
}

.h-mt30 {
  margin-top: 4.8rem !important;
}
@media (max-width: 767px) {
  .h-mt30 {
    margin-top: 2.4rem !important;
  }
}

.h-pb30 {
  padding-bottom: 4.8rem !important;
}
@media (max-width: 767px) {
  .h-pb30 {
    padding-bottom: 2.4rem !important;
  }
}

.h-mb40 {
  margin-bottom: 6.4rem !important;
}
@media (max-width: 767px) {
  .h-mb40 {
    margin-bottom: 3.2rem !important;
  }
}

.h-mt40 {
  margin-top: 6.4rem !important;
}
@media (max-width: 767px) {
  .h-mt40 {
    margin-top: 3.2rem !important;
  }
}

.h-pb40 {
  padding-bottom: 6.4rem !important;
}
@media (max-width: 767px) {
  .h-pb40 {
    padding-bottom: 3.2rem !important;
  }
}

.h-mb50 {
  margin-bottom: 8rem !important;
}
@media (max-width: 767px) {
  .h-mb50 {
    margin-bottom: 4rem !important;
  }
}

.h-mt50 {
  margin-top: 8rem !important;
}
@media (max-width: 767px) {
  .h-mt50 {
    margin-top: 4rem !important;
  }
}

.h-pb50 {
  padding-bottom: 8rem !important;
}
@media (max-width: 767px) {
  .h-pb50 {
    padding-bottom: 4rem !important;
  }
}

.h-mb60 {
  margin-bottom: 9.6rem !important;
}
@media (max-width: 767px) {
  .h-mb60 {
    margin-bottom: 4.8rem !important;
  }
}

.h-mt60 {
  margin-top: 9.6rem !important;
}
@media (max-width: 767px) {
  .h-mt60 {
    margin-top: 4.8rem !important;
  }
}

.h-pb60 {
  padding-bottom: 9.6rem !important;
}
@media (max-width: 767px) {
  .h-pb60 {
    padding-bottom: 4.8rem !important;
  }
}

.h-mb70 {
  margin-bottom: 11.2rem !important;
}
@media (max-width: 767px) {
  .h-mb70 {
    margin-bottom: 5.6rem !important;
  }
}

.h-mt70 {
  margin-top: 11.2rem !important;
}
@media (max-width: 767px) {
  .h-mt70 {
    margin-top: 5.6rem !important;
  }
}

.h-pb70 {
  padding-bottom: 11.2rem !important;
}
@media (max-width: 767px) {
  .h-pb70 {
    padding-bottom: 5.6rem !important;
  }
}

.h-mb80 {
  margin-bottom: 12.8rem !important;
}
@media (max-width: 767px) {
  .h-mb80 {
    margin-bottom: 6.4rem !important;
  }
}

.h-mt80 {
  margin-top: 12.8rem !important;
}
@media (max-width: 767px) {
  .h-mt80 {
    margin-top: 6.4rem !important;
  }
}

.h-pb80 {
  padding-bottom: 12.8rem !important;
}
@media (max-width: 767px) {
  .h-pb80 {
    padding-bottom: 6.4rem !important;
  }
}

.h-mb90 {
  margin-bottom: 14.4rem !important;
}
@media (max-width: 767px) {
  .h-mb90 {
    margin-bottom: 7.2rem !important;
  }
}

.h-mt90 {
  margin-top: 14.4rem !important;
}
@media (max-width: 767px) {
  .h-mt90 {
    margin-top: 7.2rem !important;
  }
}

.h-pb90 {
  padding-bottom: 14.4rem !important;
}
@media (max-width: 767px) {
  .h-pb90 {
    padding-bottom: 7.2rem !important;
  }
}

.h-mb100 {
  margin-bottom: 16rem !important;
}
@media (max-width: 767px) {
  .h-mb100 {
    margin-bottom: 8rem !important;
  }
}

.h-mt100 {
  margin-top: 16rem !important;
}
@media (max-width: 767px) {
  .h-mt100 {
    margin-top: 8rem !important;
  }
}

.h-pb100 {
  padding-bottom: 16rem !important;
}
@media (max-width: 767px) {
  .h-pb100 {
    padding-bottom: 8rem !important;
  }
}

.h-listicon {
  display: flex;
  gap: 0.2em;
}
.h-listicon:before {
  content: attr(data-icon);
}

.h-underline {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
.h-underline:hover {
  text-decoration: none;
}

.h-fadein {
  opacity: 0;
  transition: 2s;
  transform: translate3d(0, 50px, 0);
}
.h-fadein.__visibled {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}