@charset "UTF-8";
/*====================================
* 追加設定
=====================================*/
:root {
  --c-yellow: #ffff76;
  --c-red: #1b3b8b;
  --c-black: #000;
  --c-white: #fff;
  --c-dark: #555;
  --c-gray: #f5f5f5;
  --c-darkgray: #767676;
  --c-skyblue: #009fe8;
  --c-teal: #4dbac1;
  --c-gold: #cfad5f;
  --c-blue: #004896;
  --f-sans: Noto Sans JP, sans-serif;
  --f-gothic: 游ゴシック体, Yu Gothic, YuGothic, ヒラギノ角ゴ Pro, Hiragino Kaku Gothic Pro, メイリオ, Meiryo, MS Pゴシック, MS PGothic, sans-serif;
  --f-din: DINPro-Bold, sans-serif;
}

@font-face {
  font-weight: 100;
  font-family: "Noto Sans JP";
  src: url("../font/Noto_Sans_JP/NotoSansJP-Thin.woff2") format("woff2");
}
@font-face {
  font-weight: 200;
  font-family: "Noto Sans JP";
  src: url("../font/Noto_Sans_JP/NotoSansJP-ExtraLight.woff2") format("woff2");
}
@font-face {
  font-weight: 300;
  font-family: "Noto Sans JP";
  src: url("../font/Noto_Sans_JP/NotoSansJP-Light.woff2") format("woff2");
}
@font-face {
  font-weight: 400;
  font-family: "Noto Sans JP";
  src: url("../font/Noto_Sans_JP/NotoSansJP-Regular.woff2") format("woff2");
}
@font-face {
  font-weight: 500;
  font-family: "Noto Sans JP";
  src: url("../font/Noto_Sans_JP/NotoSansJP-Medium.woff2") format("woff2");
}
@font-face {
  font-weight: 600;
  font-family: "Noto Sans JP";
  src: url("../font/Noto_Sans_JP/NotoSansJP-SemiBold.woff2") format("woff2");
}
@font-face {
  font-weight: 700;
  font-family: "Noto Sans JP";
  src: url("../font/Noto_Sans_JP/NotoSansJP-Bold.woff2") format("woff2");
}
@font-face {
  font-weight: 800;
  font-family: "Noto Sans JP";
  src: url("../font/Noto_Sans_JP/NotoSansJP-ExtraBold.woff2") format("woff2");
}
@font-face {
  font-weight: 900;
  font-family: "Noto Sans JP";
  src: url("../font/Noto_Sans_JP/NotoSansJP-Black.woff2") format("woff2");
}
html {
  font-size: 2.5641025641vw;
}

body {
  color: var(--c-black);
  font-feature-settings: "palt";
  font-size: 1.6rem;
  overflow-x: hidden;
}
body.l-examinee {
  font-family: var(--f-gothic);
}
body.l-group {
  font-family: var(--f-sans);
}

a:not([class]) {
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  a:not([class]):hover {
    opacity: 0.7;
  }
}

@media (768px <= width) {
  html {
    font-size: 62.5%;
    scroll-padding-top: 14rem;
  }
}
.l-container {
  width: 100%;
  max-width: calc(1200px + 3rem);
  padding-inline: 2rem;
  margin-inline: auto;
}

@media (768px <= width) {
  .l-container {
    padding-inline: 1.5rem;
  }
}
.l-drawer-btn {
  position: relative;
  z-index: 1;
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  background-color: transparent;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .l-drawer-btn:hover {
    opacity: 0.7;
  }
}
.l-drawer-btn > span {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2rem;
  height: 0.3rem;
  border-radius: 100vh;
  background-color: var(--c-black);
}
.l-drawer-btn > span:nth-child(1) {
  transform: translate(-50%, calc(-50% - 0.75rem));
  transition: transform 0.3s ease;
}
.l-drawer-btn > span:nth-child(2) {
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
}
.l-drawer-btn > span:nth-child(3) {
  transform: translate(-50%, calc(-50% + 0.75rem));
  transition: transform 0.3s ease;
}
.l-drawer-btn.js-open > span {
  background-color: var(--c-white);
}
.l-drawer-btn.js-open > span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}
.l-drawer-btn.js-open > span:nth-child(2) {
  opacity: 0;
}
.l-drawer-btn.js-open > span:nth-child(3) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

@media (768px <= width) {
  .l-drawer-btn {
    width: 4rem;
    height: 4rem;
    margin-right: 1rem;
  }
  .l-drawer-btn > span {
    width: 3.6rem;
  }
  .l-drawer-btn > span:nth-child(1) {
    transform: translate(-50%, calc(-50% - 1.3rem));
  }
  .l-drawer-btn > span:nth-child(3) {
    transform: translate(-50%, calc(-50% + 1.3rem));
  }
  .l-drawer-btn.js-open > span:nth-child(1) {
    transform: translate(-50%, -50%) rotate(45deg);
  }
  .l-drawer-btn.js-open > span:nth-child(3) {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
}
.l-drawer-nav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
}
.l-drawer-nav_inner {
  position: relative;
  z-index: 1;
  transform: translateX(100%);
  overflow: scroll;
  width: 100%;
  height: 100%;
  margin: 0 0 0 auto;
  padding: 6rem 4rem;
  background-color: var(--c-red);
  transition: transform 0.3s ease;
}
.l-drawer-nav_title {
  margin-bottom: 4rem;
  color: var(--c-white);
  font-weight: 700;
  font-size: 3rem;
  font-family: var(--f-din);
}
.l-drawer-nav_menu {
  display: grid;
  margin-bottom: 5rem;
  font-size: 1.8rem;
  row-gap: 1em;
}
.l-drawer-nav_item {
  font-size: inherit;
}
.l-drawer-nav_link {
  display: block;
  position: relative;
  padding-left: 3rem;
  color: var(--c-white);
  font-size: inherit;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.l-drawer-nav_link::before {
  position: absolute;
  top: 0.8em;
  left: 0;
  width: 1.2rem;
  height: 0.2rem;
  background-color: var(--c-white);
  content: "";
}
@media (hover: hover) {
  .l-drawer-nav_link:hover {
    opacity: 0.7;
  }
}
.l-drawer-nav_search {
  margin-bottom: 3rem;
}
.l-drawer-nav_search_btn {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  min-height: 5rem;
  border-radius: 100vh;
  background-color: var(--c-white);
  color: var(--c-red);
  font-weight: 700;
  font-size: 1.4rem;
  text-decoration: none;
  letter-spacing: 0.09em;
  transition: opacity 0.3s ease;
  font-family: var(--f-sans);
  padding-left: 2rem;
}
.l-drawer-nav_search_btn::after {
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: url(../img/common/arrow_right_white.svg) no-repeat center/0.5rem;
  background-color: var(--c-red);
  vertical-align: middle;
  content: "";
}
@media (hover: hover) {
  .l-drawer-nav_search_btn:hover {
    opacity: 0.7;
  }
}
.l-drawer-nav_teachers_btn {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  min-height: 4.5rem;
  border: 1px solid var(--c-white);
  color: var(--c-white);
  font-weight: 500;
  font-size: 1.4rem;
  text-decoration: none;
  transition: opacity 0.3s ease;
  font-family: var(--f-sans);
  padding-left: 2rem;
}
.l-drawer-nav_teachers_btn::after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 2rem;
  height: 1px;
  background-color: var(--c-white);
  content: "";
}
@media (hover: hover) {
  .l-drawer-nav_teachers_btn:hover {
    opacity: 0.7;
  }
}
.l-drawer-nav_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.l-drawer-nav.js-open {
  pointer-events: auto;
}
.l-drawer-nav.js-open .l-drawer-nav_inner {
  transform: translateX(0);
}
.l-drawer-nav.js-open .l-drawer-nav_bg {
  opacity: 1;
}

@media (768px <= width) {
  .l-drawer-nav_inner {
    width: 45%;
    min-width: 40rem;
  }
  .l-drawer-nav_inner > * {
    max-width: 42.6rem;
    margin-left: auto;
    margin-right: auto;
  }
  .l-drawer-nav_title {
    font-size: min(3.90625vw, 4rem);
  }
  .l-drawer-nav_menu {
    font-size: min(2.0833333333vw, 2rem);
  }
  .l-drawer-nav_link {
    padding-left: 3rem;
  }
  .l-drawer-nav_link::before {
    width: 1.2rem;
  }
  .l-drawer-nav_search {
    margin-bottom: 3rem;
  }
  .l-drawer-nav_search_btn {
    min-height: 6rem;
    font-size: min(1.8229166667vw, 2rem);
  }
  .l-drawer-nav_search_btn::after {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-size: 1rem;
  }
  .l-drawer-nav_teachers_btn {
    min-height: 6rem;
    font-size: min(1.8229166667vw, 1.8rem);
  }
  .l-drawer-nav_teachers_btn::after {
    width: 6.5rem;
  }
}
@media (768px <= width <= 1280px) {
  .l-drawer-nav_search_btn {
    justify-content: center;
    padding-left: 0;
  }
  .l-drawer-nav_search_btn::after {
    content: none;
  }
  .l-drawer-nav_teachers_btn {
    justify-content: center;
    padding-left: 0;
  }
  .l-drawer-nav_teachers_btn::after {
    content: none;
  }
}
.win .l-drawer-nav_search_btn {
  font-size: 1.2rem;
}
.win .l-drawer-nav_teachers_btn {
  font-size: 1.2rem;
}
@media (768px <= width) {
  .win .l-drawer-nav_search_btn {
    font-size: min(1.5625vw, 1.8rem);
  }
  .win .l-drawer-nav_teachers_btn {
    font-size: min(1.5625vw, 1.6rem);
  }
}

.l-footer {
  background-color: #767676;
  padding-block: 3rem;
}
.l-footer_inner {
  display: flex;
  flex-direction: column;
  padding-inline: 3rem;
}
.l-footer_nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.l-footer_nav_item {
  color: var(--c-white);
  font-weight: 500;
  font-size: 1rem;
}
.l-footer_nav_item:not(:last-of-type)::after {
  content: "｜";
  padding-inline: 1em;
}
.l-footer_nav_link {
  color: inherit;
  font: inherit;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .l-footer_nav_link:hover {
    opacity: 0.7;
  }
}

@media (768px <= width) {
  .l-footer {
    padding-block: 4rem;
  }
  .l-footer_inner {
    padding-inline: 1.5rem;
  }
  .l-footer_nav {
    margin-bottom: 3rem;
    font-size: min(1.8229166667vw, 2rem);
  }
  .l-footer_nav_item {
    font-size: inherit;
  }
}
.l-header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  right: 0;
  left: 0;
  z-index: 900;
  width: 100%;
  background-color: var(--c-white);
  border-bottom: 2px solid var(--c-red);
}
.l-header_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 2rem;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
}
.l-header_label {
  flex-shrink: 0;
  padding: 0.2rem 0.4rem;
  font-weight: 500;
  font-size: min(2vw, 1rem);
  font-family: var(--f-sans);
  color: var(--c-red);
  border: 2px solid var(--c-red);
  position: relative;
}
.l-header_other {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: bold;
  color: var(--c-black);
  font-family: var(--f-sans);
  text-decoration: none;
  position: relative;
}
.l-header_other::after {
  content: "";
  display: inline-block;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: url(../img/common/arrow_right_white.svg) no-repeat center/0.75rem;
  background-color: var(--c-red);
  vertical-align: middle;
  transition: transform 0.3s;
}
@media (hover: hover) {
  .l-header_other:hover::after {
    transform: translateX(3px);
  }
}
.l-header_wrapper {
  margin: 0 10px 0 auto;
  display: flex;
  gap: 10px;
}
.l-header_search {
  display: none;
}
.l-header_mutual {
  display: none;
}
.l-header_mutual_link {
  text-decoration: none;
  color: var(--c-darkgray);
  border: 0.1rem solid var(--c-darkgray);
  display: block;
  letter-spacing: 0.05em;
  position: relative;
  transition: opacity 0.3s ease;
  font-family: var(--f-sans);
  font-weight: 500;
}
.l-header_mutual_link::after {
  content: "";
  display: inline-block;
  width: 2.4rem;
  height: 0.1rem;
  position: absolute;
  right: 0;
  top: calc(50% - 0.05rem);
  background-color: var(--c-darkgray);
}
@media (hover: hover) {
  .l-header_mutual_link:hover {
    opacity: 0.7;
  }
}

@media (768px <= width) {
  .l-header {
    overflow-y: hidden;
  }
  .l-header_inner {
    padding: 2.5rem min(2.6041666667vw, 3rem);
    height: min(10.9375vw, 14rem);
  }
  .l-header_label {
    padding: min(1.09375vw, 1.4rem) min(1.875vw, 2.4rem);
    font-size: min(1.25vw, 1.6rem);
    line-height: 1.3333333333;
    font-weight: bold;
  }
  .l-header_mutual {
    display: block;
  }
  .l-header_mutual_link {
    width: 23.2rem;
    line-height: 1.5;
    padding: 2rem 1.5rem;
  }
  .l-header_search {
    display: block;
    flex-grow: 1;
    text-align: end;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  .l-header_search.-manual .l-header_search_btn {
    color: #fff;
  }
  .l-header_search_btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    padding: 1.5rem 2rem 1.5rem;
    width: min(31.75vw, 25.4rem);
    height: min(7.8125vw, 8rem);
    border-radius: 0 100vh 100vh 0;
    background-color: var(--c-teal);
    color: var(--c-yellow);
    font-weight: 700;
    font-size: min(1.7777777778vw, 1.6rem);
    line-height: 1.3636363636;
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: opacity 0.3s ease;
    font-family: var(--f-sans);
    border: 2px solid var(--c-black);
    box-shadow: 6px 6px 0 var(--c-black);
    transform: translateX(20px);
    opacity: 0;
    transition: 0.3s ease-out;
    position: relative;
  }
  .l-header_search_btn::after {
    display: inline-block;
    position: absolute;
    top: 50%;
    right: 1.2rem;
    transform: translateY(-50%);
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 50%;
    background: url(../img/common/arrow_right_green.svg) no-repeat center/0.95rem;
    background-color: var(--c-white);
    vertical-align: middle;
    content: "";
  }
  .l-header_search_btn.-active {
    transform: translateX(0);
    opacity: 1;
  }
  .l-header_search_btn span {
    display: block;
    font-size: min(1.171875vw, 1.2rem);
  }
  .l-header_search_btn.u-bg-red::after {
    background-image: url(../img/common/arrow_right_red.svg);
  }
}
@media (768px <= width) and (hover: hover) {
  .l-header_search_btn:hover {
    transform: translate(6px, 6px);
    box-shadow: none;
  }
}
@media (768px <= width <= 1280px) {
  .l-header_search.-campaign {
    display: none;
  }
  .l-header_mutual_link {
    width: 26vw;
    line-height: 1.3333333333;
    padding: 1rem;
    font-size: min(1.875vw, 2.4rem);
  }
}
@media (width < 768px) {
  .l-header_other {
    display: none;
  }
}
@media screen and (min-width: 1281px) and (max-width: 1470px) {
  .l-header_mutual_link {
    width: 22rem;
    padding: 1.7rem 1.5rem;
  }
}
.win .l-header_label {
  font-size: 0.85rem;
}
@media (768px <= width) {
  .win .l-header_label {
    font-size: min(1.5625vw, 2rem);
    padding: 1rem;
  }
}
@media (768px <= width <= 1280px) {
  .win .l-header_mutual_link {
    font-size: min(1.5625vw, 2rem);
  }
}
@media screen and (min-width: 1281px) and (max-width: 1470px) {
  .win .l-header_search_btn {
    font-size: 1.8rem;
  }
}

.l-sec {
  padding-block: 6rem;
}

@media (768px <= width) {
  .l-sec {
    padding-block: 10rem;
  }
}
.c-btn_wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.c-btn {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  min-height: 10rem;
  padding: 1rem 2.5rem;
  background-color: var(--c-red);
  color: var(--c-yellow);
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.55;
  text-decoration: none;
  letter-spacing: 0.12em;
  transition: opacity 0.3s ease;
  position: relative;
  z-index: 1;
}
.c-btn::before {
  display: block;
  position: absolute;
  top: 0.4rem;
  left: 0.4rem;
  z-index: -1;
  width: 100%;
  height: 100%;
  border: 2px solid var(--c-red);
  content: "";
}
.c-btn::after {
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 2.5rem;
  transform: translateY(-50%);
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  background: url(../img/common/arrow_right_red.svg) no-repeat center/0.8rem;
  background-color: var(--c-yellow);
  vertical-align: middle;
  content: "";
}
@media (hover: hover) {
  .c-btn:hover {
    opacity: 0.7;
  }
}

@media (768px <= width) {
  .c-btn {
    font-size: 3rem;
    letter-spacing: 0.14em;
  }
  .c-btn::after {
    right: 3.5rem;
    width: 3.8rem;
    height: 3.8rem;
    background: url(../img/common/arrow_down_red.svg) no-repeat center/1rem;
    background-color: var(--c-yellow);
  }
}
.c-copyright {
  font-size: 1rem;
  text-align: center;
}

@media (768px <= width) {
  .l-examinee .c-copyright {
    font-size: min(1.5625vw, 1.8rem);
  }
  .l-group .c-copyright {
    font-size: min(1.5625vw, 1.4rem);
  }
}
.c-logo {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-family: var(--f-sans);
}
.c-logo a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: var(--c-red);
  font-weight: normal;
  font-size: min(4.1025641026vw, 1.6rem);
  line-height: 1.2142857143;
  text-decoration: none;
  letter-spacing: 0.03em;
  -moz-column-gap: 0.8rem;
       column-gap: 0.8rem;
  font-weight: 900;
  white-space: nowrap;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .c-logo a:hover {
    opacity: 0.7;
  }
}
.c-logo img {
  width: 3.4rem;
}

@media (768px <= width) {
  .c-logo a {
    font-size: min(1.7361111111vw, 2.5rem);
    line-height: 1.1875;
    letter-spacing: 0.05em;
    -moz-column-gap: min(1.25vw, 1.8rem);
         column-gap: min(1.25vw, 1.8rem);
  }
  .c-logo img {
    width: min(6.25vw, 8rem);
  }
}
.c-fixed-banner {
  position: -webkit-sticky;
  position: sticky;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}
.c-fixed-banner_link {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  height: 6rem;
  color: var(--c-white);
  font-weight: 700;
  line-height: 1.375;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.06em;
}
.c-fixed-banner_link::after {
  content: "";
  display: inline-block;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: url(../img/common/arrow_right_red.svg) no-repeat center/0.75rem;
  background-color: var(--c-white);
  vertical-align: middle;
}
.c-fixed-banner_link.-blue {
  background-color: #009fe8;
}
.c-fixed-banner_link.-blue::after {
  background-image: url(../img/common/arrow_right_blue.svg);
}
.c-fixed-banner_link.-green {
  background-color: #4dbac1;
}
.c-fixed-banner_link.-green::after {
  background-image: url(../img/common/arrow_right_green.svg);
}
.c-fixed-banner_link.-red {
  color: var(--c-yellow);
  background-color: var(--c-red);
}

@media (width < 768px) {
  .c-fixed-banner_link {
    display: flex;
    align-items: center;
    gap: 30px;
    text-align: left;
    font-size: 1.4rem;
  }
  .c-fixed-banner_link::after {
    content: "";
    display: inline-block;
    width: 1.8rem;
    height: 1.8rem;
    background-size: 0.6rem;
    vertical-align: middle;
  }
  .c-fixed-banner.-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto;
    grid-template-areas: "item3 item3" "item1 item2";
    align-items: end;
  }
  .c-fixed-banner.-group .c-fixed-banner_link.-blue {
    grid-area: item1;
  }
  .c-fixed-banner.-group .c-fixed-banner_link.-green {
    grid-area: item2;
  }
  .c-fixed-banner.-group .c-fixed-banner_link.-red {
    grid-area: item3;
    position: relative;
  }
  .c-fixed-banner.-examinee .c-fixed-banner_link {
    padding: 0 12vw;
    justify-content: space-between;
  }
}
@media (768px <= width) {
  .c-fixed-banner {
    position: fixed;
    top: min(11.71875vw, 15rem);
    bottom: auto;
    left: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: auto;
  }
  .c-fixed-banner_link {
    padding: 1.5rem 0 1.2rem;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    justify-content: center;
    position: relative;
    width: min(11.1111111111vw, 10rem);
    height: auto;
    font-size: min(2.0833333333vw, 1.6rem);
    border: 2px solid var(--c-black);
    border-right: none;
    border-radius: 24px 0 0 24px;
    box-shadow: 6px 6px 0 var(--c-black);
    transition: 0.3s ease-out;
    transition-property: transform, box-shadow;
    transform: translateX(100%);
  }
  .c-fixed-banner_link[href^="#"]::after {
    rotate: 90deg;
  }
}
@media (768px <= width) and (hover: hover) {
  .c-fixed-banner_link:hover {
    transform: translate(6px, 6px) !important;
    box-shadow: none;
  }
}
@media (768px <= width) {
  .c-fixed-banner_link.js-loading:nth-child(1) {
    transition-delay: 0s;
  }
  .c-fixed-banner_link.js-loading:nth-child(2) {
    transition-delay: 0.2s;
  }
  .c-fixed-banner_link.js-loading:nth-child(3) {
    transition-delay: 0.4s;
  }
  .c-fixed-banner_link.-active {
    transform: translateX(0);
  }
  @-webkit-keyframes arrow {
    0% {
      transform: translateX(0px);
    }
    5% {
      transform: translateX(2px);
    }
    10% {
      transform: translateX(0px);
    }
    15% {
      transform: translateX(2px);
    }
    20% {
      transform: translateX(0px);
    }
    100% {
      transform: translateX(0px);
    }
  }
  @keyframes arrow {
    0% {
      transform: translateX(0px);
    }
    5% {
      transform: translateX(2px);
    }
    10% {
      transform: translateX(0px);
    }
    15% {
      transform: translateX(2px);
    }
    20% {
      transform: translateX(0px);
    }
    100% {
      transform: translateX(0px);
    }
  }
  .c-fixed-banner_link .c-vertical {
    writing-mode: vertical-rl;
    font-feature-settings: initial;
    text-align: start;
  }
  .c-fixed-banner_link .c-vertical span {
    display: block;
    font-size: min(1.5555555556vw, 1.4rem);
  }
  .c-fixed-banner_link-inner {
    display: flex;
    flex-direction: row-reverse;
    font-size: min(2.34375vw, 1.8rem);
    line-height: 1.3;
  }
}
.c-lead {
  margin-bottom: 3rem;
  color: var(--c-dark);
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 1.4444444444;
  text-align: center;
  letter-spacing: 0.1em;
  font-family: var(--f-sans);
}

.c-modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  visibility: hidden;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 0.3s ease;
}
.c-modal.is-open {
  visibility: visible;
  opacity: 1;
}
.c-modal_overlay {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
}
.c-modal_content {
  position: relative;
  overflow: scroll;
  max-width: calc(100% - 4rem);
  padding: 1rem 1rem;
  background-color: var(--c-white);
}
.c-modal_close {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 4rem;
  height: 4rem;
  border: none;
  border-radius: 50%;
  background-color: var(--c-white);
  cursor: pointer;
}
.c-modal_close::before, .c-modal_close::after {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2.5rem;
  height: 0.2rem;
  background-color: var(--c-blue);
  content: "";
}
.c-modal_close::before {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.c-modal_close::after {
  transform: translate(-50%, -50%) rotate(45deg);
}
.c-modal_content_img {
  margin-inline: auto;
  max-height: 80vh;
}

.c-title {
  display: inline-block;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 2rem;
  padding: 1.5rem 3rem;
  border-radius: 1rem;
  background-color: var(--c-red);
  color: var(--c-white);
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.05em;
  font-family: var(--f-sans);
}
.c-title > small {
  font-size: 1em;
}
.c-title__02 {
  margin-bottom: 6rem;
  color: var(--c-red);
  font-weight: bold;
  text-align: center;
  font-family: var(--f-sans);
  position: relative;
}
.c-title__02::after {
  content: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -2.6rem;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--c-black);
  white-space: nowrap;
  z-index: 1;
}
.c-title__02 span {
  display: block;
  padding-top: 20px;
  border-top: 2px solid var(--c-red);
  position: relative;
  font-size: 2.6rem;
  line-height: 1.4;
  z-index: 2;
}
.c-title__02 + * {
  z-index: 5;
}
.c-title__03 {
  margin-bottom: 10rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: var(--c-black);
}
.c-title__03::before, .c-title__03::after {
  content: "";
  display: block;
  width: min(40rem, 32%);
  height: 3px;
  background-color: var(--c-black);
  z-index: 10;
}
.c-title__03::before {
  left: 0;
}
.c-title__03::after {
  right: 0;
}
.c-title__03 div {
  display: flex;
  gap: min(5.2151238592vw, 4rem);
  position: relative;
}
.c-title__03 div::after {
  content: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -4rem;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--c-black);
  white-space: nowrap;
  z-index: 1;
}
.c-title__03 div span {
  position: relative;
  font-size: 2.6rem;
  z-index: 2;
}
.c-title__03 div span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--c-yellow);
  border-radius: 50%;
  width: 6rem;
  height: 6rem;
  z-index: -1;
}
.c-title__04 {
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.c-title__04::after {
  content: "";
  display: block;
  width: 26px;
  aspect-ratio: 26/22;
  -webkit-clip-path: polygon(50% 100%, 100% 0, 0 0);
          clip-path: polygon(50% 100%, 100% 0, 0 0);
  background: linear-gradient(45deg, var(--c-red), var(--c-red));
}
.c-title__04 span {
  padding: 1rem;
  width: 100%;
  display: grid;
  place-content: center;
  text-align: center;
  border: 3px solid var(--c-red);
  font-size: 2.4rem;
  color: var(--c-red);
  background-color: #fff;
  border-radius: 80px;
  line-height: 1.2;
}

@media (width < 768px) {
  .c-title__02 {
    line-height: 1;
  }
}
@media (768px <= width) {
  .c-title {
    margin-bottom: 4rem;
    padding: min(1.953125vw, 2.5rem) min(3.125vw, 4rem);
    font-size: min(2.5vw, 3.2rem);
  }
  .c-title__02::after {
    bottom: calc(-1 * min(2.734375vw, 3.5rem));
    font-size: min(1.5625vw, 2rem);
  }
  .c-title__02 span {
    font-size: min(3.4375vw, 4.4rem);
    border-top: 3px solid var(--c-red);
  }
  .c-title__03 div {
    gap: min(2.34375vw, 3rem);
  }
  .c-title__03 div::after {
    bottom: -5rem;
    font-size: min(1.5625vw, 2rem);
  }
  .c-title__03 div span {
    font-size: min(3.4375vw, 4.4rem);
  }
  .c-title__03 div span::before {
    width: min(7.8125vw, 10rem);
    height: min(7.8125vw, 10rem);
  }
  .c-title__04 span {
    padding: 2.2rem 1rem;
    font-size: min(3.28125vw, 4.2rem);
  }
}
.pagetop {
  right: 1rem;
  z-index: 1000;
}
.pagetop a {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--c-red);
  border-radius: 100%;
  width: 5rem;
  height: 5rem;
}
.pagetop a::after {
  content: "";
  display: block;
  -webkit-clip-path: polygon(50% 0, 100% 100%, 0 100%);
          clip-path: polygon(50% 0, 100% 100%, 0 100%);
  width: 1.8rem;
  height: 1.2rem;
  background-color: var(--c-white);
}

.l-footer {
  position: relative;
}

@media (width < 768px) {
  .l-group .pagetop.active {
    bottom: 16.5rem !important;
  }
}
.p-mv + .p-campaign {
  padding-top: min(25.641025641vw, 10rem);
}

.p-campaign + .p-gnav {
  padding-top: 2rem;
}
.p-campaign_inner {
  margin: auto;
  padding: 0 20px;
  max-width: 1100px;
  text-align: center;
  color: #555555;
}
.p-campaign_title {
  margin: auto;
  padding-bottom: 5px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: min(2.5vw, 3.2rem);
  letter-spacing: 0;
}
.p-campaign_title span {
  color: var(--c-red);
  font-weight: bold;
}
.p-campaign_title span.m {
  font-size: min(3.125vw, 4rem);
}
.p-campaign_title span.l {
  font-size: min(3.90625vw, 5rem);
}
.p-campaign p {
  margin-top: 40px;
  font-size: min(4.1025641026vw, 1.6rem);
  line-height: 1.8;
  font-weight: bold;
  text-align: left;
}
.p-campaign_box figure {
  margin: auto;
}

@media (width < 768px) {
  .p-campaign {
    padding-block: 2rem;
  }
  .p-campaign_inner {
    width: 100%;
    max-width: calc(1200px + 3rem);
    padding-inline: 2rem;
    margin-inline: auto;
  }
  .p-campaign_title {
    font-size: min(4.6153846154vw, 1.8rem);
  }
  .p-campaign_title div {
    margin: 0 auto;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    border-bottom: 4px solid var(--c-red);
  }
  .p-campaign_title div span.m {
    font-size: min(5.641025641vw, 2.2rem);
  }
  .p-campaign_title div span.l {
    font-size: min(6.1538461538vw, 2.4rem);
  }
  .p-campaign_box {
    margin-top: 58px;
  }
}
@media (768px <= width) {
  .p-mv + .p-campaign {
    padding: min(12.5vw, 16rem) 0 min(7.8125vw, 10rem);
  }
  .p-campaign {
    padding-block: 8rem;
  }
  .p-campaign_title {
    font-size: min(2.5vw, 3.2rem);
    border-bottom: 10px solid var(--c-red);
  }
  .p-campaign_title div {
    display: inline-block;
  }
  .p-campaign_title div span.m {
    font-size: min(3.125vw, 4rem);
  }
  .p-campaign_title div span.l {
    font-size: min(3.90625vw, 5rem);
  }
  .p-campaign p {
    font-size: min(2.2222222222vw, 2rem);
    text-align: center;
  }
  .p-campaign_box {
    margin-top: 80px;
    display: flex;
    gap: min(4.6875vw, 6rem);
  }
  .p-campaign_box figure {
    width: 50%;
  }
}
.p-column {
  padding: 70px 0 80px;
}
.p-column .l-container {
  padding: 5rem 5rem 5.6rem;
  background: #EBF9FF;
  max-width: 1100px;
}
.p-column__tit {
  margin: auto;
  width: 80%;
}
.p-column__list {
  margin: 25px auto 0;
  max-width: 1000px;
}
.p-column__list > li {
  padding: 36px 53px 55px 40px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 0 60px;
  border: 3px solid #0078E5;
  border-radius: 10px;
  background-color: #fff;
}
.p-column__list > li + li {
  margin-top: 30px;
}
.p-column__box {
  max-width: 680px;
  flex: 1;
}
.p-column__box .tit {
  color: #0078E5;
  font-weight: bold;
  font-size: 2rem;
}
.p-column__box .catch {
  margin-top: 25px;
  font-weight: bold;
  line-height: 1.4;
  font-size: 1.5rem;
}
.p-column__box p {
  margin-top: 25px;
  line-height: 2;
  font-size: 1.125rem;
}
.p-column figure {
  display: grid;
  place-content: center;
}
.p-column__note {
  margin-top: 1em;
  width: 100%;
  text-align: right;
  font-size: 95%;
  color: red;
}

@media (width < 768px) {
  .p-column .l-container {
    padding: 2rem 2rem 2.6rem;
  }
  .p-column__list > li figure img {
    margin: auto;
    width: 80%;
  }
}
@media (768px <= width) {
  .p-column__tit {
    width: 70rem;
  }
  .p-column__list > li {
    flex-direction: row;
  }
  .p-column__list > li figure {
    width: 32%;
  }
  .p-column__box .tit {
    font-size: 3.2rem;
  }
  .p-column__box .catch {
    font-size: 2.4rem;
  }
  .p-column__box p {
    font-size: 1.8rem;
  }
}
.p-detail_content {
  overflow: hidden;
}
.p-detail__target .tit {
  text-align: center;
  font-size: 1.625rem;
}
.p-detail__target .scroll {
  margin: 30px auto 40px;
  overflow-x: scroll;
}
.p-detail__target .scroll figure {
  width: 1000px;
}

@media (768px <= width) {
  .p-detail__target .tit {
    font-size: 2.8rem;
  }
  .p-detail__target .scroll figure {
    width: 100%;
  }
}
.p-gnav_title {
  margin-bottom: 2rem;
  color: var(--c-red);
  font-weight: 700;
  font-size: 2.4rem;
  font-family: var(--f-din);
  text-align: center;
  text-transform: capitalize;
  letter-spacing: -0.02em;
}
.p-gnav_menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
.p-gnav_item {
  width: calc((100% - 40px) / 3);
}
.p-gnav_link {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 6rem;
  border-radius: 1rem;
  background-color: var(--c-red);
  font-family: var(--f-sans);
  color: var(--c-white);
  font-weight: 600;
  line-height: 1.5;
  text-decoration: none;
  letter-spacing: 0.07em;
  border: 2px solid var(--c-black);
  box-shadow: 6px 6px 0 var(--c-black);
  transition: 0.3s ease-out;
  position: relative;
}
.p-gnav_link::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 1.8rem;
  transform: translateY(-50%) rotate(90deg);
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: url(../img/common/arrow_right_red.svg) no-repeat center/0.75rem;
  background-color: var(--c-white);
  vertical-align: middle;
}
@media (hover: hover) {
  .p-gnav_link:hover {
    transform: translate(6px, 6px);
    box-shadow: none;
  }
}

@media (768px <= width) {
  .p-gnav {
    padding-top: 18rem;
    padding-bottom: 12rem;
  }
  .p-gnav_inner {
    max-width: 1100px;
  }
  .p-gnav_title {
    margin-bottom: 3rem;
    font-size: 4rem;
  }
  .p-gnav_menu {
    gap: 20px;
  }
  .p-gnav_link {
    width: 100%;
    height: auto;
    aspect-ratio: 16/7;
    padding: 2.7rem 3rem;
    font-size: min(2.1484375vw, 2.2rem);
    line-height: 1.4545454545;
    letter-spacing: 0.05em;
  }
  .p-gnav_link::after {
    width: 2.5rem;
    height: 2.5rem;
  }
}
@media (768px <= width <= 1280px) and (768px <= width) {
  .p-gnav {
    padding-top: 12rem;
    padding-bottom: 10rem;
  }
  .p-gnav_link {
    font-size: min(1.7578125vw, 1.8rem);
  }
}
@media (width < 768px) {
  .p-gnav_item {
    width: 100%;
  }
  .p-gnav_link {
    padding: 1rem 2rem;
  }
}
@media (768px <= width) {
  .l-group .p-gnav {
    padding-top: 12rem;
    padding-bottom: 12rem;
    background-color: #fafafa;
  }
}
.p-mv {
  position: relative;
}
.p-mv_bgs {
  margin-bottom: 6rem;
  display: flex;
  flex-direction: column;
}
.p-mv_cta {
  padding: 0.6rem 2rem;
  background-color: var(--c-red);
}
.p-mv_cta_btn {
  display: block;
  position: relative;
  padding: 0.6rem 2rem;
  border-radius: 100vh;
  background-color: var(--c-white);
  color: var(--c-red);
  font-weight: 700;
  line-height: 1.25;
  text-decoration: none;
  letter-spacing: 0.04em;
  font-size: 1.4rem;
  text-align: center;
}
.p-mv_cta_btn::after {
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  background: url(../img/common/arrow_right_white.svg) no-repeat center/0.75rem;
  background-color: var(--c-red);
  vertical-align: middle;
  content: "";
}
.p-mv_cta_btn span {
  margin-top: 5px;
  display: block;
  font-size: 1rem;
}
.p-mv_content_text {
  position: absolute;
  left: 20px;
  bottom: -11rem;
  letter-spacing: 0.12em;
  font-weight: 700;
  font-size: 2.95rem;
}

.p-hero {
  position: relative;
}
.p-hero_bg {
  width: 100%;
  height: auto;
}
.p-hero_title {
  width: 77.9487179487vw;
  position: absolute;
  top: 42.0512820513vw;
  left: 9.7435897436vw;
  z-index: 1;
}
.p-hero_flag {
  width: 71.5384615385vw;
  position: absolute;
  top: 65.641025641vw;
  left: 13.8461538462vw;
}

@media (768px <= width) {
  .p-mv_content_text {
    left: min(13.671875vw, 17.5rem);
    bottom: calc(-1 * min(7.03125vw, 9rem));
    font-size: min(3.125vw, 4rem);
  }
  .p-hero_title {
    width: 28.9583333333vw;
    top: 4.53125vw;
    left: 35.5729166667vw;
  }
  .p-hero_flag {
    width: 25.8333333333vw;
    top: 13.6979166667vw;
    left: 36.9791666667vw;
  }
}
@media (1280px <= width) {
  .p-mv_content_text {
    left: calc(50% - 600px);
  }
}
.p-intro {
  padding-top: 3rem;
  padding-bottom: 0;
}
.p-intro_inner {
  padding: 4rem 2rem;
  border: 1px solid var(--c-red);
  border-radius: 1rem;
  background-color: var(--c-white);
}
.p-intro_title {
  margin-bottom: 2rem;
  color: var(--c-red);
  font-weight: 700;
  font-size: 2rem;
  text-align: center;
  letter-spacing: 0.12em;
}
.p-intro_lead {
  margin-bottom: 1.5rem;
  color: var(--c-dark);
  line-height: 2;
  letter-spacing: 0.04em;
}
.p-intro_box {
  position: relative;
  margin-bottom: 3rem;
  border-radius: 1rem;
  background-color: #fef2f2;
  padding-block: 3rem;
}
.p-intro_box::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  height: 100%;
  background-color: #fef2f2;
  content: "";
}
.p-intro_box_text {
  position: relative;
  color: var(--c-red);
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.7777777778;
  text-align: center;
  letter-spacing: 0.05em;
}
.p-intro_catch {
  position: relative;
  margin-bottom: 2rem;
  padding: 1rem 3rem;
  border: 0.3rem solid var(--c-red);
  border-radius: 100vh;
  background-color: var(--c-white);
  color: var(--c-red);
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  letter-spacing: 0.05em;
}
.p-intro_catch::before {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 0.3rem;
  height: 4rem;
  background-color: var(--c-red);
  content: "";
}
.p-intro_middle {
  margin-top: 20px;
  text-align: center;
}
.p-intro_middle + p {
  margin-top: 20px;
}
.p-intro_contents {
  display: table;
  margin-inline: auto;
}
.p-intro_subtitle {
  margin: 2rem 0;
  font-weight: 700;
  font-size: 1.8rem;
  text-align: center;
  letter-spacing: 0.12em;
}
.p-intro_text {
  color: var(--c-dark);
  line-height: 2;
  letter-spacing: 0.04em;
}
.p-intro_text span {
  font-weight: bold;
}
.p-intro_text + .p-intro_text {
  margin-top: 20px;
}
.p-intro_text + .p-detail_content_remarks {
  margin-top: 40px;
}
.p-intro_text + .p-intro_catch {
  margin-top: 40px;
}
.p-intro_text + .p-intro_catch::before {
  content: none;
}
.p-intro_note {
  margin-top: 40px;
  padding: 30px 20px;
  background-color: #f5f5f5;
}
.p-intro_note .tit {
  text-align: center;
  font-size: 1.6rem;
  font-weight: bold;
}
.p-intro_note .tit + .tex {
  margin-top: 20px;
}
.p-intro_note .tex {
  font-size: 1.6rem;
}
.p-intro_note .tex + .p-detail_content_remarks {
  margin-top: 20px;
}

@media (768px <= width) {
  .p-intro {
    padding-top: 10rem;
    background-color: #fafafa;
  }
  .p-intro_inner {
    max-width: 1100px;
    margin-inline: auto;
    padding: 6rem min(2.6041666667vw, 6rem);
  }
  .p-intro_title {
    margin-bottom: min(2.6041666667vw, 6rem);
    font-size: min(3.125vw, 3.2rem);
  }
  .p-intro_lead {
    margin-bottom: 2rem;
    font-weight: 500;
    font-size: min(2.0833333333vw, 2rem);
    text-align: center;
  }
  .p-intro_box {
    margin-bottom: 4rem;
    padding-block: 3.5rem;
    padding-inline: 1.5rem;
  }
  .p-intro_box::before {
    content: none;
  }
  .p-intro_box_text {
    font-size: min(2.34375vw, 2rem);
    line-height: 1.8;
  }
  .p-intro_catch {
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 4rem;
    padding: 2rem 7rem;
    font-size: min(2.34375vw, 2rem);
  }
  .p-intro_catch::before {
    height: 6rem;
  }
  .p-intro_subtitle {
    font-weight: 700;
    font-size: 1.8rem;
    text-align: center;
    font-size: min(2.6041666667vw, 2rem);
  }
  .p-intro_text {
    font-weight: 500;
    font-size: min(2.0833333333vw, 2rem);
    line-height: 1.8;
  }
  .p-intro_text b {
    display: block;
    margin-bottom: 1em;
  }
  .p-intro_note {
    margin-top: 40px;
    padding: 30px 40px;
  }
  .p-intro_note .tit {
    text-align: center;
    font-size: min(2.0833333333vw, 2rem);
    font-weight: bold;
  }
  .p-intro_note .tex {
    font-size: min(2.0833333333vw, 2rem);
  }
}
.p-merit_list {
  display: flex;
  flex-direction: column;
  counter-reset: counter;
  row-gap: 6rem;
}
.p-merit_list:not(:last-of-type) {
  margin-bottom: 6rem;
}
.p-merit_list_item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.p-merit_list_title {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2rem;
  color: var(--c-red);
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.6666666667;
  text-align: center;
  letter-spacing: 0.05em;
}
.p-merit_list_title::before {
  color: rgba(118, 118, 118, 0.5);
  font-size: 5rem;
  line-height: 1;
  font-family: var(--f-din);
  counter-increment: counter 1;
  content: "" counter(counter);
}
.p-merit_list_img {
  width: 14rem;
  margin-bottom: 2rem;
}
.p-merit_list_text {
  color: var(--c-dark);
  line-height: 2;
  text-align: center;
  letter-spacing: 0.05em;
}

@media (768px <= width) {
  .p-merit_list {
    flex-direction: row;
    justify-content: space-between;
    -moz-column-gap: min(2.6041666667vw, 4rem);
         column-gap: min(2.6041666667vw, 4rem);
    max-width: 1100px;
    margin-inline: auto;
  }
  .p-merit_list:not(:last-of-type) {
    margin-bottom: min(7.8125vw, 12rem);
  }
  .p-merit_list_item {
    flex: 1;
  }
  .p-merit_list_title {
    font-size: min(2.34375vw, 2.4rem);
    line-height: 1.6666666667;
  }
  .p-merit_list_title::before {
    font-size: min(5.2083333333vw, 6rem);
  }
  .p-merit_list_img {
    width: min(15.625vw, 16rem);
  }
  .p-merit_list_text {
    font-size: min(1.8229166667vw, 1.8rem);
    line-height: 2;
  }
}
.p-cta_subtitle {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 0.5rem;
  color: var(--c-dark);
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.08em;
  gap: 1em;
}
.p-cta_subtitle::before {
  content: "＼";
}
.p-cta_subtitle::after {
  content: "／";
}
.p-cta_title {
  position: relative;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  color: var(--c-dark);
  font-weight: 700;
  font-size: 2.2rem;
  line-height: 1.3636363636;
  text-align: center;
}
.p-cta_title::before {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 5rem;
  height: 1px;
  background-color: var(--c-red);
  content: "";
}
.p-cta_lead {
  position: relative;
  padding-bottom: 3rem;
  color: var(--c-dark);
  line-height: 2;
}
.p-cta_lead01 {
  position: relative;
  padding-bottom: 6rem;
  color: var(--c-dark);
  line-height: 2;
}
.p-cta_lead01::before, .p-cta_lead01::after {
  position: absolute;
  bottom: 2.5rem;
  width: 8rem;
  height: 1px;
  background-color: var(--c-red);
  content: "";
}
.p-cta_lead01::before {
  right: calc(50% - 0.1rem);
  transform: rotate(12deg);
}
.p-cta_lead01::after {
  left: calc(50% - 0.1rem);
  transform: rotate(-12deg);
}
.p-cta_list {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
  row-gap: 1.5rem;
}
.p-cta_item {
  padding: 1.5rem 2rem 2.5rem;
  border-radius: 1rem;
  background-color: #fef2f2;
}
.p-cta_item_part {
  color: var(--c-red);
  font-weight: 600;
  font-size: 1.8rem;
  line-height: 1.4444444444;
  text-align: center;
}
.p-cta_item_title {
  margin-bottom: 0.5rem;
  color: var(--c-dark);
  font-weight: 600;
  font-size: 1.8rem;
  line-height: 1.4444444444;
  text-align: center;
}
.p-cta_item_text {
  color: var(--c-dark);
  font-size: 1.4rem;
  line-height: 1.5714285714;
  text-align: center;
}
.p-cta_text {
  margin-bottom: 3rem;
  color: var(--c-dark);
  line-height: 2;
}
.p-cta_links_list {
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
}
.p-cta_links_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 1rem;
}
.p-cta_links_item.-blue a {
  background-color: #009fe8;
}
.p-cta_links_item.-green a {
  background-color: #4dbac1;
}
.p-cta_links_item a {
  padding: 1.5rem 2rem;
  width: 100%;
  display: block;
  border-radius: 1rem;
  text-decoration: none;
  border: 2px solid var(--c-black);
  box-shadow: 6px 6px 0 var(--c-black);
  transition: 0.3s ease-out;
  position: relative;
}
.p-cta_links_item a::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 2.5rem;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: url(../img/common/arrow_right_green.svg) no-repeat center/0.75rem;
  background-color: var(--c-white);
  vertical-align: middle;
}
@media (hover: hover) {
  .p-cta_links_item a:hover {
    transform: translate(6px, 6px);
    box-shadow: none;
    opacity: 1;
  }
}
.p-cta_links_title {
  color: var(--c-white);
  font-weight: 700;
  font-size: 2rem;
  line-height: 1;
  text-align: center;
  letter-spacing: 0.08em;
}

@media (768px <= width) {
  .p-cta .l-container {
    max-width: calc(1100px + 3rem);
    margin-inline: auto;
  }
  .p-cta_subtitle {
    font-size: min(2.6041666667vw, 2.4rem);
  }
  .p-cta_title {
    margin-bottom: 4rem;
    padding-bottom: 0;
    font-size: min(3.125vw, 3.2rem);
    line-height: 1.5625;
  }
  .p-cta_title::before {
    content: none;
  }
  .p-cta_lead {
    padding-bottom: 3rem;
    font-size: min(2.0833333333vw, 2rem);
    line-height: 1.8;
    text-align: center;
  }
  .p-cta_lead::before, .p-cta_lead::after {
    bottom: 3rem;
  }
  .p-cta_lead01 {
    padding-bottom: 8rem;
    font-size: min(2.0833333333vw, 2rem);
    line-height: 1.8;
    text-align: center;
  }
  .p-cta_lead01::before, .p-cta_lead01::after {
    bottom: 3rem;
  }
  .p-cta_list {
    flex-direction: row;
    margin-bottom: 3rem;
    border-radius: 1rem;
  }
  .p-cta_item {
    flex: 1;
    padding: 3rem 1.5rem;
    border-radius: 0;
  }
  .p-cta_item:not(:first-of-type) {
    position: relative;
  }
  .p-cta_item:not(:first-of-type)::before {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 0.3rem;
    height: calc(100% - 6rem);
    background-color: var(--c-white);
    content: "";
  }
  .p-cta_item_part {
    font-size: min(2.6041666667vw, 2.4rem);
  }
  .p-cta_item_title {
    font-weight: 700;
    font-size: min(2.2135416667vw, 2rem);
  }
  .p-cta_item_text {
    font-size: 1.6rem;
  }
  .p-cta_text {
    font-size: min(2.0833333333vw, 2rem);
    line-height: 1.8;
    text-align: center;
  }
  .p-cta_links_list {
    flex-direction: row;
    -moz-column-gap: 3rem;
         column-gap: 3rem;
  }
  .p-cta_links_item {
    flex: 1;
    row-gap: 2rem;
  }
  .p-cta_links_item a {
    padding: 5.2rem 1.5rem;
  }
  .p-cta_links_title {
    font-size: min(3.125vw, 3.2rem);
  }
}
.p-detail {
  position: relative;
  padding-bottom: 0;
  background: rgba(27, 59, 139, 0.05);
}
.p-detail::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10rem;
  background-color: var(--c-white);
  content: "";
}
.p-detail .l-container {
  position: relative;
}
.p-detail_tag {
  margin-bottom: 3rem;
}
.p-detail_tag span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 24rem;
  min-height: 5rem;
  border-radius: 1rem;
  background-color: var(--c-white);
  color: var(--c-red);
  font-weight: 700;
  font-size: 2.4rem;
  font-family: "Noto Sans JP";
  text-align: center;
  letter-spacing: 0.1em;
}
.p-detail_subtitle {
  margin-bottom: 1rem;
  color: var(--c-red);
  font-weight: 700;
  font-size: 2.2rem;
  line-height: 1.3636363636;
  text-align: center;
  letter-spacing: 0.05em;
}
.p-detail_intro {
  margin-bottom: 3rem;
  color: var(--c-dark);
  font-weight: 700;
  font-size: 1.4rem;
  text-align: center;
  text-decoration: underline;
  -webkit-text-decoration-color: var(--c-red);
          text-decoration-color: var(--c-red);
  letter-spacing: 0.05em;
  line-height: 1.6;
  text-decoration-thickness: 0.5rem;
  text-underline-offset: 0.3em;
}
.p-detail_intro > strong {
  font-size: 2.3rem;
}
.p-detail_text {
  margin-bottom: 1% 6;
  color: var(--c-dark);
  line-height: 2;
}
.p-detail_note {
  margin-bottom: 3rem;
  color: var(--c-dark);
  line-height: 2;
}
.p-detail_imgs {
  display: flex;
  margin-bottom: 3rem;
}
.p-detail_img {
  flex: 1;
}
.p-detail_img img {
  height: 20rem;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-detail_contents {
  display: grid;
  row-gap: 3rem;
}
.p-detail_content_figure {
  margin: 20px 0 30px;
}
.p-detail_content_title {
  color: var(--c-dark);
  font-weight: 700;
  font-size: 1.8rem;
  text-align: center;
  letter-spacing: 0.05em;
}
.p-detail_content_title + p {
  margin-top: 1rem;
  font-size: 1rem;
  text-align: center;
  margin-bottom: 2rem;
}
.p-detail_content_list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.p-detail_content_list_item {
  width: 100%;
  height: auto;
  padding: 2rem 2rem;
  border-radius: 1rem;
  background-color: var(--c-white);
  aspect-ratio: 35/18;
}
.p-detail_content_list_title {
  position: relative;
  margin-bottom: 0.5em;
  padding-bottom: 0.5em;
  color: #555;
  color: var(--c-red);
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.6;
  text-align: center;
  letter-spacing: 0.05em;
}
.p-detail_content_list_title::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1em;
  height: 1px;
  background-color: var(--c-dark);
  content: "";
}
.p-detail_content_list_text {
  color: var(--c-dark);
  font-weight: 500;
  font-size: 2rem;
  line-height: 1.6;
  text-align: center;
  letter-spacing: 0.05em;
}
.p-detail_content_box {
  margin-bottom: 2rem;
  padding: 2rem 1rem;
  border-radius: 1rem;
  background: var(--c-white);
}
.p-detail_content_box_item {
  position: relative;
  margin-left: 1em;
  color: var(--c-dark);
  font-weight: 500;
  font-size: 1rem;
  line-height: 2;
  letter-spacing: 0.05em;
}
.p-detail_content_box_item::before {
  position: absolute;
  top: 0.8em;
  right: calc(100% + 0.5em);
  width: 0;
  height: 0;
  border-width: 0.3rem 0 0.3rem 0.3rem;
  border-style: solid;
  border-color: transparent transparent transparent #1b3b8b;
  content: "";
}
.p-detail_content_remarks {
  color: var(--c-dark);
  font-size: 1.2rem;
  line-height: 1.8333333333;
  position: relative;
  padding-left: 1em;
}
.p-detail_content_remarks::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}
.p-detail_content_remarks a {
  color: var(--c-skyblue);
}
.p-detail dl {
  display: flex;
  flex-direction: column;
  padding: 2rem 2rem;
}
.p-detail dl dt {
  margin-bottom: 1rem;
  color: var(--c-red);
  font-weight: 700;
  font-size: 1.8rem;
  text-align: center;
  letter-spacing: 0.05em;
}
.p-detail dl dd {
  color: var(--c-dark);
  font-weight: 500;
  line-height: 2;
}
.p-detail dl dd + dt {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: solid 2px var(--c-red);
}
.p-detail_content_btn_wrap {
  margin-bottom: 4rem;
}
.p-detail_content_btn {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 1.5rem 3rem;
  border-radius: 10px;
  background-color: var(--c-red);
  color: #fff;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.2;
  text-decoration: none;
  letter-spacing: 0.04em;
  border: 2px solid var(--c-black);
  box-shadow: 6px 6px 0 var(--c-black);
  transition: 0.3s ease-out;
  position: relative;
}
@media (hover: hover) {
  .p-detail_content_btn:hover {
    transform: translate(6px, 6px);
    box-shadow: none;
    opacity: 1;
  }
}
.p-detail_content_btn::after {
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%);
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: url(../img/common/arrow_right_red.svg) no-repeat center/0.75rem;
  background-color: var(--c-white);
  vertical-align: middle;
  content: "";
}
.p-detail_date {
  position: relative;
  padding: 0 3rem 2rem;
  border-radius: 4rem;
  background-color: var(--c-red);
}
.p-detail_date + .p-detail_date {
  margin-top: 80px;
}
.p-detail_date_title {
  transform: translateY(-50%);
  margin-bottom: -0.5rem;
  padding: 0.5rem 2rem;
  border-radius: 100vh;
  background-color: var(--c-white);
  color: var(--c-red);
  font-weight: 700;
  font-size: 1.6rem;
  text-align: center;
  letter-spacing: 0.05em;
}
.p-detail_date_list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 1rem;
  gap: 0.5rem 0.5rem;
}
.p-detail_date_year {
  color: var(--c-yellow);
  font-weight: 700;
  font-size: 1.3rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
.p-detail_date_year > span {
  font-size: 2rem;
  line-height: 1;
}
.p-detail_date_list_item {
  color: var(--c-yellow);
  font-weight: 700;
  font-size: 1.3rem;
  line-height: 2.5384615385;
  font-family: var(--f-din);
}
.p-detail_date_list_item > span {
  font-size: 3.2rem;
  line-height: 1;
}
.p-detail_date_text {
  color: var(--c-white);
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1.6666666667;
  text-align: center;
  letter-spacing: 0.05em;
}
.p-detail_date_text span {
  text-decoration: underline;
}

@media (768px <= width) {
  .p-detail::before {
    height: 8rem;
  }
  .p-detail_tag {
    margin-bottom: 2rem;
  }
  .p-detail_tag > span {
    max-width: 26rem;
    min-height: 6.6rem;
    border-radius: 100vh;
    font-size: min(3.125vw, 2.8rem);
    letter-spacing: 0.05em;
  }
  .p-detail_subtitle {
    margin-bottom: 3rem;
    font-size: min(5.2083333333vw, 4.6rem);
    line-height: 1.4444444444;
  }
  .p-detail_intro {
    font-size: min(3.125vw, 3.2rem);
    text-decoration-thickness: 1rem;
  }
  .p-detail_intro > strong {
    font-size: min(5.2083333333vw, 5rem);
  }
  .p-detail_text {
    margin-bottom: 2rem;
    font-weight: 500;
    font-size: min(2.0833333333vw, 2rem);
    line-height: 1.8;
    text-align: center;
  }
  .p-detail_note {
    margin-bottom: 6rem;
    font-size: min(2.0833333333vw, 2rem);
    line-height: 1.8;
    text-align: center;
  }
  .p-detail_imgs {
    width: 100vw;
    margin-bottom: 6rem;
    margin-inline: calc(50% - 50vw);
  }
  .p-detail_img img {
    width: 100%;
    height: auto;
    aspect-ratio: 72/34;
  }
  .p-detail_contents {
    row-gap: 7rem;
  }
  .p-detail_content {
    width: 100%;
    max-width: 1000px;
    margin-inline: auto;
  }
  .p-detail_content_title {
    font-size: min(2.6041666667vw, 2.4rem);
  }
  .p-detail_content_title + p {
    margin-top: 1rem;
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 3rem;
  }
  .p-detail_content_list {
    flex-direction: row;
    gap: 2rem;
  }
  .p-detail_content_list_item {
    padding: 2.5rem 1.5rem;
    aspect-ratio: 320/214;
  }
  .p-detail_content_list_title {
    font-size: min(2.6041666667vw, 2.4rem);
    line-height: 1.25;
  }
  .p-detail_content_list_title::after {
    width: 0.5em;
  }
  .p-detail_content_list_text {
    font-size: min(2.0833333333vw, 1.8rem);
    line-height: 1.6666666667;
  }
  .p-detail_content_box {
    padding: 4rem 1.5rem;
    text-align: center;
  }
  .p-detail_content_box_list {
    display: inline-block;
  }
  .p-detail_content_box_item {
    margin-left: 1em;
    font-size: min(2.0833333333vw, 2rem);
    line-height: 2.2727272727;
    text-align: left;
  }
  .p-detail_content_box_item::before {
    top: 0.9em;
    border-width: 0.7rem 0 0.7rem 1.4rem;
  }
  .p-detail_content_remarks {
    font-size: 1.6rem;
    line-height: 1.75;
  }
  .p-detail dl {
    display: grid;
    grid-template-columns: auto 1fr;
    width: 100%;
    max-width: 860px;
    padding: 0;
    margin-inline: auto;
    gap: 1rem 2rem;
  }
  .p-detail dl dt {
    margin-bottom: 0;
    font-size: min(2.6041666667vw, 2.4rem);
    text-align: start;
  }
  .p-detail dl dd {
    font-size: min(2.0833333333vw, 2rem);
    line-height: 1.8;
    text-align: start;
  }
  .p-detail dl dd + dt {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
  }
  .p-detail_content_btn {
    width: 100%;
    max-width: 80rem;
    padding: 4rem 3rem;
    font-size: 2.4rem;
  }
  .p-detail_content_btn::after {
    right: 3rem;
  }
  .p-detail_date {
    width: 100%;
    max-width: 1124px;
    padding: 0 1.5rem 5rem;
    border-radius: 10px;
    margin-inline: auto;
  }
  .p-detail_date_title {
    display: inline-block;
    position: relative;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-bottom: -0.5rem;
    padding: 1.5rem 5.5rem;
    font-size: min(3.125vw, 2.8rem);
  }
  .p-detail_date_list {
    gap: 1rem 1rem;
  }
  .p-detail_date_year {
    margin-bottom: 0.5rem;
    padding: 0 min(8vw, 8rem);
    font-size: min(2.8645833333vw, 2.9rem);
  }
  .p-detail_date_year > span {
    font-size: min(4.9479166667vw, 3.8rem);
  }
  .p-detail_date_list_item {
    font-size: min(2.8645833333vw, 2.9rem);
  }
  .p-detail_date_list_item > span {
    font-size: min(6.7708333333vw, 5.8rem);
  }
  .p-detail_date_text {
    font-size: min(2.0833333333vw, 2rem);
    line-height: 1.5;
  }
}
@media (1280px <= width) {
  .p-detail_date_year {
    padding: 0 80px;
  }
}
.p-feature_list {
  display: grid;
  row-gap: 3rem;
}
.p-feature_item_tag {
  margin-bottom: 2rem;
  padding: 0.7rem 2rem;
  border: 1px solid var(--c-red);
  border-radius: 100vh;
  color: var(--c-red);
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1;
  text-align: center;
  letter-spacing: 0.05em;
}
.p-feature_item_title {
  margin-bottom: 2rem;
  color: var(--c-dark);
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.3333333333;
  text-align: center;
  letter-spacing: 0.05em;
}
.p-feature_item_text {
  color: var(--c-dark);
  line-height: 2;
}
.p-feature_item_box {
  padding: 2rem 2rem;
  border-radius: 1rem;
  background: rgba(27, 59, 139, 0.05);
}
.p-feature_item_box_img {
  margin-inline: auto;
}
.p-feature_item_box_img img {
  margin-inline: auto;
}
.p-feature_item_box_img_title {
  margin-bottom: 0.5rem;
  padding-top: 1.5rem;
  color: var(--c-red);
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.p-feature_item_box_img_list {
  color: var(--c-dark);
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

@media (768px <= width) {
  .p-feature_list {
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    max-width: 1100px;
    -moz-column-gap: min(5.2083333333vw, 10rem);
         column-gap: min(5.2083333333vw, 10rem);
    margin-inline: auto;
  }
  .p-feature .c-lead {
    font-size: min(2.34375vw, 2.4rem);
  }
  .p-feature_item {
    display: flex;
    flex-direction: column;
  }
  .p-feature_item_tag {
    margin-bottom: 3rem;
    padding: 1.5rem 1.5rem;
    font-size: min(2.6041666667vw, 2.2rem);
  }
  .p-feature_item_title {
    font-size: min(2.6041666667vw, 2.4rem);
    line-height: 1.6666666667;
  }
  .p-feature_item_text {
    margin-bottom: 3rem;
    font-size: min(2.0833333333vw, 1.8rem);
    line-height: 2;
  }
  .p-feature_item_box {
    display: flex;
    flex-grow: 1;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.5rem;
  }
  .p-feature_item_box > * {
    width: 100%;
    max-width: 38rem;
  }
  .p-feature_item_box_img_title {
    font-size: min(2.34375vw, 2rem);
    line-height: 1.4;
    text-align: start;
  }
  .p-feature_item_box_img_list {
    font-size: min(1.8229166667vw, 1.6rem);
    line-height: 1.75;
  }
}
.p-voice_contents {
  display: grid;
  row-gap: 6rem;
}
.p-voice_list {
  display: grid;
  margin-bottom: 4rem;
  row-gap: 4rem;
}
.p-voice_item_img {
  margin-bottom: 2rem;
}
.p-voice_item_img img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 34/25;
}
.p-voice_item_title {
  margin-bottom: 2rem;
  color: var(--c-red);
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.p-voice_item_name {
  display: flex;
  flex-direction: column;
  color: var(--c-dark);
  font-weight: 500;
  font-size: 1.7rem;
}
.p-voice_item_name > small {
  font-weight: 400;
  font-size: 1.3rem;
}
.p-voice_item_link {
  margin-bottom: 3rem;
}
.p-voice_item_link a {
  color: inherit;
  font-size: 1.2rem;
  text-decoration: none;
}
.p-voice_item_text {
  color: var(--c-dark);
  font-size: 1.3rem;
  line-height: 2;
}
.p-voice_remarks {
  color: #707070;
  font-size: 1.2rem;
  position: relative;
  padding-left: 1em;
}
.p-voice_remarks::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}

@media (768px <= width) {
  .p-voice .l-container > * {
    width: 100%;
    max-width: 960px;
    margin-inline: auto;
  }
  .p-voice_contents {
    row-gap: min(7.8125vw, 8rem);
  }
  .p-voice_list {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 6rem;
    gap: min(5.2083333333vw, 6rem);
  }
  .p-voice_item_img img {
    aspect-ratio: 45/28;
  }
  .p-voice_item_title {
    font-size: min(2.6041666667vw, 2.4rem);
    line-height: 1.6666666667;
  }
  .p-voice_item_name {
    font-size: min(2.34375vw, 2rem);
  }
  .p-voice_item_name > small {
    font-size: 1.6rem;
  }
  .p-voice_item_link {
    margin-bottom: 2rem;
  }
  .p-voice_item_text {
    font-size: min(2.0833333333vw, 1.8rem);
    line-height: 2;
  }
  .p-voice_remarks {
    font-size: 1.4rem;
  }
}
.p-pamphlet {
  padding-top: 0;
}
.p-pamphlet_inner {
  padding: 3rem 3rem;
  border: 1px solid var(--c-red);
  border-radius: 1rem;
  margin-top: 3rem;
}
.p-pamphlet_lead {
  margin-bottom: 3rem;
  color: var(--c-dark);
  line-height: 1.75;
}
.p-pamphlet_btn {
  margin: 0 auto 2rem;
  position: relative;
  width: 100%;
  padding: 2.4rem 3rem;
  border-radius: 10px;
  background-color: var(--c-red);
  color: #fff;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.2;
  text-decoration: none;
  letter-spacing: 0.04em;
  border: 2px solid var(--c-black);
  box-shadow: 6px 6px 0 var(--c-black);
  transition: 0.3s ease-out;
  position: relative;
}
.p-pamphlet_btn::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 2.5rem;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: url(../img/common/arrow_right_red.svg) no-repeat center/0.75rem;
  background-color: var(--c-white);
  vertical-align: middle;
}
@media (hover: hover) {
  .p-pamphlet_btn:hover {
    transform: translate(6px, 6px);
    box-shadow: none;
    opacity: 1;
  }
}
.p-pamphlet_text {
  margin-bottom: 3rem;
  color: var(--c-dark);
  font-size: 1.4rem;
  line-height: 1.7142857143;
}
.p-pamphlet_list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 1.5rem;
}
.p-pamphlet_item {
  flex: 1;
  min-width: 40%;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .p-pamphlet_item:hover {
    opacity: 0.7;
  }
}
.p-pamphlet_item_img {
  margin-bottom: 0.5rem;
}
.p-pamphlet_item_title {
  color: var(--c-red);
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1.3333333333;
  text-align: center;
  letter-spacing: 0.05em;
}

@media (768px <= width) {
  .p-pamphlet_inner {
    max-width: 1100px;
    padding: 6rem 1.5rem;
    margin-inline: auto;
    margin-top: 6rem;
  }
  .p-pamphlet_lead {
    font-size: min(2.0833333333vw, 2rem);
    line-height: 1.8;
    text-align: center;
  }
  .p-pamphlet_btn {
    max-width: 54.7rem;
    font-size: min(3.3854166667vw, 2.6rem);
  }
  .p-pamphlet_text {
    font-size: min(2.0833333333vw, 2rem);
    text-align: center;
  }
  .p-pamphlet_list {
    max-width: 992px;
    gap: min(1.953125vw, 2.5rem);
    margin-inline: auto;
  }
  .p-pamphlet_item {
    min-width: unset;
  }
  .p-pamphlet_item_img {
    margin-bottom: 1rem;
  }
  .p-pamphlet_item_title {
    font-size: min(2.0833333333vw, 2rem);
    line-height: 1.5;
  }
}
.p-qa_list {
  display: grid;
  row-gap: 1rem;
}
.p-qa_item {
  padding: 2rem 2rem;
  border: 1px solid rgba(118, 118, 118, 0.4);
}
.p-qa_item_title, .p-qa_item_content {
  position: relative;
  padding-left: 5.4rem;
}
.p-qa_item_title {
  padding-right: 4rem;
  color: var(--c-dark);
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  cursor: pointer;
}
.p-qa_item_title::before {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 4rem;
  height: auto;
  background-color: var(--c-red);
  color: var(--c-white);
  font-weight: 700;
  font-size: 1.9rem;
  line-height: 1;
  content: "Q";
  padding-bottom: 0.5%;
  aspect-ratio: 1/1;
}
.p-qa_item_title::after {
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1.8rem;
  height: 1.8rem;
  background: url(../img/group/qa_icon.svg) no-repeat center/contain;
  vertical-align: middle;
  content: "";
  transition: transform 0.3s ease;
}
.p-qa_item_title.js-open::after {
  transform: rotate(45deg) translateY(calc(-50% + 0.5rem)) translateX(-0.5rem);
}
.p-qa_item_content {
  margin-top: 2rem;
  display: none;
  padding-top: 2rem;
  color: var(--c-dark);
  font-size: 1.4rem;
  line-height: 1.7142857143;
  border-top: 1px solid #767676;
}
.p-qa_item_content a {
  color: var(--c-skyblue);
}

@media (768px <= width) {
  .p-qa_title {
    font-size: 2.4rem;
    background-color: transparent;
    color: var(--c-dark);
  }
  .p-qa .l-container {
    max-width: calc(1100px + 3rem);
  }
  .p-qa_list {
    row-gap: 1.5rem;
  }
  .p-qa_item {
    padding: 1.5rem 2rem;
  }
  .p-qa_item_title, .p-qa_item_content {
    padding-left: 9rem;
  }
  .p-qa_item_title {
    display: flex;
    align-items: center;
    min-height: 5rem;
    padding-right: 8rem;
    padding-bottom: 0;
    font-size: min(2.34375vw, 2rem);
    line-height: 1.3;
  }
  .p-qa_item_title::before {
    top: 50%;
    transform: translateY(-50%);
    width: 5rem;
    font-size: 2.4rem;
  }
  .p-qa_item_title::after {
    right: 3rem;
    width: 2rem;
    height: 2rem;
  }
  .p-qa_item_content {
    margin-top: 1.5rem;
    padding-top: 3.5rem;
    padding-bottom: 2.5rem;
    font-size: min(2.0833333333vw, 1.8rem);
    line-height: 2;
  }
}
.u-c-yellow {
  color: #ffff76 !important;
}

.u-bg-yellow {
  background-color: #ffff76 !important;
}

.u-c-red {
  color: #1b3b8b !important;
}

.u-bg-red {
  background-color: #1b3b8b !important;
}

.u-c-black {
  color: #000 !important;
}

.u-bg-black {
  background-color: #000 !important;
}

.u-c-white {
  color: #fff !important;
}

.u-bg-white {
  background-color: #fff !important;
}

.u-c-dark {
  color: #555 !important;
}

.u-bg-dark {
  background-color: #555 !important;
}

.u-c-gray {
  color: #f5f5f5 !important;
}

.u-bg-gray {
  background-color: #f5f5f5 !important;
}

.u-c-darkgray {
  color: #767676 !important;
}

.u-bg-darkgray {
  background-color: #767676 !important;
}

.u-c-skyblue {
  color: #009fe8 !important;
}

.u-bg-skyblue {
  background-color: #009fe8 !important;
}

.u-c-teal {
  color: #4dbac1 !important;
}

.u-bg-teal {
  background-color: #4dbac1 !important;
}

.u-c-gold {
  color: #cfad5f !important;
}

.u-bg-gold {
  background-color: #cfad5f !important;
}

.u-c-blue {
  color: #004896 !important;
}

.u-bg-blue {
  background-color: #004896 !important;
}

.u-pc {
  display: none !important;
}

.u-tb {
  display: none !important;
}

@media (768px <= width <= 1280px) {
  .u-tb {
    display: block !important;
  }
}
@media (768px <= width) {
  .u-pc {
    display: block !important;
  }
  .u-sp {
    display: none !important;
  }
}
.u-pt-0 {
  padding-top: 0rem !important;
}

.u-pt-5 {
  padding-top: 0.5rem !important;
}

.u-pt-10 {
  padding-top: 1rem !important;
}

.u-pt-15 {
  padding-top: 1.5rem !important;
}

.u-pt-20 {
  padding-top: 2rem !important;
}

.u-pt-25 {
  padding-top: 2.5rem !important;
}

.u-pt-30 {
  padding-top: 3rem !important;
}

.u-pt-35 {
  padding-top: 3.5rem !important;
}

.u-pt-40 {
  padding-top: 4rem !important;
}

.u-pt-45 {
  padding-top: 4.5rem !important;
}

.u-pt-50 {
  padding-top: 5rem !important;
}

.u-pt-55 {
  padding-top: 5.5rem !important;
}

.u-pt-60 {
  padding-top: 6rem !important;
}

.u-pt-65 {
  padding-top: 6.5rem !important;
}

.u-pt-70 {
  padding-top: 7rem !important;
}

.u-pt-75 {
  padding-top: 7.5rem !important;
}

.u-pt-80 {
  padding-top: 8rem !important;
}

.u-pt-85 {
  padding-top: 8.5rem !important;
}

.u-pt-90 {
  padding-top: 9rem !important;
}

.u-pt-95 {
  padding-top: 9.5rem !important;
}

.u-pt-100 {
  padding-top: 10rem !important;
}

.u-pt-105 {
  padding-top: 10.5rem !important;
}

.u-pt-110 {
  padding-top: 11rem !important;
}

.u-pt-115 {
  padding-top: 11.5rem !important;
}

.u-pt-120 {
  padding-top: 12rem !important;
}

.u-pt-125 {
  padding-top: 12.5rem !important;
}

.u-pt-130 {
  padding-top: 13rem !important;
}

.u-pt-135 {
  padding-top: 13.5rem !important;
}

.u-pt-140 {
  padding-top: 14rem !important;
}

.u-pt-145 {
  padding-top: 14.5rem !important;
}

.u-pt-150 {
  padding-top: 15rem !important;
}

@media (768px <= width) {
  .u-pt-pc-0 {
    padding-top: 0rem !important;
  }
  .u-pt-pc-5 {
    padding-top: 0.5rem !important;
  }
  .u-pt-pc-10 {
    padding-top: 1rem !important;
  }
  .u-pt-pc-15 {
    padding-top: 1.5rem !important;
  }
  .u-pt-pc-20 {
    padding-top: 2rem !important;
  }
  .u-pt-pc-25 {
    padding-top: 2.5rem !important;
  }
  .u-pt-pc-30 {
    padding-top: 3rem !important;
  }
  .u-pt-pc-35 {
    padding-top: 3.5rem !important;
  }
  .u-pt-pc-40 {
    padding-top: 4rem !important;
  }
  .u-pt-pc-45 {
    padding-top: 4.5rem !important;
  }
  .u-pt-pc-50 {
    padding-top: 5rem !important;
  }
  .u-pt-pc-55 {
    padding-top: 5.5rem !important;
  }
  .u-pt-pc-60 {
    padding-top: 6rem !important;
  }
  .u-pt-pc-65 {
    padding-top: 6.5rem !important;
  }
  .u-pt-pc-70 {
    padding-top: 7rem !important;
  }
  .u-pt-pc-75 {
    padding-top: 7.5rem !important;
  }
  .u-pt-pc-80 {
    padding-top: 8rem !important;
  }
  .u-pt-pc-85 {
    padding-top: 8.5rem !important;
  }
  .u-pt-pc-90 {
    padding-top: 9rem !important;
  }
  .u-pt-pc-95 {
    padding-top: 9.5rem !important;
  }
  .u-pt-pc-100 {
    padding-top: 10rem !important;
  }
  .u-pt-pc-105 {
    padding-top: 10.5rem !important;
  }
  .u-pt-pc-110 {
    padding-top: 11rem !important;
  }
  .u-pt-pc-115 {
    padding-top: 11.5rem !important;
  }
  .u-pt-pc-120 {
    padding-top: 12rem !important;
  }
  .u-pt-pc-125 {
    padding-top: 12.5rem !important;
  }
  .u-pt-pc-130 {
    padding-top: 13rem !important;
  }
  .u-pt-pc-135 {
    padding-top: 13.5rem !important;
  }
  .u-pt-pc-140 {
    padding-top: 14rem !important;
  }
  .u-pt-pc-145 {
    padding-top: 14.5rem !important;
  }
  .u-pt-pc-150 {
    padding-top: 15rem !important;
  }
}
.u-pb-0 {
  padding-bottom: 0rem !important;
}

.u-pb-5 {
  padding-bottom: 0.5rem !important;
}

.u-pb-10 {
  padding-bottom: 1rem !important;
}

.u-pb-15 {
  padding-bottom: 1.5rem !important;
}

.u-pb-20 {
  padding-bottom: 2rem !important;
}

.u-pb-25 {
  padding-bottom: 2.5rem !important;
}

.u-pb-30 {
  padding-bottom: 3rem !important;
}

.u-pb-35 {
  padding-bottom: 3.5rem !important;
}

.u-pb-40 {
  padding-bottom: 4rem !important;
}

.u-pb-45 {
  padding-bottom: 4.5rem !important;
}

.u-pb-50 {
  padding-bottom: 5rem !important;
}

.u-pb-55 {
  padding-bottom: 5.5rem !important;
}

.u-pb-60 {
  padding-bottom: 6rem !important;
}

.u-pb-65 {
  padding-bottom: 6.5rem !important;
}

.u-pb-70 {
  padding-bottom: 7rem !important;
}

.u-pb-75 {
  padding-bottom: 7.5rem !important;
}

.u-pb-80 {
  padding-bottom: 8rem !important;
}

.u-pb-85 {
  padding-bottom: 8.5rem !important;
}

.u-pb-90 {
  padding-bottom: 9rem !important;
}

.u-pb-95 {
  padding-bottom: 9.5rem !important;
}

.u-pb-100 {
  padding-bottom: 10rem !important;
}

.u-pb-105 {
  padding-bottom: 10.5rem !important;
}

.u-pb-110 {
  padding-bottom: 11rem !important;
}

.u-pb-115 {
  padding-bottom: 11.5rem !important;
}

.u-pb-120 {
  padding-bottom: 12rem !important;
}

.u-pb-125 {
  padding-bottom: 12.5rem !important;
}

.u-pb-130 {
  padding-bottom: 13rem !important;
}

.u-pb-135 {
  padding-bottom: 13.5rem !important;
}

.u-pb-140 {
  padding-bottom: 14rem !important;
}

.u-pb-145 {
  padding-bottom: 14.5rem !important;
}

.u-pb-150 {
  padding-bottom: 15rem !important;
}

@media (768px <= width) {
  .u-pb-pc-0 {
    padding-bottom: 0rem !important;
  }
  .u-pb-pc-5 {
    padding-bottom: 0.5rem !important;
  }
  .u-pb-pc-10 {
    padding-bottom: 1rem !important;
  }
  .u-pb-pc-15 {
    padding-bottom: 1.5rem !important;
  }
  .u-pb-pc-20 {
    padding-bottom: 2rem !important;
  }
  .u-pb-pc-25 {
    padding-bottom: 2.5rem !important;
  }
  .u-pb-pc-30 {
    padding-bottom: 3rem !important;
  }
  .u-pb-pc-35 {
    padding-bottom: 3.5rem !important;
  }
  .u-pb-pc-40 {
    padding-bottom: 4rem !important;
  }
  .u-pb-pc-45 {
    padding-bottom: 4.5rem !important;
  }
  .u-pb-pc-50 {
    padding-bottom: 5rem !important;
  }
  .u-pb-pc-55 {
    padding-bottom: 5.5rem !important;
  }
  .u-pb-pc-60 {
    padding-bottom: 6rem !important;
  }
  .u-pb-pc-65 {
    padding-bottom: 6.5rem !important;
  }
  .u-pb-pc-70 {
    padding-bottom: 7rem !important;
  }
  .u-pb-pc-75 {
    padding-bottom: 7.5rem !important;
  }
  .u-pb-pc-80 {
    padding-bottom: 8rem !important;
  }
  .u-pb-pc-85 {
    padding-bottom: 8.5rem !important;
  }
  .u-pb-pc-90 {
    padding-bottom: 9rem !important;
  }
  .u-pb-pc-95 {
    padding-bottom: 9.5rem !important;
  }
  .u-pb-pc-100 {
    padding-bottom: 10rem !important;
  }
  .u-pb-pc-105 {
    padding-bottom: 10.5rem !important;
  }
  .u-pb-pc-110 {
    padding-bottom: 11rem !important;
  }
  .u-pb-pc-115 {
    padding-bottom: 11.5rem !important;
  }
  .u-pb-pc-120 {
    padding-bottom: 12rem !important;
  }
  .u-pb-pc-125 {
    padding-bottom: 12.5rem !important;
  }
  .u-pb-pc-130 {
    padding-bottom: 13rem !important;
  }
  .u-pb-pc-135 {
    padding-bottom: 13.5rem !important;
  }
  .u-pb-pc-140 {
    padding-bottom: 14rem !important;
  }
  .u-pb-pc-145 {
    padding-bottom: 14.5rem !important;
  }
  .u-pb-pc-150 {
    padding-bottom: 15rem !important;
  }
}
.u-mt-0 {
  margin-top: 0rem !important;
}

.u-mt-5 {
  margin-top: 0.5rem !important;
}

.u-mt-10 {
  margin-top: 1rem !important;
}

.u-mt-15 {
  margin-top: 1.5rem !important;
}

.u-mt-20 {
  margin-top: 2rem !important;
}

.u-mt-25 {
  margin-top: 2.5rem !important;
}

.u-mt-30 {
  margin-top: 3rem !important;
}

.u-mt-35 {
  margin-top: 3.5rem !important;
}

.u-mt-40 {
  margin-top: 4rem !important;
}

.u-mt-45 {
  margin-top: 4.5rem !important;
}

.u-mt-50 {
  margin-top: 5rem !important;
}

.u-mt-55 {
  margin-top: 5.5rem !important;
}

.u-mt-60 {
  margin-top: 6rem !important;
}

.u-mt-65 {
  margin-top: 6.5rem !important;
}

.u-mt-70 {
  margin-top: 7rem !important;
}

.u-mt-75 {
  margin-top: 7.5rem !important;
}

.u-mt-80 {
  margin-top: 8rem !important;
}

.u-mt-85 {
  margin-top: 8.5rem !important;
}

.u-mt-90 {
  margin-top: 9rem !important;
}

.u-mt-95 {
  margin-top: 9.5rem !important;
}

.u-mt-100 {
  margin-top: 10rem !important;
}

.u-mt-105 {
  margin-top: 10.5rem !important;
}

.u-mt-110 {
  margin-top: 11rem !important;
}

.u-mt-115 {
  margin-top: 11.5rem !important;
}

.u-mt-120 {
  margin-top: 12rem !important;
}

.u-mt-125 {
  margin-top: 12.5rem !important;
}

.u-mt-130 {
  margin-top: 13rem !important;
}

.u-mt-135 {
  margin-top: 13.5rem !important;
}

.u-mt-140 {
  margin-top: 14rem !important;
}

.u-mt-145 {
  margin-top: 14.5rem !important;
}

.u-mt-150 {
  margin-top: 15rem !important;
}

@media (768px <= width) {
  .u-mt-pc-0 {
    margin-top: 0rem !important;
  }
  .u-mt-pc-5 {
    margin-top: 0.5rem !important;
  }
  .u-mt-pc-10 {
    margin-top: 1rem !important;
  }
  .u-mt-pc-15 {
    margin-top: 1.5rem !important;
  }
  .u-mt-pc-20 {
    margin-top: 2rem !important;
  }
  .u-mt-pc-25 {
    margin-top: 2.5rem !important;
  }
  .u-mt-pc-30 {
    margin-top: 3rem !important;
  }
  .u-mt-pc-35 {
    margin-top: 3.5rem !important;
  }
  .u-mt-pc-40 {
    margin-top: 4rem !important;
  }
  .u-mt-pc-45 {
    margin-top: 4.5rem !important;
  }
  .u-mt-pc-50 {
    margin-top: 5rem !important;
  }
  .u-mt-pc-55 {
    margin-top: 5.5rem !important;
  }
  .u-mt-pc-60 {
    margin-top: 6rem !important;
  }
  .u-mt-pc-65 {
    margin-top: 6.5rem !important;
  }
  .u-mt-pc-70 {
    margin-top: 7rem !important;
  }
  .u-mt-pc-75 {
    margin-top: 7.5rem !important;
  }
  .u-mt-pc-80 {
    margin-top: 8rem !important;
  }
  .u-mt-pc-85 {
    margin-top: 8.5rem !important;
  }
  .u-mt-pc-90 {
    margin-top: 9rem !important;
  }
  .u-mt-pc-95 {
    margin-top: 9.5rem !important;
  }
  .u-mt-pc-100 {
    margin-top: 10rem !important;
  }
  .u-mt-pc-105 {
    margin-top: 10.5rem !important;
  }
  .u-mt-pc-110 {
    margin-top: 11rem !important;
  }
  .u-mt-pc-115 {
    margin-top: 11.5rem !important;
  }
  .u-mt-pc-120 {
    margin-top: 12rem !important;
  }
  .u-mt-pc-125 {
    margin-top: 12.5rem !important;
  }
  .u-mt-pc-130 {
    margin-top: 13rem !important;
  }
  .u-mt-pc-135 {
    margin-top: 13.5rem !important;
  }
  .u-mt-pc-140 {
    margin-top: 14rem !important;
  }
  .u-mt-pc-145 {
    margin-top: 14.5rem !important;
  }
  .u-mt-pc-150 {
    margin-top: 15rem !important;
  }
}
.u-mb-0 {
  margin-bottom: 0rem !important;
}

.u-mb-5 {
  margin-bottom: 0.5rem !important;
}

.u-mb-10 {
  margin-bottom: 1rem !important;
}

.u-mb-15 {
  margin-bottom: 1.5rem !important;
}

.u-mb-20 {
  margin-bottom: 2rem !important;
}

.u-mb-25 {
  margin-bottom: 2.5rem !important;
}

.u-mb-30 {
  margin-bottom: 3rem !important;
}

.u-mb-35 {
  margin-bottom: 3.5rem !important;
}

.u-mb-40 {
  margin-bottom: 4rem !important;
}

.u-mb-45 {
  margin-bottom: 4.5rem !important;
}

.u-mb-50 {
  margin-bottom: 5rem !important;
}

.u-mb-55 {
  margin-bottom: 5.5rem !important;
}

.u-mb-60 {
  margin-bottom: 6rem !important;
}

.u-mb-65 {
  margin-bottom: 6.5rem !important;
}

.u-mb-70 {
  margin-bottom: 7rem !important;
}

.u-mb-75 {
  margin-bottom: 7.5rem !important;
}

.u-mb-80 {
  margin-bottom: 8rem !important;
}

.u-mb-85 {
  margin-bottom: 8.5rem !important;
}

.u-mb-90 {
  margin-bottom: 9rem !important;
}

.u-mb-95 {
  margin-bottom: 9.5rem !important;
}

.u-mb-100 {
  margin-bottom: 10rem !important;
}

.u-mb-105 {
  margin-bottom: 10.5rem !important;
}

.u-mb-110 {
  margin-bottom: 11rem !important;
}

.u-mb-115 {
  margin-bottom: 11.5rem !important;
}

.u-mb-120 {
  margin-bottom: 12rem !important;
}

.u-mb-125 {
  margin-bottom: 12.5rem !important;
}

.u-mb-130 {
  margin-bottom: 13rem !important;
}

.u-mb-135 {
  margin-bottom: 13.5rem !important;
}

.u-mb-140 {
  margin-bottom: 14rem !important;
}

.u-mb-145 {
  margin-bottom: 14.5rem !important;
}

.u-mb-150 {
  margin-bottom: 15rem !important;
}

@media (768px <= width) {
  .u-mb-pc-0 {
    margin-bottom: 0rem !important;
  }
  .u-mb-pc-5 {
    margin-bottom: 0.5rem !important;
  }
  .u-mb-pc-10 {
    margin-bottom: 1rem !important;
  }
  .u-mb-pc-15 {
    margin-bottom: 1.5rem !important;
  }
  .u-mb-pc-20 {
    margin-bottom: 2rem !important;
  }
  .u-mb-pc-25 {
    margin-bottom: 2.5rem !important;
  }
  .u-mb-pc-30 {
    margin-bottom: 3rem !important;
  }
  .u-mb-pc-35 {
    margin-bottom: 3.5rem !important;
  }
  .u-mb-pc-40 {
    margin-bottom: 4rem !important;
  }
  .u-mb-pc-45 {
    margin-bottom: 4.5rem !important;
  }
  .u-mb-pc-50 {
    margin-bottom: 5rem !important;
  }
  .u-mb-pc-55 {
    margin-bottom: 5.5rem !important;
  }
  .u-mb-pc-60 {
    margin-bottom: 6rem !important;
  }
  .u-mb-pc-65 {
    margin-bottom: 6.5rem !important;
  }
  .u-mb-pc-70 {
    margin-bottom: 7rem !important;
  }
  .u-mb-pc-75 {
    margin-bottom: 7.5rem !important;
  }
  .u-mb-pc-80 {
    margin-bottom: 8rem !important;
  }
  .u-mb-pc-85 {
    margin-bottom: 8.5rem !important;
  }
  .u-mb-pc-90 {
    margin-bottom: 9rem !important;
  }
  .u-mb-pc-95 {
    margin-bottom: 9.5rem !important;
  }
  .u-mb-pc-100 {
    margin-bottom: 10rem !important;
  }
  .u-mb-pc-105 {
    margin-bottom: 10.5rem !important;
  }
  .u-mb-pc-110 {
    margin-bottom: 11rem !important;
  }
  .u-mb-pc-115 {
    margin-bottom: 11.5rem !important;
  }
  .u-mb-pc-120 {
    margin-bottom: 12rem !important;
  }
  .u-mb-pc-125 {
    margin-bottom: 12.5rem !important;
  }
  .u-mb-pc-130 {
    margin-bottom: 13rem !important;
  }
  .u-mb-pc-135 {
    margin-bottom: 13.5rem !important;
  }
  .u-mb-pc-140 {
    margin-bottom: 14rem !important;
  }
  .u-mb-pc-145 {
    margin-bottom: 14.5rem !important;
  }
  .u-mb-pc-150 {
    margin-bottom: 15rem !important;
  }
}

/*# sourceMappingURL=group.css.map */