article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
    display: block;
    font-family: 'Zen Maru Gothic', sans-serif;
    max-width: 100vw;
    overflow: hidden;
}
body {
    color: #51656f;
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1.4rem;
    line-height: 2.8rem;
    letter-spacing: 0em;
    overflow-x: hidden;
    background-color: #FFF;
    margin: 0px;

}
header {
    width: 100%;
    height: 10rem;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}
header h1 {
    position: absolute;
    left: 18%;
    z-index: 1;
    top: -26px;
}
#main:before {
    content: "";
    width: 100%;
    height: 18.9rem;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(../img/header_back.png);
    background-position: left top;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    z-index: 1;
}
#main .main_text {
    width: 100%;
    position: absolute;
    top: 14.3rem;
    left: 0;
    box-sizing: border-box;
    z-index: 1;
    font-weight: bold;
    font-style: normal;
}
#main .main_text h3 {
    font-size: 13px;
    letter-spacing: 0.05em;
    font-family: 'Zen Maru Gothic', sans-serif;
    position: absolute;
    left: 5px;
    text-align: left;
    width: 100%;
    top: 60px;
    font-weight: bold;
}
#main .main_text h3 .text {
    display: inline-block;
    position: relative;
    line-height: 35px;
    padding-left: 1rem;
    box-sizing: border-box;
    z-index: 0;
    margin-bottom: 1rem;
    background-color: white;
    border-radius: 3px;
    padding: 0% 5%;
    letter-spacing: 2px;
    margin-left: 5%;
}


.main_top div p {
    font-size: 20px;
}
.main_top p {
    font-size: 15px;
    line-height: 25px;
}

section h3, section p{
    text-align: center;
}
section.prepare {
    text-align: center;
    margin-top: 15%;
}
img.back {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.8s ease-out, transform 1.8s ease-out;
}

img.back.show {
  opacity: 1;
  transform: translateY(0);
}
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.accordion {
    cursor: pointer;
    background-color: #a4d7df;
    border: none;
    border-radius: 3px;
    width: 94%;
    text-align: left;
    padding: 14px 16px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    transition: background-color 0.3s;
    color: white;
    margin: auto;
    position: relative;
    background-color: #a4d7df;
    background-image: url(../img/Q_icon.png);
    background-size: contain;
    background-position: left;
    background-repeat: no-repeat;
    position: relative;
    padding-left: 15%;
}
button.accordion::before {
    color: #ffffff; 
    font-size: 14px;
    font-weight: 700;
    margin-right: 8px;
    width: 40px;
    height: 22px;
    content: "Q";
    position: absolute;
    top: 10px;
    left: 12px;
}
.accordion::after {
    content: "+";
    font-size: 20px;
    transition: transform 0.3s, color 0.3s;
    color: #0097b2;
    position: absolute;
    right: 5%;
}
.accordion.active {
  border-radius: 3px 3px 0px 0px;
  margin-bottom: 0px;
}
.accordion.active::after {
  content: "−";
  color: #ffffff;
}
.content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s ease, opacity 0.5s ease;
  overflow: hidden;
  padding: 0 16px 10px;
  background-color: #a4d7df;
  border-left:none;
  border-radius: 0px 0px 3px 3px;
  margin: 0 3%;
  margin-bottom: 1%;
}
.content p {
    margin: 10px 0 0;
    background: white;
    border-radius: 3px;
    padding: 5%;
    font-size: 13px;
    line-height: 20px !important;
    text-align: left;
    display: flex;
}
.content p::before {
  content: "A";
  color: #0097b2; 
  font-weight: 700;
  margin-right: 8px;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.main_top {
    color: white;
    background-color: #a4d7df;
    text-align: center;
    padding-top: 1%;
}
.main_top div img {
    width: 90vw;
    border-radius: 10px;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #a4d7df;
    color: #fff;
    font-weight: 600;
    padding: 5px 20px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-top: 5%;
}

.button::after {
  content: "→";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  color: #a4d7df;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  margin-left: 8px;
  font-size: 14px;
  transition: transform 0.3s ease;
}
.button:hover::after {
  transform: translateX(4px);
}
.line::after{
    background-color: #88d177;
    color: white;
}
.tell::after{
    background-color: #f0a2b3;
    color: white;
}
.tell, .line {
  background-color: #ffffff;
  color: #4d4d4d;
}
.yoyaku, .yoyaku02 {
    display: flex;
    justify-content: space-evenly;
}
.box_detail {
    background-color: #f8d1da;
    padding-top: 8%;
}
.box ul li {
    list-style: none;
    background-color: #f8d1da;
}
.box ul {
    margin: 0;
    padding: 0;
}
.box ul li h4, .box ul li p {
    text-align: center;
}
.box_detailImg img {
    width: 85vw;
    border-radius: 0px 20px 20px 0px;
    z-index: 10;
}
.box_detailTxt {
    z-index: 100;
    background: white;
    width: 85vw;
    margin: 0px 0px 5% 15%;
    border-radius: 20px 0px 0px 20px;
}
.box_detailTxt h4 {
    text-align: left !important;
    padding-left: 10%;
    color: #d36561;
    padding-top: 0px;
    font-size: 17px;
    width: 80%;
    line-height: 30px;
    font-weight: bold;
}
.box_detailTxt p {
    text-align: left !important;
    padding-left: 10%;
    color: #9d8480;
    padding-top: 0px;
    font-size: 20px;
    line-height: 25px;
    letter-spacing: 2px;
}
.information {
    background-color: white;
    margin: 0 8%;
    border-radius: 10px;
    padding: 0 3% 1% 5%;
    line-height: 25px;
}
.information h4 {
    color: #0097b2;
    font-size: 13px;
    font-weight: bold;
}
.information span {
    font-size: 13px;
}
.prepareInner div ul {
    background: #e7e9a9;
    padding: 5% 4%;
    margin: 5%;
    border-radius: 15px;
}
.prepareInner div ul li {
    list-style: none;
    background-color: white;
    margin: 9px 0px;
    font-size: 13px;
    text-align: left;
}
.prepareInner div ul li::before {
  content: "◽︎";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: black;
  width: 22px;
  height: 22px;
  margin-left: 8px;
  margin-right: 5px;
  font-size: 20px;
}
.box_left p {
    text-align: left;
    font-size: 14px;
    padding: 0px 5%;
    line-height: 17px;
}
.line02::after{
    background-color: white;
    color: #a4d7df;
}
.tell02::after{
    background-color: white;
    color: #f0a2b3;
}
.tell02, .line02{
    color: white;
}
.line02{
    background-color: #a4d7df;
}
.tell02{
    background-color: #f0a2b3;
}
.oketani_img {
    z-index: 1;
}
section.oketani {
    position: relative;
    display: grid;
}
.oketani_img img {
    width: 100vw;
    margin-top: 10%;
}
.oketani_txt {
    z-index: 100;
    background-color: white;
    margin-top: -55px;
    border-radius: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 100vw;
    margin-bottom: 10px;
}
.oketani_txt h3 {
    color: #9b7b6c;
    line-height: 35px;
    font-size: 20px;
}
.oketani_txt h3 span {
    color: #f0a2b3;
}
.oketani_txt p {
    padding: 0px 30px;
    font-size: 15px;
    line-height: 32px;
    text-align: left;
}
.oketani_site {
    display: flex;
    justify-content: space-evenly;
}
.oketani_site a img {
    width: 25vw;
    padding-bottom: 10%;
}
img.oppa {
    padding-top: 40%;
}
.footer_text {
    background-color: #fdeaac;
    padding-top: 5%;
    margin-top: -5%;
    padding-bottom: 5%;
}
.footer_info {
    background-color: white;
    margin: 5%;
    border-radius: 10px;
    text-align: center;
}
dt.mail {
    color: #f0a2b3;
    font-weight: bold;
    font-size: 19px;
}
dl.address dd {
    margin-left: 0px;
    font-size: 15px;
}
section#faq h3 {
    color: #bc956e;
}
.box_left p, .box ul li p {
    line-height: 0px;
    margin-bottom: 40px;
}
.box_left h4 {
    color: #9b7b6c;
    text-align: center;
    margin-top: 0px;
    margin-bottom: 0px;
}
.box_left h4 span {
    color: #089ab3;
}
.box_detailTxt p {
    line-height: 25px !important;
    font-weight: 300;
    padding-right: 3%;
    font-size: 14px;
    width: 90%;
}
h4.box_title, .box_subtitle {
    background-color: white;
}
.box_titleBox {
    background: white;
    padding-bottom: 1%;
}
h4.box_title {
    color: #9a7b6c;
    font-size: 21px;
    margin-bottom: 0px;
}
p.box_subtitle {
    font-size: 13px;
    margin-top: 8px;
}
.detail_top h3::before {
    content: "";
    display: inline-block;
    width: 65px;
    height: 60px;
    background-image: url(../img/_elephant.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 7px;
    vertical-align: middle;
    position: relative;
}
.detail_top h3 {
    color: #714e48;
    font-size: 21px;
    font-weight: 400;
}
.detail_top h3::after {
  content: "";
  display: block;
  width: 85vw;              
  height: 6px;              
  margin: 15px auto 0;
  border-radius: 10px;
  background-image: repeating-linear-gradient(
    to right,
    #f3d259 0 10px,          
    transparent 10px 14px   
  );
  border-radius: 9999px;    
}
.mv .naminami {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
}
.info_box {
  background-color: #a4d7df;
  width: 100%;
  position: relative;
  margin-top: -5rem;
  z-index: 1;
  padding-top: 1%;
}
.info_box {
  background-color: #a4d7df;
  width: 100%;
  position: relative;
  margin-top: -5rem;
  z-index: 1;
  padding-top: 10px;
}
.prepareInner img {
    width: 20%;
}
.footer_info img {
    width: 10%;
    padding-top: 5%;
}
dl.address {
    margin-top: 0px;
}
img.footerImg {
    width: 60%;
}
.footer_container{
    text-align: center;
}
.image-stack {
  position: relative;
  width: 90vw;
  margin: 0 auto;
}

.image-stack img {
  display: block;
  width: 100%;
  border-radius: 10px;
}
.image-stack .cloud {
    position: absolute;
    top: -20px;
    right: -15%;
    transform: translateX(-50%);
    width: 26%;
    pointer-events: none;
    z-index: 2;
    animation: floatCloud 6s ease-in-out infinite;
}

@keyframes floatCloud {
  0% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
  100% { transform: translateX(-50%) translateY(0); }
}
.mv02 ,.mv03 {
    width: 101%;
    height: 13vh;
    position: relative;
    background-color: #ffffff;
    top: -22px;
    z-index: -100;
}
img.naminami02 {
    width: 101%;
}
img.naminami03 {
    width: 100vw;
}
.oketani_site a {
  display: inline-block;
  transition: transform 0.3s ease, opacity 0.3s ease; 
}

.oketani_site a:hover {
  transform: scale(1.05);
  opacity: 0.95; 
}
.mv03 {
    background-color: #ffffff;
    top: 20px;
}
section#faq {
    margin-top: 10%;
}
.box ul li {
    position: relative;
}
.mv04 {
    width: 100%;
    height: 13vh;
    position: absolute;
    background-color: #ffffff;
    bottom: -6%;
}
.mv04 img {
    width: 100vw;
}
.box_left p {
    text-align: center;
}
p#pc_only.attention {
    display: none;
}
p#sp_only.attention {
    font-size: 13px;
    padding: 0px 6%;
    line-height: 20px;
    text-align: left;
}
.box_detailImg {
  opacity: 0;
  transform: translateX(-30px); 
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.box_detailImg.show {
  opacity: 1;
  transform: translateX(0);
}
.fadeUp {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1.2s ease-out;
}

.fadeUp.show {
  opacity: 1;
  transform: translateY(0);
}
.fadeInUp {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
  will-change: opacity, transform;
}
.fadeInUp.show { opacity: 1; transform: translateY(0); }

.text span {
  display: inline-block;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeCharUp 0.8s ease-out forwards;
}

@keyframes fadeCharUp {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.scaleUp {
  opacity: 0;
  transform: scale(0.9);
  transition: all 3s ease-out;
}
.scaleUp.show {
  opacity: 1;
  transform: scale(1);
}
.charFadeLeft span {
  display: inline-block;
  opacity: 0;
  transform: translateX(-15px);
  animation: charFadeLeft 0.6s ease-out forwards;
}

@keyframes charFadeLeft {
  0% {
    opacity: 0;
    transform: translateX(-15px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.oketani_txt p span {
  display: inline-block;
  opacity: 0;
  transform: translateX(-15px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.oketani_txt p span.show {
  opacity: 1;
  transform: translateX(0);
}
.inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}
header {
    width: 100%;
    padding: 1rem;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
}
header .inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header h1 {
    width: 50%;
}
header h1 img {
    width: 100%;
}
header .yoyaku02 {
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 1rem;
}
header .yoyaku02 a {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 30px;
    color: #fff;
    border-radius: 12px;
}
header .yoyaku02 a:after {
    content: "→";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    color: #a4d7df;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    margin-left: 8px;
    font-size: 14px;
    transition: transform 0.3s ease;
}

header .yoyaku02 .tell02:after {
    color: #f0a2b3;
}

header .yoyaku02 a.line02 {
    background: #a4d7df;
}

header .yoyaku02 a.tell02 {
    background: #f0a2b3;
}
.mv {
    width: 100%;
    height: 80vh;
    position: relative;
    z-index: 1;
    background: url(../img/mainImg.jpg) no-repeat top center;
    background-size: cover;
    background-position: top 50% left 70%;
}

.mv:before {
    content: "";
    width: 100%;
    height: 18.9rem;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(../img/header_back.png);
    background-position: left top;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    z-index: 1;
}
.mv .mv-txt {
    display: flex;
    flex-direction: column;
    gap: 0px;
    position: absolute;
    left: 5%;
    bottom: 10%;
    z-index: 5;
}
 .mv .mv-txt h2 span {
    width: fit-content;
    background: #fff;
    font-size: 15px;
    padding: 0px 3px;
    border-radius: 5px;
    font-weight: bold;   
    margin-bottom: 2%;
 }
 span.text {
    display: inline-block;
    position: relative;
    line-height: 3rem;
    padding-left: 1rem;
    box-sizing: border-box;
    z-index: 0;
    margin-bottom: 1rem;
}
 .text01 , .text02 {
    margin-bottom: 2%;
 }
.mv .mv-illust {
    width: 100%;
    display: flex;
    align-items: flex-end;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 2;
}
.mv .mv-illust .star {
    width: 20%;
    position: absolute;
    top: 20%;
    right: 5%;
}
.news {
    padding: 5px 0 15px 0;
    background: #a4d7df;
    z-index: -100;
}
.news .information {
    display: flex;
    align-items: center;
    gap: 0%;
    padding: 2% 5%;
    border-radius: 10px;
    background: #fff;
}
.news .information h4 {
    color: #0097b2;
    font-weight: 600;
    width: 27%;
}
.news .information span {
    font-size: 12px;
    line-height: 16px;
}
.main-content {
    background: #a4d7df;
    height: 3000px;
    text-align: center;
    padding: 100px 0;
}
body.scrolled header {
    top: -100px;
}
.main_top div h3 {
    font-size: 20px;
    margin-bottom: 8%;
    margin-top: 0px;
}
section.detail {
    z-index: 10;
    margin-top: -14%;
}
.mv-illust {
  position: relative;
}

.mv-illust::after {
  content: "";
  position: absolute;
    top: 50%;
    right: 1%;
  width: 100px;
  height: 100px;
  background-image: url("../img/star.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right top;
  z-index: 2; 
  transform: rotate(8deg); 
  transform-origin: right top;
}

.mv-illust .naminami {
  position: relative;
  z-index: 1;
}
#sp_only {
    display: block;
}
.charFadeLeft {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.charFadeLeft.show {
  opacity: 1;
  transform: translateX(0);
}

p.fadeInUp.show {
    width: 85%;
}
.oketani_txt.mobileFade {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.oketani_txt.mobileFade.show {
  opacity: 1;
  transform: translateY(0);
}
div#pc_only.yoyaku02 {
    display: none;
}
.box_detail {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: start;
}

.box_detailImg img {
    width: 85vw;
    border-radius: 0 20px 20px 0;
    z-index: 10;
}
.box_detailTxt {
    background: white;
    margin-left: -80%;
    padding: 20px;
    border-radius: 20px 0 0 20px;
    z-index: 20;
    margin-top: 50%;
    margin-bottom: 20%;
}
@media(min-width:751px){

    div#pc_only.yoyaku02 {
        display: flex!important;
    }
    p#pc_only.attention {
        display: block;
        line-height: 30px;
    }
    #sp_only {
        display: none;
    }
    .inner {
        position: relative;
    }
    header h1 img {
        width: 70%;
        padding-top: 1%;
    }
    header .yoyaku02 {
        position: absolute;
        display: flex!important;
        right: 0;
        top: 5%;
    }
    a.button.line02, a.button.tell02 {
        height: 50px;
        white-space: nowrap;
        display: inline-block;
    }
    .button {
        margin-right: 11px;
    }
    #main {
        background-size: 80vw;
        height: 70vh;
        background-position: right;
        border-radius: 15px 0px 0px 0px;
    }
    .mv .mv-illust .star {
        width: 18%;
        bottom: 6%;
        right: 10%;
    }
    .mv .naminami {
        bottom: -5%;
    }
    .information {
        display: flex;
        justify-content: left;
        align-items: baseline;
    }
    .information span {
        margin-left: 5%;
    }
    .information h4 {
        font-size: 15px;
    }
    .main_top div img {
        width: 70vw;
        display: ruby;
    }
    .yoyaku {
        justify-content: center;
        gap: 10%;
    }
    .mv02 {
        height: 20vh;
    }
    .box_detailTxt {
        margin-bottom: 5%;
    }
    .box_detailTxt p {
        font-size: 18px;
    }
    .box_detail {
        padding-top: 3%;
    }
    .mv04 {
        display: none;
    }
    .box_detailTxt {
        display: inline-block;
    }
    .box_detailImg {
        margin-left: 20%;
    }
    .box_detailImg img {
        width: 35vw;
        height: 290px;
        object-fit: cover;
        border-radius: 20px;
    }
    .footer_text {
        display: flex;
        justify-content: space-evenly;
        align-items: center;
    }
    .footer_container {
        width: 35%;
    }
    .footer_info img {
        width: 6%;
        padding-top: 3%;
    }
    dt.mail {
        font-size: 16px;
    }
    dl.address {
        line-height: 30px;
    }
    .footer_text {
        padding-bottom: 0%;
    }
    section#faq {
        width: 85vw;
        margin: auto;
    }
    .accordion {
        margin: 5px 3%;
    }
    .prepareInner img {
        width: 15%;
    }
    .prepareInner {
        display: flex;
        justify-content: space-evenly;
        align-items: baseline;
        margin: auto;
    }
    .box_left {
        width: 40%;
    }
    .box_left p {
        text-align: center;
    }
    .box_right {
        width: 50%;
    }
    .prepareInner div ul {
        padding: 2% 4%;
    }
    p#pc_only.attention {
        font-size: 14px;
        padding-top: 8%;
        text-align: center;
    }
    #main .main_text h3 {
        font-size: 20px;
    }
    section.oketani {
        width: 80vw;
        margin: auto;
    }
    .oketani_img img {
        width: 80vw;
        height: 60vh;
        margin-top: 10%;
        border-radius: 15px;
        object-fit: cover;
    }
    .oketani_txt p {
        padding: 0 9%;
        line-height: 40px;
        font-size: 18px;
    }
    .oketani_txt h3 {
        padding: 1%;
    }
    .oketani_site {
        justify-content: flex-end;
        padding-bottom: 3%;
    }
    .oketani_site a img {
        width: 10vw;
    }
    .oketani_site a {
        margin-right: 5%;
    }
    .content p {
        display: flex;
        padding: 1% 3% 1% 5%;
    }
    .mv .mv-txt h2 span {
        width: fit-content;
        background: #fff;
        font-size: 17px;
        padding: 0px 8px;
        border-radius: 5px;
        font-weight: bold;
    }
    .oketani_txt {
        width: 80vw;
    }
    section.detail {
        margin-top: 0%;
    }
    .box_detailTxt {
        width: 65vw;
        margin-left: 0px;
        margin-top: 10%;
    }
    .content {
        margin-bottom: 0;
    }
    .accordion {
        padding-left: 10%;
    }
    .mv {
        background-size: 80vw;
        background-position: right;
    }
    header {
        position: relative;
    }
    .mv:before {
        background-image: none;
    }
    .text span {
        display: inline-block;
        opacity: 0;
        transform: translateX(-20px);
        animation: fadeInUp 0.5s forwards;
    }
    @keyframes fadeInUp {
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    .oketani_txt p span {
        opacity: 0;
        display: inline-block;
        transform: translateX(-20px);
        transition: all 0.3s ease-out;
        will-change: opacity, transform;
    }
    .oketani_txt p span.charFadeLeft {
        opacity: 1;
        transform: translateX(0);
    }
    .oketani_txt p {
        opacity: 1;
    }
    .news .information h4 {
        width: 10%;
    }
    .main_top div h3 {
        font-size: 25px;
    }
    .mv-illust::after {
        top: 30%;
        right: 11%;
        width: 100%;
        height: 150px;
    }
    .main_top div h3 {
        margin-bottom: 3%;
    }
    .button {
        padding: 10px 40px;
        font-size: 16px;
        margin-top: 2%;
    }
    .footer_text {
        margin-top: 10%;
        padding: 0px;
    }
    .oketani_txt h3 {
        font-size: 25px;
    }
    .mv {
        height: 90vh;
    }
    header {
        height: 6rem;
    }
    header h1 {
        left: 0;
    }
    .oketani_img {
        height: auto;
    }
    img.fadeUp.back.show {
        width: 60vw;
        height: 60vh;
        object-fit: cover;
    }
    .image-stack .cloud {
        right: -5%;
        width: 20%;
    }
    .box_detailTxt p {
        padding-left: 5%;
        padding-right: 5%;
    }
    .box_detailTxt h4 {
        padding-left: 5%;
    }
    div#pc_only.yoyaku02 a {
        width: 100%;
    }
    .main_top p {
        font-size: 20px;
        margin-bottom: 0px;
    }
    .footer_info {
        margin: 0% 5% 2% 5%;
    }
     a.button.line02, a.button.tell02 {
        height: 50px;
        white-space: nowrap;
        display: inline-block;
    }
}
@media screen and (min-width: 1081px) {
    .oketani_img img {
        height: 80vh;
    }
}
html, body {
  overflow-x: hidden;
}
.charFadeLeft {
  display: inline-block;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.charFadeLeft.show {
  opacity: 1;
  transform: translateX(0);
}
.button.line02 {
    white-space: nowrap;
}
