@charset "UTF-8";

.main {
    overflow-x                : hidden;
    -webkit-overflow-scrolling: touch;
    scroll-behavior           : smooth;
}

.main p {
    margin: 0;
}

.main img {
    display  : block;
    max-width: 100%;
}

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

.main ul li {
    padding-left: 1em;
    text-indent : -1em;
}

.main ol li {
    padding-left: 1em;
    text-indent : -1em;
}

.main a {
    margin        : 0;
    padding       : 0;
    font-size     : 100%;
    vertical-align: baseline;
    background    : transparent;
}

.main a {
    text-decoration: none;
}

.main img {
    width         : 100%;
    vertical-align: top;
}

.beige {
    background-color: #fbe7cd;
}

.orange {
    background-color: #ec6500;
}

.list_kv,
.main {
    width : 900px;
    margin: 0 auto;
}

.list_read {
    padding: 100px 0 0;
}

.list_title_red {
    position        : relative;
    color           : #fff;
    background-color: #d20023;
    font-size       : 43px;
    font-weight     : 600;
    text-align      : center;
    margin          : 50px 0 20px !important;
    padding         : 10px 0;
}

.list_title_red::after {
    content     : '';
    width       : 15px;
    height      : 15px;
    border      : 0;
    border-top  : solid 3px #fff;
    border-right: solid 3px #fff;
    transform   : rotate(-45deg);
    position    : absolute;
    top         : 0;
    right       : 25px;
    bottom      : 0;
    margin      : auto;
}

.list_title_gray01,
.list_title_gray02 {
    position        : relative;
    color           : #fff;
    background-color: #727171;
    font-size       : 43px;
    font-weight     : 600;
    text-align      : center;
    padding         : 10px 0;
}

.list_title_gray01 {
    margin-top: 30px !important;
}

.list_title_gray02 {
    margin-top: 50px !important;
}

.list_title_gray01::after,
.list_title_gray02::after {
    content     : '';
    width       : 15px;
    height      : 15px;
    border      : 0;
    border-top  : solid 3px #fff;
    border-right: solid 3px #fff;
    transform   : rotate(-45deg);
    position    : absolute;
    top         : 0;
    right       : 25px;
    bottom      : 0;
    margin      : auto;
}

.list_accordion {
    padding-bottom: 20px;
}

/*チェックボックスを非表示にする*/
.main input {
    display: none;
}

.main label {
    padding   : 0.5em;
    background: #ed7101;
    display   : block;
    position  : relative;
    cursor    : pointer;
}

.main label p {
    color      : #fff;
    font-size  : 32px;
    font-weight: 600;
    text-align : center;
}

/*三角矢印アイコン*/
.main .icon {
    display         : block;
    position        : absolute;
    right           : 20px;
    top             : 50%;
    width           : 24px;
    margin-left     : 6px;
    flex-shrink     : 0;
    transform-origin: center 43%;
    transition      : transform 0.5s;
}

.main .icon::before,
.main .icon::after {
    content         : "";
    position        : absolute;
    display         : block;
    width           : 15px;
    height          : 3px;
    background-color: #fff;
}

.main .icon::before {
    left     : 0;
    transform: rotate(45deg);
}

.main .icon::after {
    right    : 0;
    transform: rotate(-45deg);
}

.main .topics_accordion {
    margin-bottom: 60px !important;
}

/*コンテンツ初めは非表示*/
.main .content {
    max-height: 0;
    opacity   : 0;
    visibility: hidden;
    transition: 0.5s;
    overflow  : hidden;
}

.main .content a {
    color          : #000;
    font-size      : 18px;
    text-decoration: underline;
}

/*クリックするとコンテンツ表示*/
.main input:checked~.content {
    max-height      : 1000px;
    opacity         : 1;
    visibility      : visible;
    background-color: #fff;
    padding         : 20px 20px 5px 20px;
}

input:checked~.content ul li {
    padding-bottom: 20px;
}

/* アコーディオン表示の際に三角回転 */
.main input:checked~label .icon {
    transform: rotate(180deg);
}

.coming_soon01,
.coming_soon02 {
    color      : #727171;
    font-size  : 43px;
    text-align : center;
    padding-top: 10px;
}

.coming_soon02 {
    padding-bottom: 100px;
}

.main .contact {
    padding: 100px 0;
}

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

    .list_kv {
        width: 100%;
    }

    .main {
        width: 95%;
    }

    .list_read {
        padding: 30px 0 0;
    }

    .list_title_red {
        font-size: 20px;
        margin   : 20px 0 15px !important;
    }

    .list_title_red::after {
        width : 12px;
        height: 12px;
        right : 20px;
        top   : 14%;
    }

    .main .icon::before,
    .main .icon::after {
        width           : 12px;
    }

    .main .icon::before {
        left     : 6px;
    }

    .list_title_gray01,
    .list_title_gray02 {
        font-size: 20px;
    }

    .list_title_gray01 {
        margin-top: 10px !important;
    }

    .list_title_gray02 {
        margin-top: 20px !important;
    }

    .list_title_gray01::after,
    .list_title_gray02::after {
        width : 12px;
        height: 12px;
        right : 20px;
        top   : 7%;
    }

    .list_accordion {
        padding-bottom: 15px;
    }

    .main .icon {
        right: 15px;
    }

    .main label p {
        font-size: 18px;
    }

    .content a {
        font-size: 14px;
    }

    .coming_soon01,
    .coming_soon02 {
        font-size  : 20px;
        padding-top: 5px;
    }

    .coming_soon02 {
        padding-bottom: 30px;
    }

    .main .contact {
        padding: 30px 0;
    }
}