@charset "UTF-8";

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

html {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

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

caption,
th,
td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q,
blockquote {
  quotes: none;
}

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

a img {
  border: none;
}

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

:root {
  --base-font-size: 1.6rem;
  --base-font-family: "Kiwi Maru",
    serif;
  --font-noto: "Noto Sans JP",
    sans-serif;
  --font-Bod: "Bodoni Moda",
    serif;
  --color-text: #333333;
  --color-purple1: #997DB7;
  --color-purple2: #A64A97;
  --color-purple3: #D6CBE2;
  --color-pink1: #DBB7D6;
  --color-gray1: #BDBDBD;
  --color-gray2: #5A5A5A;
  --color-gray3: #7B7B7B;
  --bg-grad-y01: linear-gradient(180deg, rgba(229, 222, 237, 1) 0%, rgba(253, 239, 242, 1)100%);
  --bg-grad-y02: linear-gradient(180deg, rgba(255, 255, 255, 1) 16.2%, rgba(251, 225, 230, 1)100%);
  --bg-grad-y03: linear-gradient(180deg, rgba(229, 222, 237, 1) 0%, rgba(253, 239, 242, 1)100%);
  --bg-grad-y04: linear-gradient(180deg, rgba(253, 239, 242, 1) 0%, rgba(229, 222, 237, 1)100%);
  --viewport: 1100;
  --max-viewport: 1366;
}

/* common styles */
html {
  scroll-behavior: smooth;
}

@media print,
screen and (max-width: 750px) {
  html {
    font-size: 2.67vw;
  }
}

@media print,
screen and (min-width: 751px) {
  html {
    font-size: 0.91vw;
  }
}

@media print,
screen and (min-width: 1101px) {
  html {
    font-size: 62.5%;
  }
}

@media print,
screen and (max-width: 750px) {
  :root {
    --base-font-size: 1.4rem;
    --viewport: 375;
    --max-viewport: 750;
    --size40: calc(40 / var(--viewport) * 100vw);
    --size60: calc(60 / var(--viewport) * 100vw);
    --size80: calc(80 / var(--viewport) * 100vw);
    --size100: calc(100 / var(--viewport) * 100vw);
  }
}

@media print,
screen and (min-width: 751px) {
  :root {
    --viewport-ratio: calc(var(--wrap-viewport) / var(--max-viewport));
    --size40: min(40px, calc(40 / var(--viewport) * 100vw));
    --size60: min(60px, calc(60 / var(--viewport) * 100vw));
    --size80: min(80px, calc(80 / var(--viewport) * 100vw));
    --size100: min(100px, calc(100 / var(--viewport) * 100vw));
  }
}

@media print,
screen and (max-width: 750px) {

  .pc,
  .tbl {
    display: none !important;
  }
}

@media print,
screen and (min-width: 751px) {
  .sp {
    display: none !important;
  }

  .inner {
    max-width: 1100px;
    width: 100%;
  }
}

body {
  font-family: var(--base-font-family);
  font-size: var(--base-font-size);
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--color-text);
}

@media print,
screen and (min-width: 1101px) {
  body {
    font-size: large;
  }
}

img {
  margin: 0;
  padding: 0;
  border-style: none;
  vertical-align: bottom;
  border: 0;
  max-width: 100%;
  height: auto;
}

.wrapper {
  overflow: hidden;
}

.inner {
  display: block;
  margin: 0 auto;
  width: calc(670 / var(--max-viewport) * 100vw);
}

@media print,
screen and (min-width: 751px) {
  .inner {
    width: calc(1100 / var(--max-viewport) * 100vw);
  }
}

a {
  color: var(--color-gray2);
  text-decoration: none;
  transition: 0.3s;
}

picture img {
  width: 100%;
  height: auto;
}

.content p {
  line-height: 1.8em;
}

.purple,
.purple1 {
  color: var(--color-purple1);
}

.purple2 {
  color: var(--color-purple2);
}

.fw__b {
  font-weight: 700 !important;
}

/** img_fit **/
.img_fit {
  border-radius: 13rem;
  overflow: hidden;
  display: block;
}

.img_fit img {
  width: 100%;
}

/** button **/
.btn__link a,
.btn__more a,
.btn__more span {
  display: block;
  color: white;
  padding: 1.35em;
  line-height: 1em;
  border-radius: 2em;
  width: calc(250 / var(--viewport) * 100vw);
  margin: 1em auto;
  letter-spacing: 0.05em;
  background-image: url("images/arrow1_wh.svg"), var(--bg-grad-x02);
  background-position: right 1em center, center;
  background-repeat: no-repeat, no-repeat;
  background-size: 0.9em auto, auto;
  text-align: center;
}

@media print,
screen and (min-width: 751px) {
  .fadein {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
    transition: all 1s ease;
  }

  .fadein.active {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/* header */
.header {
  z-index: 999;
}

.header::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  display: block;
  z-index: 10;
}

@media print,
screen and (max-width: 750px) {
  .header::before {
    background: url(../img/bg-header.svg) top left no-repeat;
    background-size: 100%;
    height: calc(236 / var(--max-viewport) * 100vw);
  }
}

@media print,
screen and (min-width: 751px) {
  .header::before {
    background: url(../img/pc/bg-header.svg) top left no-repeat;
    background-size: 100%;
    height: 10vw;
  }
}

.header .header__area__nav {
  width: 100%;
  height: auto;
  z-index: 900;
  position: relative;
}

@media print,
screen and (min-width: 751px) {
  .header .header__area__nav {
    display: flex;
    justify-content: space-between;
  }
}

.header .header__area__nav .header__logo {
  padding-top: calc(30 / var(--max-viewport) * 100vw);
  padding-left: calc(30 / var(--max-viewport) * 100vw);
  padding-bottom: calc(45 / var(--max-viewport) * 100vw);
  transform: translateZ(999px);
  display: inline-block;
  z-index: 999;
  position: relative;
}

@media print,
screen and (min-width: 751px) {
  .header .header__area__nav .header__logo {
    padding-top: min(20px, 20 / var(--max-viewport) * 100vw);
    padding-left: min(35px, 35 / var(--max-viewport) * 100vw);
    padding-bottom: min(80px, 80 / var(--max-viewport) * 100vw);
  }
}

.header .header__area__nav .header__logo img {
  width: calc(345 / var(--max-viewport) * 100vw);
}

@media print,
screen and (min-width: 751px) {
  .header .header__area__nav .header__logo img {
    width: calc(236 / var(--max-viewport) * 100vw);
  }
}

@media print,
screen and (min-width: 1101px) {
  .header .header__area__nav .header__logo img {
    width: 20vw;
    max-width: 358px;
  }
}

@media print,
screen and (max-width: 750px) {
  .header .header__area__nav .menu__nav__pc {
    display: none;
  }
}

.header .header__area__nav .menu__nav__pc .menu__nav__list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: min(20px, 20 / var(--max-viewport) * 100vw);
  font-size: 0.8em;
}

.header .header__area__nav .menu__nav__pc .menu__nav__list li {
  margin-right: 2em;
}

.header .header__area__nav .menu__nav__pc .menu__nav__list li:last-child {
  margin-right: 1em;
}

.header .header__area__nav .menu__nav__pc .menu__nav__list li a {
  color: white;
}

.header .header__area__nav .menu__nav__pc .menu__nav__list li a:hover {
  color: var(--color-purple2);
}

.header .header__area__nav .menu__nav__pc .menu__nav__list li .btn a {
  display: block;
  border: 2px solid var(--color-purple2);
  border-radius: 2em;
  background: white;
  color: var(--color-purple2);
  text-align: center;
  padding: 0.8em;
}

.header .header__area__nav .menu__nav__pc .menu__nav__list li .btn a:hover {
  background: var(--color-purple2);
  color: white;
  border-color: white;
}

@media print,
screen and (max-width: 750px) {
  .header .outer__links a {
    padding-right: 2em;
    background: url(../img/icon-links.png) right center no-repeat;
  }

  .header .hamburger {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1000;
    transform: translateZ(999px);
  }

  .header .hamburger .hamburger__btn {
    display: block;
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: top right;
    width: calc(130 / var(--max-viewport) * 100vw);
    height: calc(130 / var(--max-viewport) * 100vw);
    cursor: pointer;
    transition: 0.3s;
    position: relative;
  }

  .header .hamburger .hamburger__btn div {
    position: absolute;
    display: block;
    right: 0.7rem;
    top: 1rem;
    width: 3.5rem;
    height: 3.5rem;
  }

  .header .hamburger .hamburger__btn div::before,
  .header .hamburger .hamburger__btn div::after {
    content: " ";
    display: block;
    background: white;
    width: 100%;
    left: 0;
    height: 1px;
    position: absolute;
    transition: 0.5s;
  }

  .header .hamburger .hamburger__btn div::before {
    top: 50%;
  }

  .header .hamburger .hamburger__btn div::after {
    top: 80%;
  }

  .header .hamburger .hamburger__btn .txt::before,
  .header .hamburger .hamburger__btn .txt::after {
    background: none;
  }

  .header .hamburger .hamburger__btn .txt::after {
    content: "MENU";
    display: block;
    width: 100%;
    text-align: center;
    font-size: 0.9rem;
    font-family: var(--font-Bod);
    transform: scale(1.3, 1);
    color: white;
    position: absolute;
    top: 10%;
    left: 0;
    transition: 0.5s;
  }

  .header .menu__nav .menu__nav__lists {
    font-size: 1.3rem;
    margin: 3.5rem 0;
  }

  .header .menu__nav .menu__nav__lists .menu__nav__list {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .header .menu__nav .menu__nav__lists .menu__nav__list li {
    margin-top: 3em;
  }

  .header .menu__nav .menu__nav__lists .menu__nav__list li a {
    font-size: 2rem;
  }

  .header .menu__nav .menu__nav__lists .menu__nav__list li .btn a {
    display: block;
    border: 2px solid var(--color-purple2);
    border-radius: 2em;
    background: white;
    color: var(--color-purple2);
    width: calc(250 / var(--viewport) * 100vw);
    text-align: center;
    padding: 1.2em;
  }
}

.hamburger__nav {
  display: none;
}

.hamburger__nav .inner {
  display: block;
  margin: 0 auto;
  width: calc(670 / var(--max-viewport) * 100vw);
}

@media print,
screen and (max-width: 750px) {

  .nav__open .hamburger__btn div::before,
  .nav__open .hamburger__btn div::after {
    top: 60% !important;
  }

  .nav__open .hamburger__btn div::before {
    transform: rotate(20deg);
  }

  .nav__open .hamburger__btn div::after {
    transform: rotate(-20deg);
  }

  .nav__open .hamburger__nav {
    display: block;
    height: calc(100vh - 100 / var(--max-viewport) * 100vw);
    width: 100%;
    padding-top: calc(100 / var(--max-viewport) * 100vw);
    position: absolute;
    top: 0;
    left: 0;
  }

  .nav__open .hamburger__nav a {
    color: white;
  }
}

.nav__open .header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}

.nav__open .header__area {
  height: 100vh;
  z-index: 91;
  background: var(--color-purple1);
}

.nav__open .header__area::-webkit-scrollbar {
  display: none;
}

.page_up {
  position: fixed;
  bottom: calc(100 / var(--viewport) * 100vw);
  right: calc(15 / var(--viewport) * 100vw);
  z-index: 10;
}

.page_up a {
  width: calc(75 / var(--max-viewport) * 100vw);
  height: calc(75 / var(--max-viewport) * 100vw);
  display: flex;
  align-items: center;
  justify-content: center;
}

.page_up a img {
  width: calc(35 / var(--max-viewport) * 100vw);
}

.footer {
  position: relative;
  margin-bottom: 20vw;
}

@media print,
screen and (min-width: 751px) {
  .footer {
    margin-bottom: 0;
  }
}

.footer .application__line {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.footer .application__line a {
  display: block;
  color: white;
  text-align: center;
  background: var(--color-purple2);
  padding: 1.5em;
  font-size: 1.2em;
}

.footer .application__line a span {
  position: relative;
  margin-left: 2em;
}

.footer .application__line a span::before {
  content: "";
  position: absolute;
  top: calc(50% - 16px);
  left: -65px;
  background-image: url(../img/icon-line.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 100%;
  height: 33px;
}

@media print,
screen and (min-width: 751px) {
  .footer .footer__links {
    display: grid;
    grid-template-columns: 50% 45%;
    gap: 5%;
  }
}

@media print,
screen and (min-width: 1101px) {
  .footer .footer__links {
    grid-template-columns: 38% 55%;
    gap: 12%;
  }
}

.footer .footer__links .footer__logos .logo {
  padding: 40px;
}

@media print,
screen and (min-width: 751px) {
  .footer .footer__links .footer__logos .logo {
    padding: 60px 0 49px;
  }
}

.footer .footer__links .footer__logos .box {
  background: var(--bg-grad-y04);
  border-radius: 40px;
  padding: 20px;
  position: relative;
  margin: auto 20px;
}

@media print,
screen and (min-width: 751px) {
  .footer .footer__links .footer__logos .box {
    margin: 0;
  }
}

.footer .footer__links .footer__logos .box .title {
  text-align: center;
  color: var(--color-purple2);
}

.footer .footer__links .footer__logos .box .title span::before {
  content: "";
  position: absolute;
  top: calc(50% - 0.5em);
  left: -20px;
  background-image: url(../img/bg-footer-line-before.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 1em;
  height: 1em;
}

.footer .footer__links .footer__logos .box .title span::after {
  content: "";
  position: absolute;
  top: calc(50% - 0.5em);
  right: -20px;
  background-image: url(../img/bg-footer-line-after.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 1em;
  height: 1em;
}

.footer .footer__links .footer__logos .box span {
  position: relative;
}

.footer .footer__links .footer__logos .box .inner__box {
  display: grid;
  grid-template-columns: 1fr 30%;
  align-items: center;
  margin-top: 20px;
}

.footer .footer__links .footer__logos .box .inner__box .links a {
  display: block;
  text-align: center;
  background: var(--color-purple2);
  color: white;
  border-radius: 40px;
  border: 1px solid white;
  padding: 20px 0;
  width: 90%;
}

.footer .footer__links .footer__logos .box .inner__box .links a span::before {
  content: "";
  position: absolute;
  top: calc(50% - 0.5em);
  right: -15px;
  background-image: url(../img/icon-links.png);
  background-size: contain;
  background-repeat: no-repeat;
  -webkit-mask-image: url(../img/pc/icon-links.svg);
  mask-image: url(../img/pc/icon-links.svg);
  -webkit-mask-position: top center;
  mask-position: top center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  background: white;
  width: 1em;
  height: 1em;
}

.footer .footer__links .footer__logos .box .inner__box .links a:hover {
  background: white;
  color: var(--color-purple2);
  border-color: var(--color-purple2);
}

.footer .footer__links .footer__logos .box .inner__box .links a:hover span::before {
  background: var(--color-purple2);
}

.footer .footer__links .footer__logos .operation {
  margin: 30px auto;
  width: 75%;
}

@media print,
screen and (min-width: 751px) {
  .footer .footer__links .footer__logos .operation img {
    max-width: 220px;
  }
}

.footer .footer__menu .footer__menu__links {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  grid-auto-flow: column;
  margin: 30px 0;
  padding-top: 20px;
}

@media print,
screen and (min-width: 751px) {
  .footer .footer__menu .footer__menu__links {
    grid-template-rows: repeat(2, 1fr);
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer .footer__menu .footer__menu__links li {
  margin-bottom: 20px;
}

.footer .footer__menu .footer__menu__links li span {
  color: var(--color-purple2);
}

.footer .footer__menu .guideline {
  text-align: center;
  font-size: 0.8em;
}

@media print,
screen and (min-width: 751px) {
  .footer .footer__menu .guideline {
    text-align: left;
  }
}

.footer .footer__menu .btns {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  margin: 50px 0;
  font-size: 0.9em;
}

@media print,
screen and (min-width: 751px) {
  .footer .footer__menu .btns {
    flex-direction: column;
  }

  .footer .footer__menu .btns li {
    margin-bottom: 2vw;
  }
}

@media print,
screen and (min-width: 1101px) {
  .footer .footer__menu .btns {
    flex-direction: row;
    justify-content: start;
  }

  .footer .footer__menu .btns li {
    margin-bottom: 0;
  }
}

@media print,
screen and (min-width: 751px) {
  .footer .footer__menu .btns li {
    margin-right: 1vw;
  }
}

.footer .footer__menu .btns li a {
  display: block;
  text-align: center;
  color: var(--color-purple2);
  border-radius: 40px;
  border: 1px solid var(--color-purple2);
  padding: 20px 4vw;
}

@media print,
screen and (min-width: 1101px) {
  .footer .footer__menu .btns li a {
    padding: 20px;
    width: 210px;
  }
}

.footer .footer__menu .btns li a span {
  position: relative;
  padding-right: 33px;
}

.footer .footer__menu .btns li a span::before {
  content: "";
  position: absolute;
  top: calc(50% - 12px);
  left: 85%;
  -webkit-mask-image: url(../img/pc/icon-links-purple.svg);
  mask-image: url(../img/pc/icon-links-purple.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  background: var(--color-purple2);
  width: 100%;
  height: 24px;
}

@media print,
screen and (min-width: 751px) {
  .footer .footer__menu .btns li a span::before {
    left: 90%;
  }
}

.footer .footer__menu .btns li a:hover {
  color: white;
  background: var(--color-purple2);
}

.footer .footer__menu .btns li a:hover span::before {
  background-color: white;
}

@media print,
screen and (min-width: 1101px) {
  .footer .footer__menu .btns li:nth-child(2) a {
    width: 150px;
  }
}

.footer .footer__menu .btns li:nth-child(2) a span {
  padding: 0 0 0 33px;
}

.footer .footer__menu .btns li:nth-child(2) a span::before {
  top: calc(50% - 12px);
  left: -2%;
  -webkit-mask-image: url(../img/pc/icon-instagram_purple.svg);
  mask-image: url(../img/pc/icon-instagram_purple.svg);
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  background: var(--color-purple2);
  width: 100%;
  height: 24px;
}

.footer .footer__menu .btns li:nth-child(2) a:hover span::before {
  background: white;
}

.footer .inner .copyright {
  text-align: center;
  font-size: 1rem;
  font-family: var(--font-Bod);
  margin-bottom: 10px;
  color: var(--color-gray2);
}

@media print,
screen and (min-width: 751px) {
  .footer .inner .copyright {
    text-align: right;
    transform: scale(1.3, 1);
    transform-origin: top right;
  }
}

/* contents */
.mv {
  position: relative;
  margin-top: min(-40px, -20 / var(--max-viewport) * 100vw);
  overflow: hidden;
}

@media print,
screen and (min-width: 751px) {
  .mv {
    margin-top: min(-160px, -20 / var(--max-viewport) * 100vw);
  }
}

.mv picture {
  position: relative;
  overflow: hidden;
  display: block;
  border: 10px solid white;
  border-radius: 0 0 1000px 1000px/0 0 500px 500px;
  border-top: none;
  min-height: 300px;
  margin: 0 -200px;
}

@media print,
screen and (min-width: 751px) {
  .mv picture {
    height: 46vw;
  }
}

.mv picture::after {
  background-image: url(../img/hero.svg);
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-position: center bottom;
  background-repeat: no-repeat;
  position: absolute;
  left: 0px;
  bottom: -14vw;
}

@media print,
screen and (min-width: 751px) {
  .mv picture::after {
    background-image: url(../img/pc/hero.svg);
    width: 25vw;
    height: 25vw;
    bottom: auto;
    top: 11vw;
    left: min(400px, 400 / var(--max-viewport) * 100vw);
  }
}

@media print,
screen and (min-width: 1101px) {
  .mv picture::after {
    width: 33vw;
    height: 33vw;
    top: 3vw;
  }
}

.mv picture img {
  width: 100vw;
  position: relative;
  left: calc(50% - 50vw);
}

.section {
  padding-bottom: 50px;
}

.section01 {
  background: var(--bg-grad-y01);
  margin-top: calc(-100 / var(--max-viewport) * 100vw);
  padding-top: calc(200 / var(--max-viewport) * 100vw);
  padding-bottom: calc(200 / var(--max-viewport) * 100vw);
}

@media print,
screen and (min-width: 751px) {
  .section01 {
    margin-top: calc(-200 / var(--max-viewport) * 100vw);
    padding-top: calc(250 / var(--max-viewport) * 100vw);
    padding-bottom: calc(290 / var(--max-viewport) * 100vw);
  }
}

.section01 .title {
  font-size: 1.6em;
  font-weight: 500;
  text-align: center;
  color: var(--color-purple2);
  position: relative;
  line-height: 2;
}

.section01 .title .layout {
  position: relative;
}

@media print,
screen and (max-width: 750px) {
  .section01 .title .layout {
    display: block;
  }
}

.section01 .title .layout::before,
.section01 .title .layout::after {
  content: "";
  position: absolute;
  width: 43px;
  height: 93px;
}

@media print,
screen and (min-width: 751px) {

  .section01 .title .layout::before,
  .section01 .title .layout::after {
    width: 17px;
    height: 36px;
  }
}

.section01 .title .layout::before {
  left: 0;
  bottom: 0;
  background-image: url(../img/bg-sec01-before.png);
  background-repeat: no-repeat;
}

.section01 .title .layout::after {
  right: 0;
  bottom: 0;
  background-image: url(../img/bg-sec01-after.png);
  background-repeat: no-repeat;
}

@media print,
screen and (min-width: 751px) {
  .section01 .title .layout::before {
    left: -1em;
    background-image: url(../img/pc/bg-sec01-before.png);
  }
}

@media print,
screen and (min-width: 751px) {
  .section01 .title .layout::after {
    right: -1em;
    background-image: url(../img/pc/bg-sec01-after.png);
  }
}

.section01 .title .dots {
  position: relative;
}

.section01 .title .dots::before {
  content: "";
  position: absolute;
  top: -0.4em;
  left: calc(100% - 0.7em);
  width: 5px;
  height: 5px;
  background-image: url(../img/dots-sec01.svg);
}

.section01 .items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  text-align: center;
  margin: 20px auto 0;
  font-size: 1.6em;
  width: 80%;
}

@media print,
screen and (min-width: 751px) {
  .section01 .items {
    grid-template-columns: 16% 16% 16% 1fr;
    width: 75%;
    margin-top: 0;
    margin-bottom: 75px;
  }
}

@media print,
screen and (min-width: 1101px) {
  .section01 .items {
    width: 65%;
  }
}

.section01 .items li {
  color: #fff6e6;
  background-color: var(--color-purple1);
  padding: 0.5em;
  line-height: 1;
  border-radius: 30px;
  margin-top: 0.5em;
}

.section01 .items li span {
  position: relative;
  top: -0.1em;
  font-size: 0.7em;
  margin-right: 0.5em;
}

.section01 .items li:first-child {
  grid-row: 1;
  grid-column: 1;
  margin-right: 10%;
}

.section01 .items li:nth-child(2) {
  grid-row: 1;
  grid-column: 2;
  margin-right: 10%;
}

.section01 .items li:nth-child(3) {
  grid-row: 1;
  grid-column: 3;
}

.section01 .items li:last-child {
  grid-row: 2;
  grid-column: 1/span 3;
}

@media print,
screen and (min-width: 751px) {
  .section01 .items li:last-child {
    grid-row: 1;
    grid-column: 4;
    margin-left: 10px;
  }
}

.section01 .contents__box {
  margin-top: 20px;
  background-color: white;
  border-radius: 40px;
  padding: 30px;
  padding-bottom: 10vw;
  position: relative;
}

@media print,
screen and (min-width: 751px) {
  .section01 .contents__box {
    padding-bottom: 6vw;
  }
}

.section01 .contents__box::after {
  content: "";
  position: absolute;
  top: 3vw;
  right: 3vw;
  background-image: url(../img/sec01-nayami-img.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 40vw;
  height: 40vw;
}

@media print,
screen and (min-width: 751px) {
  .section01 .contents__box::after {
    background-image: url(../img/pc/sec01-nayami-img.png);
    width: 15vw;
    height: 15vw;
    top: -4.5vw;
    right: -4.5vw;
  }
}

@media print,
screen and (min-width: 1101px) {
  .section01 .contents__box::after {
    max-width: 216px;
    max-height: 216px;
  }
}

.section01 .contents__box h3 {
  font-size: 1.3em;
  line-height: 1.7;
}

@media print,
screen and (min-width: 751px) {
  .section01 .contents__box h3 {
    font-size: 1.5em;
    text-align: center;
  }
}

.section01 .contents__box ul {
  position: relative;
}

@media print,
screen and (min-width: 751px) {
  .section01 .contents__box ul {
    display: flex;
    justify-content: space-between;
    font-size: 1.5rem;
  }
}

.section01 .contents__box ul li {
  font-size: 0.9em;
  line-height: 1.7;
  position: relative;
  width: 50vw;
}

@media print,
screen and (min-width: 751px) {
  .section01 .contents__box ul li {
    padding: 20px 0;
  }
}

.section01 .contents__box ul li p {
  text-align: center;
  padding-top: calc(55 / var(--max-viewport) * 100vw);
  position: relative;
  z-index: 10;
}

@media print,
screen and (min-width: 751px) {
  .section01 .contents__box ul li p {
    font-size: 1em;
    padding-top: 2.5vw;
  }
}

@media print,
screen and (min-width: 1101px) {
  .section01 .contents__box ul li p {
    font-size: 16px;
    padding-top: 2vw;
  }
}

.section01 .contents__box ul li::before {
  content: "";
  position: absolute;
  z-index: 0;
  display: inline-block;
}

.section01 .contents__box ul li:first-child {
  top: 20px;
  left: 0;
}

@media print,
screen and (min-width: 751px) {
  .section01 .contents__box ul li:first-child {
    top: 0;
  }
}

.section01 .contents__box ul li:first-child::before {
  background-image: url(../img/sec01-nayami-fukidasi01.png);
  background-position: left top;
  background-size: contain;
  background-repeat: no-repeat;
  width: 50vw;
  height: 50vw;
}

@media print,
screen and (min-width: 751px) {
  .section01 .contents__box ul li:first-child::before {
    background-image: url(../img/pc/sec01-nayami-fukidasi01.png);
    width: 18vw;
    height: 18vw;
  }
}

@media print,
screen and (min-width: 1101px) {
  .section01 .contents__box ul li:first-child::before {
    max-width: 244px;
    max-height: 198px;
  }
}

.section01 .contents__box ul li:nth-child(2) {
  top: 10px;
  left: 40%;
}

@media print,
screen and (min-width: 751px) {
  .section01 .contents__box ul li:nth-child(2) {
    top: 0;
    left: 0;
  }
}

.section01 .contents__box ul li:nth-child(2)::before {
  z-index: 1;
  background-image: url(../img/sec01-nayami-fukidasi02.png);
  background-position: right top;
  background-size: contain;
  background-repeat: no-repeat;
  width: 50vw;
  height: 50vw;
}

@media print,
screen and (min-width: 751px) {
  .section01 .contents__box ul li:nth-child(2)::before {
    background-image: url(../img/pc/sec01-nayami-fukidasi02.png);
    width: 18vw;
    height: 18vw;
  }
}

@media print,
screen and (min-width: 1101px) {
  .section01 .contents__box ul li:nth-child(2)::before {
    max-width: 251px;
    max-height: 178px;
  }
}

.section01 .contents__box ul li:nth-child(3) {
  top: 0;
  left: 0;
}

.section01 .contents__box ul li:nth-child(3) p {
  padding-top: calc(65 / var(--max-viewport) * 100vw);
}

@media print,
screen and (min-width: 751px) {
  .section01 .contents__box ul li:nth-child(3) p {
    padding-top: 3vw;
  }
}

@media print,
screen and (min-width: 1101px) {
  .section01 .contents__box ul li:nth-child(3) p {
    padding-top: 2.5vw;
  }
}

.section01 .contents__box ul li:nth-child(3)::before {
  z-index: 2;
  background-image: url(../img/sec01-nayami-fukidasi03.png);
  background-position: left top;
  background-size: contain;
  background-repeat: no-repeat;
  width: 50vw;
  height: 50vw;
}

@media print,
screen and (min-width: 751px) {
  .section01 .contents__box ul li:nth-child(3)::before {
    background-image: url(../img/pc/sec01-nayami-fukidasi03.png);
    width: 18vw;
    height: 18vw;
  }
}

@media print,
screen and (min-width: 1101px) {
  .section01 .contents__box ul li:nth-child(3)::before {
    max-width: 254px;
    max-height: 196px;
  }
}

.section01 .contents__box ul li:last-child {
  top: -30px;
  left: 33%;
}

@media print,
screen and (min-width: 751px) {
  .section01 .contents__box ul li:last-child {
    top: 0;
    left: 0;
  }
}

.section01 .contents__box ul li:last-child p {
  padding-top: calc(75 / var(--max-viewport) * 100vw);
  padding-left: calc(95 / var(--max-viewport) * 100vw);
}

@media print,
screen and (min-width: 751px) {
  .section01 .contents__box ul li:last-child p {
    padding-top: 3.5vw;
    padding-left: 0;
  }
}

@media print,
screen and (min-width: 1101px) {
  .section01 .contents__box ul li:last-child p {
    padding-top: 2.5vw;
  }
}

.section01 .contents__box ul li:last-child::before {
  z-index: 1;
  background-image: url(../img/sec01-nayami-fukidasi04.png);
  background-position: right top;
  background-size: contain;
  background-repeat: no-repeat;
  width: 55vw;
  height: 55vw;
}

@media print,
screen and (min-width: 751px) {
  .section01 .contents__box ul li:last-child::before {
    background-image: url(../img/pc/sec01-nayami-fukidasi04.png);
    width: 18vw;
    height: 18vw;
  }
}

@media print,
screen and (min-width: 1101px) {
  .section01 .contents__box ul li:last-child::before {
    max-width: 227px;
    max-height: 193px;
  }
}

.section01 .ttl {
  margin-top: 50px;
  font-size: 1.4em;
  font-weight: 500;
  text-align: center;
  color: var(--color-purple2);
  position: relative;
  line-height: 1.65;
}

@media print,
screen and (min-width: 751px) {
  .section01 .ttl {
    margin-top: 88px;
  }
}

.section01 .ttl span {
  font-size: 0.8em;
}

.section01 .menus {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 40px 0;
}

@media print,
screen and (min-width: 751px) {
  .section01 .menus {
    width: 62vw;
    max-width: 1100px;
    margin: 45px auto 60px;
    font-size: 1.8rem;
  }
}

@media print,
screen and (min-width: 1101px) {
  .section01 .menus {
    width: 851px;
  }
}

.section01 .menus li {
  position: relative;
  width: 42vw;
  height: calc(42vw - 1em);
  margin-bottom: 20px;
  padding-top: 1em;
  background: white;
  border-radius: 50%;
  text-align: center;
  color: var(--color-purple1);
  font-size: 1.3em;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  line-height: 1.5;
}

@media print,
screen and (min-width: 751px) {
  .section01 .menus li {
    width: 14vw;
    height: calc(14vw - 1em);
    font-size: 1em;
  }
}

@media print,
screen and (min-width: 1101px) {
  .section01 .menus li {
    width: 200px;
    height: calc(200px - 1em);
    font-size: 24px;
  }
}

.section01 .menus li::before {
  content: "";
  position: absolute;
  top: 20px;
  left: calc(50% - 10px);
  background-image: url(../img/icon-star-sec01.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top center;
  width: 20px;
  height: 26px;
}

@media print,
screen and (min-width: 751px) {
  .section01 .menus li::before {
    top: 1vw;
    background-image: url(../img/pc/icon-star-sec01.png);
    width: 20px;
    height: 23px;
  }
}

.section01 .menus li:last-child {
  flex-direction: column;
}

.section01 .menus li span {
  position: relative;
  margin-right: 1em;
}

.section01 .menus li span::before {
  content: "";
  position: absolute;
  bottom: 0.2em;
  right: -0.9em;
  background-image: url(../img/icon-plus-sec01.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top center;
  width: 0.8em;
  height: 0.8em;
}

.section02 {
  overflow: hidden;
  margin-top: -20vw;
  text-align: center;
  padding-bottom: 0;
}

.section02 .overlay {
  margin: 0 -200px;
  border-radius: 1000px 1000px 0 0/500px 500px 0 0;
  min-height: 300px;
  background: var(--bg-grad-y02);
  padding-bottom: 50px;
}

@media print,
screen and (min-width: 751px) {
  .section02 .overlay {
    border-radius: 1100px 1100px 0 0/500px 500px 0 0;
    padding-bottom: 65px;
  }
}

.section02 h2 {
  color: var(--color-purple2);
  font-size: 1.5em;
  line-height: 1.7;
  margin-bottom: 20px;
  padding: 50px 0 20px;
}

.section02 h2 span {
  border-bottom: 5px dotted var(--color-purple2);
  display: inline-block;
  padding-bottom: 20px;
}

.section02 p {
  line-height: 2.35;
}

.section02 .contents__box {
  position: relative;
  margin-top: 50px;
  background-color: var(--color-purple1);
  border-radius: 40px;
  padding: 30px 30px 40px;
}

@media print,
screen and (min-width: 751px) {
  .section02 .contents__box {
    width: 62%;
    margin: 50px auto 0;
  }
}

@media print,
screen and (min-width: 1101px) {
  .section02 .contents__box {
    width: 62vw;
    max-width: 750px;
  }
}

.section02 .contents__box::before {
  content: "";
  position: absolute;
  background: url(../img/bg-sec02-before.png);
  background-size: contain;
  background-repeat: no-repeat;
  left: -5px;
  top: -10vw;
  width: 20vw;
  height: 25vw;
}

@media print,
screen and (min-width: 751px) {
  .section02 .contents__box::before {
    background-image: url(../img/pc/bg-sec02-before.png);
    max-width: 123px;
    max-height: 156px;
    top: auto;
    bottom: 2vw;
    left: -11vw;
  }
}

.section02 .contents__box::after {
  content: "";
  position: absolute;
  background: url(../img/bg-sec02-after.png);
  background-size: contain;
  background-repeat: no-repeat;
  right: -12px;
  top: -10vw;
  width: 20vw;
  height: 25vw;
}

@media print,
screen and (min-width: 751px) {
  .section02 .contents__box::after {
    background-image: url(../img/pc/bg-sec02-after.png);
    max-width: 114px;
    max-height: 147px;
    top: auto;
    bottom: 4vw;
    right: -10vw;
  }
}

.section02 .contents__box h3 {
  margin: 0 auto;
  width: 80%;
}

.section02 .contents__box ul {
  margin: 40px 0;
}

@media print,
screen and (min-width: 751px) {
  .section02 .contents__box ul {
    margin: 30px 0 10px;
    display: grid;
    grid-template-columns: 48% 48%;
    justify-content: space-between;
  }
}

.section02 .contents__box ul li {
  text-align: left;
  background: white;
  border-radius: 30px;
  padding: 1em;
  font-size: 1.2em;
  color: var(--color-purple2);
  margin-bottom: 20px;
}

@media print,
screen and (min-width: 751px) {
  .section02 .contents__box ul li {
    font-size: 0.9em;
  }
}

@media print,
screen and (min-width: 1101px) {
  .section02 .contents__box ul li {
    font-size: 1.2em;
  }
}

.section02 .contents__box ul li img {
  margin-right: 0.6em;
  width: 20px;
  vertical-align: middle;
}

.section02 .contents__box ul li span {
  position: relative;
  margin-right: 1em;
}

.section02 .contents__box ul li span::before {
  content: "";
  position: absolute;
  bottom: 0.25em;
  right: -0.9em;
  width: 0.8em;
  height: 0.8em;
  background-image: url(../img/icon-plus-sec02.svg);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: contain;
}

@media print,
screen and (min-width: 751px) {
  .section02 .contents__box ul li span::before {
    bottom: 0.25em;
    right: -0.9em;
    width: 0.8em;
    height: 0.8em;
  }
}

.section02 .contents__box .price {
  margin: 0 auto;
  width: 90%;
}

.section03 {
  background: var(--bg-grad-y03);
  padding-bottom: calc(200 / var(--max-viewport) * 100vw);
}

@media print,
screen and (min-width: 751px) {
  .section03 {
    padding-bottom: calc(350 / var(--max-viewport) * 100vw);
  }
}

.section03 p {
  font-size: 0.8em;
  text-align: center;
}

.section03 .contents__box {
  padding: 30px 0;
}

.section03 .contents__box h2 {
  text-align: center;
  font-size: 1.6em;
  color: var(--color-purple2);
  margin-bottom: 20px;
}

.section03 .contents__box h2 span {
  position: relative;
}

.section03 .contents__box h2 span::before {
  content: "";
  position: absolute;
  top: calc(50% - 8px);
  left: -20px;
  background-image: url(../img/icon-star-sec01.png);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 18px;
  height: 18px;
}

@media print,
screen and (min-width: 751px) {
  .section03 .contents__box h2 span::before {
    left: -30px;
    background-image: url(../img/pc/icon-star-sec01.png);
  }
}

.section03 .contents__box h2 span::after {
  content: "";
  position: absolute;
  top: calc(50% - 8px);
  right: -20px;
  background-image: url(../img/icon-star-sec01.png);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 18px;
  height: 18px;
}

@media print,
screen and (min-width: 751px) {
  .section03 .contents__box h2 span::after {
    right: -30px;
    background-image: url(../img/pc/icon-star-sec01.png);
  }
}

.section03 .contents__box h2 span img {
  width: 0.7em;
  margin: 0 0.2em 0.1em;
}

.section03 .contents__box .box {
  background: white;
  border-radius: 40px;
  padding: 30px;
  position: relative;
}

.section03 .contents__box .box h3 {
  color: var(--color-purple2);
  line-height: 1.8;
  font-size: 1.1em;
}

@media print,
screen and (min-width: 751px) {
  .section03 .contents__box .box h3 {
    text-align: center;
  }
}

.section03 .contents__box .box h3 span {
  border-bottom: 5px dotted var(--color-purple1);
  display: inline-block;
  padding-bottom: 10px;
}

.section03 .contents__box .box p {
  line-height: 1.8;
  font-size: 1em;
  text-align: left;
}

.section03 .contents__box .headings {
  display: flex;
  align-items: center;
  padding: 20px 0 10px;
}

.section03 .contents__box .headings dt {
  color: white;
  background-color: var(--color-purple1);
  padding: 0.3em 0.5em;
  margin-right: 0.5em;
  line-height: 1;
}

.section03 .contents__box .headings dd {
  line-height: 1;
}

@media print,
screen and (min-width: 751px) {
  .section03 .contents__box .outer__box {
    padding: 20px 1vw 0;
    display: grid;
    grid-template-columns: 40% 1fr;
    justify-content: space-between;
    font-size: 0.9em;
  }

  .section03 .contents__box .outer__box .inner__box .inner__box__special {
    display: grid;
    grid-template-columns: 19% 1fr;
    align-items: start;
  }

  .section03 .contents__box .outer__box .inner__box .inner__box__special p,
  .section03 .contents__box .outer__box .inner__box .inner__box__special .flex__list {
    padding-top: 20px;
  }
}

@media print,
screen and (min-width: 1101px) {
  .section03 .contents__box .outer__box .inner__box .inner__box__special {
    grid-template-columns: 18% 1fr;
    letter-spacing: -0.005em;
  }
}

@media print,
screen and (min-width: 751px) {
  .section03 .contents__box .outer__box__special {
    grid-template-columns: 30% 1fr;
    gap: 15px;
  }
}

.section03 .contents__box .list li {
  margin-bottom: 0.5em;
  line-height: 2;
  text-indent: -1em;
  padding-left: 1em;
  font-size: 0.95em;
}

@media print,
screen and (min-width: 751px) {
  .section03 .contents__box .list li {
    margin-bottom: 0;
    margin-right: 1em;
  }
}

@media print,
screen and (min-width: 751px) {
  .section03 .contents__box .list.flex__list {
    display: grid;
    justify-content: start;
    display: grid;
    justify-content: start;
    grid-template-rows: repeat(3, 1fr);
    grid-template-columns: calc(50% - 1em) calc(50% - 1em);
  }
}

@media print,
screen and (min-width: 751px) {
  .section03 .contents__box .list.flex__list.reverse {
    flex-direction: column;
  }
}

@media print,
screen and (min-width: 751px) {
  .section03 .contents__box .list.flex__list__overflow {
    display: grid;
    justify-content: start;
    display: grid;
    justify-content: start;
    grid-template-rows: repeat(3, 1fr);
    grid-template-columns: calc(52% - 1em) calc(67% - 1em);
  }
}

@media print,
screen and (min-width: 751px) {
  .section03 .contents__box.content01 {
    padding-top: 80px;
  }
}

.section03 .contents__box.content01 .box::before {
  content: "";
  position: absolute;
  top: 30px;
  right: 30px;
  background-image: url(../img/bg-sec03-01.png);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 77px;
  height: 120px;
}

@media print,
screen and (min-width: 751px) {
  .section03 .contents__box.content01 .box::before {
    top: -5vw;
    right: 2vw;
    background-image: url(../img/pc/bg-sec03-01.png);
    width: 8vw;
    height: 156px;
  }
}

@media print,
screen and (min-width: 1101px) {
  .section03 .contents__box.content01 .box::before {
    top: -4vw;
    right: 3vw;
    width: 100px;
  }
}

.section03 .contents__box.content02 .box {
  background: #fffff1;
}

.section03 .contents__box.content02 .box::before {
  content: "";
  position: absolute;
  top: 55px;
  right: 30px;
  background-image: url(../img/bg-sec03-02.png);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 112px;
  height: 73px;
}

@media print,
screen and (min-width: 751px) {
  .section03 .contents__box.content02 .box::before {
    top: -1vw;
    right: auto;
    left: -0.1vw;
    background-image: url(../img/pc/bg-sec03-02.png);
    width: 10vw;
    height: 98px;
  }
}

@media print,
screen and (min-width: 1101px) {
  .section03 .contents__box.content02 .box::before {
    top: -1.1vw;
    right: auto;
    left: -0.5vw;
    width: 149px;
  }
}

.section03 .contents__box.content03 .box::before {
  content: "";
  position: absolute;
  top: 30px;
  right: 50px;
  background-image: url(../img/bg-sec03-03.png);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 80px;
  height: 180px;
}

@media print,
screen and (min-width: 751px) {
  .section03 .contents__box.content03 .box::before {
    top: -5vw;
    right: 1vw;
    background-image: url(../img/pc/bg-sec03-03.png);
    width: 8vw;
    height: 174px;
  }
}

@media print,
screen and (min-width: 1101px) {
  .section03 .contents__box.content03 .box::before {
    top: -4vw;
    right: 1vw;
    width: 110px;
  }
}

.section03 .contents__box.content04 .box {
  background: #fffff1;
}

.section03 .contents__box.content04 .box::before {
  content: "";
  position: absolute;
  top: 20px;
  right: 40px;
  background-image: url(../img/bg-sec03-04.png);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 100px;
  height: 100px;
}

@media print,
screen and (min-width: 751px) {
  .section03 .contents__box.content04 .box::before {
    top: -1vw;
    right: 1vw;
    background-image: url(../img/pc/bg-sec03-04.png);
    width: 11vw;
    height: 168px;
  }
}

@media print,
screen and (min-width: 1101px) {
  .section03 .contents__box.content04 .box::before {
    top: -2vw;
    right: 1vw;
    width: 182px;
  }
}

.guidebook__box {
  color: #ffffd2;
  background: var(--color-purple2);
  border-radius: 40px;
  padding: 70px 30px 40px;
  margin-top: 80px;
  position: relative;
}

@media print,
screen and (min-width: 751px) {
  .guidebook__box {
    width: 61%;
    margin: 60px auto 0;
    padding: 30px;
  }
}

@media print,
screen and (min-width: 1101px) {
  .guidebook__box {
    margin: 100px auto 0;
    padding: 50px 30px 30px;
    width: 718px;
  }
}

.guidebook__box::before {
  content: "";
  position: absolute;
  top: -45px;
  left: 10%;
  background-image: url(../img/ribbon-guidebook.png);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 80%;
  min-height: 100px;
}

@media print,
screen and (min-width: 751px) {
  .guidebook__box::before {
    top: -3.5vw;
    left: calc(50% - 12vw);
    background-image: url(../img/pc/ribbon-guidebook.png);
    width: 24vw;
    height: 98px;
    min-height: auto;
  }
}

@media print,
screen and (min-width: 1101px) {
  .guidebook__box::before {
    top: -4vw;
    left: calc(50% - 189px);
    width: 377px;
  }
}

.guidebook__box::after {
  content: "";
  position: absolute;
  bottom: 20px;
  right: 0;
  background-image: url(../img/guidebook.png);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: contain;
  min-width: 150px;
  min-height: 200px;
}

@media print,
screen and (min-width: 751px) {
  .guidebook__box::after {
    bottom: auto;
    top: calc(50% - 7vw);
    right: -5vw;
    background-image: url(../img/pc/guidebook.png);
    width: 20vw;
    height: 176px;
    min-height: auto;
  }
}

@media print,
screen and (min-width: 1101px) {
  .guidebook__box::after {
    top: calc(50% - 88px);
    max-width: 285px;
  }
}

.guidebook__box p {
  text-align: left;
  font-size: 1.2em;
  line-height: 1.8;
}

@media print,
screen and (min-width: 751px) {
  .guidebook__box p {
    text-align: center;
    font-size: 1.8em;
  }
}

p.btn__line {
  margin-top: 1em;
}

@media print,
screen and (min-width: 751px) {
  p.btn__line {
    font-size: 1.2em;
  }
}

p.btn__line a {
  display: inline-block;
  padding: 1em 3em 1em 1em;
  color: var(--color-purple2);
  background: white;
  border-radius: 50px;
  font-size: 0.8em;
  position: relative;
  border: 1px solid var(--color-purple2);
}

@media print,
screen and (min-width: 751px) {
  p.btn__line a {
    padding: 1em 4.5em;
  }
}

@media print,
screen and (min-width: 1101px) {
  p.btn__line a {
    width: calc(265px - 2em);
    text-align: center;
    padding: 1em;
  }
}

p.btn__line a:after {
  content: "";
  position: absolute;
  top: calc(50% - 10px);
  right: 10px;
  background-image: url(../img/icon-links-purple.png);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
}

@media print,
screen and (min-width: 751px) {
  p.btn__line a:after {
    -webkit-mask-image: url(../img/pc/icon-links-purple.svg);
    mask-image: url(../img/pc/icon-links-purple.svg);
    -webkit-mask-position: top center;
    mask-position: top center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
    background: var(--color-purple2);
    right: 20px;
  }
}

p.btn__line a:hover {
  background: var(--color-purple2);
  color: white;
  border-color: white;
}

p.btn__line a:hover:after {
  background: white;
}

.section04 {
  overflow: hidden;
  margin-top: -20vw;
  padding-bottom: 0;
}

.section04 .overlay {
  margin: 0 -200px;
  border-radius: 1100px 1100px 0 0/500px 500px 0 0;
  min-height: 300px;
  background: var(--bg-grad-y02);
  padding-bottom: 50px;
}

@media print,
screen and (min-width: 751px) {
  .section04 .overlay {
    padding-bottom: 70px;
  }
}

.section04 h2 {
  color: var(--color-purple2);
  font-size: 1.5em;
  line-height: 1.7;
  padding: 50px 0 0;
  text-align: center;
}

.section04 .flow {
  border-bottom: 1px solid var(--color-purple2);
  padding: calc(40 / var(--max-viewport) * 100vw) 0;
}

@media print,
screen and (min-width: 751px) {
  .section04 .flow {
    max-width: 900px;
    margin: 0 auto;
  }
}

.section04 .flow p {
  font-size: 1em;
}

.section04 .flow p span {
  font-family: var(--font-Bod);
  font-size: 1.5em;
  margin-right: 0.5em;
  display: inline-block;
}

@media print,
screen and (min-width: 751px) {
  .section04 .flow p span {
    font-size: 1.2em;
  }
}

.section04 .flow p.title {
  color: var(--color-purple1);
  font-size: 1.3em;
}

.section04 .flow ul {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  flex-wrap: wrap;
  padding: calc(30 / var(--max-viewport) * 100vw) 0;
}

@media print,
screen and (min-width: 751px) {
  .section04 .flow ul {
    display: grid;
    grid-template-columns: 20% 1fr;
    padding: 0 20px;
  }
}

.section04 .flow ul li {
  width: 70%;
  line-height: 2.35;
}

@media print,
screen and (min-width: 751px) {
  .section04 .flow ul li {
    width: auto;
  }
}

.section04 .flow ul li:first-child {
  padding-top: calc(30 / var(--max-viewport) * 100vw);
  text-align: right;
  width: 30%;
}

@media print,
screen and (min-width: 751px) {
  .section04 .flow ul li:first-child {
    padding-top: calc(20 / var(--max-viewport) * 100vw);
    width: auto;
    text-align: left;
  }
}

.section04 .flow img {
  width: calc(150 / var(--max-viewport) * 100vw);
}

@media print,
screen and (min-width: 751px) {
  .section04 .flow img {
    width: auto;
  }
}

.section04 .flow dl {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
}

@media print,
screen and (min-width: 751px) {
  .section04 .flow dl {
    justify-content: start;
    margin-top: calc(20 / var(--max-viewport) * 100vw);
  }
}

.section04 .flow dl dt {
  margin-right: calc(30 / var(--max-viewport) * 100vw);
}

.section04 .flow dl dd img {
  max-width: 90px;
}

.section04 .flow .btn__line a {
  border: 1px solid var(--color-purple2);
  color: var(--color-purple2);
}

.section04 .flow .btn__line a:hover {
  color: white;
  border-color: white;
}

.section05 {
  background: var(--bg-grad-y03);
  padding-bottom: calc(200 / var(--max-viewport) * 100vw);
}

@media print,
screen and (min-width: 751px) {
  .section05 {
    padding-bottom: calc(300 / var(--max-viewport) * 100vw);
  }
}

.section05 h2 {
  color: var(--color-purple2);
  font-size: 1.5em;
  line-height: 1.7;
  padding: 50px 0 calc(100 / var(--max-viewport) * 100vw);
  text-align: center;
}

@media print,
screen and (min-width: 751px) {
  .section05 h2 {
    padding-bottom: calc(50 / var(--max-viewport) * 100vw);
  }
}

@media print,
screen and (min-width: 751px) {
  .section05 ul {
    display: grid;
    grid-template-columns: 48% 48%;
    justify-content: space-between;
  }
}

.section05 ul li {
  background: white;
  border-radius: 40px;
  padding: 30px;
  margin: 10px 0 60px;
  position: relative;
  line-height: 2.35;
}

@media print,
screen and (min-width: 751px) {
  .section05 ul li p {
    line-height: 1.875;
  }
}

.section05 ul li .title {
  border-bottom: 5px dotted var(--color-purple1);
  margin-bottom: 20px;
  padding: 65px 0 20px;
  position: relative;
}

@media print,
screen and (min-width: 751px) {
  .section05 ul li .title {
    width: 40%;
    margin-left: auto;
    padding: 0 0 10px;
    font-size: 0.9em;
  }
}

@media print,
screen and (min-width: 1101px) {
  .section05 ul li .title {
    width: 45%;
    font-size: 1em;
  }
}

.section05 ul li::before {
  content: "";
  position: absolute;
  top: -50px;
  left: -5px;
  background-image: url(../img/fukidasi-sec05-01.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 185px;
  height: 123px;
}

@media print,
screen and (min-width: 751px) {
  .section05 ul li::before {
    top: -30px;
    left: -30px;
    background-image: url(../img/pc/fukidasi-sec05-01.png);
    width: 24vw;
    height: 12vw;
    max-height: 158px;
  }
}

@media print,
screen and (min-width: 1101px) {
  .section05 ul li::before {
    max-width: 315px;
  }
}

.section05 ul li::after {
  content: "";
  position: absolute;
  top: 6px;
  right: 5px;
  background-image: url(../img/bg-sec05.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 120px;
  height: 160px;
}

@media print,
screen and (min-width: 751px) {
  .section05 ul li::after {
    background: none;
  }
}

.section05 ul li:last-child::before {
  background-image: url(../img/fukidasi-sec05-02.png);
}

@media print,
screen and (min-width: 751px) {
  .section05 ul li:last-child::before {
    background-image: url(../img/pc/fukidasi-sec05-02.png);
  }
}

.section06 {
  overflow: hidden;
  margin-top: -20vw;
  padding-bottom: 0;
}

.section06 .overlay {
  margin: 0 -200px;
  border-radius: 1100px 1100px 0 0/500px 500px 0 0;
  min-height: 300px;
  background: var(--bg-grad-y02);
  padding-bottom: 50px;
}

@media print,
screen and (min-width: 751px) {
  .section06 .overlay {
    padding-bottom: 20px;
  }
}

.section06 h2 {
  color: var(--color-purple2);
  font-size: 1.5em;
  line-height: 1.7;
  padding: 50px 0 30px;
  text-align: center;
}

@media print,
screen and (min-width: 751px) {
  .section06 h2 {
    padding-top: 80px;
  }
}

.section06 p {
  line-height: 2.35;
  text-align: center;
}

@media print,
screen and (min-width: 751px) {
  .section06 p {
    line-height: 1.75;
  }
}

.section06 .trainer_card-list,
.section06 .cousultant__list {
  width: 80%;
}

.section06 .trainer_card-list ul li,
.section06 .cousultant__list ul li {
  display: block;
  border: 1px solid var(--color-pink1);
  overflow: hidden;
  border-top-right-radius: calc(230 / var(--max-viewport) * 100vw);
  border-top-left-radius: calc(230 / var(--max-viewport) * 100vw);
  border-bottom-right-radius: 3rem;
  border-bottom-left-radius: 3rem;
  box-sizing: border-box;
  background-color: white;
}

.section06 .trainer_card-list ul li dl,
.section06 .cousultant__list ul li dl {
  text-align: center;
  padding: 1.5em 1em;
}

@media print,
screen and (min-width: 751px) {

  .section06 .trainer_card-list ul li dl,
  .section06 .cousultant__list ul li dl {
    padding: 1.5em 40px;
  }
}

.section06 .trainer_card-list ul li dl dt,
.section06 .cousultant__list ul li dl dt {
  color: var(--color-purple2);
  border-bottom: 1px solid var(--color-purple2);
  padding-bottom: 0.5em;
}

@media print,
screen and (min-width: 751px) {

  .section06 .trainer_card-list ul li dl dt,
  .section06 .cousultant__list ul li dl dt {
    font-size: 1.6rem;
  }
}

.section06 .trainer_card-list ul li dl .trainer_card-name,
.section06 .cousultant__list ul li dl .trainer_card-name {
  font-size: 1.5rem;
  padding: 1.25em 0;
}

@media print,
screen and (min-width: 751px) {

  .section06 .trainer_card-list ul li dl .trainer_card-name,
  .section06 .cousultant__list ul li dl .trainer_card-name {
    font-size: 1.8rem;
  }
}

.section06 .trainer_card-list ul li dl .trainer_card-name--en,
.section06 .cousultant__list ul li dl .trainer_card-name--en {
  font-size: 1rem;
  color: var(--color-gray3);
  font-family: var(--font-Bod);
  transform: scale(1.3, 1);
}

@media print,
screen and (min-width: 751px) {

  .section06 .trainer_card-list ul li dl .trainer_card-name--en,
  .section06 .cousultant__list ul li dl .trainer_card-name--en {
    font-size: 1.5rem;
  }
}

.section06 .cousultant__list {
  width: 100%;
}

.section06 .cousultant__list ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5%;
  margin-top: 30px;
}

@media print,
screen and (min-width: 751px) {
  .section06 .cousultant__list ul {
    margin-top: 50px;
  }
}

.section06 .cousultant__list ul li {
  width: 30%;
  border-top-right-radius: calc(110 / var(--max-viewport) * 100vw);
  border-top-left-radius: calc(110 / var(--max-viewport) * 100vw);
  margin-bottom: 2vw;
}

.section06 .slide__wrapper {
  position: relative;
  margin-top: 30px;
}

.section06 .slide__wrapper .swiper-button-next,
.section06 .slide__wrapper .swiper-button-prev {
  perspective: 500px;
}

.section06 .slide__wrapper .swiper-button-next svg,
.section06 .slide__wrapper .swiper-button-prev svg {
  fill: var(--color-purple2);
  color: var(--color-purple2);
}

.section06 .slide__wrapper .swiper-button-prev {
  left: calc(-20 / var(--max-viewport) * 100vw);
}

.section06 .slide__wrapper .swiper-button-next {
  right: calc(-20 / var(--max-viewport) * 100vw);
}

.section07 {
  background: var(--bg-grad-y03);
  padding: 50px 0;
}

@media print,
screen and (min-width: 751px) {
  .section07 {
    padding-bottom: 80px;
  }
}

.section07 h2 {
  color: var(--color-purple2);
  font-size: 1.5em;
  line-height: 1.7;
  padding: 50px 0 30px;
  text-align: center;
}

.section07 h3 {
  color: var(--color-purple2);
  text-align: center;
  font-size: 1.5em;
  line-height: 2;
  padding: 30px 0;
}

@media print,
screen and (min-width: 751px) {
  .section07 h3 {
    padding-top: 3vw;
    line-height: 1;
  }
}

.section07 h3 img {
  width: calc(235 / var(--max-viewport) * 100vw);
}

@media print,
screen and (min-width: 751px) {
  .section07 h3 img {
    width: auto;
  }
}

.section07 .box {
  background: white;
  border-radius: 40px;
  padding: 30px;
  position: relative;
  line-height: 2.35;
}

@media print,
screen and (min-width: 751px) {
  .section07 .box {
    display: grid;
    grid-template-columns: 1fr 30%;
    padding: 3vw;
  }
}

.section07 .box li p {
  margin-bottom: 20px;
}

@media print,
screen and (min-width: 751px) {
  .section07 .box li p {
    line-height: 1.7;
  }
}

.section07 .box li p.operation__img {
  margin-bottom: 50px;
}

@media print,
screen and (min-width: 751px) {
  .section07 .box li p.operation__img {
    margin-bottom: 0;
  }
}

.section07 .box li p.operation__img img {
  width: calc(420 / var(--max-viewport) * 100vw);
}

@media print,
screen and (min-width: 751px) {
  .section07 .box li p.operation__img img {
    max-width: 220px;
  }
}

.section07 .box li .title {
  text-align: center;
  color: var(--color-purple1);
  padding-bottom: 30px;
}

@media print,
screen and (min-width: 751px) {
  .section07 .box li .title {
    text-align: left;
    padding-bottom: 10px;
  }
}

.section07 .box li .title span {
  padding-bottom: 20px;
  border-bottom: 5px dotted var(--color-purple1);
  font-size: 1.2em;
}

@media print,
screen and (min-width: 751px) {
  .section07 .box li .title span {
    display: block;
  }
}

.section07 .box li .title img {
  width: calc(235 / var(--max-viewport) * 100vw);
  vertical-align: top;
  margin-right: 0.5em;
}

@media print,
screen and (min-width: 751px) {
  .section07 .box li .title img {
    width: auto;
  }
}

.section07 .box li .headings {
  color: var(--color-purple1);
  font-size: 1.2em;
}

.section07 .menu .menu__item {
  cursor: pointer;
  display: block;
  margin-bottom: 1em;
  position: relative;
  line-height: 1.7;
}

.section07 .menu .menu__item .menu__item__link {
  background: white;
  color: var(--color-purple2);
  display: block;
  padding: 1em 3em 1em 3em;
  position: relative;
  border-radius: 20px;
}

@media print,
screen and (min-width: 751px) {
  .section07 .menu .menu__item .menu__item__link {
    border-radius: 60px;
  }
}

.section07 .menu .menu__item .menu__item__link::before {
  content: "Q";
  color: var(--color-purple1);
  font-family: var(--font-Bod);
  font-size: 1.2em;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  padding: 0.6em 1em;
}

.section07 .menu .menu__item .menu__item__link::after {
  color: var(--color-purple1);
  box-sizing: border-box;
  content: "＋";
  display: block;
  padding: 10px;
  position: absolute;
  right: 0;
  top: calc(50% - 35px);
  font-size: 1.5em;
}

@media print,
screen and (min-width: 751px) {
  .section07 .menu .menu__item .menu__item__link::after {
    top: calc(50% - 27px);
  }
}

@media print,
screen and (min-width: 1101px) {
  .section07 .menu .menu__item .menu__item__link::after {
    top: calc(50% - 35px);
  }
}

.section07 .menu .menu__item .menu__item__link.on::after {
  content: "－";
}

.section07 .menu .menu__item .submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.7s ease-out;
}

.section07 .menu .menu__item .submenu .submenu__item {
  margin: 1em 0;
  padding: 1em 0 1em 3em;
  position: relative;
}

.section07 .menu .menu__item .submenu .submenu__item::before {
  content: "A";
  color: var(--color-purple1);
  font-family: var(--font-Bod);
  font-size: 1.2em;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  padding: 0.6em 1em;
}

.section07 .menu .menu__item .submenu.on {
  max-height: 20em;
}

.section07 .bottom__contents {
  position: relative;
  text-align: center;
  line-height: 2;
  padding-bottom: calc(330 / var(--max-viewport) * 100vw);
}

@media print,
screen and (min-width: 751px) {
  .section07 .bottom__contents {
    padding-bottom: 0;
  }
}

.section07 .bottom__contents::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -1vw;
  background-image: url(../img/bg-sec06.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 100%;
  height: 175px;
}

@media print,
screen and (min-width: 751px) {
  .section07 .bottom__contents::before {
    background-image: url(../img/pc/bg-sec06-before.png);
    width: 12vw;
    height: 12vw;
    max-height: 210px;
  }
}

@media print,
screen and (min-width: 751px) {
  .section07 .bottom__contents::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: -1vw;
    background-image: url(../img/pc/bg-sec06-after.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 10vw;
    height: 15vw;
    max-height: 295px;
  }
}

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

/* 20251224追加 */
.all-matome {
  color: #ffffd2;
  line-height: 1.8;
  font-size: 1.3em;
  margin-bottom: 0.5em;
  display: inline-block;
}


/* 20251224：子育てガイドブック画像 */
.guidebook__box::after {
  display: none !important;
}
.guidebook__box__img {
	position: absolute;
	bottom: 1.5rem;
	right: calc(10vw - 40px);
	width: 12.0rem;
  max-width: 150px;
	height: auto;
}
@media print, screen and (min-width: 751px) {
	.guidebook__box__img {
		bottom: auto;
		top: calc(50% - 7vw);
		right: -5vw;
		width: 20vw;
	}
}
@media print, screen and (min-width: 1101px) {
	.guidebook__box__img {
		top: calc(50% - 88px);
		right: -9.6rem;
		max-width: 285px;
	}
}


.guidebook__box::before {
  display: none !important;
}
.guidebook__box__ribbon {
	position: absolute;
	top: -4.5rem;
	left: 0;
  right: 0;
  margin: auto;
	width: 80%;
	height: auto;
}
@media print, screen and (min-width: 751px) {
	.guidebook__box__ribbon {
		top: -3.5vw;
    width: 24vw;
	}
}
@media print, screen and (min-width: 1101px) {
	.guidebook__box__ribbon {
		top: -8.0rem;
		width: 377px;
	}
}

/* 20251225：ご利用者様の声：画像の表示方法を変更 */
.section05 ul li:after {
  display: none !important;
}
.voice__person {
	position: absolute;
	top: 6px;
	right: 5px;
	width: 120px;
	height: auto;
}
@media print, screen and (min-width: 751px) {
	.voice__person {
		display: none;
	}
}
.section05 ul li::before {
  display: none !important;
}
.voice__fukidasi {
	position: absolute;
	top: -50px;
	left: -5px;
	width: 185px;
	height: auto;
}
@media print, screen and (min-width: 751px) {
	.voice__fukidasi {
		top: -30px;
		left: -30px;
		width: 24vw;
		max-height: 158px;
	}
}
@media print, screen and (min-width: 1101px) {
	.voice__fukidasi {
		max-width: 315px;
	}
}

