@charset "utf-8";

/*******************************
*LP style css
*******************************/
html{
    font-size: 100%;
}

body {
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #fff;
    color: #333;
    height: 100%;
    overflow: visible;
}

img{
    max-width: 100%;
    height: auto;
}

a{
    color: #1a0dab;
    cursor: pointer;
    text-decoration: none;
    transition-duration: 0.3s;
    transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
}

a:visited, a:active {
    color: #000;
}

a:hover{
    color: #000;
}

a[href^="tel:"],
a[href*="tel:"],
a[x-apple-data-detectors="true"],
a[x-apple-data-detectors-type="telephone"] {
    color: #fff !important;
    text-decoration: none !important;
    border: none !important;
    outline: none !important;
}

ul,li{
    list-style: none;
}

h2{
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
    line-height: 1.5;
}


/*************************
/* flex-box
*************************/
.flex-box {
    display: flex;
}

.flex-box-nowrap {
    flex-wrap: nowrap;
}

.flex-box-wrap {
    flex-wrap: wrap;
}

.flex-colm{
    flex-direction: column;
}

.flex-box-row-rever {
    flex-direction: row-reverse;
}

.flex-box-space-b {
    justify-content: space-between;
}

.flex-box-space-a {
    justify-content: space-around;
}

.flex-box-space-c {
    justify-content: center;
}

.flex-box-item-c {
    align-items: center;
}


/*******************************
*配置
*******************************/
.align-l{
    text-align: left;
}

.align-c{
    text-align: center;
}

.align-r{
    text-align: right;
}


/*******************************
*btn
*******************************/
.c-btn{
    display: block;
    max-width: 320px;
    margin: 0 auto;
    padding: 1rem 1rem;
    color: #fff;
    font-weight: 700;
    border-radius: 25px;
    background-color: #FF590E;
    text-align: center;
    line-height: 1.0;
}

.c-btn:hover{
    color: #fff;
    background-color: #ff8d5a;
    transition-duration: 0.3s;
    transition: background-color 0.3s;
}

.c-btn span.fa-stack{
    font-size: 0.5rem;
}

.c-btn i.fa-circle{
    color: #fff;
}

.c-btn i.fa-chevron-right{
    color: #000;
}

.c-btn:hover i.fa-chevron-right{
    color: #000;
}

@keyframes float-horizontal {
  0% {
    right: 0px;
  }
  50% {
    right: 10px;
  }
  100% {
    right: 0px;
  }
}

.btn-fixed{
    position: fixed;
    right: 0;
    bottom: 50px;
    z-index: 5000;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
    animation: float-horizontal 1s ease-in-out infinite;
}

.btn-fixed.show {
    opacity: 1;
    transform: translateX(0);
}

.btn-fixed > a{
    padding-inline: 3rem;
}

@media only screen and (max-width: 480px) {
    .btn-fixed{
        width: 100%;
        bottom: 0;
        animation: none;
        transform: translateY(20px);
    }
    .btn-fixed.show {
        opacity: 1;
        transform: translateY(0);
    }
    .btn-fixed > a{
        max-width: 480px;
        border-radius: 0;
    }
}


/*******************************
*Youtube
*******************************/
.youtube-video{
    width: 100%;
    margin-inline: auto;
    aspect-ratio: 16 / 9;
}

.youtube-video iframe {
    width: 100%;
    height: 100%;
}


/*******************************
*layout
*******************************/
.l-inner{
    margin-left: auto;
    margin-right: auto;
    position: relative;
    width: 88.8888%;
    max-width: 1024px;
}

@media only screen and (max-width: 480px) {
    .l-inner{
        width: auto;
        margin-left: 20px;
        margin-right: 20px;
    }
}


/*******************************
*hero
*******************************/
.hero img.sp{
    display: none;
}

@media only screen and (max-width: 480px) {
    .hero{
        height: auto;
    }
    .hero img.pc{
        display: none;
    }
    .hero img.sp{
        display: block;
    }
}
