/* Base Css */
html {
    font-size: 16px;
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 400;
}
body {
}
main {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 700px;
    margin: 50px auto 0;
    background: #fff;
}
.sp {
    display: none;
}
br {
    line-height: 1;
}
img {
    width: 100%;
}
p {
    font-size: 1rem;
    line-height: 1.5;
}
a {
    transition: all .3s;
}
.section_title {
    box-sizing: border-box;
    padding: 4px 70px;
    border-radius: 20px;
    background: #7BD3D5;
    color: #fff;
    font-size: 25px;
    font-weight: 600;
}
@media screen and (min-width: 769px) {
    html {
        background-image: url('../img/pc_bg.jpg');
        background-repeat: no-repeat;
        background-size: cover;
    }
    .pc {
        display: none;
    }
    .sp {
        display: block;
    }
    p {
        font-size: 0.9rem;
    }
    main {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
    a:hover {
        color: #000;
    }
    .section_title {
        padding: 10px 100px;
        border-radius: 30px;
        font-size: 24px;
    }
}


/* Layout Css */
header {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
}
header .x_link {
    width: 60%;
    height: 50px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background: #7BD3D5;
    color: #F8FBB3;
    font-size: 18px;
    font-weight: 600;
}
header .x_link img {
    width: 30px;
}
.left_content {
    background: #F8FBB4;
    width: 40%;
    height: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.left_content a {
    color: #7BD3D5;
    font-size: 12px;
}
@media screen and (min-width: 769px) {
    header {
        max-width: 30%;
        flex-direction: column;
        position: fixed;
        top: 15%;
        left: 0%;
        transform: translateX(0);
        z-index: 999;
    }
    header .x_link {
        width: 50%;
        height: 60px;
        font-size: 20px;
        margin-bottom: 20px;
    }
    header .x_link img {
        width: 40px;
    }
    .left_content {
        width: 50%;
        height: 60px;
    }
    .left_content a {
        font-size: 16px;
    }
}
/* main style */
.apply {
    width: 100%;
    background-image: url('../img/apply_bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
    padding: 100px 0 120px;
}
.apply_list {
    margin-top: 30px;
}
.apply_list li {
    display: flex;
    flex-direction: row;
    align-items: center;
}
.apply_list li::before {
    content: "";
    display: block;
    width: 50px;
    height: 50px;
    background-image: url('../img/list_01_icon.png');
    background-repeat: no-repeat;
    background-size: cover;
    margin-right: 15px;
}
.apply_list li:nth-child(2)::before {
    background-image: url('../img/list_02_icon.png');
}
.apply_list li .inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-size: 18px;
    line-height: 1.5;
    font-weight: 600;
}
.apply_list li .inner p {
    font-size: 18px;
}
.apply_list li .inner span {
    color: #14C4FF;
}
.apply_list li:first-child {
    margin-bottom: 25px;
}
.apply img {
    width: 80%;
}
.apply_btn {
    width: 60%;
    margin-top: 30px;
}
.apply_btn img {
    width: 100%;
}
@media screen and (min-width: 769px) {
    .apply {
        padding: 80px 0 120px;
    }
    .apply_list {
        width: 85%;
        margin-top: 50px;
    }
    .apply_list li::before {
        width: 60px;
        height: 60px;
        margin-right: 15px;
    }
    .apply_list li .inner {
        font-size: 20px;
    }
    .apply_list li .inner p {
        font-size: 24px;
    }
    .apply_list li:first-child {
        margin-bottom: 40px;
    }
    .apply img {
        width: 80%;
    }
    .apply_btn {
        width: 70%;
        margin-top: 50px;
    }
    .apply_btn img {
        width: 100%;
    }
}

.products {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-image: url('../img/products_bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    box-sizing: border-box;
    padding: 50px 0;
    margin-top: -100px;
    position: relative;
    z-index: 100;
}
.products p {
    margin-top: 30px;
    font-size: 18px;
    line-height: 1.5;
    font-weight: 600;
    text-align: center;
}
.products p span {
    font-size: 26px;
    color: #00979B;
    font-weight: 800;
    margin: 0 5px;
}
.products img {
    width: 90%;
}
@media screen and (min-width: 769px) {
    .products {
        padding: 50px 0;
    }
    .products p {
        margin-top: 30px;
        font-size: 24px;
    }
    .products p span {
        font-size: 34px;
    }
    .products img {
        width: 80%;
        margin-top: 50px;
    }
}

.aruaru {
    width: 100%;
    box-sizing: border-box;
    padding: 20px 25px 25px;
}
.aruaru .inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #CBF1F1;
    border-radius: 20px;
    box-sizing: border-box;
    padding: 25px 0;
}
.aruaru img {
    width: 90%;
    align-self: flex-start;
}
.aruaru .section_other_title {
    font-size: 22px;
    font-weight: 600;
    color: #00979B;
    padding-bottom: 5px;
    border-bottom: 2px solid #00979B;
    margin-bottom: 30px;
}
@media screen and (min-width: 769px) {
    .aruaru {
        padding: 30px 40px 40px;
    }
    .aruaru .inner {
        padding: 40px 0;
    }
    .aruaru img {
        margin: 30px 0;
    }
    .aruaru .section_other_title {
        font-size: 22px;
        font-weight: 600;
        color: #00979B;
        padding-bottom: 5px;
        border-bottom: 2px solid #00979B;
        margin-bottom: 30px;
    }
}

.chance {
    width: 100%;
    background-image: url('../img/chance_bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px 0;
}
.chance h2 {
    width: 95%;
}
.chance p {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.5;
    margin: 10px 0 30px;
}
.chance .main_img {
    width: 80%;
}
.chance p img {
    width: 120px;
    margin-right: 5px;
}
@media screen and (min-width: 769px) {
    .chance {
        padding: 100px 0;
    }
    .chance h2 {
        width: 80%;
    }
    .chance p {
        font-size: 30px;
        margin: 20px 0 40px;
    }
    .chance .main_img {
        width: 80%;
    }
    .chance p img {
        width: 150px;
        margin-right: 5px;
    }
    .goomo_btn {
        width: 70%;
    }
}

.overview {
    width: 100%;
    background-image: url('../img/last_bg.png');
    background-repeat: no-repeat;
    background-size: contain;
    box-sizing: border-box;
    padding: 0 30px;
    margin-top: -50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.overview h2 {
    margin-top: 80px;
}
.overview_box {
    border: 2px solid #7BD3D5;
    border-radius: 20px;
    margin-top: 30px;
    box-sizing: border-box;
    padding: 25px 30px;
}
.overview_box div:not(:last-child) {
    margin-bottom: 20px;
}
.overview_box h3 {
    font-size: 18px;
    color: #00979B;
    font-weight: 600;
    margin-bottom: 10px;
}
.overview_box ul {
    list-style: disc;
}
.overview_box li {
    font-size: 14px;
    line-height: 1.5;
    margin-left: 15px;
}
@media screen and (min-width: 769px) {
    .overview {
        background-size: contain;
        padding: 0 30px 20px;
        margin-top: -80px;
        margin-bottom: 20px;
    }
    .overview h2 {
        margin-top: 80px;
    }
    .overview_box {
        margin-top: 50px;
        padding: 30px 40px;
    }
    .overview_box div:not(:last-child) {
        margin-bottom: 30px;
    }
    .overview_box h3 {
        font-size: 24px;
        margin-bottom: 15px;
    }
    .overview_box li {
        font-size: 18px;
    }
    .overview_box p {
        font-size: 18px;
    }
}

/* footer style */
footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    padding: 30px 0 10px;
}
footer img {
    width: 50%;
}
@media screen and (min-width: 769px) {
    footer {
        position: fixed;
        right: 0;
        bottom: 10%;
        padding: 20px 0 10px;
    }
    footer img {
        width: 60%;
    }
}