@charset "UTF-8";
/* --------------------------------------------------
* common
*/
a {
  transition: all 0.3s ease;
}
a:hover {
  opacity: 0.7;
}

/* --------------------------------------------------
* PC・SP switching
*/
.pc {
  display: block;
}
@media screen and (max-width: 750px) {
  .pc {
    display: none;
  }
}

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

/* --------------------------------------------------
* wrap style
*/
.wrap {
  width: 62.5%;
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (min-width: 751px) and (max-width: 1023px) {
  .wrap {
    width: 90%;
  }
}
@media screen and (max-width: 750px) {
  .wrap {
    width: 89.3333333333vw;
    max-width: 100%;
  }
}

.content-wrap {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
}
@media screen and (min-width: 751px) and (max-width: 1023px) {
  .content-wrap {
    width: 95%;
  }
}
@media screen and (max-width: 750px) {
  .content-wrap {
    width: 89.3333333333vw;
    max-width: 100%;
  }
}

.all-wrapper {
  overflow-x: hidden;
}

.scr-link {
  padding-top: 150px;
  margin-top: -150px;
}
@media screen and (min-width: 751px) and (max-width: 1023px) {
  .scr-link {
    padding-top: 100px;
    margin-top: -100px;
  }
}
@media screen and (max-width: 750px) {
  .scr-link {
    padding-top: 29.8507462687vw;
    margin-top: -29.8507462687vw;
  }
}

/* --------------------------------------------------
* common style
*/
.link-btn {
  display: flex;
  justify-content: center;
}
.link-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 301px;
  padding: 22px 30px;
  background-color: var(--brw-color-1);
  border: 2px solid var(--brw-color-1);
  border-radius: 50px;
  color: var(--wht-color-2);
  font-weight: var(--font-weight-medium);
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}
@media screen and (max-width: 750px) {
  .link-btn a {
    width: 74.6666666667vw;
    padding: 5.8666666667vw 8vw;
    font-size: 4.2666666667vw;
  }
}
.link-btn a .lnk_btn_object {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 24.45px;
  height: 24.3px;
}
@media screen and (max-width: 750px) {
  .link-btn a .lnk_btn_object {
    right: 5.3333333333vw;
    width: 6.4vw;
    height: 6.4vw;
  }
}
.link-btn a .lnk_btn_object img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.3s ease;
}
.link-btn a .lnk_btn_object__hover {
  opacity: 0;
}
.link-btn a:hover {
  background-color: transparent;
  color: var(--brw-color-1);
}
.link-btn a:hover .lnk_btn_object__normal {
  opacity: 0;
}
.link-btn a:hover .lnk_btn_object__hover {
  opacity: 1;
}

#notfound .inner {
  padding: 150px 0 200px;
}
#notfound .inner h2 {
  margin-bottom: 50px;
  font-size: 30px;
}
#notfound .inner p {
  margin-bottom: 30px;
  font-size: 16px;
  line-height: 1.6;
}
#notfound .inner .back-link a {
  font-size: 16px;
  text-decoration: underline;
}
@media screen and (max-width: 750px) {
  #notfound .inner {
    padding: 44.776119403vw 0 59.7014925373vw;
  }
  #notfound .inner h2 {
    margin-bottom: 14.9253731343vw;
    font-size: 9.552238806vw;
  }
  #notfound .inner p {
    margin-bottom: 5.9701492537vw;
    font-size: 5.9701492537vw;
  }
  #notfound .inner .back-link a {
    font-size: 5.9701492537vw;
  }
}

/* --------------------------------------------------
* font
*/
.f-maru {
  font-family: var(--font-sans-maru);
}

.f-quic {
  font-family: var(--font-quic);
}

.fs-xs13 {
  font-size: clamp(8px, 2.2857142857px + 0.5580357143vw, 13px);
}

.fs-xs {
  font-size: clamp(9px, 3.2857142857px + 0.5580357143vw, 14px);
}

.fs-sm {
  font-size: clamp(11px, 5.2857142857px + 0.5580357143vw, 16px);
}

.fs-md {
  font-size: clamp(13px, 7.2857142857px + 0.5580357143vw, 18px);
}

.fs-lg {
  font-size: clamp(15px, 9.2857142857px + 0.5580357143vw, 20px);
}

.fs-lg22 {
  font-size: clamp(17px, 11.2857142857px + 0.5580357143vw, 22px);
}

.fs-lg24 {
  font-size: clamp(19px, 13.2857142857px + 0.5580357143vw, 24px);
}

.fs-lg28 {
  font-size: clamp(23px, 17.2857142857px + 0.5580357143vw, 28px);
}

.fs-lg34 {
  font-size: clamp(29px, 23.2857142857px + 0.5580357143vw, 34px);
}

.fs-xl {
  font-size: clamp(31px, 25.2857142857px + 0.5580357143vw, 36px);
}

@media screen and (min-width: 751px) and (max-width: 1023px) {
  .fs-xs {
    font-size: 9px;
  }
  .fs-sm {
    font-size: 11px;
  }
  .fs-md {
    font-size: 13px;
  }
  .fs-lg {
    font-size: 15px;
  }
  .fs-lg22 {
    font-size: 17px;
  }
  .fs-lg24 {
    font-size: 19px;
  }
  .fs-lg28 {
    font-size: 23px;
  }
  .fs-lg34 {
    font-size: 29px;
  }
  .fs-xl {
    font-size: 31px;
  }
}
@media screen and (max-width: 750px) {
  .fs-xs {
    font-size: 2.6666666667vw;
  }
  .fs-sm {
    font-size: 3.2vw;
  }
  .fs-md {
    font-size: 3.7333333333vw;
  }
  .fs-lg {
    font-size: 4.2666666667vw;
  }
  .fs-lg22 {
    font-size: 3.7333333333vw;
  }
  .fs-lg24 {
    font-size: 4.8vw;
  }
  .fs-lg28 {
    font-size: 5.3333333333vw;
  }
  .fs-lg34 {
    font-size: 6.4vw;
  }
  .fs-xl {
    font-size: 6.9333333333vw;
  }
}
@keyframes yurayura1 {
  0% {
    transform: translateX(-4px) translateY(-9px);
  }
  100% {
    transform: translateX(0px) translateY(0px);
  }
}
@keyframes yurayura2 {
  0% {
    transform: translateX(4px) translateY(-9px);
  }
  100% {
    transform: translateX(0px) translateY(0px);
  }
}
@keyframes katakata {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  21% {
    transform: translate(0, 0) rotate(0deg);
  }
  22% {
    transform: translate(0, 0) rotate(-6deg);
  }
  23% {
    transform: translate(0, -3px) rotate(0deg);
  }
  24% {
    transform: translate(0, -3px) rotate(6deg);
  }
  25% {
    transform: translate(3px, 0) rotate(-5deg);
  }
  26% {
    transform: translate(0, 3px) rotate(0deg);
  }
  27% {
    transform: translate(0, 0) rotate(6deg);
  }
  28% {
    transform: translate(0, 0) rotate(0deg);
  }
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
}
@keyframes fuwafuwa {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}
@keyframes fuwafuwa-stren1 {
  0% {
    transform: translateX(-50%) translateY(0);
  }
  17.05% {
    transform: translateX(-50%) translateY(-15px);
  }
  34.1% {
    transform: translateX(-50%) translateY(0);
  }
  100% {
    transform: translateX(-50%) translateY(0);
  }
}
@keyframes fuwafuwa-stren2 {
  0%, 18.18% {
    transform: translateX(-50%) translateY(0);
  }
  35.23% {
    transform: translateX(-50%) translateY(-15px);
  }
  52.27% {
    transform: translateX(-50%) translateY(0);
  }
  100% {
    transform: translateX(-50%) translateY(0);
  }
}
@keyframes fuwafuwa-stren3 {
  0%, 36.36% {
    transform: translateX(-50%) translateY(0);
  }
  53.41% {
    transform: translateX(-50%) translateY(-15px);
  }
  70.45% {
    transform: translateX(-50%) translateY(0);
  }
  100% {
    transform: translateX(-50%) translateY(0);
  }
}
@keyframes fuwafuwa-stren4 {
  0%, 54.55% {
    transform: translateX(-50%) translateY(0);
  }
  71.59% {
    transform: translateX(-50%) translateY(-15px);
  }
  88.64% {
    transform: translateX(-50%) translateY(0);
  }
  100% {
    transform: translateX(-50%) translateY(0);
  }
}
.scr-fade-in {
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
  transform: translateY(20px);
}
.scr-fade-in.on {
  opacity: 1;
  transform: translateY(0);
}

@keyframes anm-fvfadein {
  0% {
    opacity: 0;
    transform: translateY(25px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.anm-fvfadein {
  opacity: 0;
  animation: anm-fvfadein 1.15s cubic-bezier(0, 0.55, 0.45, 1) normal forwards;
}

/* --------------------------------------------------
* header
*/
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: wrap;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 1.3020833333%;
  z-index: 100;
}
.site-header .head-logo {
  width: min(4.064171123%, 76px);
}
@media screen and (min-width: 751px) and (max-width: 1023px) {
  .site-header .head-logo {
    width: min(6%, 76px);
  }
}
.site-header .rgt-area {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: row;
  flex-wrap: wrap;
  flex: 1;
  max-width: 1365px;
}
@media screen and (min-width: 1024px) and (max-width: 1500px) {
  .site-header .rgt-area {
    max-width: 1165px;
  }
}
@media screen and (min-width: 751px) and (max-width: 1023px) {
  .site-header .rgt-area {
    max-width: 700px;
  }
}
.site-header .global-nav {
  width: 79.1208791209%;
  padding: 15px 2.4908424908%;
  margin-right: 0.7326007326%;
  background-color: var(--wht-color-2);
  border-radius: 39px;
}
@media screen and (min-width: 751px) and (max-width: 1023px) {
  .site-header .global-nav {
    display: none;
  }
}
.site-header .global-nav .menu-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: wrap;
}
.site-header .global-nav .menu-links li {
  color: var(--brw-color-3);
}
.site-header .global-nav .menu-links li .icon::before {
  content: "";
  display: inline-block;
  vertical-align: sub;
  width: 14px;
  height: 20px;
  margin-right: 5px;
  background: url("../img/common/icn_mmbr_brw.svg") no-repeat top center;
  background-size: cover;
}
@media screen and (min-width: 751px) and (max-width: 1023px) {
  .site-header .global-nav .menu-links li .icon::before {
    vertical-align: -2px;
    width: 10px;
    height: 14px;
  }
}
.site-header .login-btn {
  width: 9.8901098901%;
  margin-right: 0.7326007326%;
}
@media screen and (min-width: 751px) and (max-width: 1023px) {
  .site-header .login-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
  }
}
.site-header .login-btn a {
  display: block;
  padding: 14px 0 15px;
  text-align: center;
  color: var(--wht-color-2);
  background: linear-gradient(90deg, #E5F7CC 0%, #82C391 15%, #6FBA97 75%, #4CA27E 100%);
  border-radius: 30px;
}
@media screen and (min-width: 751px) and (max-width: 1023px) {
  .site-header .login-btn a {
    width: 100%;
    height: 100%;
    padding: 0;
    font-size: 0;
    border-radius: 50%;
  }
}
.site-header .login-btn span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 751px) and (max-width: 1023px) {
  .site-header .login-btn span {
    width: 100%;
    height: 100%;
  }
}
.site-header .login-btn span::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 23px;
  height: 25px;
  margin-right: 5px;
  background: url("../img/common/icn_login.svg") no-repeat top center;
  background-size: cover;
}
@media screen and (min-width: 751px) and (max-width: 1023px) {
  .site-header .login-btn span::before {
    width: 15px;
    height: 17px;
    margin-right: 0;
  }
}
.site-header .form-btn,
.site-header .menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
}
@media screen and (min-width: 751px) and (max-width: 1023px) {
  .site-header .form-btn,
  .site-header .menu-btn {
    width: 40px;
    height: 40px;
  }
}
.site-header .form-btn {
  margin-right: 0.7326007326%;
  border: 1px solid var(--brw-color-1);
  background-color: var(--wht-color-2);
}
@media screen and (min-width: 751px) and (max-width: 1023px) {
  .site-header .form-btn img {
    display: block;
    width: 70%;
    margin: 0 auto;
  }
}
.site-header .menu-btn {
  position: relative;
  border: 1px solid var(--brw-color-1);
  background-color: var(--brw-color-1);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
  z-index: 10002;
}
.site-header .menu-btn span {
  position: absolute;
  right: 50%;
  width: 28px;
  border-bottom: 3px solid var(--wht-color-2);
  border-radius: 20px;
  transform: translateX(50%);
  transition: all 0.18s ease-in-out;
}
@media screen and (min-width: 751px) and (max-width: 1023px) {
  .site-header .menu-btn span {
    width: 20px;
  }
}
.site-header .menu-btn span:nth-child(1) {
  top: 24px;
}
.site-header .menu-btn span:nth-child(2) {
  top: 35px;
}
@media screen and (min-width: 751px) and (max-width: 1023px) {
  .site-header .menu-btn span:nth-child(1) {
    top: 13px;
  }
  .site-header .menu-btn span:nth-child(2) {
    top: 21px;
  }
}
.site-header .nav-wrapper {
  position: fixed;
  top: 0;
  right: 0;
  width: min(19.53125%, 375px);
  height: 100vh;
  background-color: var(--wht-color-2);
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
  z-index: -1;
}
@media screen and (min-width: 751px) and (max-width: 1023px) {
  .site-header .nav-wrapper {
    width: min(50%, 375px);
  }
}
.site-header.is-active .menu-btn span {
  right: 40%;
}
.site-header.is-active .menu-btn span:nth-child(1) {
  top: 17px;
  transform: rotate(45deg) translateX(50%);
}
.site-header.is-active .menu-btn span:nth-child(2) {
  top: 37px;
  transform: rotate(-45deg) translateX(50%);
}
@media screen and (min-width: 751px) and (max-width: 1023px) {
  .site-header.is-active .menu-btn span:nth-child(1) {
    top: 10px;
  }
  .site-header.is-active .menu-btn span:nth-child(2) {
    top: 24px;
  }
}
.site-header.is-active .nav-wrapper {
  opacity: 1;
  visibility: visible;
  z-index: 1001;
}
.site-header .nav-inner {
  padding: 30px 5.3333333333% 60px;
}
.site-header .nav-inner .menu-links {
  margin-bottom: 40px;
}
.site-header .nav-inner .menu-links > li {
  border-bottom: 1px dashed var(--brw-color-2);
}
.site-header .nav-inner .menu-links > li > a {
  display: block;
  padding: 20px 0;
  letter-spacing: 0.04em;
  color: var(--brw-color-3);
}
.site-header .nav-inner .menu-links > li:first-of-type {
  position: relative;
  padding-left: 25px;
}
.site-header .nav-inner .menu-links > li:first-of-type::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 0;
  width: 14px;
  height: 20px;
  background: url("../img/common/icn_mmbr_brw.svg") no-repeat top center;
  background-size: cover;
}
.site-header .nav-inner .menu-links > li:first-of-type .btn-inner {
  margin-left: -25px;
}
.site-header .nav-inner .menu-links .btn-toggle {
  position: relative;
  display: block;
  padding: 20px 0;
  letter-spacing: 0.04em;
  cursor: pointer;
}
.site-header .nav-inner .menu-links .btn-toggle span::before, .site-header .nav-inner .menu-links .btn-toggle span::after {
  content: "";
  position: absolute;
  display: block;
  top: 30px;
  right: 10px;
  width: 20px;
  height: 2px;
  background-color: var(--brw-color-1);
  transition: all 0.5s ease;
}
.site-header .nav-inner .menu-links .btn-toggle span::after {
  transform: rotate(90deg);
}
.site-header .nav-inner .menu-links .btn-toggle.open span::after {
  transform: rotate(0deg);
}
.site-header .nav-inner .menu-links .btn-inner {
  position: relative;
  display: none;
  margin-top: 20px;
}
.site-header .nav-inner .menu-links .btn-inner li:not(:last-of-type) {
  margin-bottom: 15px;
}
.site-header .nav-inner .menu-links .btn-inner li a {
  display: block;
  letter-spacing: 0.04em;
  color: var(--brw-color-3);
}
.site-header .inner-ttl {
  margin-bottom: 45px;
  font-size: clamp(29px, 23.2857142857px + 0.5580357143vw, 34px);
  letter-spacing: 0.04em;
}
.site-header .sns-btn-area .btn-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
}
.site-header .sns-btn-area .btn-inner li:not(:last-of-type) {
  margin-right: 4.4776119403%;
}
.site-header .sns-btn-area .btn-inner li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: var(--brw-color-1);
  border-radius: 50%;
}
.site-header .sns-btn-area .btn-inner li:first-of-type img {
  max-width: 27px;
}
.site-header .sns-btn-area .btn-inner li:nth-of-type(2) img {
  max-width: 26px;
}
.site-header .sns-btn-area .btn-inner li:last-of-type img {
  max-width: 39px;
}
.site-header .fixbtn-area {
  position: fixed;
  bottom: 20px;
  right: 0;
  z-index: 100;
}
.site-header .fixbtn-area:hover .illust img:first-of-type {
  opacity: 0;
}
.site-header .fixbtn-area:hover .illust img:last-of-type {
  opacity: 1;
}
.site-header .fixbtn-area .illust {
  position: relative;
}
.site-header .fixbtn-area .illust img {
  position: absolute;
  transition: all 0.3s ease;
  z-index: 5;
}
.site-header .fixbtn-area .illust img:first-of-type {
  top: -53px;
  left: -8px;
  width: 73px;
}
.site-header .fixbtn-area .illust img:last-of-type {
  top: -53px;
  left: -8px;
  width: 70px;
  opacity: 0;
}
.site-header .fixbtn-area li {
  width: 75px;
  height: 229px;
}
@media screen and (min-width: 751px) and (max-width: 1023px) {
  .site-header .fixbtn-area li {
    width: 50px;
    height: 179px;
  }
}
.site-header .fixbtn-area li:not(:last-of-type) {
  margin-bottom: 13px;
}
.site-header .fixbtn-area li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  line-height: 1.5;
  text-align: center;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  color: var(--wht-color-2);
  border-radius: 30px 0 0 30px;
}
.site-header .fixbtn-area li .arrow {
  position: relative;
}
.site-header .fixbtn-area li .arrow::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 0;
  height: 0;
  margin-top: 5px;
  border: solid 6px transparent;
  border-left: solid 9px var(--wht-color-2);
  transform: rotate(0deg);
  transition: all 0.5s ease;
}
.site-header .fixbtn-area li:first-of-type a {
  background: linear-gradient(0deg, #E5F7CC 0%, #82C391 15%, #6FBA97 75%, #4CA27E 100%);
}
.site-header .fixbtn-area li:last-of-type a {
  background-color: var(--brw-color-1);
}

/* --------------------------------------------------
* footer
*/
.site-footer {
  background: url("../img/common/ftr_bg.webp") no-repeat top center;
  background-size: cover;
}
.site-footer .upr-area {
  width: 88.0208333333%;
  padding: 0 0 40px;
  margin: 0 auto 40px;
  background-image: linear-gradient(to right, var(--wht-color-2) 3px, transparent 3px);
  background-size: 6px 1px;
  background-position: left bottom;
  background-repeat: repeat-x;
}
.site-footer .upr-area .wrap {
  position: relative;
  width: 71.0059171598%;
  padding-top: 110px;
}
@media screen and (min-width: 751px) and (max-width: 1023px) {
  .site-footer .upr-area .wrap {
    width: 100%;
  }
}
.site-footer .upr-area .illust {
  position: absolute;
  top: -43px;
  right: -110px;
  width: 111px;
}
@media screen and (min-width: 751px) and (max-width: 1023px) {
  .site-footer .upr-area .illust {
    right: 0;
    width: 81px;
  }
}
.site-footer .upr-area .global-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0 7.5%;
}
@media screen and (min-width: 751px) and (max-width: 1023px) {
  .site-footer .upr-area .global-nav {
    gap: 0 2%;
  }
}
.site-footer .upr-area .menu-links dt {
  display: inline-block;
  margin-bottom: 15px;
  letter-spacing: 0.04em;
  color: var(--wht-color-2);
  border-bottom: 1px dashed var(--wht-color-2);
}
.site-footer .upr-area .menu-links dt .icon::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 14px;
  height: 20px;
  margin-right: 10px;
  background: url("../img/common/icn_mmbr_wht.svg") no-repeat top center;
  background-size: cover;
}
@media screen and (min-width: 751px) and (max-width: 1023px) {
  .site-footer .upr-area .menu-links dt .icon::before {
    vertical-align: -2px;
    width: 10px;
    height: 14px;
    margin-right: 5px;
  }
}
.site-footer .upr-area .menu-links dd a {
  letter-spacing: 0.04em;
  color: var(--wht-color-2);
}
@media screen and (min-width: 751px) and (max-width: 1023px) {
  .site-footer .upr-area .menu-links dd a {
    letter-spacing: 0;
  }
}
.site-footer .upr-area .menu-links dd:not(:last-of-type) {
  margin-bottom: 15px;
}
.site-footer .upr-area .menu-links li a {
  display: block;
  padding: 15px 0;
  text-align: center;
  letter-spacing: 0.04em;
  color: var(--grn-color-1);
  background-color: var(--wht-color-2);
  border-radius: 30px;
}
@media screen and (min-width: 751px) and (max-width: 1023px) {
  .site-footer .upr-area .menu-links li a {
    padding: 8px 0;
    letter-spacing: -0.02em;
  }
}
.site-footer .upr-area .menu-links li:not(:last-of-type) {
  margin-bottom: 15px;
}
.site-footer .lwr-area {
  margin-bottom: 65px;
}
.site-footer .lwr-area .wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: wrap;
}
.site-footer .lwr-area .lft-area {
  flex: 1;
}
.site-footer .lwr-area .rgt-area {
  width: 33.3333333333%;
}
@media screen and (min-width: 751px) and (max-width: 1023px) {
  .site-footer .lwr-area .rgt-area {
    width: 40%;
  }
}
.site-footer .lwr-area .logo {
  max-width: 370px;
  margin-bottom: 25px;
}
.site-footer .lwr-area .access {
  margin-bottom: 5px;
  letter-spacing: 0.04em;
  color: var(--wht-color-2);
}
.site-footer .lwr-area .txt-blk {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
  letter-spacing: 0.04em;
  color: var(--wht-color-2);
}
.site-footer .lwr-area .tel {
  margin-right: 20px;
}
.site-footer .lwr-area .sns-btn-area {
  margin-bottom: 25px;
  text-align: right;
}
.site-footer .lwr-area .btn-inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: row;
  flex-wrap: wrap;
}
.site-footer .lwr-area .btn-inner li:not(:first-of-type) {
  margin-left: 3.75%;
}
.site-footer .lwr-area .btn-inner li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: var(--wht-color-2);
  border-radius: 50%;
}
.site-footer .lwr-area .btn-inner li:first-of-type img {
  max-width: 27px;
}
.site-footer .lwr-area .btn-inner li:nth-of-type(2) img {
  max-width: 26px;
}
.site-footer .lwr-area .btn-inner li:last-of-type img {
  max-width: 39px;
}
.site-footer .lwr-area .menu-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: row;
  flex-wrap: wrap;
}
.site-footer .lwr-area .menu-links li {
  margin-bottom: 10px;
}
.site-footer .lwr-area .menu-links li:not(:first-of-type) {
  margin-left: 35px;
}
.site-footer .lwr-area .menu-links li a {
  letter-spacing: 0.04em;
  color: var(--wht-color-2);
}
.site-footer .copylight {
  padding-bottom: 10px;
  text-align: center;
  letter-spacing: 0.04em;
  color: var(--wht-color-2);
}

/* --------------------------------------------------
* lower
*/
.low-page .page-mv {
  margin-bottom: 140px;
  background: url("../img/common/low_fv_bg.webp") no-repeat bottom center;
  background-size: cover;
  overflow: hidden;
}
@media screen and (min-width: 751px) and (max-width: 1023px) {
  .low-page .page-mv {
    margin-bottom: 90px;
  }
}
.low-page .page-mv .wrap {
  position: relative;
  padding: 195px 0 130px;
}
@media screen and (min-width: 751px) and (max-width: 1023px) {
  .low-page .page-mv .wrap {
    padding: 145px 0 90px;
  }
}
.low-page .page-mv .ttl-area {
  position: relative;
  z-index: 10;
}
.low-page .page-mv .page-ttl {
  margin-bottom: 65px;
  letter-spacing: 0.04em;
  color: var(--wht-color-2);
  text-align: left;
}
@media screen and (min-width: 751px) and (max-width: 1023px) {
  .low-page .page-mv .page-ttl {
    margin-bottom: 35px;
  }
}
.low-page .page-mv .breadcrumb {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
}
.low-page .page-mv .breadcrumb li {
  letter-spacing: 0.04em;
  color: var(--wht-color-2);
}
.low-page .page-mv .breadcrumb li:not(:first-child)::before {
  content: "";
  display: inline-block;
  margin: 0 12px 0 15px;
  width: 6px;
  height: 9px;
  background: url("../img/common/line_breadcrumb.svg") no-repeat top center;
  background-size: cover;
}
.low-page .page-mv .breadcrumb li a {
  color: var(--wht-color-2);
}
.low-page .page-mv .illust {
  position: absolute;
  top: 190px;
  right: -6.9298245614%;
  width: 7.8070175439%;
  z-index: 5;
}
@media screen and (min-width: 751px) and (max-width: 1023px) {
  .low-page .page-mv .illust {
    top: 140px;
    right: 7%;
  }
}
.low-page .page-mv .bg {
  position: absolute;
  top: 105px;
  right: -31.5789473684%;
  width: 60.701754386%;
  z-index: 1;
}
@media screen and (min-width: 751px) and (max-width: 1023px) {
  .low-page .page-mv .bg {
    top: 105px;
    right: -10%;
    width: 45%;
  }
}
.low-page .search-form {
  display: flex;
  align-items: center;
  width: 340px;
  margin-bottom: 120px;
  margin-left: auto;
  border: 1px solid var(--beg-color-2);
  border-radius: 10px;
}
.low-page .search-form input {
  width: 280px;
  padding: 20px;
  background-color: var(--wht-color-2);
  border-radius: 10px 0 0 10px;
  border: none;
  outline: none;
  color: var(--font-color);
  letter-spacing: 0.04em;
}
.low-page .search-form input::placeholder {
  color: var(--link-color);
  opacity: 0.5;
}
.low-page .search-form button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: var(--brw-color-1);
  border-radius: 0 10px 10px 0;
  border: none;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.low-page .search-form button img {
  width: 18.5px;
  height: 18.5px;
  object-fit: contain;
}
.low-page .search-form button:hover {
  opacity: 0.8;
}

#notfound .entry-content {
  margin-bottom: 180px;
}
#notfound .entry-content > p {
  text-align: center;
}

/* --------------------------------------------------
* backnumber
*/
.backnumber .illust,
.other_issue .illust {
  position: relative;
}
.backnumber .illust::after,
.other_issue .illust::after {
  content: "";
  position: absolute;
  top: -66px;
  right: -55px;
  z-index: 2;
  background-image: url(/assets/img/common/backnumber/backnumber-fairy.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 75px;
  height: 78px;
}
.backnumber .backnumber-swiper,
.other_issue .backnumber-swiper {
  position: relative;
  overflow-y: visible;
  overflow-x: clip;
  margin-bottom: 100px;
}
.backnumber .backnumber-swiper .swiper-wrapper,
.other_issue .backnumber-swiper .swiper-wrapper {
  margin-bottom: 100px;
}
.backnumber .backnumber-swiper .swiper-wrapper .swiper-slide,
.other_issue .backnumber-swiper .swiper-wrapper .swiper-slide {
  width: 317px;
}
.backnumber .backnumber-swiper .swiper-wrapper .swiper-slide:nth-child(1) .thumbnail,
.other_issue .backnumber-swiper .swiper-wrapper .swiper-slide:nth-child(1) .thumbnail {
  background: rgba(133, 203, 227, 0.7);
}
.backnumber .backnumber-swiper .swiper-wrapper .swiper-slide:nth-child(2) .thumbnail,
.other_issue .backnumber-swiper .swiper-wrapper .swiper-slide:nth-child(2) .thumbnail {
  background: rgba(235, 183, 98, 0.7);
}
.backnumber .backnumber-swiper .swiper-wrapper .swiper-slide:nth-child(3) .thumbnail,
.other_issue .backnumber-swiper .swiper-wrapper .swiper-slide:nth-child(3) .thumbnail {
  background: rgba(124, 177, 132, 0.7);
}
.backnumber .backnumber-swiper .swiper-wrapper .swiper-slide:nth-child(4) .thumbnail,
.other_issue .backnumber-swiper .swiper-wrapper .swiper-slide:nth-child(4) .thumbnail {
  background: rgba(239, 145, 98, 0.7);
}
.backnumber .backnumber-swiper .swiper-wrapper .swiper-slide:nth-child(5) .thumbnail,
.other_issue .backnumber-swiper .swiper-wrapper .swiper-slide:nth-child(5) .thumbnail {
  background: rgba(152, 137, 126, 0.7);
}
.backnumber .backnumber-swiper .swiper-wrapper .swiper-slide:nth-child(6) .thumbnail,
.other_issue .backnumber-swiper .swiper-wrapper .swiper-slide:nth-child(6) .thumbnail {
  background: rgba(86, 124, 178, 0.7);
}
.backnumber .backnumber-swiper .swiper-wrapper .swiper-slide:nth-child(7) .thumbnail,
.other_issue .backnumber-swiper .swiper-wrapper .swiper-slide:nth-child(7) .thumbnail {
  background: rgba(224, 99, 107, 0.7);
}
.backnumber .backnumber-swiper .swiper-wrapper .swiper-slide .slide-info p.date,
.other_issue .backnumber-swiper .swiper-wrapper .swiper-slide .slide-info p.date {
  margin-bottom: 10px;
  letter-spacing: 0.04em;
  font-weight: var(--font-weight-regular);
}
.backnumber .backnumber-swiper .swiper-wrapper .swiper-slide .slide-info p.feature,
.other_issue .backnumber-swiper .swiper-wrapper .swiper-slide .slide-info p.feature {
  letter-spacing: 0.04em;
  line-height: 1.6;
}
.backnumber .backnumber-swiper .thumbnail,
.other_issue .backnumber-swiper .thumbnail {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
  padding-block: 38px;
  margin-bottom: 15px;
  border-radius: 20px;
}
.backnumber .backnumber-swiper .thumbnail img,
.other_issue .backnumber-swiper .thumbnail img {
  display: block;
  width: 165px;
  box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.16);
}
.backnumber .backnumber-swiper .swiper-buttons,
.other_issue .backnumber-swiper .swiper-buttons {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1134px;
  height: 280px;
  z-index: 1;
  pointer-events: none;
}
.backnumber .backnumber-swiper .swiper-buttons .swiper-button-prev,
.backnumber .backnumber-swiper .swiper-buttons .swiper-button-next,
.other_issue .backnumber-swiper .swiper-buttons .swiper-button-prev,
.other_issue .backnumber-swiper .swiper-buttons .swiper-button-next {
  pointer-events: auto;
  width: 60px;
  height: 60px;
}
.backnumber .backnumber-swiper .swiper-buttons .swiper-button-prev::after,
.backnumber .backnumber-swiper .swiper-buttons .swiper-button-next::after,
.other_issue .backnumber-swiper .swiper-buttons .swiper-button-prev::after,
.other_issue .backnumber-swiper .swiper-buttons .swiper-button-next::after {
  display: none;
}
.backnumber .backnumber-swiper .swiper-buttons .swiper-button-prev img,
.backnumber .backnumber-swiper .swiper-buttons .swiper-button-next img,
.other_issue .backnumber-swiper .swiper-buttons .swiper-button-prev img,
.other_issue .backnumber-swiper .swiper-buttons .swiper-button-next img {
  width: 100%;
  height: 100%;
}

/* --------------------------------------------------
* bonus
*/
section#bonus {
  margin-bottom: 190px;
  text-align: center;
}
section#bonus h2 {
  margin-bottom: 80px;
  font-weight: var(--font-weight-medium);
  letter-spacing: 0.04em;
}
section#bonus h2 span.underline-trigger {
  display: inline;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  padding-bottom: 30px;
  background-image: radial-gradient(ellipse 40% 30% at 30% 50%, rgba(216, 244, 186, 0.7) 0%, transparent 100%), radial-gradient(ellipse 40% 30% at 60% 50%, rgba(153, 219, 174, 0.7) 0%, transparent 100%);
  background-size: 0% 50px;
  background-position: left calc(100% - 10px);
  background-repeat: no-repeat;
  transition: background-size 1s ease;
}
section#bonus h2 span.underline-trigger.on {
  background-size: 100% 50px;
}
section#bonus > p {
  letter-spacing: 0.04em;
  line-height: 1.8;
  margin-bottom: 60px;
}
section#bonus ul {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 60px;
}
section#bonus ul li {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 280px;
  height: 280px;
  background-color: var(--wht-color-2);
  border-radius: 50%;
  aspect-ratio: 1;
}
@media screen and (min-width: 751px) and (max-width: 1023px) {
  section#bonus ul li {
    width: 26.0416666667vw;
    height: 26.0416666667vw;
  }
}
section#bonus ul li img.number {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 67.03px;
}
section#bonus ul li img.icon {
  z-index: 3;
  object-fit: contain;
}
section#bonus ul li:nth-child(1) img.icon {
  width: 92.91px;
}
section#bonus ul li:nth-child(2) img.icon {
  width: 87.37px;
}
section#bonus ul li:nth-child(3) img.icon {
  width: 87.1px;
}
section#bonus ul li p {
  margin-top: 20px;
  line-height: 28px;
  letter-spacing: 0.1em;
  color: var(--font-color);
}
section#bonus .link_btn {
  display: flex;
  justify-content: center;
}
section#bonus .link_btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 301px;
  padding: 22px 30px;
  background-color: var(--brw-color-1);
  border: 2px solid var(--brw-color-1);
  border-radius: 50px;
  color: var(--wht-color-2);
  font-weight: var(--font-weight-medium);
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}
@media screen and (max-width: 750px) {
  section#bonus .link_btn a {
    width: 74.6666666667vw;
    padding: 5.8666666667vw 8vw;
    font-size: 4.2666666667vw;
  }
}
section#bonus .link_btn a .lnk_btn_object {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 24.45px;
  height: 24.3px;
}
@media screen and (max-width: 750px) {
  section#bonus .link_btn a .lnk_btn_object {
    right: 5.3333333333vw;
    width: 6.4vw;
    height: 6.4vw;
  }
}
section#bonus .link_btn a .lnk_btn_object img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.3s ease;
}
section#bonus .link_btn a .lnk_btn_object__hover {
  opacity: 0;
}
section#bonus .link_btn a:hover {
  background-color: transparent;
  color: var(--brw-color-1);
}
section#bonus .link_btn a:hover .lnk_btn_object__normal {
  opacity: 0;
}
section#bonus .link_btn a:hover .lnk_btn_object__hover {
  opacity: 1;
}

/* --------------------------------------------------
* banner_area
*/
section#banner_area {
  margin-bottom: 190px;
}
section#banner_area ul {
  display: flex;
  justify-content: center;
  gap: 30px;
}
@media screen and (min-width: 751px) and (max-width: 1023px) {
  section#banner_area ul {
    flex-direction: column;
    padding-inline: 14%;
  }
}
section#banner_area ul li {
  flex: 1;
  max-width: 526px;
}
section#banner_area ul li a {
  position: relative;
  display: flex;
  align-items: center;
  border-radius: 20px;
  overflow: hidden;
}
section#banner_area ul li a img {
  width: 163px;
  object-fit: contain;
}
section#banner_area ul li a p {
  flex: 1;
  text-align: center;
  padding-right: 1.5625vw;
  font-size: clamp(19px, 13.2857142857px + 0.5580357143vw, 24px);
  font-weight: var(--font-weight-medium);
  letter-spacing: 0.1em;
  line-height: 2;
}
section#banner_area ul li a svg.banner_area_arrow {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 52px;
  height: 52px;
}
section#banner_area ul li:first-child {
  position: relative;
  overflow: visible;
}
section#banner_area ul li:first-child::before {
  content: "";
  position: absolute;
  top: -70px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  width: 80px;
  height: 80px;
  background-image: url(/assets/img/about/button_area_fairy.webp);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
}
section#banner_area ul li:first-child a {
  background-color: var(--brw-color-1);
  color: var(--wht-color-2);
}
section#banner_area ul li:nth-child(2) a {
  background-color: var(--beg-color-2);
  color: var(--font-color);
}/*# sourceMappingURL=common.css.map */