@charset "utf-8";
body {
    box-sizing: border-box;
    width: 100%;
    font-family: "Noto Sans JP", sans-serif;
    font-style: normal;
    color: #3C3C4A;
    line-height: 1.2;
    background-color: #F0F0EB;

}
p{
    font-size: 14px;
    line-height: 1.5;

}
.explanation-left >*+*{
    margin-top:20px;
}
.explanation{
    margin-top:40px;
}
img{
    max-width: 100%;
    height: auto;
}
.logo{
    max-width: 90px;
}
  
header {
    width: 100%;
    position: absolute;
    top:0;
    z-index: 10;
}
.hedder-inner{
    max-width: 1600px;
    display: flex;
    justify-content: space-between;
    padding-right: 10px;
    flex-wrap: wrap;
    gap:10px;
    margin:0 auto
}
.inner{
    max-width: 1200px;
    margin:20px auto;
    width: 100%;
    padding:0 8px 50px;
}
.main-visual{
    height: 580px;
    width: 100%;
    position: relative;
}
.sp-show{
    display: block;

}
.pc-show{
    display: none;
}
header .btn a span{
    min-width: 35px;
    min-height: 35px;
}
.btn{
    padding:15px 10px;
    border-radius: 10px;
}
.btn a span::after, .btn a span::before
{
  width: 18px;
  height: 18px;
}


.main-visual__bg{
    background-image: url(../img_lp/top-sp.webp);
    background-size: cover;
    background-repeat: no-repeat;
    min-width: 100%;
    height: 100%;
    

}
.main-visual-txt{
    position: absolute;
    top: 40%;
    left:  50%;
    width: 100%;
    display: block;

    transform: translate(-50%, -40%);
}
h2.main-visual__title{
    text-align: center;
    color: #fff;
    position: relative;
    width: fit-content;
    margin:0 auto;
    font-size: clamp(32px ,12vw ,52px);
}
h2.main-visual__title::before{
    content:"";
    display: block;
    width: 30px;
    height: 30px;
    background-image: url(../img_lp/line.svg);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    left: -45px;
    top:-10px

}
h2.main-visual__title::after{
    content:"";
    display: block;
    width: 30px;
    height: 30px;
    background-image: url(../img_lp/line2.svg);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    right: -45px;
    top:-10px
}
.main-txt span{
    color: #F4E41F;
    font-weight: bold;
    font-size:clamp(20px, 12vw, 38px);


}
.main-txt{
    text-align: center;
    line-height: 1.5;
    margin-top:20px;
    font-size:clamp(22px, 12vw, 25px);
    color: #fff;
}
.main-moc{
    position: absolute;
    bottom:-10px;
}
h3{
    font-size: 28px;
    margin:20px 0px;
    border-bottom:1px solid #BABABA;
    position: relative;
    padding:0 0px 15px 18px;
    line-height: 1.2;
}
h3::before{
    position: absolute;
    bottom:-4px;
    border-radius: 50%!important;
    outline: 7px solid #F4E41F;
    background-color: black;
    content: "";
    min-width: 8px;
    min-height: 8px;
    left: 0;
    width: 8px;
    height: 8px;
}
.main{
    overflow: hidden;
}
.inner .btn{
    margin:50px auto 0px;
    border-radius: 10px;
}
.common-border{
    position: relative;
}
.common-border {
    position: relative;
    display: inline-block; /* コンテンツ幅に合わせたい場合 */
    overflow: hidden;
}

.common-border.bottom::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 6px;
    background-color: #F4E41F;
    animation: borderExpand 1s ease-out forwards;
}

/* アニメーション定義 */
@keyframes borderExpand {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}
.common-pop {
    opacity: 0;
    transform: scale(0.7);
}

.common-pop.popin {
    animation: popIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes popIn {
    0% {
        opacity: 0;
        transform: scale(0.7);
    }
    60% {
        opacity: 1;
        transform: scale(1.2);
    }
    80% {
                opacity: 1;

        transform: scale(0.95);
    }
    100% {
                opacity: 1;

        transform: scale(1);
    }
}

.main h3{
    font-size: clamp(18px, 8vw, 28px);
    width: 100vw;
}

.btn a{
    transition-duration: .4s;
    color: #3C3C4A;
    white-space: nowrap;
    width: 100%;
    background-color: #F4E41F;
    padding:10px 20px 10px 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    height:55px;
    gap:10px;
    font-weight: 700;
    font-size:clamp(12px, 5vw, 15px);
    
}
.btn a span{
    background-color: #fff;
    border-radius: 50%;
    min-width: 30px;
    height: 30px;
    overflow: hidden;
    position: relative;
}
.btn a:not(header .btn a){
    font-size:clamp(10px, 5vw, 20px);
}
.btn  {
    text-align: center;
    background-color: #F4E41F;
    padding:0px 10px;
}
.btn a span::before{
    position: absolute;
    width: 30px;
    height: 30px;
    /* clip-path: circle(50% at 50% 50%); */
    content:"";
    background-color: #fff;
    right: 15px;
    top:50%;
    transform: translatey(-50%);
    overflow: hidden;
}
.btn a span::after, .btn a span::before{
    position: absolute;
    display: block;
    margin-bottom: 40px;
    width: 18px;
    height: 15px;
    background-image:url(../img_lp/mail.svg) !important;
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    left:50% ;
    top: 50%;
    transform: translate(-50%, -50%);
    overflow: hidden;
    right: 19.5px;
    clip-path: none;
}
/* .contact-btn a span::after.contact-btn a span::before{
  background-image:url(../img_lp/mail.svg) !important;
  width: 20px;
  height: 15px;
  background-position: contain;
  background: none;
  right: 19.5px;
  content: "";
  position: absolute;
  display: block;
  background-repeat: no-repeat;
  top: 50%;
  clip-path:none;
  overflow: hidden;
} */
.btn a:hover span::before{
    transform: translatey(-50%) translateX(250%);
    transition: transform 0.3s ease-in-out;
}
.btn a:hover span::after  {
    transform: translatey(-50%) translateX(-50%);
    transition: transform 0.3s ease-in-out 0.1s;
}
.btn a span::after {
    transform: translatey(-50%) translateX(-250%);
}
.explanation-img{
    margin-top:40px;
}
h2.feature-ttl{
    margin:20px 0px;
}
.feature{
    position: relative;
    width: 100vw;
    margin:0 calc(50% - 50vw);
    background-color: #F7F7EF;
    background-image: url(../img_lp/logo-txt.svg);
    background-size: 40px;
    padding:30px calc(50vw - 50%) 100px;
    object-fit: contain;
}

.feature-box{
    margin-top: 20px;
}
.feature-box.box-reverse {
    margin-top:15px;
}
.f-img {
    width: 90%;
    margin: 0 auto;
    position: relative;
    top:20px;
    max-width: 420px;
}
.f-status{
    top:50px;
}

.feature-box section{
    background-color: #E1E2CD;
    padding:50px 20px 35px;
    max-width: 600px;
    margin:0 auto;

}
.feature-box section>div{
    background-color: #fff;
    padding:15px 15px 20px;
    position: relative;
    min-height: 200px;
}

.main h4{
    font-size:20px;
    margin:28px 0px;
    position: relative;
    display: inline-block;
    padding:0 0 5px;
}

.f-txt{
    width: 50%;
    position: absolute;
    top:-38px
}
.price-ttl{
    width: 140px;
    margin:0 auto;
    position: relative;
    top:-50px;
}
.price-txt{
    font-size:clamp(24px, 12vw, 38px);
    position: relative;
    padding:0 0 5px;
    text-align: center;
    width: fit-content;
    margin:10px auto 0px;
    font-weight:400;
    display: block!important;
}
.price-txt span{
    font-size: 18px;
}
.price ul{
    padding-left:0px;
    margin-top:20px;
    list-style-type: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min-content, 80px));
    gap: 15px;
    justify-content: center;
    margin-top:30px;
}
.price ul li > div{
    background-color: #F4E41F;
    border-radius:50% ;
    min-height: 93px;
    min-width: 93px;
    position: relative;
    
}
.price ul li > div img{
    position: absolute;
    top:50%;
    left: 50%;
   transform: translate(-50%, -50%);
   aspect-ratio: 100/100;
   object-fit: contain;
   width: 70px;

}
.price ul li > span{
    font-size: 12px;;
}
    
.price .btn{
    margin-top: 50px;;

}
.footer{
    background-color: #3C3C4A;
    padding:30px 0px;

}
.footer-inner .btn{
    margin:20px auto;

}
.footer-inner{
    max-width: 1280px;
    margin:0 auto;
    padding:0 10px;
}
.footer_copyright{
    color: #fff;
    text-align: center;
}
.ttl-fx {
    display: flex;
    max-width: 1500px;
    margin-right:calc(50% - 50vw);
    align-items: flex-start;
    
}
.f-moc-img{
    z-index: 20;
    width: 45%;
    position: relative;
    flex-grow: 2;
    margin-left: auto;
    margin-top:-20px;

}
.f-moc-img::after {
    content: "";
    background-image: url(../img_lp/color-y.png);
    width: 100px;
    height: 100%;
    position: absolute;
    top: -20px;
    right: -20px;
    background-size: cover;
    display: block;
    background-repeat: no-repeat;
    z-index: -1;
}
.ttl-box{
    width: 55%;
}

    
@media screen and (min-width: 600px){
.btn{
    max-width: 380px;
}
.btn a span {
    min-width: 40px;
    height: 40px;
}
.btn a {
    padding:30px 25px;
    font-size: 20px;
}
.btn a span::after, .btn a span::before {
    width: 23px;
    height: 23px;
    top: 53%;
}
header .btn a span{
    min-width: 50px;
    height: 50px;
}
.main h3 {
    font-size: 32px;
    width: 100%;
}

.logo {
    max-width: 140px;
}

h2.main-visual__title {
    font-size: 62px;
}
.main-txt {
    font-size: 28px;
    text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.4);
}
.main-txt span {
    font-size: 42px;
    text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.4);
}
.main-visual__bg{
    background-image: url(../img_lp/top.webp);
}
.main-visual{
    height: 700px;
    width: 100%;
    aspect-ratio: 1500/700;
    object-fit: cover;
}
.hedder-inner{
    padding-right: 40px;
}
.main-moc {
    position: absolute;
    bottom: -50px;
    width: 47%;
    right: 35px;
    min-width: 500px;
}
.main-visual-txt {
    position: absolute;
    top: 34%;
    left: 50%;
    width: 100%;
    display: block;
    transform: translate(-25%, -50%);
}
.p-moc {
    max-width: 550px;
    margin: 0 auto;
}
.inner {
    padding: 0 50px 50px;
}
.explanation {
    margin-top: 60px;
}
.price-txt {
    font-size: 48px;
}
.price ul {
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(min-content, 100px));
}
.price ul li > div {
    min-height: 100px;
    min-width: 100px;
}
.footer-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto;
    flex-wrap: wrap;
    gap: 20px;
}
.footer-inner .btn {
    margin: 20px 0;

}



}

@media screen and (min-width: 820px) {
.pc-show{
    display: block;
}

.sp-show{
    display:  none;

}
.btn{
    max-width: 430px;
}
.btn a span {
    min-width: 50px;
    height: 50px;
}
.btn a {
    padding:35px 30px;
    font-size: 22px;
}
.btn a span::after, .btn a span::before {
    width: 28px;
    height: 25px;
}
header .btn a span{
    min-width: 50px;
    height: 50px;
}


p{
    font-size: 16px;
    line-height: 1.5;

}
.main h3{
    padding-left:20px;
    font-size: clamp(26px,5vw, 34px)!important;

    
}
.explanation{
    display: flex;
    gap: 20px;
    align-items: center;
    margin-right: calc(50% - 50vw);
    max-width: 1500px;
    margin-top:50px;
    padding:20px 0px 80px;
}
.explanation-left{
    width: 80%;
    min-width: 550px;
}
.explanation-img{
    min-width: 500px;
    flex-grow: 1;
}
.visual-content{
    position: relative;
    max-width: 1700px;
    height: 700px;
    margin:0 auto;
}
.main-txt {
    font-size: clamp(32px,5vw, 42px);

}
.main-txt span {
    font-size: clamp(32px,5vw, 48px);
    color: #F4E41F;
    font-weight: bold;
}
h2.main-visual__title {
    font-size: clamp(52px,5vw, 70px);
}
.feature {
    background-size: 100px;
}
h2.feature-ttl {
    max-width: 350px;
    margin: 20px 0px 50px;
}
h2.feature-ttl img {
    width: 400px;
}
.feature::after {
    min-width: 100px;
    width: 500px;
    
}
.f-moc-img {
    min-width: 100px;
    max-width: 100%;
}

.color-y img {
    width: 100%;
}
.feature-box {
    margin-top: 0px;
    display: flex;
    align-items: center;
}
.feature-box section{
  width: 720px;
  max-width: 720px;
}
.f-moc-img::after {
    width: 210px;
    margin-top:-10px

}
.ttl-box {
    width: 60%;
}
.f-img {
    min-width: 380px;
    max-width: 580px;
    width: calc(100% - 720px);
}
.feature-box section>div {
    background-color: #fff;
    padding: 40px;
    position: relative;
}
.f-txt {
    top: -38px;
}
.feature-box section {
    background-color: #E1E2CD;
    padding: 60px 35px 60px 100px;
}
.f-img {
    top: 0px;
    left: 50px;
    top:-25px
}
.feature-box.box-reverse{
    flex-direction: row-reverse;
}
.feature-box.box-reverse section {
    padding: 60px 100px 60px 35px;
}
.f-img.f-status{
    top: 0px;
    left: -20px;
    top:0px
}
.f-img.f-status {
    min-width: 380px;
    max-width: 480px;
}
.main h4 {
    font-size: clamp(18px,2vw, 25px);
}
.price ul {
    justify-content: flex-start;
}

.price-ttl {
    width: 180px;
}
.price-box {
    display: flex;
    gap: 80px;
    justify-content:center;
    margin-top:50px;
    align-items: center;
}
.feature-box.box-reverse {
    margin-top: 35px;
}
.p-moc {
    width: 58%;
}
.p-right{
    width: 42%;
}
.price-txt {
    font-size: clamp(40px,5vw, 50px);
    margin: 0 auto 0 0;
}
.inner {
    padding: 0 20px 50px;
}
.p-moc{
    max-width: 650px;
}
.footer-inner {
    justify-content: space-between;
    flex-wrap: nowrap;
}







}


