@charset "utf-8";

html {
    font-feature-settings: "palt";
    scroll-behavior: smooth;
}

@media screen and (max-width: 800px) {
    html {
        font-size: 15px;
    }
}

@media screen and (max-width: 414px) {
    html {
        font-size: 14px;
    }
}

body {
    letter-spacing: 0.09em;
    line-height: 2em;
    font-weight: 500;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    color: #444;
}

a {
    color: #444;
}

/* WRAPPER */

.wrapper_01 {
    margin-left: 4%;
    margin-right: 4%;
}

@media screen and (max-width: 800px) {
    .wrapper_01 {
        margin-left: 5%;
        margin-right: 5%;
    }
}

.wrapper_02 {
    padding-left: 15.28%;
    padding-right: 15.28%;
}

@media screen and (max-width: 800px) {
        .wrapper_02 {
        padding-left: 5%;
        padding-right: 5%;
    }
}

.wrapper_03 {
    padding: 0 23.5%;
}

@media screen and (max-width: 800px) {
    .wrapper_03 {
        padding: 5rem 5%;
    }
}

.wrapper_heading {
    padding: 0 9%;
}

@media screen and (max-width: 800px) {
    .wrapper_heading {
        padding: 0 5%;
    }
}

/* FLEX */

.flex_pc {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.flex_reverse {
    flex-direction: row-reverse;
}

@media screen and (max-width: 800px) {
    .flex_pc {
        display: block;
    }
    .flex_reverse {
        flex-direction: initial;
    }
}

.logo-flex {
    display: flex;
    align-items: center;
}

/* BACKGROUND COLOR */

.bg-color_01 {
    background-color: #F6F6F6;
}

.bg-color_02 {
    background-color: #fff;
}

/* BORDER */

.border-bottom_dashed {
    border-bottom: 1px dashed #222;
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
}

.border-bottom_dashed:last-of-type {
    border-bottom: none;
    margin-bottom: 0px;
    padding-bottom: 0px;
}

/* BR */

.sp-block {
    display: none;
}

@media screen and (max-width: 800px) {
     .sp-block {
        display: block;
    }
}

@media screen and (max-width: 800px) {
     .sp-none {
        display: none;
    }
}

/* H tag */

h2 {
    font-size: 2rem;
    font-weight: bold;
}

@media screen and (max-width: 800px) {
    h2 {
        font-size: 1.88rem;
    }
}

.h2-sub {
    font-size: 0.88rem;
    margin-top: 0.94rem;
}

h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1C92B2;
    position: relative;
}

@media screen and (max-width: 800px) {
        h3 {
        font-size: 1.25rem;
    }
}

h3::before {
    content: "";
    display: block;
    height: 0.94rem;
    width: 0.94rem;
    border-radius: 50%;
    background-color: #1C92B2;
    position: absolute;
    top: -1.88rem;
    left: 0;
}

h3::after {
    content: "";
    display: block;
    height: 0.94rem;
    width: 0.94rem;
    border-radius: 50%;
    background-color: #E7C438;
    position: absolute;
    top: -1.88rem;
    left: 1.25rem;
}

h4 {
    font-size: 1.25rem;
    font-weight: bold;
}

@media screen and (max-width: 800px) {
        h4 {
        font-size: 1.16rem;
    }
}

h5 {
    font-size: 1.25rem;
    font-weight: bold;
}


/* BTN */

.common-btn {
    width: 100%;
}

@media screen and (max-width: 800px) {
        .common-btn {
        width: 15.6rem;
        margin-left: auto;
        margin-right: auto;
    }
}

.btn_add {
    font-size: 0.88rem;
}

.common-btn a {
    border: 1.5px solid #1C92B2;
    border-radius: 0.5rem;
    width: 15.6rem;
    height: 3.75rem;
    background-color: #fff;
    position: relative;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    padding-left: 1rem;
}

.common-btn a:hover {
    background-color: #1C92B2;
    color: #fff;
    transition: .5s;
}

.common-btn a::after {
    position: absolute;
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 8px solid #1C92B2;
    border-right: 0;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
}

.common-btn a:hover::after {
    border-left: 8px solid #fff;
    transition: .5s;
}

/* TEXT BOX/AREA */

.text-box {
    width: 54.84%;
}

.img-box {
    width: 40.32%;
    aspect-ratio: 3 / 2;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.62rem;
    box-sizing: border-box;
}

.img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

@media screen and (max-width: 800px) {
    .text-box {
        width: 100%;
    }
    .img-box {
        width: 100%;
    }
}

.text-area {
    text-align: justify;
}
