@charset "utf-8";

/*-----/ C O M M O N /-----*/
html{
    color: #5A4A37;
    background-color: #f6ebcac8;
}

/*-----/ O P E N I N G /-----*/
.logoLoader {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #F9F8F3;
    z-index: 100;
}
.logoLoader .flontLogo {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 30%;
    height: 200px;
    text-align: center;
}
.logoLoader .flontLogo::before {
    content:"";
    display: block;
    width: 100%;
    height: 110%;
    background-color: #F9F8F3;
    position: absolute;
    top:0;
    left: 100%;
    animation: loadLogo 1.5s;
}
@keyframes loadLogo {
    0% {left:0;}
    50% {left: 0;}
    100% {left:100%;}
}
.logoLoader.open {
    animation-name: slideOut;
    animation-fill-mode: forwards;
    animation-duration: 2s;
    animation-delay: 2s;
}
@keyframes slideOut {
    0%{transform: translateY(0%);}
    50%{transform: translateY(0%);}
    100%{transform: translateY(100%);}
    }

    .logoLoader .flontLogo {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        margin: auto;
        width: 30%;
        height: 200px;
        line-height: 200px;
        text-align: center;
        font-size: 5rem;
    }

@media screen and (max-width:1023px){
    .logoLoader .flontLogo {
        width: 50%;
    }    
}
@media screen and (max-width:767px){
    .logoLoader .flontLogo {
        width: 70%;
    }
}



/*-----/ H E A D E R /-----*/

.headerArea{
    position: fixed;
    width: 100%;
    z-index: 50;
    background-color: #F9F8F3;
    box-shadow: 0px 2px 5px 0px #5a4a3738;
}

.headerMenu{
    height: 120px;
    margin: 0 auto;
    padding: 10px 20px;
    justify-content: space-around;
}

/*---/ LOGO /---*/
.headerLogo{
    text-align: center;
}
.headerLogo p {
    letter-spacing: 0.1rem;
}
.headerLogo h1{
    font-size: 2rem;
    letter-spacing: 0.1rem;
    text-align: center;
}
/*---/ OPENDAY /---*/
.businessDay {
    width:400px;
    padding:0px 10px;
}
.dayTitle th{
    background-color: #FBE194;
    padding: 0px 10px;
}
.dayTime th {
    background-color: #fff;
    border-bottom: solid 0.2px #5A4A37;
    padding: 0px 10px;
}

/*---/ LINK /---*/
.headerLink {
    width: 270px;
    height: 90px;
    display: flex;
    flex-direction: row;
    margin-left:auto;
    border-radius: 20px;
    box-shadow: 0px 2px 5px 0px #5a4a3738;
}
.headerTel {
    background-color: #edde69;
    width: 90px;
    height: 90px;
    padding: 10px;
    text-align: center;
    border-radius: 20px 0px 0px 20px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    justify-content: center;
    align-items: center;
}
.headerLine {
    background-color: #f0ab57;
    width: 90px;
    height: 90px;
    padding: 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 5px;
    justify-content: center;
    align-items: center;
}
.headerInsta {
    background-color: #F07957;
    width: 90px;
    height: 90px;
    padding: 10px;
    text-align: center;
    border-radius: 0px 20px 20px 0px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    justify-content: center;
    align-items: center;
}

/*-----/ N A V I /-----*/

/*---/ PC /---*/
.contentsList {
    background-color: #F9F8F3;
    padding: 10px 20px;
}
.contentsList ul{
    display: flex;
    justify-content: center;
    flex-direction: row;
    width: 80%;
    margin: 0 auto;
}
.contentsList ul li {
    border-right: solid 0.5px #5A4A37;
    padding: 0px 16px;
}
.contentsList ul li:last-child {
    border-right: none;
}
.contentsList ul li a {
    color: #5A4A37;
    font-size: 1rem;
    letter-spacing: 0rem;
    box-shadow: none;
    padding: 5px 10px;
    text-align: center;
}
.contentsList ul li a:hover {
    text-decoration: none;
    color: #F07957;
    font-weight: bold;
    opacity: 100;
    margin: 0 auto;
}

/*---/ SP /---*/
.menuTrigger{
    display: none;
}
.spNavContainer{
    display: none;
}

/*---/ TOPAREA(slide) /---*/
.topArea{
    top:0;
    left: 0;
    overflow: hidden;
    width: 100%;
    height: 100vh;
    background-color: #F2EADB;
}
.topArea .image{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    opacity: 0;
    background-repeat: repeat;
    background-size: cover;
}
.topArea .image:nth-of-type(1){
    animation-delay: 0s;
    background-image: url(../img/airi_sejutsu_headM1.jpg);
}
.topArea .image:nth-of-type(2){
    animation-delay: 8s;
    background-image: url(../img/airi_Tspace2.jpg);
}
.topArea .image:nth-of-type(3){
    animation-delay: 16s;
    background-image: url(../img/airi_facade.jpg);
}
.topArea .image{
    animation-name: anime;
    animation-delay: 0;
    animation-iteration-count: infinite;
    animation-duration: 24s;
}
@keyframes anime {
    0% {
    opacity: 0;
    }
    50% {
    opacity: 1;
    }
    100% {
    opacity: 0;
    transform: scale(1);
    }
}

.mainText {
    width: 40%;
    height: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 6%;
    top: 35%;
}
.airiCatch{
    width: 80%;
    object-fit: contain;
}



/*-----/ S E C T I O N /-----*/

/*---/ COMMON /---*/
section {
    padding: 100px 0px;
}
.bgPale {
    background-color: #F9F8F3;
}
.bgWhite {
    background-color: #fff;
}

/*---/ COVID /---*/
.covid {
    width: 80%;
    margin: 0 auto;
}
.covidMb {
    display: none;
}

/*---/ CREED /---*/
.creedWrapper {
    width: 60%;
    margin: 0 auto;
}
.textOneColumn {
    width: 90%;
    margin: 0 auto;
}

/*---/ GREETING /---*/
.greetingWrapper {
    display: flex;
    flex-direction: row-reverse;
    gap: 30px;
}

.greetingText {
    width: 60%;
}

.greetingImg {
    width: 40%;
}

/*---/ METHOD /---*/
.methodBox {
    padding: 30px 50px;
    background-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0px 2px 5px 0px #5a4a371b;
    margin-bottom: 60px;
}
.methodWrapper {
    display: flex;
    gap: 30px;
}
.methodImg {
    width: 50%;
}
.methodImg img{
    border-radius: 15px;
}
.methodText {
    width: 50%;
}
.pushButton {
    background-color: #F07957;
    box-shadow: #eb9767 2px 4px;
    color: #fff;
    padding: 10px 20px;
    border-radius: 20px;
}
.pushButton:hover {
    background-color: #eb9767 2px 4px;
    box-shadow: none;
    color: #fff;
    padding: 10px 20px;
    border-radius: 20px;
    transform: translate(2px, 4px);
    opacity: 100;
}
.methodWhite {
    background-color: rgb(255, 255, 255);
    border: 1px solid #5a4a37b1;
    padding: 10px 20px;
    margin-bottom: 10px;
}

.oxgienEfficacy {
    margin: 0 auto;
    width: 100%;
    padding: 20px 40px;
}

.oxigenPrice {
    margin: 0 auto;
    width: 80%;
}

.oxigenTable {
    margin-bottom: 10px;
}
.oxigenTable th,
.oxigenTable td,
.oxigenTable tr {
    padding: 5px 10px;
    box-sizing: border-box;
    border: solid 1px #eb9767;
}
.oxigenTable th{
    background-color: #eb9767;
    color: #fff;
}


.underLine {
    border-bottom: 1px solid #5a4a37;
}

.methodYellow {
    /*
    display: flex;
    */
    width: 100%;
    background-color: rgb(255, 250, 218);
    margin: 0 auto;
    padding: 30px;
    box-shadow: 0px 2px 5px 0px #5a4a371b;

}
.rousai {
    display: flex;
    flex-direction: column;
}
.methodYellow .rousaiImg {
    width: calc( 100% - 10px );
    height: auto;
}
.hokenSp {
    display: none;
}
.methodYellow .rousaiText {
    width: calc( 90% - 10px );
    margin: 0 auto;
}

/*--/ INFORMATION /--*/
.infoWrapper {
    display: flex;
    gap: 30px;
}
.infoImage {
    width: calc( 50% - 60px );
}
.infoText {
    width: 50%;
}
.infoList {
    padding-left:10px ;
}
.telLink {
    color: #5A4A37;
}

.parkingAttention {
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    gap: 30px;
}

/*--FOOTER -------------------*/
footer {
    background-color: #F2EADB;
    padding: 40px;
}


@media screen and (max-width:1023px){
    /*---HEADER---*/
    .businessDay {
        display: none;
    }
    .headerLink {
        margin-right: 70px;
    }
    .contentsList {
        display: none;
    }
    .spNavigation.active{
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 35%;
        height: 100vh;
        background-color: #ffb872eb;
        margin: 0 auto;
        align-items: center;
        z-index: 99;
    }
    .spNavContainer {
        display: block;
        padding: 50px 30px;
    }
    .spNavContainer li {
        padding: 10px;
        color: #fff;
    }
    .spNavContainer a {
        color: #fff;
    }
    .spNavLink {
        padding: 10px;
        color: #fff;
        text-decoration: none;
    }


    /*---/ SP /---*/

    .menuTrigger{
        display: block;
        width: 56px;
        height: 60px;
        position: absolute;
        bottom: 16px;
        right: 16px;
        z-index: 999;
        outline: none;
        background-color: #ffb872bd;
        border: none;
    }

    .menuTrigger span{
        position: absolute;
        left: 50%;
        width: 32px;
        height: 2px;
        background-color: #fff;
        transform: translate(-50%,-50%);
    }

    .menuTrigger span:nth-of-type(1){top:16px;}
    .menuTrigger span:nth-of-type(2){top:50%;}
    .menuTrigger span:nth-of-type(3){bottom:14px;}
    .menuTrigger.active span:nth-of-type(1){
        top:49%;transform: translate(-50%,-50%) rotate(-45deg);}
    .menuTrigger.active span:nth-of-type(2){
        opacity: 0;display: none;}
    .menuTrigger.active span:nth-of-type(3){
        bottom:49%;transform: translate(-50%,-50%) rotate(45deg);}

    .spNavigation {
        display: none;
    }
    /*---TOPAREA(photo)---*/
    .topArea {
        background-position-x: -180px;
    }
    .topArea .image {
        background-position-x: 35%;
        margin-top: 50px;
        height: 80vh;
    }
    .mainText {
        width: 70%;
        height: auto;
        right: 17%;
        top: 52%;
    }
    /*---font---*/
    .fontBig {
        font-size: 2.0rem;
        line-height: 2.6rem;
    }
    .fontLarge {
        font-size: 1.3rem;
        line-height: 1.5rem;
    }
    .fontMidium {
        font-size: 1.3rem;
        line-height: 1.5rem;
    }
    .fontBasic {
        font-size: 1.2rem;
        line-height: 1.8rem;
    }
    
    .tbBr {
        display: block;
    }
    /*---section---*/
    .sectionTitle p {
        font-size: 4rem;
    }

    /*--CREED--*/
    .creedWrapper {
        width: 70%;
    }
    .textOneColumn {
        width: 90%;
    }
    /*--GREETING--*/
    .greetingWrapper {
        flex-direction: column-reverse;
    }
    .greetingText {
        width: 80%;
        margin: 0 auto;
    }
    .greetingImg {
        width: 60%;
        margin: 0 auto;
        padding-bottom: 30px;
    }
    /*--METHOD--*/
    .methodWrapper {
        flex-direction: column;
    }
    .methodImg {
        width: 90%;
        margin: 0 auto;
    }
    .methodText {
        width: 90%;
        margin: 0 auto;
    }
    /*--OXIGEN--*/
    .oxigenEfficacy{
        width: 90%;
        padding: 20px 0px;
    }
    .oxigenPrice{
        width: 100%;
    }
    /*--INFO--*/
    .infoWrapper{
        flex-direction: column;
    }
    .infoImage {
        width: 80%;
        margin: 0 auto;
    }
    .infoText {
        width: 80%;
        margin: 0 auto;
    }
    .infoText .businessDay{
        display: block;
        margin-top: 30px;
    }
    .parkingAttention {
        flex-direction: column-reverse;
    }

}

@media screen and (max-width:767px){
    /*---font---*/
    .fontBig {
        font-size: 1.5rem;
        line-height: 2.2rem;
    }
    .fontLarge {
        font-size: 1.12rem;
        line-height: 1.5rem;
    }
    .fontMidium {
        font-size: 1rem;
        line-height: 1.5rem;
    }
    .fontBasic {
        font-size: 0.9rem;
        line-height: 1.5rem;
    }
    .tbBr {
        display: none;
    }

    .headerInfo {
        display: none;
    }
    .headerMenu {
        height: 140px;
        padding:30px 20px ;
    }

    .spNavigation.active {
        width: 100%;
        height: 100vh;
        background-color: #ffb872eb;
        text-align: center;
    }

    /*---TOPAREA(photo)---*/
    .topArea .image {
        height: 65vh;
    }
    .mainText {
        margin: 0 auto;
        right: 7%;
        width: 90%;
        top: 54%;
    }
        
    /*---section---*/
    .sectionTitle p {
        font-size: 2.2rem;
        letter-spacing: 0.2rem;
    }
    .sectionTitle h2 {
        font-size: 1.3rem;
        margin: -25px 0px 0px 20px;
    }
    .contentsWrapper {
        width: calc(100% - 50px);
    }
    /*---covid---*/
    .covidPc {
    display: none;
    }
    .covidMb {
    display: block;
    width: 80%;
    margin: 0 auto;
    }

    /*---creed---*/
    .creedWrapper {
        width: 90%;
    }
    /*---greeting---*/
    .greetingText {
        width: 90%;
    }
    /*---method---*/
    .methodBox {
        padding: 30px 15px;
    }
    .methodImg {
        width: 100%;
    }
    .methodImg img {
        border-radius: 0px;
    }
    .methodText {
        width: 96%;
    }
    .methodYellow{
        padding: 30px 15px;
    }
    .methodYellow .rousaiText {
        width: 95%;
        margin: 0 auto;
    }
    /*---oxigen---*/
    .oxigenTable th,
    .oxigenTable td{
        display: block;
        width: 100%;
        border-bottom:none;
    }
    /*---hoken---*/
    .hokenPc {
    display: none;
    }
    .hokenSp {
    display: block;
    }
    /*---information---*/
    .infoImage {
        width: 100%;
    }
    .infoText {
        width: 100%;
    }
    .infoWrapper .businessDay {
        width: 100%;
        padding: 0px 0px;
    }
    .dayTime p {
        line-height: 1.2rem;
    }
}

/*-----/ I N S U R A N C E /-----*/

#insuranceHead .headerArea {
    position: static;
}
#insuranceHead .topArea {
    display: none;
}

#insurance .insuranceTitle {
    padding: 10px 20px 30px;
    letter-spacing: 0.2rem;
    text-align: center;
    margin: 0 auto;
}
#insurance .whiteWrapper {
    padding: 50px 100px;
    background-color: #fff;
    margin-bottom: 60px;
}
#insurance li{
    padding: 10px 20px;
    margin: 0px;
    letter-spacing: 0.1rem;
}
#insurance .symptomsWrap {
    display: flex;
    flex-wrap: wrap;
    gap: 40px 30px;
}
#insurance .symptomsImg{
    display: block;
    width: calc((100% - 30px * 2) / 3);
}
@media screen and (max-width:1023px){
    #insurance .symptomsImg{
        width: calc((100% - 20px * 2) / 2);
    }
}
@media screen and (max-width:767px){
    #insurance .symptomsWrap {
        gap: 20px 10px;
    }
}