@charset "UTF-8";

/* CSS Document */

/*----------------------------------------
PC用レイアウト(768px以上スクリーン)
----------------------------------------*/

/* body全体の初期スタイル調整 */

html,
body {
    width: 100%;
}

body {
    font-size: 62.5%;
    /*emの計算をしやすくするための定番設定*/
    font-family: yu-gothic-pr6n, sans-serif;
    font-weight: normal;
    color: #000;
}

@media only screen and (max-width:768px) {

    body {
        width: 100%;
        -webkit-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
    }

}


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

a {
    text-decoration: none;
}

/*----------------------------------------
全体レイアウト/背景設定(PC)
----------------------------------------*/

/* 全体エリア(全体背景を設定するにはここ) */

.main {
    width: 100%;
    position: relative;
    margin: 0 auto;
}

@media only screen and (max-width:768px) {

    .main {
        width: 100%;
        margin: 0%;
    }

}

#main-contents {
    max-width: 415px;
    width: 100%;
    margin: 0 auto;

}

@media only screen and (max-width:768px) {
    #main-contents {
        width: 100vw;
        margin: 0 auto;
    }
}

.contents {
    background: #cef2eb;
    padding: 5% 0;
}

.contents_inner {
    margin: 0 auto;
    max-width: 520px;
    background: #fff;
    border-radius: 20px;
    padding: 4%;

}

.contents p {
    line-height: 1.8em;
    font-size: 1.6em;
    color: #333;
}

table {
    margin: 0 auto;
}

.contents td {
    line-height: 1.8em;
    font-size: 1.4em;
    color: #333;
    padding-left: 8%;
}

.contents tr{
    border-bottom: #00b094 solid 0.5px;
    padding: 10%;
}

.label {
    font-weight: bold;
}

@media only screen and (max-width:768px) {

    .contents {
        background: #cef2eb;
        padding: 3% 1%;
    }

    .contents_inner {
        margin: 5%;
        padding: 7%;
        background: #fff;
        border-radius: 20px;
    }

    .contents p {
        line-height: 1.8em;
        font-size: 1.3em;
        color: #333;
    }


    .contents td {
        line-height: 1.8em;
        font-size: 1.2em;
        color: #333;
        padding-left: 3%;
    }

    .contents tr{
        border-bottom: #00b094 solid 0.5px;
        padding: 10%;
    }
    
}

/*----------------------------------------
hタグの設定
----------------------------------------*/

/*H2タグ*/
.contents h2 {
    margin: 0 0 0em;
    margin-bottom: 7%;
    padding: 0 0.9em;
    font-size: 2.7em;
    font-weight: bold;
    color: #00b094;
    text-align: center;

}

.contents h3 {
    margin: 0 0 0em;
    font-size: 2.5em;
    font-weight: bold;
    color: #333;
    padding: 0.25em 0.5em;
    /*上下 左右の余白*/
    border-left: solid 5px #00b094;
    /*左線*/
}

@media only screen and (max-width:768px) {

    .contents h2 {
        margin: 0 0 0em;
        padding: 0.3em 0.9em;
        margin-bottom: 10%;
        font-size: 2em;
        font-weight: bold;
        color: #00b094;
        text-align: center;

    }

    .contents h3 {
        margin: 0 0 0em;
        font-size: 2em;
        font-weight: bold;
        color: #333;
        padding: 0.25em 0.5em;
        /*上下 左右の余白*/
        border-left: solid 5px #00b094;
        /*左線*/
    }
}

/*----------------------------------------
FV
----------------------------------------*/

#fv {
    max-width: 415px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.cv-btn01 {
    position: absolute;
    bottom: 0.7%;
    transition-duration: .4s;
}

.cv-btn01 img {
    width: 96%;
}

.cv-btn01:hover {
    transform: scale(1.1);
    opacity: 0.6;
}

.cv-btn01.anim-box {
    animation: fuwafuwa 1s ease 0s infinite alternate;
    transform-origin: center;
}

@keyframes fuwafuwa {
    from {
        transform: scale(0.9, 0.9);
    }

    to {
        transform: scale(1, 1);
    }
}

/*----------------------------------------
CVエリア
----------------------------------------*/

.cv_area {
    position: relative;
    margin: 0 auto;
    text-align: center;
}

.cv-btn02 {
    position: absolute;
    bottom: 4%;
    transition-duration: .4s;
}

.cv-btn02 img {
    width: 96%;
}

.cv-btn02:hover {
    transform: scale(1.1);
    opacity: 0.6;
}

.cv-btn02.anim-box {
    animation: fuwafuwa 1s ease 0s infinite alternate;
    transform-origin: center;
}

@keyframes fuwafuwa {
    from {
        transform: scale(0.9, 0.9);
    }

    to {
        transform: scale(1, 1);
    }
}

/*----------------------------------------
トップへ戻るボタン
----------------------------------------*/

a.back_btn {
    display: block;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    width: 43%;
    margin: auto;
    padding: 0.9rem 0;
    margin-top: 7%;
    font-weight: bold;
    border: 2px solid #ff7e14;
    color: #ff7e14;
    border-radius: 100vh;
    transition: 0.5s;
    font-size: 1.4em;
}

a.back_btn:hover {
    color: #fff;
    background: #ff7e14;
}

@media only screen and (max-width:768px) {
    a.back_btn {
        display: block;
        text-align: center;
        vertical-align: middle;
        text-decoration: none;
        width: 50%;
        margin: auto;
        padding: 0.8rem;
        margin-top: 10%;
        font-weight: bold;
        border: 2px solid #ff7e14;
        color: #ff7e14;
        border-radius: 100vh;
        transition: 0.5s;
        font-size: 1.1em;
    }

    a.back_btn:hover {
        color: #fff;
        color: #ff7e14;
    }
}

/*----------------------------------------
フッター部分
----------------------------------------*/

.footer {
    background: #333333;
    padding: 2.5em 0em;
    text-align: center;
    font-size: 1.4em;
    color: #fff;

}

footer ul {
    display: flex;
    justify-content: center;
}

footer ul li {
    padding: 0 1.5%;
}

li+li {
    border-left: 1px solid #fff;
}

.footer a {
    color: #fff;
    transition-duration: .4s;
}

.txt-link {
    color: #fff;
    transition-duration: .4s;
    position: relative;
    text-decoration: underline;
}

.footer a:hover {
    color: #ff7e14;
}

.footer_logo {
    transition-duration: .4s;
}

.footer_logo img {
    width: 12%;
    margin-bottom: 2%;
}

.footer_logo:hover {
    transform: scale(1.1);
    opacity: 0.6;
}

@media only screen and (max-width:768px) {

    .footer {
        background: #333333;
        padding: 2em 1.5em;
        text-align: center;
        font-size: 1.5em;
        color: #fff;
    }

    footer ul {
        display: flex;
        justify-content: center;
        margin-bottom: 5%;
    }

    .footer_logo img {
        width: 40%;
        margin-bottom: 7%;
        margin-top: 7%;
    }

}