@charset "UTF-8";
:root {
  --c-green: #4CA864;
  --c-green-dark: #4fa87c;
  --c-green-deep: #3f9d70;
  --c-green-pale: #EBF5ED;
  --c-black: #000000;
  --c-black-soft: #231815;
  --c-gray: #E9E9E9;
  --c-gray-dark: #373737;
  --c-gray-medium: #848484;
  --c-gray-light: #D9D9D9;
  --c-gray-bar: #E4E4E4;
  --c-gray-pale: #F2F4F2;
  --c-gray-bg: #F8F8F8;
  --c-gray-card: #F6F6F6;
  --c-gray-border: #B9B9B9;
  --c-link: #009CDF;
  --c-white: #FFFFFF;
  --pos-center: center;
  --pos-left: left;
  --pos-right: right;
  --pos-top: top;
  --pos-bottom: bottom;
  --shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  --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);
  --c-fs-h1: 4.8rem;
  --c-fs-h2: 3.6rem;
  --c-fs-h3: 2.4rem;
  --c-fs-h4: 2rem;
  --c-fs-main-big: 1.8rem;
  --c-fs-main: 1.6rem;
  --c-fs-main-small: 1.4rem;
  --c-fw: 400;
  --c-fw-medium: 500;
  --c-fw-bold: 600;
  --c-fw-black: 900;
  --c-fw-light: 300;
  --c-fw-thin: 100;
  --c-lh: 212.5%;
  --c-lh-medium: 150%;
  --c-lh-heading: 140%;
}
@media screen and (max-width: 750px) {
  :root {
    --c-fs-h1: 4rem;
    --c-fs-h2: 4rem;
    --c-fs-h3: 3.6rem;
    --c-fs-h4: 3rem;
    --c-fs-main-big: 3.2rem;
    --c-fs-main: 2.8rem;
    --c-fs-main-small: 2.2rem;
  }
}

html {
  font-size: 62.5%;
}
@media screen and (max-width: 750px) {
  html {
    font-size: 1.3333vw;
  }
}

body {
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  font-size: var(--c-fs-main);
  font-weight: 400;
  color: var(--c-black);
  background: var(--c-white);
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}
body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  transition: opacity 0.3s, color 0.3s, background-color 0.3s;
}
a:hover {
  opacity: 0.75;
}

.l-container {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding-inline: 40px;
}
@media screen and (max-width: 750px) {
  .l-container {
    padding-inline: 0;
  }
}
.l-container.-xl {
  max-width: 1920px;
}

.c-title {
  max-width: 640px;
  margin: 0 auto;
  padding: 1rem;
  background: var(--c-green);
  color: var(--c-white);
  font-size: 3.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  box-sizing: border-box;
}
@media screen and (max-width: 750px) {
  .c-title {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: none;
    height: 12.213740458rem;
    padding: 1.9083969466rem 0;
    font-size: 4.5801526718rem;
    letter-spacing: 0.05em;
  }
}
@media screen and (max-width: 750px) {
  .c-title.-sm {
    font-size: 3.8167938931rem;
  }
}
@media screen and (max-width: 750px) {
  .c-title.-lg {
    font-size: 6.8702290076rem;
  }
}
.c-title.-plain {
  max-width: none;
  background: transparent;
  color: var(--c-green);
  padding: 1rem 0;
}
@media screen and (max-width: 750px) {
  .c-title.-plain {
    height: auto;
    min-height: 12.213740458rem;
    padding: 1.9083969466rem 0;
    font-size: 4.9618320611rem;
    line-height: 7.2519083969rem;
    letter-spacing: 0.05em;
  }
}

.c-btn {
  text-align: center;
  cursor: pointer;
  transition: opacity 0.3s;
}
.c-btn:hover {
  opacity: 0.75;
}
.c-btn__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 147px;
  padding: 0.8rem 6rem;
  font-size: 2.4rem;
  text-align: center;
  line-height: 3.2rem;
  letter-spacing: 0.02em;
}
.c-btn__link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2rem;
  width: 0.8rem;
  height: 0.8rem;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}
@media screen and (max-width: 750px) {
  .c-btn__link::after {
    right: 3rem;
    width: 1.2rem;
    height: 1.2rem;
  }
}
.c-btn__link.-green {
  background: var(--c-green);
  color: var(--c-white);
  font-size: 1.6rem;
  line-height: 1.6rem;
  letter-spacing: 0.02em;
  border-radius: 0.4rem;
  min-width: 24rem;
  padding: 1rem;
}
.c-btn__link.-white {
  background: var(--c-white);
  color: var(--c-green-dark);
}
.c-btn__link.-pale {
  background: var(--c-green-pale);
  color: var(--c-green-dark);
}
.c-btn__link.-small {
  min-width: 14rem;
  padding: 1rem 3.2rem;
  font-size: 1.4rem;
}
@media screen and (max-width: 750px) {
  .c-btn__link {
    min-width: 30rem;
    padding: 2.2rem 5rem;
    font-size: 2.8rem;
  }
}
.c-btn__link.-mail {
  gap: 1rem;
}
.c-btn__link.-mail::after {
  display: none;
}
.c-btn__link.-mail .c-btn__icon {
  width: 2.4rem;
  height: 2.4rem;
}
@media screen and (max-width: 750px) {
  .c-btn__link.-mail .c-btn__icon {
    width: 4.5801526718rem;
    height: 4.5801526718rem;
  }
}
.c-btn__link.-dark {
  background: #383838;
  color: var(--c-white);
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 2.5rem;
  letter-spacing: 0.02em;
  min-width: 30.8rem;
  padding: 1.4rem 8.8rem;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
@media screen and (max-width: 750px) {
  .c-btn__link.-dark {
    gap: 1.9083969466rem;
    min-width: 52.4809160305rem;
    padding: 2.6717557252rem 16.7938931298rem;
    font-size: 3.0534351145rem;
    line-height: 4.7709923664rem;
    letter-spacing: 0.02em;
  }
}
.c-btn__link.-pale.-mail {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 3.2rem;
  letter-spacing: 0.02em;
  min-width: 30.1rem;
  padding: 0.8rem 6rem;
  color: var(--c-green);
}
@media screen and (max-width: 750px) {
  .c-btn__link.-pale.-mail {
    gap: 1.9083969466rem;
    min-width: 48.0916030534rem;
    padding: 1.5267175573rem 11.4503816794rem;
    font-size: 3.0534351145rem;
    line-height: 6.106870229rem;
    letter-spacing: 0.02em;
  }
}
.c-btn__icon {
  display: inline-block;
  width: 2.4rem;
  height: 2.4rem;
  flex-shrink: 0;
}

.c-kv {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 28rem;
  overflow: hidden;
}
@media screen and (max-width: 750px) {
  .c-kv {
    height: 34.3511450382rem;
  }
}
.c-kv__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.c-kv__bg img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 35%;
     object-position: 50% 35%;
    filter: blur(3px);
    opacity: 0.85;
}
@media screen and (max-width: 750px) {
  .c-kv__bg img {
    transform: scale(1.75);
    -o-object-position: -7rem 30%;
       object-position: -7rem 30%;
  }
}
.c-kv__title {
  position: relative;
  z-index: 1;
  font-size: 4.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-align: center;
  color: var(--c-black);
}
@media screen and (max-width: 750px) {
  .c-kv__title {
    font-size: 5.3435114504rem;
    letter-spacing: 0.05em;
  }
}

.c-history {
    width: 65%;
    margin: 0 auto;
}
.c-history__item {
  display: flex;
  align-items: center;
  gap: 4rem;
  padding: 3rem 2rem;
  border-bottom: 1px dashed #999;
  font-size: 1.8rem;
  line-height: 1.5rem;
  letter-spacing: 0.05em;
  color: var(--c-black);
}
@media screen and (max-width: 750px) {

.c-history {
    width: 95%;
    margin: 0 auto;
}

  .c-history__item {
    flex-direction: column;
    align-items: flex-start;
    gap: 3.0534351145rem;
    padding: 5.7251908397rem 0;
    font-size: 3.8167938931rem;
    line-height: 6.106870229rem;
    letter-spacing: 0.05em;
  }
}
.c-history__year {
  flex-shrink: 0;
  width: 18rem;
  text-align: right;
}
@media screen and (max-width: 750px) {
  .c-history__year {
    width: auto;
    text-align: left;
  }
}
.c-history__detail {
  flex: 1;
}

.c-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
  max-width: 96rem;
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  .c-form {
    gap: 3.8167938931rem;
    max-width: none;
  }
}
.c-form__row {
  display: flex;
  align-items: center;
  gap: 3rem;
}
@media screen and (max-width: 750px) {
  .c-form__row {
    flex-direction: column;
    align-items: stretch;
    gap: 1.9083969466rem;
  }
}
.c-form__row.-textarea {
  align-items: center;
}
@media screen and (max-width: 750px) {
  .c-form__row.-textarea {
    align-items: stretch;
  }
}
@media screen and (max-width: 750px) {
  .c-form__row.-textarea .c-form__label {
    align-self: flex-start;
  }
}
.c-form__label {
  flex-shrink: 0;
  width: 20rem;
  font-size: 2.4rem;
  line-height: 3.2rem;
  letter-spacing: 0.05em;
  text-align: right;
  color: var(--c-black);
}
@media screen and (max-width: 750px) {
  .c-form__label {
    width: auto;
    font-size: 3.0534351145rem;
    line-height: 1;
    letter-spacing: 0.05em;
    text-align: left;
  }
}
.c-form__input, .c-form__textarea {
  flex: 1;
  width: 100%;
  min-width: 0;
  padding: 0 1.6rem;
  border: 1px solid var(--c-gray-border);
  border-radius: 0.8rem;
  background: var(--c-white);
  font-family: inherit;
  font-size: var(--c-fs-main);
  color: var(--c-black);
  box-sizing: border-box;
}
@media screen and (max-width: 750px) {
  .c-form__input, .c-form__textarea {
    flex: none;
    width: 100%;
    padding: 0 3.0534351145rem;
    border-radius: 1.5267175573rem;
    font-size: 3.0534351145rem;
  }
}
.c-form__input {
  height: 5.4rem;
}
@media screen and (max-width: 750px) {
  .c-form__input {
    height: 10.3053435115rem;
  }
}
.c-form__textarea {
  height: 22.4rem;
  padding: 1.6rem;
  resize: vertical;
}
@media screen and (max-width: 750px) {
  .c-form__textarea {
    height: 42.7480916031rem;
    padding: 3.0534351145rem;
  }
}

.c-header {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  background: var(--c-white);
  transition: box-shadow 0.3s;
  overflow: hidden;
}
.c-header.fixed {
  box-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.08);
}
.c-header .l-container {
  position: relative;
}
.c-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
padding: 2rem 1rem;
}
@media screen and (max-width: 750px) {
  .c-header__inner {
    padding: 5rem 3.2rem;
  }
}
.c-header__logo a {
  display: inline-flex;
  align-items: center;
}
.c-header__logo img {
  width: auto;
  height: 2.8rem;
}
@media screen and (max-width: 750px) {
  .c-header__logo img {
    height: 6rem;
  }
}
@media screen and (max-width: 750px) {
  .c-header__tel {
    display: none;
  }
}
.c-header__tel a {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--c-green);
}
.c-header__tel a i {
  display: inline-block;
  width: 2.2rem;
  height: 2.2rem;
  background: url("../../images/common/tel_green.svg") no-repeat center/contain;
}

@media screen and (max-width: 750px) {
  .c-nav {
    width: 100%;
  }
}

.c-nav__wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.c-nav__wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 1px;
  background: var(--c-gray);
}
@media screen and (max-width: 750px) {
  .c-nav__wrap::before {
    display: none;
  }
}
@media screen and (max-width: 750px) {
  .c-nav__wrap {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 200;
    width: 76%;
    max-width: 60rem;
    height: 100%;
    padding: 14rem 6rem 6rem;
    background: var(--c-white);
    box-shadow: -0.4rem 0 1.6rem rgba(0, 0, 0, 0.1);
    flex-direction: column;
    align-items: flex-start;
    gap: 4rem;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    overflow-y: auto;
  }
}
@media screen and (max-width: 750px) {
  .c-nav__wrap.active {
    transform: translateX(0);
  }
}
.c-nav__list {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 750px) {
  .c-nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
  }
}
.c-nav__item a {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
font-size: 2rem;
  font-weight: 600;
padding: 1.2rem 5rem;
color: var(--c-green);
  white-space: nowrap;
  letter-spacing: 5%;
}
@media screen and (max-width: 1180px) {
  .c-nav__item a {
    padding: 2.2rem 3.2rem;
  }
}
@media screen and (max-width: 980px) {
  .c-nav__item a {
    padding: 2rem 1.8rem;
    font-size: 1.4rem;
    gap: 0.5rem;
  }
}
@media screen and (max-width: 750px) {
  .c-nav__item a {
    padding: 2.6rem 0;
    font-size: 3.4rem;
    gap: 1.4rem;
    width: 100%;
  }
}
.c-nav__item.active a {
  color: var(--c-green);
}
@media screen and (max-width: 750px) {
  .c-nav__item {
    width: 100%;
    border-bottom: 1px solid var(--c-gray);
  }
}
.c-nav__ico {
  width: auto;
  height: 2rem;
  flex-shrink: 0;
}
@media screen and (max-width: 980px) {
  .c-nav__ico {
    height: 1.6rem;
  }
}
@media screen and (max-width: 750px) {
  .c-nav__ico {
    height: 3.8rem;
  }
}
.c-nav__btn {
  display: none;
  position: relative;
  width: 4.4rem;
  height: 3.8rem;
  cursor: pointer;
  z-index: 210;
}
@media screen and (max-width: 750px) {
  .c-nav__btn {
    display: block;
    position: absolute;
    top: 50%;
    right: 4rem;
    transform: translateY(-50%);
    width: 4.4rem;
    height: 3.8rem;
  }
}
.c-nav__btn-line {
  position: absolute;
  left: 50%;
  width: 4.4rem;
  height: 3px;
  background: var(--c-black);
  border-radius: 100px;
  transform: translateX(-50%);
  transition: 0.3s;
}
.c-nav__btn-line:nth-child(1) {
  top: -0.1rem;
}
.c-nav__btn-line:nth-child(2) {
  top: 1.2rem;
}
.c-nav__btn-line:nth-child(3) {
  top: 2.5rem;
}
.c-nav__btn.active .c-nav__btn-line:nth-child(1) {
  top: 1.4rem;
  transform: translateX(-50%) rotate(45deg);
}
.c-nav__btn.active .c-nav__btn-line:nth-child(2) {
  opacity: 0;
}
.c-nav__btn.active .c-nav__btn-line:nth-child(3) {
  top: 1.4rem;
  transform: translateX(-50%) rotate(-45deg);
}
.c-nav__openbg {
  display: none;
}
@media screen and (max-width: 750px) {
  .c-nav__openbg {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 150;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
  }
}

@media screen and (max-width: 750px) {
  body.nav-open .c-nav__openbg {
    opacity: 1;
    visibility: visible;
  }
}

.c-footer {
  background: var(--c-green);
  color: var(--c-white);
  padding: 12rem 0 2.6rem;
  margin-top: 13rem;
}
@media screen and (max-width: 750px) {
  .c-footer {
    padding-block: 12.0229007634rem 2.2900763359rem;
    margin-top: 12rem;
  }
}
.c-footer.c-footer__noMt {
  margin-top: 0 !important;
}
.c-footer__flex {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 4rem;
  flex-wrap: wrap;
}
@media screen and (max-width: 750px) {
  .c-footer__flex {
    flex-direction: column;
    gap: 7.6335877863rem;
    margin: 0 4.5801526718rem;
  }
}
.c-footer__logo {
  margin-bottom: 10rem;
}
@media screen and (max-width: 750px) {
  .c-footer__logo {
    margin-bottom: 2.6717557252rem;
  }
}
.c-footer__logo img {
  width: auto;
  height: 4.2rem;
}
@media screen and (max-width: 750px) {
  .c-footer__logo img {
    width: 34.3511450382rem;
    height: 5.534351145rem;
  }
}
.c-footer__address {
  font-size: 2rem;
  margin-bottom: 3rem;
  gap: 1.6rem;
  flex-direction: column;
  display: flex;
}
@media screen and (max-width: 750px) {
  .c-footer__address {
    font-size: 2.4809160305rem;
    line-height: 6.106870229rem;
    letter-spacing: 0.05em;
    margin-bottom: 1.7175572519rem;
    gap: 0.3816793893rem;
  }
}
.c-footer__addr {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}
@media screen and (max-width: 750px) {
  .c-footer__addr {
    gap: 0.3816793893rem;
  }
}
.c-footer__addr + .c-footer__addr {
  margin-top: 0.6rem;
}
@media screen and (max-width: 750px) {
  .c-footer__addr + .c-footer__addr {
    margin-top: 0;
  }
}
.c-footer__addr img {
  width: auto;
  height: 2rem;
  flex-shrink: 0;
}
@media screen and (max-width: 750px) {
  .c-footer__addr img {
    width: 3.4351145038rem;
    height: 3.4351145038rem;
    margin-top: 0.7633587786rem;
  }
}
.c-footer__tel a {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 4rem;
  font-weight: 700;
  color: var(--c-white);
}
@media screen and (max-width: 750px) {
  .c-footer__tel a {
    font-size: 5.7251908397rem;
    gap: 0.3816793893rem;
    line-height: 1;
  }
}
.c-footer__tel a i {
  display: inline-block;
  width: 2.4rem;
  height: 2.4rem;
  background: url("../../images/common/tel_white.svg") no-repeat center/contain;
}
@media screen and (max-width: 750px) {
  .c-footer__tel a i {
    width: 6.106870229rem;
    height: 6.106870229rem;
  }
}
.c-footer__right {
  flex-shrink: 0;
}
@media screen and (max-width: 750px) {
  .c-footer__right {
    width: 100%;
  }
}
.c-footer__table {
  border-collapse: collapse;
  background: var(--c-white);
  color: var(--c-black);
  border-radius: 0.8rem;
  overflow: hidden;
}
.c-footer__table th,
.c-footer__table td {
  border: 1px solid var(--c-green);
  padding: 1.7rem 2.3rem;
  text-align: center;
  font-size: 1.6rem;
}
.c-footer__table th {
  background: var(--c-gray-pale);
}
.c-footer__table td {
  background: var(--c-white);
  font-size: 2.4rem;
  font-weight: bold;
  padding: 1.6rem 1.9rem;
  line-height: 130%;
}
.c-footer__table thead th {
  background: var(--c-gray-pale);
  font-weight: 700;
  line-height: 130%;
}
.c-footer__table tbody th {
  background: var(--c-white);
  font-weight: 700;
  white-space: nowrap;
  font-size: 1.6rem;
  line-height: 140%;
  padding: 2rem;
}
.c-footer__table tbody th span {
  margin-left: 1rem;
}
.c-footer__table.u-pc {
  display: table;
}
@media screen and (max-width: 750px) {
  .c-footer__table.u-pc {
    display: none;
  }
}
@media screen and (max-width: 750px) {
  .c-footer__table.-sp {
    display: table;
    width: 100%;
    table-layout: fixed;
    border-radius: 2.2900763359rem;
  }
  .c-footer__table.-sp th,
  .c-footer__table.-sp td {
    padding: 1.9083969466rem;
    vertical-align: middle;
  }
  .c-footer__table.-sp thead th {
    height: 12.213740458rem;
    font-size: 3.0534351145rem;
    font-weight: 500;
    line-height: 1.4;
  }
  .c-footer__table.-sp thead th:first-child {
    width: 16.6667%;
    background: var(--c-gray-pale);
  }
  .c-footer__table.-sp thead th:not(:first-child) {
    width: 41.6667%;
    background: var(--c-white);
  }
  .c-footer__table.-sp thead th span {
    margin-left: 0.6em;
    font-size: inherit;
    font-weight: inherit;
  }
  .c-footer__table.-sp tbody th {
    width: 16.6667%;
    height: 10.6870229008rem;
    background: var(--c-gray-pale);
    font-size: 3.0534351145rem;
    line-height: 1.3;
    padding: 1.9083969466rem;
  }
  .c-footer__table.-sp tbody td {
    height: 10.6870229008rem;
    font-size: 4.5801526718rem;
    line-height: 1.3;
    padding: 1.9083969466rem;
  }
}
.c-footer__note {
  margin-top: 1.2rem;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 750px) {
  .c-footer__note {
    font-size: 2.6717557252rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    margin-top: 3.2442748092rem;
  }
}
.c-footer__copyright {
  display: block;
  text-align: center;
  font-size: 1.4rem;
  margin-top: 7.7rem;
}
@media screen and (max-width: 750px) {
  .c-footer__copyright {
    font-size: 2.6717557252rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    margin-top: 7.6335877863rem;
  }
}

.c-animation.u-fadein {
  opacity: 0;
  transform: translateY(3rem);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.c-animation.u-fadein.is-active {
  opacity: 1;
  transform: translateY(0);
}

.u-pc {
  display: block;
}
@media screen and (max-width: 750px) {
  .u-pc {
    display: none;
  }
}

.u-sp {
  display: none;
}
@media screen and (max-width: 750px) {
  .u-sp {
    display: block;
  }
}

.u-txtpos-center {
  text-align: center;
}

.u-mb-20 {
  margin-bottom: 2rem;
}

.u-mb-30 {
  margin-bottom: 3rem;
}

.u-mb-40 {
  margin-bottom: 4rem;
}
@media screen and (max-width: 750px) {
  .u-mb-40 {
    margin-bottom: 5rem;
  }
}

.u-mb-50 {
  margin-bottom: 5rem;
}
@media screen and (max-width: 750px) {
  .u-mb-50 {
    margin-bottom: 6rem;
  }
}

.c-popup {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  height: 100dvh;
  padding: 4rem 5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
@media (prefers-reduced-motion: reduce) {
  .c-popup {
    transition: none;
  }
}
@media screen and (max-width: 750px) {
  .c-popup {
    padding: 4.5801526718rem 3.0534351145rem;
  }
}
.c-popup.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.c-popup__bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.c-popup__box {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
  max-width: 125.2rem;
  max-height: calc(100dvh - 8rem);
  padding: 8rem;
  overflow: hidden;
  background-color: var(--c-white);
  border-radius: 1.2rem;
  box-shadow: 0 0.4rem 1.4rem 1rem rgba(0, 0, 0, 0.05);
}
@media screen and (max-width: 750px) {
  .c-popup__box {
    max-height: calc(100dvh - 9.1603053435rem);
    padding: 10.6870229008rem 4.5801526718rem 7.6335877863rem;
    border-radius: 2.2900763359rem;
  }
}
.c-popup__close {
  position: absolute;
  top: 3rem;
  right: 3rem;
  z-index: 2;
  width: 4.8rem;
  height: 4.8rem;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
@media (prefers-reduced-motion: reduce) {
  .c-popup__close {
    transition: none;
  }
}
@media screen and (max-width: 750px) {
  .c-popup__close {
    top: 3.0534351145rem;
    right: 3.0534351145rem;
    width: 7.6335877863rem;
    height: 7.6335877863rem;
  }
}
.c-popup__close img {
  display: block;
  width: 100%;
  height: 100%;
}
.c-popup__close:hover {
  opacity: 0.75;
}
.c-popup__inner {
  flex: 1;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
}
.c-popup__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.6rem;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .c-popup__text {
    gap: 3.8167938931rem;
  }
}
.c-popup__text > p:not([class]) {
  width: 100%;
  font-size: 2rem;
  font-weight: var(--c-fw-medium);
  line-height: 3.2rem;
  letter-spacing: 0.02em;
  color: var(--c-black-soft);
  text-align: left;
}
@media screen and (max-width: 750px) {
  .c-popup__text > p:not([class]) {
    font-size: 3.0534351145rem;
    line-height: 4.9618320611rem;
    text-align: left;
  }
}
.c-popup__title {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 6.4rem;
  padding: 1.6rem 9rem;
  font-size: 2.6rem;
  font-weight: var(--c-fw-medium);
  line-height: 3.2rem;
  letter-spacing: 0.02em;
  color: var(--c-white);
  background-color: var(--c-green);
  border-radius: 9999px;
}
@media screen and (max-width: 750px) {
  .c-popup__title {
    min-height: 9.1603053435rem;
    padding: 2.2900763359rem 4.5801526718rem;
    font-size: 3.4351145038rem;
    line-height: 4.9618320611rem;
    white-space: normal;
  }
}
.c-popup__lead {
  width: 100%;
  font-size: 2rem;
  font-weight: var(--c-fw-medium);
  line-height: 3.2rem;
  letter-spacing: 0.02em;
  color: var(--c-black-soft);
}
@media screen and (max-width: 750px) {
  .c-popup__lead {
    font-size: 3.0534351145rem;
    line-height: 4.9618320611rem;
    text-align: left;
  }
}
.c-popup__img {
  width: 45rem;
  max-width: 100%;
  aspect-ratio: 450/560;
  overflow: hidden;
  background-color: var(--c-gray-light);
}
@media screen and (max-width: 750px) {
  .c-popup__img {
    width: 100%;
    max-width: 53.4351145038rem;
  }
}
.c-popup__img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-popup__heading {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 6.4rem;
  font-size: 2.4rem;
  font-weight: var(--c-fw-medium);
  line-height: 3.2rem;
  letter-spacing: 0.02em;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .c-popup__heading {
    min-height: 9.1603053435rem;
    font-size: 3.4351145038rem;
    line-height: 4.9618320611rem;
  }
}
.c-popup__heading.-dark {
  width: 32rem;
  max-width: 100%;
  padding: 1.6rem;
  color: var(--c-white);
  background-color: var(--c-gray-dark);
  border-radius: 9999px;
}
@media screen and (max-width: 750px) {
  .c-popup__heading.-dark {
    width: 100%;
    max-width: 53.4351145038rem;
    padding: 2.2900763359rem 4.5801526718rem;
  }
}
.c-popup__heading.-bar {
  padding: 1.6rem 10rem;
  color: var(--c-black);
  background-color: var(--c-gray-bar);
}
@media screen and (max-width: 750px) {
  .c-popup__heading.-bar {
    width: 100%;
    max-width: 53.4351145038rem;
    padding: 2.2900763359rem 4.5801526718rem;
  }
}
.c-popup__list {
  width: 100%;
  font-size: 2rem;
  font-weight: var(--c-fw-medium);
  line-height: 3.2rem;
  letter-spacing: 0.02em;
  color: var(--c-black-soft);
  list-style: none;
}
@media screen and (max-width: 750px) {
  .c-popup__list {
    font-size: 3.0534351145rem;
    line-height: 4.9618320611rem;
    text-align: left;
  }
}
.c-popup__list li::before {
  content: "・";
}

.c-popupin {
  display: none;
}

.active .c-popupin {
  display: block;
}

body.hidden {
  overflow: hidden;
}