:root {
    --font-size--normal: 17px;
    --font-size--huge: 42px;
    --font-size--small: 0.9rem;
    --font-size--medium: 1.08rem;
    --font-size--x-large: clamp(1.39rem, 1.39rem + ((1vw - 0.2rem) * 0.836), 1.85rem);
    --font-family--sans: Arial, 'Noto Sans JP', 'Helvetica Neue', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;

    --color--accent1:#ff4f00;
    --color--shadow-blue:#69d6fa;
}

body {
    line-break: normal;
    font-family: var(--font-family--sans);
    font-size: var(--font-size--medium);
    font-style: normal;
    font-weight: 400;
    line-height: 1.55;
    font-feature-settings: "palt";
}

h1,h2,h3,h4,h5,h6 {
    color: var(--preset--color--accent-2);
    font-family: var(--font-family--sans);
    font-weight: 400;
    line-height: 1.2;
}

h2 {
    font-size: clamp(1.378rem, 1.378rem + ((1vw - 0.2rem) * 1.585), 2.25rem);
    margin-top: 2rem;
    margin-bottom: 1.6rem;
}

h3 {
    font-size: clamp(1.146rem, 1.146rem + ((1vw - 0.2rem) * 1.189), 1.8rem);
}

h4 {
    font-size: clamp(1.1rem, 1.1rem + ((1vw - 0.2rem) * 0.767), 1.5rem);
}

.font-size--large{
    font-size:1.35em;
}
.font-size--x-large{
    font-size:var(--font-size--x-large) ;
}

.text-center{
    text-align: center;
    text-wrap: balance;
}
.margin-lr-auto{
    margin-left:auto;
    margin-right: auto;
}

img{max-width: 100%;}


.flex{display: flex;column-gap: 16px;}
.flex_wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.flex_grow {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}
.no_shrink {
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

header {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
.head-kv img {
    width: 100%;
    max-width: 100%;
}

main {
    padding-right: 1rem;
    padding-left: 1rem;

}

main section {
    margin: auto;
    max-width: 800px;
}

section h2{
    position: relative;
    /* padding: .2em 1em; */

    color: #333;
    min-height: 2.5em;
    display: flex;
    align-items: center;}

section h2::before{
    position: absolute;
    top: 0;
    left:0;
    content: "";
    /* background-color: var(--color--accent1); */
    height: 100%;
    width: 100%;
    z-index: -1;
    transform: skewX(-12deg);
}


/*-- Profile --*/

.author h3{
    text-align: center;
    margin-top:1em;
    margin-bottom: 1em;
}
.author .photo img {width: 100%;} 

.author .others {
    background-color: #f4f5f6;
    padding: 1em;
}
.author .each img{width:100%;}
.author .each {
    margin-bottom: calc(100vw* 10 / 1280);
    width: calc((100% - 16px* 4) / 5);
}
.author .each:not(.all) {
    border: 1px solid #a5a2a1;
}
.author .each.all {
    margin-right: 0;
    width: calc(40% - 16px);
}

@media (max-width: 760px) {
    .author .each:nth-child(odd) {
    }

    .author .each {
        margin-bottom: calc(100vw* 20 / 1280);
        width: calc(50% - 8px);
    }
    .author .each.all {
        margin-right: 0;
        width: 100%;
    }

    .author .details {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    
}

@media (min-width: 769px) {
    .sp-original{display: none;}
    .author .photo{width:20vw;}
}