@charset "UTF-8";

/* Repeatable Patterns
----------------------------------------------------*/

*{
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
}

html.is-scroll-prevent {
    height: 100%;
    overflow: hidden;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    position: relative;
    z-index: 0;
    color: #F3F3F3;
    font-weight: 700;
    letter-spacing: 0.12rem;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: #E55800;
    background-image: url(img/bg.png);
    background-size: 15rem;
}

body.is-modal-opened{
    overflow: hidden;
}

/* print setting */
@media print {
    html {
        font-size: 38%;
    }

    body {
        -webkit-print-color-adjust: exact;
    }
}

a {
    color: inherit;
    text-decoration: none;
    transition: 0.3s ease-out;
}

a img, a svg {
    transition: 0.3s ease-out;
}

::-moz-selection {
    background: #0028CD;
    color: #fff;
    text-shadow: none;
}

::selection {
    background: #0028CD;
    color: #fff;
    text-shadow: none;
}

h1, h2, h3, h4, h5, h6, p{
    margin: 0;
    font-weight: inherit;
}

img {
    width: 100%;
    height: auto;
    max-width: none !important;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) and (min-resolution: .001dpcm) {
    img {
        image-rendering: -webkit-optimize-contrast;
    }
}

figure{
    margin: 0;
}

svg{
    fill: currentcolor;
}

input,
textarea,
button {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background: none;
    border-radius: 0;
    cursor: pointer;
    border: none;
    width: 100%;
}

ul {
    list-style-type: none;
    padding: 0;
}

.wrapper {
    width: calc(1140 / 1280 * 100%);
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
}

.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.en{
    font-family: 'Gloock', serif;
    font-weight: normal;
    letter-spacing: 0.08rem;
}

.text_01{
    font-size: 1.6rem;
    line-height: 2.5;
}

/*リンク*/
.link_box{
    height: 7.6rem;
    background: #0028cd;
    border: 3px solid #0028cd;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.link_box:hover{
    background: #e55800;
}

/*アニメーション*/

.blur{
    animation-name:blurAnime;
    animation-duration:1.5s;
    animation-fill-mode:forwards;
}

@keyframes blurAnime{
    from {
        filter: blur(20px);
        transform: scale(2);
        opacity: 0;
        transform : translate(0, 2rem);
    }

    to {
        filter: blur(0);
        transform: scale(1);
        opacity: 1;
        transform: translate(0, 0);
    }
}

.blurTrigger{
    opacity: 0;
}

/*左右のアニメーション*/
.slide-in {
    display: inline-block;
    overflow: hidden;
}

.slide-in_inner {
    display: inline-block;

}

.leftAnime{
    opacity: 0;
}

.slideAnimeLeftRight {
    animation-name:slideTextX100;
    animation-duration:0.8s;
    animation-fill-mode:forwards;
    opacity: 0;
}


@keyframes slideTextX100 {
    from {
        transform: translateX(-100%); /*要素を左の枠外に移動*/
        opacity: 0;
        filter: blur(1.5rem);
    }

    to {
        transform: translateX(0);/*要素を元の位置に移動*/
        opacity: 1;
        filter: blur(0);
    }
}

/* ヘッダー
----------------------------------------------------*/

.header_logo{
    position: absolute;
    top: 3rem;
    left: 5%;
    width: 15%;
}

.drawer-hamburger {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1000;
    width: 8rem;
    height: 8rem;
    padding: 2.6rem 2.2rem;
    background: #0028cd;
    display: block;
}

.drawer-hamburger-icon,
.drawer-hamburger-icon:after,
.drawer-hamburger-icon:before {
    transition: all .25s cubic-bezier(.19, .6, .22, .8);
}

.drawer-hamburger-icon {
    position: relative;
    display: block;
    width: 100% !important;
    height: 3px;
    margin-top: 0 !important;
    background-color: #f3f3f3;
}

.drawer-hamburger-icon:after,
.drawer-hamburger-icon:before {
    position: absolute;
    content: " ";
    height: 3px;
    width: 100% !important;
    background-color: #f3f3f3;
    left: 0;
    right: 0;
    margin: auto;
}

.drawer-hamburger-icon:before {
    top: -1.4rem !important;
}

.drawer-hamburger-icon:after {
    top: 1.4rem !important;
}

.is-opened .drawer-hamburger-icon{
    background: transparent;
}

.is-opened .drawer-hamburger-icon:before {
    transform: rotate(45deg);
    top: 0 !important;
}

.is-opened .drawer-hamburger-icon:after {
    transform: rotate(-45deg);
    top: 0 !important;
}

.drawer-nav {
    background: #0028cd;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: fixed;
    top: -100%;
    bottom: 0;
    left: 0;
    z-index: 999;
    overflow-y: scroll;
    width: 100%;
    height: 100%;
    max-height: 100vh;
    transition: top .4s ease-in;
    -webkit-overflow-scrolling: touch;
}

.is-opened .drawer-nav {
    top: 0;
    transition: top .3s ease-in;
}

.drawer_inner {
    padding-top: 11rem;
    padding-bottom: 11rem;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 100vh;
}


@supports(-webkit-touch-callout: none){
    /* iPhoneの表示のみ指定を上書き */
    .drawer_inner{
        min-height: calc(var(--vh, 1vh) * 100);
    }
}

.drawer_logo{
    width: 28rem;
    margin: auto;
    display: block;
    padding-bottom: 6rem;
}

.drawer_nav{
    width: 100%;
    font-size: 4rem;
    padding-bottom: 6rem;
}

.drawer_nav .menu-item{
    text-align: center;
    font-family: 'Gloock', serif;
    font-weight: normal;
    letter-spacing: 0.08rem;
}

.drawer_nav .menu-item + .menu-item{
    padding-top: 4rem;
}

.drawer_ig{
    width: 16.6rem;
    display: block;
    margin: 6.6rem auto 5rem;
}


/* トップページ
----------------------------------------------------*/

.top_main_slider_container{
    position: relative;
}

.main_logo{
    position: absolute;
    top: -2%;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    z-index: 99;
    justify-content: center;
    align-items: center;
}

.main_logo a{
    width: 82%;
}

.top_main_slider{
    background: #e55800;
}

.top_main_slide {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 100vh;
    margin: 0;
    position: relative;
}

@supports(-webkit-touch-callout: none){
    /* iPhoneの表示のみ指定を上書き */
    .top_main_slide{
        height: calc(var(--vh, 1vh) * 100);
    }
}

.top_main_slider::after{
    content: "";
    display: block;
    z-index: 9;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #AA3403;
    opacity: .06;
}

/*.top_intro_container*/

.top_intro_text_container{
    padding-top: 13rem;
    padding-bottom: 12rem;
}

.top_intro_text{
    text-align: center;
}

.top_intro_text + .top_intro_text{
    padding-top: 4rem;
}


.top_intro_flow_container{
    width: 100%;
    height: 14.4rem;
    overflow: hidden;
    margin-bottom: 15rem;
    display: flex;
    gap: 1rem;
}

.top_intro_flow_text{
    font-size: 12rem;
    letter-spacing: 0.2rem;
    color: #0028cd;
    white-space: nowrap;
    animation: flow 40s linear infinite;
}

@keyframes flow {
    0%   { translate: 0; }
    100% { translate: calc(-100% - 1rem); }
}

/*.top_intro_item_container*/

.top_intro_item_container{
    justify-content: space-between;
    margin-bottom: 18rem;
}

.top_intro_item_img{
    width: 62%;
    margin-left: -4%;
}

.steps{
    width: 100%;
    position: relative;
    overflow: hidden;
    margin: 0;
    background: url("img/pie.png") no-repeat;/*背景画像の読み込み*/
    background-size: cover;
    background-position: 0 0;
    /*stepsline→アニメーション名
    1s→アニメーションをする時間
    step→（）の中には、アニメーション制作コマ数-1の値を入れる（例：4コマ-1コマ=3コマ）
    forwards→最後の形を維持*/
}

.steps::before {
    content: "";
    display: block;
    padding-top: 91.63%;
}

.steps.in-step{
    background-position: 100% 0;
}

.top_intro_item_body{
    padding-top: 5rem;
    width: 37%;
}

.top_intro_item_text + .top_intro_item_text {
    padding-top: 2.8rem;
}

.top_intro_item_link{
    margin-top: 7.2rem;
    width: 31.2rem;
    font-size: 2rem;
}

.top_intro_item_link img{
    width: 2.4rem;
    margin-left: 2.6rem;
}

/**/

.top_intro_illust{
    width: 37.6rem;
    display: block;
    margin: 0 auto 20rem;
}

/*.top_about_container*/
.top_about_container{
    padding-bottom: 31rem;
}

.top_about_inner{
    justify-content: space-between;
    align-items: flex-end
}

.top_about_inner + .top_about_inner{
    margin-top: 16rem;
}

.top_about_inner:nth-child(odd){
    flex-direction: row-reverse;
}

.top_about_slider{
    width: 50%;
    background: #e55800;
}

.top_about_body{
    width: 43%;
}

.top_about_heading{
    font-size: 8rem;
    line-height: 1.2;
    padding-bottom: 1rem;
    overflow: hidden;
}

.top_about_inner:nth-child(odd) .top_about_heading{
    text-align: right;
}

.top_about_text{
    text-align: justify;
}

/*.top_creator_container*/

.top_creator_heading{
    font-size: 12rem;
    color: #0028cd;
    text-align: center;
    padding-bottom: 6.8rem;
}

.top_creator_text{
    text-align: center;
}

.top_creator_text + .top_creator_text{
    padding-top: 4rem;
}

.top_creator_link_container{
    justify-content: center;
    padding-top: 10rem;
}

.top_creator_link{
    width: 31.2rem;
    font-size: 2rem;
}

.top_creator_link + .top_creator_link{
    margin-left: 8.2rem;
}

.top_creator_link img{
    width: 1.9rem;
    margin-left: 2rem;
}

/*モーダル*/

.md-overlay{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color:rgba(0,0,0,0.5);
    z-index: 9999;
}

.md-contents{
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90rem;
    max-height: 90vh;
    z-index: 10000;
    overflow: auto;
    overscroll-behavior-y: contain;
}

.md-inner{
    padding: 9rem 20%;
    background: #F3F3F3;
    color: #0028cd;
    height: auto;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.md-xmark{
    position: absolute;
    top: 7rem;
    right: 6rem;
    width: 6rem;
    height: 6rem;
    z-index: 9999;
    cursor: pointer;
}

.md-xmark span {
    height: auto;
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #0028cd;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.md-xmark span:nth-of-type(1) {
    transform: rotate(-45deg);
}

.md-xmark span:nth-of-type(2) {
    transform:  rotate(45deg);
}

.creator_profile_img{
    width: 58%;
    margin: auto;
    display: block;
    padding-bottom: 4.4rem;
}

.creator_profile_position{
    font-size: 3.6rem;
    text-align: center;
    padding-bottom: 4.8rem;
}

.creator_profile_name_jp{
    font-size: 1.6rem;
    padding-bottom: 1.8rem;
    text-align: center;
}

.creator_profile_name_en{
    font-size: 2.2rem;
    padding-bottom: 5.2rem;
    text-align: center;
}

.creator_profile_text{
    text-align: justify;
    line-height: 1.875;
}

.creator_profile_text + .creator_profile_text{
    padding-top: 3.2rem;
}

.creator_profile_link_container{
    padding-top: 10rem;
    font-size: 1.6rem;
    text-align: center;
}

.creator_profile_link_heading{
    padding-bottom: 4rem;
    position: relative;
}

.creator_profile_link_heading::after{
    content: "／";
    margin: auto;
    left: 0;
    right: 0;
    bottom: 1rem;
    display: block;
    position: absolute;
}

.creator_profile_link_inner{
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.creator_profile_link:hover{
    text-decoration: underline;
}

.creator_profile_link + .creator_profile_link{
    padding-left: 1.6rem;
}

/* フッター
----------------------------------------------------*/

.footer_container{
    margin-top: 22rem;
    background: #0028cd;
    padding-top: 8.4rem;
    padding-bottom: 5.8rem;
}

.footer_logo{
    width: 30rem;
    display: block;
    margin: auto;
    margin-bottom: 5.4rem;
}

.footer_ig{
    width: 16.6rem;
    display: block;
    margin: 0 auto 7.6rem;
}

.footer_nav{
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 4rem;
}

.footer_nav .nav_list{
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.footer_nav .nav_item + .nav_item{
    padding-left: 3.6rem;
}

.footer_nav .nav_link:hover{
    text-decoration: underline;
}


.footer_copyright{
    font-size: 1.4rem;
    text-align: center;
}



/* 下層ページ
----------------------------------------------------*/

body:not(.home) .main_container{
    padding-top: 18rem;
}

/* --- 固定ページ --- */

.page_main_header{
    margin-bottom: 10rem;
}

.page_main_heading{
    font-size: 3rem;
    line-height: 1.4;
    margin-bottom: 5rem;
}

.post_body * + * {
    margin-top: 2.8rem;
}

.post_body figure{
    margin-top: 4.8rem;
    margin-bottom: 4.8rem;
}

.post_body h2:first-child{
    margin-top: 0;
}

.blog_post_body h2{
    font-size: 2.4rem;
    line-height: 1.5;
    margin-top: 6rem;
    margin-bottom: 3.6rem;
}

.post_body h3 {
    font-size: 2.2rem;
    line-height: 1.5;
    margin-top: 6rem;
}

.post_body a {
    text-decoration: underline;
    word-break: break-all;
}

.post_body img{
    border-radius: 5px;
}

.post_body hr.wp-block-separator{
    border-top: #fff 1px solid;
    margin-top: 5rem;
    margin-bottom: 5rem;
}

.wp-block-image :where(figcaption){
    margin-top: 1.4rem !important;
    color: #666;
    font-size: 82%;
}

.is-type-video iframe{
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

ol.wp-block-list{
    list-style-type: decimal;
    margin-left: 2.6rem;
}

ul.wp-block-list{
    list-style-type: circle;
    margin-left: 2.6rem;
}

ol.wp-block-list li,
ul.wp-block-list li{
    margin-top: 1rem;
}

.wp-block-button__link{
    width: 26rem !important;
    height: 6.2rem !important;
    font-size: 2rem;
    font-weight: 700;
    margin: auto;
    color: #fff;
    background: transparent;
    display: flex !important;
    justify-content: center;
    align-items: center;
    border-width: 1px !important;
    border-radius: 50vmax;
    position: relative;
    text-decoration: none !important;
}

.wp-block-button__link:hover {
    border-color: #0028cd;
    color: #fff;
    background: #0028cd;
}

.wp-block-button__link::after {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    right: 2rem;
    margin: auto;
    border-top: solid 1px;
    border-right: solid 1px;
    width: 8px;
    height: 8px;
    transform: rotate(45deg);
}

.blog_post_body{
    font-size: 1.6rem;
    line-height: 1.85;
    text-align: justify;
}


/* --- ブログ --- */


.blog_list{
    margin: 0 -2%;
}

.blog_item {
    width: calc(100% / 3);
    padding: 0 2% 5rem;
}

.blog_item_img{
    border-radius: 5px;
}

.blog_item_img img {
    aspect-ratio: 3 / 2;
    object-fit: cover;
}

.blog_item_title {
    font-size: 1.9rem;
    line-height: 1.5;
    font-weight: 700;
    margin-top: 1.4rem;
}

.blog_item_sub{
    margin-top: 2.4rem;
}

.blog_item_date {
    font-size: 1.5rem;
}

.blog_item_cat{
    font-size: 1.5rem;
    margin-left: 1.2rem;
}

.blog_item_text{
    margin-top: 2rem;
    font-size: 1.3rem;
    line-height: 1.75;
    text-align: justify;
}

.blog_post_header{
    margin-bottom: 4.8rem;
}

.blog_post_title{
    font-size: 3.4rem;
    line-height: 1.4;
    margin-bottom: 2rem;
}

.blog_post_date{
    font-size: 1.6rem;
}

.blog_post_container{
    margin-top: 5rem;
    margin-bottom: 12rem;
}


/*ページャー（WP-PageNavi）*/

.wp-pagenavi {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.wp-pagenavi a,
.wp-pagenavi span {
    font-size: 2rem;
    margin: 0 .8rem;
    color: #fff;
    padding: 0 .8rem .8rem;
}

.wp-pagenavi a:hover{
    color: #0028cd;
}

.wp-pagenavi span.current {
    border-bottom: 1px solid #fff;
}

.wp-pagenavi span.extend {
    padding-left: 0;
    padding-right: 0;
}

.wp-pagenavi .previouspostslink{
    margin-right: 1.4rem;
}

.wp-pagenavi .nextpostslink{
    margin-left: 1.4rem;
}

/* --- 404 --- */

.error_intro_container{
    margin: 10rem 0;
}

.error_intro_title {
    font-size: 3.2rem;
    line-height: 1.5;
    text-align: center;
}

.no_article_text{
    font-size: 1.8rem;
    line-height: 1.5;
}


/*----------------------------------------------------

PCのみ

----------------------------------------------------*/

@media screen and (min-width: 768px) {
    .display_sp {
        display: none !important;
    }
}

@media screen and (max-width: 1299px) and (min-width: 1040px) {
    html {
        font-size: 58%;
    }
}


@media screen and (max-width: 1039px) and (min-width: 768px) {
    html {
        font-size: 54%;
    }
    .wrapper {
        width: 88%;
    }

}

/*----------------------------------------------------

スマートフォンのみ

----------------------------------------------------*/


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

    body{
        background-size: 10rem;
    }

    .wrapper {
        width: 100%;
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .display_pc {
        display: none !important;
    }

    .text_01{
        font-size: 1.4rem;
        line-height: 1.8;
    }

    /*リンク*/
    .link_box{
        height: 5rem;
    }

    /* ヘッダー
    ----------------------------------------------------*/
    
    .header_logo{
        top: 1.4rem;
        left: 2rem;
        width: 11rem;
    }

    .drawer-hamburger {
        position: fixed;
        top: 0;
        right: 0;
        width: 5.5rem;
        height: 5.5rem;
        padding: 1.2rem 1.5rem;
    }

    .drawer-hamburger-icon {
        height: 2px;
    }

    .drawer-hamburger-icon:after,
    .drawer-hamburger-icon:before {
        height: 2px;
    }

    .drawer-hamburger-icon:before {
        top: -.8rem !important;
    }

    .drawer-hamburger-icon:after {
        top: .8rem !important;
    }

    .drawer_inner {
        padding-top: 7.2rem;
        padding-bottom: 4rem;
    }

    .drawer_logo{
        width: 60%;
        padding-bottom: 2.8rem;
    }

    .drawer_nav{
        font-size: 2.2rem;
        padding-bottom: 4rem;
    }

    .drawer_nav .menu-item + .menu-item{
        padding-top: 2.8rem;
    }

    .drawer_ig{
        width: 13.2rem;
        margin: 0 auto;
    }



    /* トップページ
    ----------------------------------------------------*/

    .main_logo a{
        width: 100%;
    }

    /*.top_intro_container*/

    .top_intro_text_container{
        padding-top: 6.6rem;
        padding-bottom: 5.2rem;
    }

    .top_intro_text + .top_intro_text{
        padding-top: 2rem;
    }

    .top_intro_flow_container{
        height: 14rem;
        margin-bottom: 1rem;
    }

    .top_intro_flow_text{
        font-size: 12rem;
    }    

    /*.top_intro_item_container*/

    .top_intro_item_container{
        margin-bottom: 10rem;
    }

    .top_intro_item_img{
        width: 100%;
        margin-left: 12%;
    }

    .steps{
        width: 88%;
        margin: auto;
    }

    .top_intro_item_body{
        padding-top: 4.2rem;
        width: 100%;
    }

    .top_intro_item_text + .top_intro_item_text {
        padding-top: 2rem;
    }

    .top_intro_item_link{
        width: 21rem;
        font-size: 1.3rem;
        margin: 5rem auto 0;
    }

    .top_intro_item_link img{
        width: 1.6rem;
        margin-left: 2rem;
    }

    /**/

    .top_intro_illust{
        width: 72%;
        margin: 0 auto 7.8rem;
    }

    /*.top_about_container*/
    .top_about_container{
        padding-bottom: 12rem;
    }

    .top_about_inner + .top_about_inner{
        margin-top: 8.6rem;
    }

    .top_about_inner:nth-child(odd){
        flex-direction: column;
    }

    .top_about_inner:nth-child(even) .top_about_heading{
        text-align: left;
    }

    .top_about_slider{
        width: 100%;
    }

    .top_about_body{
        width: 100%;
        padding-top: 2.4rem;
    }

    .top_about_heading{
        font-size: 5rem;
        padding-bottom: 1.8rem;
    }

    .top_about_inner:nth-child(odd) .top_about_heading{
        text-align: left;
    }

    .top_about_text{
        font-size: 1.3rem;
        line-height: 1.9;
    }

    /*.top_creator_container*/
    .top_creator_heading{
        font-size: 8rem;
        padding-bottom: 3.6rem;
    }

    .top_creator_text{
        text-align: justify;
        /*        padding-bottom: 6rem;*/
    }

    .top_creator_text + .top_creator_text{
        padding-top: 2rem;
    }

    .top_creator_link_container{
        padding-top: 5rem;
        flex-direction: column;
    }

    .top_creator_link{
        width: 21rem;
        margin-left: auto;
        margin-right: auto;
        font-size: 1.3rem;
    }

    .top_creator_link:first-child{
        font-size: 1.2rem;
    }

    .top_creator_link + .top_creator_link{
        margin-left: auto;
        margin-right: auto;
        margin-top: 2.2rem;
    }

    .top_creator_link img{
        width: 1.3rem;
        margin-left: 1.8rem;
    }

    /*モーダル*/

    .md-contents{
        width: calc(100% - 4.8rem);
    }

    .md-inner{
        padding: 6rem 2.4rem;
    }

    .md-xmark{
        top: 3.2rem;
        right: 1.6rem;
        width: 2.8rem;
        height: 3.6rem;
    }

    .creator_profile_img{
        width: 66%;
        padding-bottom: 3.6rem;
    }

    .creator_profile_position{
        font-size: 2.8rem;
        padding-bottom: 2.4rem;
    }

    .creator_profile_name_en{
        font-size: 1.8rem;
        padding-bottom: 3.2rem;
    }

    .creator_profile_name_jp{
        font-size: 1.4rem;
        padding-bottom: 1.2rem;
    }

    .creator_profile_text{
        font-size: 1.3rem;
    }

    .creator_profile_text + .creator_profile_text {
        padding-top: 1.6rem;
    }

    .creator_profile_link_container{
        font-size: 1.4rem;
        padding-top: 5rem;
    }

    .creator_profile_link_heading{
        padding-bottom: 4rem;
    }

    .creator_profile_link_heading::after{
        bottom: 1.2rem;
    }

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

    .creator_profile_link + .creator_profile_link{
        padding-left: 0;
        padding-top: 1.6rem;
    }

    /* フッター
    ----------------------------------------------------*/

    .footer_container{
        margin-top: 8.4rem;
        padding-top: 6rem;
        padding-bottom: 3.4rem;
    }

    .footer_logo{
        width: 54%;
        margin-bottom: 4rem;
    }

    .footer_nav{
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .footer_nav .nav_item + .nav_item{
        padding-left: .8rem;
    }

    .footer_ig{
        width: 13.2rem;
        margin: 0 auto 5.4rem;
    }

    .footer_copyright{
        font-size: 1rem;
    }

    /* 下層ページ
    ----------------------------------------------------*/

    body:not(.home) .main_container{
        padding-top: 10rem;
    }
    
    /* --- 固定ページ --- */

    .page_main_header{
        margin-bottom: 6rem;
    }

    .page_main_heading{
        font-size: 2.4rem;
        margin-bottom: 3.6rem;
    }

    .post_body * + * {
        margin-top: 2.4rem;
    }

    .post_body figure{
        margin-top: 3.6rem;
        margin-bottom: 3.6rem;
    }

    .blog_post_body h2{
        font-size: 2rem;
        margin-top: 3.6rem;
        margin-bottom: 3rem;
    }

    .post_body h3 {
        font-size: 1.8rem;
        margin-top: 3.6rem;
    }

    .post_body hr.wp-block-separator{
        margin-top: 3.2rem;
        margin-bottom: 3.2rem;
    }

    .wp-block-image :where(figcaption){
        margin-top: 1rem !important;
    }

    ol.wp-block-list{
        margin-left: 2rem;
    }

    ul.wp-block-list{
        margin-left: 2rem;
    }

    .wp-block-button__link{
        width: 21.6rem !important;
        height: 5.5rem !important;
        font-size: 1.7rem;
    }

    .wp-block-button__link::after {
        width: 7px;
        height: 7px;
    }

    .blog_post_body{
        font-size: 1.4rem;
    }


    /* --- ブログ --- */


    .blog_list{
        margin: 0 ;
    }

    .blog_item {
        width: 100%;
        padding: 0 0 3.6rem;
    }

    .blog_item_title {
        font-size: 1.8rem;
        margin-top: 1.2rem;
    }

    .blog_item_sub{
        margin-top: 2.2rem;
    }

    .blog_item_date {
        font-size: 1.3rem;
    }

    .blog_item_cat{
        font-size: 1.3rem;
        margin-left: .8rem;
    }

    .blog_item_text{
        margin-top: 1.6rem;
    }

    .blog_post_header{
        margin-bottom: 4rem;
    }

    .blog_post_title{
        font-size: 2.2rem;
        margin-bottom: 1.8rem;
    }

    .blog_post_date{
        font-size: 1.4rem;
    }

    .blog_post_container{
        margin-top: 0;
        margin-bottom: 8rem;
    }

    /*ページャー（WP-PageNavi）*/

    .wp-pagenavi {
        margin-top: 3rem;
    }

    .wp-pagenavi a,
    .wp-pagenavi span {
        font-size: 1.8rem;
        margin: 0 .7rem;
        padding: 0 .8rem .6rem;
    }

    .wp-pagenavi .previouspostslink{
        margin-right: .8rem;
    }

    .wp-pagenavi .nextpostslink{
        margin-left: .8rem;
    }

    /* --- 404 --- */

    .error_intro_container{
        margin: 8rem 0;
    }

    .error_intro_title {
        font-size: 2.6rem;
    }

    .no_article_text{
        font-size: 1.6rem;
    }

}

@media print,
    screen and (max-width: 320px) {
        html {
            font-size: 56%;
        }
}