@import 'https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&display=swap';
@font-face {
  font-family: "Cera Pro Black";
  font-style: normal;
  font-weight: normal;
  src: url("../webfonts/CeraPro-Black.eot");
  src: url("../webfonts/CeraPro-Black.eot?#iefix") format("embedded-opentype"), url("../webfonts/CeraPro-Black.woff") format("woff"), url("../webfonts/CeraPro-Black.ttf") format("truetype");
}
.jaMid {
  font-weight: 500;
}

.jaBold {
  font-weight: 700;
}

.jaBk {
  font-weight: 900;
}

.en {
  font-family: "Cera Pro Black", sans-serif;
}

header {
  z-index: 9999;
}

.nav-trigger {
  z-index: 3;
}

.nav-container,
.chara {
  z-index: 2;
}

* {
  box-sizing: border-box;
}
*::before, *::after {
  box-sizing: border-box;
}

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

button {
  padding: 0;
  color: inherit;
  cursor: pointer;
  background-color: transparent;
  border-width: 0;
}

figure {
  margin: 0;
}

input::-moz-focus-inner {
  padding: 0;
  margin: 0;
  border: 0;
}

ul,
ol,
dd {
  padding: 0;
  margin: 0;
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
}

p {
  margin: 0;
}

cite {
  font-style: normal;
}

fieldset {
  padding: 0;
  margin: 0;
  border-width: 0;
}

img {
  display: block;
  border: 0;
}

.clearfix::after {
  clear: both;
  display: block;
  content: "";
}

.over {
  opacity: 1;
  transition: 0.4s;
}
@media (hover: hover) and (pointer: fine) {
  .over:hover {
    opacity: 0.5;
  }
}

.pc {
  display: block;
}
@media (width <= 559px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media (width <= 559px) {
  .sp {
    display: block;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1;
  color: #000;
  text-align: left;
  letter-spacing: 0.05em;
  background: #fff;
}
body img {
  width: 100%;
}

.fadeIn {
  opacity: 0;
  animation-duration: 1s;
  animation-fill-mode: both;
}
.fadeIn.active {
  animation-name: fadeIn;
  animation-delay: 0.2s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeInUp {
  opacity: 0;
  animation-duration: 1s;
  animation-fill-mode: both;
}
.fadeInUp.active {
  animation-name: fadeInUp;
  animation-delay: 0.2;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 30%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInLeft {
  opacity: 0;
  animation-duration: 1s;
  animation-fill-mode: both;
}
.fadeInLeft.active {
  animation-name: fadeInLeft;
  animation-delay: 0.2;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-30%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInRight {
  opacity: 0;
  animation-duration: 1s;
  animation-fill-mode: both;
}
.fadeInRight.active {
  animation-name: fadeInRight;
  animation-delay: 0.2;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(30%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
header {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  width: 100%;
  height: 90px;
  background: #fff;
}
@media (width <= 559px) {
  header {
    height: 60px;
  }
}
header h1 {
  width: min(11.71875vw, 150px);
  margin-left: 35px;
}
header h1 img {
  filter: brightness(0);
}
@media (width <= 559px) {
  header h1 {
    width: 29.3333333333vw;
    margin-left: 4vw;
  }
}
header h3 {
  width: min(17.96875vw, 230px);
  margin-right: 35px;
  margin-left: auto;
}
header .nav ul {
  display: flex;
  margin-left: 1em;
  font-size: min(1.796875vw, 23px);
}
@media (width <= 559px) {
  header .nav ul {
    font-size: 1.4375rem;
  }
}
header .nav ul li {
  margin: 0 1em;
}

@media (width <= 559px) {
  .nav-trigger {
    position: fixed;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
  }
  .nav-trigger span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 2px;
    background: #000;
    transform: translateX(-50%);
    transition: background 0.3s;
  }
  .nav-trigger span::before, .nav-trigger span::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 16px;
    height: 2px;
    content: "";
    background: #000;
    transition: background 0.3s, transform 0.3s;
  }
  .nav-trigger span::before {
    transform: translateY(-8px);
  }
  .nav-trigger span::after {
    transform: translateY(8px);
  }
  .nav-trigger:hover {
    cursor: pointer;
  }
  .nav-open .nav-trigger span {
    background: transparent;
  }
  .nav-open .nav-trigger span::before {
    transform: rotate(-45deg);
  }
  .nav-open .nav-trigger span::after {
    transform: rotate(45deg);
  }
  .nav-open .nav-trigger p {
    display: none;
  }
  .nav-container {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    padding: 70px 0;
    overflow: auto;
    background: #fff;
    transition: right 0.5s cubic-bezier(0.07, 0.23, 0.34, 1);
    -webkit-overflow-scrolling: touch;
  }
  .nav-container .wrap {
    display: table;
    width: 100%;
    height: 100%;
  }
  .nav-container .nav {
    display: table-cell;
    vertical-align: top;
    text-align: center;
  }
  .nav-container .nav h2 {
    width: 50.6666666667vw;
    margin-inline: auto;
    margin-bottom: 50px;
  }
  .nav-container .nav ul {
    flex-direction: column;
    width: 100%;
    margin-inline: auto;
    margin-bottom: 15px;
  }
  .nav-container .nav ul li {
    width: 100%;
    margin: 0 0 1em;
  }
  .nav-container .nav a {
    display: block;
    text-decoration: none;
  }
  .nav-open .nav-container {
    right: 0;
  }
}
footer {
  padding: 60px 0;
}
@media (width <= 559px) {
  footer {
    padding: 30px 0;
  }
}
footer h2 {
  width: min(37.5vw, 480px);
  margin-inline: auto;
  margin-bottom: 60px;
}
@media (width <= 559px) {
  footer h2 {
    width: 77.3333333333vw;
    margin-bottom: 30px;
  }
}
footer .copy {
  font-size: 0.875rem;
  text-align: center;
}
@media (width <= 559px) {
  footer .copy {
    font-size: 0.625rem;
  }
}

.txt-c {
  text-align: center !important;
}

.txt-j {
  text-align: justify !important;
}

.mb20 {
  margin-bottom: 20px;
}

.mb50 {
  margin-bottom: 50px;
}

main {
  width: 100%;
  padding-bottom: 100px;
  margin-top: 90px;
  overflow: hidden;
  background: url("../images/bg.webp") center top repeat-y;
  background-size: 100% auto;
}
@media (width <= 559px) {
  main {
    padding-bottom: 40px;
    margin-top: 60px;
    background: url("../images/bg_s.webp") center top repeat-y;
    background-size: 100% auto;
  }
}
main article {
  width: min(70.3125vw, 900px);
  margin-inline: auto;
  background: rgba(255, 255, 255, 0.9);
}
@media (width <= 559px) {
  main article {
    width: 89.3333333333vw;
  }
}
main article > section {
  position: relative;
  width: min(54.6875vw, 700px);
  padding: 60px 0;
  margin-inline: auto;
}
@media (width <= 559px) {
  main article > section {
    width: 78.6666666667vw;
    padding: 40px 0;
  }
}
main article > section .inr {
  width: 90%;
  margin-inline: auto;
}
@media (width <= 559px) {
  main article > section .inr {
    width: 68vw;
  }
}

h4.title {
  margin-bottom: 0.5em;
  font-size: min(1.5625vw, 20px);
  line-height: 1.2;
  color: #20992a;
  text-align: center;
}
@media (width <= 559px) {
  h4.title {
    font-size: 3.4666666667vw;
    line-height: 1.4;
  }
}
h4.title__en {
  font-size: min(1.953125vw, 25px);
}
@media (width <= 559px) {
  h4.title__en {
    font-size: 3.7333333333vw;
  }
}

h3.title {
  margin-bottom: 0.7em;
  font-size: min(2.34375vw, 30px);
  line-height: 1.2;
  text-align: center;
}
@media (width <= 559px) {
  h3.title {
    font-size: 4.2666666667vw;
    line-height: 1.4;
  }
}
h3.title__en {
  font-size: min(2.8125vw, 36px);
}
@media (width <= 559px) {
  h3.title__en {
    font-size: 5.0666666667vw;
  }
}

h2.title {
  margin-bottom: 0.7em;
  font-size: min(3.125vw, 40px);
  line-height: 1.2;
  text-align: center;
}
@media (width <= 559px) {
  h2.title {
    font-size: 5.3333333333vw;
    line-height: 1.4;
  }
}
h2.title__en {
  font-size: min(3.515625vw, 45px);
}
@media (width <= 559px) {
  h2.title__en {
    font-size: 6.4vw;
  }
}

h3.heading {
  margin-bottom: 1em;
  font-size: min(1.25vw, 16px);
  line-height: 1.6;
  text-align: center;
}
@media (width <= 559px) {
  h3.heading {
    font-size: 3.2vw;
    text-align: justify;
  }
}
h3.heading__sub {
  text-align: justify;
  font-size: min(1.09375vw, 14px);
}
@media (width <= 559px) {
  h3.heading__sub {
    font-size: 3.2vw;
  }
}

.caution {
  line-height: 1.6;
}
.caution__ttl {
  margin-bottom: 0.5em;
  font-size: 0.875rem;
  font-weight: 700;
}
.caution__read {
  margin-bottom: 3em;
  font-size: 0.75rem;
}
@media (width <= 559px) {
  .caution__read {
    margin-bottom: 2em;
  }
}
.caution__read--small {
  margin-bottom: 1em;
  font-size: 0.625rem;
  line-height: 1.4;
}
.caution a {
  text-decoration: underline;
}

.balloon {
  position: relative;
  width: 100%;
  padding: 0.5em 0;
  line-height: 1.2;
  color: #fff;
  text-align: center;
}
.balloon::before {
  position: absolute;
  top: -14px;
  right: 20px;
  width: 16px;
  height: 14px;
  content: "";
  clip-path: polygon(0 100%, 0 0, 100% 100%);
}

.chara {
  position: absolute;
}
.chara img {
  height: min(15.625vw, 200px);
}
@media (width <= 559px) {
  .chara img {
    height: 37.3333333333vw;
  }
}
.chara1 {
  top: -5em;
  right: -28.5714285714%;
}
@media (width <= 559px) {
  .chara1 {
    top: -18.6666666667vw;
    right: -8vw;
  }
}
.chara2 {
  top: -5em;
  left: -21.4285714286%;
}
@media (width <= 559px) {
  .chara2 {
    top: -22.6666666667vw;
    left: -8vw;
  }
}
.chara3 {
  top: 0;
  right: -11.4285714286%;
}
@media (width <= 559px) {
  .chara3 {
    right: -13.3333333333vw;
  }
}
.chara3 img {
  transform-origin: center 0;
  animation: swing linear 4s infinite;
}
@keyframes swing {
  0% {
    rotate: 0deg;
  }
  25% {
    rotate: 10deg;
  }
  50% {
    rotate: 0deg;
  }
  75% {
    rotate: -10deg;
  }
  100% {
    rotate: 0deg;
  }
}
.chara4 {
  top: -5em;
  left: -21.4285714286%;
}
@media (width <= 559px) {
  .chara4 {
    top: -18.6666666667vw;
    left: -8vw;
  }
}

.btn {
  position: relative;
  width: min(35.15625vw, 450px);
  height: 70px;
  margin-inline: auto;
  text-align: center;
  background: #000;
}
@media (width <= 559px) {
  .btn {
    width: 100%;
    height: 60px;
  }
}
.btn a {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  font-size: min(1.40625vw, 18px);
  line-height: 1.2;
  color: #fff;
  text-decoration: none;
}
@media (width <= 559px) {
  .btn a {
    font-size: 3.7333333333vw;
  }
}

.line {
  background-image: linear-gradient(to right, #000 10px, transparent 10px);
  background-repeat: repeat-x;
  background-position: left top;
  background-size: 16px 4px;
}

.kv {
  padding: min(6.25vw, 80px) 0;
}
@media (width <= 559px) {
  .kv {
    width: 89.3333333333vw;
    padding: 60px 0;
    margin-inline: auto;
  }
}
.kv__ttl {
  width: min(61.71875vw, 790px);
  margin-inline: auto;
}
@media (width <= 559px) {
  .kv__ttl {
    width: 100%;
    margin-bottom: 40px;
  }
}
.kv__ttl.fadeIn.active {
  animation-delay: 0s;
}
.kv__day {
  width: min(44.53125vw, 570px);
  margin-inline: auto;
}
@media (width <= 559px) {
  .kv__day {
    width: 100%;
  }
}
.kv__day.fadeIn.active {
  animation-delay: 0.2s;
}
.kv__place {
  display: grid;
  place-content: center;
  width: min(39.0625vw, 500px);
  height: 44px;
  margin: 1em auto;
  font-size: min(1.953125vw, 25px);
  color: #4ac4d7;
  background: #fff;
  border-radius: 22px;
}
@media (width <= 559px) {
  .kv__place {
    width: 100%;
    margin-inline: auto;
    font-size: 5.6vw;
  }
}
.kv__place.fadeIn.active {
  animation-delay: 0.4s;
}
.kv__time {
  font-size: min(2.5vw, 32px);
  color: #fff;
  text-align: center;
}
@media (width <= 559px) {
  .kv__time {
    font-size: 6.4vw;
  }
}
.kv__time.fadeIn.active {
  animation-delay: 0.6s;
}
.kv__time span {
  margin-left: 0.5em;
  font-size: min(3.28125vw, 42px);
}
@media (width <= 559px) {
  .kv__time span {
    font-size: 9.6vw;
  }
}

@media (width <= 559px) {
  .concept {
    padding-bottom: 100px;
  }
}
.concept .caution {
  margin-bottom: 1em;
  font-size: min(1.015625vw, 13px);
  color: #ed6b00;
  text-align: center;
}
@media (width <= 559px) {
  .concept .caution {
    font-size: 3.2vw;
    line-height: 1.3;
    text-align: justify;
  }
}
.concept .btn.btn2 {
  box-sizing: border-box;
  margin-top: 25px;
  background: #fff;
  border: 2px solid #000;
}
@media (width <= 559px) {
  .concept .btn.btn2 {
    height: 90px;
  }
}
.concept .btn.btn2 a p {
  font-size: min(1.09375vw, 14px);
  color: #000;
}
@media (width <= 559px) {
  .concept .btn.btn2 a p {
    font-size: 3.7333333333vw;
  }
}
.concept .btn.btn2 a p span {
  margin-right: 0.5em;
  font-size: min(2.34375vw, 30px);
  vertical-align: middle;
}
@media (width <= 559px) {
  .concept .btn.btn2 a p span {
    display: block;
    margin-right: 0;
    font-size: 8vw;
  }
}

@media (width <= 559px) {
  .contents {
    padding: 100px 0 80px;
  }
}
.contents__thumb ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 2%;
}
.contents__thumb ul li {
  position: relative;
  width: 23.5%;
}
@media (width <= 559px) {
  .contents__thumb ul li {
    width: 49%;
  }
  .contents__thumb ul li:nth-child(2n+1).anim.active {
    animation-delay: 0.2s;
  }
  .contents__thumb ul li:nth-child(2n+2).anim.active {
    animation-delay: 0.4s;
  }
}
.contents__thumb ul li a::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
}
.contents__thumb ul li a p {
  margin-top: 0.5em;
  font-size: 0.6875rem;
  line-height: 18px;
  text-align: center;
}
.contents__thumb ul li:nth-child(4n+1).anim.active {
  animation-delay: 0.2s;
}
.contents__thumb ul li:nth-child(4n+2).anim.active {
  animation-delay: 0.4s;
}
.contents__thumb ul li:nth-child(4n+3).anim.active {
  animation-delay: 0.6s;
}
.contents__thumb ul li:nth-child(4n+4).anim.active {
  animation-delay: 0.8s;
}

.event {
  padding-top: 120px;
}
@media (width <= 559px) {
  .event {
    padding-top: 100px;
  }
}
.event > section {
  position: relative;
  box-sizing: border-box;
  padding: 60px 0 40px;
  margin-bottom: 120px;
  border: 2px solid #000;
  background: #FFF;
}
@media (width <= 559px) {
  .event > section {
    padding: 40px 0 20px;
    margin-bottom: 60px;
  }
}
.event > section .inr {
  overflow: hidden;
}
.event .mainvisual {
  width: min(36.71875vw, 470px);
  margin-inline: auto;
  margin-bottom: 50px;
}
@media (width <= 559px) {
  .event .mainvisual {
    width: 100%;
    margin-bottom: 20px;
  }
}
.event .img1 {
  width: 100%;
  margin-inline: auto;
  margin-bottom: 50px;
}
@media (width <= 559px) {
  .event .img1 {
    width: 100%;
    margin-bottom: 20px;
  }
}
.event__ttl {
  position: absolute;
  top: -1.875vw;
  left: 50%;
  padding: 0.5em 2em;
  color: #fff;
  background: #000;
  border-radius: 9999px;
  translate: -50%;
}
@media (width <= 559px) {
  .event__ttl {
    top: -4.8vw;
    padding: 0.5em 1em;
  }
}
.event__ttl p {
  display: block;
  font-size: min(1.875vw, 24px);
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
}
@media (width <= 559px) {
  .event__ttl p {
    font-size: 4.8vw;
  }
}
.event .balloon {
  width: min(27.34375vw, 350px);
  margin-inline: auto;
  font-size: min(1.5625vw, 20px);
  background: #20992a;
}
@media (width <= 559px) {
  .event .balloon {
    width: 100%;
    font-size: 0.875rem;
  }
}
.event .balloon::before {
  background: #20992a;
}
.event .col1-col1 ul {
  display: block;
}
.event .col2-col1 ul {
  display: flex;
}
@media (width <= 559px) {
  .event .col2-col1 ul {
    flex-direction: column;
  }
}
.event .col2-col1 ul li {
  width: 50%;
}
@media (width <= 559px) {
  .event .col2-col1 ul li {
    width: 100%;
  }
}
.event .col2-col2 ul {
  display: flex;
}
.event .col2-col2 ul li {
  width: 50%;
}
.event .col-txt__ttl {
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.3;
  margin-bottom: 0.5em;
  text-align: center;
}
@media (width <= 559px) {
  .event .col-txt__ttl {
    font-size: 1rem;
  }
}
.event .col-txt__name {
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.3;
  text-align: center;
  margin-top: 0.5em;
}
@media (width <= 559px) {
  .event .col-txt__name {
    font-size: 0.8125rem;
  }
}
.event .col-gap ul {
  gap: 10px 20px;
}
.event .bg {
  padding: 40px 0;
  background: #dcf5eb;
}
@media (width <= 559px) {
  .event .bg {
    padding: 20px 0;
  }
}
.event .bg.bg2 {
  background: #FFF;
  border: 2px solid #20992a;
}
.event .bg .wrap {
  width: min(46.09375vw, 590px);
  margin-inline: auto;
}
@media (width <= 559px) {
  .event .bg .wrap {
    width: 57.6vw;
  }
}
.event .bg .wrap__inr {
  width: min(41.40625vw, 530px);
  margin-inline: auto;
}
@media (width <= 559px) {
  .event .bg .wrap__inr {
    width: 100%;
  }
}
.event .bg .wrap__inr .heading {
  text-align: justify;
  padding: 1em;
  margin-bottom: 1em;
  background: rgba(32, 153, 42, 0.1);
}
.event .andmore h2.title {
  margin-bottom: 0.2em;
}

@media (width <= 559px) {
  .access {
    padding: 120px 0 80px;
  }
}
.access__map {
  position: relative;
  box-sizing: border-box;
  height: 0;
  padding-bottom: 56.25%;
  margin-bottom: 1em;
  overflow: hidden;
  border: 2px solid #000;
}
@media (width <= 559px) {
  .access__map {
    padding-bottom: 100%;
  }
}
.access__map iframe,
.access__map object,
.access__map embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.access > section {
  box-sizing: border-box;
  padding-top: 3em;
}
@media (width <= 559px) {
  .access > section {
    padding-top: 2em;
  }
}
.access > section.kidsCorner {
  margin-bottom: 3em;
  border: 2px solid #ed6b00;
}
.access > section.kidsCorner h2.title {
  color: #ed6b00;
}
@media (width <= 559px) {
  .access > section.kidsCorner .heading {
    text-align: left;
  }
}
.access > section.customer {
  border: 2px solid #000;
}

@media (width <= 559px) {
  .contact {
    padding-top: 80px;
  }
}
.contact__ttl {
  margin-bottom: 1em;
  font-size: 1.0625rem;
  text-align: center;
}
.contact .btn {
  margin-bottom: 25px;
}

@keyframes remodal-opening-keyframes {
  from {
    opacity: 0;
    transform: scale(1);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: none;
  }
}
.remodal {
  box-sizing: border-box;
  width: 90%;
  max-width: 900px !important;
  padding: 0;
  margin: 50px 0;
  color: #000;
  background: none;
  transform: translate3d(0, 0, 0);
}
@media (width <= 559px) {
  .remodal {
    width: 89.3333333333vw;
  }
}
.remodal-overlay {
  background: #fff !important;
  opacity: 0.7 !important;
}
.remodal-overlay.remodal-is-opening {
  animation-name: none;
}
.remodal-wrapper {
  padding: 0;
  scrollbar-gutter: stable;
}
.remodal-wrapper::after {
  vertical-align: middle;
}
.remodal-close {
  display: none;
}
.remodal .modal {
  box-sizing: border-box;
  padding: 80px 0 40px;
  background: #fff;
  border: 2px solid #000;
}
@media (width <= 559px) {
  .remodal .modal {
    padding: 90px 0 40px;
  }
}
.remodal .modal__cancel {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 60px;
}
.remodal .modal__cancel:hover {
  cursor: pointer;
}
.remodal .modal__cancel2 {
  width: 140px;
  margin: 2em auto 0;
}
.remodal .modal__cancel2:hover {
  cursor: pointer;
}
.remodal .modal__cont1 .inr {
  width: 72.2222222222%;
  margin-inline: auto;
}
@media (width <= 559px) {
  .remodal .modal__cont1 .inr {
    width: 78.6666666667vw;
  }
}
.remodal .modal__cont1 ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (width <= 559px) {
  .remodal .modal__cont1 ul {
    flex-direction: column;
  }
}
.remodal .modal__cont1 ul li {
  width: 48%;
}
@media (width <= 559px) {
  .remodal .modal__cont1 ul li {
    width: 100%;
  }
}
@media (width <= 559px) {
  .remodal .modal__cont1 h2.title {
    margin-top: 1em;
  }
}
.remodal .modal__cont1--read {
  margin-bottom: 2em;
  font-size: 0.8125rem;
  line-height: 28px;
  line-height: 1.8;
  text-align: left;
}
.remodal .modal__cont1--read strong {
  font-size: 1rem;
}
.remodal .modal__cont1 .balloon {
  font-size: 0.875rem;
  background: #d5675a;
}
.remodal .modal__cont1 .balloon::before {
  background: #d5675a;
}
.remodal .modal__cont2 .inr {
  width: 41.6666666667%;
  margin-inline: auto;
}
@media (width <= 559px) {
  .remodal .modal__cont2 .inr {
    width: 78.6666666667vw;
  }
}
.remodal .modal__cont2--step {
  margin-bottom: 100px;
}
.remodal .modal__cont2--step img {
  margin-bottom: 1em;
}
.remodal .modal__cont2--step .caution__read {
  text-align: left;
}
.remodal .modal .btn {
  width: 100%;
}

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