:root {
  --viewport-width: min(100vw, 2000px);
  --b: calc(var(--viewport-width) / 160);
}

html {
  background: #fff;
  scroll-behavior: smooth;
}

main {
  position: relative;
  overflow: hidden;
  z-index: 0;
}

* {
  color: #007C5C;
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  font-size: max(1.6rem, 14px);
  font-weight: 500;
  line-height: 2.25;
  letter-spacing: 0.1em;
}

a > *,
button > * {
  pointer-events: none;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}

a,
button {
  display: block;
}

span {
  font-family: inherit;
  display: inline-block;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}

span.attention {
  font-size: max(1.4rem, 12px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0;
}

span.attention > * {
  display: block;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}
span.attention > * > * {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}

.nolink {
  opacity: 0.5;
  pointer-events: none;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
}
.header__logo {
  margin-top: max(2rem, 15px);
  margin-left: max(2rem, 15px);
  width: clamp(100px, 6.25vw, 200px);
  pointer-events: auto;
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
  transform: translateZ(0);
}
.header__logo:hover {
  opacity: 0.6;
}

.footer {
  position: relative;
  border-top: max(0.6rem, 6px) solid #007C5C;
}
.footer__top .footer__wrapper {
  display: flex;
  justify-content: space-between;
  padding-top: max(6rem, 40px);
  padding-bottom: max(7rem, 45px);
}
@media screen and (max-width: 768px) {
  .footer__top .footer__wrapper {
    row-gap: 50px;
    flex-direction: column;
  }
}
.footer__top .footer__inner {
  display: flex;
  align-items: center;
  gap: 20px max(4rem, 30px);
}
@media screen and (max-width: 1000px) {
  .footer__top .footer__inner {
    align-items: start;
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .footer__top .footer__inner {
    justify-content: center;
    flex-direction: row;
  }
}
.footer__top__logo {
  width: max(30.5rem, 200px);
}
@media screen and (max-width: 550px) {
  .footer__top__logo {
    width: 200px;
  }
}
.footer__top__logo:hover {
  opacity: 0.6;
}
.footer__top__sns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: max(2.5rem, 20px);
}
@media screen and (max-width: 550px) {
  .footer__top__sns {
    flex-shrink: 0;
  }
}
.footer__top__sns a {
  width: max(5rem, 35px);
}
.footer__top__sns a:hover {
  opacity: 0.6;
}
.footer__top__call {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 max(2rem, 15px);
}
@media screen and (max-width: 1000px) {
  .footer__top__call {
    display: inline-grid;
    grid-template-columns: auto 1fr;
  }
}
@media screen and (max-width: 768px) {
  .footer__top__call {
    width: 300px;
    margin: auto;
  }
}
.footer__top__call p {
  display: inline-block;
  flex-shrink: 0;
}
@media screen and (max-width: 1000px) {
  .footer__top__call p {
    grid-row: 1;
    grid-column: 1/3;
  }
}
.footer__top__call p span {
  display: block;
  color: #000;
  font-size: max(1.5rem, 11px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}
@media screen and (max-width: 1000px) {
  .footer__top__call p span {
    display: inline-block;
  }
}
.footer__top__call p b {
  color: #000;
  font-size: max(2.6rem, 21px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0;
}
.footer__top__call img {
  width: max(6.5rem, 60px);
}
.footer__top__call__number {
  flex-shrink: 0;
  text-align: right;
}
.footer__top__call__number span {
  font-family: YakuHanJP, "InterVariable", "Noto Sans JP", sans-serif;
  color: #000;
  font-size: max(1.2rem, 10px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}
.footer__top__call__number b {
  color: #000;
  font-family: YakuHanJP, "InterVariable", "Noto Sans JP", sans-serif;
  font-size: max(4rem, 30px);
  font-weight: 700;
  line-height: 0.6;
  letter-spacing: 0;
}
.footer__top__call__number:hover {
  opacity: 0.6;
}
.footer__bottom {
  padding: 15px 0;
  background: #007C5C;
}
@media screen and (max-width: 550px) {
  .footer__bottom {
    padding: 40px 0 20px 0;
  }
}
.footer__bottom .footer__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px 50px;
}
@media screen and (max-width: 1000px) {
  .footer__bottom .footer__wrapper {
    flex-direction: column;
  }
}
@media screen and (max-width: 550px) {
  .footer__bottom .footer__wrapper {
    gap: 30px;
  }
}
@media screen and (max-width: 550px) {
  .footer__bottom__nav {
    width: 100%;
  }
}
.footer__bottom__nav ul {
  display: flex;
  align-items: center;
  gap: max(7rem, 30px);
}
@media screen and (max-width: 550px) {
  .footer__bottom__nav ul {
    flex-direction: column;
    align-items: start;
  }
}
.footer__bottom__nav ul li a {
  color: #fff;
  font-size: max(1.4rem, 12px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
}
.footer__bottom__nav ul li a:hover {
  opacity: 0.6;
}
.footer__bottom__copyright b {
  color: #fff;
  font-family: YakuHanJP, "InterVariable", "Noto Sans JP", sans-serif;
  font-size: max(1.4rem, 12px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}
.footer__pageTop {
  position: absolute;
  top: 0;
  right: 10%;
  transform: translate(50%, -50%);
}
.footer__pageTop a {
  display: grid;
  place-items: center;
  width: max(8rem, 50px);
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #007C5C;
}
.footer__pageTop a span {
  width: 30%;
  height: auto;
  aspect-ratio: 1/1;
  border-top: max(0.3rem, 3px) solid #fff;
  border-right: max(0.3rem, 3px) solid #fff;
  transform: rotate(-45deg) translate(-15%, 15%);
  transform-origin: center;
  transition: transform 0.3s ease;
}
.footer__pageTop a:hover span {
  transform: rotate(-45deg) translate(5%, -5%);
}

.fixedBanner {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(to bottom, #016cb5, #2a4d98);
  border-radius: 10px 0 0 10px;
  border: max(0.3rem, 3px) solid #fff;
  border-right: none;
  padding: max(2rem, 20px) max(2.5rem, 25px);
  box-shadow: 0 3px 16px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  z-index: 9999;
}
@media screen and (max-width: 768px) {
  .fixedBanner {
    width: 90%;
    top: unset;
    left: 5%;
    right: 5%;
    bottom: 5px;
    border-radius: 10px;
    border: max(0.3rem, 3px) solid #fff;
    transform: translate(0, 0);
  }
}
@media screen and (max-width: 550px) {
  .fixedBanner {
    width: calc(100% - 10px);
    left: 5px;
    right: 5px;
  }
}
.fixedBanner::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 60%;
  z-index: 0;
  -webkit-clip-path: polygon(0 30%, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(0 30%, 100% 0, 100% 100%, 0% 100%);
  background: linear-gradient(to bottom, #016cb5, rgba(255, 255, 255, 0));
  mix-blend-mode: multiply;
}
@media screen and (max-width: 768px) {
  .fixedBanner::before {
    left: unset;
    top: 0;
    width: 60%;
    height: 100%;
    -webkit-clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
            clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
  }
}
.fixedBanner span {
  position: relative;
  color: #fff;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  z-index: 10;
}
.fixedBanner span.pc {
  font-size: max(2rem, 16px);
  writing-mode: vertical-rl;
  -webkit-text-orientation: mixed;
          text-orientation: mixed;
}
@media screen and (max-width: 768px) {
  .fixedBanner span.pc {
    display: none;
  }
}
.fixedBanner span.sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .fixedBanner span.sp {
    display: block;
    font-size: 21px;
    text-align: center;
  }
}
.fixedBanner:hover {
  opacity: 0.6;
}

.cta {
  background: #fff;
}
.cta__wrapper {
  padding-top: max(6rem, 40px);
  padding-bottom: max(6rem, 40px);
}
.cta__btn {
  position: relative;
  width: max(61.5rem, 300px);
  margin: 0 auto;
  text-align: center;
  border-radius: 10px;
  border: max(0.3rem, 3px) solid #fff;
  background: linear-gradient(to bottom, #016cb5, #2a4d98);
  box-shadow: 0 6px 9px rgba(0, 0, 0, 0.2);
  animation: bounce 3.5s ease infinite;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 0;
}
@keyframes bounce {
  0% {
    transform: translateY(0);
    box-shadow: 0 6px 9px rgba(0, 0, 0, 0.2);
  }
  5% {
    transform: translateY(-10px);
    box-shadow: 10px 16px 9px rgba(0, 0, 0, 0.2);
  }
  10% {
    transform: translateY(0);
    box-shadow: 0 6px 9px rgba(0, 0, 0, 0.2);
  }
  15% {
    transform: translateY(-10px);
    box-shadow: 10px 16px 9px rgba(0, 0, 0, 0.2);
  }
  20%, 100% {
    transform: translateY(0);
    box-shadow: 0 6px 9px rgba(0, 0, 0, 0.2);
  }
}
@media screen and (max-width: 768px) {
  .cta__btn {
    width: 100%;
  }
}
.cta__btn::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 60%;
  background: linear-gradient(to right, #016cb5, rgba(255, 255, 255, 0));
  -webkit-clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: -1;
  mix-blend-mode: multiply;
}
.cta__btn span {
  position: relative;
  padding: max(3rem, 25px) 5%;
  color: #fff;
  font-size: max(4.1rem, 24px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
}
.cta__btn:hover {
  opacity: 0.6;
}

main .hero {
  position: relative;
}
main .hero__topics {
  position: absolute;
  display: flex;
  align-items: center;
  left: 0;
  bottom: 10%;
  gap: max(1.5rem, 10px);
  padding: max(1.5rem, 12px);
  background: #fff;
}
@media screen and (max-width: 768px) {
  main .hero__topics {
    bottom: 5%;
  }
}
main .hero__topics img {
  width: max(7.5rem, 50px);
}
main .hero__topics p {
  color: #000;
  font-size: max(1.7rem, 14px);
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.05em;
}
main .campaign {
  background: #ECF7F3;
}
main .campaign__wrapper {
  padding-top: max(4rem, 30px);
  padding-bottom: max(10rem, 50px);
}
main .campaign__title {
  text-align: center;
}
main .campaign__title h2 {
  position: relative;
  width: max(50%, 500px);
  margin: 0 auto;
  padding: max(1.5rem, 15px) 5%;
  background: #FFA405;
  border-radius: 50px;
  box-shadow: 5px 5px 12px #d6d6d6;
  color: #fff;
  font-size: max(4.1rem, 28px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  main .campaign__title h2 {
    width: 100%;
  }
}
main .campaign__title h2::before {
  content: "";
  position: absolute;
  top: 99%;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: max(1.2rem, 12px) solid transparent;
  border-right: max(1.2rem, 12px) solid transparent;
  border-top: max(1.5rem, 15px) solid #FFA405;
  filter: drop-shadow(5px 5px 12px #d6d6d6);
  transform: translateZ(0);
}
main .campaign__title p {
  font-size: max(7.4rem, 46px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.05em;
  margin-top: max(3rem, 30px);
}
main .campaign__title p > * {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}
main .campaign__title p b {
  color: #FFA405;
}
main .campaign__content__plan {
  margin-top: max(4.5rem, 30px);
}
main .campaign__content__plan .campaign__header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: max(2rem, 20px);
  padding: max(2rem, 20px) 5%;
  background: #179D77;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
}
@media screen and (max-width: 1000px) {
  main .campaign__content__plan .campaign__header {
    flex-direction: column-reverse;
  }
}
main .campaign__content__plan .campaign__header__icon {
  display: flex;
  gap: max(1rem, 10px);
}
main .campaign__content__plan .campaign__header__icon img {
  width: max(11.5rem, 50px);
}
main .campaign__content__plan .campaign__header__title {
  text-align: center;
}
main .campaign__content__plan .campaign__header__title h3 {
  color: #fff;
  font-size: max(5.5rem, 28px);
  font-weight: 800;
  line-height: 0.8;
  letter-spacing: 0.05em;
}
main .campaign__content__plan .campaign__header__title h3 > span {
  font-size: 0.55em;
  line-height: 1.5;
}
main .campaign__content__plan .campaign__header__title h3 p {
  color: #fff;
  font-size: inherit;
  font-weight: inherit;
  line-height: 1.2;
  letter-spacing: inherit;
}
main .campaign__content__plan .campaign__header__title h3 p span.line {
  width: max(40rem, 200px);
  height: max(0.75rem, 4px);
  background: #fff;
  vertical-align: middle;
}
@media screen and (max-width: 550px) {
  main .campaign__content__plan .campaign__header__title h3 p span.line {
    width: 30vw;
  }
}
main .campaign__content__plan .campaign__body {
  position: relative;
  outline: max(0.5rem, 5px) dotted #179D77;
  outline-offset: min(-0.5rem, -5px);
  border-radius: 0 0 20px 20px;
  overflow: hidden;
  z-index: 0;
}
main .campaign__content__plan .campaign__body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: max(0.5rem, 5px);
  width: 100%;
  background: #179D77;
  z-index: 10;
}
main .campaign__content__plan .campaign__body__plan {
  display: flex;
  justify-content: center;
  background: #D4F3EB;
  padding: max(4.5rem, 45px) 5%;
}
main .campaign__content__plan .campaign__body__plan .campaign__bubble {
  position: relative;
  width: max(23rem, 150px);
  margin-right: -3%;
}
@media screen and (max-width: 1000px) {
  main .campaign__content__plan .campaign__body__plan .campaign__bubble {
    width: min(25vw, 150px);
  }
}
main .campaign__content__plan .campaign__body__plan .campaign__course {
  text-align: center;
  background: #fff;
  border-radius: 10px;
}
main .campaign__content__plan .campaign__body__plan .campaign__course__supplement {
  position: relative;
  display: block;
  font-size: max(2.2rem, 16px);
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: 0.05em;
  padding-bottom: max(1.5rem, 15px);
  margin-bottom: max(1.5rem, 15px);
}
main .campaign__content__plan .campaign__body__plan .campaign__course__supplement::before {
  content: "";
  position: absolute;
  top: 100%;
  left: -10%;
  right: 0;
  width: 120%;
  transform-origin: left;
  height: max(0.1rem, 1px);
  background: rgba(0, 124, 92, 0.5);
}
@media screen and (max-width: 1000px) {
  main .campaign__content__plan .campaign__body__plan .campaign__course__supplement::before {
    left: 0;
    width: 100%;
  }
}
main .campaign__content__plan .campaign__body__plan .campaign__course__name {
  font-size: max(3.9rem, 26px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.05em;
}
main .campaign__content__plan .campaign__body__plan .campaign__course__name.small {
  font-size: max(2.2rem, 18px);
}
main .campaign__content__plan .campaign__body__plan .campaign__plus {
  position: relative;
  align-self: center;
  width: max(3rem, 20px);
  height: max(3rem, 20px);
  margin: 0 auto;
}
main .campaign__content__plan .campaign__body__plan .campaign__plus__line {
  position: absolute;
  top: 50%;
  width: 100%;
  height: max(0.6rem, 5px);
  background: #007C5C;
}
main .campaign__content__plan .campaign__body__plan .campaign__plus__line:nth-of-type(1) {
  left: 0;
  transform: translateY(-50%);
}
main .campaign__content__plan .campaign__body__plan .campaign__plus__line:nth-of-type(2) {
  left: 50%;
  transform: translate(-50%, -50%) rotate(90deg);
  transform-origin: center;
}
main .campaign__content__plan .campaign__body__price {
  text-align: center;
  padding: max(1.5rem, 10px) 5%;
  background: linear-gradient(to right, #ffba00, #ff8900);
}
main .campaign__content__plan .campaign__body__price strong {
  color: #fff;
  font-size: max(2.7rem, 18px);
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
main .campaign__content__plan .campaign__body__price strong span.number1 {
  font-family: YakuHanJP, "InterVariable", "Noto Sans JP", sans-serif;
  font-size: 1.2em;
  font-weight: 700;
}
main .campaign__content__plan .campaign__body__price strong span.number2 {
  font-family: YakuHanJP, "InterVariable", "Noto Sans JP", sans-serif;
  font-size: 1.75em;
  font-weight: 700;
}
main .campaign__content__plan .campaign__body__after {
  text-align: center;
  padding: max(5rem, 40px) 5%;
  background: #fff;
}
main .campaign__content__plan .campaign__body__after .supplement {
  font-size: max(3.7rem, 20px);
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
main .campaign__content__plan .campaign__body__after .supplement span.number {
  font-size: 1.2em;
}
main .campaign__content__plan .campaign__body__after .supplement span.line {
  width: max(25rem, 100px);
  height: max(0.55rem, 3.5px);
  background: #007C5C;
  vertical-align: middle;
}
@media screen and (max-width: 550px) {
  main .campaign__content__plan .campaign__body__after .supplement span.line {
    width: 25vw;
  }
}
main .campaign__content__plan .campaign__body__after strong {
  display: block;
  font-size: max(5.4rem, 30px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  main .campaign__content__plan .campaign__body__after strong {
    margin-top: max(1.5rem, 15px);
  }
}
main .campaign__content__plan .campaign__body__after strong > span {
  position: relative;
  display: inline-flex;
  align-items: center;
  z-index: 0;
}
main .campaign__content__plan .campaign__body__after strong > span::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  transform: translateY(-150%);
  width: 100%;
  height: 20%;
  background: rgba(255, 186, 0, 0.25);
  z-index: -1;
}
main .campaign__content__plan .campaign__body__after strong > span.number1 {
  font-family: YakuHanJP, "InterVariable", "Noto Sans JP", sans-serif;
  font-size: max(14.8rem, 60px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
  background: linear-gradient(to right, #ffa700, #ff8f00 60%, #ff7600 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
main .campaign__content__plan .campaign__body__after strong > span > span {
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  font-size: max(11.6rem, 38px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.05em;
  margin-bottom: 0.1em;
}
@media screen and (max-width: 550px) {
  main .campaign__content__plan .campaign__body__after strong > span > span {
    margin-bottom: 0;
  }
}
main .campaign__content__plan .campaign__body__after strong > span .tax {
  flex-shrink: 0;
}
main .campaign__content__plan .campaign__body__after strong > span .tax img {
  width: max(11rem, 35px);
}
main .campaign__content__plan.plan1 .campaign__header__title h3 > span {
  font-size: 0.55em;
}
main .campaign__content__plan.plan1 .campaign__body__plan__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: max(2rem, 10px);
}
@media screen and (max-width: 1000px) {
  main .campaign__content__plan.plan1 .campaign__body__plan__inner {
    width: 70%;
    grid-template-columns: 1fr;
  }
}
main .campaign__content__plan.plan1 .campaign__body__plan__inner .campaign__course {
  padding: max(4.5rem, 30px) max(4.5rem, 25px);
}
main .campaign__content__plan.plan1 .campaign__body__plan__inner .campaign__course.first {
  padding: max(4.5rem, 30px) max(4.5rem, 25px) max(4.5rem, 30px) max(5rem, 35px);
}
@media screen and (max-width: 550px) {
  main .campaign__content__plan.plan1 .campaign__body__plan__inner .campaign__course.first {
    padding: 30px 25px;
  }
}
main .campaign__content__plan.plan2 .campaign__header__title h3 > span {
  font-size: 0.42em;
}
main .campaign__content__plan.plan2 .campaign__body__plan__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: max(2rem, 10px);
}
@media screen and (max-width: 1000px) {
  main .campaign__content__plan.plan2 .campaign__body__plan__inner {
    flex-shrink: 0;
    width: 71%;
    grid-template-columns: 1fr;
  }
}
main .campaign__content__plan.plan2 .campaign__body__plan__inner .campaign__course {
  padding: max(4.5rem, 30px) max(3rem, 20px);
}
main .campaign__content__plan.plan2 .campaign__body__plan__inner .campaign__course.first {
  padding: max(4.5rem, 30px) max(3rem, 20px) max(4.5rem, 30px) max(4rem, 30px);
}
@media screen and (max-width: 550px) {
  main .campaign__content__plan.plan2 .campaign__body__plan__inner .campaign__course.first {
    padding: 30px 25px;
  }
}
main .other__header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: max(3rem, 30px) 5%;
  background: linear-gradient(to right, #00b183, #009b74 30%, #00936d);
  z-index: 0;
}
main .other__header::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(../images/other-title-mask.webp);
  background-size: cover;
  mix-blend-mode: screen;
  opacity: 0.35;
}
main .other__header h2 {
  display: inline-block;
  color: #fff;
  font-size: max(4rem, 22px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0;
}
main .other__header__arrow {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: max(1.2rem, 10px) solid transparent;
  border-right: max(1.2rem, 10px) solid transparent;
  border-top: max(1.4rem, 12px) solid #fff;
  margin: 0 max(2rem, 5px);
  opacity: 0.5;
  mix-blend-mode: soft-light;
}
main .other__content {
  padding-top: max(9rem, 50px);
  padding-bottom: max(9rem, 50px);
}
main .other__content__select {
  display: flex;
  align-items: center;
  gap: 15px max(5rem, 30px);
  margin-bottom: max(8rem, 40px);
}
@media screen and (max-width: 768px) {
  main .other__content__select {
    align-items: start;
    flex-direction: column;
  }
}
main .other__content__select .other__selectBox {
  display: flex;
  align-items: center;
  gap: max(2rem, 10px);
}
main .other__content__select .other__selectBox input {
  flex-shrink: 0;
  position: relative;
  width: max(6rem, 35px);
  height: auto;
  aspect-ratio: 1/1;
  background: #d4f3eb;
  border-radius: 50%;
}
main .other__content__select .other__selectBox input::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50%;
  height: auto;
  aspect-ratio: 1/1;
  background: #007C5C;
  border-radius: 50%;
  transform: scale(0) translate(-50%, -50%);
  transform-origin: center;
  transition: transform 0.3s ease;
}
main .other__content__select .other__selectBox input:checked::before {
  transform: translate(-50%, -50%) scale(1);
}
main .other__content__select .other__selectBox label {
  font-size: max(2.7rem, 18px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.05em;
}
main .other__content__title {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #D4F3EB;
  padding: max(3rem, 20px) 5%;
  border-radius: max(1.7rem, 12px);
}
main .other__content__title strong {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: max(1rem, 10px);
  font-size: max(5rem, 28px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.05em;
}
main .other__content__title strong > span {
  font-size: 0.55em;
  letter-spacing: 0;
}
main .other__content__detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: max(4.5rem, 35px);
}
@media screen and (max-width: 1000px) {
  main .other__content__detail {
    width: 80%;
    row-gap: 50px;
    margin: 50px auto;
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 768px) {
  main .other__content__detail {
    width: 100%;
  }
}
main .other__content__detail__inner:nth-of-type(1) {
  padding-right: 5%;
  border-right: max(0.5rem, 5px) dotted rgba(0, 124, 92, 0.2);
}
@media screen and (max-width: 1000px) {
  main .other__content__detail__inner:nth-of-type(1) {
    padding-right: 0;
    border-right: none;
    padding-bottom: 40px;
    border-bottom: max(0.5rem, 5px) dotted rgba(0, 124, 92, 0.2);
  }
}
main .other__content__detail__inner:nth-of-type(2) {
  padding-left: 5%;
}
@media screen and (max-width: 1000px) {
  main .other__content__detail__inner:nth-of-type(2) {
    padding-left: 0;
  }
}
main .other__content__detail__header {
  display: flex;
  align-items: center;
  gap: max(1rem, 10px);
  padding-bottom: max(1rem, 10px);
}
main .other__content__detail__header__bubble {
  flex-shrink: 0;
  position: relative;
  display: grid;
  place-items: center;
  text-align: center;
  height: auto;
  aspect-ratio: 1/1;
  padding: max(1rem, 5px);
  margin-right: max(3rem, 30px);
  margin-left: max(2rem, 20px);
  border: max(0.5rem, 3px) solid #007C5C;
  border-radius: 50%;
  background: #fff;
  font-size: max(1.4rem, 10px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.05em;
  transform: scale(1.4) translateY(10%);
}
@media screen and (max-width: 550px) {
  main .other__content__detail__header__bubble {
    font-size: 6px;
    margin-left: 10px;
    margin-right: 15px;
  }
}
main .other__content__detail__header__bubble::before {
  content: "";
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: max(0.8rem, 8px) solid transparent;
  border-bottom: max(0.8rem, 8px) solid transparent;
  border-left: max(1.6rem, 16px) solid #007C5C;
}
@media screen and (max-width: 550px) {
  main .other__content__detail__header__bubble::before {
    border-left: 10px solid #007C5C;
  }
}
main .other__content__detail__header__bubble::after {
  content: "";
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: max(0.5rem, 5px) solid transparent;
  border-bottom: max(0.5rem, 5px) solid transparent;
  border-left: max(1.3rem, 13px) solid #fff;
  margin-left: max(-0.5rem, -5px);
}
@media screen and (max-width: 550px) {
  main .other__content__detail__header__bubble::after {
    border-left: 8px solid #fff;
    margin-left: -2px;
  }
}
main .other__content__detail__header h3 {
  font-size: max(2.4rem, 18px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
main .other__content__detail__body {
  border-radius: max(1rem, 10px) max(1rem, 10px) 0 0;
  overflow: hidden;
}
main .other__content__detail__body__course__top {
  text-align: center;
  padding: max(2rem, 20px) 5%;
  background: linear-gradient(to left, #00b183, #009b74 35%, #007c5c);
}
main .other__content__detail__body__course__top b {
  display: block;
  color: #fff;
  font-size: max(3.4rem, 24px);
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
main .other__content__detail__body__course__top span {
  color: #fff;
  font-size: max(1.6rem, 12px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0;
}
main .other__content__detail__body__course__bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: max(1.5rem, 15px);
  padding: max(2rem, 20px) 5%;
  background: #ededed;
}
main .other__content__detail__body__course__bottom .iconBox {
  width: max(4.5rem, 30px);
}
main .other__content__detail__body__course__bottom .textBox b {
  font-size: max(2.5rem, 18px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
main .other__content__detail__body__course__bottom .textBox b small {
  font-size: 0.7em;
  font-weight: 800;
  line-height: inherit;
  letter-spacing: 0.05em;
}
main .other__content__detail__body__price {
  text-align: center;
  width: max(80%, 150px);
  padding: max(1rem, 10px) 5%;
  margin: max(2rem, 20px) auto;
  border-radius: max(3.3rem, 33px);
  background: linear-gradient(to bottom, #ffa700, #ff8f00 55%, #ff7600);
}
@media screen and (max-width: 550px) {
  main .other__content__detail__body__price {
    width: 100%;
  }
}
main .other__content__detail__body__price p {
  color: #fff;
  font-size: max(1.6rem, 15px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
}
main .other__content__detail__body__price p span.number {
  font-family: YakuHanJP, "InterVariable", "Noto Sans JP", sans-serif;
  font-size: 1.2em;
  letter-spacing: 0.05em;
}
main .other__content__detail__body__after p.supplement {
  font-size: max(2.2rem, 16px);
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-align: center;
}
main .other__content__detail__body__after p.supplement span.number {
  font-family: YakuHanJP, "InterVariable", "Noto Sans JP", sans-serif;
  font-size: 1.3em;
  font-weight: 700;
}
main .other__content__detail__body__after p.supplement span.line {
  width: max(14rem, 70px);
  height: max(0.4rem, 3px);
  background: #007C5C;
  vertical-align: middle;
}
main .other__content__detail__body__after strong {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: max(2.9rem, 20px);
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.05em;
  margin-top: max(1rem, 10px);
}
@media screen and (max-width: 550px) {
  main .other__content__detail__body__after strong {
    flex-direction: column;
  }
}
@media screen and (max-width: 550px) {
  main .other__content__detail__body__after strong > span br {
    display: none;
  }
}
main .other__content__detail__body__after strong .priceBox {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: max(1rem, 10px);
  font-family: YakuHanJP, "InterVariable", "Noto Sans JP", sans-serif;
  font-size: max(9rem, 60px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
}
main .other__content__detail__body__after strong .priceBox .tax {
  width: max(7.5rem, 50px);
}
main .limited {
  background: radial-gradient(circle, rgba(0, 124, 92, 0.05) max(0.4rem, 3px), transparent max(0.4rem, 3px)), radial-gradient(circle, rgba(0, 124, 92, 0.05) max(0.4rem, 3px), transparent max(0.4rem, 3px)), linear-gradient(to bottom, #D4F3EB, #b1eadb);
  background-size: max(3.2rem, 24px) max(3.2rem, 24px), max(3.2rem, 24px) max(3.2rem, 24px), 100% 100%;
  background-position: 0 0, max(1.6rem, 12px) max(1.6rem, 12px), 0 0;
  background-repeat: repeat, repeat, no-repeat;
}
main .limited__wrapper {
  padding-top: max(12rem, 70px);
  padding-bottom: max(12rem, 70px);
}
main .limited__title {
  text-align: center;
}
main .limited__title h2 {
  position: relative;
  width: max(50%, 500px);
  margin: 0 auto;
  padding: max(1.5rem, 15px) 5%;
  background: #fff;
  border-radius: 50px;
  box-shadow: 5px 5px 12px rgba(2, 133, 99, 0.15);
  font-size: max(4.1rem, 28px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  main .limited__title h2 {
    width: 100%;
  }
}
main .limited__title h2::before {
  content: "";
  position: absolute;
  top: 99%;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: max(1.2rem, 12px) solid transparent;
  border-right: max(1.2rem, 12px) solid transparent;
  border-top: max(1.5rem, 15px) solid #fff;
  filter: drop-shadow(5px 5px 12px rgba(2, 133, 99, 0.15));
  transform: translateZ(0);
}
main .limited__title p {
  font-size: max(5.6rem, 22px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  margin-top: max(3rem, 30px);
}
main .limited__title p > * {
  font-size: inherit;
  font-weight: inherit;
  line-height: 1.5;
  letter-spacing: inherit;
}
main .limited__title p b {
  color: #FFA405;
  font-size: 1.2em;
  line-height: 1;
}
main .limited__content__list {
  display: flex;
  background: #fff;
  border: max(0.5rem, 5px) solid #fff;
  box-shadow: 10px 10px 40px rgba(2, 133, 99, 0.4);
  margin-top: max(7rem, 50px);
}
@media screen and (max-width: 768px) {
  main .limited__content__list {
    flex-direction: column;
  }
}
main .limited__content__list dt {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background: #007C5C;
  padding: max(4rem, 20px) max(1rem, 10px);
}
main .limited__content__list dt span {
  color: #fff;
  writing-mode: vertical-rl;
  -webkit-text-orientation: mixed;
          text-orientation: mixed;
  font-size: max(5.2rem, 32px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  main .limited__content__list dt span {
    writing-mode: horizontal-tb;
    -webkit-text-orientation: initial;
            text-orientation: initial;
    letter-spacing: 0.1em;
  }
}
main .limited__content__list dt span.number {
  writing-mode: horizontal-tb;
  font-family: YakuHanJP, "InterVariable", "Noto Sans JP", sans-serif;
  font-size: 1.2em;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  main .limited__content__list dt span.number {
    letter-spacing: 0.1em;
    transform: translateY(2%);
  }
}
main .limited__content__list dd {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding: max(2rem, 20px) 5%;
  z-index: 0;
}
main .limited__content__list dd::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  -webkit-clip-path: polygon(100% 0, 0% 100%, 100% 100%);
          clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  width: auto;
  height: max(4rem, 20px);
  aspect-ratio: 1/1;
  background: #007C5C;
  z-index: 10;
}
main .limited__content__list dd.flexBox {
  flex-direction: row;
}
@media screen and (max-width: 768px) {
  main .limited__content__list dd.flexBox {
    flex-direction: column;
  }
}
main .limited__content__list dd .attention {
  margin-top: max(1rem, 10px);
}
main .limited__content__list dd .base {
  position: relative;
  z-index: 10;
}
main .limited__content__list dd .accent {
  position: relative;
  z-index: 0;
}
main .limited__content__list dd .accent::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  transform: translateY(-125%);
  width: 100%;
  height: 20%;
  background: rgba(255, 186, 0, 0.25);
  z-index: -1;
}
main .limited__content__list dd b {
  background: linear-gradient(to right, #ffa700, #ff8f00 60%, #ff7600 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
main .limited__content__list dd .limited__bubble {
  position: absolute;
  top: 0;
  right: 0;
  width: max(21rem, 80px);
  transform: translate(25%, -15%) translateZ(0);
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.15));
}
@media screen and (max-width: 768px) {
  main .limited__content__list dd .limited__bubble {
    transform: translate(25%, -80%) translateZ(0);
  }
}
main .limited__content__list.list1 dd p {
  font-size: max(7.8rem, 36px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.05em;
}
main .limited__content__list.list1 dd p b {
  display: inline-block;
  font-size: max(9.8rem, 40px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}
main .limited__content__list.list1 dd p b span.number {
  font-family: YakuHanJP, "InterVariable", "Noto Sans JP", sans-serif;
  font-size: 1.4em;
  line-height: 1;
  vertical-align: text-bottom;
}
main .limited__content__list.list2 dd p {
  font-size: max(5.3rem, 26px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.05em;
}
main .limited__content__list.list2 dd b {
  font-size: max(9.8rem, 38px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
}
main .limited__content__list.list2 dd b .number {
  font-size: 1.2em;
}
main .limited__content__list.list2 dd .supplement {
  font-size: max(3.4rem, 24px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.05em;
  margin-top: max(1.5rem, 15px);
  text-align: center;
}
main .limited__content__list.list2 dd .supplement span.number {
  font-family: YakuHanJP, "InterVariable", "Noto Sans JP", sans-serif;
  font-size: 1.2em;
}
main .limited__content__list.list2 dd .supplement span.line {
  width: max(20rem, 100px);
  height: max(0.5rem, 3.5px);
  background: #007C5C;
  vertical-align: middle;
}
@media screen and (max-width: 550px) {
  main .limited__content__list.list2 dd .supplement span.line {
    width: 25vw;
  }
}
main .limited__content__list.list3 dd .supplement {
  font-size: max(3.3rem, 20px);
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
main .limited__content__list.list3 dd p {
  font-size: max(5.3rem, 24px);
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
main .limited__content__list.list3 dd b {
  font-size: max(8.5rem, 30px);
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0;
}
main .limited__content__list.list4 dd {
  text-align: left;
}
@media screen and (max-width: 768px) {
  main .limited__content__list.list4 dd {
    text-align: center;
  }
}
main .limited__content__list.list4 dd .supplement {
  font-size: max(3.3rem, 18px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.05em;
}
main .limited__content__list.list4 dd b {
  font-size: max(5rem, 20px);
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: 0;
}
main .limited__content__list.list4 dd b.base {
  display: inline-block;
  font-size: max(8.7rem, 36px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0;
}
main .limited__content__list.list4 dd b.base span.number {
  font-family: YakuHanJP, "InterVariable", "Noto Sans JP", sans-serif;
  font-size: 1.2em;
  font-weight: 700;
  letter-spacing: 0.1em;
}
main .limited__content__list.list4 dd .limited__content__list__detail__images {
  flex-shrink: 0;
  margin-right: 20%;
}
@media screen and (max-width: 1000px) {
  main .limited__content__list.list4 dd .limited__content__list__detail__images {
    margin-right: 15%;
  }
}
@media screen and (max-width: 768px) {
  main .limited__content__list.list4 dd .limited__content__list__detail__images {
    margin-right: 0;
    margin-top: 20px;
  }
}
main .limited__content__list.list4 dd .limited__content__list__detail__images img {
  width: max(21rem, 125px);
}
@media screen and (max-width: 768px) {
  main .limited__content__list.list4 dd .limited__content__list__detail__images img {
    width: max(40%, 125px);
  }
}
main .limited__content__list.list5 dd .flexBox {
  display: flex;
  align-items: center;
}
main .limited__content__list.list5 dd .flexBox .imageBox {
  flex-shrink: 0;
  width: max(15rem, 45px);
}
main .limited__content__list.list5 dd p {
  font-size: max(5.3rem, 24px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.05em;
}
main .limited__content__list.list5 dd b {
  font-size: max(13.8rem, 34px);
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: 0;
}
main .limited__content__list.list5 dd b span.number {
  font-family: YakuHanJP, "InterVariable", "Noto Sans JP", sans-serif;
  font-size: max(16.3rem, 44px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}
main .info {
  background: #D4F3EB;
}
main .info__header {
  position: relative;
  text-align: center;
  padding: max(3rem, 30px) 5%;
  background: linear-gradient(to right, #00b183, #009b74 30%, #00936d);
  z-index: 0;
}
main .info__header::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(../images/other-title-mask.webp);
  background-size: cover;
  mix-blend-mode: screen;
  opacity: 0.35;
}
main .info__header h2 {
  display: inline-block;
  color: #fff;
  font-size: max(4rem, 22px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0;
}
main .info__header p {
  color: #fff;
  font-size: max(2.4rem, 16px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0;
}
main .info__meta {
  display: grid;
  grid-template-columns: 45% 1fr;
  gap: 50px max(4.5rem, 15px);
  padding-top: max(9rem, 50px);
  padding-bottom: max(9rem, 50px);
  background: #D4F3EB;
}
@media screen and (max-width: 550px) {
  main .info__meta {
    grid-template-columns: 1fr;
  }
}
main .info__meta figure {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  gap: 30px;
}
main .info__meta figure .imageBox {
  aspect-ratio: 69/56;
}
main .info__meta figure .mapBox {
  width: 100%;
  height: 100%;
}
main .info__meta figure .mapBox iframe {
  width: 100%;
  height: 100%;
}
main .info__meta figure .imageBox,
main .info__meta figure .mapBox {
  border-radius: max(1rem, 5px);
  border: max(0.5rem, 4px) solid #fff;
  box-shadow: 10px 10px 40px rgba(2, 133, 99, 0.4);
  overflow: hidden;
}
@media screen and (max-width: 550px) {
  main .info__meta figure .imageBox,
  main .info__meta figure .mapBox {
    aspect-ratio: 5/3;
  }
}
main .info__meta figure figcaption {
  text-align: center;
  font-family: YakuHanJP, "InterVariable", "Noto Sans JP", sans-serif;
  font-size: max(2rem, 14px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
main .info__contact {
  position: relative;
  background: linear-gradient(to right, #ffffff, #ecf7f3);
  z-index: 0;
}
main .info__contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: max(5rem, 30px);
  background: #D4F3EB;
  z-index: -1;
}
main .info__contact__inner {
  padding: max(8rem, 40px) 5%;
  background: #fff;
  box-shadow: 10px 10px 40px rgba(0, 0, 0, 0.15);
  border-radius: max(2rem, 10px) max(2rem, 10px) 0 0;
}
main .info__contact__header {
  text-align: center;
  padding: max(2rem, 20px) 5%;
  border: max(0.4rem, 4px) solid #007C5C;
  border-radius: max(8.6rem, 40px);
}
main .info__contact__header h3 {
  font-size: max(3.6rem, 22px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
  margin-bottom: max(1rem, 10px);
}
main .info__contact__content {
  text-align: center;
}
main .info__contact__content h3 {
  display: inline-block;
  font-size: max(2.3rem, 16px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0;
  border-bottom: max(0.3rem, 3px) dotted #007C5C;
  margin-top: max(6rem, 40px);
  margin-bottom: max(2rem, 20px);
}
main .info__contact__content__link {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: max(4rem, 30px);
  margin-top: max(1rem, 10px);
}
main .info__contact__content__link__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: max(1rem, 10px);
  padding: max(2rem, 15px) max(4rem, 30px);
  background: #149d77;
  border-radius: max(1rem, 10px);
}
@media screen and (max-width: 768px) {
  main .info__contact__content__link__btn {
    width: 80%;
  }
}
@media screen and (max-width: 550px) {
  main .info__contact__content__link__btn {
    width: 100%;
  }
}
main .info__contact__content__link__btn .icon {
  width: max(3.5rem, 24px);
}
main .info__contact__content__link__btn .text {
  color: #fff;
  font-size: max(3rem, 22px);
  font-weight: 700;
  line-height: 0;
  letter-spacing: 0;
}
main .info__contact__content__link__tel {
  display: flex;
  align-items: center;
  gap: max(2rem, 20px);
}
main .info__contact__content__link__tel .imageBox {
  flex-shrink: 0;
  width: max(10.5rem, 70px);
}
main .info__contact__content__link__tel__number {
  text-align: right;
}
main .info__contact__content__link__tel__number span {
  color: #000;
  font-family: YakuHanJP, "InterVariable", "Noto Sans JP", sans-serif;
  font-size: max(1.9rem, 12px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
}
main .info__contact__content__link__tel__number b {
  color: #000;
  font-family: YakuHanJP, "InterVariable", "Noto Sans JP", sans-serif;
  font-size: max(6.5rem, 30px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}
main .info__contact__content__link:hover {
  opacity: 0.5;
}/*# sourceMappingURL=style.css.map */