@charset "utf-8";



/* ------------------------------------------------------------------------ */

/*  common
 
/* ------------------------------------------------------------------------ */

:root {
    --color-main: #0099e5;
    --color-text: #222;
}

body {
    font-family: "Zen Kaku Gothic New", sans-serif;
    color: var(--color-text);
}
.inner {
    max-width: 1000px;
    width: calc(100% - 38px);
    margin-inline: auto;
    padding: 0;
}

.title-02 {
    font-size: 26px;
    font-weight: 700;
    text-align: center;
}
.title-03 {
    font-size: 18px;
    font-weight: 700;
    text-align: left;
}
@media (max-width: 767px) {
    .title-02 {
        font-size: 20px;
    }
    .title-03 {
        font-size: 16px;
    }
}
.common-btn {
    position: relative;
    border: 1px solid var(--color-main);
    border-radius: 10px;
    background-color: #fff;
    color: var(--color-main);
    padding: 23px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    max-width: 440px;
    width: 100%;
    margin-inline: auto;
    font-size: 20px;
    font-weight: 700;
}
.common-btn::after {
    content: "";
    max-width: 24px;
    width: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--color-main);
    border-radius: 25px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 15px;
    color: #fff;
}
.common-btn::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-top: 2px solid #fff;
    /* 矢印の色 */
    border-right: 2px solid #fff;
    /* 矢印の色 */
    margin-left: 6px;
    vertical-align: middle;
    position: absolute;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    right: 25px;
    z-index: 1;
}
.common-btn:hover {
    background-color: var(--color-main);
    color: #fff;
}
.common-btn:hover::after {
    background-color: #fff;
}
.common-btn:hover::before {
    border-top: 2px solid var(--color-main);
    border-right: 2px solid var(--color-main);
}
@media (max-width: 767px) {
    .common-btn {
        font-size: 16px;
        text-align: center;
        justify-content: center;
        padding: 17px 29px;
    }
    .common-btn::after {
        max-width: 19px;
        right: 16px;
    }
    .common-btn::before {
        width: 5px;
        height: 5px;
        right: 23px;

    }
}
.indent li {
    text-indent: -1em;
    padding-left: 1em;
    font-size: 16px;
}
@media (max-width: 767px) {
    .indent li {
        font-size: 14px;
    }
}
.pcStyle {
    display: block;
}
.spStyle {
    display: none;
}
@media (max-width: 767px) {
    .pcStyle {
        display: none;
    }
    .spStyle {
        display: block;
    }
}
/* ------------------------------------------------------------------------ */

/*  sec_mv
 
/* ------------------------------------------------------------------------ */
#sec_mv img {
    width: 100%;
}
/* ------------------------------------------------------------------------ */

/*  about
 
/* ------------------------------------------------------------------------ */

#sec_about {
    margin-top: 77px;
}
#sec_about .title-02 {
    position: absolute;
    top: -23px;
    background-color: #fff;
    right: 0;
    left: 0;
    margin: auto;
    padding-inline: 10px;
    z-index: 1;
    width: fit-content;

}
#sec_about .about-content {
    position: relative;
    border-radius: 16px;
    border: 2px solid var(--color-main);
    padding: 34px 40px 40px;
}

#sec_about .about-content-text {
    font-size: 18px;
    text-align: center;
}
#sec_about .about-content-ttl {
    position: relative;
    font-size: 20px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 44px;

}
#sec_about .about-content-ttl::before,
#sec_about .about-content-ttl::after {
    content: "";
    background-color: var(--color-text);
    width: 1px;
    height: 30px;
}
#sec_about .about-content-ttl::before {
    transform: rotate(340deg);
}
#sec_about .about-content-ttl::after {
    transform: rotate(25deg);
}
.about-content-ttl-sub {
    font-size: 24px;
    font-weight: 700;
    color: #016ba2;
    text-align: center;
}
.about-content-img {
    margin-inline: auto;
    display: block;
    margin-top: 22px;
}
#sec_about .about-content-list {
    margin-top: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
#sec_about .about-content-item {
    position: relative;
    background-color: #d5f5da;
    width: 100%;
    padding: 25px 10px 20px;
    border-radius: 8px;
}
#sec_about .item-number {
    position: absolute;
    top: -22px;
    right: 0;
    left: 0;
    margin-inline: auto;
    color: var(--color-main);
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    width: fit-content;
}
#sec_about .item-number span {
    font-size: 24px;
}
#sec_about .item-text {
    font-size: 18px;
    text-align: center;
}

@media (max-width: 767px) {
    #sec_about {
        margin-top: 59px;
    }
    #sec_about .title-02 {
        top: -15px;
    }
    #sec_about .about-content {
        border-radius: 12px;
        padding: 26px 22px 32px;
    }
    #sec_about .about-content-text {
        font-size: 16px;
        text-align: left;
    }
    #sec_about .about-content-list {
        flex-direction: column;
        margin-top: 26px;
        gap: 29px;
    }
    #sec_about .about-content-ttl {
        margin-top: 21px;
        font-size: 18px;
        gap: 15px;
    }
    #sec_about .item-text {
        font-size: 16px;
    }
    #sec_about .about-content-ttl::before,
    #sec_about .about-content-ttl::after {
        height: 20px;
    }
    #sec_about .about-content-ttl::before {
        transform: rotate(330deg);
    }
    #sec_about .about-content-ttl::after {
        transform: rotate(30deg);
    }
    #sec_about .item-number {
        font-size: 18px;
        top: -21px;
    }
    #sec_about .item-number span {
        font-size: 24px;
    }
    #sec_about .about-content-item {
        padding: 18px 20px 12px;
        border-radius: 8px;
    }
    .about-content-ttl-sub {
        font-size: 18px;
        margin-top: 9px;
    }
}
/* ------------------------------------------------------------------------ */

/*  sec_use
 
/* ------------------------------------------------------------------------ */

#sec_use {
    margin-top: 132px;
}

#sec_use .use-content-list {
    display: flex;
    gap: 7px;
    justify-content: space-between;
    align-items: center;
    margin-top: 33px;
    max-width: 920px;
    margin-inline: auto;
}

#sec_use .use-content-item {
    position: relative;
    border: 1px solid #0099e5;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 16px 40px 16px 23px;
    width: 100%;
    height: 100px;
}
#sec_use .use-content-item::after {
    content: "";
    max-width: 24px;
    width: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--color-main);
    border-radius: 25px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 15px;
    color: #fff;
    transition-duration: 0.1s;
}
#sec_use .use-content-item::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-top: 2px solid #fff;
    /* 矢印の色 */
    border-right: 2px solid #fff;
    /* 矢印の色 */
    margin-left: 6px;
    vertical-align: middle;
    position: absolute;
    top: 50%;
    transform: translateY(-50%)rotate(45deg);
    right: 24px;
    z-index: 1;
    transition-duration: 0.1s;
}
#sec_use .use-content-item:hover {
    opacity: 0.8;
}
#sec_use .use-content-item:hover::after {
    right: 13px;
    transition-duration: 0.1s;
}
#sec_use .use-content-item:hover::before {
    right: 22px;
    transition-duration: 0.1s;
}
#sec_use .use-content-item>img {
    max-width: 77px;
    width: 100%;
    height: auto;
    display: block;
    margin-top: 13px;
}
#sec_use .item-texts-ttl {
    font-size: 20px;
    font-weight: 700;
}
#sec_use .item-texts-text {
    font-size: 18px;
    margin-top: 10px;
    line-height: calc(28 / 18);
}

#sec_use .common-btn {
    margin-top: 32px;
}
@media (max-width: 767px) {
    #sec_use .common-btn {
        margin-top: 40px;
    }
    #sec_use {
        margin-top: 95px;
    }
    #sec_use .use-content-list {
        display: flex;
        flex-direction: column;
        margin-top: 27px;
        gap: 20px;
    }
    #sec_use .use-content-item {
        align-items: center;
        padding: 20px 14px;
        gap: 8px;
        height: auto;
    }
    #sec_use .use-content-item>img {
        margin-inline: 0;
        margin-top: 0;
        max-width: 60px;
    }
    #sec_use .item-texts-ttl {
        font-size: 16px;
        text-align: center;
    }
    #sec_use .item-texts-text {
        font-size: 16px;
        margin-top: 0px;
    }
    #sec_use .use-content-item::after {
        max-width: 20px;
        bottom: 11px;
        right: 16px;
    }
    #sec_use .use-content-item::before {
        bottom: 18px;
        right: 23px;
    }
}

/* ------------------------------------------------------------------------ */

/*  simulation
 
/* ------------------------------------------------------------------------ */

.simulation {
    margin-top: 142px;
}
.simulation .hoverFalse {
    display: block;
}
.simulation .hoverTrue {
    display: none;
}
.simulation:hover .hoverFalse {
    display: none;
}
.simulation:hover .hoverTrue {
    display: block;
}
@media (max-width: 767px) {
    .simulation {
        margin-top: 100px;
        justify-content: center;
        padding: 12px 29px;
    }
}
/* ------------------------------------------------------------------------ */

/*  possible
 
/* ------------------------------------------------------------------------ */

#possible {
    margin-top: 57px;
    margin-bottom: 110px;
}
#possible .title-02 {
    font-size: 22px;
}
#possible .possible-content-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 37px;
    max-width: 920px;
    width: 100%;
    margin-inline: auto;
}
#possible .possible-content-item p {
    font-size: 16px;
    text-align: center;
    margin-top: 5px;
}
#possible .possible-content-item.arrow {
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    border-top: 30px solid transparent;
    border-bottom: 30px solid transparent;
    border-left: 23px solid #d9d9d9;
    border-right: 0;
    margin-bottom: 30px;
}

#possible .possible-content-info {
    border: 1px solid #bbb;
    border-radius: 16px;
    padding: 33px 40px;
    margin-top: 118px;
}

#possible .period {
    padding-bottom: 25px;
}
#possible .period table,
#possible .period td,
#possible .period th {
    border-collapse: collapse;
}
#possible .period td,
#possible .period th {
    padding: 8px;
    width: 30px;
    height: 25px;
}
#possible .period th,
#possible .period tr:nth-child(even) td {
    background-color: #f2f2f2;
}
#possible .period table {
    margin-top: 21px;
    width: 100%;
    text-align: center;
    font-size: 18px;
    border-top: 1px solid #bbb;
}
#possible .period tr {
    border-bottom: 1px solid #bbb;
}
#possible .period tr>*:first-child {
    border-right: 1px solid #bbb;
}
#possible .period th {
    font-weight: 700;
}
#possible .regarding {
    padding-top: 14px;
    padding-bottom: 21px;
}
#possible .regarding th,
#possible .precautions th {
    vertical-align: top;
}

#possible .precautions {
    padding-top: 15px;
}

@media (max-width: 767px) {
    #possible {
        margin-top: 45px;
    }
    #possible .title-02 {
        font-size: 20px;
    }
    #possible .possible-content-list {
        flex-direction: column;
        margin-top: 26px;
        justify-content: flex-start;
    }
    #possible .possible-content-item.arrow {
        transform: rotate(90deg);
        border-top: 25px solid transparent;
        border-bottom: 25px solid transparent;
        border-left: 18px solid #d9d9d9;
    }

    #possible .possible-content-item p {
        font-size: 14px;
        margin-top: 7px;
    }
    #possible .possible-content-item img {
        max-width: 240px;
    }
    #possible .regarding th,
    #possible .regarding td,
    #possible .precautions th,
    #possible .precautions td {
        width: 100% !important;
        display: block;
        box-sizing: border-box;
    }
    #possible .regarding colgroup,
    #possible .precautions colgroup {
        display: none;
    }
    #possible .possible-content-info {
        margin-top: 95px;
        padding: 26px 16px;
    }
    #possible .period table {
        font-size: 16px;
        margin-top: 17px;
    }
    #possible .period td,
    #possible .period th {
        padding: 7px 3px;
    }
    #possible .period {
        padding-bottom: 28px;
    }
    #possible .regarding {
        padding-top: 12px;
    }
    #possible .precautions .indent,
    #possible .regarding .indent {
        margin-top: 10px;
    }
}