@charset "utf-8";

/* google icon */
.material-symbols-outlined {
    font-variation-settings:
        'FILL'0,
        'wght'300,
        'GRAD'0,
        'opsz'24
}

/* common  */
.pc-view {
    display: block;
}

.sp-view {
    display: none;
}

.column {
    background: var(--background-blue);
    padding: 8px 0 40px;
    counter-reset: number 0;
}

.column .cite a {
    text-decoration: none;
    color: var(--primary);
    transition: .2s;
}

.column .cite a:hover {
    color: var(--secondary);
}

.column h2 {
    font-size: 24px;
    line-height: 1.5;
}

.column h3 {
    font-size: 18px;
    line-height: 1.5;
}

.column img {
    border-radius: 8px;
}

.attention li {
    font-size: 12px;
    margin-left: 20px;
    position: relative;
}

.attention li::before {
    content: "※";
    position: absolute;
    left: -20px;
}

.column .wrap {
    width: 848px;
    margin: 0 auto;
}

.column article {
    font-size: 14px;
    text-align: justify;
    letter-spacing: 1.3px;
    padding: 48px 88px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 56px;
    align-items: center;
    box-sizing: border-box;
    line-height: 1.5;
}

.column .main_text {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
    width: 100%;
}

.column .main_text p {
    width: fit-content;
    line-height: 2;
    margin: 0;
}

.main_text blockquote {
    margin: 0;
    padding: 16px;
    background-color: #f1f1f1;
    font-size: 14px;
}

.main_text .important-text {
    border: 2px solid #FF6043;
    border-radius: 4px;
    padding: 16px;
}

@media screen and (max-width: 850px) {
    .pc-view {
        display: none;
    }

    .sp-view {
        display: block;
    }

    .column .wrap {
        width: 100%;
    }

    .column article {
        padding: 32px 24px;
        margin-bottom: 24px;
        border-radius: 0;
        gap: 40px;
        letter-spacing: 0.8px;

    }

    .column h2 {
        font-size: 20px;
    }

    .column h3 {
        font-size: 16px;
        letter-spacing: 0.7px;
    }

    .column .main_text p {
        font-size: 16px;
        line-height: 1.8;
        word-break: break-all;
    }
}

/* 灰色ボックス */
.box_glay {
    padding: 32px;
    background: var(--background-gray);
    width: 494px;
    margin: auto;
    border-radius: 8px;
    box-sizing: border-box;
}

.box_glay h3 {
    margin-bottom: 16px;
    text-align: center;
}

.box_glay p {
    line-height: 2;
}

.box_glay ol, .box_glay ul, .profile ul {
    padding-left: 24px;
}

.box_glay li {
    margin-bottom: 16px;
    counter-increment: cnt;
}

.box_glay li:nth-last-of-type(1) {
    margin-bottom: 0;
}

.box_glay ol li::before {
    content: ""counter(cnt);
    font-size: 16px;
    font-weight: bold;
    color: var(--primary);
    display: inline-block;
    width: 24px;
    margin-left: -24px;
}

.check li::before {
    content: "□";
    font-size: 16px;
    font-weight: bold;
    display: inline-block;
    width: 24px;
    margin-left: -24px;
    position: relative;
    top: 1px;
}

@media screen and (max-width: 850px) {
    .box_glay {
        padding: 24px;
        width: 100%;
    }

    .box_glay p {
        line-height: 1.7;
    }

}

/* プロフィール */
.profile {
    border: var(--primary) 2px solid;
    border-radius: 8px;
    width: 494px;
}

.profile .name {
    display: flex;
    gap: 32px;
    align-items: center;
    justify-content: center;
    padding: 24px 0;
    background: var(--background-blue);
    border-radius: 8px 8px 0 0;
}

.profile .name img {
    width: 104px;
}

.profile .name>div>p:nth-of-type(1) {
    font-size: 8px;
    margin-bottom: 4px;
}

.profile .name>div>p:nth-of-type(3) {
    font-size: 28px;
    margin-top: 8px;
    font-weight: bold;
}

.profile .about {
    padding: 24px 40px 32px;
}

.profile .about p {
    margin-bottom: 16px;
    line-height: 1.7;
}

.profile .cite li {
    margin-bottom: 12px;
}

.profile .cite li:nth-last-of-type(1) {
    margin-bottom: 0;
}

.profile .cite li::before {
    position: relative;
    top: 1px;
    font-family: "FontAwesome";
    content: "\f105";
    color: var(--primary);
    font-size: 20px;
    font-weight: normal;
    line-height: 0;
    margin-right: 14px;
    width: 10px;
    margin-left: -24px;
    display: inline-block;
}

@media screen and (max-width: 850px) {
    .profile {
        width: 100%;
    }

    .profile .name {
        gap: 24px;
        padding: 24px 24px 16px;
    }

    .profile .about {
        padding: 24px;
    }

}

/* fv */
.column .fv {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.column .fv .tag-day {
    text-align: right;
}

.column .fv .tag {
    display: inline-block;
    padding: 4px 16px;
    font-size: 12px;
    font-weight: bold;
    color: var(--primary);
    background: var(--background-blue);
    border-radius: 50px;
    margin-right: 16px;
    letter-spacing: 0;
}

.column .fv .day {
    display: inline-block;
}

.column .fv .day span {
    vertical-align: bottom;
    margin-right: 4px;
}

.column img {
    width: 100%;
}

@media screen and (max-width: 850px) {
    .column .fv {
        gap: 24px;
    }

    .column .fv .tag {
        margin-bottom: 8px;
    }
}

/* セクション */
.column .chapter {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
}

.chapter_title {
    width: 100%;
    background: var(--background-blue);
    padding: 8px 24px;
    box-sizing: border-box;
    display: flex;
    gap: 16px;
    align-items: center;
    border-left: var(--primary) 4px solid;
}

.chapter_title::before {
    counter-increment: number 1;
    content: "Q"counter(number);
    color: var(--primary);
    font-size: 40px;
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    line-height: 120%;
}

.chapter .cite {
    width: 100%;
    text-align: right;
    font-size: 12px;
}

.column img.img-flow {
    width: 80%;
    height: auto;
}


@media screen and (max-width: 850px) {
    .chapter_title {
        padding: 16px;
    }

    .chapter .cite {
        letter-spacing: 0;
    }
}

/* 下部リンク */
.column .link {
    width: 100%;
    display: flex;
    gap: 32px;
}

.column .link_box {
    width: 100%;
    background: var(--white);
    border-radius: 8px;
    padding: 32px;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
}

.column .link p {
    font-size: 20px;
    line-height: 1.7;
    font-weight: bold;
    text-align: center;
    margin-bottom: 32px;
}

.column p.one_line {
    margin-top: 24px;
    margin-bottom: 42px;
}

.column .link .cvButton {
    min-width: auto;
}

.column .link .cvButton a {
    width: 100%;
    min-width: auto;
}

@media screen and (max-width: 850px) {
    .column .link {
        flex-direction: column;
        width: auto;
        padding: 0 24px;
    }

    .column .link_box {
        width: auto;
        padding: 24px;
    }

    .column .link p {
        font-size: 18px;
        margin-bottom: 16px;
    }

    .column p.one_line {
        margin-top: 0;
        margin-bottom: 16px;
    }
}

/* パンクズ */

@media screen and (max-width: 850px) {
    #breadCrumb_style {
        display: flex;
        padding: 8px 16px 16px;
        box-sizing: border-box;
        overflow-x: scroll;
    }

    #breadCrumb_style li {
        white-space: nowrap;
    }
}

/* qa */
.qa .chapter_title {
    padding: 20px 24px;
}

.qa .chapter_title::before {
    content: none;
}

.qa_question_contents {
    display: flex;
    flex-direction: column;
    gap: 48px;
    align-items: center;
    width: 100%;
}

.qa_question_boxwrap {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    width: 100%;
}

.qa_question_box, .qa_answer_box {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    align-self: stretch;
}

.column .qa img {
    width: auto;
}

.qa_icon_box {}

.column .main_text p.qa_icon_txt {
    text-align: center;
    font-size: 14px;
    width: 100%;
    margin: auto;
}

.qa_question_txt, .qa_answer_txt {
    display: flex;
    max-width: 558px;
    width: 100%;
    padding: 16px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 8px;
    box-sizing: border-box;
}

.qa_question_txt {
    border: 1px solid #80D4FF;
}

.qa_answer_txt {
    background: #FFFACC;
}

@media screen and (max-width: 850px) {
    .qa_question_box, .qa_answer_box {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
}

/* 他の記事 */
.other_article {
    width: 100%;
    display: flex;
    gap: 56px;
    margin: 24px 0;
    justify-content: space-between;
    flex-direction: row-reverse;
}

.other_article li {
    flex: 1;
    display: flex;
    justify-content: start;
    text-align: justify;
}

.other_article li .cvButton-tertiary span {
    display: block;
    width: 100%;
    max-width: 300px;
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    position: relative;
}

.other_article li:nth-child(1) {
    justify-content: end;
}

.other_article li:nth-child(2) a::before {
    font-size: 1.4em;
    font-weight: normal;
    content: "\f105";
    font-family: "FontAwesome";
    transform: scale(-1, 1);
    display: inline-block;
}

.other_article li:nth-child(2) a::after {
    display: none;
}

@media screen and (max-width: 850px) {
    .other_article {
        padding: 0 24px;
        flex-direction: column;
        gap: 16px;
    }

    .other_article li .cvButton-tertiary span {
        max-width: none;
        white-space: normal;
    }
}
