@charset "UTF-8";
/* stylesheet */
/* A Modern CSS Reset */
@import url("https://fonts.googleapis.com/css2?family=Dela+Gothic+One&family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

ul[role=list],
ol[role=list] {
  list-style: none;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

img,
picture {
  max-width: 100%;
  display: block;
}

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

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
@media (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
/*------------------------------------------------------
 Base
------------------------------------------------------*/
html {
  scroll-behavior: smooth;
  overflow-x: clip;
}
@media (max-width: 767px) {
  html.fixed {
    overflow: hidden;
  }
}

body {
  color: #333;
  background-color: #FFF8F3;
  width: 100%;
  min-height: 100vh;
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 18px;
  position: relative;
  overflow-x: clip;
}
body::before {
  content: "";
  width: 100%;
  height: auto;
  aspect-ratio: 1920/1087;
  background-image: url("../img/mv_texture02.png");
  background-size: contain;
  background-position: 0 0;
  background-repeat: no-repeat;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  z-index: -1;
  mix-blend-mode: color-burn;
  pointer-events: none;
}
@media (max-width: 767px) {
  body {
    font-size: 4.8vw;
  }
  body::before {
    width: 452.8vw;
    aspect-ratio: 1920/1087;
    z-index: -1;
  }
}

h1 {
  font-family: "Zen Kaku Gothic New";
  font-weight: bold;
  font-size: 80px;
  line-height: 1.5;
  text-align: left;
  color: #006f79;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
h1 span {
  font-family: "Dela Gothic One", sans-serif;
  font-size: 24px;
  letter-spacing: 0.04em;
  line-height: 36px;
  text-align: left;
  color: #006f79;
  opacity: 0.3;
}
@media (max-width: 767px) {
  h1 {
    font-size: 12.8vw;
    line-height: 1.375;
    gap: 6.4vw;
  }
  h1 span {
    font-size: 5.3333333333vw;
    line-height: 1.5;
  }
}

h2 {
  font-family: "Zen Kaku Gothic New";
  font-weight: 900;
  font-size: 60px;
  text-align: center;
  color: #006f79;
  line-height: 1.45;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
h2 span {
  font-family: "Dela Gothic One";
  font-size: 24px;
  letter-spacing: 0.04em;
  line-height: 1.5;
  color: #006f79;
  opacity: 0.3;
  display: inline-block;
}
@media (max-width: 767px) {
  h2 {
    font-size: 10.6666666667vw;
    line-height: 1.5;
    gap: 2.1333333333vw;
  }
  h2 span {
    font-size: 5.3333333333vw;
  }
}

h3 {
  font-weight: 900;
  font-size: 42px;
  line-height: 1.1904761905;
  text-align: center;
  color: #ec6d81;
}
h3 span {
  font-size: 28px;
}
@media (max-width: 767px) {
  h3 {
    font-size: 6.4vw;
    line-height: 1.25;
    letter-spacing: -0.04em;
  }
  h3 span {
    font-size: 5.6vw;
  }
}

h4 {
  font-family: "Zen Kaku Gothic New";
  font-weight: bold;
  font-size: 32px;
  line-height: 1.5;
  text-align: left;
  color: #000;
}
@media (max-width: 767px) {
  h4 {
    font-size: 6.4vw;
  }
}

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

button {
  cursor: pointer;
}

iframe img {
  width: inherit;
  height: inherit;
}

/* header
================================================ */
.header {
  position: absolute;
  display: flex;
  justify-content: space-between;
  padding: 0 40px;
  top: 40px;
  z-index: 100;
  width: 100%;
}
.header .logo {
  width: 224px;
  transition: all ease-out 0.3s;
}
@media (hover: hover) {
  .header .logo:hover {
    opacity: 0.6;
  }
}
.header .btn-request {
  height: 70px;
  border-radius: 24px;
  background: #e50012;
  display: inline-flex;
  align-items: center;
  color: #fff;
  font-weight: 500;
  font-size: 22px;
  padding: 0 17px;
  transition: all ease-out 0.3s;
  gap: 11px;
  text-decoration: none;
}
.header .btn-request::before {
  content: "";
  width: 32px;
  height: 32px;
  background-image: url("../img/icon_docs.svg");
  background-size: contain;
  background-position: 0 0;
  background-repeat: no-repeat;
  display: inline-block;
}
@media (hover: hover) {
  .header .btn-request:hover {
    opacity: 0.6;
  }
}
.header .btn-menu {
  position: fixed;
  top: 40px;
  right: 40px;
  z-index: 100;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.header .btn-menu-open {
  height: 70px;
  width: 70px;
  position: relative;
  background-color: transparent;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: "Dela Gothic One";
  font-weight: normal;
  font-size: 10px;
  border: none;
  gap: 6px;
  line-height: 1;
  transition: all ease-out 0.3s;
}
.header .btn-menu-open::after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 24px;
  background: #e50012;
  position: absolute;
  z-index: -1;
  transition: all ease-out 0.3s;
}
.header .btn-menu-open .line {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all ease-out 0.3s;
  gap: 6px;
}
.header .btn-menu-open .line > span {
  width: 40px;
  height: 2px;
  border-radius: 1px;
  background: #fff;
  transition: all ease-out 0.3s;
  display: inline-block;
}
@media (hover: hover) {
  .header .btn-menu-open:hover::after {
    transform: rotate(135deg);
  }
  .header .btn-menu-open:hover .line {
    gap: 4px;
  }
  .header .btn-menu-open:hover .line > span:nth-child(1) {
    margin-top: 2px;
  }
  .header .btn-menu-open:hover .line > span:nth-child(3) {
    margin-bottom: 2px;
  }
}
.header .btn-menu-close {
  height: 70px;
  width: 70px;
  position: absolute;
  background-color: transparent;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: "Dela Gothic One";
  font-weight: normal;
  font-size: 10px;
  border: none;
  gap: 6px;
  line-height: 1;
  transition: all ease-out 0.3s;
  top: 3.90625vw;
  right: 1.5625vw;
  z-index: 2;
}
.header .btn-menu-close::after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 24px;
  background: #00B3C4;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all ease-out 0.3s;
  transform: rotate(135deg);
}
.header .btn-menu-close .line {
  display: block;
  transition: all ease-out 0.3s;
  width: 21px;
  height: 21px;
  position: relative;
}
.header .btn-menu-close .line > span {
  width: 27px;
  height: 2px;
  border-radius: 1px;
  background: #fff;
  transition: all ease-out 0.3s;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
}
.header .btn-menu-close .line > span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.header .btn-menu-close .line > span:nth-child(2) {
  transform: translate(-50%, -50%) rotate(45deg);
}
@media (hover: hover) {
  .header .btn-menu-close:hover {
    opacity: 0.6;
  }
}
.header .header-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 86px;
}
.header .menu-area01 {
  position: absolute;
  top: -150vh;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 100vh;
  padding-right: 114px;
  width: max-content;
  z-index: 101;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: all ease-out 0.6s;
}
.header .menu-area01::after {
  content: "";
  width: 200%;
  height: 150vh;
  background: #a5e1e4;
  border-radius: 50%;
  position: absolute;
  right: -54%;
  bottom: -3.90625vw;
  z-index: 1;
}
.header .menu-area01.active {
  top: -45px;
  opacity: 1;
  pointer-events: all;
  visibility: inherit;
}
.header .menu-area01 .chara03 {
  width: 15.625vw;
  position: absolute;
  right: 135%;
  top: 10vh;
  z-index: -1;
  transform: translateX(100%);
  transition: 0.3s all ease-out;
}
@media (hover: hover) {
  .header .menu-area01 .inner:hover .chara03 {
    transform: translateX(0);
  }
}
.header .menu-list01 {
  display: flex;
  flex-direction: column;
  gap: 1.6666666667vw;
  list-style: none;
  position: relative;
  z-index: 2;
}
.header .menu-list01 a {
  font-weight: 900;
  font-size: min(3.125vw, 60px);
  color: #006f79;
  text-decoration: none;
  display: block;
  position: relative;
}
.header .menu-list01 a::before {
  content: "";
  width: 2.7604166667vw;
  height: 2.9166666667vw;
  background-image: url("../img/icon_star.svg");
  background-size: contain;
  background-position: 0 0;
  background-repeat: no-repeat;
  position: absolute;
  right: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: all ease-out 0.3s;
}
@media (hover: hover) {
  .header .menu-list01 a:hover::before {
    opacity: 1;
  }
}
@media (max-width: 767px) {
  .header {
    padding: 0 5.3333333333vw;
    top: 8vw;
  }
  .header .logo {
    width: 45.0666666667vw;
  }
  .header .btn-request {
    width: 12vw;
    height: 12vw;
    border-radius: 3.2vw;
    flex-direction: column;
    justify-content: center;
    font-size: 2.4vw;
    padding: 0;
    gap: 0.2666666667vw;
    font-weight: 900;
  }
  .header .btn-request::before {
    content: "";
    width: 5.8666666667vw;
    height: 5.8666666667vw;
  }
  .header .btn-menu {
    position: fixed;
    top: 8vw;
    right: 5.3333333333vw;
    width: 12vw;
    height: 12vw;
  }
  .header .btn-menu-open {
    width: 12vw;
    height: 12vw;
    font-size: 2.1333333333vw;
    gap: 2.1333333333vw;
    transition: all ease-out 0.3s;
  }
  .header .btn-menu-open::after {
    border-radius: 3.2vw;
  }
  .header .btn-menu-open .line {
    gap: 1.0666666667vw;
  }
  .header .btn-menu-open .line > span {
    width: 8vw;
    height: 0.5333333333vw;
    border-radius: 0.2666666667vw;
  }
  .header .btn-menu-close {
    width: 12vw;
    height: 12vw;
    font-size: 2.1333333333vw;
    border: none;
    gap: 1.0666666667vw;
    top: 10.6666666667vw;
    right: 5.3333333333vw;
  }
  .header .btn-menu-close::after {
    border-radius: 3.2vw;
  }
  .header .btn-menu-close .line {
    width: 5.6vw;
    height: 4.2666666667vw;
    position: relative;
  }
  .header .btn-menu-close .line > span {
    width: 5.6vw;
    height: 0.5333333333vw x;
    border-radius: 0.2666666667vw;
  }
  .header .header-nav {
    padding-right: 14.1333333333vw;
  }
  .header .menu-area01 {
    position: absolute;
    top: -150vh;
    width: max-content;
    right: 0;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    height: 100vh;
    padding-top: min(25.3694581281vh, 206px);
    padding-right: 14.9333333333vw;
  }
  .header .menu-area01::after {
    content: "";
    width: 216.5333333333vw;
    height: 216.5333333333vw;
    right: -100.8vw;
    top: 0;
    bottom: auto;
    z-index: -1;
  }
  .header .menu-area01.active {
    top: -3.7333333333vw;
  }
  .header .menu-area01 .chara03 {
    width: 42.6666666667vw;
    position: absolute;
    right: 57.6vw;
    top: -4.2666666667vw;
    z-index: -1;
    transform: translate(0, 0%) rotate(35deg);
  }
  .header .menu-list01 {
    gap: min(2.9556650246vh, 24px);
  }
  .header .menu-list01 a {
    font-size: min(3.9408866995vh, 32px);
  }
}

/* contents
================================================ */
.btn01 {
  width: 240px;
  height: 69px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #ec6d81;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  text-decoration: none;
}
.btn01 span {
  font-weight: 500;
  font-size: 20px;
  color: #fff;
  position: relative;
  z-index: 2;
}
.btn01::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: -100%;
  top: 0;
  background-color: #E5556C;
  border-radius: 24px;
  transition: 0.3s all ease-out;
}
.btn01::after {
  content: "";
  width: 20px;
  height: 17px;
  background-image: url("../img/icon_arrow.svg");
  background-size: contain;
  background-position: 0 0;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
@media (hover: hover) {
  .btn01:hover::before {
    left: 0;
  }
}
@media (max-width: 767px) {
  .btn01 {
    width: 64vw;
    height: 18.4vw;
    border-radius: 6.4vw;
  }
  .btn01 span {
    font-size: 5.3333333333vw;
  }
  .btn01::after {
    content: "";
    width: 5.3333333333vw;
    height: 4.5333333333vw;
    right: 5.3333333333vw;
  }
}

.btn02 {
  width: 236px;
  height: 69px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 24px;
  position: relative;
  flex: 0 0 69px;
  text-decoration: none;
  transition: 0.3s all ease-out;
}
@media (hover: hover) {
  .btn02:hover {
    opacity: 0.6;
  }
}
.btn02 span {
  font-weight: 500;
  font-size: 20px;
  color: #fff;
}
@media (max-width: 767px) {
  .btn02 {
    width: 62.9333333333vw;
    flex: 0 0 15.4666666667vw;
    height: 15.4666666667vw;
    border-radius: 6.4vw;
  }
  .btn02 span {
    font-size: 5.3333333333vw;
  }
}

.btn03 {
  width: 100%;
  height: 114px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #E50012;
  border-radius: 10000px;
  overflow: hidden;
  position: relative;
  text-decoration: none;
}
.btn03 span {
  font-weight: bold;
  font-size: clamp(20px, 1.25vw, 24px);
  line-height: 1.3333333333;
  color: #fff;
  position: relative;
  z-index: 2;
}
.btn03 span::after {
  content: "";
  width: 24px;
  height: 24px;
  background-image: url("../img/icon_ex.svg");
  background-size: contain;
  background-position: 0 0;
  background-repeat: no-repeat;
  display: inline-block;
  vertical-align: super;
  margin-left: -4px;
}
.btn03 small {
  font-weight: 500;
  font-size: clamp(14px, 0.9375vw, 18px);
  letter-spacing: 0.05em;
  line-height: 1.1666666667;
  color: #fff;
}
.btn03::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: -100%;
  top: 0;
  background-color: #D10414;
  transition: 0.3s all ease-out;
}
@media (hover: hover) {
  .btn03:hover::before {
    left: 0;
  }
}
@media (max-width: 767px) {
  .btn03 {
    height: 25.8666666667vw;
  }
  .btn03 span {
    font-size: 5.3333333333vw;
    line-height: 1.6;
  }
  .btn03 span::after {
    content: "";
    width: 6.4vw;
    height: 6.4vw;
    margin-left: -1.0666666667vw;
  }
  .btn03 small {
    font-size: 3.7333333333vw;
  }
}

.btn04 {
  width: 100%;
  max-width: 476px;
  min-height: 114px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #ec6d81;
  border-radius: 10000px;
  overflow: hidden;
  padding: 20px;
  position: relative;
  text-decoration: none;
}
.btn04 span {
  font-weight: bold;
  font-size: clamp(20px, 1.25vw, 24px);
  line-height: 1.3333333333;
  color: #fff;
  position: relative;
  z-index: 2;
}
.btn04 span::after {
  content: "";
  width: 24px;
  height: 24px;
  background-image: url("../img/icon_ex02.svg");
  background-size: contain;
  background-position: 0 0;
  background-repeat: no-repeat;
  display: inline-block;
  vertical-align: super;
  margin-left: -4px;
}
.btn04 small {
  font-weight: 500;
  font-size: clamp(14px, 0.9375vw, 18px);
  letter-spacing: 0.05em;
  line-height: 1.1666666667;
  color: #fff;
}
.btn04::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: -100%;
  top: 0;
  background-color: #E5556C;
  transition: 0.3s all ease-out;
}
@media (hover: hover) {
  .btn04:hover::before {
    left: 0;
  }
}
@media (max-width: 767px) {
  .btn04 {
    min-height: 25.8666666667vw;
    padding: 4.2666666667vw;
    max-width: none;
  }
  .btn04 span {
    font-size: 5.3333333333vw;
    line-height: 1.6;
  }
  .btn04 span::after {
    content: "";
    width: 6.4vw;
    height: 6.4vw;
    margin-left: -1.0666666667vw;
  }
  .btn04 small {
    font-size: 3.7333333333vw;
  }
}

.mv {
  background-color: #D0E7EB;
  padding-top: min(2.0833333333vw, 40px);
  position: relative;
}
.mv .mv-block01 {
  position: relative;
  width: 93.75vw;
  height: min(41.4583333333vw, 796px);
  display: block;
  mask-image: url("../img/mv_mask.png");
  /* マスクとして使用する画像のパス */
  mask-size: cover;
  /* マスクのサイズを要素に合わせる */
  margin: 0px auto;
  overflow: hidden;
  background-image: url("../img/mv_bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}
.mv .mv-image01 {
  position: absolute;
  width: min(100%, 1800px);
  height: auto;
  aspect-ratio: 1800/197;
  background-image: url("../img/mv_town.png");
  background-size: contain;
  background-position: center bottom;
  background-repeat: no-repeat;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}
.mv .mv-cloud01 {
  position: absolute;
  width: min(91.015625vw, 1747.5px);
  height: auto;
  aspect-ratio: 1747.5/656;
  background-image: url("../img/mv_cloud01.png");
  background-size: contain;
  background-position: 0 0;
  background-repeat: no-repeat;
  position: absolute;
  left: calc(50% - min(1.3541666667vw, 26px));
  top: min(0.8854166667vw, 17px);
  transform: translateX(-50%);
  z-index: 1;
}
.mv .mv-logo {
  content: "";
  width: min(16.953125vw, 325.5px);
  height: min(18.0729166667vw, 347px);
  background-image: url("../img/mv_logo.png");
  background-size: contain;
  background-position: 0 0;
  background-repeat: no-repeat;
  position: absolute;
  left: 50%;
  top: calc(50% + min(2.0833333333vw, 40px));
  transform: translate(-50%, -50%);
  z-index: 7;
}
.mv .left-hand {
  content: "";
  width: min(47.9427083333vw, 920.5px);
  height: min(35.5208333333vw, 682px);
  background-image: url("../img/mv_left_hand.png");
  background-size: contain;
  background-position: 0 0;
  background-repeat: no-repeat;
  position: absolute;
  z-index: 7;
  top: max(-10.9375vw, -210px);
  left: calc(50% - min(34.375vw, 660px));
}
.mv .right-hand {
  content: "";
  width: min(47.9427083333vw, 920.5px);
  height: min(35.5208333333vw, 682px);
  background-image: url("../img/mv_right_hand.png");
  background-size: contain;
  background-position: 0 0;
  background-repeat: no-repeat;
  position: absolute;
  z-index: 7;
  top: max(-11.4583333333vw, -220px);
  left: calc(50% + min(34.8958333333vw, 670px));
}
.mv .left-wave {
  content: "";
  width: 40.6770833333vw;
  height: 46.6666666667vw;
  background-image: url("../img/mv_left_waves01.png");
  background-size: contain;
  background-position: 0 0;
  background-repeat: no-repeat;
  position: absolute;
  left: -12.8125vw;
  bottom: -17.1875vw;
  z-index: 8;
  pointer-events: none;
}
.mv .right-wave {
  content: "";
  width: 54.5572916667vw;
  height: 56.7708333333vw;
  background-image: url("../img/mv_right_waves01.png");
  background-size: contain;
  background-position: 0 0;
  background-repeat: no-repeat;
  position: absolute;
  right: -17.03125vw;
  bottom: -25.2604166667vw;
  z-index: 8;
  pointer-events: none;
}
.mv .mv-line01 {
  position: absolute;
  top: calc(50% + min(6.25vw, 120px));
  left: calc(50% - min(6.7708333333vw, 130px));
  transform: translate(-50%, -50%);
  z-index: 6;
}
.mv .mv-line01 #line-animation01 {
  width: min(133.2291666667vw, 2558px);
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.mv .mv-line01 #base path {
  fill: rgba(236, 109, 129, 0.4);
  /* 塗りの色 */
}
.mv .mv-line01 #mask path {
  fill: none;
  /* 塗りの色 */
  stroke: #ffffff;
  /* 線の色 */
  stroke-width: 10px;
  /* 線幅 */
  stroke-linecap: round;
  /* 線端の形状 */
  stroke-linejoin: round;
  /* 角の形状 */
}
.mv .bird01 {
  display: block;
  width: min(7.65625vw, 147px);
  position: absolute;
  top: calc(50% + min(2.0833333333vw, 40px));
  left: calc(50% + min(30.8854166667vw, 593px));
  z-index: 8;
}
.mv .bird01::after {
  content: "";
  width: 12.96875vw;
  height: 3.90625vw;
  background-image: url("../img/mv_link01.svg");
  background-size: contain;
  background-position: 0 0;
  background-repeat: no-repeat;
  position: absolute;
  right: 0;
  bottom: calc(100% - 2.0833333333vw);
  opacity: 0;
  transition: all ease-out 0.3s;
}
@media (hover: hover) {
  .mv .bird01:hover::after {
    opacity: 1;
  }
}
.mv .bird02 {
  display: block;
  width: min(8.6458333333vw, 166px);
  position: absolute;
  top: calc(50% + min(7.2916666667vw, 140px));
  left: calc(50% + min(23.4375vw, 450px));
  z-index: 8;
}
@media (max-width: 767px) {
  .mv {
    padding-top: 5.3333333333vw;
    position: relative;
  }
  .mv .mv-block01 {
    width: 89.3333333333vw;
    height: 190.2666666667vw;
    mask-image: url("../img/mv_mask_sp.png");
    /* マスクとして使用する画像のパス */
    mask-size: cover;
    background-image: url("../img/mv_bg.jpg");
    background-size: cover;
    background-repeat: no-repeat;
  }
  .mv .mv-image01 {
    position: absolute;
    width: 100%;
    height: auto;
    aspect-ratio: 335/637;
    background-image: url("../img/mv_town_sp.png");
    background-size: contain;
    background-position: center bottom;
    background-repeat: no-repeat;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
  }
  .mv .mv-logo {
    content: "";
    width: 60.9813333333vw;
    height: 65.0506666667vw;
    left: 50%;
    top: calc(50% + 2.6666666667vw);
    transform: translate(-50%, -50%);
    z-index: 7;
  }
  .mv .left-hand {
    content: "";
    width: 86.8vw;
    height: 88.9333333333vw;
    background-image: url("../img/mv_left_hand_sp.png");
    background-size: contain;
    background-position: 0 0;
    background-repeat: no-repeat;
    position: absolute;
    z-index: 7;
    top: -16.2666666667vw;
    left: calc(50% - 45vw);
  }
  .mv .right-hand {
    content: "";
    width: 86.8vw;
    height: 88.9333333333vw;
    background-image: url("../img/mv_right_hand_sp.png");
    background-size: contain;
    background-position: 0 0;
    background-repeat: no-repeat;
    position: absolute;
    top: -16.2666666667vw;
    left: calc(50% + 46vw);
  }
  .mv .left-wave {
    content: "";
    width: 33.6vw;
    height: 114.4vw;
    background-image: url("../img/mv_left_waves01_sp.png");
    background-size: contain;
    background-position: 0 0;
    background-repeat: no-repeat;
    position: absolute;
    left: 0vw;
    bottom: -26.4vw;
    z-index: 8;
  }
  .mv .right-wave {
    content: "";
    width: 37.8666666667vw;
    height: 107.7333333333vw;
    background-image: url("../img/mv_right_waves01_sp.png");
    background-size: contain;
    background-position: 0 0;
    background-repeat: no-repeat;
    position: absolute;
    right: 0vw;
    bottom: -16vw;
    z-index: 8;
  }
  .mv .mv-line01 {
    position: absolute;
    top: calc(50% + 10.6666666667vw);
    left: calc(50% - 20.6666666667vw);
    transform: translate(-50%, -50%);
    z-index: 6;
  }
  .mv .mv-line01 #line-animation01 {
    width: 390.4vw;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .mv .mv-line01 #base path {
    fill: rgba(236, 109, 129, 0.4);
    /* 塗りの色 */
  }
  .mv .mv-line01 #mask path {
    fill: none;
    /* 塗りの色 */
    stroke: #ffffff;
    /* 線の色 */
    stroke-width: 3.4666666667vw;
    /* 線幅 */
    stroke-linecap: round;
    /* 線端の形状 */
    stroke-linejoin: round;
    /* 角の形状 */
  }
  .mv .bird01 {
    display: block;
    width: 24vw;
    position: absolute;
    top: calc(50% + 64vw);
    left: calc(50% + 24vw);
    z-index: 8;
  }
  .mv .bird02 {
    display: block;
    width: 26.1333333333vw;
    position: absolute;
    top: calc(50% + 72vw);
    left: calc(50% + 5.3333333333vw);
    z-index: 8;
  }
}

#scroll_mask_draw_svg_element path#maskElement {
  fill: none;
  stroke: #fff;
  stroke-width: 30px;
  stroke-linecap: round;
  stroke-linejoin: round;
}

#scroll_mask_draw_svg_element path#textElement {
  fill: #000;
}

.news {
  background-color: #D0E7EB;
  padding: 23px 20px 123px;
  scroll-margin-top: 200px;
}
.news .news-list01 {
  width: 815px;
  margin: 0 auto;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  z-index: 10;
}
.news .news-list01 > li {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.news .news-list01 .tags {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  flex: 0 0 max-content;
}
.news .news-list01 time {
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.08em;
  color: #006f79;
}
.news .news-list01 .lavel {
  font-weight: bold;
  min-width: max-content;
  font-size: 18px;
  height: 30px;
  color: #fff;
  padding: 2px 8px;
  border-radius: 10000px;
  background: #006f79;
}
.news .news-list01 .lavel.color01 {
  background-color: #E5556C;
}
.news .news-list01 .text {
  font-size: 18px;
  line-height: 1.7777777778;
  color: #006f79;
  transition: all ease-out 0.3s;
}
.news .news-list01 .text.color01 {
  color: #E5556C;
  font-weight: 700;
}
.news .news-list01 a {
  text-decoration: underline;
  font-size: 18px;
  line-height: 1.7777777778;
  color: #006f79;
  transition: all ease-out 0.3s;
}
@media (hover: hover) {
  .news .news-list01 a:hover {
    opacity: 0.6;
  }
}
@media (max-width: 767px) {
  .news {
    padding: 5.3333333333vw 5.3333333333vw 12.8vw;
    scroll-margin-top: 26.6666666667vw;
  }
  .news .news-list01 {
    width: 100%;
    gap: 4.8vw;
    padding: 0;
  }
  .news .news-list01 > li {
    flex-direction: column;
    gap: 2.1333333333vw;
  }
  .news .news-list01 .tags {
    gap: 2.1333333333vw;
  }
  .news .news-list01 time {
    font-size: 4.8vw;
  }
  .news .news-list01 .lavel {
    font-size: 4.8vw;
    height: 8vw;
    padding: 0.5333333333vw 2.1333333333vw;
  }
  .news .news-list01 a {
    font-size: 4.8vw;
  }
}

.info {
  padding: 65px 20px calc(6.3541666667vw + 100px);
  background-color: #D0E7EB;
  position: relative;
}
.info .bird05 {
  width: 10.4166666667vw;
  position: absolute;
  top: -1.5625vw;
  right: calc(100% + 17.1875vw);
  z-index: 2;
}
.info .bird06 {
  width: 9.375vw;
  position: absolute;
  top: 4.1666666667vw;
  right: calc(100% + 12.2916666667vw);
  z-index: 3;
}
.info .info-line01 {
  position: absolute;
  top: 468px;
  left: calc(50% - min(12.2395833333vw, 235px));
  transform: translate(-50%, 0%);
  z-index: 2;
}
.info .info-line01 #line-animation02 {
  width: min(131.71875vw, 2529px);
}
.info .info-line01 #base02 path {
  fill: rgba(236, 109, 129, 0.4);
  /* 塗りの色 */
}
.info .info-line01 #mask02 path {
  fill: none;
  /* 塗りの色 */
  stroke: #ffffff;
  /* 線の色 */
  stroke-width: 10px;
  /* 線幅 */
  stroke-linecap: round;
  /* 線端の形状 */
  stroke-linejoin: round;
  /* 角の形状 */
}
.info .inner {
  width: 736px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}
.info .hanabi01 {
  width: 202px;
  position: absolute;
  right: -85px;
  top: 150px;
}
.info h1 {
  margin-bottom: 100px;
}
@media (min-width: 768px) {
  .info h1.info-title01 {
    font-size: 72px;
    gap: 32px;
  }
  .info h1.info-title01 span {
    font-size: 20px;
  }
}
.info .info-text01 {
  font-weight: 500;
  font-size: 32px;
  line-height: 2.1875;
  color: #006F79;
}
.info::after {
  content: "";
  width: 100%;
  height: auto;
  aspect-ratio: 1920/1288;
  background-image: url("../img/info_wave.png");
  background-size: contain;
  background-position: 0 0;
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  bottom: -8.4895833333vw;
  z-index: 1;
}
.info .info-image01 {
  width: 57.1354166667vw;
  position: absolute;
  right: -13.125vw;
  bottom: -12.8645833333vw;
  z-index: 2;
}
.info .info-image01 .chara01 {
  width: 11.6145833333vw;
  position: absolute;
  left: 9.0104166667vw;
  bottom: calc(100% - 10.5208333333vw);
}
.info .info-image01 .hanabi02 {
  width: 15.4166666667vw;
  position: absolute;
  left: 6.0416666667vw;
  bottom: calc(100% - 4.4270833333vw);
}
@media (max-width: 767px) {
  .info {
    padding: 19.2vw 5.3333333333vw 82.6666666667vw;
    background-color: #D0E7EB;
    position: relative;
  }
  .info .bird05 {
    width: 21.3333333333vw;
    position: absolute;
    top: -33.3333333333vw;
    right: 5.3333333333vw;
    z-index: 3;
    transform: scale(-1, 1);
  }
  .info .bird06 {
    width: 24vw;
    position: absolute;
    top: -21.3333333333vw;
    right: 18.6666666667vw;
    z-index: 2;
    transform: scale(-1, 1);
  }
  .info .info-line01 {
    position: absolute;
    top: 86.9333333333vw;
    left: auto;
    right: 0;
    transform: translate(0%, 0%);
    z-index: 2;
  }
  .info .info-line01 #line-animation02-sp {
    width: 116.8026666667vw;
    height: 245.5733333333vw;
  }
  .info .info-line01 #base02-sp path {
    fill: rgba(236, 109, 129, 0.4);
    /* 塗りの色 */
  }
  .info .info-line01 #mask02-sp path {
    fill: none;
    /* 塗りの色 */
    stroke: #ffffff;
    /* 線の色 */
    stroke-width: 3.4666666667vw;
    /* 線幅 */
    stroke-linecap: round;
    /* 線端の形状 */
    stroke-linejoin: round;
    /* 角の形状 */
  }
  .info .inner {
    width: 100%;
  }
  .info .hanabi01 {
    width: 33.2vw;
    position: absolute;
    right: -3.2vw;
    top: 41.6vw;
  }
  .info h1 {
    margin-bottom: 19.2vw;
  }
  .info .info-text01 {
    font-size: 4.8vw;
    line-height: 1.7777777778;
    font-weight: 400;
  }
  .info::after {
    content: "";
    width: 100%;
    height: auto;
    aspect-ratio: 375/1470;
    background-image: url("../img/info_wave_sp.png");
    background-size: contain;
    background-position: 0 0;
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    bottom: -13.8666666667vw;
    z-index: 1;
  }
  .info .info-image01 {
    width: 157.0666666667vw;
    position: absolute;
    right: -75.2vw;
    bottom: 9.3333333333vw;
    z-index: 2;
  }
  .info .info-image01 .chara01 {
    width: 37.8666666667vw;
    position: absolute;
    left: 22.1333333333vw;
    bottom: calc(100% - 29.6vw);
  }
  .info .info-image01 .hanabi02 {
    width: 49.7333333333vw;
    position: absolute;
    left: 13.4933333333vw;
    bottom: calc(100% - 0vw);
  }
}

.movie {
  padding: calc(8.4895833333vw + 40px) 20px calc(6.3541666667vw + 100px);
  position: relative;
}
.movie::before {
  content: "";
  width: 1552.5px;
  height: 476.5px;
  background-image: url("../img/movie_bg02.png");
  background-size: contain;
  background-position: 0 0;
  background-repeat: no-repeat;
  position: absolute;
  top: calc(8.4895833333vw + 40px);
  left: calc(50% + 250px);
  transform: translate(-50%, 0);
}
.movie .movie-line01 {
  position: absolute;
  top: 0px;
  left: calc(50% - min(3.75vw, 72px));
  transform: translate(-50%, 0%);
  z-index: 2;
}
.movie .movie-line01 #line-animation03 {
  width: min(112.65625vw, 2163px);
}
.movie .movie-line01 #base03 path {
  fill: rgba(236, 109, 129, 0.4);
  /* 塗りの色 */
}
.movie .movie-line01 #mask03 path {
  fill: none;
  /* 塗りの色 */
  stroke: #ffffff;
  /* 線の色 */
  stroke-width: 10px;
  /* 線幅 */
  stroke-linecap: round;
  /* 線端の形状 */
  stroke-linejoin: round;
  /* 角の形状 */
}
.movie .mask-image {
  position: relative;
  width: 100%;
  max-width: 836px;
  height: auto;
  aspect-ratio: 560/315;
  display: block;
  background-color: #FFF8F3;
  mask-image: url("../img/movie_mask.svg");
  overflow: hidden;
  /* マスクとして使用する画像のパス */
  mask-size: cover;
  /* マスクのサイズを要素に合わせる */
  margin: 40px auto 0;
  z-index: 3;
}
.movie .mask-image .movie-btn {
  width: 120px;
  height: 120px;
  border-radius: 40px;
  background-color: rgba(0, 0, 0, 0.8);
  text-align: center;
  font-family: "Dela Gothic One";
  font-size: 15px;
  letter-spacing: 0.12em;
  padding-top: 72px;
  position: absolute;
  color: #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s all ease-out;
}
.movie .mask-image .movie-btn::after {
  content: "";
  width: 24px;
  height: 28px;
  background-image: url("../img/icon_play.svg");
  background-size: contain;
  background-position: 0 0;
  background-repeat: no-repeat;
  position: absolute;
  bottom: calc(50% + 8px);
  left: 50%;
  transform: translate(-50%, 50%);
  transition: 0.3s all ease-out;
}
.movie .mask-image .movie-frame {
  width: 100%;
  aspect-ratio: 560/315;
}
.movie .mask-image .movie-frame iframe {
  width: 100%;
  height: 100%;
}
.movie .mask-image .movie-text01 {
  font-family: "Dela Gothic One";
  font-size: 34px;
  letter-spacing: 0.04em;
  line-height: 1.5294117647;
  text-align: center;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}
@media (hover: hover) {
  .movie .mask-image:hover .movie-btn {
    background-color: black;
  }
  .movie .mask-image:hover .movie-btn::after {
    transform: translate(-50%, 50%) scale(1.1);
    transform-origin: bottom;
  }
}
.movie .movie-img01 {
  content: "";
  width: 149.5px;
  background-image: url("../img/movie_img01.png");
  background-size: contain;
  background-position: 0 0;
  background-repeat: no-repeat;
  position: absolute;
  bottom: calc(6.3541666667vw + 95px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
}
@media (max-width: 767px) {
  .movie {
    padding: 26.6666666667vw 5.3333333333vw 48.5333333333vw;
  }
  .movie::before {
    content: "";
    width: 115.6vw;
    height: 100.4vw;
    background-image: url("../img/movie_bg02_sp.png");
    top: 22.9333333333vw;
    left: 0;
    transform: translate(0%, 0);
  }
  .movie .mask-image {
    margin: 10.6666666667vw auto 0;
  }
  .movie .mask-image .movie-text01 {
    font-size: 6.4vw;
    width: 100%;
  }
  .movie .movie-img01 {
    content: "";
    width: 15.4666666667vw;
    bottom: 49.3333333333vw;
  }
  .movie .movie-line01 {
    position: absolute;
    top: 53.8666666667vw;
    left: 0;
    transform: translate(0%, 0%);
    z-index: 2;
  }
  .movie .movie-line01 #line-animation03-sp {
    width: 121.3546666667vw;
    height: 316.4133333333vw;
  }
  .movie .movie-line01 #base03-sp path {
    fill: rgba(236, 109, 129, 0.4);
    /* 塗りの色 */
  }
  .movie .movie-line01 #mask03-sp path {
    fill: none;
    /* 塗りの色 */
    stroke: #ffffff;
    /* 線の色 */
    stroke-width: 3.4666666667vw;
    /* 線幅 */
    stroke-linecap: round;
    /* 線端の形状 */
    stroke-linejoin: round;
    /* 角の形状 */
  }
}

.history {
  background-color: #FFE5E2;
  padding: 240px 20px 0px;
  position: relative;
}
.history::after {
  content: "";
  width: 100%;
  height: 21.5104166667vw;
  background-image: url("../img/history_wave02.png");
  background-size: contain;
  background-position: 0 0;
  background-repeat: no-repeat;
  position: absolute;
  bottom: -16.7708333333vw;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.history h2 {
  margin-bottom: 80px;
  z-index: 2;
  position: relative;
}
.history h4 {
  color: #006F79;
}
.history .inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.history .history-block01 {
  padding-left: 50%;
  display: flex;
  flex-direction: column;
  gap: 40px;
  color: #006F79;
  position: relative;
}
.history .history-block01 .chara02 {
  width: 620px;
  position: absolute;
  left: -216px;
  bottom: -50px;
}
.history .history-text01 {
  font-weight: 500;
  font-size: 32px;
  line-height: 2.1875;
  color: #006F79;
  text-align: center;
}
.history .history-banner01 {
  width: 380px;
  display: block;
  margin: 80px auto 0;
  border: #fff solid 2px;
}
@media (hover: hover) {
  .history .history-banner01:hover {
    opacity: 0.6;
  }
}
.history .bird03 {
  width: 8.3333333333vw;
  position: absolute;
  bottom: -4.1666666667vw;
  right: 17.7083333333vw;
  z-index: 2;
}
@media (max-width: 767px) {
  .history {
    padding: 44.8vw 5.3333333333vw 53.3333333333vw;
    position: relative;
  }
  .history::before {
    content: "";
    width: 100%;
    height: 17.3333333333vw;
    background-image: url("../img/history_wave01_sp.png");
    top: -13.3333333333vw;
  }
  .history::after {
    content: "";
    width: 100%;
    height: 73.8666666667vw;
    background-image: url("../img/history_wave02_sp.png");
    bottom: -16vw;
  }
  .history h2 {
    margin-bottom: 10.6666666667vw;
  }
  .history h4 {
    color: #006F79;
    width: 100%;
  }
  .history .inner {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }
  .history .history-block01 {
    padding-left: 0%;
    gap: 6.4vw;
    align-items: center;
  }
  .history .history-block01 .chara02 {
    width: 74.1333333333vw;
    position: absolute;
    left: -30.6666666667vw;
    bottom: calc(100% + 34.6666666667vw);
  }
  .history .bird03 {
    width: 26.6666666667vw;
    position: absolute;
    bottom: 24vw;
    right: 34.1333333333vw;
    z-index: 2;
  }
}

.Realization {
  background-color: #FFE5C1;
  padding: 16.7708333333vw 20px 0;
  position: relative;
}
.Realization::before {
  content: "";
  width: 1552.5px;
  height: 476.5px;
  background-image: url("../img/movie_bg02.png");
  background-size: contain;
  background-position: 0 0;
  background-repeat: no-repeat;
  position: absolute;
  top: calc(26.0416666667vw + 40px);
  left: calc(50% + 150px);
  transform: translate(-50%, 0);
}
.Realization::after {
  content: "";
  width: 100%;
  height: 15.15625vw;
  background-image: url("../img/support_wave01.png");
  background-size: contain;
  background-position: 0 0;
  background-repeat: no-repeat;
  position: absolute;
  bottom: -12.6041666667vw;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.Realization h2 {
  margin-bottom: 60px;
  z-index: 2;
  position: relative;
}
.Realization .inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.Realization .Realization-text01 {
  font-weight: 500;
  font-size: 24px;
  line-height: 2;
  color: #006F79;
  text-align: center;
}
.Realization .Realization-banner01 {
  max-width: 836px;
  display: block;
  margin: 60px auto 0;
  border: #fff solid 2px;
}
@media (hover: hover) {
  .Realization .Realization-banner01:hover {
    opacity: 0.6;
  }
}
@media (max-width: 767px) {
  .Realization {
    padding: 24vw 5.3333333333vw 0;
    position: relative;
  }
  .Realization::before {
    content: "";
    width: 115.6vw;
    height: 100.4vw;
    background-image: url("../img/movie_bg02_sp.png");
    top: 49.6vw;
    left: 0;
    transform: translate(0%, 0);
  }
  .Realization::after {
    content: "";
    width: 100%;
    height: 15.2vw;
    background-image: url("../img/support_wave01_sp.png");
    bottom: -13.3333333333vw;
    background-size: contain;
    background-position: 0 0;
    background-repeat: no-repeat;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
  }
  .Realization h2 {
    margin-bottom: 10.6666666667vw;
  }
  .Realization .Realization-text01 {
    font-size: 4.8vw;
    line-height: 1.7777777778;
    font-weight: 400;
    text-align: left;
  }
  .Realization .Realization-banner01 {
    width: 100%;
    display: block;
    margin: 10.6666666667vw auto 0;
    border: #fff solid 2px;
  }
}

.events {
  padding: 16.7708333333vw 20px 0;
  position: relative;
}
.events::before {
  content: "";
  width: 1260px;
  height: 463.5px;
  background-image: url("../img/events-bg01.png");
  background-size: contain;
  background-position: 0 0;
  background-repeat: no-repeat;
  position: absolute;
  top: 557px;
  left: calc(50% + 210px);
  transform: translateX(-50%);
}
.events h2 {
  margin-bottom: 40px;
}
.events .inner {
  position: relative;
  z-index: 3;
}
.events .events-line01 {
  position: absolute;
  top: 0;
  left: calc(50% + min(20.7291666667vw, 398px));
  transform: translate(-50%, 0%);
  z-index: 2;
}
.events .events-line01 #line-animation04 {
  width: min(111.9791666667vw, 2150px);
}
.events .events-line01 #base04 path {
  fill: rgba(236, 109, 129, 0.4);
  /* 塗りの色 */
}
.events .events-line01 #mask04 path {
  fill: none;
  /* 塗りの色 */
  stroke: #ffffff;
  /* 線の色 */
  stroke-width: 10px;
  /* 線幅 */
  stroke-linecap: round;
  /* 線端の形状 */
  stroke-linejoin: round;
  /* 角の形状 */
}
.events .events-block01 {
  width: 740px;
  height: min(100vh - 80px, 700px);
  margin: 40px auto 0;
  padding: 0px 60px;
  border-radius: 40px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  position: sticky;
  top: 40px;
}
.events .events-block01 .inn {
  height: auto;
  padding: 40px 0px 24px;
  overflow-y: auto;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}
.events .events-block01:first-child {
  margin-top: 0;
}
.events .events-block01.pink {
  background-color: #FAD7DD;
  color: #A51A2F;
}
.events .events-block01.pink h3 {
  color: #A51A2F;
}
.events .events-block01.pink .btn02 {
  background: #ec6d81;
}
.events .events-block01.green {
  background-color: #C3DEC0;
  color: #2D5226;
}
.events .events-block01.green h3 {
  color: #2D5226;
}
.events .events-block01.green .btn02 {
  background: #4A7243;
}
.events .events-block01.blue {
  background-color: #D0E7EB;
  color: #006F79;
}
.events .events-block01.blue h3 {
  color: #006F79;
}
.events .events-block01.blue .btn02 {
  background: #00B3C4;
}
.events .events-block01.brown {
  background-color: #FFDDAF;
  color: #742E01;
}
.events .events-block01.brown h3 {
  color: #742E01;
}
.events .events-block01.brown .btn02 {
  background: #AD6504;
}
.events .events-text02 {
  font-weight: 400;
  line-height: 1.5;
  font-size: 14px;
}
.events .events-text02 b {
  font-weight: 700;
}
@media (min-width: 768px) {
  .events #e04 .events-image01 {
    width: 100%;
    padding: 0 20%;
  }
}
@media (max-width: 767px) {
  .events {
    padding: 24vw 5.3333333333vw 0;
  }
  .events::before {
    content: "";
    width: 112.392vw;
    height: 41.1946666667vw;
    background-image: url(../img/events-bg01_sp.png);
    position: absolute;
    top: 23.2vw;
    left: 2.1333333333vw;
    transform: translateX(0%);
  }
  .events h2 {
    margin-bottom: 6.4vw;
  }
  .events .events-line01 {
    position: absolute;
    top: 22.4vw;
    left: -45.6vw;
    transform: translate(0%, 0%);
    z-index: 2;
  }
  .events .events-line01 #line-animation04-sp {
    width: 174.064vw;
    height: auto;
  }
  .events .events-line01 #base04-sp path {
    fill: rgba(236, 109, 129, 0.4);
    /* 塗りの色 */
  }
  .events .events-line01 #mask04-sp path {
    fill: none;
    /* 塗りの色 */
    stroke: #ffffff;
    /* 線の色 */
    stroke-width: 3.4666666667vw;
    /* 線幅 */
    stroke-linecap: round;
    /* 線端の形状 */
    stroke-linejoin: round;
    /* 角の形状 */
  }
  .events .events-block01 {
    width: 100%;
    height: max(500px, 100vh - 29.3333333333vw);
    margin: 6.4vw auto 0;
    padding: 0vw;
    border-radius: 10.6666666667vw;
    top: 26.6666666667vw;
  }
  .events .events-block01 .inn {
    gap: 3.2vw;
    padding: 4.2666666667vw 0vw;
  }
  .events .events-block01:first-child {
    margin-top: 0;
  }
  .events .events-image01 {
    padding: 0 10.6666666667vw;
  }
  .events .events-text01 {
    padding: 0 5.3333333333vw;
    font-weight: 500;
    line-height: 1.5;
    font-size: 3.7333333333vw;
  }
  .events .events-text02 {
    font-size: 3.2vw;
    padding: 0 5.3333333333vw;
  }
}

/* footer
================================================ */
.footer {
  padding: 0 0 5px;
  background-image: url("../img/footer_bg01.png");
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}
.footer::after {
  content: "";
  width: 44.4791666667vw;
  height: 24.8177083333vw;
  background-image: url("../img/footer_bg02.png");
  background-size: contain;
  background-position: 0 0;
  background-repeat: no-repeat;
  position: absolute;
  left: -4.6875vw;
  bottom: -3.75vw;
  z-index: 2;
}
.footer .bird04 {
  width: min(6.7708333333vw, 130px);
  position: absolute;
  bottom: min(19.1145833333vw, 367px);
  left: 26.3541666667vw;
  z-index: 3;
}
.footer .footer-line01 {
  position: absolute;
  bottom: 46px;
  left: calc(50% - min(11.9791666667vw, 230px));
  transform: translate(-50%, 0%);
  z-index: 2;
}
.footer .footer-line01 #line-animation05 {
  width: min(135.2083333333vw, 2596px);
}
.footer .footer-line01 #base05 path {
  fill: rgba(236, 109, 129, 0.4);
  /* 塗りの色 */
}
.footer .footer-line01 #mask05 path {
  fill: none;
  /* 塗りの色 */
  stroke: #ffffff;
  /* 線の色 */
  stroke-width: 10px;
  /* 線幅 */
  stroke-linecap: round;
  /* 線端の形状 */
  stroke-linejoin: round;
  /* 角の形状 */
}
@media (max-width: 767px) {
  .footer {
    padding: 0 0 5px;
    background-image: url("../img/footer_bg01_sp.png");
  }
  .footer::after {
    content: none;
  }
  .footer .bird04 {
    width: 26.6666666667vw;
    position: absolute;
    bottom: 88vw;
    left: 9.6vw;
    z-index: 3;
  }
  .footer .footer-line01 {
    position: absolute;
    bottom: 47.4666666667vw;
    left: -1.0666666667vw;
    transform: translate(0%, 0%);
    z-index: 2;
  }
  .footer .footer-line01 #line-animation05-sp {
    width: 105.8506666667vw;
    height: auto;
  }
  .footer .footer-line01 #base05-sp path {
    fill: rgba(236, 109, 129, 0.4);
    /* 塗りの色 */
  }
  .footer .footer-line01 #mask05-sp path {
    fill: none;
    /* 塗りの色 */
    stroke: #ffffff;
    /* 線の色 */
    stroke-width: 3.4666666667vw;
    /* 線幅 */
    stroke-linecap: round;
    /* 線端の形状 */
    stroke-linejoin: round;
    /* 角の形状 */
  }
}

.links {
  margin: 0 auto;
  padding: 100px 20px 205px;
  position: relative;
  z-index: 3;
}
.links .btn04 {
  margin: 0 auto 40px;
}
.links .inner {
  display: grid;
  width: 100%;
  max-width: 1000px;
  grid-template-columns: repeat(2, 1fr);
  gap: min(4.1666666667vw, 8%);
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .links {
    margin: 0 auto;
    padding: 21.3333333333vw 5.3333333333vw 53.8666666667vw;
  }
  .links .btn04 {
    margin: 0 auto 10.6666666667vw;
  }
  .links .inner {
    grid-template-columns: repeat(1, 1fr);
    gap: 10.6666666667vw;
  }
  .links .inner .btn03:nth-child(1) {
    order: 1;
  }
  .links .inner .btn03:nth-child(2) {
    order: 0;
  }
}

.sns {
  text-align: center;
  margin: 0 auto 80px;
  position: relative;
  z-index: 3;
}
.sns .sns-image01 {
  width: 265px;
  margin: 0 auto;
}
.sns .inner {
  display: inline-flex;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  padding: 20px 40px;
  gap: 50px;
  border-radius: 20px;
}
.sns .inner a {
  height: 34px;
  display: inline-block;
  transition: all ease-out 0.3s;
}
@media (hover: hover) {
  .sns .inner a:hover {
    opacity: 0.6;
  }
}
.sns .inner a img {
  height: 34px;
  width: auto;
}
@media (max-width: 767px) {
  .sns {
    margin: 0 auto 4.2666666667vw;
  }
  .sns .sns-image01 {
    width: 32.8vw;
  }
  .sns .inner {
    padding: 5.3333333333vw 6.9333333333vw;
    gap: 6.4vw;
    border-radius: 5.3333333333vw;
  }
  .sns .inner a {
    height: 9.0666666667vw;
  }
  .sns .inner a img {
    height: 9.0666666667vw;
    width: auto;
  }
}

.copyright {
  font-size: 14px;
  text-align: center;
  color: #000;
}
@media (max-width: 767px) {
  .copyright {
    font-size: 3.2vw;
    padding-bottom: 10.6666666667vw;
  }
}

/*------------------------------------------------------
 ayumi
------------------------------------------------------*/
.ayumi-intro {
  padding: 180px 0 0;
  text-align: center;
  position: relative;
  z-index: 2;
}
.ayumi-intro::before {
  content: "";
  width: max(100vw, 1920px);
  height: auto;
  aspect-ratio: 1920/902;
  background-image: url("../img/ayumi_bg01.png");
  background-size: contain;
  background-position: 0 0;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
.ayumi-intro #bird07 {
  width: 200px;
  position: absolute;
  left: 60px;
  top: -120px;
}
.ayumi-intro #bird08 {
  width: 150px;
  position: absolute;
  left: -30px;
  top: -160px;
}
.ayumi-intro #cloud06 {
  width: 125.75px;
  height: 84.8px;
  background-image: url("../img/deco_cloud04.png");
  background-size: contain;
  background-position: 0 0;
  background-repeat: no-repeat;
  position: absolute;
  left: -110px;
  top: 0px;
}
.ayumi-intro .inner {
  max-width: 1000px;
  position: relative;
  margin: 0 auto;
}
.ayumi-intro h2 {
  margin: 0 auto 40px;
  font-size: 80px;
}
.ayumi-intro .ayumi-text {
  font-weight: normal;
  font-size: 18px;
  line-height: 1.7777777778;
  margin: 0 auto 80px;
  color: #006F79;
}
.ayumi-intro .ayumi-links01 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px 2.4%;
}
.ayumi-intro .ayumi-links01 > a {
  display: flex;
  min-height: 75px;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
  background: #fad7dd;
  text-decoration: none;
  position: relative;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.3333333333;
  padding: 18px 40px 7px;
  color: #006f79;
  transition: 0.3s all ease-out;
}
.ayumi-intro .ayumi-links01 > a > span {
  font-family: "Dela Gothic One";
  font-size: 16px;
  text-align: center;
  color: #fff;
  border-radius: 4px;
  background: #ec6d81;
  padding: 0 8px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: calc(100% - 14px);
  left: 50%;
  transform: translateX(-50%);
}
.ayumi-intro .ayumi-links01 > a::after {
  content: "";
  width: 17px;
  height: 10px;
  background-image: url("../img/icon_anchor.svg");
  background-size: contain;
  background-position: 0 0;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
}
@media (hover: hover) {
  .ayumi-intro .ayumi-links01 > a:hover {
    opacity: 0.6;
  }
}
@media (max-width: 767px) {
  .ayumi-intro {
    padding: 56.8vw 5.3333333333vw 0;
  }
  .ayumi-intro::before {
    content: "";
    width: 100vw;
    aspect-ratio: 375/726;
    background-image: url("../img/ayumi_bg01_sp.png");
    background-size: contain;
    background-position: 0 0;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
  }
  .ayumi-intro #bird07 {
    width: 32vw;
    position: absolute;
    left: 16vw;
    top: -26.6666666667vw;
  }
  .ayumi-intro #bird08 {
    width: 26.6666666667vw;
    position: absolute;
    left: -2.6666666667vw;
    top: -34.6666666667vw;
  }
  .ayumi-intro #cloud06 {
    width: 23.4346666667vw;
    height: 15.8026666667vw;
    left: -2.6666666667vw;
    top: -8vw;
  }
  .ayumi-intro h2 {
    margin: 0 auto 7.4666666667vw;
    font-size: 12.8vw;
  }
  .ayumi-intro .ayumi-text {
    font-size: 4.8vw;
    margin: 0 auto 10.6666666667vw;
  }
}

@media (max-width: 767px) {
  .ayumi-acc01 {
    width: calc(100% - 10.6666666667vw);
    margin: 0 auto;
    background: #fad7dd;
    border-radius: 3.2vw;
    position: relative;
    z-index: 50;
  }
  .ayumi-acc01.active {
    position: fixed;
    z-index: 50;
    top: 27.2vw;
    left: 50%;
    transform: translateX(-50%);
  }
  .ayumi-acc01 .ayumi-acc-head {
    background-color: transparent;
    text-align: center;
    width: 100%;
    display: block;
    font-weight: 900;
    font-size: 5.8666666667vw;
    line-height: 1;
    text-align: center;
    color: #006f79;
    padding: 2.6666666667vw 5.3333333333vw;
    border: none;
    position: relative;
  }
  .ayumi-acc01 .ayumi-acc-head::after {
    content: "";
    width: 4.5333333333vw;
    height: 2.6666666667vw;
    background-image: url("../img/icon_anchor.svg");
    background-size: contain;
    background-position: 0 0;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    right: 5.6vw;
    transform: translateY(-50%);
  }
  .ayumi-acc01 .ayumi-acc-body {
    display: block;
    overflow-y: auto;
    max-height: 0;
    transition: all ease-out 0.3s;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    /* スクロールバー全体のスタイルを設定 */
    /* スクロールバーのハンドルのスタイルを設定 */
    /* スクロールバーのトラックのスタイルを設定 */
  }
  .ayumi-acc01 .ayumi-acc-body.active {
    max-height: 101.3333333333vw;
    opacity: 1;
    visibility: inherit;
    pointer-events: all;
  }
  .ayumi-acc01 .ayumi-acc-body::-webkit-scrollbar {
    width: 6px;
    /* スクロールバーの高さ */
    background-color: transparent;
    /* スクロールバーの背景色 */
  }
  .ayumi-acc01 .ayumi-acc-body::-webkit-scrollbar-thumb {
    background-color: transparent;
    background: rgba(236, 109, 129, 0.5);
    /* ハンドルの色 */
    border-radius: 5px;
    /* ハンドルの角の丸み */
  }
  .ayumi-acc01 .ayumi-acc-body::-webkit-scrollbar-track {
    background-color: transparent;
    /* トラックの背景色 */
  }
  .ayumi-acc01 .ayumi-acc-body > a {
    display: flex;
    flex-direction: column;
    min-height: 20.9333333333vw;
    gap: 1.0666666667vw;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    position: relative;
    font-weight: 500;
    font-size: 4.8vw;
    line-height: 1.3333333333;
    padding: 2.6666666667vw 5.3333333333vw;
    color: #006f79;
    text-align: center;
    border-top: 1px solid #fff;
  }
  .ayumi-acc01 .ayumi-acc-body > a > span {
    font-family: "Dela Gothic One";
    font-size: 3.7333333333vw;
    text-align: center;
    color: #fff;
    border-radius: 1.0666666667vw;
    background: #ec6d81;
    padding: 0 2.1333333333vw;
    height: 6.4vw;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

.ayumi-main {
  padding-top: 143px;
}
.ayumi-main .ayumi-contents {
  display: grid;
  width: 1000px;
  margin: 0 auto;
  grid-template-columns: repeat(1, 1fr);
  gap: 120px;
}
.ayumi-main .ayumi-contents > div {
  position: relative;
  padding-top: 90px;
}
.ayumi-main .ayumi-contents > div::after {
  content: "";
  width: 54px;
  height: 54px;
  background-image: url("../img/icon_point.png");
  background-size: contain;
  background-position: 0 0;
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  top: 0;
}
.ayumi-main .ayumi-contents > div.special01 {
  max-width: 293px;
}
.ayumi-main .ayumi-contents > div.special01::after {
  content: none;
}
.ayumi-main .ayumi-contents > div:nth-child(odd) {
  margin-right: auto;
}
.ayumi-main .ayumi-contents > div:nth-child(even) {
  margin-left: auto;
}
.ayumi-main .ayumi-contents > div .btn01 {
  width: 260px;
  border: none;
  margin-top: 40px;
}
.ayumi-main .ayumi-text01 {
  display: flex;
  flex-direction: column;
  gap: 1em;
}
.ayumi-main .ayumi-cont01 {
  width: 748px;
  display: grid;
  grid-template-columns: 508px 200px;
  gap: 0px 40px;
  grid-template-areas: "text01 image01" "btn01 image01";
}
.ayumi-main .ayumi-cont01 .ayumi-text01 {
  grid-area: text01;
}
.ayumi-main .ayumi-cont01 .ayumi-image01 {
  grid-area: image01;
}
.ayumi-main .ayumi-cont01 .ayumi-btn01 {
  grid-area: btn01;
  margin-top: 54px;
}
.ayumi-main .ayumi-cont01 .btn01 {
  grid-area: btn01;
}
.ayumi-main .ayumi-cont02 {
  width: 748px;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 40px;
}
.ayumi-main .year {
  font-family: "Dela Gothic One";
  color: #006f79;
  font-size: 42px;
  line-height: 1;
  margin-bottom: 33px;
}
.ayumi-main .year span {
  font-weight: normal;
  font-size: 100px;
  letter-spacing: 0.04em;
}
.ayumi-main .text01 {
  font-weight: bold;
  font-size: 24px;
  line-height: 1.5;
  color: #006f79;
}
.ayumi-main .list01 {
  font-weight: bold;
  font-size: 24px;
  line-height: 1.5;
  color: #006f79;
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.ayumi-main .list01 > li {
  padding-left: 1em;
  position: relative;
}
.ayumi-main .list01 > li::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}
.ayumi-main .text02 {
  font-size: 16px;
  line-height: 1.7777777778;
}
.ayumi-main .ayumi-btn01 {
  position: relative;
  font-weight: 500;
  font-size: 18px;
  line-height: 32px;
  text-align: left;
  color: #006f79;
  display: flex;
  min-height: 70px;
  border-radius: 24px;
  background: #fad7dd;
  width: 100%;
  align-items: center;
  padding: 16px 70px 16px 24px;
  border: none;
  text-decoration: none;
  transition: all ease-out 0.3s;
}
.ayumi-main .ayumi-btn01 span {
  font-family: "Dela Gothic One";
  font-size: 16px;
  text-align: left;
  color: #fff;
  display: inline-flex;
  height: 28px;
  border-radius: 4px;
  background: #ec6d81;
  padding: 0 8px;
  align-items: center;
  justify-content: center;
  line-height: 1;
  position: absolute;
  bottom: calc(100% - 14px);
  left: 24px;
}
.ayumi-main .ayumi-btn01::after {
  content: "";
  width: 22px;
  height: 22px;
  background-image: url("../img/icon_plus.svg");
  background-size: contain;
  background-position: 0 0;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
}
@media (hover: hover) {
  .ayumi-main .ayumi-btn01:hover {
    opacity: 0.6;
  }
}
.ayumi-main figure figcaption {
  font-size: 16px;
  line-height: 1.5;
  text-align: left;
  color: #006f79;
}
.ayumi-main figure:not(:first-child) {
  margin-top: 40px;
}
.ayumi-main #chara01 {
  width: 440px;
  position: absolute;
  left: calc(100% + 5.7291666667vw);
  top: 0;
}
.ayumi-main #chara02 {
  width: 810px;
  position: absolute;
  left: calc(100% - 7.8125vw);
  top: 0px;
}
.ayumi-main #chara04 {
  width: 400px;
  position: absolute;
  left: calc(100% + 13.0208333333vw);
  top: -200px;
}
.ayumi-main #chara05 {
  width: 450px;
  position: absolute;
  right: calc(100% + 5.2083333333vw);
  top: 100px;
}
.ayumi-main #chara06 {
  width: 650px;
  position: absolute;
  left: calc(100% - 5.2083333333vw);
  top: 100px;
}
.ayumi-main #bird01 {
  width: 170px;
  position: absolute;
  left: calc(100% + 20.8333333333vw);
  top: -120px;
}
.ayumi-main #bird02 {
  width: 150px;
  position: absolute;
  left: calc(100% + 2.6041666667vw);
  top: 180px;
}
.ayumi-main #bird03 {
  width: 110px;
  position: absolute;
  left: calc(100% + 14.5833333333vw);
  top: -120px;
}
.ayumi-main #bird05 {
  width: 140px;
  position: absolute;
  right: calc(100% + 11.4583333333vw);
  top: 0px;
}
.ayumi-main #bird06 {
  width: 120px;
  position: absolute;
  right: calc(100% + 3.6458333333vw);
  top: 100px;
}
.ayumi-main #fog01 {
  width: 475px;
  height: 508.5px;
  background-image: url("../img/deco_fog01.png");
  background-size: contain;
  background-position: 0 0;
  background-repeat: no-repeat;
  position: absolute;
  left: calc(100% + 26.0416666667vw);
  top: -120px;
}
.ayumi-main #fog02 {
  width: 828.5px;
  height: 709px;
  background-image: url("../img/deco_fog02.png");
  background-size: contain;
  background-position: 0 0;
  background-repeat: no-repeat;
  position: absolute;
  left: calc(100% + 18.2291666667vw);
  top: -200px;
}
.ayumi-main #fog03 {
  width: 702px;
  height: 400px;
  background-image: url("../img/deco_fog03.png");
  background-size: contain;
  background-position: 0 0;
  background-repeat: no-repeat;
  position: absolute;
  left: calc(100% + 1.5625vw);
  top: -50px;
}
.ayumi-main #cloud01 {
  width: 170px;
  height: 81.5px;
  background-image: url("../img/deco_cloud01.png");
  background-size: contain;
  background-position: 0 0;
  background-repeat: no-repeat;
  position: absolute;
  right: calc(100% + 20.3125vw);
  top: 100px;
}
.ayumi-main #cloud02 {
  width: 298px;
  height: 114.5px;
  background-image: url("../img/deco_cloud02.png");
  background-size: contain;
  background-position: 0 0;
  background-repeat: no-repeat;
  position: absolute;
  left: calc(100% + 10.4166666667vw);
  top: 0px;
}
.ayumi-main #cloud03 {
  width: 201px;
  height: 135.5px;
  background-image: url("../img/deco_cloud04.png");
  background-size: contain;
  background-position: 0 0;
  background-repeat: no-repeat;
  position: absolute;
  left: calc(100% + 10.4166666667vw);
  top: 0px;
}
.ayumi-main #cloud04 {
  width: 298px;
  height: 114.5px;
  background-image: url("../img/deco_cloud03.png");
  background-size: contain;
  background-position: 0 0;
  background-repeat: no-repeat;
  position: absolute;
  right: calc(100% + 1.0416666667vw);
  top: 140px;
}
.ayumi-main #cloud05 {
  width: 201px;
  height: 135.5px;
  background-image: url("../img/deco_cloud04.png");
  background-size: contain;
  background-position: 0 0;
  background-repeat: no-repeat;
  position: absolute;
  left: calc(100% + 10.4166666667vw);
  top: -80px;
}
.ayumi-main #balloon01 {
  content: "";
  width: 130px;
  position: absolute;
  right: calc(100% + 21.5625vw);
  top: 100%;
}
@media (max-width: 767px) {
  .ayumi-main {
    padding-top: 139.2vw;
  }
  .ayumi-main .ayumi-contents {
    width: 100%;
    gap: 17.0666666667vw;
    padding: 0 5.3333333333vw;
  }
  .ayumi-main .ayumi-contents > div {
    padding-top: 10.1333333333vw;
    scroll-margin-top: 48vw;
  }
  .ayumi-main .ayumi-contents > div::after {
    content: "";
    width: 8vw;
    height: 8vw;
  }
  .ayumi-main .ayumi-contents > div.special01 {
    max-width: 293px;
  }
  .ayumi-main .ayumi-contents > div.special01::after {
    content: none;
  }
  .ayumi-main .ayumi-contents > div:nth-child(odd) {
    margin-right: auto;
    align-items: flex-start;
  }
  .ayumi-main .ayumi-contents > div:nth-child(odd) .ayumi-text01 {
    padding-right: 16vw;
  }
  .ayumi-main .ayumi-contents > div:nth-child(even) {
    margin-left: auto;
    align-items: flex-end;
  }
  .ayumi-main .ayumi-contents > div:nth-child(even) .year {
    text-align: right;
  }
  .ayumi-main .ayumi-contents > div:nth-child(even)::after {
    left: auto;
    right: 0;
  }
  .ayumi-main .ayumi-contents > div:nth-child(even) .ayumi-text01 {
    padding-left: 16vw;
  }
  .ayumi-main .ayumi-contents > div:nth-child(even) .ayumi-image01 {
    justify-content: flex-end;
  }
  .ayumi-main .ayumi-contents > div .btn01 {
    width: calc(50% - 1.3333333333vw);
    border: none;
    margin-top: 0px;
  }
  .ayumi-main .ayumi-contents > div .btn01::after {
    content: none;
  }
  .ayumi-main .ayumi-contents > div .btn01 span {
    font-size: 4.8vw;
  }
  .ayumi-main .ayumi-text01 {
    display: flex;
    flex-direction: column;
    gap: 4.2666666667vw;
  }
  .ayumi-main .ayumi-cont01 {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 4.2666666667vw;
  }
  .ayumi-main .ayumi-cont01 .ayumi-text01 {
    grid-area: text01;
  }
  .ayumi-main .ayumi-cont01 .ayumi-image01 {
    grid-area: image01;
    display: flex;
    flex-wrap: wrap;
    gap: 2.6666666667vw;
    width: 100%;
  }
  .ayumi-main .ayumi-cont01 .ayumi-image01 > figure {
    flex: 0 0 43.6293333333vw;
  }
  .ayumi-main .ayumi-cont01 .ayumi-btn01 {
    margin-top: 3.7333333333vw;
  }
  .ayumi-main .ayumi-cont02 {
    width: 100%;
  }
  .ayumi-main .year {
    font-size: 8.5333333333vw;
    line-height: 1;
    margin-bottom: 4.2666666667vw;
  }
  .ayumi-main .year span {
    font-weight: normal;
    font-size: 17.0666666667vw;
  }
  .ayumi-main .text01 {
    font-weight: bold;
    font-size: 5.3333333333vw;
    line-height: 1.5;
    color: #006f79;
  }
  .ayumi-main .list01 {
    font-weight: bold;
    font-size: 5.3333333333vw;
    line-height: 1.5;
    color: #006f79;
  }
  .ayumi-main .list01 > li {
    padding-left: 1em;
    position: relative;
  }
  .ayumi-main .list01 > li::before {
    content: "・";
    position: absolute;
    top: 0;
    left: 0;
  }
  .ayumi-main .text02 {
    font-size: 3.7333333333vw;
    padding-right: 16vw;
  }
  .ayumi-main .ayumi-btn01 {
    font-size: 4.8vw;
    line-height: 1.5;
    min-height: 18.6666666667vw;
    border-radius: 6.4vw;
    width: 100%;
    padding: 4.2666666667vw 18.6666666667vw 4.2666666667vw 6.4vw;
    margin-top: 3.7333333333vw;
  }
  .ayumi-main .ayumi-btn01 span {
    font-size: 3.7333333333vw;
    height: 6.4vw;
    border-radius: 1.0666666667vw;
    padding: 0 2.1333333333vw;
    bottom: calc(100% - 3.7333333333vw);
    left: 24px;
  }
  .ayumi-main .ayumi-btn01::after {
    content: "";
    width: 5.8666666667vw;
    height: 5.8666666667vw;
    top: 50%;
    right: 5.3333333333vw;
    transform: translateY(-50%);
  }
  .ayumi-main figure {
    display: grid;
  }
  .ayumi-main figure figcaption {
    font-size: 4.2666666667vw;
  }
  .ayumi-main figure:not(:first-child) {
    margin-top: 0px;
  }
  .ayumi-main #chara01 {
    width: 104vw;
    position: absolute;
    left: 2.6666666667vw;
    top: auto;
    bottom: calc(100% - 13.3333333333vw);
    z-index: -1;
  }
  .ayumi-main #chara02 {
    width: 168.5333333333vw;
    position: absolute;
    left: 0;
    top: auto;
    bottom: -66.6666666667vw;
    z-index: -1;
  }
  .ayumi-main #chara04 {
    width: 93.3333333333vw;
    position: absolute;
    left: -26.6666666667vw;
    top: auto;
    bottom: -80vw;
    z-index: -1;
  }
  .ayumi-main #chara05 {
    width: 80vw;
    position: absolute;
    right: auto;
    left: -32vw;
    top: auto;
    bottom: -58.6666666667vw;
    z-index: -1;
  }
  .ayumi-main #chara06 {
    width: 133.3333333333vw;
    position: absolute;
    left: 8vw;
    top: auto;
    bottom: -66.6666666667vw;
    z-index: -1;
  }
  .ayumi-main #bird01 {
    width: 26.6666666667vw;
    position: absolute;
    left: auto;
    right: 5.3333333333vw;
    top: -18.6666666667vw;
    z-index: -1;
  }
  .ayumi-main #bird02 {
    width: 26.6666666667vw;
    position: absolute;
    left: 5.3333333333vw;
    top: auto;
    bottom: -13.3333333333vw;
    z-index: -1;
  }
  .ayumi-main #bird03 {
    width: 26.6666666667vw;
    position: absolute;
    left: 49.6vw;
    top: -13.3333333333vw;
    z-index: -1;
  }
  .ayumi-main #bird05 {
    width: 26.6666666667vw;
    position: absolute;
    right: auto;
    left: 0vw;
    top: -66.6666666667vw;
    z-index: -1;
  }
  .ayumi-main #bird06 {
    width: 26.6666666667vw;
    position: absolute;
    right: 21.3333333333vw;
    top: auto;
    bottom: -32vw;
    z-index: -1;
  }
  .ayumi-main #fog01 {
    width: 64.5333333333vw;
    height: auto;
    position: absolute;
    left: auto;
    top: -16vw;
    aspect-ratio: 475/508.5;
    right: -45.3333333333vw;
    z-index: -1;
  }
  .ayumi-main #fog02 {
    width: 136.6666666667vw;
    height: auto;
    aspect-ratio: 512.5/438;
    background-image: url("../img/deco_fog02_sp.png");
    left: -106.6666666667vw;
    top: -5.3333333333vw;
    z-index: -1;
  }
  .ayumi-main #fog03 {
    content: "";
    width: 123.7333333333vw;
    height: 70.5333333333vw;
    background-image: url("../img/deco_fog03_sp.png");
    background-size: contain;
    background-position: 0 0;
    background-repeat: no-repeat;
    position: absolute;
    left: -72vw;
    top: -37.3333333333vw;
    z-index: -1;
  }
  .ayumi-main #cloud04 {
    width: 64vw;
    height: auto;
    aspect-ratio: 298/114.5;
    right: auto;
    left: 13.3333333333vw;
    top: -48vw;
    z-index: -1;
  }
  .ayumi-main #balloon01 {
    content: "";
    width: 40vw;
    right: -8vw;
    top: 100%;
  }
}

.ayumi-modal01 {
  position: absolute;
  bottom: 0%;
  right: 0%;
  width: 100%;
  max-width: 900px;
  padding: min(14.3518518519vh, 155px) min(3.125vw, 60px) 0;
  height: 100vh;
  border-radius: min(2.0833333333vw, 40px) 0 0 min(2.0833333333vw, 40px);
  background-color: #fff;
}
.ayumi-modal01 .ayumi-modal01__inner {
  margin: 0 auto;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr;
}
.ayumi-modal01 .ayumi-modal01__inner img {
  width: 1700px;
  height: auto;
}
.ayumi-modal01 h4.modal-title01 {
  text-align: center;
  color: #006f79;
  margin-bottom: 60px;
}
.ayumi-modal01 h4.modal-title01 span {
  border-radius: 4px;
  background: #ec6d81;
  height: 28px;
  display: inline-flex;
  font-family: "Dela Gothic One";
  font-size: 16px;
  color: #fff;
  padding: 0 8px;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.ayumi-modal01 .modal-scroll {
  overflow-y: auto;
  padding-bottom: 10px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.ayumi-modal01 .modal-block01 {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: min(2.0833333333vw, 40px);
}
.ayumi-modal01 .modal-block01.top {
  grid-template-columns: repeat(1, 1fr);
}
.ayumi-modal01 .modal-block01 figcaption {
  color: #006f79;
  font-size: 16px;
  margin-top: 8px;
}
.ayumi-modal01 .modal-block01 p {
  line-height: 1.7777777778;
}
.ayumi-modal01 .modal-block01 a {
  font-size: 18px;
  text-align: left;
  color: #00b3c4;
  transition: all ease-out 0.3s;
  text-decoration: none;
  display: inline-block;
  position: relative;
  overflow: hidden;
  margin-top: 7px;
  vertical-align: bottom;
}
.ayumi-modal01 .modal-block01 a.modal-image01 {
  display: flex;
}
@media (min-width: 768px) {
  .ayumi-modal01 .modal-block01 a.modal-image01 {
    width: 71.6417910448%;
    margin: 0 auto;
  }
}
@media (min-width: 768px) and (hover: hover) {
  .ayumi-modal01 .modal-block01 a.modal-image01:hover {
    opacity: 0.6;
  }
}
.ayumi-modal01 .modal-block01 a.modal-image01::after {
  content: none;
}
.ayumi-modal01 .modal-block01 a::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #00B3C4;
  top: calc(100% - 2px);
  left: 0;
  transition: all ease-out 0.3s;
  position: absolute;
}
@media (hover: hover) {
  .ayumi-modal01 .modal-block01 a:hover::after {
    left: 100%;
  }
}
.ayumi-modal01 .modal-note01 {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.6;
}
.ayumi-modal01 .modal-note01 a {
  font-size: 14px;
}
.ayumi-modal01 .modal-image01 {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ayumi-modal01 .mfp-close {
  display: none;
}
.ayumi-modal01 .popup-modal-dismiss {
  position: absolute;
  top: min(5.0925925926vh, 55px);
  right: min(3.125vw, 60px);
  width: 40px;
  border: none;
  background-color: transparent;
}
@media (max-width: 767px) {
  .ayumi-modal01 {
    right: 0%;
    bottom: 0;
    overflow: hidden;
    padding: 10.6666666667vw 5.3333333333vw 0;
    height: calc(var(--vh, 1vh) * 100 - 12.8vw);
    border-radius: 10.6666666667vw 10.6666666667vw 0 0;
  }
  .ayumi-modal01::after {
    content: "";
    width: 100%;
    height: 13.3333333333vw;
    position: absolute;
    background-color: #fff;
    top: calc(100% - 1px);
  }
  .ayumi-modal01 h4.modal-title01 {
    margin-bottom: 10.6666666667vw;
  }
  .ayumi-modal01 h4.modal-title01 span {
    border-radius: 1.0666666667vw;
    height: 6.4vw;
    font-size: 3.7333333333vw;
    color: #fff;
    padding: 0 2.1333333333vw;
    margin-bottom: 4.2666666667vw;
  }
  .ayumi-modal01 .modal-scroll {
    gap: 5.3333333333vw;
  }
  .ayumi-modal01 .modal-block01 {
    display: block;
  }
  .ayumi-modal01 .modal-block01 figcaption {
    font-size: 4.2666666667vw;
    margin-top: 2.1333333333vw;
  }
  .ayumi-modal01 .modal-block01 a {
    font-size: 4.2666666667vw;
  }
  .ayumi-modal01 .modal-note01 {
    margin-top: 4.2666666667vw;
    font-size: 3.7333333333vw;
    line-height: 1.6;
  }
  .ayumi-modal01 .modal-note01 a {
    font-size: 3.7333333333vw;
  }
  .ayumi-modal01 .modal-image01 {
    width: 64vw;
    margin: 0 auto 4.2666666667vw;
    gap: 2.1333333333vw;
  }
  .ayumi-modal01 .mfp-close {
    display: none;
  }
  .ayumi-modal01 .popup-modal-dismiss {
    position: absolute;
    top: 5.3333333333vw;
    right: 5.3333333333vw;
    width: 7.2vw;
  }
}

.menu-bg01 {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  background-color: rgba(255, 255, 255, 0.8);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all ease-out 0.3s;
}
.menu-bg01.active {
  opacity: 1;
  visibility: inherit;
  pointer-events: all;
}

.mfp-wrap {
  overflow: hidden !important;
}

.ayumi-line {
  /*SVGの可変*/
}
.ayumi-line svg {
  width: 100%;
}
.ayumi-line svg path {
  fill: none;
  /*塗りがない状態*/
  stroke: #A5E1E4;
  /*線の色*/
  stroke-width: 8px;
}
.ayumi-line.ayumi-line01 {
  width: 1806.294px;
  height: 1863.639px;
  position: absolute;
  top: -457px;
  left: calc(50% - 25px);
  transform: translateX(-50%);
  z-index: -1;
}
.ayumi-line.ayumi-line02 {
  width: 1993.633px;
  height: 1853.44px;
  position: absolute;
  top: 23px;
  left: calc(50% - 13px);
  transform: translateX(-50%);
  z-index: -1;
}
.ayumi-line.ayumi-line03 {
  width: 1786.621px;
  height: 1790.708px;
  position: absolute;
  top: 25px;
  left: calc(50% - 170px);
  transform: translateX(-50%);
  z-index: -1;
}
.ayumi-line.ayumi-line04 {
  width: 2140.81px;
  height: 2199.553px;
  position: absolute;
  top: -19px;
  left: calc(50% - 45px);
  transform: translateX(-50%);
  z-index: -1;
}
.ayumi-line.ayumi-line05 {
  width: 1721.475px;
  height: 2869.286px;
  position: absolute;
  top: -35px;
  left: calc(50% + 2px);
  transform: translateX(-50%);
  z-index: -1;
}
.ayumi-line.ayumi-line06 {
  width: 1908.136px;
  height: 2309.452px;
  position: absolute;
  top: -72px;
  left: calc(50% + 311px);
  transform: translateX(-50%);
  z-index: -1;
}
.ayumi-line.ayumi-line07 {
  width: 1887.926px;
  height: 2129.432px;
  position: absolute;
  top: -17px;
  left: calc(50% + 24px);
  transform: translateX(-50%);
  z-index: -1;
}
.ayumi-line.ayumi-line08 {
  width: 1721.477px;
  height: 1978.108px;
  position: absolute;
  top: -38px;
  left: calc(50% + 1px);
  transform: translateX(-50%);
  z-index: -1;
}
.ayumi-line.ayumi-line09 {
  width: 2111.746px;
  height: 3251.37px;
  position: absolute;
  top: 24px;
  left: calc(50% - 35px);
  transform: translateX(-50%);
  z-index: -1;
}
@media (max-width: 767px) {
  .ayumi-line svg path {
    stroke-width: 8px;
  }
  .ayumi-line.ayumi-line01 {
    width: 116.8266666667vw;
    height: auto;
    aspect-ratio: 438.1/1905.4;
    top: -104.7576vw;
    left: -23.4666666667vw;
    transform: none;
  }
  .ayumi-line.ayumi-line02 {
    width: 91.1237333333vw;
    height: auto;
    aspect-ratio: 341.714/1845.322;
    top: 3.7333333333vw;
    left: 0.5333333333vw;
    transform: none;
  }
  .ayumi-line.ayumi-line03 {
    width: 88.96vw;
    height: auto;
    aspect-ratio: 333.6/1510.575;
    top: 3.7333333333vw;
    left: -1.6vw;
    transform: none;
  }
  .ayumi-line.ayumi-line04 {
    width: 92.8250666667vw;
    height: auto;
    aspect-ratio: 348.094/1889.459;
    top: 3.7333333333vw;
    left: 1.0666666667vw;
    transform: none;
  }
  .ayumi-line.ayumi-line05 {
    width: 96.0914666667vw;
    height: auto;
    aspect-ratio: 360.343/2720.206;
    top: 3.7333333333vw;
    left: -3.7333333333vw;
    transform: none;
  }
  .ayumi-line.ayumi-line06 {
    width: 89.8994666667vw;
    height: auto;
    aspect-ratio: 337.123/1851.789;
    top: 3.7333333333vw;
    left: -3.2vw;
    transform: none;
  }
  .ayumi-line.ayumi-line07 {
    width: 107.3741333333vw;
    height: auto;
    aspect-ratio: 402.653/1824.387;
    top: 3.7333333333vw;
    left: -1.0666666667vw;
    transform: none;
  }
  .ayumi-line.ayumi-line08 {
    width: 83.9786666667vw;
    height: auto;
    aspect-ratio: 314.92/1702.164;
    top: 3.7333333333vw;
    left: 2.9333333333vw;
    transform: none;
  }
  .ayumi-line.ayumi-line09 {
    width: 96.6634666667vw;
    height: auto;
    aspect-ratio: 362.488/3397.372;
    top: 3.7333333333vw;
    left: -2.1333333333vw;
    transform: none;
  }
}

.ayumi-text-link01 {
  font-size: 18px;
  text-align: left;
  color: #00b3c4;
  transition: all ease-out 0.3s;
  text-decoration: none;
  display: inline-block;
  position: relative;
  overflow: hidden;
  margin-top: 7px;
  vertical-align: bottom;
}
.ayumi-text-link01::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #00B3C4;
  top: calc(100% - 2px);
  left: 0;
  transition: all ease-out 0.3s;
  position: absolute;
}
@media (hover: hover) {
  .ayumi-text-link01:hover::after {
    left: 100%;
  }
}
@media (max-width: 767px) {
  .ayumi-text-link01 {
    font-size: 4.2666666667vw;
  }
}

/* モーダルの初期位置とアニメーション */
@media (min-width: 768px) {
  .mfp-container {
    padding: 0;
  }
  .mfp-container:before {
    content: none;
  }
  .mfp-with-anim .mfp-content {
    transform: translate(100%, 0);
    transition: transform 0.3s ease-in-out;
  }
  .mfp-with-anim.mfp-bg {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
  }
  .mfp-with-anim.mfp-ready .mfp-content {
    transform: translate(0, 0);
    height: 100vh;
  }
  .mfp-with-anim.mfp-ready.mfp-bg {
    opacity: 0.6;
  }
  .mfp-with-anim.mfp-removing .mfp-content {
    transform: translate(100%, 0);
  }
  .mfp-with-anim.mfp-removing.mfp-bg {
    opacity: 0;
  }
}
@media (max-width: 767px) {
  .mfp-container {
    padding: 0;
  }
  .mfp-container:before {
    content: none;
  }
  .mfp-with-anim .mfp-content {
    transform: translate(0, 100vh);
    transition: transform 0.3s ease-in-out;
  }
  .mfp-with-anim.mfp-bg {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
  }
  .mfp-with-anim.mfp-ready .mfp-content {
    transform: translate(0, 0);
    height: 100vh;
  }
  .mfp-with-anim.mfp-ready.mfp-bg {
    opacity: 0.6;
  }
  .mfp-with-anim.mfp-removing .mfp-content {
    transform: translate(0, 100vh);
  }
  .mfp-with-anim.mfp-removing.mfp-bg {
    opacity: 0;
  }
  .mfp-content {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: calc(var(--vh, 1vh) * 100);
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
/*------------------------------------------------------
 lp
------------------------------------------------------*/
.lp-intro {
  padding: 160px 0 100px;
  text-align: center;
  position: relative;
  z-index: 2;
}
.lp-intro::before {
  content: "";
  width: max(100vw, 1920px);
  height: auto;
  aspect-ratio: 1920/900;
  background-image: url("../img/lp/sec01_bg01.png");
  background-size: contain;
  background-position: 0 0;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
.lp-intro .inner {
  max-width: 1000px;
  position: relative;
  margin: 0 auto;
}
.lp-intro h2 {
  margin: 0 auto 24px;
  font-size: 80px;
  position: relative;
}
.lp-intro h2 em {
  font-size: 80px;
  font-style: normal;
}
.lp-intro h2 small {
  font-size: 64px;
}
.lp-intro h2::before {
  content: "";
  width: 255px;
  height: 184.5px;
  background-image: url("../img/lp/sec01_birds01.png");
  background-size: contain;
  background-position: 0 0;
  background-repeat: no-repeat;
  position: absolute;
  left: calc(50% + 550px);
  top: 0;
  z-index: 1;
  transform: translateX(-50%);
}
.lp-intro .title01 {
  max-width: 665px;
  margin: 0 auto 80px;
  position: relative;
}
.lp-intro .title01 .fin {
  color: red;
  text-align: center;
  position: absolute;
  left: 50%;
  top: calc(100% + 10px);
  transform: translateX(-50%);
  font-weight: 700;
}
.lp-intro .title02 {
  margin: 0 auto 16px;
  font-weight: bold;
  font-size: 40px;
  line-height: 1;
  color: #006f79;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.lp-intro .title02 span {
  display: inline-flex;
  width: 128px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: #ec6d81;
  font-family: "Dela Gothic One";
  font-weight: normal;
  font-size: 16px;
  line-height: 70px;
  text-align: center;
  color: #fff;
}
.lp-intro .title02 rt {
  font-size: 16px;
  font-weight: 400;
}
.lp-intro .text01 {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.5555555556;
  color: #006f79;
}
.lp-intro .bg-paper {
  padding: 48px 24px 48px;
  height: max-content;
  position: relative;
  z-index: 1;
}
.lp-intro .bg-paper::after {
  content: "";
  width: 100%;
  height: 100%;
  background-image: url("../img/lp/sec01_bg02.png");
  background-size: cover;
  background-position: 0 0;
  background-repeat: no-repeat;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  filter: drop-shadow(5px 5px 6px rgba(111, 58, 21, 0.11));
}
.lp-intro .cols01 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: min(8%, 80px);
  align-items: center;
  text-align: left;
}
@media (max-width: 767px) {
  .lp-intro {
    padding: 56.8vw 5.3333333333vw 11.4666666667vw;
  }
  .lp-intro::before {
    content: "";
    width: 100vw;
    aspect-ratio: 375/529;
    background-image: url("../img/lp/sec01_bg01_sp.png");
    background-size: contain;
    background-position: 0 0;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
  }
  .lp-intro h2 {
    margin: 0 auto 7.4666666667vw;
    font-size: 12.8vw;
    position: relative;
  }
  .lp-intro h2 em {
    font-size: 12.8vw;
  }
  .lp-intro h2 small {
    font-size: 9.6vw;
  }
  .lp-intro h2::before {
    content: none;
  }
  .lp-intro .title01 {
    margin: 0 auto 17.0666666667vw;
  }
  .lp-intro .title01 .fin {
    top: calc(100% + 2.6666666667vw);
    font-size: 3.7333333333vw;
    width: max-content;
  }
  .lp-intro .title02 {
    margin: 0 auto 4.2666666667vw;
    font-weight: bold;
    font-size: 8.5333333333vw;
    line-height: 1;
    color: #006f79;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4.2666666667vw;
    flex-wrap: wrap;
  }
  .lp-intro .title02 span {
    display: inline-flex;
    width: 30.4vw;
    height: 6.4vw;
    border-radius: 4px;
    font-size: 3.7333333333vw;
    line-height: 1;
  }
  .lp-intro .title02 rt {
    font-size: 3.7333333333vw;
  }
  .lp-intro .text01 {
    font-weight: 500;
    font-size: 4.8vw;
  }
  .lp-intro .bg-paper {
    padding: 10.6666666667vw 5.3333333333vw 7.4666666667vw;
  }
  .lp-intro .bg-paper::after {
    content: "";
    width: 100%;
    height: 100%;
    background-image: url("../img/lp/sec01_bg02_sp.png");
    background-size: cover;
    background-position: 0 0;
    background-repeat: no-repeat;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    filter: drop-shadow(5px 5px 6px rgba(111, 58, 21, 0.11));
  }
  .lp-intro .cols01 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 4.2666666667vw;
    align-items: center;
    text-align: left;
  }
  .lp-intro .cols01 .left {
    width: 73.3333333333vw;
    margin: 0 auto;
  }
}

.lp-lead {
  padding: 190px 0 235px;
  position: relative;
  z-index: 1;
}
.lp-lead::before {
  content: "";
  width: max(100vw, 1920px);
  height: auto;
  aspect-ratio: 1920/864;
  background-image: url("../img/lp/sec02_bg01.png");
  background-size: contain;
  background-position: 0 0;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
.lp-lead .inner {
  max-width: 1000px;
  position: relative;
  margin: 0 auto;
}
.lp-lead .inner::before {
  content: "";
  width: 309.5px;
  height: 255.5px;
  background-image: url("../img/lp/sec02_deco01.png");
  background-size: contain;
  background-position: 0 0;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  right: calc(100% + 40px);
}
.lp-lead .text01 {
  font-weight: 500;
  font-size: 32px;
  line-height: 2.1875;
  text-align: center;
  color: #006f79;
}
@media (max-width: 767px) {
  .lp-lead {
    padding: 55.2vw 5.3333333333vw 28.5333333333vw;
    position: relative;
    z-index: 1;
    margin: 0 auto 10.6666666667vw;
  }
  .lp-lead::before {
    content: "";
    width: 100vw;
    aspect-ratio: 375/993;
    background-image: url("../img/lp/sec02_bg01_sp.png");
    background-size: contain;
    background-position: 0 0;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
  }
  .lp-lead .inner {
    max-width: 1000px;
    position: relative;
    margin: 0 auto;
  }
  .lp-lead .inner::before {
    content: none;
  }
  .lp-lead .text01 {
    font-size: 6.4vw;
    line-height: 1.9166666667;
    text-align: left;
    color: #006f79;
  }
}

.lp-contents {
  position: relative;
  z-index: 1;
}
.lp-contents::before {
  content: "";
  width: 623.5px;
  height: 674.5px;
  background-image: url("../img/lp/sec03_deco01.png");
  background-size: contain;
  background-position: 0 0;
  background-repeat: no-repeat;
  position: absolute;
  left: -280px;
  top: 470px;
}
.lp-contents .inner {
  max-width: 1000px;
  position: relative;
  margin: 0 auto;
}
.lp-contents .list01 {
  list-style: none;
  gap: 120px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  padding: 0;
}
.lp-contents .list01 > li {
  display: grid;
  grid-template-columns: 159px 1fr;
  gap: min(8%, 80px);
  position: relative;
}
.lp-contents .list01 > li:nth-child(1)::after {
  content: "";
  width: 270.5px;
  height: 245px;
  background-image: url("../img/lp/sec03_img01.png");
  background-size: contain;
  background-position: 0 0;
  background-repeat: no-repeat;
  left: 700px;
  bottom: -100px;
  position: absolute;
}
.lp-contents .list01 > li:nth-child(4)::before {
  content: "";
  width: 416px;
  height: 426.5px;
  background-image: url("../img/lp/sec03_img02.png");
  background-size: contain;
  background-position: 0 0;
  background-repeat: no-repeat;
  left: 800px;
  top: -275px;
  position: absolute;
}
.lp-contents .img01 {
  width: 761px;
}
.lp-contents .img02 {
  width: 347px;
}
.lp-contents .flex01 {
  display: flex;
  flex-direction: column;
  gap: 64px;
}
.lp-contents .item01 {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.lp-contents .title01 {
  font-weight: bold;
  font-size: 40px;
  line-height: 1;
  text-align: left;
  color: #006f79;
  margin-bottom: 12px;
}
.lp-contents .text01 {
  font-weight: bold;
  font-size: 24px;
  line-height: 36px;
  text-align: left;
  color: #006f79;
}
.lp-contents .text02 {
  font-size: 18px;
  line-height: 1.7777777778;
  display: flex;
  align-items: center;
  color: #000;
  gap: 12px;
  margin-top: 24px;
}
.lp-contents .text02 span {
  display: inline-flex;
  width: 70px;
  height: 30px;
  border-radius: 15px;
  background: #ec6d81;
  font-weight: bold;
  font-size: 18px;
  color: #fff;
  text-align: center;
  justify-content: center;
  align-items: center;
}
.lp-contents .text03 {
  font-size: 18px;
  line-height: 1.7777777778;
  text-align: left;
  color: #006f79;
  margin-bottom: 40px;
}
.lp-contents .text03 b {
  font-weight: bold;
}
.lp-contents .flex02 {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 440px;
}
.lp-contents .flex02 .btn01 {
  width: 100%;
  justify-content: flex-start;
  padding-left: 40px;
}
.lp-contents .flex02 .btn01 span {
  text-align: left;
}
.lp-contents .map {
  position: relative;
  margin-bottom: 58px;
}
.lp-contents .map .link01 {
  display: inline-flex;
  text-decoration: underline;
  font-size: 18px;
  color: #00b3c4;
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
}
@media (hover: hover) {
  .lp-contents .map .link01:hover {
    transition: 0.3s all ease-out;
    opacity: 0.6;
  }
}
.lp-contents .map .link01::before {
  content: "";
  width: 15.5px;
  height: 21.5px;
  background-image: url("../img/lp/sec03_icon_map.png");
  background-size: contain;
  background-position: 0 0;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  right: calc(100% + 8px);
  transform: translateY(-50%);
}
.lp-contents .list02 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  list-style: none;
  padding: 0;
}
.lp-contents .list03 {
  list-style: none;
  margin-top: 1em;
  padding-left: 0;
  position: relative;
  z-index: 2;
}
.lp-contents .list03 > li {
  position: relative;
  font-size: 1em;
  color: red;
  padding-left: 1em;
  word-break: break-all;
}
.lp-contents .list03 > li::before {
  content: "※";
  position: absolute;
  left: 0;
  top: 0;
}
.lp-contents .item02 {
  background-image: url("../img/lp/sec03_line02.png");
  background-size: 3px 100%;
  background-position: 0 0;
  background-repeat: no-repeat;
  padding-left: 16px;
}
.lp-contents .title02 {
  font-weight: bold;
  font-size: 24px;
  line-height: 1.5;
  color: #006f79;
  margin-bottom: 16px;
}
.lp-contents .link02 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.lp-contents .link02 a {
  display: inline-flex;
  text-decoration: underline;
  font-size: 18px;
  color: #00b3c4;
}
@media (hover: hover) {
  .lp-contents .link02 a:hover {
    transition: 0.3s all ease-out;
    opacity: 0.6;
  }
}
@media (max-width: 767px) {
  .lp-contents {
    position: relative;
    z-index: 1;
    padding: 0 5.3333333333vw;
  }
  .lp-contents::before {
    content: "";
    width: 99.8666666667vw;
    height: 69.2vw;
    background-image: url("../img/lp/sec03_deco01_sp.png");
    background-size: contain;
    background-position: 0 0;
    background-repeat: no-repeat;
    position: absolute;
    left: auto;
    right: -42.6666666667vw;
    top: 332vw;
  }
  .lp-contents .list01 {
    list-style: none;
    gap: 32vw;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    padding: 0;
  }
  .lp-contents .list01 > li {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 9.6vw;
    position: relative;
  }
  .lp-contents .list01 > li .left {
    width: 35.2vw;
  }
  .lp-contents .list01 > li:nth-child(1)::after {
    content: "";
    width: 54.1333333333vw;
    height: 49.0666666667vw;
    background-image: url("../img/lp/sec03_img01_sp.png");
    background-size: contain;
    background-position: 0 0;
    background-repeat: no-repeat;
    left: auto;
    right: -2.9333333333vw;
    bottom: -52vw;
    position: absolute;
  }
  .lp-contents .list01 > li:nth-child(4)::before {
    content: "";
    width: 60.8vw;
    height: 55.0666666667vw;
    background-image: url("../img/lp/sec03_img02_sp.png");
    background-size: contain;
    background-position: 0 0;
    background-repeat: no-repeat;
    left: auto;
    right: 1.6vw;
    top: -13.3333333333vw;
    position: absolute;
  }
  .lp-contents .img01 {
    width: 100%;
  }
  .lp-contents .img02 {
    width: 100%;
  }
  .lp-contents .flex01 {
    display: flex;
    flex-direction: column;
    gap: 64px;
  }
  .lp-contents .item01 {
    display: flex;
    flex-direction: column;
    gap: 4.2666666667vw;
  }
  .lp-contents .title01 {
    font-weight: bold;
    font-size: 9.6vw;
    line-height: 1.2777777778;
    text-align: left;
    color: #006f79;
    margin-bottom: 1.0666666667vw;
  }
  .lp-contents .text01 {
    font-weight: bold;
    font-size: 5.3333333333vw;
    line-height: 1.5;
    text-align: left;
    color: #006f79;
  }
  .lp-contents .text02 {
    font-size: 4.8vw;
    line-height: 1.7777777778;
    display: flex;
    align-items: flex-start;
    color: #000;
    gap: 3.2vw;
    margin-top: 6.4vw;
  }
  .lp-contents .text02 span {
    display: inline-flex;
    width: 18.6666666667vw;
    flex: 0 0 18.6666666667vw;
    height: 8vw;
    border-radius: 5.3333333333vw;
    background: #ec6d81;
    font-weight: bold;
    font-size: 4.8vw;
    color: #fff;
    text-align: center;
    justify-content: center;
    align-items: center;
  }
  .lp-contents .text03 {
    font-size: 4.8vw;
    line-height: 1.7777777778;
    text-align: left;
    color: #006f79;
    margin-bottom: 8.8vw;
  }
  .lp-contents .text03 b {
    font-weight: bold;
  }
  .lp-contents .text03.second {
    font-size: 4.2666666667vw;
    line-height: 2;
    margin-top: 4.2666666667vw;
    margin-bottom: 6.4vw;
  }
  .lp-contents .flex02 {
    display: flex;
    flex-direction: column;
    gap: 6.4vw;
    width: 100%;
  }
  .lp-contents .flex02 .btn01 {
    width: 100%;
    justify-content: flex-start;
    padding: 0.5208333333vw 11.7333333333vw 0.5208333333vw 5.6vw;
    min-height: 18.4vw;
    height: auto;
  }
  .lp-contents .flex02 .btn01 span {
    font-size: 4.8vw;
    text-align: left;
  }
  .lp-contents .map {
    position: relative;
    margin-bottom: 19.7333333333vw;
  }
  .lp-contents .map .link01 {
    display: inline-flex;
    text-decoration: underline;
    font-size: 4.8vw;
    color: #00b3c4;
    position: absolute;
    right: 0;
    top: calc(100% + 2.1333333333vw);
  }
  .lp-contents .map .link01::before {
    content: "";
    width: 4.1333333333vw;
    height: 5.7333333333vw;
    background-image: url("../img/lp/sec03_icon_map.png");
    background-size: contain;
    background-position: 0 0;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    right: calc(100% + 1.7333333333vw);
    transform: translateY(-50%);
  }
  .lp-contents .list02 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 8.5333333333vw;
    list-style: none;
    padding: 0;
  }
  .lp-contents .item02 {
    background-image: url("../img/lp/sec03_line02_sp.png");
    background-size: 0.8vw 100%;
    background-position: 0 0;
    background-repeat: no-repeat;
    padding-left: 5.0666666667vw;
  }
  .lp-contents .title02 {
    font-weight: bold;
    font-size: 6.4vw;
    line-height: 1.5;
    color: #006f79;
    margin-bottom: 4.2666666667vw;
  }
  .lp-contents .link02 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 4.2666666667vw;
  }
  .lp-contents .link02 a {
    display: inline-flex;
    text-decoration: underline;
    font-size: 4.8vw;
    color: #00b3c4;
  }
}