.u-c-white {
  color: #FFF !important;
}

.u-bg-white {
  background-color: #FFF !important;
}

.u-c-black {
  color: #000 !important;
}

.u-bg-black {
  background-color: #000 !important;
}

.u-c-gray {
  color: #F5F5F5 !important;
}

.u-bg-gray {
  background-color: #F5F5F5 !important;
}

.u-c-gray2 {
  color: #CCCCCC !important;
}

.u-bg-gray2 {
  background-color: #CCCCCC !important;
}

.u-c-theme {
  color: #A9CE52 !important;
}

.u-bg-theme {
  background-color: #A9CE52 !important;
}

.u-c-theme-bg {
  color: #F1F7E3 !important;
}

.u-bg-theme-bg {
  background-color: #F1F7E3 !important;
}

.u-c-key-color1 {
  color: #FF695B !important;
}

.u-bg-key-color1 {
  background-color: #FF695B !important;
}

.u-c-key-color2 {
  color: #F26457 !important;
}

.u-bg-key-color2 {
  background-color: #F26457 !important;
}

.u-c-key-color3 {
  color: #00B8FF !important;
}

.u-bg-key-color3 {
  background-color: #00B8FF !important;
}

.u-c-key-color4 {
  color: #00AEF2 !important;
}

.u-bg-key-color4 {
  background-color: #00AEF2 !important;
}

.u-text-shadow {
  text-shadow: var(--text-shadow);
}

.u-font-sans {
  font-family: "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
}

.u-font-serif {
  font-family: "Yu Mincho", "YuMincho", "serif";
}

@font-face {
  font-weight: 300;
  font-family: "Noto Sans JP";
  src: url("../media/files/font/Noto_Sans_JP/NotoSansJP-Light.woff") format("woff");
}
@font-face {
  font-weight: 400;
  font-family: "Noto Sans JP";
  src: url("../media/files/font/Noto_Sans_JP/NotoSansJP-Regular.woff") format("woff");
}
@font-face {
  font-weight: 500;
  font-family: "Noto Sans JP";
  src: url("../media/files/font/Noto_Sans_JP/NotoSansJP-Medium.woff") format("woff");
}
@font-face {
  font-weight: 600;
  font-family: "Noto Sans JP";
  src: url("../media/files/font/Noto_Sans_JP/NotoSansJP-SemiBold.woff") format("woff");
}
@font-face {
  font-weight: 700;
  font-family: "Noto Sans JP";
  src: url("../media/files/font/Noto_Sans_JP/NotoSansJP-Bold.woff") format("woff");
}
:root {
  --c-white: #FFF;
  --c-black: #000;
  --c-gray: #F5F5F5;
  --c-gray2: #CCCCCC;
  --c-theme: #A9CE52;
  --c-theme-bg: #F1F7E3;
  --c-key-color1: #FF695B;
  --c-key-color2: #F26457;
  --c-key-color3: #00B8FF;
  --c-key-color4: #00AEF2;
  --f-sans: Noto Sans JP, Helvetica Neue, Helvetica, Hiragino Sans, Hiragino Kaku Gothic ProN, Arial, Yu Gothic, Meiryo, sans-serif;
  --f-serif: Yu Mincho, YuMincho, serif;
  --pos-center: center;
  --pos-left: left;
  --pos-right: right;
  --pos-top: top;
  --pos-bottom: bottom;
  --shadow: 0 3px 6px rgba(0, 0, 0, 0.08);
  --text-shadow: 0.3rem 0.3rem 0.1rem var(--c-white), -0.3rem -0.3rem 0.1rem var(--c-white), -0.3rem 0.3rem 0.1rem var(--c-white), 0.3rem -0.3rem 0.1rem var(--c-white), 0.3rem 0 0.1rem var(--c-white), -0.3rem 0 0.1rem var(--c-white), 0 0.3rem 0.1rem var(--c-white), 0 -0.3rem 0.1rem var(--c-white);
}

html {
  font-size: 62.5%;
  scroll-padding-top: 8rem;
}
@media screen and (max-width: 1271px) {
  html {
    font-size: 56.25%;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 1.3333333333vw;
    scroll-padding-top: 10rem;
  }
}

body {
  color: var(--c-black);
  font-size: 1.6rem;
  font-family: var(--f-sans);
}
@media screen and (max-width: 767px) {
  body {
    font-size: 2.87rem;
  }
}
body.hidden {
  overflow: hidden;
}

h1, h2, h3, h4, h5, h6, p, li, dt, dd, a, th, td, input, textarea {
  letter-spacing: 0.05em;
}

img {
  pointer-events: none;
}

a {
  color: inherit;
  display: inline-block;
}

span {
  display: inline-block;
}

ul, ol {
  list-style: none;
}

.l-container {
  width: 95%;
  max-width: 128rem;
  margin-inline: auto;
}
@media screen and (max-width: 1271px) {
  .l-container {
    max-width: 95rem;
    width: 93%;
  }
}
@media screen and (max-width: 767px) {
  .l-container {
    width: 93%;
  }
}
.l-container--large {
  max-width: 160rem;
}
@media screen and (max-width: 1271px) {
  .l-container--large {
    max-width: none;
  }
}
@media screen and (max-width: 767px) {
  .l-container--large {
    max-width: none;
  }
}
@media screen and (max-width: 767px) {
  .l-container--wide {
    width: 100%;
    max-width: none;
  }
}

.l-section {
  padding-block: 16rem;
}
@media screen and (max-width: 1271px) {
  .l-section {
    padding-block: 10rem;
  }
}
@media screen and (max-width: 767px) {
  .l-section {
    padding-block: 16rem;
  }
}
.l-section--color {
  background-color: var(--c-theme-bg);
}
.l-section--gray {
  background-color: var(--c-gray);
}
.l-section--noPt {
  padding-top: 0 !important;
}
.l-section--no-pb {
  padding-bottom: 0 !important;
}
@media screen and (max-width: 767px) {
  .l-section--pt-small {
    padding-block: 9rem;
  }
}
.l-section--pt-small2 {
  padding-block: 8rem;
}
@media screen and (max-width: 767px) {
  .l-section--pt-small2 {
    padding-block: 12rem;
  }
}
.l-section--pt-small3 {
  padding-block: 12rem;
}
@media screen and (max-width: 767px) {
  .l-section--pt-small3 {
    padding-block: 14rem;
  }
}
.l-section--pt-small4 {
  padding-block: 10.4rem;
}
@media screen and (max-width: 767px) {
  .l-section--pt-small4 {
    padding-block: 14rem;
  }
}
.l-section--pb-bottom {
  padding-bottom: 20rem !important;
}
.l-section--gragient {
  padding-block: 20rem;
  position: relative;
}
.l-section--gragient::after {
  content: "";
  display: block;
  width: 100%;
  height: calc(100% - 40rem);
  background-color: #F1F7E3;
  position: absolute;
  top: 40rem;
  left: 0;
  z-index: -1;
}
.l-section--gragient::before {
  content: "";
  display: block;
  width: 100%;
  height: 40rem;
  background: transparent linear-gradient(180deg, rgba(241, 247, 227, 0) 0%, #F1F7E3 100%) 0% 0% no-repeat padding-box;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.l-section--gragient-pb {
  padding-block: 20rem 16rem;
}

.l-main {
  margin-top: 8rem;
}
@media screen and (max-width: 767px) {
  .l-main {
    margin-top: 10rem;
  }
}

.c-footer__bg {
  padding-block: 10.4rem;
  background-color: var(--c-theme-bg);
}
@media screen and (max-width: 1271px) {
  .c-footer__bg {
    padding-block: 9rem 6.5rem;
  }
}
@media screen and (max-width: 767px) {
  .c-footer__bg {
    padding-block: 10rem;
  }
}
.c-footer__inner {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1271px) {
  .c-footer__inner {
    display: block;
  }
}
@media screen and (max-width: 1271px) {
  .c-footer__logo-area {
    display: flex;
    align-items: flex-end;
    gap: 4rem;
  }
}
.c-footer__logo {
  width: 10.9rem;
}
@media screen and (max-width: 1271px) {
  .c-footer__logo {
    width: 20rem;
  }
}
@media screen and (max-width: 767px) {
  .c-footer__logo {
    width: 26rem;
  }
}
.c-footer__sns {
  margin-top: 4.7rem;
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.c-footer__sns a {
  transition: transform 0.3s;
}
@media (hover: hover) {
  .c-footer__sns a:hover {
    transform: scale(0.9);
  }
}
.c-footer__sns-icon {
  width: 3rem;
}
.c-footer__bottom{
	max-width: calc(100% - 10.9rem);
}
@media screen and (max-width: 767px) {
  .c-footer__sns-icon {
    width: 4.5rem;
  }
}
@media screen and (max-width: 1271px) {
  .c-footer__bottom {
    margin-top: 7rem;
	max-width: unset;
  }
}
@media screen and (max-width: 767px) {
  .c-footer__bottom {
    margin-top: 9rem;
  }
}
.c-footer__copy {
  text-align: center;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  height: 6.8rem;
  line-height: 6.8rem;
}
@media screen and (max-width: 767px) {
  .c-footer__copy {
    font-size: 2.2rem;
  }
}

.c-footer .c-nav__bottom-link-list {
  column-gap: 2.4rem;
}
@media screen and (max-width: 1271px) {
  .c-footer .c-nav__bottom-link-list {
    column-gap: 4rem;
  }
}
.c-footer .c-nav__link-text {
  font-size: 1.57rem;
}
@media screen and (max-width: 767px) {
  .c-footer .c-nav__link-text {
    font-size: 2.8rem;
  }
}

.c-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  height: 8rem;
  box-shadow: var(--shadow);
  background-color: var(--c-white);
}
@media screen and (max-width: 767px) {
  .c-header {
    height: 10rem;
  }
}
.c-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 8rem;
	padding-right:2rem;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1700px) {
  .c-header__inner {
    padding-inline: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .c-header__inner {
    padding-inline: 3rem 2rem;
  }
}
.c-header__logo {
  width: 10.9rem;
}
@media screen and (max-width: 767px) {
  .c-header__logo {
    width: 15rem;
  }
}
.c-header__nav-wrap {
  height: 100%;
}

  .c-header__nav-wrap {
    display: flex;
    align-items: center;
    gap: 3rem;
  }

.c-header__nav {
  display: flex;
  align-items: center;
  gap: 80px;
  flex-grow: 1;
  max-width: fit-content;
  height: 100%;
}
.c-header__nav-list {
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 1600px) {
  .c-header__nav-list {
      gap: 20px;
  }
  .c-header__nav {
    gap: 40px;
  }
}
@media screen and (max-width: 1271px) {
  .c-header__nav-list {
    display: none;
  }
}
.c-header__nav-item {
  font-size: 1.8rem;
  font-weight: 700;
}
@media screen and (max-width: 1271px) {
.c-header__nav-item {
  font-size: 1.6rem;
  font-weight: 700;
}
}
.c-header__nav-item a {
  transition: color 0.3s;
}
@media (hover: hover) {
  .c-header__nav-item a:hover {
    color: var(--c-theme);
  }
}
.c-header__site-link {
  text-align: center;
  /* //background-color: var(--c-theme); */
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 100%;
 /* // padding-inline: 5rem 1.2rem; */
}
@media screen and (max-width: 767px) {
  .c-header__site-link {
    padding-inline: 2rem 1.5rem;
  }
}
@media (hover: hover) {
  .c-header__site-link:hover .c-header__site-link-icon {
    transform: scale(0.9);
  }
}
.c-header__site-link-text {
  font-size: 1.8rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .c-header__site-link-text {
    font-size: 2.4rem;
  }
}
.c-header__site-link-small {
  font-size: 1.4rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .c-header__site-link-small {
    font-size: 2.2rem;
  }
}
.c-header__site-link-icon {
  transition: transform 0.4s;
}
.c-header__menu-btn {
  display: none;
  position: relative;
  transition: transform 0.3s;
}
@media (hover: hover) {
  .c-header__menu-btn:hover {
    transform: scale(0.95);
  }
}

  .c-header__menu-btn {
    display: block;
    width: 6rem;
    height: 6rem;
    border-radius: 100vh;
    border: 0.4rem solid var(--c-gray2);
  }

@media screen and (max-width: 767px) {
  .c-header__menu-btn {
    width: 8rem;
    height: 8rem;
  }
}
.c-header__menu-btn.is-active .c-header__menu-btn-bar:nth-of-type(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}
.c-header__menu-btn.is-active .c-header__menu-btn-bar:nth-of-type(2) {
  transform: translate(-50%, -50%) rotateY(90deg);
  opacity: 0;
}
.c-header__menu-btn.is-active .c-header__menu-btn-bar:nth-of-type(3) {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.c-header__menu-btn-bar {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 0.4rem;
  width: 60%;
  border-radius: 100vh;
  transition: opacity 0.3s, transform 0.6s;
}
.c-header__menu-btn-bar:nth-of-type(1) {
  transform: translate(-50%, calc(-50% - 1rem));
  background-color: var(--c-theme);
}
@media screen and (max-width: 767px) {
  .c-header__menu-btn-bar:nth-of-type(1) {
    transform: translate(-50%, calc(-50% - 1.2rem));
  }
}
.c-header__menu-btn-bar:nth-of-type(2) {
  transform: translate(-50%, -50%);
  background-color: var(--c-key-color3);
}
.c-header__menu-btn-bar:nth-of-type(3) {
  transform: translate(-50%, calc(-50% + 1rem));
  background-color: var(--c-key-color1);
}
@media screen and (max-width: 767px) {
  .c-header__menu-btn-bar:nth-of-type(3) {
    transform: translate(-50%, calc(-50% + 1.2rem));
  }
}
.c-header__menu {
  background-color: var(--c-white);
  width: 100%;
  height: calc(100dvh - 8rem);
  height: fit-content;
  position: absolute;
  left: 0;
  top: 8rem;
  transform: translateX(100%);
  transition: transform 0.8s;
  padding-block: 2rem;
}
@media screen and (max-width: 1271px) {
  .c-header__menu {
    height: calc(100dvh - 8rem);
    padding-block: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .c-header__menu {
    top: 10rem;
    height: calc(100dvh - 10rem);
    padding-block: 3rem;
  }
}
.c-header__menu.is-active {
  transform: translateX(0);
}
.c-header__menu-contents {
  background-color: var(--c-theme-bg);
  border-radius: 1.5rem;
  width: 95%;
  margin-inline: auto;
  padding-block: 6.5rem;
}
@media screen and (max-width: 1271px) {
  .c-header__menu-contents {
    height: 100%;
  }
}
.c-header__menu-inner {
  padding-inline: 5rem;
  height: 100%;
}
@media screen and (max-width: 1271px) {
  .c-header__menu-inner {
    overflow: auto;
    padding-inline: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .c-header__menu-inner {
    padding-inline: 5rem;
  }
}
.c-header__menu-inner .c-nav__link-list {
  width: 100%;
}
@media screen and (max-width: 1271px) {
  .c-header__menu-inner .c-nav__link-list {
    width: calc(33.333% - 3.3333333333rem);
  }
}
@media screen and (max-width: 767px) {
  .c-header__menu-inner .c-nav__link-list {
    width: calc(50% - 1.5rem);
  }
}

.c-head {
  position: relative;
  text-align: center;
  width: fit-content;
  margin-inline: auto;
  padding-top: 3.2rem;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .c-head {
    padding-top: 5rem;
  }
}
.c-head--white .c-head__text {
  color: var(--c-white);
}
.c-head__sub-text {
  position: absolute;
  top: 0;
  left: -6.4rem;
  z-index: -1;
  white-space: nowrap;
  height: 7rem;
}
.c-head__sub-text--md {
  height: 7.4rem;
}
.c-head__sub-text--lg {
  height: 7.8rem;
  top: -1rem;
}
@media screen and (max-width: 767px) {
  .c-head__sub-text {
    left: -7rem;
    height: 10rem;
  }
}
.c-head__text {
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.45;
}
@media screen and (max-width: 767px) {
  .c-head__text {
    font-size: 5.4rem;
  }
}
.c-head__text-accent {
  color: var(--c-key-color2);
}
.c-head__text-accent2 {
  color: var(--c-key-color4);
}

.c-head-contents__text {
  margin-top: 5.6rem;
  font-size: 1.8rem;
  letter-spacing: 0.08em;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .c-head-contents__text {
    font-size: 2.6rem;
  }
}
.c-head-contents--center .c-head-contents__text {
  text-align: center;
}

.c-flex-contents {
  display: flex;
  align-items: center;
  gap: 8rem;
}
.c-flex-contents__img-wrap {
  aspect-ratio: 720/480;
  width: 56.25%;
  position: relative;
}
@media screen and (max-width: 1271px) {
  .c-flex-contents__img-wrap {
    width: 100%;
  }
}
.c-flex-contents__img-position {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  transition: opacity 0.3s;
  opacity: 0;
}
.c-flex-contents__img-position:nth-of-type(2) {
  z-index: 2;
}
.c-flex-contents__img-position:nth-of-type(3) {
  z-index: 3;
}
.c-flex-contents__img-position:nth-of-type(4) {
  z-index: 4;
}
.c-flex-contents__img-position.is-active {
  opacity: 1;
}
.c-flex-contents__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 1271px) {
  .c-flex-contents {
    display: block;
  }
}

.c-flex-contents-item {
  width: calc(43.75% - 8rem);
}
@media screen and (max-width: 1271px) {
  .c-flex-contents-item {
    width: 100%;
  }
}

.c-link-list {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 1271px) {
  .c-link-list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0 2rem;
  }
}
@media screen and (max-width: 767px) {
  .c-link-list {
    flex-direction: column;
  }
}

.c-link {
  border-bottom: 0.12rem solid var(--c-gray2);
  padding-inline: 1.5rem 2.5rem;
  transition: background-color 0.4s;
}
@media screen and (max-width: 1271px) {
  .c-link {
    width: calc(50% - 2rem);
    padding-inline: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .c-link {
    width: 100%;
  }
}
@media (hover: hover) {
  .c-link:hover {
    background-color: var(--c-theme-bg);
  }
}
.c-link:first-of-type {
  border-top: 0.12rem solid var(--c-gray2);
}
@media screen and (max-width: 1271px) {
  .c-link:nth-of-type(2) {
    border-top: 0.12rem solid var(--c-gray2);
  }
}
@media screen and (max-width: 767px) {
  .c-link:nth-of-type(2) {
    border-top: none;
  }
}
.c-link__link {
  padding-block: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.c-link__inner {
  display: flex;
  align-items: center;
  gap: 3.2rem;
}
@media screen and (max-width: 1271px) {
  .c-link__inner {
    gap: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .c-link__inner {
    gap: 3.2rem;
  }
}
.c-link__img-wrap {
  display: block;
  height: 6.4rem;
  width: 6.4rem;
}
@media screen and (max-width: 1271px) {
  .c-link__img-wrap {
    width: 8.5rem;
    height: 8.5rem;
  }
}
@media screen and (max-width: 767px) {
  .c-link__img-wrap {
    height: 25rem;
    width: 25rem;
  }
}
.c-link__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-link__text {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .c-link__text {
    font-size: 2.8rem;
  }
}

.c-btn {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  width: fit-content;
}
@media (hover: hover) {
  .c-btn:hover .c-btn__icon {
    transform: scale(0.85);
  }
  .c-btn:hover .c-btn__icon--reverse {
    transform: scale(-0.85, 0.85);
  }
}
@media screen and (max-width: 1271px) {
  .c-btn--none-sp {
    display: none;
  }
}
.c-btn--none-pc {
  display: none;
}
@media screen and (max-width: 1271px) {
  .c-btn--none-pc {
    display: flex;
  }
}
.c-btn--white {
  color: var(--c-white);
}
.c-btn:disabled {
  pointer-events: none;
}
.c-btn:disabled .c-btn__icon {
  background-image: url("../media/images/common/icon-btn-gray.svg");
}
.c-btn:disabled .c-btn__text {
  color: #757575;
}
.c-btn__icon {
  display: inline-block;
  background-image: url("../media/images/common/icon-btn.svg");
  background-size: contain;
  background-repeat: no-repeat;
  width: 4.8rem;
  height: 4.8rem;
  transition: transform 0.4s;
}
@media screen and (max-width: 767px) {
  .c-btn__icon {
    width: 7rem;
    height: 7rem;
  }
}
.c-btn__icon--link {
  background-image: url("../media/images/common/icon-btn-link.svg");
}
.c-btn__icon--reverse {
  transform: scale(-1, 1);
}
.c-btn__icon--small {
  background-image: url("../media/images/common/icon-btn-small.svg");
  width: 3.2rem;
  height: 3.2rem;
}
@media screen and (max-width: 767px) {
  .c-btn__icon--small {
    width: 6rem;
    height: 6rem;
  }
}
.c-btn__text {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.4444444444;
}
@media screen and (max-width: 767px) {
  .c-btn__text {
    font-size: 2.8rem;
  }
}

.c-card-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.2rem;
}
@media screen and (max-width: 1271px) {
  .c-card-list {
    gap: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .c-card-list {
    display: block;
  }
}

.c-card:nth-of-type(even) .c-card__contents {
  padding-inline: 6.4rem 8rem;
}
@media screen and (max-width: 767px) {
  .c-card:nth-of-type(n + 2) {
    margin-top: 6rem;
  }
}
@media (hover: hover) {
  .c-card:hover .c-card__icon {
    transform: translate(100%, -50%) scale(0.8);
  }
  .c-card:hover .c-card__img {
    transform: scale(1.05);
  }
}
.c-card__link {
  background-color: var(--c-theme-bg);
  height: 100%;
}
.c-card__img-wrap {
  aspect-ratio: 784/480;
  display: block;
  width: 100%;
  height: auto;
  overflow: hidden;
}
.c-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.c-card__contents {
  padding-block: 5.6rem 7.2rem;
  background-color: var(--c-theme-bg);
  padding-inline: 8rem 6.4rem;
}
@media screen and (max-width: 1271px) {
  .c-card__contents {
    padding-inline: 4rem !important;
  }
}
.c-card__head-wrap {
  position: relative;
  width: fit-content;
  margin-inline: auto;
}
.c-card__head-wrap .c-head {
  margin: 0;
}
.c-card__text {
  font-size: 1.8rem;
  letter-spacing: 0.08em;
  line-height: 1.7777777778;
  margin-top: 4.8rem;
}
@media screen and (max-width: 1271px) {
  .c-card__text {
    margin-top: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .c-card__text {
    font-size: 2.6rem;
  }
}
.c-card__icon {
  width: 4.8rem;
  height: 4.8rem;
  position: absolute;
  top: calc(50% + 1.5rem);
  right: -2.4rem;
  transform: translate(100%, -50%);
  transition: transform 0.4s;
}
@media screen and (max-width: 1271px) {
  .c-card__icon {
    width: 4.2rem;
    height: 4.2rem;
    top: calc(50% + 1.8rem);
    transform: translate(100%, -50%);
    right: -2rem;
  }
}
@media screen and (max-width: 767px) {
  .c-card__icon {
    width: 7rem;
    height: 7rem;
  }
}

.c-news-area {
  display: flex;
  justify-content: center;
  gap: 10.4rem;
}
@media screen and (max-width: 1271px) {
  .c-news-area {
    display: block;
  }
}
.c-news-area .c-btn {
  margin-top: 5.6rem;
}
@media screen and (max-width: 1271px) {
  .c-news-area .c-btn {
    margin-top: 3rem;
    margin-inline: auto;
  }
}

.c-news-area-head {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 23.9rem;
}
@media screen and (max-width: 1271px) {
  .c-news-area-head {
    display: block;
    width: 100%;
  }
}
.c-news-area-head .c-head {
  margin: 0;
}
@media screen and (max-width: 1271px) {
  .c-news-area-head .c-head {
    margin-inline: auto;
  }
}

.c-news-list {
  width: calc(100% - 10.4rem - 23.9rem);
}
.c-news-list--wide {
  width: 100%;
}
@media screen and (max-width: 1271px) {
  .c-news-list {
    width: 100%;
    margin-top: 6rem;
  }
}

.c-news:nth-of-type(n + 2) .c-news__link {
  margin-top: 2.4rem;
}
@media screen and (max-width: 767px) {
  .c-news:nth-of-type(n + 2) .c-news__link {
    margin-top: 3rem;
  }
}
.c-news__link {
  display: flex;
  gap: 2.4rem;
  padding-bottom: 2.4rem;
  border-bottom: 0.1rem solid var(--c-gray2);
}
@media (hover: hover) {
  .c-news__link:hover .c-news__text {
    color: var(--c-theme);
  }
}
@media screen and (max-width: 767px) {
  .c-news__link {
    gap: 3rem;
    padding-bottom: 3rem;
    display: block;
  }
}
.c-news__date {
  font-size: 1.8rem;
  letter-spacing: 0.08em;
  line-height: 1.4444444444;
}
@media screen and (max-width: 767px) {
  .c-news__date {
    font-size: 2.4rem;
    margin-right: 1rem;
  }
}
.c-news__text {
  font-size: 1.8rem;
  letter-spacing: 0.08em;
  line-height: 1.4444444444;
  transition: color 0.3s;
}
@media screen and (max-width: 767px) {
  .c-news__text {
    font-size: 2.6rem;
    display: block;
    margin-top: 2rem;
  }
}

.c-bnr-link {
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 56rem;
  padding-inline: 16rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 1271px) {
  .c-bnr-link {
    padding-inline: 3rem;
    height: auto;
    padding-block: 12rem;
  }
}
.c-bnr-link--recruit {
  background-image: url("../media/images/top/img-recruit-link-bg.webp");
}
.c-bnr-link--environment {
  background-image: url("../media/images/career/img-environment-link-bg.webp");
}
.c-bnr-link__wrap {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
  padding-left: 6rem;
}
.c-bnr-link__wrap .c-head {
  margin: 0;
}
@media screen and (max-width: 1271px) {
  .c-bnr-link__wrap {
    align-items: center;
    flex-direction: column;
    gap: 4rem;
    padding-left: 0;
  }
}
.c-bnr-link__link-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.c-bnr-link__text {
  color: var(--c-white);
  font-size: 1.8rem;
  letter-spacing: 0.08em;
  line-height: 1.7777777778;
  margin-top: 5.6rem;
}
@media screen and (max-width: 1271px) {
  .c-bnr-link__text {
    width: 70rem;
    margin-inline: auto;
  }
}
@media screen and (max-width: 767px) {
  .c-bnr-link__text {
    margin-top: 4rem;
    margin-inline: 0;
    width: 100%;
    font-size: 2.6rem;
  }
}

.c-bnr-list {
  display: grid;
  gap: 4.3rem;
  grid-template-columns: 1fr 1fr 1fr;
}
@media screen and (max-width: 767px) {
  .c-bnr-list {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .c-bnr:nth-of-type(n + 2) {
    margin-top: 5.5rem;
  }
}
.c-bnr:nth-of-type(2) .c-bnr__img-wrap {
  border: 1px solid var(--c-gray2);
}
.c-bnr a {
  width: 100%;
}
.c-bnr__img-wrap {
  display: block;
  aspect-ratio: 398/224;
  width: 100%;
  height: auto;
  border-radius: 0.8rem;
  overflow: hidden;
}
@media (hover: hover) {
  .c-bnr__img-wrap:hover .c-bnr__img {
    transform: scale(1.05);
  }
}
.c-bnr__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.c-bnr__text {
  text-align: center;
  font-size: 1.8rem;
  letter-spacing: 0.08em;
  line-height: 1;
  margin-top: 1.6rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .c-bnr__text {
    font-size: 3rem;
    margin-top: 3rem;
  }
}

.c-bnr2 {
  display: block;
  margin-inline: auto;
  width: 100%;
  max-width: 84rem;
  transition: opacity 0.2s, transform 0.3s;
}
@media (hover: hover) {
  .c-bnr2:hover {
    opacity: 0.7;
    transform: scale(0.99);
  }
}
.c-bnr2__img {
  width: 100%;
  height: auto;
}
.c-bnr2:nth-of-type(n + 2) {
  margin-top: 3.2rem;
}

.c-top-btn {
  display: none;
  width: 8rem;
  height: 8rem;
  background-color: var(--c-white);
  border: 0.4rem solid var(--c-theme);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 100vh;
  position: fixed;
  bottom: 1.5rem;
  right: 3.3rem;
  gap: 0.2rem;
  z-index: 100;
  transform-origin: center;
  transition: transform 0.3s;
}
@media (hover: hover) {
  .c-top-btn:hover {
    transform: scale(0.95);
  }
}
@media screen and (max-width: 1271px) {
  .c-top-btn {
    width: 6rem;
    height: 6rem;
    bottom: 1.5rem;
    right: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .c-top-btn {
    width: 9rem;
    height: 9rem;
    bottom: 1.5rem;
    right: 1.5rem;
  }
}
.c-top-btn__text {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 1271px) {
  .c-top-btn__text {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 767px) {
  .c-top-btn__text {
    font-size: 2rem;
  }
}
.c-top-btn__icon {
  width: 2.4rem;
}
@media screen and (max-width: 1271px) {
  .c-top-btn__icon {
    width: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .c-top-btn__icon {
    width: 2.2rem;
  }
}

.c-nav {
  display: flex;
  justify-content: flex-end;
  gap: 3.2rem;
}
@media screen and (max-width: 1271px) {
  .c-nav {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 5rem;
  }
}
@media screen and (max-width: 767px) {
  .c-nav {
    column-gap: 3rem;
	  row-gap:4rem;
  }
}
.c-nav--start {
  justify-content: flex-start;
}
.c-nav__link-list {
  width: 12.6315789474vw;
  min-width: 18rem;
 /* // max-width: 24rem; */
}
footer .c-nav{
	gap:2.2rem;
}
@media screen and (max-width: 767px) {
    footer .c-nav{
       column-gap: 3rem;
		row-gap:4rem;
    }
}
footer .c-nav__link-list {
  max-width: 18rem;
  min-width:unset;
  width: 11.6315789474vw;
}
@media screen and (max-width: 1271px) {
  .c-nav__link-list, footer .c-nav__link-list {
    width: calc(33.333% - 3.3333333333rem);
    min-width: inherit;
    max-width: 40rem;
  }
}
@media screen and (max-width: 1271px) {
 footer .c-nav__link-list {
    max-width: 40rem;
	min-width:18rem;
  }
}
@media screen and (max-width: 767px) {
  .c-nav__link-list,footer .c-nav__link-list {
    width: calc(50% - 1.5rem);
  }
}
.c-nav__link:first-of-type {
  padding-bottom: 1.35rem;
  border-bottom: 0.1rem solid var(--c-black);
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 767px) {
  .c-nav__link:first-of-type {
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
.c-nav__link--sub {
  margin-top: 0.8rem;
}
@media screen and (max-width: 767px) {
  .c-nav__link--sub {
    margin-top: 1.6rem;
  }
}
.c-nav__link-text {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.3;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  transition: color 0.3s;
}
.c-nav__link-text::before {
  content: "";
  display: block;
  border-radius: 100vh;
  background-color: var(--c-theme);
  opacity: 0.4;
  width: 0.8rem;
  height: 0.8rem;
}
@media screen and (max-width: 767px) {
  .c-nav__link-text::before {
    width: 1.6rem;
    height: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .c-nav__link-text {
    font-size: 2.8rem;
  }
}
@media (hover: hover) {
  .c-nav__link-text:hover {
    color: var(--c-theme);
  }
}
.c-nav__bottom-link-list {
  margin-top: 1.6rem;
  display: grid;
  grid-template-columns: repeat(4, max-content);
  column-gap: 3.2rem;
  row-gap: 0.8rem;
}
.c-nav__bottom-link-list--mtLarge {
  margin-top: 5rem;
}
@media screen and (max-width: 1500px) {
  .c-nav__bottom-link-list {
    grid-template-columns: repeat(3, max-content);
  }
}
@media screen and (max-width: 1271px) {
  .c-nav__bottom-link-list {
    margin-top: 7rem;
    width: 100%;
    grid-template-columns: repeat(2, max-content);
    column-gap: 4rem;
    row-gap: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .c-nav__bottom-link-list {
    grid-template-columns: repeat(1, max-content);
  }
}

.c-sub-page-head {
  background-color: #F1F7E3;
  background-size: cover;
  background-position: center;
  height: 27.4rem;
  padding-top: 8rem;
}
@media screen and (max-width: 1271px) {
  .c-sub-page-head {
    display: flex;
    align-items: center;
    padding-top: 0;
    padding-bottom: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .c-sub-page-head {
    height: 35rem;
  }
  .c-sub-page-head .c-head {
    transform: scale(0.9);
  }
}
.c-sub-page-head--img {
  height: min(64rem, 100svh - 8rem);
  background-color: transparent;
  padding-top: 0;
  display: flex;
  align-items: center;
  padding-bottom: 1.6rem;
}
@media screen and (max-width: 767px) {
  .c-sub-page-head--img {
    height: 50rem;
    padding-bottom: 3rem;
  }
}
@media screen and (min-width: 1600px) {
.c-sub-page-head--business {
 background-position: 50% 20%;
}
}
.c-sub-page-head--policy{
	background-image: url(../media/images/policy/img-mv.webp);
}
.c-sub-page-head--news{
	background-image: url(../media/images/news/img-mv.webp);
}
.c-sub-page-head--business {
  background-image: url(../media/images/business/img-mv.webp);
}
.c-sub-page-head--people {
  background-image: url(../media/images/people/img-mv.webp);
}
.c-sub-page-head--strategy {
  background-image: url(../media/images/strategy/img-mv.webp);
}
.c-sub-page-head--environment {
  background-image: url(../media/images/environment/img-mv.webp);
}
.c-sub-page-head--newgraduates {
  background-image: url(../media/images/newgraduates/img-mv.webp);
}
.c-sub-page-head--career {
  background-image: url(../media/images/career/img-mv.webp);
}
.c-sub-page-head--board-members {
  background-image: url(../media/images/board-members/img-mv.webp);
}
.c-sub-page-head--property {
  background-image: url(../media/images/property/img-mv.webp);
}
.c-sub-page-head--franchise {
  background-image: url(../media/images/franchise/img-mv.webp);
}
.c-sub-page-head--company {
  background-image: url(../media/images/company/img-mv.webp);
}
.c-sub-page-head--requipment {
  background-image: url(../media/images/requipment/img-mv.webp);
}
.c-sub-page-head--contact {
  background-image: url(../media/images/contact/img-mv.webp);
}

.c-form__contents,
.c-form .form-group,
.mailform__contents,
.mailform .form-group {
  display: flex;
  align-items: center;
  gap: 4rem;
  padding-block: 3.2rem;
  border-bottom: max(0.1rem, 1px) solid #CCCCCC;
}
@media screen and (max-width: 767px) {
  .c-form__contents,
  .c-form .form-group,
  .mailform__contents,
  .mailform .form-group {
    flex-direction: column;
    gap: 2rem;
    padding-bottom: 5rem;
    align-items: flex-start;
  }
}
.c-form__contents--start,
.c-form .form-group--start,
.mailform__contents--start,
.mailform .form-group--start {
  align-items: flex-start;
}
.c-form__contents--start .c-form, .c-form__contents--start .mailform__subject-wrap,
.c-form .form-group--start .c-form,
.c-form .form-group--start .mailform__subject-wrap,
.mailform__contents--start .c-form,
.mailform__contents--start .mailform__subject-wrap,
.mailform .form-group--start .c-form,
.mailform .form-group--start .mailform__subject-wrap {
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .c-form__contents--start .c-form, .c-form__contents--start .mailform__subject-wrap,
  .c-form .form-group--start .c-form,
  .c-form .form-group--start .mailform__subject-wrap,
  .mailform__contents--start .c-form,
  .mailform__contents--start .mailform__subject-wrap,
  .mailform .form-group--start .c-form,
  .mailform .form-group--start .mailform__subject-wrap {
    margin-top: 0;
  }
}
.c-form__subject-wrap,
.c-form .control-label,
.mailform__subject-wrap,
.mailform .control-label {
  min-width: 26.3rem;
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  height: fit-content;
}
@media screen and (max-width: 767px) {
  .c-form__subject-wrap,
  .c-form .control-label,
  .mailform__subject-wrap,
  .mailform .control-label {
    width: 100%;
    gap: 1.6rem;
  }
}
.c-form__subject,
.c-form .title,
.mailform__subject,
.mailform .title {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.875;
  max-width: 20.8rem;
}
@media screen and (max-width: 767px) {
  .c-form__subject,
  .c-form .title,
  .mailform__subject,
  .mailform .title {
    font-size: 2.8rem;
    max-width: calc(100% - 1.6rem - 9rem);
  }
}
.c-form__required,
.c-form .required,
.mailform__required,
.mailform .required {
  display: inline-block;
  background-color: #FF695B;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  line-height: 2.8rem;
  height: 2.8rem;
  width: 4.9rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-form__required,
  .c-form .required,
  .mailform__required,
  .mailform .required {
    font-size: 2.8rem;
    width: 9rem;
    height: 5rem;
    line-height: 5rem;
  }
}
.c-form__input-wrap,
.c-form .controls,
.mailform__input-wrap,
.mailform .controls {
  flex-grow: 1;
}
@media screen and (max-width: 767px) {
  .c-form__input-wrap,
  .c-form .controls,
  .mailform__input-wrap,
  .mailform .controls {
    width: 100%;
  }
}
.c-form__input input,
.c-form__input select,
.c-form__input textarea,
.c-form .controls input,
.c-form .controls select,
.c-form .controls textarea,
.mailform__input input,
.mailform__input select,
.mailform__input textarea,
.mailform .controls input,
.mailform .controls select,
.mailform .controls textarea {
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  line-height: 1.875;
  width: 48rem;
  height: 4.8rem;
  padding-inline: 2.4rem;
  border: max(0.1rem, 1px) solid #CCCCCC;
}
@media screen and (max-width: 1271px) {
  .c-form__input input,
  .c-form__input select,
  .c-form__input textarea,
  .c-form .controls input,
  .c-form .controls select,
  .c-form .controls textarea,
  .mailform__input input,
  .mailform__input select,
  .mailform__input textarea,
  .mailform .controls input,
  .mailform .controls select,
  .mailform .controls textarea {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .c-form__input input,
  .c-form__input select,
  .c-form__input textarea,
  .c-form .controls input,
  .c-form .controls select,
  .c-form .controls textarea,
  .mailform__input input,
  .mailform__input select,
  .mailform__input textarea,
  .mailform .controls input,
  .mailform .controls select,
  .mailform .controls textarea {
    font-size: 2.6rem;
    height: 7.6rem;
  }
}
.c-form__input input::placeholder,
.c-form__input select::placeholder,
.c-form__input textarea::placeholder,
.c-form .controls input::placeholder,
.c-form .controls select::placeholder,
.c-form .controls textarea::placeholder,
.mailform__input input::placeholder,
.mailform__input select::placeholder,
.mailform__input textarea::placeholder,
.mailform .controls input::placeholder,
.mailform .controls select::placeholder,
.mailform .controls textarea::placeholder {
  color: #757575;
}
.c-form__input--min,
.c-form .controls--min,
.mailform__input--min,
.mailform .controls--min {
  width: 20rem;
}
.c-form__input --textarea,
.c-form__input textarea,
.c-form .controls --textarea,
.c-form .controls textarea,
.mailform__input --textarea,
.mailform__input textarea,
.mailform .controls --textarea,
.mailform .controls textarea {
  field-sizing: content;
  width: 80rem;
  min-height: 32rem;
  padding-block: 2.4rem;
  border: max(0.1rem, 1px) solid #CCCCCC;
}
@media screen and (max-width: 1271px) {
  .c-form__input --textarea,
  .c-form__input textarea,
  .c-form .controls --textarea,
  .c-form .controls textarea,
  .mailform__input --textarea,
  .mailform__input textarea,
  .mailform .controls --textarea,
  .mailform .controls textarea {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .c-form__input --textarea,
  .c-form__input textarea,
  .c-form .controls --textarea,
  .c-form .controls textarea,
  .mailform__input --textarea,
  .mailform__input textarea,
  .mailform .controls --textarea,
  .mailform .controls textarea {
    min-height: 40rem;
  }
}
.c-form__input --select,
.c-form__input select,
.c-form .controls --select,
.c-form .controls select,
.mailform__input --select,
.mailform__input select,
.mailform .controls --select,
.mailform .controls select {
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  line-height: 1.875;
  width: 48rem;
  height: 4.8rem;
  padding-inline: 2.4rem;
  border: max(0.1rem, 1px) solid #CCCCCC;
}
@media screen and (max-width: 1271px) {
  .c-form__input --select,
  .c-form__input select,
  .c-form .controls --select,
  .c-form .controls select,
  .mailform__input --select,
  .mailform__input select,
  .mailform .controls --select,
  .mailform .controls select {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .c-form__input --select,
  .c-form__input select,
  .c-form .controls --select,
  .c-form .controls select,
  .mailform__input --select,
  .mailform__input select,
  .mailform .controls --select,
  .mailform .controls select {
    font-size: 2.6rem;
    height: 7.6rem;
  }
}
.c-form__input--date.is-empty,
.c-form .controls--date.is-empty,
.mailform__input--date.is-empty,
.mailform .controls--date.is-empty {
  color: #757575;
}
.c-form__file,
.mailform__file {
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .c-form__file,
  .mailform__file {
    font-size: 2.6rem;
  }
}
.c-form__select-wrap,
.c-form .controls:has(select),
.mailform__select-wrap,
.mailform .controls:has(select) {
  position: relative;
  width: fit-content;
  max-width: fit-content;
}
@media screen and (max-width: 1271px) {
  .c-form__select-wrap,
  .c-form .controls:has(select),
  .mailform__select-wrap,
  .mailform .controls:has(select) {
    width: 100%;
  }
}
.c-form__select-wrap::before,
.c-form .controls:has(select)::before,
.mailform__select-wrap::before,
.mailform .controls:has(select)::before {
  content: "";
  display: block;
  background-color: #504D4E;
  width: 1.4rem;
  height: 0.8rem;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(-2.4rem, -50%);
}
@media screen and (max-width: 767px) {
  .c-form__select-wrap::before,
  .c-form .controls:has(select)::before,
  .mailform__select-wrap::before,
  .mailform .controls:has(select)::before {
    width: 2.8rem;
    height: 1.6rem;
  }
}
.c-form .privacy_policy,
.mailform .privacy_policy {
  border-bottom: 0 !important;
  text-align: center;
}
.c-form .privacy_policy .control-label,
.mailform .privacy_policy .control-label {
  display: none;
}
.c-form .privacy_policy .controls,
.mailform .privacy_policy .controls {
  width: 100% !important;
}
.c-form__check-wrap,
.mailform__check-wrap {
  margin-top: 5.6rem;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .c-form__check-wrap,
  .mailform__check-wrap {
    margin-top: 8rem;
  }
}
.c-form__checkbox,
.c-form .checkbox input,
.mailform__checkbox,
.mailform .checkbox input {
  display: none !important;
}
.c-form__checkbox:checked + .c-form label::after, .c-form__checkbox:checked .mailform__cb-label label::after,
.c-form .checkbox input:checked + .c-form label::after,
.c-form .checkbox input:checked .mailform__cb-label label::after,
.mailform__checkbox:checked + .c-form label::after,
.mailform__checkbox:checked .mailform__cb-label label::after,
.mailform .checkbox input:checked + .c-form label::after,
.mailform .checkbox input:checked .mailform__cb-label label::after {
  background-image: url("../media/images/common/icon-check.svg");
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  display: block;
  width: 1.6rem;
  height: 1.8rem;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: -15.6rem;
  transform: translate(-100%, -50%);
}
@media screen and (max-width: 1271px) {
  .c-form__checkbox:checked + .c-form label::after, .c-form__checkbox:checked .mailform__cb-label label::after,
  .c-form .checkbox input:checked + .c-form label::after,
  .c-form .checkbox input:checked .mailform__cb-label label::after,
  .mailform__checkbox:checked + .c-form label::after,
  .mailform__checkbox:checked .mailform__cb-label label::after,
  .mailform .checkbox input:checked + .c-form label::after,
  .mailform .checkbox input:checked .mailform__cb-label label::after {
    left: -15.4rem;
  }
}
@media screen and (max-width: 767px) {
  .c-form__checkbox:checked + .c-form label::after, .c-form__checkbox:checked .mailform__cb-label label::after,
  .c-form .checkbox input:checked + .c-form label::after,
  .c-form .checkbox input:checked .mailform__cb-label label::after,
  .mailform__checkbox:checked + .c-form label::after,
  .mailform__checkbox:checked .mailform__cb-label label::after,
  .mailform .checkbox input:checked + .c-form label::after,
  .mailform .checkbox input:checked .mailform__cb-label label::after {
    width: 3rem;
    height: 3rem;
    left: -26.2rem;
  }
}
.c-form__cb-label,
.c-form .controls:has(.checkbox),
.mailform__cb-label,
.mailform .controls:has(.checkbox) {
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: 0.08em;
  width: fit-content;
  text-align: center;
  padding-left: 4rem;
}
@media screen and (max-width: 767px) {
  .c-form__cb-label,
  .c-form .controls:has(.checkbox),
  .mailform__cb-label,
  .mailform .controls:has(.checkbox) {
    font-size: 2.8rem;
  }
}
.c-form__cb-label label,
.c-form__cb-label .checkbox,
.c-form .controls:has(.checkbox) label,
.c-form .controls:has(.checkbox) .checkbox,
.mailform__cb-label label,
.mailform__cb-label .checkbox,
.mailform .controls:has(.checkbox) label,
.mailform .controls:has(.checkbox) .checkbox {
  position: relative;
}
.c-form__cb-label label:has(input[type=checkbox]:checked)::after,
.c-form__cb-label .checkbox:has(input[type=checkbox]:checked)::after,
.c-form .controls:has(.checkbox) label:has(input[type=checkbox]:checked)::after,
.c-form .controls:has(.checkbox) .checkbox:has(input[type=checkbox]:checked)::after,
.mailform__cb-label label:has(input[type=checkbox]:checked)::after,
.mailform__cb-label .checkbox:has(input[type=checkbox]:checked)::after,
.mailform .controls:has(.checkbox) label:has(input[type=checkbox]:checked)::after,
.mailform .controls:has(.checkbox) .checkbox:has(input[type=checkbox]:checked)::after {
  background-image: url("../media/images/common/icon-check.svg");
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  display: block;
  width: 1.6rem;
  height: 1.8rem;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: -2.5rem;
  transform: translate(-100%, -50%);
}
@media screen and (max-width: 767px) {
  .c-form__cb-label label:has(input[type=checkbox]:checked)::after,
  .c-form__cb-label .checkbox:has(input[type=checkbox]:checked)::after,
  .c-form .controls:has(.checkbox) label:has(input[type=checkbox]:checked)::after,
  .c-form .controls:has(.checkbox) .checkbox:has(input[type=checkbox]:checked)::after,
  .mailform__cb-label label:has(input[type=checkbox]:checked)::after,
  .mailform__cb-label .checkbox:has(input[type=checkbox]:checked)::after,
  .mailform .controls:has(.checkbox) label:has(input[type=checkbox]:checked)::after,
  .mailform .controls:has(.checkbox) .checkbox:has(input[type=checkbox]:checked)::after {
    width: 3rem;
    height: 3rem;
  }
}
.c-form__cb-label label::before,
.c-form__cb-label .checkbox::before,
.c-form .controls:has(.checkbox) label::before,
.c-form .controls:has(.checkbox) .checkbox::before,
.mailform__cb-label label::before,
.mailform__cb-label .checkbox::before,
.mailform .controls:has(.checkbox) label::before,
.mailform .controls:has(.checkbox) .checkbox::before {
  content: "";
  display: block;
  border-radius: 0.4rem;
  border: 0.2rem solid #CCCCCC;
  width: 2.4rem;
  height: 2.4rem;
  position: absolute;
  top: 50%;
  left: -2rem;
  transform: translate(-100%, -50%);
}
@media screen and (max-width: 767px) {
  .c-form__cb-label label::before,
  .c-form__cb-label .checkbox::before,
  .c-form .controls:has(.checkbox) label::before,
  .c-form .controls:has(.checkbox) .checkbox::before,
  .mailform__cb-label label::before,
  .mailform__cb-label .checkbox::before,
  .mailform .controls:has(.checkbox) label::before,
  .mailform .controls:has(.checkbox) .checkbox::before {
    width: 4rem;
    height: 4rem;
  }
}
.c-form__cb-label-link,
.c-form .checkbox a,
.mailform__cb-label-link,
.mailform .checkbox a {
  color: #0077A6;
  text-decoration: underline;
  transition: opacity 0.3s;
}
@media (hover: hover) {
  .c-form__cb-label-link:hover,
  .c-form .checkbox a:hover,
  .mailform__cb-label-link:hover,
  .mailform .checkbox a:hover {
    opacity: 0.5;
  }
}
.c-form .form-actions,
.mailform .form-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}
.c-form .btn,
.mailform .btn {
  width: fit-content;
  padding-inline: 7rem;
  max-width: 100%;
  height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url("../media/images/common/icon-btn.svg");
  background-size: 4.8rem 4.8rem;
  background-repeat: no-repeat;
  background-position: 0 50%;
  font-size: 18px;
  font-weight: 700;
  transition: background-size 0.3s, background-position 0.3s;
}
@media (hover: hover) {
  .c-form .btn:hover,
  .mailform .btn:hover {
    background-size: 4.2rem 4.2rem;
    background-position: 0.3rem 50%;
  }
}
.c-form .btn.btn-default,
.mailform .btn.btn-default {
  background-image: url("../media/images/common/icon-btn-reverse.svg");
}
.c-form__btn,
.c-form .btn,
.mailform__btn,
.mailform .btn {
  width: fit-content;
  margin-top: 4.8rem;
}
@media screen and (max-width: 767px) {
  .c-form__btn,
  .c-form .btn,
  .mailform__btn,
  .mailform .btn {
    margin-top: 8rem;
  }
}
.c-form .preset,
.mailform .preset {
  margin-bottom: 4rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .c-form .preset,
  .mailform .preset {
    margin-bottom: 6rem;
  }
}
.c-form label.error-tooltip,
.mailform label.error-tooltip {
  color: #FF695B;
  margin-top: 0.8rem;
  display: block;
}
@media screen and (max-width: 767px) {
  .c-form label.error-tooltip,
  .mailform label.error-tooltip {
    margin-top: 1.6rem;
  }
}
.c-form .controls .error,
.mailform .controls .error {
  color: #FF695B;
  margin-top: 0.8rem;
  display: block;
}
@media screen and (max-width: 767px) {
  .c-form .controls .error,
  .mailform .controls .error {
    margin-top: 1.6rem;
  }
}

.c-breadcrumbs {
  margin-top: 20rem;
  margin-bottom: 2.4rem;
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
@media screen and (max-width: 767px) {
  .c-breadcrumbs {
    margin-top: 24rem;
    margin-bottom: 3rem;
  }
}
.c-breadcrumbs--mt-small {
  margin-top: 2.4rem;
}
@media screen and (max-width: 767px) {
  .c-breadcrumbs--mt-small {
    margin-top: 3rem;
  }
}
.c-breadcrumbs__list {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.c-breadcrumbs__list:not(:last-of-type)::after {
  content: "";
  display: block;
  background-color: #A9CE52;
  border-radius: 100vh;
  width: 0.8rem;
  height: 0.8rem;
}
.c-breadcrumbs__list:not(:last-of-type) .c-breadcrumbs__item {
  transition: color 0.3s;
}
@media (hover: hover) {
  .c-breadcrumbs__list:not(:last-of-type) .c-breadcrumbs__item:hover {
    color: var(--c-theme);
  }
}
.c-breadcrumbs__list:not(:last-of-type) .c-breadcrumbs__item span {
  text-decoration: underline;
}
.c-breadcrumbs__list:last-of-type {
  color: #707070;
}
.c-breadcrumbs__item {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .c-breadcrumbs__item {
    font-size: 2.1rem;
  }
}
.c-breadcrumbs__item span {
  display: inline-block;
}

.c-contact-message {
  font-size: 1.8rem;
  line-height: 1.7777777778;
  letter-spacing: 0.08em;
}
.c-contact-message--center {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-contact-message {
    font-size: 2.8rem;
  }
}

.c-contact-message-annotation {
  font-size: 1.8rem;
  letter-spacing: 0.08em;
  line-height: 1.7777777778;
  background-color: #F5F5F5;
  padding: 4rem;
  margin-bottom: 3.2rem;
}
@media screen and (max-width: 767px) {
  .c-contact-message-annotation {
    font-size: 2.8rem;
  }
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.2rem;
  margin-top: 8rem;
}
@media screen and (max-width: 767px) {
  .pagination {
    gap: 4.2rem;
  }
}
.pagination .prev,
.pagination .next {
  background-image: url(../media/images/common/icon-btn.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 5.6rem;
  height: 5.6rem;
  transition: transform 0.2s;
}
.pagination .prev.disabled,
.pagination .next.disabled {
  background-image: url(../media/images/common/icon-btn-gray.svg);
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .pagination .prev,
  .pagination .next {
    width: 6rem;
    height: 6rem;
  }
}
.pagination .prev a,
.pagination .next a {
  width: 100%;
  height: 100%;
}
.pagination .prev {
  transform: scale(-1, 1);
  margin-right: 1.6rem;
}
@media (hover: hover) {
  .pagination .prev:hover {
    transform: scale(-0.8, 0.8);
  }
}
.pagination .next {
  margin-left: 1.6rem;
}
@media (hover: hover) {
  .pagination .next:hover {
    transform: scale(0.9);
  }
}
.pagination .page {
  font-size: 1.8rem;
  letter-spacing: 0.08em;
  line-height: 1;
  font-weight: bold;
  transition: color 0.2s;
}
.pagination .page.active {
  pointer-events: none;
  color: #757575;
}
@media (hover: hover) {
  .pagination .page:hover {
    color: #A9CE52;
  }
}
@media screen and (max-width: 767px) {
  .pagination .page {
    font-size: 2.6rem;
  }
}

.c-section-head {
  font-size: 4rem;
  letter-spacing: 0.08em;
  line-height: 1.3;
  font-weight: 700;
  width: fit-content;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  padding-bottom: 2.4rem;
  margin-bottom: 8.2rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-section-head {
    font-size: 4.6rem;
    padding-bottom: 3.2rem;
    margin-bottom: 10rem;
  }
}
.c-section-head--pb-small {
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .c-section-head--pb-small {
    margin-bottom: 8rem;
  }
}
.c-section-head--pb-small2 {
  margin-bottom: 6.6rem;
}
@media screen and (max-width: 767px) {
  .c-section-head--pb-small2 {
    margin-bottom: 8rem;
  }
}
.c-section-head::before {
  content: "";
  background-image: url(../media/images/common/icon-head-line.svg);
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
  height: 1rem;
  width: 4.6rem;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 100%);
}
@media screen and (max-width: 767px) {
  .c-section-head::before {
    width: 9.6rem;
    height: 2rem;
  }
}

.c-message {
  display: flex;
  gap: 8rem;
}
.c-message--lowgap {
  gap: 3.2rem;
}
@media screen and (max-width: 1271px) {
  .c-message--lowgap {
    gap: 4rem;
  }
}
@media screen and (max-width: 1271px) {
  .c-message {
    flex-direction: column-reverse;
    gap: 4rem;
  }
}
.c-message__text-wrap {
  flex-basis: 0;
  flex-grow: 1;
}
@media screen and (max-width: 1271px) {
  .c-message__text-wrap {
    margin-bottom: 2rem;
  }
}
.c-message__text {
  font-size: 1.8rem;
  letter-spacing: 0.08em;
  line-height: 1.7777777778;
}

.c-message__text.u-sp-center{
	
}
@media screen and (max-width: 767px) {
  .c-message__text {
    font-size: 2.8rem;
  }
	.c-message__text.u-sp-center{
		text-align:center;
	}
}
.c-message__text--pt {
  margin-top: 4rem;
}
@media screen and (max-width: 1271px) {
  .c-message__text--pt {
    margin-top: 2rem;
  }
}
.c-message__text--bd {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .c-message__text--bd {
    font-size: 3.4rem;
  }
}
.c-message__img-wrap {
  width: 62rem;
}
@media screen and (max-width: 1271px) {
  .c-message__img-wrap {
    width: 100%;
  }
}
.c-message__img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.c-message__name-wrap {
  margin-top: 8rem;
  text-align: right;
}
.c-message__job {
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  line-height: 1;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .c-message__job {
    font-size: 2.8rem;
  }
}
.c-message__name {
  margin-top: 2.4rem;
  width: 21.5rem;
}
@media screen and (max-width: 767px) {
  .c-message__name {
    margin-top: 3rem;
    width: 38rem;
  }
}

.c-message2 {
  display: flex;
  gap: 8rem;
}
@media screen and (max-width: 1271px) {
  .c-message2 {
    flex-direction: column;
    gap: 6rem;
  }
}
.c-message2__img-wrap {
  width: 49.5rem;
  height: fit-content;
}
@media screen and (max-width: 1271px) {
  .c-message2__img-wrap {
    width: 100%;
  }
}
.c-message2__img {
  width: 100%;
  height: auto;
}
.c-message2__name {
  margin-top: 1.6rem;
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  text-align: center;
  font-weight: 700;
}
@media screen and (max-width: 1271px) {
  .c-message2__name {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .c-message2__name {
    font-size: 2.2rem;
  }
}
.c-message2__text-wrap {
  flex-basis: 0;
  flex-grow: 1;
}
.c-message2__catch {
  font-size: 3.2rem;
  line-height: 1.5;
  letter-spacing: 0.08em;
  font-weight: 700;
  margin-bottom: 3.2rem;
}
@media screen and (max-width: 767px) {
  .c-message2__catch {
    font-size: 3.6rem;
  }
}
.c-message2__company-name {
  font-size: 2.7rem;
  line-height: 1.4375;
  letter-spacing: 0.08em;
  font-weight: 700;
  margin-bottom: 3.7rem;
  padding-left: 2.4rem;
  position: relative;
}
.c-message2__company-name::before {
  content: "";
  display: block;
  height: 100%;
  width: 0.8rem;
  background-color: #A9CE52;
  position: absolute;
  top: 0;
  left: 0;
}

.c-text {
  font-size: 1.8rem;
  letter-spacing: 0.08em;
  line-height: 1.7777777778;
}
.c-text--lineheight {
  line-height: 2;
}
.c-text--bold {
  font-weight: 700;
}
.c-text--center {
  text-align: center;
}
.c-text--center-pconly {
  text-align: center;
}
@media screen and (max-width: 1271px) {
  .c-text--center-pconly {
    text-align: left;
  }
}
.c-text--catch {
  font-size: 2.4rem;
  line-height: 1.5;
  font-weight: 700;
  margin-bottom: 3.2rem;
}
.c-text--mx960 {
  max-width: 96rem;
  margin-inline: auto;
}
.c-text--white {
  color: #FFF;
}
.c-text--point {
  position: relative;
  z-index: 1;
  font-weight: 700;
}
.c-text--point::before {
  content: "";
  display: block;
  background-color: #A9CE52;
  width: 100%;
  height: 0.8rem;
  position: absolute;
  bottom: 0.2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
.c-text--point.u-pc {
  display: inline-block !important;
}
@media screen and (max-width: 767px) {
  .c-text--point.u-pc {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .c-text--point.u-sp {
    display: inline-block !important;
  }
}
@media screen and (max-width: 767px) {
  .c-text {
    font-size: 2.5rem;
  }
}

.c-keywords {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .c-keywords {
    gap: 1.6rem;
  }
}
.c-keywords--gap-wide {
  gap: 1.6rem;
}
@media screen and (max-width: 767px) {
  .c-keywords--gap-wide {
    gap: 2.4rem;
  }
}
.c-keywords--left {
  justify-content: flex-start;
}
.c-keywords__item {
  background-color: #F5F5F5;
  padding-inline: 1.6rem;
  height: 3.2rem;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  line-height: 3.2rem;
  transition: color 0.2s;
}
.c-keywords__item.is-active {
  background-color: #A9CE52;
}
@media (hover: hover) {
  .c-keywords__item:hover {
    color: #A9CE52;
  }
}
@media screen and (max-width: 1600px) {
.c-keywords .c-keywords__item {
  background-color: #F5F5F5;
  padding-inline: 1.6rem;
  height: 3.2rem;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  line-height: 3.2rem;
  transition: color 0.2s;
}
}

@media screen and (max-width: 767px) {
  .c-keywords__item {
    font-size: 2.4rem;
    height: 4.6rem;
    line-height: 4.6rem;
  }
}

.c-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100dvh;
}
.c-modal__bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.56);
}
.c-modal__contents {
  background-color: #FFF;
  border-radius: 1.6rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 144rem;
  max-height: 90dvh;
  height: 90dvh;
  width: 90%;
  padding-block: 8rem;
  padding-inline: 2rem;
}
@media screen and (max-width: 1271px) {
  .c-modal__contents {
    padding-inline: 1rem;
    padding-block: 4rem;
  }
}
.c-modal__close {
  background-image: url(../media/images/common/icon-close.svg);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 4rem;
  right: 4rem;
  width: 7.2rem;
  height: 7.2rem;
  padding: 0;
  z-index: 1;
  transition: transform 0.3s;
}
@media (hover: hover) {
  .c-modal__close:hover {
    transform: scale(0.95);
  }
}
@media screen and (max-width: 1271px) {
  .c-modal__close {
    top: 2rem;
    right: 2rem;
  }
}
.c-modal__inner {
  height: 100%;
  overflow: auto;
  padding-inline: 14rem;
}
.c-modal__inner::-webkit-scrollbar {
  width: 6px;
}
@media screen and (max-width: 767px) {
  .c-modal__inner::-webkit-scrollbar {
    width: 0;
  }
}
.c-modal__inner::-webkit-scrollbar-track {
  background: #F5F5F5;
}
.c-modal__inner::-webkit-scrollbar-thumb {
  background-color: #A9CE52;
  border-radius: 100vh;
}
@media screen and (max-width: 1271px) {
  .c-modal__inner {
    padding-inline: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .c-modal__inner {
    padding-inline: 2rem;
  }
}

.c-card-item {
  display: flex;
  gap: 5.6rem;
  padding: 6.4rem;
  background-color: #FFF;
}
@media screen and (max-width: 1271px) {
  .c-card-item {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .c-card-item {
    padding: 4.8rem;
  }
}
.c-card-item:nth-of-type(n + 2) {
  margin-top: 3.2rem;
}
.c-card-item__img-wrap {
  display: block;
  width: 42.6rem;
  height: fit-content;
}
@media screen and (max-width: 1271px) {
  .c-card-item__img-wrap {
    width: 100%;
  }
}
.c-card-item__img {
  aspect-ratio: 426/266;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.c-card-item__img--wide {
  aspect-ratio: 426/240;
}
.c-card-item__text-wrap {
  flex-basis: 0;
  flex-grow: 1;
}
@media screen and (max-width: 1271px) {
  .c-card-item__text-wrap {
    width: 100%;
    margin-top: 4rem;
  }
}
.c-card-item__head {
  font-size: 3rem;
  letter-spacing: 0.08em;
  line-height: 1;
  font-weight: 700;
  display: flex;
  padding-left: 2.4rem;
  padding-block: 1rem;
  align-items: center;
  position: relative;
}
.c-card-item__head::before {
  content: "";
  display: block;
  width: 0.8rem;
  height: 100%;
  background-color: #A9CE52;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .c-card-item__head {
    font-size: 3.6rem;
  }
}
.c-card-item__text {
  margin-top: 3.2rem;
  font-size: 1.8rem;
  letter-spacing: 0.08em;
  line-height: 1.7777777778;
}
@media screen and (max-width: 767px) {
  .c-card-item__text {
    font-size: 2.6rem;
  }
}

.c-requirements-btn {
  display: flex;
  justify-content: center;
  gap: 4.8rem;
  position: relative;
  z-index: 1;
}
.c-requirements-btn__btn {
  padding-bottom: 1.6rem;
  font-size: 1.8rem;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: #6E6E6E;
  transition: color 0.2s;
}
.c-requirements-btn__btn.is-active {
  pointer-events: none;
  color: #000;
  border-bottom: 0.2rem solid #A9CE52;
}
@media screen and (max-width: 767px) {
  .c-requirements-btn__btn.is-active {
    border-bottom: 0.3rem solid #A9CE52;
  }
}
@media screen and (max-width: 767px) {
  .c-requirements-btn__btn {
    font-size: 2.5rem;
  }
}
@media (hover: hover) {
  .c-requirements-btn__btn:hover {
    color: #A9CE52;
  }
}

.c-requipments {
  background-color: #FFF;
  border-radius: 1.6rem;
  position: relative;
  top: -0.2rem;
  padding: 8rem;
}
@media screen and (max-width: 1271px) {
  .c-requipments {
    padding: 6rem;
  }
}
@media screen and (max-width: 767px) {
  .c-requipments {
    top: -0.3rem;
  }
}
.c-requipments--gray {
  background-color: #F5F5F5;
}
.c-requipments__list:nth-of-type(n + 2) {
  display: none;
}
.c-requipments__item:nth-of-type(n + 2) {
  margin-top: 2.4rem;
}
.c-requipments__data-row {
  display: flex;
}
@media screen and (max-width: 767px) {
  .c-requipments__data-row {
    display: block;
  }
}
.c-requipments__data-head {
  min-width: 16rem;
  border-bottom: 0.2rem solid #A9CE52;
  padding-bottom: 2.4rem;
  font-size: 1.8rem;
  letter-spacing: 0.08em;
  line-height: 1.7777777778;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .c-requipments__data-head {
    font-size: 2.6rem;
    border: none;
    padding-bottom: 0.8rem;
  }
}
.c-requipments__data-content {
  flex-basis: 0;
  flex-grow: 1;
  border-bottom: 0.2rem solid #CCCCCC;
  padding-bottom: 2.4rem;
  font-size: 1.8rem;
  letter-spacing: 0.08em;
  line-height: 1.7777777778;
}
@media screen and (max-width: 767px) {
  .c-requipments__data-content {
    font-size: 2.6rem;
  }
}

.c-requipments-list-wrap:nth-of-type(n + 2) {
  margin-top: 8rem;
}
.c-requipments-list-wrap__head {
  font-size: 3.2rem;
  letter-spacing: 0.08em;
  line-height: 1;
  font-weight: 700;
  margin-bottom: 3.2rem;
  padding-block: 0.5rem;
  position: relative;
  padding-left: 3.2rem;
}
.c-requipments-list-wrap__head::before {
  content: "";
  display: block;
  height: 100%;
  width: 0.8rem;
  background-color: #A9CE52;
  position: absolute;
  top: 0;
  left: 0;
}

.c-requipments-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3.2rem 3.3rem;
}
@media screen and (max-width: 1271px) {
  .c-requipments-list {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 767px) {
  .c-requipments-list {
    gap: 1.6rem;
  }
}
.c-requipments-list__item {
  border: 0.3rem solid #CCCCCC;
  border-radius: 1.6rem;
  background-color: #FFF;
}
@media screen and (max-width: 767px) {
  .c-requipments-list__item {
    border-width: 0.4rem;
  }
}
.c-requipments-list__link {
  width: 100%;
  height: 13.1rem;
  padding-inline: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .c-requipments-list__link {
    padding-inline: 2.5rem;
    height: 15rem;
  }
}
@media (hover: hover) {
  .c-requipments-list__link:hover .c-requipments-list__icon {
    transform: scale(0.85);
  }
}
.c-requipments-list__text {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .c-requipments-list__text {
    font-size: 3.2rem;
  }
}
.c-requipments-list__label-wrap {
  margin-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.c-requipments-list__label {
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  line-height: 1;
  background-color: #F5F5F5;
  padding: 0.6rem 1.6rem;
}
@media screen and (max-width: 767px) {
  .c-requipments-list__label {
    font-size: 2.4rem;
    padding: 1rem 2rem;
  }
}
.c-requipments-list__icon {
  background-image: url("../media/images/common/icon-btn.svg");
  background-size: contain;
  width: 4.8rem;
  height: 4.8rem;
  transition: transform 0.3s;
}
@media screen and (max-width: 1271px) {
  .c-requipments-list__icon {
    width: 3.6rem;
    height: 3.6rem;
  }
}
@media screen and (max-width: 767px) {
  .c-requipments-list__icon {
    width: 5.5rem;
    height: 5.5rem;
  }
}

.c-entry-btn {
  position: relative;
  margin-inline: auto;
  margin-top: 12.2rem;
  border-radius: 2.4rem;
  border: 0.4rem solid #A9CE52;
  background-color: #FFF;
}
.c-entry-btn--small {
  width: 51rem;
}
.c-entry-btn--col2 {
  max-width: 128rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media screen and (max-width: 1271px) {
  .c-entry-btn--col2 {
    display: block;
  }
}
.c-entry-btn--col2::before {
  content: "";
  display: block;
  height: 100%;
  width: max(0.1rem, 1px);
  background-color: #A9CE52;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 1271px) {
  .c-entry-btn--col2::before {
    left: 0;
    top: 50%;
    height: max(0.1rem, 1px);
    width: 100%;
    transform: translate(0, -50%);
  }
}
.c-entry-btn__illustWrap {
  position: absolute;
  top: -5.4rem;
  right: 0;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .c-entry-btn__illustWrap {
    top: -6rem;
  }
}
.c-entry-btn__illust {
  width: 11.8rem;
  height: auto;
}
@media screen and (max-width: 767px) {
  .c-entry-btn__illust {
    width: 14rem;
    top: -6rem;
  }
}
.c-entry-btn__link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  position: relative;
  height: 10.4rem;
}
@media (hover: hover) {
  .c-entry-btn__link:hover .c-entry-btn__icon {
    transform: scale(0.85);
  }
}
.c-entry-btn__text {
  font-size: 2rem;
  letter-spacing: 0.08em;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .c-entry-btn__text {
    font-size: 2.3rem;
  }
}
.c-entry-btn__text span {
  font-size: 2.6rem;
}
@media screen and (max-width: 767px) {
  .c-entry-btn__text span {
    font-size: 2.9rem;
  }
}
.c-entry-btn__icon {
  display: inline-block;
  background-image: url("../media/images/common/icon-btn-link.svg");
  background-size: contain;
  background-repeat: no-repeat;
  width: 4.8rem;
  height: 4.8rem;
  transition: transform 0.4s;
}
.c-entry-btn__icon--site {
  background-image: url("../media/images/common/icon-btn.svg");
}
@media screen and (max-width: 767px) {
  .c-entry-btn__icon {
    width: 6rem;
    height: 6rem;
  }
}

.c-category,
.p-news-detail__category {
  display: inline-block;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  line-height: 3.2rem;
  font-weight: 700;
  min-width: 13.6rem;
  height: 3.2rem;
  padding-inline: 0.5rem;
  text-align: center;
}
.c-category--open, .c-category.--open,
.p-news-detail__category--open,
.p-news-detail__category.--open {
  background-color: #FF695B;
}
.c-category--news, .c-category.--news,
.p-news-detail__category--news,
.p-news-detail__category.--news {
  background-color: #00B8FF;
}
.c-category--activity, .c-category.--activity,
.p-news-detail__category--activity,
.p-news-detail__category.--activity {
  background-color: #FE993A;
}
.c-category--important, .c-category.--important,
.p-news-detail__category--important,
.p-news-detail__category.--important {
  background-color: #A9CE52;
}
@media screen and (max-width: 767px) {
  .c-category,
  .p-news-detail__category {
    font-size: 2.3rem;
    height: 4.6rem;
    line-height: 4.6rem;
    min-width: 18rem;
  }
}

.c-qa {
  margin-top: 8.2rem;
}
@media screen and (max-width: 1271px) {
  .c-qa {
    margin-top: 6rem;
  }
}
.c-qa--accordion .c-qa__item {
  padding-bottom: 3.2rem;
  border-bottom: 0.1rem solid #CCCCCC;
}
.c-qa--accordion .c-qa__item:nth-of-type(n + 2) {
  margin-top: 3.2rem;
}
.c-qa--accordion .c-qa__q-wrap {
  cursor: pointer;
  padding-right: 4.8rem;
}
@media (hover: hover) {
  .c-qa--accordion .c-qa__q-wrap:hover .c-qa__question {
    color: #A9CE52;
  }
}
.c-qa--accordion .c-qa__q-wrap::before {
  background-image: url(../media/images/common/icon-arrow-bottom-black.svg);
  background-position: center;
  background-size: 50% 50%;
  background-repeat: no-repeat;
  content: "";
  display: block;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 100vh;
  background-color: #A9CE52;
  position: absolute;
  top: 0.5rem;
  right: 0;
}
.c-qa--accordion .c-qa__q-wrap.is_active::before {
  background-image: url(../media/images/common/icon-close-black.svg);
  background-size: 35% 35%;
}
.c-qa--accordion .c-qa__question {
  transition: color 0.3s;
}
.c-qa--accordion .c-qa__answer {
  display: none;
}
.c-qa__item:nth-of-type(n + 2) {
  margin-top: 4.8rem;
}
.c-qa__q-wrap {
  padding-left: 5.6rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-qa__q-wrap {
    padding-left: 6.5rem;
  }
}
.c-qa__q {
  background-color: #A9CE52;
  border-radius: 100vh;
  aspect-ratio: 1/1;
  height: 4rem;
  font-size: 1.8rem;
  line-height: 3.6rem;
  font-weight: 700;
  text-align: center;
  position: absolute;
  top: -0.2rem;
  left: 0;
}
@media screen and (max-width: 767px) {
  .c-qa__q {
    font-size: 2.8rem;
    width: 5rem;
    height: 5rem;
    line-height: 4.5rem;
    top: -0.4rem;
  }
}
.c-qa__question {
  flex-basis: 0;
  flex-grow: 1;
  font-size: 2.4rem;
  line-height: 1.4583333333;
  letter-spacing: 0.08em;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .c-qa__question {
    font-size: 2.9rem;
  }
}
.c-qa__answer {
  margin-top: 2.7rem;
  background-color: #FFF;
  padding: 4rem;
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}
.c-qa__answer--color {
  background-color: #F1F7E3;
}
.c-qa__answer-text {
  font-size: 1.8rem;
  line-height: 1.7777777778;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .c-qa__answer-text {
    font-size: 2.6rem;
  }
}
.c-qa__answer-text span {
  position: relative;
  z-index: 1;
  font-weight: 700;
}
.c-qa__answer-text span::before {
  content: "";
  display: block;
  background-color: #A9CE52;
  width: 100%;
  height: 0.8rem;
  position: absolute;
  bottom: 0.2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
.c-qa__answer-text span.u-pc {
  display: inline-block !important;
}
@media screen and (max-width: 767px) {
  .c-qa__answer-text span.u-pc {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .c-qa__answer-text span.u-sp {
    display: inline-block !important;
  }
}
.c-qa__answer-text + .c-qa__answer-text {
  margin-top: 2rem;
}
.c-qa__answer-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-block: 2rem;
}
.c-qa__answer-item {
  font-size: 1.8rem;
  letter-spacing: 0.08em;
  line-height: 1.7777777778;
  font-weight: 700;
  position: relative;
  padding-left: 2rem;
}
@media screen and (max-width: 767px) {
  .c-qa__answer-item {
    font-size: 2.6rem;
    padding-left: 3.2rem;
  }
}
.c-qa__answer-item::before {
  content: "";
  display: block;
  background-image: url(../media/images/common/icon-star.svg);
  background-size: contain;
  background-repeat: no-repeat;
  min-width: 1.6rem;
  height: 1.6rem;
  position: absolute;
  top: 0.8rem;
  left: 0;
}
@media screen and (max-width: 767px) {
  .c-qa__answer-item::before {
    min-width: 2.5rem;
    height: 2.5rem;
    top: 1.2rem;
  }
}
.c-qa__answer-item .c-qa__answer-text {
  font-weight: 400;
}

.c-data-table {
  border: 0.1rem solid #CCCCCC;
  overflow: auto;
  display: grid;
  grid-template-columns: max-content 1fr;
}
.c-data-table::-webkit-scrollbar {
  height: 6px;
}
.c-data-table::-webkit-scrollbar-track {
  background: #F5F5F5;
}
.c-data-table::-webkit-scrollbar-thumb {
  background-color: #A9CE52;
  border-radius: 100vh;
}
@media screen and (max-width: 767px) {
  .c-data-table {
    border-width: 0.2rem;
  }
}
.c-data-table--type2 .c-data-table__content {
  border-left: 0 !important;
}
.c-data-table--lg .c-data-table__subject {
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .c-data-table--lg .c-data-table__subject {
    font-size: 2.6rem;
  }
}
.c-data-table--lg .c-data-table__content {
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .c-data-table--lg .c-data-table__content {
    font-size: 2.6rem;
  }
}
.c-data-table__subject {
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  line-height: 1.875;
  font-weight: 700;
  display: flex;
  padding-block: 2rem;
  padding-inline: 2.4rem 1rem;
  background-color: #F1F7E3;
  min-width: 24rem;
}
@media screen and (max-width: 767px) {
  .c-data-table__subject {
    font-size: 2.6rem;
    min-width: 30rem;
  }
}
.c-data-table__subject:not(:last-of-type) {
  border-bottom: 0.1rem solid #CCCCCC;
}
@media screen and (max-width: 767px) {
  .c-data-table__subject:not(:last-of-type) {
    border-width: 0.2rem;
  }
}
.c-data-table__content {
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  line-height: 1.875;
  display: flex;
  align-items: center;
  padding-inline: 2.4rem;
  padding-block: 2rem;
  border-left: 0.1rem solid #CCCCCC;
}
@media screen and (max-width: 767px) {
  .c-data-table__content {
    font-size: 2.6rem;
    border-width: 0.2rem;
  }
}
.c-data-table__content:not(:last-of-type) {
  border-bottom: 0.1rem solid #CCCCCC;
}
@media screen and (max-width: 767px) {
  .c-data-table__content:not(:last-of-type) {
    border-width: 0.2rem;
  }
}

.c-contact-btn {
  width: 53.1rem;
  height: 8rem;
  background-color: #A9CE52;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  font-size: 1.8rem;
  letter-spacing: 0.08em;
  font-weight: 700;
  margin-inline: auto;
}
@media (hover: hover) {
  .c-contact-btn:hover::before {
    transform: scale(0.9);
  }
}
@media screen and (max-width: 767px) {
  .c-contact-btn {
    font-size: 2.6rem;
    width: 50rem;
    height: 9rem;
    line-height: 1.4;
    gap: 2.4rem;
  }
}
.c-contact-btn::before {
  content: "";
  display: block;
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 100vh;
  background-color: #FFF;
  background-image: url(../media/images/common/icon-mail.svg);
  background-size: 50%;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.3s;
}
@media screen and (max-width: 767px) {
  .c-contact-btn::before {
    width: 6rem;
    height: 6rem;
  }
}

.u-sp {
  display: none !important;
}

.u-sp-tb {
  display: none !important;
}

.u-pc {
  display: block !important;
}

@media screen and (max-width: 1271px) {
  .u-pc-only {
    display: none !important;
  }
  .u-sp-tb {
    display: block !important;
  }
}
@media screen and (max-width: 767px) {
  .u-pc {
    display: none !important;
  }
  .u-sp {
    display: block !important;
  }
  .u-sp--flex {
    display: flex !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 screen and (max-width: 767px) {
  .u-pt-sp-0 {
    padding-top: 0rem !important;
  }
  .u-pt-sp-5 {
    padding-top: 0.5rem !important;
  }
  .u-pt-sp-10 {
    padding-top: 1rem !important;
  }
  .u-pt-sp-15 {
    padding-top: 1.5rem !important;
  }
  .u-pt-sp-20 {
    padding-top: 2rem !important;
  }
  .u-pt-sp-25 {
    padding-top: 2.5rem !important;
  }
  .u-pt-sp-30 {
    padding-top: 3rem !important;
  }
  .u-pt-sp-35 {
    padding-top: 3.5rem !important;
  }
  .u-pt-sp-40 {
    padding-top: 4rem !important;
  }
  .u-pt-sp-45 {
    padding-top: 4.5rem !important;
  }
  .u-pt-sp-50 {
    padding-top: 5rem !important;
  }
  .u-pt-sp-55 {
    padding-top: 5.5rem !important;
  }
  .u-pt-sp-60 {
    padding-top: 6rem !important;
  }
  .u-pt-sp-65 {
    padding-top: 6.5rem !important;
  }
  .u-pt-sp-70 {
    padding-top: 7rem !important;
  }
  .u-pt-sp-75 {
    padding-top: 7.5rem !important;
  }
  .u-pt-sp-80 {
    padding-top: 8rem !important;
  }
  .u-pt-sp-85 {
    padding-top: 8.5rem !important;
  }
  .u-pt-sp-90 {
    padding-top: 9rem !important;
  }
  .u-pt-sp-95 {
    padding-top: 9.5rem !important;
  }
  .u-pt-sp-100 {
    padding-top: 10rem !important;
  }
  .u-pt-sp-105 {
    padding-top: 10.5rem !important;
  }
  .u-pt-sp-110 {
    padding-top: 11rem !important;
  }
  .u-pt-sp-115 {
    padding-top: 11.5rem !important;
  }
  .u-pt-sp-120 {
    padding-top: 12rem !important;
  }
  .u-pt-sp-125 {
    padding-top: 12.5rem !important;
  }
  .u-pt-sp-130 {
    padding-top: 13rem !important;
  }
  .u-pt-sp-135 {
    padding-top: 13.5rem !important;
  }
  .u-pt-sp-140 {
    padding-top: 14rem !important;
  }
  .u-pt-sp-145 {
    padding-top: 14.5rem !important;
  }
  .u-pt-sp-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 screen and (max-width: 767px) {
  .u-pb-sp-0 {
    padding-bottom: 0rem !important;
  }
  .u-pb-sp-5 {
    padding-bottom: 0.5rem !important;
  }
  .u-pb-sp-10 {
    padding-bottom: 1rem !important;
  }
  .u-pb-sp-15 {
    padding-bottom: 1.5rem !important;
  }
  .u-pb-sp-20 {
    padding-bottom: 2rem !important;
  }
  .u-pb-sp-25 {
    padding-bottom: 2.5rem !important;
  }
  .u-pb-sp-30 {
    padding-bottom: 3rem !important;
  }
  .u-pb-sp-35 {
    padding-bottom: 3.5rem !important;
  }
  .u-pb-sp-40 {
    padding-bottom: 4rem !important;
  }
  .u-pb-sp-45 {
    padding-bottom: 4.5rem !important;
  }
  .u-pb-sp-50 {
    padding-bottom: 5rem !important;
  }
  .u-pb-sp-55 {
    padding-bottom: 5.5rem !important;
  }
  .u-pb-sp-60 {
    padding-bottom: 6rem !important;
  }
  .u-pb-sp-65 {
    padding-bottom: 6.5rem !important;
  }
  .u-pb-sp-70 {
    padding-bottom: 7rem !important;
  }
  .u-pb-sp-75 {
    padding-bottom: 7.5rem !important;
  }
  .u-pb-sp-80 {
    padding-bottom: 8rem !important;
  }
  .u-pb-sp-85 {
    padding-bottom: 8.5rem !important;
  }
  .u-pb-sp-90 {
    padding-bottom: 9rem !important;
  }
  .u-pb-sp-95 {
    padding-bottom: 9.5rem !important;
  }
  .u-pb-sp-100 {
    padding-bottom: 10rem !important;
  }
  .u-pb-sp-105 {
    padding-bottom: 10.5rem !important;
  }
  .u-pb-sp-110 {
    padding-bottom: 11rem !important;
  }
  .u-pb-sp-115 {
    padding-bottom: 11.5rem !important;
  }
  .u-pb-sp-120 {
    padding-bottom: 12rem !important;
  }
  .u-pb-sp-125 {
    padding-bottom: 12.5rem !important;
  }
  .u-pb-sp-130 {
    padding-bottom: 13rem !important;
  }
  .u-pb-sp-135 {
    padding-bottom: 13.5rem !important;
  }
  .u-pb-sp-140 {
    padding-bottom: 14rem !important;
  }
  .u-pb-sp-145 {
    padding-bottom: 14.5rem !important;
  }
  .u-pb-sp-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 screen and (max-width: 767px) {
  .u-mt-sp-0 {
    margin-top: 0rem !important;
  }
  .u-mt-sp-5 {
    margin-top: 0.5rem !important;
  }
  .u-mt-sp-10 {
    margin-top: 1rem !important;
  }
  .u-mt-sp-15 {
    margin-top: 1.5rem !important;
  }
  .u-mt-sp-20 {
    margin-top: 2rem !important;
  }
  .u-mt-sp-25 {
    margin-top: 2.5rem !important;
  }
  .u-mt-sp-30 {
    margin-top: 3rem !important;
  }
  .u-mt-sp-35 {
    margin-top: 3.5rem !important;
  }
  .u-mt-sp-40 {
    margin-top: 4rem !important;
  }
  .u-mt-sp-45 {
    margin-top: 4.5rem !important;
  }
  .u-mt-sp-50 {
    margin-top: 5rem !important;
  }
  .u-mt-sp-55 {
    margin-top: 5.5rem !important;
  }
  .u-mt-sp-60 {
    margin-top: 6rem !important;
  }
  .u-mt-sp-65 {
    margin-top: 6.5rem !important;
  }
  .u-mt-sp-70 {
    margin-top: 7rem !important;
  }
  .u-mt-sp-75 {
    margin-top: 7.5rem !important;
  }
  .u-mt-sp-80 {
    margin-top: 8rem !important;
  }
  .u-mt-sp-85 {
    margin-top: 8.5rem !important;
  }
  .u-mt-sp-90 {
    margin-top: 9rem !important;
  }
  .u-mt-sp-95 {
    margin-top: 9.5rem !important;
  }
  .u-mt-sp-100 {
    margin-top: 10rem !important;
  }
  .u-mt-sp-105 {
    margin-top: 10.5rem !important;
  }
  .u-mt-sp-110 {
    margin-top: 11rem !important;
  }
  .u-mt-sp-115 {
    margin-top: 11.5rem !important;
  }
  .u-mt-sp-120 {
    margin-top: 12rem !important;
  }
  .u-mt-sp-125 {
    margin-top: 12.5rem !important;
  }
  .u-mt-sp-130 {
    margin-top: 13rem !important;
  }
  .u-mt-sp-135 {
    margin-top: 13.5rem !important;
  }
  .u-mt-sp-140 {
    margin-top: 14rem !important;
  }
  .u-mt-sp-145 {
    margin-top: 14.5rem !important;
  }
  .u-mt-sp-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 screen and (max-width: 767px) {
  .u-mb-sp-0 {
    margin-bottom: 0rem !important;
  }
  .u-mb-sp-5 {
    margin-bottom: 0.5rem !important;
  }
  .u-mb-sp-10 {
    margin-bottom: 1rem !important;
  }
  .u-mb-sp-15 {
    margin-bottom: 1.5rem !important;
  }
  .u-mb-sp-20 {
    margin-bottom: 2rem !important;
  }
  .u-mb-sp-25 {
    margin-bottom: 2.5rem !important;
  }
  .u-mb-sp-30 {
    margin-bottom: 3rem !important;
  }
  .u-mb-sp-35 {
    margin-bottom: 3.5rem !important;
  }
  .u-mb-sp-40 {
    margin-bottom: 4rem !important;
  }
  .u-mb-sp-45 {
    margin-bottom: 4.5rem !important;
  }
  .u-mb-sp-50 {
    margin-bottom: 5rem !important;
  }
  .u-mb-sp-55 {
    margin-bottom: 5.5rem !important;
  }
  .u-mb-sp-60 {
    margin-bottom: 6rem !important;
  }
  .u-mb-sp-65 {
    margin-bottom: 6.5rem !important;
  }
  .u-mb-sp-70 {
    margin-bottom: 7rem !important;
  }
  .u-mb-sp-75 {
    margin-bottom: 7.5rem !important;
  }
  .u-mb-sp-80 {
    margin-bottom: 8rem !important;
  }
  .u-mb-sp-85 {
    margin-bottom: 8.5rem !important;
  }
  .u-mb-sp-90 {
    margin-bottom: 9rem !important;
  }
  .u-mb-sp-95 {
    margin-bottom: 9.5rem !important;
  }
  .u-mb-sp-100 {
    margin-bottom: 10rem !important;
  }
  .u-mb-sp-105 {
    margin-bottom: 10.5rem !important;
  }
  .u-mb-sp-110 {
    margin-bottom: 11rem !important;
  }
  .u-mb-sp-115 {
    margin-bottom: 11.5rem !important;
  }
  .u-mb-sp-120 {
    margin-bottom: 12rem !important;
  }
  .u-mb-sp-125 {
    margin-bottom: 12.5rem !important;
  }
  .u-mb-sp-130 {
    margin-bottom: 13rem !important;
  }
  .u-mb-sp-135 {
    margin-bottom: 13.5rem !important;
  }
  .u-mb-sp-140 {
    margin-bottom: 14rem !important;
  }
  .u-mb-sp-145 {
    margin-bottom: 14.5rem !important;
  }
  .u-mb-sp-150 {
    margin-bottom: 15rem !important;
  }
}
.u-flex {
  display: flex;
}