@charset "UTF-8";
/*==========================================================================
# reset - ブラウザの差異や不要なスタイルを無くすためのスタイル
========================================================================== */
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td,
small,
button,
time,
figure {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  line-height: 1;
  font-size: 16px;
}

ol,
ul {
  list-style: none;
}

li,
dd {
  list-style-type: none;
}

header,
footer,
nav,
section,
article,
aside,
figure,
figcaption {
  display: block;
}

img {
  border: none;
  vertical-align: bottom;
}

a {
  cursor: pointer;
  text-decoration: none;
}

/* テンプレートが1180px以下の時 */
/* テンプレートが1500px以下の時 */
/*
mixinの使用記述

1040px以上
@include mq(pc) {
    スタイル
}
1024px以下
@include mq(tab) {
      スタイル
}
767px以下
@include mq(sp) {
      スタイル
}
*/
/* 
それぞれ( )内にpxでの数値を入れるとrem, px, vw(pc版), vw(sp版) に変換 
*/
/* 
それぞれ( )内にpxでの数値を入れるとrem, px, vw(pc版), vw(sp版) に変換 
*/
html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}
@media screen and (max-width: 767px) {
  html {
    scroll-padding-top: 100px;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.75;
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 14px;
  }
}
body p {
  font-weight: 400;
}
body.is-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  -webkit-tap-highlight-color: transparent;
}

@media screen and (max-width: 767px) {
  main {
    overflow-x: clip;
  }
}
main.page {
  margin-top: 112px;
}
@media screen and (max-width: 1024px) {
  main.page {
    margin-top: 100px;
  }
}

.l-inner {
  max-width: 1450px;
  margin: 0 auto;
  padding: 0 5%;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
@media screen and (max-width: 1024px) {
  .l-inner {
    padding: 0 2%;
  }
}
@media screen and (max-width: 767px) {
  .l-inner {
    padding: 0 5%;
  }
}

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

.l-flex15 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}

.l-flex30 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}

.l-flex40 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}

.l-wideInner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3%;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
@media screen and (max-width: 1024px) {
  .l-wideInner {
    padding: 0 2%;
  }
}

.l-narrowInner {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 5%;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  background-color: #fff;
}
@media screen and (max-width: 1024px) {
  .l-narrowInner {
    padding: 0 2%;
  }
}
@media screen and (max-width: 767px) {
  .l-narrowInner {
    padding: 0 5%;
  }
}

@media screen and (max-width: 767px) {
  .l-column-sp {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.l-grid4-2-1 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr 20px 1fr;
  grid-template-columns: repeat(4, 1fr);
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  gap: 20px;
}

.l-grid4-2-1 > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}

.l-grid4-2-1 > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}

.l-grid4-2-1 > *:nth-child(3) {
  -ms-grid-row: 1;
  -ms-grid-column: 5;
}

.l-grid4-2-1 > *:nth-child(4) {
  -ms-grid-row: 1;
  -ms-grid-column: 7;
}
@media screen and (max-width: 1024px) {
  .l-grid4-2-1 {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .l-grid4-2-1 {
    -ms-grid-columns: 1fr;
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
  }
}

.l-grid3-1 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr 40px 1fr;
  grid-template-columns: repeat(3, 1fr);
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  gap: 25px 40px;
}

.l-grid3-1 > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}

.l-grid3-1 > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}

.l-grid3-1 > *:nth-child(3) {
  -ms-grid-row: 1;
  -ms-grid-column: 5;
}
@media screen and (max-width: 767px) {
  .l-grid3-1 {
    -ms-grid-columns: 1fr;
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
  }
}

.c-infoBtn {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.5;
  width: 100%;
  max-width: 350px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 12px;
  border: 3px solid #368fa6;
  border-radius: 50px;
  margin: 0 auto;
  color: #368fa6;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.c-infoBtn:hover {
  background-color: #368fa6;
  color: #fff;
}

.c-drawerIcon {
  width: 38px;
  height: 32px;
  position: relative;
  z-index: 300;
}
.c-drawerIcon.media {
  position: fixed;
  right: 20px;
  top: 20px;
}
.c-drawerIcon.media .bar1,
.c-drawerIcon.media .bar2 {
  background-color: #368fa6;
}
.c-drawerIcon.media .c-drawerIcon__text::before {
  color: #368fa6;
}
.c-drawerIcon .bar1,
.c-drawerIcon .bar2 {
  position: absolute;
  display: inline-block;
  width: 38px;
  height: 4px;
  background-color: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.c-drawerIcon .bar1 {
  top: -2px;
}
.c-drawerIcon .bar2 {
  top: 31px;
}
.c-drawerIcon__text {
  position: absolute;
  content: "";
  text-align: center;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 800;
  font-size: 13px;
  top: 5px;
}
.c-drawerIcon__text::before {
  position: absolute;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  content: "MENU";
}
.c-drawerIcon.is-open .bar1,
.c-drawerIcon.is-open .bar2 {
  background-color: #fff;
}
.c-drawerIcon.is-open .bar1 {
  top: 10px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.c-drawerIcon.is-open .bar2 {
  top: 10px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.c-drawerIcon.is-open .c-drawerIcon__text::before {
  content: "CLOSE";
  color: #fff;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
}

.c-mediaCategory {
  background-color: #368fa6;
  padding: 16px 20px;
  text-align: center;
  margin-bottom: 20px;
}
.c-mediaCategory-name {
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.375rem;
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .c-mediaCategory-name {
    font-size: 16px;
  }
}

.c-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  margin-top: 40px;
}
.c-pagination .page-numbers {
  display: none; /* ページ番号を非表示にする */
}
.c-pagination .prev.page-numbers,
.c-pagination .next.page-numbers {
  display: block;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: 2px solid #000;
  border-radius: 50px;
  padding: 5px 25px;
}
@media (hover: hover) {
  .c-pagination .prev.page-numbers:hover,
  .c-pagination .next.page-numbers:hover {
    background: #368fa6;
    color: #fff;
    border-color: #368fa6;
  }
}

.c-title {
  text-align: center;
  margin-bottom: 40px;
}
.c-title p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 800;
  font-size: 2.1875rem;
  line-height: 1.75;
  font-weight: 800;
  color: #bc1b21;
}
@media screen and (max-width: 767px) {
  .c-title p {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-size: 1.25rem;
    line-height: 1.75;
    font-weight: 800;
  }
}

.c-bgColor {
  background-color: #fff;
}

.c-pageHead {
  width: 100%;
}
.c-pageHead img {
  width: 100%;
}

.p-preparation {
  background-color: #bc1b21;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 0 !important;
}
@media screen and (max-width: 767px) {
  .p-preparation {
    height: 100svh;
  }
}
.p-preparation h1 {
  max-width: 400px;
  margin: 0 auto;
}
.p-preparation h2 {
  color: #bc1b21;
  background-color: #fff;
  border-radius: 50px;
  font-size: 1.8125rem;
  letter-spacing: 0.02em;
  margin-top: 40px;
  padding: 5px 10px;
  width: 510px;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 767px) {
  .p-preparation h2 {
    width: 100%;
    max-width: 400px;
    margin: 40px auto 0;
    font-size: clamp(0.75rem, -2.159rem + 14.55vw, 1.25rem);
  }
}

.p-mv {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  .p-mv {
    height: calc(100svh - 100px);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-mv__wrap {
  position: relative;
  overflow-x: hidden;
  height: 100vh;
}
@media screen and (max-width: 1024px) {
  .p-mv__wrap {
    height: 100svh;
  }
}
.p-mv__header {
  height: 112px;
  background-color: #368fa6;
  color: #fff;
  font-size: 28px;
  font-weight: 500;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-mv__header {
    height: 60px;
    font-size: 16px;
  }
}
.p-mv__img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  top: 112px;
  height: 62%;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-mv__img {
    top: 60px;
    height: 70%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-mv__img figure {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 767px) {
  .p-mv__img figure {
    height: 33%;
  }
}
.p-mv__img figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-mv__img figure img {
    -o-object-position: center 30%;
       object-position: center 30%;
  }
}
.p-mv__bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 27%;
}
.p-mv__logo {
  position: absolute;
  bottom: 16.5%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 29%;
}
@media screen and (max-width: 767px) {
  .p-mv__logo {
    width: 50%;
    height: auto;
    bottom: 20%;
  }
}
.p-mv__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-mv__text {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 430px;
  height: 327px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .p-mv__text {
    width: 50%;
    height: auto;
    max-width: 430px;
  }
}
.p-mv__scroll {
  position: absolute;
  bottom: 8%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 45px;
}
@media screen and (max-width: 1024px) {
  .p-mv__scroll {
    width: 40px;
  }
}

.p-read {
  padding-block: 60px;
}
@media screen and (max-width: 767px) {
  .p-read {
    padding-block: 30px;
  }
}
.p-read:not(:first-child) {
  padding-top: 0;
}
.p-read h2 {
  font-size: clamp(1.625rem, 1.196rem + 0.67vw, 2rem);
  line-height: 1.5789473684;
  font-weight: 800;
  margin-bottom: 40px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-read h2 {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 800;
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 30px;
  }
}
.p-read h3 {
  font-size: 45px;
  line-height: 1.3333333333;
  margin-bottom: 80px;
  text-align: center;
  color: #368fa6;
}
@media screen and (max-width: 767px) {
  .p-read h3 {
    font-size: 24px;
    line-height: 1.5;
    margin-bottom: 40px;
  }
}
.p-read__content {
  width: 100%;
  padding: 0;
  gap: 2.8%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .p-read__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-read__content.pc-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .p-read__content.pc-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-read__text {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 44.5%;
          flex: 0 0 44.5%;
}
.p-read__text h4 {
  font-size: 20px;
  line-height: 1.5;
  font-weight: 500;
  margin-bottom: 10px;
  color: #231815;
}
@media screen and (max-width: 767px) {
  .p-read__text h4 {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 800;
    font-size: 1rem;
    line-height: 1.75;
    text-align: center;
  }
}
.p-read__img {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
.p-read__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-read__img {
    width: 100%;
    margin-bottom: 20px;
  }
}
.p-read__illust {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-block: 40px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-read__illust {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-block: 20px;
  }
}
.p-read__illust figcaption {
  display: none;
  font-size: 24px;
  line-height: 1.5;
  font-weight: 700;
  color: #368fa6;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  position: absolute;
  top: 0;
  left: 0;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}
.p-read__illust figcaption span {
  font-size: 42px;
  display: block;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .p-read__illust figcaption {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: static;
    font-size: 20px;
  }
  .p-read__illust figcaption span {
    font-size: 30px;
  }
}
.p-read__illust .small {
  font-size: 16px;
}
.p-read__item {
  padding-top: 80px;
}
@media screen and (max-width: 767px) {
  .p-read__item {
    padding-top: 40px;
  }
}

.p-info {
  padding-bottom: 40px;
}
.p-info.top {
  background-color: #ebf5ec;
  padding-block: 60px 80px;
}
@media screen and (max-width: 767px) {
  .p-info.top {
    padding-block: 40px;
  }
}
.p-info.gray {
  background-color: #727171;
  color: #fff;
}
.p-info__title {
  text-align: center;
  margin-bottom: 40px;
  color: #231815;
}
.p-info__title p {
  font-size: 30px;
  font-weight: 800;
  color: #368fa6;
}
.p-info__title h2 {
  font-weight: 500;
  color: #231815;
  font-size: 16px;
}
.p-info__title.sub p {
  color: #368fa6;
  font-size: 45px;
}
@media screen and (max-width: 767px) {
  .p-info__title.sub p {
    font-size: 30px;
  }
}
.p-info__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}
.p-info__card img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 323/217;
}
.p-info figure {
  margin-bottom: 10px;
}
.p-info__text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.5;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-bottom: 15px;
}
.p-info__meta {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 1.95;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.p-links {
  text-align: center;
}
.p-links a {
  text-transform: uppercase;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.5;
  padding: 0 10px;
  border-left: 1px solid #231815;
}
.p-links a:last-child {
  border-right: 1px solid #231815;
}
@media screen and (max-width: 767px) {
  .p-links a {
    border-left: none;
    border-top: 1px solid #231815;
    padding: 20px 0;
  }
  .p-links a:last-child {
    border-right: none;
    border-bottom: 1px solid #231815;
  }
}
@media screen and (max-width: 767px) {
  .p-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-footer {
  padding: 30px 0;
  background-color: #368fa6;
}
.p-footer__copy {
  color: #fff;
  display: block;
  text-align: center;
}

.p-header {
  background-color: #368fa6;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  height: 140px;
  -webkit-box-shadow: 0px 6px 10px 0px rgba(0, 0, 0, 0.4);
          box-shadow: 0px 6px 10px 0px rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1024px) {
  .p-header {
    height: 100px;
  }
}
.p-header.is-visible {
  opacity: 1;
  visibility: visible;
}

.p-header__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: inherit;
}

.p-header__logo a {
  display: block;
}
@media screen and (max-width: 1024px) {
  .p-header__logo {
    width: clamp(9.375rem, 1.657rem + 12.05vw, 12.5rem);
  }
}
@media screen and (max-width: 767px) {
  .p-header__logo {
    width: 160px;
  }
}

.p-header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  height: 100%;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-header__nav {
    gap: 10px;
  }
}

.p-header__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .p-header__list {
    display: none;
  }
}
.p-header__list li {
  height: 100%;
}
.p-header__list a {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.75;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  padding-left: 18px;
  height: 100%;
}
.p-header__list a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 9px 0 9px 15.6px;
  border-color: transparent transparent transparent #fff;
}
@media screen and (max-width: 1024px) {
  .p-header__list a {
    display: none;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-size: 0.75rem;
    line-height: 1.95;
  }
}

.p-header__contact {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1024px) {
  .p-header__contact {
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .p-header__contact {
    gap: 0;
  }
}
.p-header__contact a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 38px;
  height: 32px;
}
@media screen and (max-width: 767px) {
  .p-header__contact a {
    width: 50px;
  }
}
.p-header__contact a img {
  width: 100%;
  height: 100%;
}

.header__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: clamp(1.25rem, -1.837rem + 4.82vw, 2.5rem);
     -moz-column-gap: clamp(1.25rem, -1.837rem + 4.82vw, 2.5rem);
          column-gap: clamp(1.25rem, -1.837rem + 4.82vw, 2.5rem);
}

.p-drawerNav {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  -webkit-transform: translateX(105%);
          transform: translateX(105%);
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  z-index: 200;
  overflow: auto;
  padding-top: 140px;
}
@media screen and (max-width: 767px) {
  .p-drawerNav {
    padding-top: 50px;
  }
}
.p-drawerNav__list {
  max-width: 500px;
  margin: 0 auto;
}
.p-drawerNav__list li {
  border-bottom: 1px solid #fff;
  position: relative;
}
.p-drawerNav__list li a {
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.75;
  padding: 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-drawerNav__list li::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  width: 10px;
  height: auto;
  aspect-ratio: 1;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media screen and (max-width: 767px) {
  .p-drawerNav__list {
    width: 90%;
  }
  .p-drawerNav__list li a {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 600;
    font-size: 1.125rem;
    line-height: 1.5;
  }
}
.p-drawerNav.is-open {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.p-mediaHeader {
  position: fixed;
  right: 0;
  top: 0;
  width: 300px;
  background-color: #368fa6;
  height: 100%;
  padding: 50px 10px 30px;
  overflow: auto;
  z-index: 200;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-mediaHeader {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    padding-top: 80px;
  }
  .p-mediaHeader.is-open {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.p-mediaHeader__logo {
  margin-bottom: 30px;
}
.p-mediaHeader__logo a {
  display: block;
  text-align: center;
}
.p-mediaHeader__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  text-align: center;
}
.p-mediaHeader__list:not(:first-child) {
  margin-top: 30px;
  margin-bottom: 10px;
}
.p-mediaHeader__link {
  display: block;
  color: #fff;
}
.p-mediaHeader__link.surround {
  border: 2px solid #fff;
  color: #fff;
  border-radius: 50px;
  padding: 5px 0;
}
.p-mediaHeader__link.surround span {
  padding-left: 30px;
  position: relative;
}
.p-mediaHeader__link.surround span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.p-mediaHeader__link.surround.home span::before {
  background: url(../img/media-home.svg) no-repeat center center/contain;
  width: 24px;
  height: 24px;
}
.p-mediaHeader__link.surround.media span::before {
  background: url(../img/media-top.svg) no-repeat center center/contain;
  width: 17px;
  height: 24px;
}
.p-mediaHeader__link.current:not(:first-child) {
  background-color: #fff;
  color: #368fa6;
}
.p-mediaHeader__link.current:not(:first-child).media span::before {
  -webkit-filter: invert(1);
          filter: invert(1);
}
.p-mediaHeader__icon {
  margin-top: 140px;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  padding: 0 12px;
}
.p-mediaHeader__icon a {
  width: 27px;
  height: 27px;
}
.p-mediaHeader__icon a img {
  width: 100%;
  height: 100%;
}
.p-mediaHeader__box {
  background: -webkit-gradient(linear, left top, left bottom, from(#195A6A), color-stop(22.11%, #1D6677), color-stop(37.06%, #1E6B7D), color-stop(57.1%, #22788C), color-stop(79.83%, #25849A), to(#368fa6));
  background: linear-gradient(180deg, #195A6A 0%, #1D6677 22.11%, #1E6B7D 37.06%, #22788C 57.1%, #25849A 79.83%, #368fa6 100%);
  width: calc(100% + 20px);
  margin: 58px -10px 0;
  height: 20px;
}

.p-mediaSide {
  position: fixed;
  height: 100%;
  width: 30%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 1180px) {
  .p-mediaSide {
    position: relative;
    width: 100%;
    margin: 0 264px 0 0;
    width: calc(100vw - 264px);
    height: 50vh;
  }
}
@media screen and (max-width: 767px) {
  .p-mediaSide {
    margin: 0;
    width: 100%;
    height: 50svh;
  }
}
.p-mediaSide figure {
  height: 33.333%;
}
.p-mediaSide figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center 30%;
     object-position: center 30%;
}
.p-mediaSide__text {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 50%;
  height: auto;
}

.p-mediaContents {
  margin: 0 300px 0 30%;
}
@media (max-width: 1180px) {
  .p-mediaContents {
    margin: 0 300px 0 0;
  }
}
@media screen and (max-width: 767px) {
  .p-mediaContents {
    margin: 0;
    width: 100%;
  }
}
.p-mediaContents__img {
  padding-block: 40px 30px;
}
@media screen and (max-width: 767px) {
  .p-mediaContents__img {
    padding-block: 20px 10px;
  }
}
.p-mediaContents__img img {
  width: 100%;
  height: 100%;
}

.p-mediaFooter__contact {
  background-color: #3e3a39;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 8px 10px;
  color: #fff;
  border-radius: 10px;
  gap: 15px;
  margin-bottom: 20px;
}
.p-mediaFooter__contact:not(:first-child) {
  margin-top: 20px;
  margin-bottom: 20px;
}
.p-mediaFooter__copy {
  margin-top: 30px;
  text-align: center;
  font-size: 0.6875rem;
  color: #fff;
  display: block;
}
.p-mediaFooter__address {
  font-size: 1rem;
  line-height: 1.75;
  color: #fff;
  font-style: normal;
}

.p-mediaRead {
  padding: 40px 0 0;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .p-mediaRead {
    padding: 0;
  }
}
.p-mediaRead__text {
  margin: 0 auto 40px;
}
.p-mediaRead__text h2 {
  font-size: 30px;
  line-height: 1.3333333333;
  font-weight: 800;
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .p-mediaRead__text h2 {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 800;
    font-size: 1rem;
    line-height: 1.75;
    text-align: center;
  }
}
.p-mediaRead__title {
  font-size: 30px;
  line-height: 1.3333333333;
  font-weight: 800;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .p-mediaRead__title {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 800;
    font-size: 1.25rem;
    line-height: 1.75;
  }
}

.p-single {
  padding-bottom: 100px;
}
.p-single.contact {
  padding-top: 40px;
}
.p-single *:not(.l-inner):not(h1) {
  margin-top: 10px;
}
.p-single h1 {
  font-size: 2rem;
  line-height: 1.5;
  font-weight: 800;
}
@media screen and (max-width: 767px) {
  .p-single h1 {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    line-height: 1.75;
  }
}
.p-single a {
  color: #005bac;
  text-decoration: underline;
}
.p-single ul li {
  list-style: disc;
}
.p-single ol li {
  list-style: decimal;
}
.p-single iframe,
.p-single video {
  width: 100%;
}

.p-about {
  padding-block: 60px;
  background-color: #ebf5ec;
}
@media screen and (max-width: 767px) {
  .p-about {
    padding-block: 40px;
  }
}
.p-about h2 {
  font-size: 45px;
  color: #368fa6;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-about h2 {
    font-size: 30px;
    margin-bottom: 20px;
  }
}
.p-about h3 {
  font-size: 30px;
  margin-bottom: 10px;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .p-about h3 {
    font-size: 18px;
  }
}
.p-about h3 span {
  font-size: 16px;
  font-weight: 400;
}
.p-about h3:not(:first-child) {
  border-top: 1px solid #231815;
  padding-top: 20px;
}
.p-about__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media screen and (max-width: 767px) {
  .p-about__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
.p-about__img {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 767px) {
  .p-about__img {
    width: 70%;
    margin: 0 auto;
  }
}
.p-about__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-about__text {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 61%;
          flex: 0 0 61%;
}
.p-about__name {
  text-align: right;
  margin-block: 20px;
}
.p-about h4 {
  margin-block: 20px 0;
}

.p-consultation {
  padding-block: 20px 80px;
}
@media screen and (max-width: 767px) {
  .p-consultation {
    padding-block: 10px 40px;
  }
}
.p-consultation__title {
  text-align: center;
  margin-bottom: 40px;
  color: #231815;
}
.p-consultation__title p {
  font-size: 45px;
  font-weight: 800;
  color: #368fa6;
}
@media screen and (max-width: 767px) {
  .p-consultation__title p {
    font-size: 30px;
    font-weight: 800;
  }
}
.p-consultation__title h2 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.75;
  font-weight: 500;
  color: #231815;
}
@media screen and (max-width: 767px) {
  .p-consultation__title h2 {
    font-size: 16px;
  }
}
.p-consultation__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}
.p-consultation__list li,
.p-consultation__list a {
  width: 325px;
  font-size: 20px;
  line-height: 1.5;
  font-weight: 500;
  color: #368fa6;
  border: 2px solid #368fa6;
  padding: 10px 20px;
  border-radius: 100px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-consultation__list li,
  .p-consultation__list a {
    width: 100%;
    font-size: 16px;
    max-width: 325px;
  }
}
.p-consultation__list a {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.p-consultation__list a:hover {
  background-color: #368fa6;
  color: #fff;
}
.p-consultation__list.page {
  margin-bottom: 40px;
}

.p-faq {
  padding-block: 80px;
}
@media screen and (max-width: 767px) {
  .p-faq {
    position: relative;
    z-index: 1;
    padding-block: 40px;
  }
}
.p-faq__title {
  text-align: center;
  margin-bottom: 40px;
  color: #231815;
}
.p-faq__title p {
  font-size: 45px;
  font-weight: 800;
  color: #368fa6;
}
@media screen and (max-width: 767px) {
  .p-faq__title p {
    font-size: 30px;
    font-weight: 800;
  }
}
.p-faq__title h2 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.75;
  font-weight: 500;
  color: #231815;
}
@media screen and (max-width: 767px) {
  .p-faq__title h2 {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .p-faq figure {
    position: absolute;
    width: 20%;
    top: -1%;
    z-index: -1;
  }
}
.p-faq__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  max-width: 1160px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-faq__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-faq__list {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.p-faq__list h3 {
  font-size: 20px;
  background-color: #368fa6;
  color: #fff;
  padding-block: 16px;
  padding-inline: 20px 40px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-faq__list h3 {
    font-size: 16px;
    padding-block: 10px;
    padding-inline: 10px 25px;
  }
}
.p-faq__list h3::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12.1px 7px 0 7px;
  border-color: #FFFFFF transparent transparent transparent;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .p-faq__list h3::after {
    right: 10px;
  }
}
.p-faq__list h3.is-open::after {
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}
.p-faq__list p {
  background-color: #ebf5ec;
  padding: 16px 20px;
  display: none;
}
@media screen and (max-width: 767px) {
  .p-faq__list p {
    font-size: 14px;
    padding: 10px;
  }
}

.p-office {
  padding-block: 80px;
}
@media screen and (max-width: 767px) {
  .p-office {
    padding-block: 40px;
  }
}
.p-office h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .p-office h2 {
    font-size: 20px;
  }
}
.p-office h2 span {
  font-size: 16px;
  font-weight: 400;
}
.p-office__link {
  display: block;
  -webkit-text-decoration: underline transparent;
          text-decoration: underline transparent;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.p-office__link:hover {
  text-decoration-color: currentColor;
}
.p-office__content {
  gap: 60px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media screen and (max-width: 767px) {
  .p-office__content {
    gap: 20px;
  }
}
.p-office__info {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 484px;
          flex: 0 0 484px;
}
@media screen and (max-width: 767px) {
  .p-office__info {
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
    width: 100%;
  }
}
.p-office__data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 20px;
}
.p-office__data dt {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100px;
          flex: 0 0 100px;
}
.p-office__data dd {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-office__list {
  margin-block: 20px;
  padding-block: 20px;
  border-top: 1px solid #231815;
  border-bottom: 1px solid #231815;
}
.p-office__map {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: auto;
  aspect-ratio: 850/622;
}
@media screen and (max-width: 767px) {
  .p-office__map {
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
    width: 100%;
  }
}
.p-office__map iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-office__link {
  position: relative;
  padding-left: 20px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.p-office__link::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 17.3px;
  border-color: transparent transparent transparent #368FA6;
}
.p-office__link:hover {
  opacity: 0.7;
}

.p-service__head {
  text-align: center;
  margin-block: 40px 0;
}
@media screen and (max-width: 767px) {
  .p-service__head {
    margin-block: 20px 0;
  }
}
.p-service__head p {
  font-size: 45px;
  font-weight: 700;
  color: #368fa6;
}
@media screen and (max-width: 767px) {
  .p-service__head p {
    font-size: 30px;
  }
}
.p-service__head h1 {
  font-size: 20px;
  line-height: 1.5;
  font-weight: 500;
  color: #231815;
}
@media screen and (max-width: 767px) {
  .p-service__head h1 {
    font-size: 16px;
  }
}

.p-privacy__head {
  margin-block: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-privacy__head p {
  font-size: 30px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-privacy__head p {
    font-size: 20px;
  }
}
.p-privacy__content {
  padding-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .p-privacy__content {
    padding-bottom: 40px;
  }
}
.p-privacy__read {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .p-privacy__read {
    margin-bottom: 20px;
  }
}
.p-privacy__item {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .p-privacy__item {
    margin-bottom: 20px;
  }
}
.p-privacy__item h2 {
  font-weight: 600;
  display: inline;
}
.p-privacy__item p {
  display: inline;
}

@media screen and (min-width: 1025px) {
  .pc-hidden {
    display: none;
  }
}

@media screen and (max-width: 1024px) {
  .tab-hidden {
    display: none;
  }
}

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

@media screen and (min-width: 1025px) {
  .sp-visible {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .sp-visible {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .sp-visible {
    display: block;
  }
}

@media screen and (max-width: 374px) {
  .sm-hidden {
    display: none;
  }
}

.lg-hidden {
  display: none;
}
@media screen and (max-width: 1600px) {
  .lg-hidden {
    display: block;
  }
}

.u-mt40 {
  margin-top: 40px;
}

.u-mt60 {
  margin-top: 60px;
}

.u-mt80 {
  margin-top: 80px;
}

.u-mt90 {
  margin-top: 90px;
}