@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Sawarabi+Gothic&family=Sawarabi+Mincho&family=Shippori+Mincho+B1:wght@400;500;600;700;800&display=swap");
:root {
  --base-bgcolor:#fff;
  --base-color:#000;
  --gray-color:#727272;
  --blue-color:#004ea2;
  --red-color:#c30d23;
  --inquiry-color:#004ea2;
  --exhibition-color:#7e7274;
  --pickup-color:#b43f31;
  --plan-bgcolor:#cfe5e2;
  --plan-color:#004098;
  --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;
  opacity: 0.3;
}

.c-btn {
  display: block;
  border-radius: 2.5em;
  font-weight: 500;
  font-size: 1.6rem;
  background: var(--btn-color);
  border: 2px solid var(--btnline-color);
  color: var(--btntxt-color);
  text-align: center;
  width: var(--btn-width);
  padding: 0.8em 0.5em;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}
.c-btn:hover {
  background: var(--btnline-color);
  color: var(--btn-color);
  opacity: 1;
  text-decoration: none;
}

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

.c-btn-min {
  width: clamp(10rem, 100%, 15rem);
}

.c-btn-arrow {
  display: grid;
  grid-template-columns: auto 1.6rem;
  align-items: center;
  gap: 0.2em;
}
.c-btn-arrow:after {
  content: "";
  display: block;
  width: 1.2rem;
  height: 1rem;
  background: url(../images/common/icon_arrow_b.svg) no-repeat center center/contain;
}
.c-btn-arrow:hover:after {
  background: none;
  -webkit-mask-image: url(../images/common/icon_arrow_b.png);
          mask-image: url(../images/common/icon_arrow_b.png);
  -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: var(--btn-color);
}

.c-btn__more {
  background: var(--base-gradation);
  border-radius: 2.5em;
  width: var(--btn-size);
  text-align: center;
  padding: 1em;
  font-weight: 700;
  font-size: 1.8rem;
  color: #fff;
}
.c-btn__more:hover {
  animation: reverseGradation 0.1s linear forwards;
}

.c-btn__circlearrow {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.c-btn__circlearrow:after {
  content: "";
  display: block;
  width: 4rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  padding: 0.5rem;
  background: url(../images/common/icon_arrow_wr.svg) no-repeat center center/40%, var(--base-gradation);
}
.c-btn__circlearrow:hover:after {
  animation: slideIcon 0.1s linear forwards;
  background: url(../images/common/icon_arrow_wr.svg) no-repeat center center/40%, var(--reverse-gradation);
}

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

.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;
  display: grid;
  min-height: 100vh;
}

.l-footer {
  justify-self: flex-end;
  align-self: flex-end;
}

.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-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: -9.2rem;
}
@media (max-width: 767px) {
  .l-header {
    top: -17rem;
  }
}

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

img {
  max-width: 100%;
}

.p-top-company {
  --ja-color:#37b44b;
  --btn-color:#37b44b;
  --btnline-color:#37b44b;
}

.p-top-business {
  --ja-color:#e61414;
  --btn-color:#e61414;
  --btnline-color:#e61414;
}

.p-top-recruit {
  --ja-color:#ffeb78;
  --btn-color:#ffeb78;
  --btnline-color:#ffeb78;
}

.p-top-news {
  --ja-color:#323232;
  --btn-color:#fff;
  --btnline-color:#323232;
  --btntxt-color:#323232;
}

.p-top-interview {
  --ja-color:#e61414;
  --btn-color:#e61414;
  --btnline-color:#e61414;
}

.p-top__heading {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1.6rem;
}
.p-top__heading .__en {
  font-weight: 700;
  font-size: 8rem;
  font-family: "Montserrat", "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, "Arimo", sans-serif;
}
@media (max-width: 1023px) {
  .p-top__heading .__en {
    font-size: 6.4rem;
  }
}
.p-top__heading.a-6 .__en {
  font-weight: 700;
  font-size: 6rem;
  font-family: "Montserrat", "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, "Arimo", sans-serif;
}
@media (max-width: 1023px) {
  .p-top__heading.a-6 .__en {
    font-size: 4.8rem;
  }
}
@media (max-width: 767px) {
  .p-top__heading.a-6 .__en {
    font-weight: 700;
    font-size: 4rem;
    font-family: "Montserrat", "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, "Arimo", sans-serif;
  }
}
.p-top__heading .__ja {
  font-weight: 500;
  font-size: 1.5rem;
}

.p-top-mv {
  display: flex;
  justify-content: center;
  padding-bottom: 2.4rem;
  background: url(../images/mv.png) no-repeat center bottom/cover;
}
.p-top-mv img {
  max-width: 100%;
}
.p-top-mv__inner {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 1023px) {
  .p-top-mv__inner {
    padding-inline: 5vw;
  }
}
.p-top-mv__inner .__title {
  width: 80%;
  max-width: 51.2rem;
  aspect-ratio: 606/704;
  grid-column: 2/3;
  grid-row: 1/3;
  text-align: right;
  justify-content: end;
  margin-inline: auto 0;
}
.p-top-mv__inner .__text {
  width: 100%;
  max-width: 64rem;
  aspect-ratio: 731/393;
  grid-column: 1/2;
  grid-row: 2/3;
}

.p-top-main {
  z-index: 1;
}

.p-top-news {
  background: var(--base-bgcolor);
  overflow: hidden;
  --btn-width:24rem;
}
@media (max-width: 1440px) {
  .p-top-news {
    padding-inline: 1.6rem;
  }
}
@media (max-width: 767px) {
  .p-top-news {
    overflow: inherit;
  }
}
.p-top-news__inner {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  background: #fff;
  display: grid;
  grid-template-columns: 1fr;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 2.4rem;
       column-gap: 2.4rem;
  row-gap: 4rem;
  padding-block: 4rem 6.4rem;
}
@media (max-width: 1023px) {
  .p-top-news__inner {
    padding-inline: 5vw;
  }
}
@media (max-width: 1440px) {
  .p-top-news__inner {
    padding-inline: 1.6rem;
  }
}
@media (min-width: 1024px) {
  .p-top-news__inner {
    margin-top: calc(7.2rem * 1);
    margin-bottom: calc(7.2rem * 1);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-top-news__inner {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 1);
  }
}
@media (max-width: 767px) {
  .p-top-news__inner {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 1);
  }
}
.p-top-news__title {
  text-align: center;
  margin-inline: auto;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 700;
  font-size: 2.2rem;
  letter-spacing: 1em;
}
.p-top-news__article {
  width: 100%;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  line-height: 1.4;
}
@media (max-width: 1023px) {
  .p-top-news__article {
    padding-inline: 5vw;
  }
}
.p-top-news__article .__item {
  padding: 1.5em 0;
  border-bottom: 1px solid var(--base-color);
  position: relative;
  display: grid;
  grid-template-columns: 16em 1fr;
  line-height: 1.8;
}
.p-top-news__article .__item:before {
  content: "";
  display: block;
  height: 1px;
  width: 4.8rem;
  position: absolute;
  bottom: -1px;
  z-index: 2;
  background: var(--blue-color);
}
.p-top-news__article .__item:first-child {
  border-top: 1px solid var(--base-color);
}
.p-top-news__article .__item:first-child:after {
  content: "";
  display: block;
  height: 1px;
  width: 4.8rem;
  position: absolute;
  top: -1px;
  z-index: 2;
  background: var(--blue-color);
}
@media (max-width: 767px) {
  .p-top-news__article .__item {
    grid-template-columns: 1fr;
  }
}
.p-top-news__article .__date {
  font-weight: 700;
  color: var(--gray-color);
  text-align: center;
}
.p-top-news__article a:hover {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
.p-top-news__more {
  font-weight: 700;
  font-size: 1.5rem;
  font-family: "Montserrat", "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, "Arimo", sans-serif;
}
.p-top-news__btn {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  margin-top: -1em;
}
@media (max-width: 1023px) {
  .p-top-news__btn {
    padding-inline: 5vw;
  }
}
.p-top-news__btn a {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
.p-top-news__btn a:hover {
  text-decoration: none;
  text-underline-offset: 0.2em;
}

.p-top-introduction {
  font-feature-settings: "palt";
}
.p-top-introduction__inner {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  margin-top: -10rem !important;
  padding-top: 10rem;
  display: grid;
  grid-template-columns: 30rem 1fr;
}
@media (max-width: 1023px) {
  .p-top-introduction__inner {
    padding-inline: 5vw;
  }
}
@media (max-width: 1440px) {
  .p-top-introduction__inner {
    padding-inline: 1.6rem;
  }
}
@media (max-width: 767px) {
  .p-top-introduction__inner {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr auto;
  }
}
.p-top-introduction__read {
  background: url(../images/bg_beige_logo.svg) no-repeat top right/40%, linear-gradient(90deg, rgba(225, 201, 177, 0.2) 0%, rgba(225, 201, 177, 0.4588235294) 3%, #e1c9b1 8%, #e1c9b1 100%);
  padding-block: 4rem;
  padding-inline: clamp(1.6rem, 10%, 6.4rem) clamp(1.6rem, 15%, 11rem);
}
.p-top-introduction__image {
  background: url(../images/img_comment.png) no-repeat center center/cover;
}
.p-top-introduction__image img {
  opacity: 0;
}
@media (max-width: 767px) {
  .p-top-introduction__image {
    background: url(../images/img_comment_sp.png) no-repeat center center/cover;
    aspect-ratio: 750/515;
    width: 100%;
    height: auto;
  }
  .p-top-introduction__image img {
    display: none;
  }
}
.p-top-introduction__title {
  font-weight: 700;
  font-size: 2.4rem;
  font-family: "Shippori Mincho B1", "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  line-height: 1.6;
}
.p-top-introduction__text {
  margin-top: 0.5em;
  font-weight: 400;
  font-size: 1.6rem;
  font-family: "Shippori Mincho B1", "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  line-height: 1.6;
  text-align: justify;
  text-justify: inter-ideograph;
  text-indent: 1em;
}
.p-top-introduction__sign {
  text-align: right;
}
.p-top-introduction__sign img {
  width: 30%;
  min-width: 16rem;
}

@media (min-width: 1024px) {
  .p-top-profile {
    margin-top: calc(7.2rem * 1);
    margin-bottom: calc(7.2rem * 1);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-top-profile {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 1);
  }
}
@media (max-width: 767px) {
  .p-top-profile {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 1);
  }
}
.p-top-profile__inner {
  width: 100%;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  margin-top: -10rem !important;
  padding-top: 10rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 7.2rem;
  align-items: center;
}
@media (max-width: 1023px) {
  .p-top-profile__inner {
    padding-inline: 5vw;
  }
}
@media (max-width: 1440px) {
  .p-top-profile__inner {
    padding-inline: 1.6rem;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-top-profile__inner {
    gap: 2.4rem;
  }
}
@media (max-width: 767px) {
  .p-top-profile__inner {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }
}
.p-top-profile__title {
  font-weight: 700;
  font-size: 2.4rem;
  font-family: "Shippori Mincho B1", "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  line-height: 1.6;
}
.p-top-profile__text {
  margin-top: 0.5em;
  line-height: 1.6;
  text-align: justify;
  text-justify: inter-ideograph;
  text-indent: 1em;
}
.p-top-profile__image {
  text-align: center;
}

.p-top-about {
  background: url(../images/line_tri.png) no-repeat center top/72%;
  padding-top: 6.4rem;
  position: relative;
}
@media (min-width: 1024px) {
  .p-top-about {
    margin-top: calc(7.2rem * 1);
    margin-bottom: calc(7.2rem * 1);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-top-about {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 1);
  }
}
@media (max-width: 767px) {
  .p-top-about {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 1);
  }
}
@media (max-width: 1440px) {
  .p-top-about {
    padding-inline: 1.6rem;
  }
}
@media (max-width: 1300px) {
  .p-top-about {
    background-size: 90%;
  }
}
@media (max-width: 900px) {
  .p-top-about {
    background-size: inherit;
  }
}
.p-top-about:before {
  content: "";
  display: block;
  background: url(../images/icon_bookmark.svg) no-repeat center center/contain;
  position: absolute;
  top: -5%;
  right: 15%;
  width: 100%;
  max-width: 4.5rem;
  aspect-ratio: 63/139;
}
@media (max-width: 767px) {
  .p-top-about:before {
    top: -2.4rem;
    right: 5vw;
  }
}
.p-top-about__inner {
  width: 100%;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  margin-top: -20rem !important;
  padding-top: 20rem;
  display: grid;
  gap: 3.2rem;
  align-items: center;
}
@media (max-width: 1023px) {
  .p-top-about__inner {
    padding-inline: 5vw;
  }
}
@media (max-width: 1440px) {
  .p-top-about__inner {
    padding-inline: 1.6rem;
  }
}
.p-top-about__read {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-areas: "title title" "text movie";
  -moz-column-gap: 7.2rem;
       column-gap: 7.2rem;
}
@media (max-width: 1023px) {
  .p-top-about__read {
    -moz-column-gap: 2.4rem;
         column-gap: 2.4rem;
  }
}
@media (max-width: 767px) {
  .p-top-about__read {
    grid-template-columns: 1fr;
    grid-template-areas: "title" "text" "movie";
    row-gap: 1.6rem;
  }
}
.p-top-about__title {
  font-weight: 700;
  font-size: 2.8rem;
  font-family: "Shippori Mincho B1", "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  line-height: 1.6;
  color: var(--blue-color);
  grid-area: title;
}
.p-top-about__title-sub {
  font-weight: 700;
  font-size: 2.2rem;
  font-family: "Shippori Mincho B1", "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  line-height: 1.6;
  color: var(--blue-color);
  margin-bottom: 0.5em;
}
.p-top-about__text {
  grid-area: text;
}
.p-top-about__movie {
  grid-area: movie;
  text-align: center;
}
@media (max-width: 767px) {
  .p-top-about__movie {
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
}
.p-top-about__movie-title {
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--blue-color);
  line-height: 1.8;
  font-feature-settings: "palt";
  text-align: left;
}
.p-top-about__movie-text {
  font-size: 1.3rem;
  line-height: 1.4;
  text-align: left;
}
.p-top-about__movie-text a:hover {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
.p-top-about__text {
  line-height: 1.6;
  text-align: justify;
  text-justify: inter-ideograph;
}
.p-top-about__text p {
  text-indent: 1em;
}

.p-top-about-history {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-areas: "title image" "text1 image" "text2 image" ". image";
  -moz-column-gap: 7.2rem;
       column-gap: 7.2rem;
  row-gap: 0.8rem;
  align-items: start;
}
@media (max-width: 1023px) {
  .p-top-about-history {
    -moz-column-gap: 2.4rem;
         column-gap: 2.4rem;
  }
}
@media (max-width: 767px) {
  .p-top-about-history {
    grid-template-columns: 1fr;
    grid-template-areas: "title" "text1" "text2" "image";
    row-gap: 1.6rem;
  }
}
.p-top-about-history__text {
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.4;
}
.p-top-about-history__text.a-text1981 {
  grid-area: text1;
}
.p-top-about-history__text.a-text2009 {
  grid-area: text2;
}
.p-top-about-history__image {
  grid-area: image;
  display: grid;
  gap: 1.8rem;
}
@media (max-width: 767px) {
  .p-top-about-history__image {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .p-top-about-history__image {
    grid-template-columns: repeat(1, 1fr);
    justify-content: center;
  }
  .p-top-about-history__image img {
    margin-inline: auto;
  }
}
.p-top-about-history__read {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  -moz-column-gap: 7.2rem;
       column-gap: 7.2rem;
}
.p-top-about-history__title {
  font-weight: 700;
  font-size: 2.6rem;
  font-family: "Shippori Mincho B1", "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  line-height: 1.6;
  color: var(--blue-color);
  grid-row: 1/2;
  grid-column: 1/2;
}
.p-top-about-history__title-sub {
  font-weight: 700;
  font-size: 2.2rem;
  font-family: "Shippori Mincho B1", "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  line-height: 1.6;
  color: var(--blue-color);
  margin-bottom: 0.5em;
}
.p-top-about-history__text {
  grid-row: 2/3;
  grid-column: 1/2;
}
.p-top-about-history__text {
  line-height: 1.6;
  text-align: justify;
  text-justify: inter-ideograph;
}
.p-top-about-history__text p {
  text-indent: 1em;
}

.p-top-about-now {
  position: relative;
  display: grid;
  row-gap: 1.6rem;
  align-items: start;
}
.p-top-about-now .p-top-about__title {
  grid-area: unset;
}
.p-top-about-now__read {
  display: grid;
  gap: 0.5em;
}
.p-top-about-now__title {
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--blue-color);
}
.p-top-about-now__text {
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.6;
  text-indent: 1em;
}

.p-top-about-place {
  position: relative;
  width: 100%;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1023px) {
  .p-top-about-place {
    padding-inline: 5vw;
  }
}
@media (max-width: 1440px) {
  .p-top-about-place {
    padding-inline: 1.6rem;
  }
}
.p-top-about-place__inner {
  border: 1px solid var(--blue-color);
  padding: 2.4rem;
  position: relative;
  display: grid;
  gap: 1.6rem;
}
.p-top-about-place__title {
  font-weight: 700;
  font-size: 2.2rem;
  color: var(--blue-color);
}
.p-top-about-place__icon {
  width: -moz-fit-content;
  width: fit-content;
  border: 1px solid var(--red-color);
  font-weight: 400;
  font-size: 1.2rem;
  padding: 0.2em 1em;
  color: var(--red-color);
  position: absolute;
  top: 1.6rem;
  right: 2.4rem;
}
.p-top-about-place__read {
  display: flex;
  align-items: flex-start;
  line-height: 1.6;
}
.p-top-about-place__read-title {
  flex-shrink: 0;
  font-weight: 500;
  font-size: 1.5rem;
}
.p-top-about-place__read-detail {
  font-weight: 500;
  font-size: 1.5rem;
}

.p-top-exhibition {
  background: var(--exhibition-color);
  padding-bottom: 2.4rem;
}
.p-top-exhibition__inner {
  color: var(--base-bgcolor);
  position: relative;
  background: url(../images/bg_square01.svg) no-repeat left 90% top 3%/17.5rem, url(../images/bg_square02.svg) no-repeat right 90% top 50%/15%, url(../images/bg_logo_brown.svg) no-repeat left 85% top 45%/30%, url(../images/bg_logo_brown.svg) no-repeat right 90% bottom 2%/30%, var(--exhibition-color);
}
@media (min-width: 1024px) {
  .p-top-exhibition__inner {
    padding-top: calc(7.2rem * 2);
    padding-bottom: calc(7.2rem * 0);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-top-exhibition__inner {
    padding-top: calc(5.6rem * 2);
    padding-bottom: calc(4rem * 0);
  }
}
@media (max-width: 767px) {
  .p-top-exhibition__inner {
    padding-top: calc(4rem * 2);
    padding-bottom: calc(4rem * 0);
  }
}
.p-top-exhibition__title {
  width: 100%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1023px) {
  .p-top-exhibition__title {
    padding-inline: 5vw;
  }
}
.p-top-exhibition__overview {
  margin-top: 2.4rem;
  width: 100%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  gap: 0.8rem;
}
@media (max-width: 1023px) {
  .p-top-exhibition__overview {
    padding-inline: 5vw;
  }
}
.p-top-exhibition__overview .__group {
  display: flex;
}
.p-top-exhibition__overview .__group .__title {
  flex-shrink: 0;
  line-height: 1.4;
}
.p-top-exhibition__overview .__group .__title.__withimg {
  padding-top: 2.8rem;
}
.p-top-exhibition__overview .__group .__title:before {
  content: "◎";
}
.p-top-exhibition__overview .__group .__detail {
  line-height: 1.4;
}

@media (min-width: 1024px) {
  .p-top-exhibition-pickup {
    margin-top: calc(7.2rem * 0.75);
    margin-bottom: calc(7.2rem * 0.75);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-top-exhibition-pickup {
    margin-top: calc(4rem * 0.75);
    margin-bottom: calc(4rem * 0.75);
  }
}
@media (max-width: 767px) {
  .p-top-exhibition-pickup {
    margin-top: calc(4rem * 0.75);
    margin-bottom: calc(4rem * 0.75);
  }
}
.p-top-exhibition-pickup__title {
  display: inline-block;
  background: var(--pickup-color);
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.3098039216);
  padding: 0.8rem 1.6rem 0.8rem 0.8rem;
  text-align: right;
  position: relative;
  padding-left: max((100% - 780px) / 2, 5vw);
  margin-left: -10px;
}
.p-top-exhibition-pickup__title img {
  width: 100%;
  max-width: 23.8rem;
}
.p-top-exhibition-pickup__list {
  width: 100%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.4rem;
}
@media (min-width: 1024px) {
  .p-top-exhibition-pickup__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-exhibition-pickup__list {
    margin-top: calc(4rem * 0.5);
    margin-bottom: calc(4rem * 0.5);
  }
}
@media (max-width: 767px) {
  .p-top-exhibition-pickup__list {
    margin-top: calc(4rem * 0.5);
    margin-bottom: calc(4rem * 0.5);
  }
}
@media (max-width: 1023px) {
  .p-top-exhibition-pickup__list {
    padding-inline: 5vw;
  }
}
@media (max-width: 767px) {
  .p-top-exhibition-pickup__list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.p-top-exhibition-pickup__list .__item-image {
  text-align: center;
}
.p-top-exhibition-pickup__list .__item-image img {
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.3098039216);
}
.p-top-exhibition-pickup__list .__item-title {
  margin-top: 1.6rem;
  text-align: center;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.6;
}
.p-top-exhibition-pickup__list .__item-publish {
  text-align: center;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.6;
}
.p-top-exhibition-pickup__list .__item-text {
  margin-top: 1.6rem;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.5;
  font-feature-settings: "palt";
  text-align: justify;
  text-justify: inter-ideograph;
}
.p-top-exhibition-pickup__list .__item-text p {
  text-indent: 1em;
}

.p-top-exhibition-sponsorship {
  background: var(--base-bgcolor);
}
@media (min-width: 1024px) {
  .p-top-exhibition-sponsorship {
    margin-top: calc(7.2rem * 1);
    margin-bottom: calc(7.2rem * 0);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-top-exhibition-sponsorship {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 0);
  }
}
@media (max-width: 767px) {
  .p-top-exhibition-sponsorship {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 0);
  }
}
.p-top-exhibition-sponsorship__inner {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: 3fr 1.5fr;
  gap: 2.4rem;
}
@media (max-width: 1023px) {
  .p-top-exhibition-sponsorship__inner {
    padding-inline: 5vw;
  }
}
@media (min-width: 1024px) {
  .p-top-exhibition-sponsorship__inner {
    padding-top: calc(7.2rem * 0.5);
    padding-bottom: calc(7.2rem * 0.5);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-top-exhibition-sponsorship__inner {
    padding-top: calc(5.6rem * 0.5);
    padding-bottom: calc(4rem * 0.5);
  }
}
@media (max-width: 767px) {
  .p-top-exhibition-sponsorship__inner {
    padding-top: calc(4rem * 0.5);
    padding-bottom: calc(4rem * 0.5);
  }
}
@media (max-width: 767px) {
  .p-top-exhibition-sponsorship__inner {
    grid-template-columns: 1fr;
  }
}
.p-top-exhibition-sponsorship__list {
  display: grid;
  gap: 2.4rem;
}
.p-top-exhibition-sponsorship__list .__group {
  display: flex;
}
@media (max-width: 767px) {
  .p-top-exhibition-sponsorship__list .__group {
    flex-direction: column;
    gap: 1.6rem;
  }
}
.p-top-exhibition-sponsorship__list .__title {
  flex-shrink: 0;
}
.p-top-exhibition-sponsorship__list .__detail {
  font-weight: 700;
  font-size: 2.8rem;
  font-family: "Shippori Mincho B1", "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
}
@media (max-width: 1023px) {
  .p-top-exhibition-sponsorship__list .__detail {
    font-size: 2.24rem;
  }
}
.p-top-exhibition-sponsorship__list .__detail-sub {
  font-weight: 700;
  font-size: 1.8rem;
  font-family: "Shippori Mincho B1", "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
}
@media (max-width: 1023px) {
  .p-top-exhibition-sponsorship__list .__detail-sub {
    font-size: 1.44rem;
  }
}
.p-top-exhibition-sponsorship__list .__sponsor {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.6rem;
}
@media (max-width: 767px) {
  .p-top-exhibition-sponsorship__list .__sponsor {
    grid-template-columns: repeat(6, 1fr);
  }
}
.p-top-exhibition-sponsorship__list .__detail-group {
  display: flex;
  justify-content: space-between;
  gap: 1.6rem;
  align-items: center;
}
.p-top-exhibition-sponsorship__list .__detail-group.a-p1 {
  gap: 0.8rem;
  grid-column: span 2;
  grid-row: span 2;
  justify-content: flex-start;
}
.p-top-exhibition-sponsorship__list .__detail-group.a-p1 .__detail-item {
  width: 7rem;
}
.p-top-exhibition-sponsorship__list .__detail-group.a-p2 {
  grid-column: span 4;
  grid-row: span 1;
}
.p-top-exhibition-sponsorship__list .__detail-group.a-p3 {
  grid-column: span 4;
  grid-row: span 1;
}
.p-top-exhibition-sponsorship__list .__detail-group.a-p4 {
  grid-column: 3/7;
  grid-row: span 1;
}
.p-top-exhibition-sponsorship__map iframe {
  width: 100%;
  aspect-ratio: 490/377;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.3098039216);
}

.p-top-plan {
  margin-top: 1.6rem;
  background: var(--plan-bgcolor);
}
.p-top-plan__inner {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1023px) {
  .p-top-plan__inner {
    padding-inline: 5vw;
  }
}
.p-top-plan__read {
  position: relative;
  display: flex;
  align-items: start;
}
.p-top-plan__read:last-child {
  border-top: 1px solid var(--plan-color);
}
@media (max-width: 767px) {
  .p-top-plan__read {
    flex-direction: column;
  }
}
.p-top-plan__title {
  width: 7rem;
  background: var(--blue-color);
  padding-block: 3.2rem 1.6rem;
  padding-inline: 1.6rem;
  box-shadow: 5px 5px 5px 0 rgba(0, 0, 0, 0.3098039216);
}
.p-top-plan__card {
  flex-grow: 2;
  padding: 2.4rem;
  padding-right: 0;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.6rem;
}
@media (max-width: 767px) {
  .p-top-plan__card {
    padding: 2.4rem 0;
    grid-template-columns: 1fr;
  }
}
.p-top-plan__card-title {
  grid-column: span 2;
  color: var(--blue-color);
  font-weight: 700;
  font-size: 3.2rem;
}
@media (max-width: 1023px) {
  .p-top-plan__card-title {
    font-size: 2.56rem;
  }
}
.p-top-plan__card-title .__sub {
  font-weight: 700;
  font-size: 2.2rem;
}
@media (max-width: 1023px) {
  .p-top-plan__card-title .__sub {
    font-size: 1.76rem;
  }
}
@media (max-width: 767px) {
  .p-top-plan__card-title {
    grid-column: 1;
  }
}
.p-top-plan__card-overview .__group {
  display: flex;
}
.p-top-plan__card-overview .__group .__title {
  flex-shrink: 0;
  line-height: 1.4;
}
.p-top-plan__card-overview .__group .__title.__withimg {
  padding-top: 2.8rem;
}
.p-top-plan__card-overview .__group .__title:before {
  content: "◎";
}
.p-top-plan__card-overview .__group .__detail {
  line-height: 1.6;
}
.p-top-plan__card-info {
  align-self: end;
}
.p-top-plan__card-info__icon {
  width: -moz-fit-content;
  width: fit-content;
  color: var(--red-color);
  border: 1px solid var(--red-color);
  padding: 0.2em 0.5em;
  background: var(--base-bgcolor);
  font-size: 1.4rem;
}
.p-top-plan__card-info__link {
  font-size: 1.4rem;
  line-height: 1.6;
}
.p-top-plan__card-info__link a {
  word-break: break-all;
}

.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;
  margin-top: -10rem !important;
  padding-top: 10rem;
}
@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-policy {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
  display: grid;
  gap: 2em;
}
.p-policy__title {
  font-weight: 700;
  font-size: 1.8rem;
  padding-block: 0.5em;
}
@media (min-width: 1024px) {
  .p-policy__title {
    margin-top: calc(7.2rem * 0.1);
    margin-bottom: calc(7.2rem * 0.1);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-policy__title {
    margin-top: calc(4rem * 0.1);
    margin-bottom: calc(4rem * 0.1);
  }
}
@media (max-width: 767px) {
  .p-policy__title {
    margin-top: calc(4rem * 0.1);
    margin-bottom: calc(4rem * 0.1);
  }
}
.p-policy__title span {
  display: block;
  width: 100%;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1023px) {
  .p-policy__title span {
    padding-inline: 5vw;
  }
}
.p-policy .__text {
  padding-block: 0.5em;
}
.p-policy__text {
  width: 100%;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 500;
  font-size: 1.4rem;
  padding-inline: 2em;
  line-height: 1.45;
}
@media (min-width: 1024px) {
  .p-policy__text {
    margin-top: calc(7.2rem * 0.1);
    margin-bottom: calc(7.2rem * 0.25);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-policy__text {
    margin-top: calc(4rem * 0.1);
    margin-bottom: calc(4rem * 0.25);
  }
}
@media (max-width: 767px) {
  .p-policy__text {
    margin-top: calc(4rem * 0.1);
    margin-bottom: calc(4rem * 0.25);
  }
}
@media (max-width: 1023px) {
  .p-policy__text {
    padding-inline: 5vw;
  }
}
.p-policy__list {
  border-top: 1px solid var(--base-color);
  counter-reset: number 0;
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}
.p-policy__list .__item {
  width: 100%;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1024px) {
  .p-policy__list .__item {
    margin-top: calc(7.2rem * 0.25);
    margin-bottom: calc(7.2rem * 0.25);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-policy__list .__item {
    margin-top: calc(4rem * 0.25);
    margin-bottom: calc(4rem * 0.25);
  }
}
@media (max-width: 767px) {
  .p-policy__list .__item {
    margin-top: calc(4rem * 0.25);
    margin-bottom: calc(4rem * 0.25);
  }
}
@media (max-width: 1023px) {
  .p-policy__list .__item {
    padding-inline: 5vw;
  }
}
.p-policy__list .__title {
  font-weight: 500;
  font-size: 1.8rem;
  color: var(--blue-color);
  text-indent: -1em;
  margin-left: 1em;
  line-height: 1.4;
}
.p-policy__list .__title:before {
  counter-increment: number 1;
  content: counter(number) ".";
}
.p-policy__list .__text {
  margin-left: 1.8rem;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.45;
}
@media (min-width: 1024px) {
  .p-policy__list .__text {
    margin-top: calc(7.2rem * 0.1);
    margin-bottom: calc(7.2rem * 0.1);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-policy__list .__text {
    margin-top: calc(4rem * 0.1);
    margin-bottom: calc(4rem * 0.1);
  }
}
@media (max-width: 767px) {
  .p-policy__list .__text {
    margin-top: calc(4rem * 0.1);
    margin-bottom: calc(4rem * 0.1);
  }
}
.p-policy__inner_list .__inner_item {
  text-indent: -1em;
  margin-left: 1em;
}
.p-policy__inner_list .__inner_item:before {
  content: attr(data-icon);
}
.p-policy__inner_list.a-no {
  counter-reset: innono 0;
  margin-left: 2em;
}
.p-policy__inner_list.a-no > .__inner_item {
  text-indent: -1em;
  margin-left: 1em;
}
.p-policy__inner_list.a-no > .__inner_item:before {
  display: inline-block;
  margin-right: 1em;
  counter-increment: innono 1;
  content: counter(innono) ".";
}

.p-management__title {
  font-weight: 700;
  font-size: 1.8rem;
  padding-block: 1.6rem;
  border-bottom: 1px solid var(--base-color);
}
@media (min-width: 1024px) {
  .p-management__title {
    margin-top: calc(7.2rem * 0.1);
    margin-bottom: calc(7.2rem * 0.1);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-management__title {
    margin-top: calc(4rem * 0.1);
    margin-bottom: calc(4rem * 0.1);
  }
}
@media (max-width: 767px) {
  .p-management__title {
    margin-top: calc(4rem * 0.1);
    margin-bottom: calc(4rem * 0.1);
  }
}
.p-management__title span {
  display: block;
  width: 100%;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1023px) {
  .p-management__title span {
    padding-inline: 5vw;
  }
}
.p-management__detail {
  width: 100%;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1023px) {
  .p-management__detail {
    padding-inline: 5vw;
  }
}
@media (min-width: 1024px) {
  .p-management__detail {
    margin-top: calc(7.2rem * 0.25);
    margin-bottom: calc(7.2rem * 0.25);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-management__detail {
    margin-top: calc(4rem * 0.25);
    margin-bottom: calc(4rem * 0.25);
  }
}
@media (max-width: 767px) {
  .p-management__detail {
    margin-top: calc(4rem * 0.25);
    margin-bottom: calc(4rem * 0.25);
  }
}
.p-management__detail .__main {
  font-weight: 600;
  font-size: 2.4rem;
  line-height: 1.6;
}
.p-management__detail .__spopnsor_title {
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 1.6;
  width: -moz-fit-content;
  width: fit-content;
  border-bottom: 1px solid currentColor;
}
.p-management__detail .__parson {
  margin-left: 1em;
  line-height: 1.6;
  font-weight: 500;
  font-size: 1.8rem;
}
.p-management__detail .__spopnsor {
  margin-left: 1em;
  line-height: 1.6;
  font-weight: 500;
  font-size: 1.8rem;
}

.p-news__title {
  text-align: center;
  margin-inline: auto;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 700;
  font-size: 2.2rem;
  letter-spacing: 1em;
}
.p-news__inner {
  width: 100%;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1023px) {
  .p-news__inner {
    padding-inline: 5vw;
  }
}
.p-news__article {
  display: grid;
  line-height: 1.4;
  border-top: 1px solid var(--base-color);
}
.p-news__article .__item {
  padding: 1.5em;
  border-bottom: 1px solid var(--base-color);
  display: grid;
  grid-template-columns: 3.5fr 1fr;
  -moz-column-gap: 2.4rem;
       column-gap: 2.4rem;
  row-gap: 1.6rem;
  grid-template-areas: "date ." "title image" "text image";
  line-height: 1.8;
  align-items: start;
}
@media (max-width: 767px) {
  .p-news__article .__item {
    grid-template-columns: 1fr;
    grid-template-areas: "date" "title" "text" "image";
  }
}
.p-news__article .__item:hover {
  background: var(--plan-bgcolor);
}
.p-news__article .__date {
  font-weight: 500;
  font-size: 1.5rem;
  color: var(--gray-color);
  grid-area: date;
}
.p-news__article .__title {
  font-weight: 500;
  font-size: 2.8rem;
  border-bottom: 2px dotted var(--base-color);
  grid-area: title;
  line-height: 1.6;
}
.p-news__article .__text {
  grid-area: text;
}
.p-news__article .__image {
  grid-area: image;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 2rem;
}
.p-news__article .__image img {
  border-radius: 2rem;
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  aspect-ratio: 335/202;
}
.p-news__article .__image .__empty-image {
  background: #b9baba;
  border-radius: 2rem;
  padding: 1.6rem;
}
@media (min-width: 1024px) {
  .p-news__pagenation-wrap {
    margin-top: calc(7.2rem * 0.5);
    margin-bottom: calc(7.2rem * 0.5);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-news__pagenation-wrap {
    margin-top: calc(4rem * 0.5);
    margin-bottom: calc(4rem * 0.5);
  }
}
@media (max-width: 767px) {
  .p-news__pagenation-wrap {
    margin-top: calc(4rem * 0.5);
    margin-bottom: calc(4rem * 0.5);
  }
}

.p-news-detail {
  width: 100%;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  --btn-color:#fff;
  --btnline-color:#000;
  display: grid;
}
@media (max-width: 1023px) {
  .p-news-detail {
    padding-inline: 5vw;
  }
}
.p-news-detail img {
  max-width: 100%;
}
.p-news-detail .__date {
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--blue-color);
  text-align: left;
  width: 100%;
}
.p-news-detail .__title {
  border-bottom: 3px solid var(--blue-color);
  font-weight: 700;
  font-size: 2.2rem;
  padding-block: 0 1.6rem;
  text-align: left;
  width: 100%;
}
.p-news-detail .__images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem;
  padding-block: 2.4rem;
}
.p-news-detail .__images .__image {
  padding-block: 0;
}
.p-news-detail .__images .__image img {
  width: 100%;
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 600/400;
}
.p-news-detail .__image {
  text-align: center;
  padding-block: 1.6rem;
}
.p-news-detail .__comment {
  line-height: 1.6;
  padding-block: 1.6rem;
  text-align: left;
  width: 100%;
}
.p-news-detail .__comment2 {
  line-height: 1.6;
  padding: 1.6rem;
}
.p-news-detail .__links {
  display: grid;
  gap: 0.5em;
  margin-top: 1.6rem;
}
.p-news-detail .__links .__link {
  display: flex;
  gap: 0.5em;
}
.p-news-detail .__links .__link a {
  text-decoration: underline;
  text-underline-offset: 0.2em;
  text-align: left;
}
.p-news-detail .__links .__link a:hover {
  text-decoration: none;
}
.p-news-detail .__links .__link:after {
  content: "\e157";
  font-family: "Material Symbols Outlined";
  display: block;
  rotate: -45deg;
  height: 1em;
}
.p-news-detail .__files {
  display: grid;
  gap: 0.5em;
  margin-top: 1.6rem;
}
.p-news-detail .__files .__file {
  display: flex;
  gap: 0.5em;
  align-items: center;
  --icon-color:#ffeb78;
}
@media (max-width: 767px) {
  .p-news-detail .__files .__file {
    display: inline;
    text-align: left;
  }
}
.p-news-detail .__files .__file a {
  text-decoration: underline;
  text-underline-offset: 0.2em;
  text-align: left;
}
.p-news-detail .__files .__file a:hover {
  text-decoration: none;
}
.p-news-detail .__files .__file.__extPDF {
  --icon-color:#e61414;
}
.p-news-detail .__files .__file.__extXLS, .p-news-detail .__files .__file.__extXLSX {
  --icon-color:#37b44b;
}
.p-news-detail .__files .__file.__extDOC, .p-news-detail .__files .__file.__extDOCX {
  --icon-color:#0564cd;
}
.p-news-detail .__files .__file:not(.__ext) {
  display: flex;
  gap: 0.5em;
  align-items: center;
}
.p-news-detail .__files .__file:not(.__ext):after {
  content: attr(data-ext);
  background: var(--icon-color);
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  font-size: 60%;
  padding: 0.1rem 0.4em;
  display: block;
  text-decoration: none;
}
@media (max-width: 767px) {
  .p-news-detail .__files .__file:not(.__ext):after {
    display: inline;
    text-align: left;
  }
}
@media (max-width: 767px) {
  .p-news-detail .__files .__file:not(.__ext) {
    display: inline;
    text-align: left;
  }
}
.p-news-detail .__files .__file .__size {
  color: #e61414;
  font-size: 80%;
}
.p-news-detail .__btn {
  padding-block: 1.6rem;
}
.p-news-detail .__btn a {
  margin-inline: auto;
  width: clamp(28rem, 100%, 35rem);
}
.p-news-detail strong {
  font-weight: 700;
}

.p-inquiry {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1023px) {
  .p-inquiry {
    padding-inline: 5vw;
  }
}
.p-inquiry__title {
  padding-block: 1.6rem;
  text-align: left;
  font-weight: 500;
  font-size: 2rem;
  border-bottom: 1px solid var(--base-color);
}
@media (min-width: 1024px) {
  .p-inquiry__title {
    margin-top: calc(7.2rem * 0.1);
    margin-bottom: calc(7.2rem * 0.25);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-inquiry__title {
    margin-top: calc(4rem * 0.1);
    margin-bottom: calc(4rem * 0.25);
  }
}
@media (max-width: 767px) {
  .p-inquiry__title {
    margin-top: calc(4rem * 0.1);
    margin-bottom: calc(4rem * 0.25);
  }
}
.p-inquiry__title span {
  display: block;
  width: 100%;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1023px) {
  .p-inquiry__title span {
    padding-inline: 5vw;
  }
}
.p-inquiry__complete {
  width: 100%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}
@media (min-width: 1024px) {
  .p-inquiry__complete {
    margin-top: calc(7.2rem * 1);
    margin-bottom: calc(7.2rem * 1);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-inquiry__complete {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 1);
  }
}
@media (max-width: 767px) {
  .p-inquiry__complete {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 1);
  }
}
@media (max-width: 1023px) {
  .p-inquiry__complete {
    padding-inline: 5vw;
  }
}

button {
  cursor: pointer;
}

label {
  /* margin-bottom: 1em; */
  display: inline-block;
  display: flex;
  align-items: center;
}

.p-form button, .p-form input, .p-form textarea {
  font-family: Noto Sans JP, ヒラギノ角ゴ ProN W3, Hiragino Kaku Gothic ProN, 游ゴシック, YuGothic, メイリオ, Meiryo, Arimo, sans-serif;
}
.p-form input[type=text],
.p-form input[type=date],
.p-form input[type=time],
.p-form input[type=password],
.p-form textarea, .p-form select {
  font-size: 1.8rem;
  font-weight: 400;
  display: block;
  width: 100%;
  padding: 0.75rem 0.75rem;
  line-height: 1.5;
  background-clip: padding-box;
  border: 1px solid #898989;
  background-color: #fff;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.p-form input[type=text]:focus,
.p-form input[type=date]:focus,
.p-form input[type=time]:focus,
.p-form input[type=password]:focus,
.p-form textarea:focus, .p-form select:focus {
  border: 1px solid;
}
.p-form input[type=text].__error,
.p-form input[type=date].__error,
.p-form input[type=time].__error,
.p-form input[type=password].__error,
.p-form textarea.__error, .p-form select.__error {
  border: 1px solid;
}
.p-form input[type=text].__min,
.p-form input[type=date].__min,
.p-form input[type=time].__min,
.p-form input[type=password].__min,
.p-form textarea.__min, .p-form select.__min {
  width: 40%;
}
.p-form textarea {
  height: 10em;
}
.p-form textarea.multi_text {
  height: 4em;
}
.p-form input[type=radio],
.p-form input[type=checkbox] {
  transform: scale(1.5, 1.5);
  margin-right: 0.5em;
}
.p-form input[type=time] {
  width: 6em;
}
.p-form input[type=text].__half {
  width: 48%;
}
@media (max-width: 767px) {
  .p-form input[type=text].__half {
    width: 100%;
  }
}
.p-form input[type=text].__short {
  width: 25%;
}
@media (max-width: 767px) {
  .p-form input[type=text].__short {
    width: 30%;
  }
}
.p-form input[type=text].__inline {
  display: inline-block;
}
.p-form .__disabled {
  background: #eee !important;
  pointer-events: none;
}

.p-form {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  background: #fff;
  padding: 6rem;
}
@media (max-width: 1023px) {
  .p-form {
    padding-inline: 5vw;
  }
}
@media (max-width: 767px) {
  .p-form {
    padding: 1.6rem;
  }
}
.p-form_inner {
  display: grid;
  gap: 2.4rem;
}
.p-form_confirm .__input {
  text-align: left;
}
.p-form_input {
  display: grid;
  grid-template-columns: 1fr 3.5fr;
  gap: 1.6rem;
  align-items: center;
  font-weight: 500;
  font-size: 1.6rem;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-form_input {
    grid-template-columns: 1fr 2.5fr;
  }
}
.p-form_input.a-multi {
  align-items: start;
}
.p-form_input.a-multi .__input {
  grid-row: 1/3;
}
@media (max-width: 767px) {
  .p-form_input.a-multi .__heading {
    grid-row: 1/2;
  }
  .p-form_input.a-multi .__note {
    grid-row: 3/4;
  }
  .p-form_input.a-multi .__input {
    grid-row: 2/3;
  }
}
.p-form_input_require_note {
  color: var(--red-color);
  width: 100%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: right;
  grid-row: 2/3;
  align-self: end;
}
@media (max-width: 1023px) {
  .p-form_input_require_note {
    padding-inline: 5vw;
  }
}
.p-form_input .__heading {
  font-weight: 500;
  font-size: 1.7rem;
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 0.2em;
}
@media (max-width: 767px) {
  .p-form_input .__heading {
    justify-content: flex-start;
  }
}
.p-form_input.a-required .__heading:after {
  content: "*";
  color: var(--red-color);
  padding: 0.2em 0.4em;
  font-weight: 700;
  flex-shrink: 0;
}
.p-form_input .__input_multi {
  display: flex;
  gap: 1em;
  align-items: center;
  margin-bottom: 0.5em;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .p-form_input .__input_multi {
    flex-direction: column;
    text-align: left;
    align-items: flex-start;
  }
}
.p-form_input .__input_inline {
  display: flex;
  gap: 1em;
  align-items: center;
  margin-bottom: 0.5em;
}
@media (max-width: 767px) {
  .p-form_input {
    grid-template-columns: 1fr;
    row-gap: 0.8rem;
  }
  .p-form_input .__heading {
    font-weight: 500;
    font-size: 1.6rem;
    -moz-text-align-last: left;
         text-align-last: left;
    width: 100%;
  }
}
.p-form_agree {
  display: grid;
  gap: 0.5em;
  text-align: center;
}
@media (min-width: 1024px) {
  .p-form_agree {
    margin-top: calc(7.2rem * 0.5);
    margin-bottom: calc(7.2rem * 0.5);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-form_agree {
    margin-top: calc(4rem * 0.5);
    margin-bottom: calc(4rem * 0.5);
  }
}
@media (max-width: 767px) {
  .p-form_agree {
    margin-top: calc(4rem * 0.5);
    margin-bottom: calc(4rem * 0.5);
  }
}
.p-form_agree .__check label {
  justify-content: center;
}
.p-form_btn {
  --btn-color:#004ea2;
  display: block;
  border-radius: 0.8rem;
  font-weight: 500;
  font-size: 1.8rem;
  background: var(--btn-color);
  border: 2px solid var(--btn-color);
  color: var(--base-bgcolor);
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.8rem 1em;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}
.p-form_btn:hover {
  background: var(--base-bgcolor);
  color: var(--btn-color);
  opacity: 1;
  text-decoration: none;
}
.p-form_btn:disabled {
  background-color: #999;
  border-color: #999;
  pointer-events: none;
}
.p-form_backbtn {
  width: -moz-fit-content;
  width: fit-content;
  --btn-color:#999;
  --btnline-color:#999;
}
.p-form_notice {
  width: 100%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 500;
  font-size: 1.8rem;
  text-align: left;
  padding: 1em 0;
}
@media (max-width: 1023px) {
  .p-form_notice {
    padding-inline: 5vw;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-form_notice {
    font-weight: 500;
    font-size: 1.8rem;
    line-height: 1.4;
    text-align: left;
  }
}
@media (max-width: 767px) {
  .p-form_notice {
    font-weight: 500;
    font-size: 1.6rem;
    text-align: left;
    line-height: 1.4;
  }
}
.p-form_btn_block {
  text-align: center;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1.6rem;
}
@media (min-width: 1024px) {
  .p-form_btn_block {
    margin-top: calc(7.2rem * 0.25);
    margin-bottom: calc(7.2rem * 0.25);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-form_btn_block {
    margin-top: calc(4rem * 0.25);
    margin-bottom: calc(4rem * 0.25);
  }
}
@media (max-width: 767px) {
  .p-form_btn_block {
    margin-top: calc(4rem * 0.25);
    margin-bottom: calc(4rem * 0.25);
  }
}
@media (max-width: 767px) {
  .p-form_btn img {
    width: 40%;
  }
}
.p-form_btn.__send {
  pointer-events: none;
  background: #666;
}
.p-form_btn .__spiner {
  color: #fff;
  font-size: 2.4rem;
  display: inline-block;
  margin-left: 0.5em;
}
@media (max-width: 767px) {
  .p-form_btn .__spiner {
    font-size: 1.5em;
  }
}
.p-form_complete {
  border: 1px solid #000;
  padding: 1em;
  margin-bottom: 1em;
}

.message_inline {
  padding: 0.8rem 1.2rem;
}

.p-form-message__text {
  text-align: left;
  position: relative;
  margin-top: 1.6rem;
  margin-bottom: 1.6rem;
  padding: 1.2rem 2rem;
  border-radius: 0.8rem;
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: 0.02em;
}

.p-form-message__error {
  color: #772b35;
  background-color: #fadddd;
}

.p-form-message__success {
  color: #18603a;
  background-color: #d5f1de;
}

.p-pagination {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.8rem;
}
@media (min-width: 1024px) {
  .p-pagination-wrap {
    margin-top: calc(7.2rem * 0.25);
    margin-bottom: calc(7.2rem * 0.25);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-pagination-wrap {
    margin-top: calc(4rem * 0.25);
    margin-bottom: calc(4rem * 0.25);
  }
}
@media (max-width: 767px) {
  .p-pagination-wrap {
    margin-top: calc(4rem * 0.25);
    margin-bottom: calc(4rem * 0.25);
  }
}
.p-pagination__disabled {
  pointer-events: none;
  cursor: default;
  opacity: 0.5;
}
.p-pagination .__prev a,
.p-pagination .__next a {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  width: 3.2rem;
  aspect-ratio: 1/1;
}
.p-pagination .__prev a span,
.p-pagination .__next a span {
  font-size: 1.6rem;
  width: 1.6rem;
  display: block;
}
.p-pagination__item a {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  width: 3.5rem;
  aspect-ratio: 1/1;
  text-align: center;
}
.p-pagination__item a:hover {
  background: #f0f0f0;
}
.p-pagination__item.__current a {
  pointer-events: none;
  background: #000;
  color: #fff;
}

.p-sidefollow {
  position: fixed;
  right: -5px;
  top: 45%;
  border-radius: 3rem 0 0 3rem;
  border: 5px solid #fff;
  overflow: hidden;
  z-index: 91;
}
@media (max-width: 767px) {
  .p-sidefollow {
    right: auto;
    left: 0;
    top: auto;
    bottom: 0;
    border-radius: 0;
    width: 100%;
    border: none;
    border-top: 5px solid #fff;
  }
}
.p-sidefollow__inner {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(2, 1fr);
}
@media (max-width: 767px) {
  .p-sidefollow__inner {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(1, 1fr);
  }
}
.p-sidefollow .a-partner {
  --side-bg-color:#2e77be;
  --side-icon:url(../images/common/icon_partner.svg) ;
}
.p-sidefollow .a-engineer {
  --side-bg-color:#23a5b4;
  --side-icon:url(../images/common/icon_engineer.svg);
}
.p-sidefollow__link {
  background: var(--side-bg-color);
  color: #fff;
  height: 17rem;
  writing-mode: vertical-rl;
  padding: 1.6rem 1.6rem;
  display: grid;
  grid-template-rows: 1fr;
  grid-template-columns: 1fr 2fr;
  align-items: center;
}
@media (max-width: 767px) {
  .p-sidefollow__link {
    writing-mode: unset;
    height: auto;
  }
}
.p-sidefollow__link:before {
  content: "";
  background-image: var(--side-icon);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 3.8rem;
  aspect-ratio: 1/1;
}
.p-sidefollow__link:hover {
  opacity: 0.5;
}

.p-header {
  background: #fff;
  height: 17rem;
  display: flex;
  align-items: flex-start;
}
.p-header img {
  max-width: 100%;
}
.p-header__inner {
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: sticky;
  top: 0;
  height: 17rem;
}
@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: 1280px;
  margin-left: auto;
  margin-right: auto;
  z-index: 110;
  pointer-events: none;
  align-self: center;
}
@media (max-width: 767px) {
  .p-header__logo {
    margin-inline: unset;
    width: 40%;
  }
  .p-header__logo img {
    transition: 0.3s;
  }
}
@media (max-width: 767px) {
  .c-fixed .p-header__logo img {
    mix-blend-mode: difference;
    mix-blend-mode: screen;
  }
}
.p-header__logo-link {
  display: block;
  pointer-events: all;
  width: 100%;
  max-width: 18.6rem;
  height: 100%;
  max-height: 12.5rem;
}
@media (max-width: 960px) {
  .p-header__sp-hide {
    display: none !important;
  }
}
.p-header__display-toggle {
  opacity: 0;
  visibility: hidden;
  pointer-events: none !important;
}

.p-header-nav {
  position: fixed;
  right: 0;
  top: 2.4rem;
  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: 1.6rem;
  align-items: center;
  justify-content: flex-end;
}
.p-header-nav__hook {
  display: block;
  padding: 0.5em 0;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.2em;
  pointer-events: all;
}
.p-header-nav__hook:hover {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.p-header-meganav .p-header-nav__list {
  display: flex;
  flex-direction: column;
}
.p-header-meganav .p-header-nav__list a {
  color: var(--base-bgcolor);
}

.p-header-contact {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0.8rem;
  background: var(--inquiry-color);
  border: 3px solid var(--inquiry-color);
  border-right: none;
  color: #fff;
  width: 18rem;
  flex-shrink: 0;
  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: 960px) {
  .p-header-contact {
    display: none !important;
  }
}
@media (max-width: 1120px) {
  .p-header-contact {
    margin-inline: auto 0;
    width: 14rem;
  }
}
@media (max-width: 767px) {
  .p-header-contact {
    display: none;
  }
}
.p-header-contact:hover {
  background: #fff;
  color: var(--inquiry-color);
}
.p-header-contact__text {
  flex-shrink: 0;
}
.p-header-megamenu {
  background: var(--inquiry-color);
  width: 10rem;
  height: 5.4rem;
  text-align: center;
  padding: 1em;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: all;
  z-index: 110;
  display: none;
}
@media (max-width: 960px) {
  .p-header-megamenu {
    width: 6rem;
    display: flex;
  }
}
@media (max-width: 767px) {
  .p-header-megamenu {
    width: 6rem;
    display: flex;
  }
}

.p-header-meganav {
  display: block;
  position: fixed;
  right: 0;
  top: -6rem;
  background: #323232;
  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: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  flex-wrap: wrap;
  width: 100%;
  max-width: 102.4rem;
  justify-content: center;
  position: relative;
}
@media (max-width: 767px) {
  .p-header-meganav__inner {
    grid-template-columns: repeat(1, 1fr);
    padding-inline: 3vw;
    overflow-y: scroll;
    height: 85vh;
    align-content: start;
  }
}
.p-header-meganav__innerlist {
  display: grid;
  grid-template-columns: 1fr;
  justify-content: center;
  gap: 0.8rem;
  padding-block: 1.6rem;
  width: 100%;
  max-width: 32rem;
  --item-width: 100%;
}
@media (max-width: 767px) {
  .p-header-meganav__innerlist {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-content: start;
    max-width: unset;
  }
}
@media (max-width: 480px) {
  .p-header-meganav__innerlist {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 330px) {
  .p-header-meganav__innerlist {
    grid-template-columns: repeat(1, 1fr);
  }
}
.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;
}
@media (max-width: 767px) {
  .p-header-meganav__link {
    font-weight: 700;
    font-size: 1.2rem;
    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%;
  border-top: 3px dotted #fff;
  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(3, 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(2, 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: var(--base-bgcolor);
}
.p-footer__inner {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  padding-block: 4rem;
}
@media (max-width: 1023px) {
  .p-footer__inner {
    padding-inline: 5vw;
  }
}
@media (max-width: 1440px) {
  .p-footer__inner {
    padding-inline: 1.6rem;
  }
}
@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: 4rem 1.6rem;
  }
}

.p-footer-nav {
  color: var(--base-bgcolor);
  display: flex;
  -moz-column-gap: 6.4rem;
       column-gap: 6.4rem;
  row-gap: 4rem;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-footer-nav {
    order: 1;
    justify-content: flex-start;
  }
}
@media (max-width: 767px) {
  .p-footer-nav {
    max-height: none;
    grid-template-columns: repeat(2, auto);
    row-gap: 2.4rem;
    -moz-column-gap: 1.6rem;
         column-gap: 1.6rem;
    order: 1;
    border-bottom: 1px solid #fff;
  }
}
.p-footer-nav a {
  color: var(--base-color);
  font-weight: 500;
  font-size: 1.6rem;
  text-decoration: none;
  text-underline-offset: 0.2em;
}
.p-footer-nav a:hover {
  text-decoration: underline;
}
@media (max-width: 767px) {
  .p-footer-nav a {
    font-weight: 500;
    font-size: 1.5rem;
  }
}
.p-footer-nav__list {
  line-height: 1.6;
}
.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: var(--base-bgcolor);
  color: var(--gray-color);
  font-size: 1.2rem;
  border-radius: 50%;
  box-shadow: 0 0 3px rgba(0, 0, 0, 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);
}