@charset "UTF-8";
.eachTextAnime {
  opacity: 0;
  visibility: hidden;
}

.eachTextAnime.is-split-ready {
  opacity: 1;
  visibility: visible;
}

.eachTextAnime span {
  opacity: 0;
}

.eachTextAnime.appeartext span {
  animation: text_anime_on 1s ease-out forwards;
}

@keyframes text_anime_on {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* 上から */
.fadeDownTrigger {
  animation-name: fadeDownAnime;
  animation-duration: 0.6s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeDownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* 左から */
.fadeLeftTrigger {
  animation-name: fadeLeftAnime;
  animation-duration: 0.6s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* 右から */
.fadeRightTrigger {
  animation-name: fadeRightAnime;
  animation-duration: 0.6s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* その場で */
.fadeInTrigger {
  opacity: 0;
}
.fadeInTrigger.fadeIn {
  opacity: 0;
  animation-name: fadeInAnime;
  animation-duration: 0.6s;
  animation-fill-mode: forwards;
}
.fadeInTrigger.delay1000 {
  animation-delay: 1s;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* 下から */
.fadeUpTrigger {
  opacity: 0;
}
.fadeUpTrigger.fadeUp {
  opacity: 0;
  animation-name: fadeUpAnime;
  animation-duration: 0.6s;
  animation-fill-mode: forwards;
}
.fadeUpTrigger.delay1000 {
  animation-delay: 1s;
}
.fadeUpTrigger.delay500 {
  animation-delay: 0.5s;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* || GENERAL STYLES */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
  font-size: 10px !important;
}
html:focus-within {
  scroll-behavior: smooth;
}
@media screen and (max-width: 768px) {
  html {
    font-size: 10px !important;
  }
}

a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
main,
mark,
menu,
nav,
object,
ol,
output,
pre,
q,
ruby,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
tt,
u,
ul,
var,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

strong,
b {
  font-weight: 700;
}

p {
  margin-top: 0;
  margin-bottom: 0rem;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section {
  display: block;
}

body {
  min-height: 100vh;
  font-family: "Zen Kaku Gothic Antique";
  font-size: 1.5rem;
  line-height: 1.4666666667;
  font-weight: 400;
  color: #333333;
  text-rendering: optimizeSpeed;
  background-color: #FFFAFF;
}

menu,
ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: none;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

a {
  color: inherit;
  text-decoration: none;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
textarea,
select {
  width: 100%;
  padding: 1rem;
  background: #fff;
  color: #666463;
  border: none;
}
input::placeholder,
textarea::placeholder,
select::placeholder {
  color: black;
}

input,
button,
textarea,
select {
  font: inherit;
}

input[type=checkbox],
input[type=radio] {
  width: auto;
  margin: 0;
  vertical-align: middle;
  accent-color: #000000;
}

/* || UTILITIES */
.container {
  width: 100%;
  max-width: calc(128rem - 0rem);
  margin-right: auto;
  margin-left: auto;
  --bs-gutter-container-x: 6rem;
  --bs-gutter-container-m-x: 6rem;
  padding-right: calc(0.5 * var(--bs-gutter-container-x));
  padding-left: calc(0.5 * var(--bs-gutter-container-x));
}
@media screen and (max-width: 991.98px) {
  .container {
    max-width: calc(128rem - 0rem);
    padding-right: calc(0.5 * var(--bs-gutter-container-x));
    padding-left: calc(0.5 * var(--bs-gutter-container-x));
  }
}
@media screen and (max-width: 575.98px) {
  .container {
    max-width: 100%;
    padding-right: calc(0.5 * var(--bs-gutter-container-m-x));
    padding-left: calc(0.5 * var(--bs-gutter-container-m-x));
  }
}

.container-smaller {
  width: 100%;
  max-width: calc(128rem - 0rem);
  margin-right: auto;
  margin-left: auto;
  --bs-gutter-container-x: 6rem;
  --bs-gutter-container-m-x: 6rem;
  padding-right: calc(0.5 * var(--bs-gutter-container-x));
  padding-left: calc(0.5 * var(--bs-gutter-container-x));
}
@media screen and (max-width: 991.98px) {
  .container-smaller {
    max-width: calc(128rem - 0rem);
    padding-right: calc(0.5 * var(--bs-gutter-container-x));
    padding-left: calc(0.5 * var(--bs-gutter-container-x));
  }
}
@media screen and (max-width: 575.98px) {
  .container-smaller {
    max-width: 100%;
    padding-right: calc(0.5 * var(--bs-gutter-container-m-x));
    padding-left: calc(0.5 * var(--bs-gutter-container-m-x));
  }
}

/*--------------------------------------------------------------
//Components*/
#loader-container {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 99999;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: #fff;
}

#loader-container .loader {
  display: grid;
  position: absolute;
  top: 50%;
  left: 50%;
  place-items: center;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
}

#loader-container .loader__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

#loader-container .loader__logo > span {
  -webkit-animation: bounce-loader 0.6s infinite alternate;
  animation: bounce-loader 0.6s infinite alternate;
  margin: 0 0.5rem;
  border-radius: 50%;
  background: #FCC800;
  width: 1.2rem;
  height: 1.2rem;
}

#loader-container .loader__logo > span:nth-child(2) {
  -webkit-animation-delay: 0.15s;
  animation-delay: 0.15s;
}

#loader-container .loader__logo > span:nth-child(3) {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

#loader-container .loader__logo > span:last-child {
  -webkit-animation-delay: 0.45s;
  animation-delay: 0.45s;
}

#loader-container .loader__progress {
  display: none;
  position: relative;
  width: 100%;
}

#loader-container .loader__progress #progress-percent {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-size: 1.6rem;
  text-align: center;
}

@-webkit-keyframes fade {
  to {
    -webkit-transform: scale(2);
    transform: scale(2);
    opacity: 0;
  }
}
@keyframes fade {
  to {
    -webkit-transform: scale(2);
    transform: scale(2);
    opacity: 0;
  }
}
@-webkit-keyframes bounce-loader {
  to {
    -webkit-transform: translateY(-1rem);
    transform: translateY(-1rem);
    opacity: 0.1;
  }
}
@keyframes bounce-loader {
  to {
    -webkit-transform: translateY(-1rem);
    transform: translateY(-1rem);
    opacity: 0.1;
  }
}
.section-404 {
  padding: 0 0 3rem;
}
.section-404 .svg {
  width: 100%;
}
.section-404 .svg__character {
  fill: #FCC800;
}
.section-404 .svg__line {
  fill: none;
  stroke: #FCC800;
  stroke-dasharray: 6;
  stroke-width: 1;
  stroke-linejoin: round;
}
.section-404 .svg__dot {
  fill: #FCC800;
}
.section-404 .svg__plane {
  transform: translate(-6px, -11px) rotate(25deg);
  fill: #FCC800;
  opacity: 0;
}
.section-404 .svg__mask {
  fill: none;
  stroke: white;
  stroke-width: 10;
  stroke-dasharray: 480;
  stroke-dashoffset: 480;
}
.section-404 .btn {
  width: 100%;
  max-width: 30rem;
  padding: 1rem 0;
  background: #FCC800;
  color: #fff;
  margin: 0 auto;
}
.section-404 .btn:hover {
  opacity: 0.7;
  cursor: pointer;
}

/*--------------------------------------------------------------
# Layout
--------------------------------------------------------------*/
@media (min-width: 960px) {
  .-series-right .w-header {
    margin-left: 0px;
  }
}
@media (min-width: 960px) {
  .-series .l-header__logo {
    margin-right: 0;
  }
}
@media not all and (min-width: 960px) {
  .-img .c-headLogo__link {
    padding: 0;
  }
}
.c-headLogo__link:hover {
  opacity: 0.7;
}

.-series .l-header__logo {
  padding: 0 !important;
}
.l-header__menuBtn.sp_ {
  margin-right: 0;
}
@media (max-width: 600px) {
  .l-header__menuBtn.sp_ {
    margin-right: 0;
  }
}
.l-header__menuBtn.sp_ i {
  font-size: 26px;
  color: #DC6B8E;
  font-weight: 700;
}

.l-header {
  z-index: 1111;
}

#header {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 99;
  background-color: #FFFAFF;
  transition: transform 0.3s ease;
}
#header .l-header__inner.l-container {
  max-width: 1200px;
}
@media (max-width: 1230px) {
  #header .l-header__inner.l-container {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (max-width: 959.98px) {
  #header .l-header__inner.l-container {
    padding: 15px;
  }
}
#header.custom-box-shadow {
  box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.19);
  -webkit-box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.19);
  -moz-box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.19);
}

.c-gnav {
  gap: 40px;
}
@media (max-width: 1050px) {
  .c-gnav {
    gap: 10px;
  }
}
.c-gnav .menu-item {
  position: relative;
  margin-left: 1rem;
}
.c-gnav .menu-item::before {
  content: "";
  height: 7px;
  width: 7px;
  background-color: #DDD7CB;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: -1.2rem;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}
.c-gnav .menu-item:after {
  display: none;
}
.c-gnav .menu-item a {
  padding: 0;
}
.c-gnav .menu-item a span {
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  color: #333 !important;
  font-family: "Zen Kaku Gothic Antique";
  letter-spacing: 0.15rem;
}
.c-gnav .menu-item a:after {
  height: 1px;
  bottom: 19px;
  background: #EF857D !important;
}
.c-gnav .menu-item .sub-menu {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 14px;
  top: 87%;
  width: 100%;
  background-color: #fff;
  padding: 19px 39px 18px 40px;
  min-width: fit-content;
  transform: translateX(-50%);
  min-width: 136px;
  transition: none;
}
.c-gnav .menu-item .sub-menu li a {
  white-space: nowrap;
  font-size: 14px !important;
  line-height: 20px;
  font-weight: 400;
  line-height: 1;
  color: #333 !important;
  font-family: "Zen Kaku Gothic Antique";
  text-align: center;
  margin: 0 auto;
  border-bottom: 2px solid transparent;
}
.c-gnav .menu-item .sub-menu li a .ttl {
  font-size: 14px !important;
  line-height: 19px;
}
.c-gnav .menu-item .sub-menu li a:hover {
  background-color: transparent;
}
.c-gnav .menu-item .sub-menu li a:hover .ttl {
  left: 0;
}
.c-gnav .menu-item .sub-menu li a::before {
  display: none;
}
.c-gnav .menu-item.menu-item-has-children .sub-menu.show {
  opacity: 1;
  visibility: visible;
}
.c-gnav .menu-item.current_page_item a .ttl, .c-gnav .menu-item.current_page_parent a .ttl, .c-gnav .menu-item:hover a .ttl {
  color: #EF857D !important;
  font-weight: bold;
}
.c-gnav .menu-item.current_page_item::before, .c-gnav .menu-item.current_page_parent::before, .c-gnav .menu-item:hover::before {
  background-color: #EF857D;
}

.w-header__inner {
  margin-left: 40px;
}
.w-header__inner .btn-header {
  display: flex;
  min-width: 164px;
  padding: 0.8rem 2.5rem;
  background: #EF857D;
  border-radius: 18px;
  width: fit-content;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}
.w-header__inner .btn-header span {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.25;
  color: #fff !important;
  font-family: "Zen Kaku Gothic Antique";
}
.w-header__inner .btn-header img {
  width: 16px;
  height: 13px;
  object-fit: contain;
}
.w-header__inner .btn-header:hover {
  opacity: 0.7;
}

#sp_menu {
  z-index: 1112;
}
#sp_menu .p-spMenu__body .c-widget__title.-spmenu {
  background: transparent;
}
#sp_menu .p-spMenu__body .p-spMenu__nav .c-listMenu .menu-item a {
  font-size: 17px;
  font-weight: 400;
  line-height: 1;
  color: #EF857D !important;
  font-family: "Zen Old Mincho";
}
#sp_menu .p-spMenu__body .p-spMenu__nav .c-listMenu ul.sub-menu {
  display: block;
}
#sp_menu .p-spMenu__body .p-spMenu__nav .c-listMenu ul.sub-menu.show {
  display: none;
}
#sp_menu #sp_menu_bottom {
  margin-top: 1rem !important;
}
#sp_menu #sp_menu_bottom .btn-header {
  display: flex;
  min-width: 164px;
  padding: 0.8rem 2.5rem;
  background: #EF857D;
  border-radius: 18px;
  width: fit-content;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}
#sp_menu #sp_menu_bottom .btn-header span {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.25;
  color: #fff !important;
  font-family: "Zen Kaku Gothic Antique";
}
#sp_menu #sp_menu_bottom .btn-header img {
  width: 16px;
  height: 13px;
  object-fit: contain;
}
#sp_menu #sp_menu_bottom .btn-header:hover {
  opacity: 0.7;
}

@media (min-width: 960px) {
  .-series .l-header__logo {
    padding: 2rem 0 !important;
  }
}
.p-spMenu__closeBtn .-menuBtn.c-plainBtn i {
  color: #EF857D;
  font-size: 28px;
  transform: translate(-20px, 20px);
}

.l-header__spNav {
  display: none;
}

#header.z-index-1 {
  z-index: 1;
}

header.is-hide {
  transform: translateY(-400%);
}

.p-fixBtnWrap {
  bottom: 6.25em;
}
.p-fixBtnWrap.z-index-0 {
  z-index: 0;
}
.p-fixBtnWrap .c-fixBtn {
  background-color: #fff;
  color: #ef857d;
  border-color: #ef857d;
}
.p-fixBtnWrap .c-fixBtn:hover {
  background-color: #ef857d !important;
  color: #fff !important;
  border-color: #fff !important;
}

.w-beforeFooter {
  margin: 0;
}

#before_footer_widget .l-container {
  padding: 0 !important;
}
#before_footer_widget .before-footer {
  background: linear-gradient(rgba(239, 133, 125, 0.8), rgba(239, 133, 125, 0.8)), url("../../assets/img/cmn/before-footer-bg.jpg") no-repeat 18% bottom;
  background-size: cover;
  padding: 10rem 0 15rem;
}
@media (max-width: 600px) {
  #before_footer_widget .before-footer {
    padding: 5rem 0 10rem;
  }
}
#before_footer_widget .before-footer .items {
  max-width: 110rem;
  margin: 0 auto;
}
@media (max-width: 1130px) {
  #before_footer_widget .before-footer .items {
    padding: 0 15px;
  }
}
#before_footer_widget .before-footer .items .item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13.2rem;
}
@media (max-width: 900px) {
  #before_footer_widget .before-footer .items .item {
    gap: 5rem;
  }
}
@media (max-width: 800px) {
  #before_footer_widget .before-footer .items .item {
    flex-direction: column;
  }
}
#before_footer_widget .before-footer .items .item .p-title-heart-red {
  position: relative;
  font-size: 2rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.2rem;
}
#before_footer_widget .before-footer .items .item .p-title-heart-red::before {
  content: "";
  background: url(../../assets/img/cmn/heart-red.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  height: 7.6rem;
  width: 9.6rem;
  position: absolute;
  top: 50%;
  left: -2.25rem;
  z-index: -1;
  transform: translateY(-46%);
}
@media (max-width: 350px) {
  #before_footer_widget .before-footer .items .item .p-title-heart-red::before {
    left: -1rem;
  }
}
#before_footer_widget .before-footer .items .item .box-content {
  min-width: 44.6rem;
  background-color: #fff;
  padding: 3rem;
  border-radius: 3rem;
}
@media (max-width: 900px) {
  #before_footer_widget .before-footer .items .item .box-content {
    min-width: 35rem;
  }
}
@media (max-width: 600px) {
  #before_footer_widget .before-footer .items .item .box-content {
    min-width: 100%;
  }
}
@media (max-width: 500px) {
  #before_footer_widget .before-footer .items .item .box-content {
    padding: 2rem 1rem !important;
    border-radius: 1rem;
  }
}
#before_footer_widget .before-footer .items .item .box-content ul li {
  margin-bottom: 1rem;
  list-style: none;
  line-height: 1.86;
  letter-spacing: 0.45px;
  font-size: 15px;
  font-weight: 400;
}
#before_footer_widget .before-footer .items .item .box-content .t-right {
  text-align: right;
  line-height: 1.86;
  letter-spacing: 0.45px;
  font-size: 15px;
  font-weight: 400;
}
#before_footer_widget .before-footer .items .item .box-content .btn-phone {
  background-color: #ef857d;
  border-radius: 8rem;
  margin: 3rem auto 0;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  width: fit-content;
  max-width: none;
  min-width: 25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 2.5rem;
  letter-spacing: 2px;
  transition: all 0.3s ease;
}
@media (max-width: 300px) {
  #before_footer_widget .before-footer .items .item .box-content .btn-phone {
    width: 100%;
  }
}
#before_footer_widget .before-footer .items .item .box-content .btn-phone:hover {
  opacity: 0.7;
}
#before_footer_widget .before-footer .items .item:first-child {
  transform: translateX(13px);
  gap: 14rem;
}
@media (max-width: 900px) {
  #before_footer_widget .before-footer .items .item:first-child {
    gap: 5rem;
  }
}
@media (max-width: 800px) {
  #before_footer_widget .before-footer .items .item:first-child {
    transform: translateX(0);
  }
}
#before_footer_widget .before-footer .items .item:first-child p {
  text-align: center;
  line-height: 1.86;
}
#before_footer_widget .before-footer .items .item:first-child img {
  margin: 3rem auto 0;
  width: 6rem;
  height: 6rem;
  object-fit: contain;
}
#before_footer_widget .before-footer .items .item:first-child .swell-block-button {
  margin-top: 3rem !important;
}
#before_footer_widget .before-footer .items .item:first-child .swell-block-button a {
  margin: 0 auto;
  width: 25rem;
}
@media (max-width: 300px) {
  #before_footer_widget .before-footer .items .item:first-child .swell-block-button a {
    min-width: 100%;
  }
}
#before_footer_widget .before-footer .items .item:first-child .swell-block-button a::before {
  right: 3.5rem;
}
@media (max-width: 500px) {
  #before_footer_widget .before-footer .items .item:first-child .swell-block-button a::before {
    right: 1.5rem;
  }
}
#before_footer_widget .before-footer .items .item:first-child .swell-block-button a:hover::before {
  transform: translate(2rem, -50%);
}
@media (max-width: 500px) {
  #before_footer_widget .before-footer .items .item:first-child .swell-block-button a:hover::before {
    transform: translate(0.5rem, -50%);
  }
}
#before_footer_widget .before-footer .items .item:first-child .box-content {
  padding: 6rem 10rem;
  transform: translateX(4px);
}
@media (max-width: 800px) {
  #before_footer_widget .before-footer .items .item:first-child .box-content {
    transform: translateX(0);
  }
}
@media (max-width: 600px) {
  #before_footer_widget .before-footer .items .item:first-child .box-content {
    padding: 4rem 3rem;
  }
}
#before_footer_widget .before-footer .items .item:last-child {
  transform: translateX(10px);
}
@media (max-width: 800px) {
  #before_footer_widget .before-footer .items .item:last-child {
    transform: translateX(0);
  }
}
#before_footer_widget .before-footer .items .line {
  width: 100%;
  height: 1px;
  background-color: #fff;
  margin: 5rem 0;
}
@media (max-width: 800px) {
  #before_footer_widget .before-footer .items .line {
    margin: 5rem 0 7rem;
  }
}

footer {
  background: #fffaff !important;
  padding: 10rem 0 !important;
  margin-top: -5.5rem !important;
  border-top-left-radius: 7rem;
  border-top-right-radius: 7rem;
}
@media (max-width: 500px) {
  footer {
    padding-bottom: 15rem !important;
  }
}
footer.l-footer {
  z-index: 1;
}
footer.z-index-0 {
  z-index: 0;
}
footer .l-footer__widgetArea {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 1130px) {
  footer .l-footer__widgetArea {
    padding: 0 15px !important;
  }
}
footer .l-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  flex-direction: column;
}
footer .w-footer__box {
  padding: 0;
}
footer .w-footer__box {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 5rem;
  flex-direction: column;
}
footer .w-footer__box #media_image-2 {
  max-width: 21.6rem;
  margin: 0 auto;
}
footer .w-footer__box #media_image-2 a:hover {
  opacity: 0.7;
}
footer .w-footer__box #custom_html-5 {
  margin-top: 0;
}
footer .w-footer__box #custom_html-5 .address {
  text-align: center;
  line-height: 1.76;
}
footer .w-footer__box #custom_html-5 .line {
  border-top: 1px solid #ddd7cb;
  width: 80vw;
  max-width: 38.5rem;
  margin: 4.8rem auto 0;
}
footer .w-footer__box .widget_nav_menu {
  margin-top: 0 !important;
}
footer .w-footer__box .widget_nav_menu .c-widget__title {
  display: none;
}
footer .w-footer__box .widget_nav_menu ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
}
@media (max-width: 550px) {
  footer .w-footer__box .widget_nav_menu ul {
    gap: 15px;
  }
}
@media (max-width: 380px) {
  footer .w-footer__box .widget_nav_menu ul {
    flex-direction: column;
    align-items: center;
    row-gap: 15px;
  }
}
footer .w-footer__box .widget_nav_menu ul li a {
  padding: 0;
  border-bottom: none;
}
footer .w-footer__box .widget_nav_menu ul li a:hover {
  background-color: transparent;
  padding: 0 !important;
  opacity: 0.7;
}
footer .w-footer__box .widget_nav_menu ul li a::before {
  display: none;
}
footer .l-footer__widgetArea {
  background: transparent !important;
}
footer .l-footer__foot,
footer .l-footer__widgetArea {
  padding: 0;
}
footer .l-footer__foot {
  background: transparent;
}
footer .l-footer__foot .l-container {
  max-width: 1100px !important;
  margin: 5rem auto 0 !important;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 15px;
}
@media (max-width: 1130px) {
  footer .l-footer__foot .l-container {
    padding: 0 15px !important;
  }
}
footer .copyright {
  font-size: 12px;
  line-height: 17px;
  color: #333;
  font-weight: 400;
}

.single footer.l-footer {
  z-index: 11;
}

.page-id-20 #before_footer_widget .before-footer .item:first-child,
.page-id-20 #before_footer_widget .before-footer .item:first-child + .line {
  display: none;
}

/*--------------------------------------------------------------


/*--------------------------------------------------------------
# Pages

--------------------------------------------------------------*/
body.overflow-hidden {
  overflow: hidden;
}

.swell-block-button {
  margin-bottom: 0 !important;
}
.swell-block-button a {
  position: relative;
  font-weight: 500;
  width: fit-content;
  max-width: none;
  min-width: 18rem;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  padding: 0.8rem 2.5rem;
  letter-spacing: 0;
  transition: all 0.3s ease;
}
@media (max-width: 500px) {
  .swell-block-button a {
    align-items: center;
  }
}
@media (max-width: 300px) {
  .swell-block-button a {
    width: 100%;
  }
}
.swell-block-button a::before {
  content: "";
  background: url(../../assets/img/cmn/ar-right-w.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  height: 2rem;
  width: 2rem;
  position: absolute;
  top: 50%;
  right: 2.5rem;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}
@media (max-width: 500px) {
  .swell-block-button a::before {
    right: 1rem;
  }
}
.swell-block-button a:hover::before {
  transform: translate(1rem, -50%);
}
@media (max-width: 500px) {
  .swell-block-button a:hover::before {
    transform: translate(0.5rem, -50%);
  }
}
.swell-block-button.mid a {
  margin: 0 auto;
}
.swell-block-button.mw-250 a {
  padding: 0.8rem 3.5rem;
  min-width: 25rem;
}
.swell-block-button.mw-250 a::before {
  right: 3.5rem;
}
@media (max-width: 500px) {
  .swell-block-button.mw-250 a::before {
    right: 1.5rem;
  }
}
.swell-block-button.mw-250 a:hover::before {
  transform: translate(2rem, -50%);
}
@media (max-width: 500px) {
  .swell-block-button.mw-250 a:hover::before {
    transform: translate(0.5rem, -50%);
  }
}

.section-mx-1100 > .swell-block-fullWide__inner {
  max-width: 110rem;
  margin: 0 auto;
}

.p-title-heart {
  position: relative;
  font-size: 2rem;
  font-weight: 500;
  color: #333;
}
.p-title-heart::before {
  content: "";
  background: url(../../assets/img/cmn/heart.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  height: 7.6rem;
  width: 9rem;
  position: absolute;
  top: -3.7rem;
  left: -5rem;
  z-index: -1;
}

.p-title-heart-custom {
  position: relative;
  margin: 0 auto;
  font-size: 2rem;
  line-height: 1.5;
  font-weight: 500;
  color: #333;
  letter-spacing: 2px;
}
.p-title-heart-custom::before {
  content: "";
  background: url(../../assets/img/cmn/heart.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  height: 7.6rem;
  width: 9rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.sub-form .cf-field-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  row-gap: 1rem;
  padding: 2.95rem 0 !important;
  border: 0;
  border-bottom: 1px solid #bab6ad;
  margin-bottom: 0;
}
.sub-form .cf-field-container:first-child {
  border-top: 1px solid #bab6ad;
}
.sub-form .cf-field-container label {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 1.5rem;
  width: auto;
  min-width: 22.2rem;
  row-gap: 1rem;
  padding-top: 0 !important;
  padding-left: 0 !important;
  box-sizing: border-box;
  background-color: transparent;
  border-bottom: none;
}
@media (max-width: 767px) {
  .sub-form .cf-field-container label {
    width: 100%;
    justify-content: flex-start;
  }
}
.sub-form .cf-field-container label .text {
  font-size: 15px;
  font-weight: 400;
  color: #333333;
}
.sub-form .cf-field-container label .required-label {
  color: #fff;
  background: #ef857d;
  font-size: 13px;
  font-weight: 400;
  font-weight: bold;
  line-height: 1.69;
  white-space: nowrap;
  display: block;
  border-radius: 5px;
  padding: 1px 8px;
}
.sub-form .cf-field-container .cf-input-container,
.sub-form .cf-field-container .input-container {
  width: calc(100% - 25.2rem);
  margin-top: 0 !important;
}
@media (max-width: 991px) {
  .sub-form .cf-field-container .cf-input-container,
  .sub-form .cf-field-container .input-container {
    border-left: 0;
    border-right: 0;
    padding: 0 !important;
  }
}
@media (max-width: 767px) {
  .sub-form .cf-field-container .cf-input-container,
  .sub-form .cf-field-container .input-container {
    width: 100%;
  }
}
.sub-form .cf-field-container .cf-input-container .name-inputs,
.sub-form .cf-field-container .input-container .name-inputs {
  width: 100% !important;
}
.sub-form .cf-field-container .cf-input-container input,
.sub-form .cf-field-container .cf-input-container textarea,
.sub-form .cf-field-container .cf-input-container select,
.sub-form .cf-field-container .input-container input,
.sub-form .cf-field-container .input-container textarea,
.sub-form .cf-field-container .input-container select {
  font-size: 15px !important;
  font-weight: 400;
  line-height: 22px !important;
  color: #333 !important;
  padding: 15px !important;
  border: 1px solid #bab6ad !important;
  border-radius: 5px !important;
  height: 52px;
  width: 100% !important;
  background-color: #ffffff !important;
  box-sizing: border-box;
  margin: 0 !important;
  font-family: "Zen Kaku Gothic Antique";
  max-width: 50rem;
}
@media (max-width: 767px) {
  .sub-form .cf-field-container .cf-input-container input,
  .sub-form .cf-field-container .cf-input-container textarea,
  .sub-form .cf-field-container .cf-input-container select,
  .sub-form .cf-field-container .input-container input,
  .sub-form .cf-field-container .input-container textarea,
  .sub-form .cf-field-container .input-container select {
    max-width: 100%;
  }
}
.sub-form .cf-field-container .cf-input-container input::placeholder,
.sub-form .cf-field-container .cf-input-container textarea::placeholder,
.sub-form .cf-field-container .cf-input-container select::placeholder,
.sub-form .cf-field-container .input-container input::placeholder,
.sub-form .cf-field-container .input-container textarea::placeholder,
.sub-form .cf-field-container .input-container select::placeholder {
  color: #bab6ad !important;
}
.sub-form .cf-field-container .cf-input-container textarea,
.sub-form .cf-field-container .input-container textarea {
  min-height: 192px;
}
.sub-form .cf-field-container .cf-input-container select,
.sub-form .cf-field-container .input-container select {
  max-width: 293px;
}
.sub-form .cf-field-container .cf-input-container input[type=number]::-webkit-outer-spin-button,
.sub-form .cf-field-container .cf-input-container input[type=number]::-webkit-inner-spin-button,
.sub-form .cf-field-container .input-container input[type=number]::-webkit-outer-spin-button,
.sub-form .cf-field-container .input-container input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
.sub-form .cf-field-container .cf-error-message {
  width: calc(100% - 25.2rem);
  margin-top: 0;
  margin-left: auto;
}
@media (max-width: 767px) {
  .sub-form .cf-field-container .cf-error-message {
    flex-basis: 100%;
  }
}
.sub-form .cf-field-container:has(#label-radio) .cf-input-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.sub-form .cf-field-container:has(#label-radio) .cf-input-container input[type=checkbox],
.sub-form .cf-field-container:has(#label-radio) .cf-input-container input[type=radio] {
  opacity: 0;
  position: absolute;
  height: 0 !important;
  width: 0;
}
.sub-form .cf-field-container:has(#label-radio) .cf-input-container input[type=radio] + label {
  position: relative;
  padding-left: 25px;
  width: 100%;
}
.sub-form .cf-field-container:has(#label-radio) .cf-input-container input[type=radio] + label::before {
  content: "";
  width: 16px;
  height: 16px;
  border: 1px solid #9c9c9c;
  background-color: #e7e7e7;
  position: absolute;
  top: 4px;
  left: 0;
  border-radius: 50%;
}
.sub-form .cf-field-container:has(#label-radio) .cf-input-container input[type=radio] + label::after {
  content: "";
  width: 16px;
  height: 16px;
  background-color: #004164;
  transform: scale(0.5);
  position: absolute;
  top: 4px;
  left: 0;
  opacity: 0;
}
.sub-form .cf-field-container:has(#label-radio) .cf-input-container input[type=radio]:checked + label::before {
  box-shadow: 0 0 0 1px #004164, 0px 1px 2px rgba(0, 0, 0, 0.15) !important;
  border-radius: 50%;
}
.sub-form .cf-field-container:has(#label-radio) .cf-input-container input[type=radio]:checked + label::after {
  opacity: 1;
  border-radius: 50%;
}
.sub-form .cf-field-container.file {
  row-gap: 0;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .sub-form .cf-field-container.file {
    row-gap: 20px;
  }
}
.sub-form .cf-field-container.file .file-upload-area {
  box-sizing: border-box;
  width: calc(100% - 231px);
  padding: 6px 20px !important;
  justify-content: center;
  padding: 10px 14px !important;
  background-color: #dc6b8e;
  border-radius: 5px;
}
@media (max-width: 767px) {
  .sub-form .cf-field-container.file .file-upload-area {
    flex-basis: 100%;
  }
}
.sub-form .cf-field-container.file .file-upload-area .file-message {
  box-sizing: border-box;
}
.sub-form .cf-field-container.file .file-upload-area .file-message p {
  margin: 0;
  margin-top: 0;
  font-family: "Zen Old Mincho";
  font-size: 14px;
  line-height: 2;
  font-weight: 400;
  color: #fff;
}
.sub-form .cf-field-container.file .note {
  box-sizing: border-box;
  width: calc(100% - 231px);
  margin-top: 10px;
  margin-left: auto;
  font-family: "Zen Old Mincho";
  font-size: 14px;
  line-height: 2;
  font-weight: 400;
  color: #dc6b8e;
}
@media (max-width: 767px) {
  .sub-form .cf-field-container.file .note {
    flex-basis: 100%;
    margin-top: 0;
  }
}
.sub-form .cf-field-container[data-field-index="2"] .cf-input-container input {
  max-width: 25rem;
}
@media (max-width: 767px) {
  .sub-form .cf-field-container[data-field-index="2"] .cf-input-container input {
    max-width: 100%;
  }
}
.sub-form .cf-button-submit,
.sub-form .cf-button-confirm {
  display: block;
  margin: 0 auto;
  position: relative;
  font-weight: 500;
  width: fit-content;
  max-width: none;
  min-width: 18rem;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  padding: 0.8rem 2.5rem;
  letter-spacing: 0;
  transition: all 0.3s ease;
  background-color: #EF857D;
  color: #fff;
  border-radius: 10rem;
}
@media (max-width: 500px) {
  .sub-form .cf-button-submit,
  .sub-form .cf-button-confirm {
    align-items: center;
  }
}
@media (max-width: 300px) {
  .sub-form .cf-button-submit,
  .sub-form .cf-button-confirm {
    width: 100%;
  }
}
.sub-form .cf-button-submit::before,
.sub-form .cf-button-confirm::before {
  content: "";
  background: url(../../assets/img/cmn/ar-right-w.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  height: 2rem;
  width: 2rem;
  position: absolute;
  top: 50%;
  right: 2.5rem;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}
@media (max-width: 500px) {
  .sub-form .cf-button-submit::before,
  .sub-form .cf-button-confirm::before {
    right: 1rem;
  }
}
.sub-form .cf-button-submit:hover::before,
.sub-form .cf-button-confirm:hover::before {
  transform: translate(1rem, -50%);
}
@media (max-width: 500px) {
  .sub-form .cf-button-submit:hover::before,
  .sub-form .cf-button-confirm:hover::before {
    transform: translate(0.5rem, -50%);
  }
}
.sub-form .cf-field-container[data-type=privacy_policy] {
  justify-content: center !important;
  margin: 0 !important;
  border-bottom: 0 !important;
  padding: 0 !important;
}
.sub-form .cf-field-container[data-type=privacy_policy] .cf-input-container {
  width: 100% !important;
}
.sub-form .cf-field-container[data-type=privacy_policy] label {
  gap: 5px !important;
}
@media (max-width: 350px) {
  .sub-form .cf-field-container[data-type=privacy_policy] label {
    flex-direction: column !important;
  }
}
.sub-form .cf-privacy-policy {
  justify-content: center;
  display: flex;
  align-items: start;
  flex-wrap: wrap;
  padding-top: 45px;
  padding-bottom: 15px;
  margin-bottom: 0;
}
.sub-form .cf-privacy-policy input[type=checkbox] {
  opacity: 0;
  position: absolute;
  height: 0 !important;
  width: 0;
}
.sub-form .cf-privacy-policy input[type=checkbox] + label {
  position: relative;
  padding-left: 25px;
  width: 100%;
  gap: 0 !important;
}
.sub-form .cf-privacy-policy input[type=checkbox] + label::before {
  content: "";
  width: 16px;
  height: 16px;
  border: none;
  background-color: #EF857D !important;
  position: absolute;
  top: 5px;
  left: -25px;
  border: 1px solid #EF857D;
  border-radius: 5px;
  background-color: #FFFAFF !important;
}
.sub-form .cf-privacy-policy input[type=checkbox] + label::after {
  content: "";
  width: 18px;
  height: 12px;
  border-left: 4px solid #EF857D !important;
  border-bottom: 4px solid #EF857D !important;
  transform: translate(-2px, 1px) scale(0.5) rotate(-45deg);
  position: absolute;
  top: 5px;
  left: -24px;
  opacity: 0;
}
.sub-form .cf-privacy-policy input[type=checkbox]:checked + label::before {
  border: 1px solid #EF857D;
}
.sub-form .cf-privacy-policy input[type=checkbox]:checked + label::after {
  opacity: 1;
}
.sub-form .cf-privacy-policy label {
  transform: translateX(12px);
  max-width: 100%;
  position: relative;
  display: flex;
  width: fit-content !important;
  margin: 0 auto;
  gap: 0;
  flex-direction: column;
  font-size: 14px !important;
  font-weight: 400;
  line-height: 1.78;
  color: #333333;
}
.sub-form .cf-privacy-policy label a {
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  font-weight: 400 !important;
  line-height: 1.78;
  color: #437EC4 !important;
  width: fit-content;
  margin: 0 auto;
  transform: translateX(-5px);
}
.sub-form .cf-privacy-policy label a:hover {
  opacity: 0.7;
}
.sub-form .cf-privacy-policy .cf-error-message {
  flex-basis: 100%;
}
.sub-form .conditional_group .cf-field-container:first-child {
  border-top: none !important;
}
.sub-form .conditional_group .cf-field-container[data-field-index="2"] .cf-input-container input {
  max-width: 50rem !important;
}
@media (max-width: 767px) {
  .sub-form .conditional_group .cf-field-container[data-field-index="2"] .cf-input-container input {
    max-width: 100% !important;
  }
}
.sub-form .conditional_group .cf-error-message, .sub-form .conditional_group .error-message {
  width: calc(100% - 25.2rem);
  margin-top: 0;
  margin-left: auto;
}
@media (max-width: 767px) {
  .sub-form .conditional_group .cf-error-message, .sub-form .conditional_group .error-message {
    flex-basis: 100%;
  }
}

.cf-confirmation-screen {
  background-color: transparent !important;
  border: none !important;
}
.cf-confirmation-screen .cf-title-confirm-info {
  display: none;
}
.cf-confirmation-screen .cf-title-confirm-info h3::before {
  display: none !important;
}
.cf-confirmation-screen .cf-confirmation-item {
  font-weight: 400;
  font-size: 15px;
}
@media (max-width: 600px) {
  .cf-confirmation-screen .cf-confirmation-item {
    flex-direction: column;
    margin-bottom: 20px;
  }
}
.cf-confirmation-screen .cf-confirmation-item strong {
  width: 40%;
  font-size: 15px;
}
@media (max-width: 600px) {
  .cf-confirmation-screen .cf-confirmation-item strong {
    width: 100%;
    text-align: left;
  }
}
.cf-confirmation-screen .cf-button-center {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  justify-content: center;
}
.cf-confirmation-screen .cf-button-center .cf-back-button {
  display: block;
  margin: 0 auto;
  position: relative;
  font-weight: 500;
  width: fit-content;
  max-width: none;
  min-width: 18rem;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  padding: 0.8rem 2.5rem;
  letter-spacing: 0;
  transition: all 0.3s ease;
  background-color: #EF857D;
  color: #fff;
  border-radius: 10rem;
}
@media (max-width: 500px) {
  .cf-confirmation-screen .cf-button-center .cf-back-button {
    align-items: center;
  }
}
@media (max-width: 300px) {
  .cf-confirmation-screen .cf-button-center .cf-back-button {
    width: 100%;
  }
}
.cf-confirmation-screen .cf-button-center .cf-back-button::before {
  content: "";
  background: url(../../assets/img/cmn/ar-left-w.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  height: 2rem;
  width: 2rem;
  position: absolute;
  top: 50%;
  right: 2.5rem;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}
@media (max-width: 500px) {
  .cf-confirmation-screen .cf-button-center .cf-back-button::before {
    right: 1rem;
  }
}
.cf-confirmation-screen .cf-button-center .cf-back-button:hover::before {
  transform: translate(1rem, -50%);
}
@media (max-width: 500px) {
  .cf-confirmation-screen .cf-button-center .cf-back-button:hover::before {
    transform: translate(0.5rem, -50%);
  }
}
.cf-confirmation-screen .cf-button-center .cf-back-button span {
  display: none !important;
}
.cf-confirmation-screen .cf-button-center .cf-button-submit {
  display: block;
  margin: 0 auto;
  position: relative;
  font-weight: 500;
  width: fit-content;
  max-width: none;
  min-width: 18rem;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  padding: 0.8rem 2.5rem;
  letter-spacing: 0;
  transition: all 0.3s ease;
  background-color: #EF857D;
  color: #fff;
  border-radius: 10rem;
}
@media (max-width: 500px) {
  .cf-confirmation-screen .cf-button-center .cf-button-submit {
    align-items: center;
  }
}
@media (max-width: 300px) {
  .cf-confirmation-screen .cf-button-center .cf-button-submit {
    width: 100%;
  }
}
.cf-confirmation-screen .cf-button-center .cf-button-submit::before {
  content: "";
  background: url(../../assets/img/cmn/ar-right-w.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  height: 2rem;
  width: 2rem;
  position: absolute;
  top: 50%;
  right: 2.5rem;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}
@media (max-width: 500px) {
  .cf-confirmation-screen .cf-button-center .cf-button-submit::before {
    right: 1rem;
  }
}
.cf-confirmation-screen .cf-button-center .cf-button-submit:hover::before {
  transform: translate(1rem, -50%);
}
@media (max-width: 500px) {
  .cf-confirmation-screen .cf-button-center .cf-button-submit:hover::before {
    transform: translate(0.5rem, -50%);
  }
}
.cf-confirmation-screen .cf-button-center .cf-button-submit span {
  display: none !important;
}

/* || TEXT */
.font-zen-new {
  font-family: "Zen Kaku Gothic New";
}

.white-nowrap {
  white-space: nowrap;
}

@media (max-width: 600px) {
  .text-mb-left {
    text-align: left !important;
  }
}

.m-r-20 {
  margin-right: 20px !important;
}
.m-auto {
  margin: 0 auto !important;
}
.m-l-auto {
  margin-left: auto !important;
}
.m-r-auto {
  margin-right: auto !important;
}
@media (max-width: 600px) {
  .m-mb-auto {
    margin: 0 auto !important;
  }
}

.w-fit-content {
  width: fit-content;
}

/* || LINE LIMIT */
.line-limit--1 {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.line-limit--2 {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.line-limit--3 {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.line-limit--4 {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

/* || BACKGROUND COLOR */
/* || ASPECT RATIO */
.aspect-ratio-unset img {
  aspect-ratio: unset;
}
.aspect-ratio--1-1 img {
  aspect-ratio: 1/1;
}
.aspect-ratio--2-1 img {
  aspect-ratio: 2/1;
}
.aspect-ratio--3-2 img {
  aspect-ratio: 3/2;
}
.aspect-ratio--3-4 img {
  aspect-ratio: 3/4;
}
.aspect-ratio--4-3 img {
  aspect-ratio: 4/3;
}
@media screen and (min-width: 992px) {
  .aspect-ratio-lg-unset img {
    aspect-ratio: unset;
  }
}

/* || HOVER */
.hover--scale img {
  transition: all 0.3s ease-out;
}
.hover--scale:hover img {
  transform: scale(1.1);
}

/* || Z-INDEX */
.z-index--1 {
  z-index: 1;
}

@media only screen and (min-width: 992px) {
  .w-lg-50 {
    width: 50% !important;
  }
}

.border-b-ccc {
  border-bottom: 1px solid #ccc;
}

.white-space-nowrap {
  white-space: nowrap;
}

.sp-only {
  display: none !important;
}
@media (max-width: 600px) {
  .sp-only {
    display: block !important;
  }
}

.pc-only {
  display: block !important;
}
@media (max-width: 600px) {
  .pc-only {
    display: none !important;
  }
}

.flex-sp-only {
  display: none !important;
}
@media (max-width: 600px) {
  .flex-sp-only {
    display: flex !important;
  }
}

.flex--pc-only {
  display: flex !important;
}
@media (max-width: 600px) {
  .flex--pc-only {
    display: none !important;
  }
}

.max-700 {
  display: none !important;
}
@media (max-width: 700px) {
  .max-700 {
    display: block !important;
  }
}

.min-760 {
  display: block !important;
}
@media (max-width: 760px) {
  .min-760 {
    display: none !important;
  }
}

.max-760 {
  display: none !important;
}
@media (max-width: 760px) {
  .max-760 {
    display: block !important;
  }
}

.max-960 {
  display: none !important;
}
@media (max-width: 960px) {
  .max-960 {
    display: block !important;
  }
}

.min-960 {
  display: block !important;
}
@media (max-width: 960px) {
  .min-960 {
    display: none !important;
  }
}

.max-575 {
  display: none !important;
}
@media (max-width: 575px) {
  .max-575 {
    display: block !important;
  }
}

.min-575 {
  display: block !important;
}
@media (max-width: 575px) {
  .min-575 {
    display: none !important;
  }
}

.max-600 {
  display: none !important;
}
@media (max-width: 600px) {
  .max-600 {
    display: block !important;
  }
}

.min-600 {
  display: block !important;
}
@media (max-width: 600px) {
  .min-600 {
    display: none !important;
  }
}

.max-782 {
  display: none !important;
}
@media (max-width: 781.98px) {
  .max-782 {
    display: block !important;
  }
}

.min-782 {
  display: block !important;
}
@media (max-width: 781.98px) {
  .min-782 {
    display: none !important;
  }
}

:root {
  --color_border--table: #9dceb3;
  --swl-pad_post_content: 0;
  --swl-pad_container: 0;
}
@media (max-width: 1260px) {
  :root {
    --swl-pad_container: 15px !important;
    --swl-pad_post_content: 15px !important;
  }
}

.alignfull > .wp-block-cover__inner-container > *,
.alignfull > .wp-block-group__inner-container > *,
.swell-block-fullWide__inner > * {
  margin-bottom: 0;
}

.single .l-content {
  z-index: 2;
}

.l-mainContent__inner > .post_content {
  padding: 0;
}

.single .l-content {
  padding-top: 10rem;
  padding-bottom: 50rem;
}

.l-content {
  padding-top: 0;
}

.l-content,
.post_content {
  margin: 0 auto !important;
}

.top #content {
  padding-top: 0;
}

.l-content {
  margin-top: 0px;
}

.c-tabBody__item > *,
.cap_box_content > *,
.faq_a > *,
.swell-block-accordion__body > *,
.swell-block-dl__dd > *,
.swell-block-step__body > *,
.swl-has-mb--s > *,
.wp-block-column > *,
.wp-block-cover__inner-container > *,
.wp-block-group__inner-container > *,
.wp-block-media-text__content > *,
div[class*=is-style-] > * {
  margin-bottom: 0;
}

.home .l-content {
  margin-top: 0 !important;
}

.c-pageTitle,
.l-header__bar,
#breadcrumb {
  display: none;
}

.post_content > * {
  margin-bottom: 0;
}

.wp-block-spacer {
  margin-bottom: 0 !important;
}

.swell-block-fullWide + .swell-block-fullWide {
  margin-top: 0;
}

.section-banner-hero .swell-block-fullWide__inner {
  max-width: 120rem;
  margin: 0 auto;
  position: relative;
}
.section-banner-hero .swell-block-fullWide__inner img {
  width: 100%;
  border-radius: 7rem;
  min-height: 69.4rem;
  object-fit: cover;
}
@media (max-width: 800px) {
  .section-banner-hero .swell-block-fullWide__inner img {
    padding-top: 25rem;
    border-radius: 0;
    min-height: auto;
  }
}
.section-banner-hero .swell-block-fullWide__inner .box-content {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #fffaff;
  padding: 1rem 5rem 2.4rem 5rem;
  border-bottom-right-radius: 7rem;
}
@media (max-width: 400px) {
  .section-banner-hero .swell-block-fullWide__inner .box-content {
    padding: 1rem 2.5rem 2.4rem;
  }
}
.section-banner-hero .swell-block-fullWide__inner .box-content > .wp-block-group__inner-container {
  display: flex;
  gap: 2.8rem;
}
.section-banner-hero .swell-block-fullWide__inner .box-content .p-title {
  font-size: 2.8rem;
  line-height: 1.14;
  font-weight: 500;
  color: #ef857d;
  writing-mode: vertical-lr;
  text-orientation: upright;
  letter-spacing: 1.15rem;
}
.section-banner-hero .swell-block-fullWide__inner .box-content .p-title > .wp-block-group__inner-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.section-banner-hero .swell-block-fullWide__inner .box-content .p-desc {
  font-size: 1.6rem;
  line-height: 1;
  font-weight: 400;
  color: #333;
  writing-mode: vertical-lr;
  text-orientation: upright;
  letter-spacing: 0.42rem;
}
.section-banner-hero .swell-block-fullWide__inner .box-content .p-desc > .wp-block-group__inner-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (max-width: 1300px) {
  .section-about-top {
    padding-left: 30px;
  }
}
@media (max-width: 781.98px) {
  .section-about-top {
    padding-left: 15px;
  }
}
.section-about-top .wp-block-columns {
  max-width: 127rem;
  margin-left: auto;
  gap: 4rem !important;
}
@media (min-width: 1500px) {
  .section-about-top .wp-block-columns {
    margin: 0 auto;
  }
}
.section-about-top .wp-block-columns .wp-block-column .p-title-heart {
  position: relative;
}
@media (max-width: 1285px) {
  .section-about-top .wp-block-columns .wp-block-column .p-title-heart::before {
    top: -3.7rem;
    left: -1rem;
  }
}
.section-about-top .wp-block-columns .wp-block-column img {
  max-width: 72rem;
  width: 100%;
  border-top-left-radius: 7rem;
  border-bottom-left-radius: 7rem;
  object-fit: cover;
}
@media (min-width: 1500px) {
  .section-about-top .wp-block-columns .wp-block-column img {
    max-width: none;
  }
}
@media (max-width: 781.98px) {
  .section-about-top .wp-block-columns .wp-block-column img {
    max-width: calc(100% + 1.5rem);
  }
}
.section-about-top .wp-block-columns .wp-block-column:first-child {
  padding-right: 15px;
}

.section-brand .wp-block-group {
  gap: 5rem !important;
}
@media (max-width: 600px) {
  .section-brand .wp-block-group {
    flex-direction: column;
    gap: 2rem !important;
  }
}
.section-brand .wp-block-group .wp-block-image:first-child img {
  width: 100%;
  max-width: 38rem;
  margin: 0 auto;
}
@media (max-width: 400px) {
  .section-brand .wp-block-group .wp-block-image img {
    max-width: 100% !important;
  }
}

.section-banner .swell-block-fullWide__inner {
  max-width: 120rem;
  margin: 0 auto;
  position: relative;
}
.section-banner .swell-block-fullWide__inner img {
  width: 100%;
  border-radius: 7rem;
  min-height: 69.4rem;
  object-fit: cover;
}
@media (max-width: 600px) {
  .section-banner .swell-block-fullWide__inner img {
    border-radius: 0;
    min-height: 30rem;
  }
}
.section-banner .swell-block-fullWide__inner .box-content {
  min-width: 33.5rem;
  min-height: 31rem;
  position: absolute;
  top: 0;
  left: -1px;
  background-color: #fffaff;
  padding: 2rem;
  border-bottom-right-radius: 7rem;
  font-size: 2.8rem;
  line-height: 1.14;
  font-weight: 500;
  color: #ef857d;
  writing-mode: vertical-lr;
  text-orientation: upright;
  letter-spacing: 1.15rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 600px) {
  .section-banner .swell-block-fullWide__inner .box-content {
    min-width: 18.5rem;
    min-height: 27.2rem;
  }
}
.section-banner .swell-block-fullWide__inner .box-content > .wp-block-group__inner-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 3rem;
}

.section-step .wp-block-group .p-title-heart-custom {
  margin: 2.1rem 0 0 !important;
  font-weight: bold;
}
.section-step .wp-block-group .p-title-heart-custom::before {
  width: 9.65rem;
}
.section-step .wp-block-group > .wp-block-group__inner-container {
  display: flex;
  align-items: start;
  justify-content: flex-end;
  gap: 19.8rem;
}
@media (max-width: 1200px) {
  .section-step .wp-block-group > .wp-block-group__inner-container {
    gap: 10rem;
  }
}
@media (max-width: 1000px) {
  .section-step .wp-block-group > .wp-block-group__inner-container {
    gap: 5rem;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
@media (max-width: 1000px) {
  .section-step .wp-block-group > .wp-block-group__inner-container .wp-block-image {
    width: 100%;
  }
}
@media (max-width: 1000px) {
  .section-step .wp-block-group > .wp-block-group__inner-container .wp-block-image img {
    width: 100%;
  }
}
.section-step .group-table .wp-block-table {
  min-width: 76.8rem;
}
@media (max-width: 1000px) {
  .section-step .group-table .wp-block-table {
    min-width: 100%;
    max-width: 76.8rem;
  }
}
.section-step .group-table table {
  width: 100%;
}
@media (max-width: 600px) {
  .section-step .group-table table tbody tr {
    display: block;
    width: 100%;
  }
}
.section-step .group-table table tbody tr th,
.section-step .group-table table tbody tr td {
  border: none !important;
  border-top: 1px solid #ddd7cb !important;
  padding: 2.95rem 0 !important;
  line-height: 1.46;
  color: #333;
  font-weight: 400;
  vertical-align: middle;
}
@media (max-width: 600px) {
  .section-step .group-table table tbody tr th,
  .section-step .group-table table tbody tr td {
    display: block;
    width: 100% !important;
  }
}
.section-step .group-table table tbody tr th {
  width: 16rem !important;
  background-color: transparent;
}
@media (max-width: 600px) {
  .section-step .group-table table tbody tr th {
    padding-bottom: 0 !important;
    font-weight: bold;
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
  }
}
@media (max-width: 600px) {
  .section-step .group-table table tbody tr td {
    padding-top: 1rem !important;
    border: none !important;
  }
}
.section-step .group-table table tbody tr:last-child th,
.section-step .group-table table tbody tr:last-child td {
  border-bottom: 1px solid #ddd7cb !important;
}
@media (max-width: 600px) {
  .section-step .group-table table tbody tr:last-child th {
    border: none !important;
    border-top: 1px solid #ddd7cb !important;
  }
}
.section-step .group-maps .box-maps {
  min-width: 76.8rem;
}
@media (max-width: 1000px) {
  .section-step .group-maps .box-maps {
    min-width: 100%;
    max-width: 76.8rem;
  }
}
.section-step .group-maps iframe {
  margin: 0 !important;
  width: 76.8rem;
  height: 40rem;
}
@media (max-width: 1000px) {
  .section-step .group-maps iframe {
    width: 100% !important;
  }
}
.section-step .group-year > .wp-block-group__inner-container {
  gap: 22rem;
}
@media (max-width: 1200px) {
  .section-step .group-year > .wp-block-group__inner-container {
    gap: 10rem;
  }
}
@media (max-width: 1000px) {
  .section-step .group-year > .wp-block-group__inner-container {
    gap: 5rem;
  }
}
.section-step .group-year .wp-block-table {
  min-width: 76.8rem;
}
@media (max-width: 1000px) {
  .section-step .group-year .wp-block-table {
    min-width: 100%;
    max-width: 76.8rem;
  }
}
.section-step .group-year table {
  width: 100%;
}
@media (max-width: 600px) {
  .section-step .group-year table tbody tr {
    display: block;
    width: 100%;
  }
}
.section-step .group-year table tbody tr th,
.section-step .group-year table tbody tr td {
  border: none !important;
  border-top: 1px solid #ddd7cb !important;
  padding: 1.9rem 0 !important;
  vertical-align: middle;
}
@media (max-width: 600px) {
  .section-step .group-year table tbody tr th,
  .section-step .group-year table tbody tr td {
    display: block;
    width: 100% !important;
  }
}
.section-step .group-year table tbody tr th {
  font-size: 3rem;
  line-height: 1.46;
  color: #ef857d;
  font-weight: bold;
  width: 16rem !important;
  background-color: transparent;
  letter-spacing: 0.9px;
}
@media (max-width: 600px) {
  .section-step .group-year table tbody tr th {
    padding-bottom: 0 !important;
    font-weight: bold;
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
  }
}
.section-step .group-year table tbody tr td {
  font-size: 1.5rem;
  line-height: 1.46;
  color: #333;
  font-weight: 400;
}
@media (max-width: 600px) {
  .section-step .group-year table tbody tr td {
    padding-top: 1rem !important;
    border: none !important;
  }
}
.section-step .group-year table tbody tr:last-child th,
.section-step .group-year table tbody tr:last-child td {
  border-bottom: 1px solid #ddd7cb !important;
}
@media (max-width: 600px) {
  .section-step .group-year table tbody tr:last-child th {
    border: none !important;
    border-top: 1px solid #ddd7cb !important;
  }
}

.section-btn .gr-btn > .wp-block-group__inner-container {
  display: flex;
  gap: 3rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 2rem;
}
.section-btn .gr-btn > .wp-block-group__inner-container a {
  background-color: #ef857d !important;
  color: #fff !important;
  position: relative;
  font-weight: 500;
  width: fit-content;
  max-width: none;
  min-width: 18rem;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  padding: 0.6rem 5rem 0.6rem 2.5rem;
  letter-spacing: 0;
  transition: all 0.3s ease;
  border-radius: 10rem;
}
@media (max-width: 500px) {
  .section-btn .gr-btn > .wp-block-group__inner-container a {
    align-items: center;
    padding: 0.6rem 3rem 0.6rem 2.5rem;
  }
}
@media (max-width: 400px) {
  .section-btn .gr-btn > .wp-block-group__inner-container a {
    width: 90vw;
    max-width: 27rem;
  }
}
.section-btn .gr-btn > .wp-block-group__inner-container a::before {
  content: "";
  background: url(../../assets/img/cmn/ar-down-w.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  height: 2rem;
  width: 2rem;
  position: absolute;
  top: 50%;
  right: 2.5rem;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}
@media (max-width: 500px) {
  .section-btn .gr-btn > .wp-block-group__inner-container a::before {
    right: 1rem;
  }
}
.section-btn .gr-btn > .wp-block-group__inner-container a:hover::before {
  transform: translate(1rem, -50%);
}
@media (max-width: 500px) {
  .section-btn .gr-btn > .wp-block-group__inner-container a:hover::before {
    transform: translate(0.5rem, -50%);
  }
}

.section-text .gr-ul {
  background-color: #fff;
  border-radius: 3rem;
}
.section-text .gr-ul > .wp-block-group__inner-container {
  padding: 3rem;
}
@media (max-width: 400px) {
  .section-text .gr-ul > .wp-block-group__inner-container {
    padding: 1.5rem;
  }
}
.section-text .ul-custom {
  padding: 0 !important;
  margin: 0 0 0 3rem !important;
}
.section-text .ul-custom li {
  margin: 0 !important;
  list-style: "◆" !important;
  line-height: 2;
  padding-left: 1.5rem;
  letter-spacing: 0.45px;
}
.section-text .ul-custom-other {
  margin: 0 !important;
  padding-left: 0 !important;
}
.section-text .ul-custom-other li {
  list-style: none;
  padding: 0 !important;
  padding-left: 2.9rem !important;
  line-height: 2;
  letter-spacing: 0.45px;
  border: none !important;
}
.section-text .ul-custom-other li::before {
  content: "■";
  color: #333;
  font-weight: 400;
  font-size: 15px;
  padding-left: 0;
  letter-spacing: 0.45px;
  text-indent: -2rem;
  display: inline-block;
}
.section-text .ul-custom-dot {
  margin: 0 !important;
  padding-left: 0 !important;
}
.section-text .ul-custom-dot li {
  list-style: none;
  padding: 0 !important;
  padding-left: 5rem !important;
  line-height: 2;
  letter-spacing: 0.45px;
  border: none !important;
}
.section-text .ul-custom-dot li::before {
  content: "•";
  color: #333;
  font-weight: 400;
  font-size: 15px;
  padding-left: 0;
  letter-spacing: 0.45px;
  text-indent: -2rem;
  display: inline-block;
}
.section-text .ol-custom-number {
  counter-reset: item var(--ol-start, 0);
  margin: 0 !important;
  padding: 0 !important;
  padding-left: 0 !important;
}
.section-text .ol-custom-number.start-2 {
  --ol-start: 1;
}
.section-text .ol-custom-number.start-3 {
  --ol-start: 2;
}
.section-text .ol-custom-number li {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none;
  counter-increment: item;
  font-weight: 400;
  font-size: 15px;
  padding-left: 3.5rem !important;
  line-height: 2;
  letter-spacing: 0.45px;
}
.section-text .ol-custom-number li::before {
  content: "(" counter(item) ") ";
  counter-increment: li;
  margin-right: 0;
  color: #333;
  font-weight: 400;
  font-size: 15px;
  padding-left: 0;
  letter-spacing: 0.45px;
  text-indent: -2rem;
  display: inline-block;
}
.section-text .ol-custom-number-special {
  counter-reset: item var(--ol-start, 0);
  padding-left: 0.8rem !important;
}
.section-text .ol-custom-number-special.start-2 {
  --ol-start: 1;
}
.section-text .ol-custom-number-special.start-3 {
  --ol-start: 2;
}
.section-text .ol-custom-number-special li {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none;
  counter-increment: item;
  font-weight: 400;
  font-size: 15px;
  padding-left: 2rem !important;
  line-height: 2;
  letter-spacing: 0.45px;
}
.section-text .ol-custom-number-special li::before {
  content: "※" counter(item) " ";
  counter-increment: li;
  margin-right: 0;
  color: #333;
  font-weight: 400;
  font-size: 15px;
  padding-left: 0;
  letter-spacing: 0.45px;
  text-indent: -2rem;
  display: inline-block;
}
.section-text .ol-custom-number-normal {
  counter-reset: item var(--ol-start, 0);
  margin: 0 !important;
  padding: 0 !important;
}
.section-text .ol-custom-number-normal.start-2 {
  --ol-start: 1;
}
.section-text .ol-custom-number-normal.start-3 {
  --ol-start: 2;
}
.section-text .ol-custom-number-normal li {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none;
  counter-increment: item;
  font-weight: 400;
  font-size: 15px;
  padding-left: 3rem !important;
  line-height: 2;
  letter-spacing: 0.45px;
}
.section-text .ol-custom-number-normal li::before {
  content: "" counter(item) ". ";
  counter-increment: li;
  margin-right: 0;
  color: #333;
  font-weight: 400;
  font-size: 15px;
  padding-left: 0;
  letter-spacing: 0.45px;
  text-indent: -2rem;
  display: inline-block;
}

.section-table .wp-block-table {
  background-color: #fff;
  width: 100%;
  padding: 3.5rem 3rem;
  border-radius: 3rem;
}
@media (max-width: 500px) {
  .section-table .wp-block-table {
    padding: 2rem;
  }
}
.section-table .wp-block-table table {
  width: 100%;
}
@media (max-width: 500px) {
  .section-table .wp-block-table table tbody tr {
    display: block;
    width: 100%;
  }
}
.section-table .wp-block-table table tbody tr th,
.section-table .wp-block-table table tbody tr td {
  border: none !important;
  padding: 0.5rem 0 !important;
  line-height: 2;
  font-size: 15px;
  color: #333;
  font-weight: 400;
  vertical-align: middle;
}
@media (max-width: 500px) {
  .section-table .wp-block-table table tbody tr th,
  .section-table .wp-block-table table tbody tr td {
    display: block;
    width: 100% !important;
  }
}
.section-table .wp-block-table table tbody tr th {
  width: 16rem !important;
  background-color: transparent;
}
@media (max-width: 500px) {
  .section-table .wp-block-table table tbody tr th {
    padding-bottom: 0 !important;
    font-weight: bold;
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
  }
}
@media (max-width: 500px) {
  .section-table .wp-block-table table tbody tr td {
    padding-top: 0 !important;
  }
}
.section-table .wp-block-table table tbody tr:first-child th, .section-table .wp-block-table table tbody tr:first-child td {
  padding-top: 0 !important;
}
.section-table .wp-block-table table tbody tr:last-child th, .section-table .wp-block-table table tbody tr:last-child td {
  padding-bottom: 0 !important;
}

.mx-38 img {
  max-width: 38rem;
}

/*# sourceMappingURL=style.css.map */
