@charset "utf-8";

html {
    font-size: 62.5%;
    min-width: 1000px;
}
body {
    font-family: noto-sans-cjk-jp, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1.4rem;
    line-height: 1;
    min-width: 1000px;
    word-break: break-all;
}

a {
    transition: 0.3s ease;
}
a:hover {
    opacity: 0.7;
}

.sp {
    display: none;
}

.en {
    font-family: sofia-pro, sans-serif;
    font-weight: 900;
    font-style: normal;
}

.inner {
    max-width: 1200px;
    margin: auto;
}

/* Title */
.top_ttl01 {
    color: #fff;
}
.top_ttl01 h2 {
    font-size: 1.8rem;
    letter-spacing: 0.3em;
}
.top_ttl01 h2 span {
    font-size: 10rem;
    line-height: 0.9;
    letter-spacing: 0;
    display: block;
    margin: 30px 0 0;
}
.top_ttl01 h2 span:first-letter {
    color: #b91c22;
}
.top_ttl01 h2::after {
    content: '';
    display: block;
    width: 160px;
    height: 4px;
    background: #b91c22;
    margin: 55px 0 50px;
}
.top_ttl01 h3 {
    font-size: 3rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    margin: 0 0 40px;
}
.top_ttl01 p {
    font-size: 1.4rem;
    font-weight: bold;
    line-height: 2.4;
}

.top_ttl02 {
    color: #fff;
}
.top_ttl02 h2 {
    font-size: 1.8rem;
    letter-spacing: 0.3em;
}
.top_ttl02 h2 span {
    font-size: 8.4rem;
    line-height: 0.9;
    letter-spacing: 0;
    display: block;
    margin: 30px 0 0;
}
.top_ttl02 h2 span:first-letter {
    color: #b91c22;
}
.top_ttl02 a {
    display: inline-block;
    margin: 45px 0 0;
    color: #fff;
    font-size: 1.4rem;
    letter-spacing: 0.2em;
}
.top_ttl02 a span {
    background: url(../img/common/arrow01.png) no-repeat right center;
    background-size: 32px 6px;
    display: inline-block;
    padding: 0 50px 0 0;
}

.top_ttl03 {
    color: #fff;
}
.top_ttl03 h2 {
    font-size: 1.8rem;
    letter-spacing: 0.3em;
}
.top_ttl03 h2 span {
    font-size: 8.4rem;
    line-height: 0.9;
    letter-spacing: 0;
    display: block;
    margin: 30px 0 0;
}
.top_ttl03 h2 span:first-letter {
    color: #b91c22;
}

.top_ttl04 {
    color: #fff;
}
.top_ttl04 h2 {
    font-size: 1.8rem;
    letter-spacing: 0.3em;
}
.top_ttl04 h2 span {
    font-size: 12rem;
    line-height: 0.9;
    letter-spacing: 0;
    display: block;
    margin: 30px 0 0;
}
.top_ttl04 h2 span:first-letter {
    color: #b91c22;
}

.ttl_bk {
    color: #000;
}

/* button */
.more_btn01 {
    background: url(../img/common/arrow01.png) no-repeat right 20px center #b91c22;
    background-size: 32px 6px;
    color: #fff;
    font-size: 1.4rem;
    font-weight: bold;
    letter-spacing: 0.2em;
    display: inline-block;
    width: 260px;
    padding: 33px 0;
    text-align: center;
}
.more_btn02 a {
    background: url(../img/common/arrow01.png) no-repeat right 20px center #b91c22;
    background-size: 32px 6px;
    color: #fff;
    font-size: 1.4rem;
    font-weight: bold;
    letter-spacing: 0.2em;
    display: inline-block;
    width: 260px;
    padding: 33px 0;
    text-align: center;
}
.btn_box {
    text-align: center;
    margin: 80px 0;
}
.btn_box:last-child {
    margin-bottom: 0;
}
.btn_box a {
    margin-top: 40px;
}
.btn_box p {
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.6;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    min-width: 1000px;
    z-index: 102;
    transition: 0.3s ease;
    display: flex;
    justify-content: space-between;
}
header.fixed {
    background: #000;
}
header .logo {
    padding: 27px 0 0 27px;
    z-index: 2;
    width: 300px;
    transition: 0.3s ease;
}
header.fixed .logo {
    padding: 20px 0 0 27px;
    width: 250px;
}
header .header_btn {
    display: flex;
}
header #sp_menu {
    background: #000;
    display: block;
    position: relative;
    width: 110px;
    height: 110px;
    z-index: 102;
}
header #sp_menu::before {
    content: '';
    background: url(../img/common/open.png) no-repeat;
    background-size: contain;
    position: absolute;
    display: block;
    width: 40px;
    height: 38px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.3s ease;
}
header.clicked #sp_menu::before {
    transform: translate(-50%, -50%) scale(0);
}
header #sp_menu::after {
    content: '';
    background: url(../img/common/close.png) no-repeat;
    background-size: contain;
    position: absolute;
    display: block;
    width: 40px;
    height: 38px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: 0.3s ease;
}
header.clicked #sp_menu::after {
    transform: translate(-50%, -50%) scale(1);
}
header .contact_btn01 {
    position: relative;
    width: 200px;
    height: 110px;
    z-index: 2;
}
header .contact_btn01 a {
    background: #b91c22;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #ffffff;
    text-align: center;
    font-size: 1.4rem;
    letter-spacing: 0.2em;
}

#g_nav {
    background: #000;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 101;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    box-sizing: border-box;
    transition: 0.5s ease;
    visibility: hidden;
    transform: scale(0.8);
    opacity: 0;
}
#g_nav.open {
    transform: scale(1);
    visibility: visible;
    opacity: 1;
}
#g_nav .nav_box {
    width: 80%;
    max-width: 1000px;
    display: flex;
    justify-content: space-between;
}
#g_nav .nav_box .nav_item ul li a {
    color: #fff;
    font-size: 4rem;
    display: inline-block;
    margin: 20px 0;
}
#g_nav .nav_box .nav_item ul li a small {
    font-size: 2.4rem;
}
#g_nav .nav_btn {
    margin: 70px 0 0;
}
#g_nav .nav_btn a {
    max-width: 280px;
    display: block;
    color: #fff;
    font-size: 1.6rem;
    font-weight: bold;
    letter-spacing: 0.1em;
    padding: 30px 0;
    margin: 0 0 25px;
    text-align: center;
}
#g_nav .nav_btn a.nav_btn01 {
    background: url(../img/common/arrow01.png) no-repeat right 20px center #b91c22;
    background-size: 24px 6px;
    color: #333333;
}
#g_nav .nav_btn a.nav_btn02 {
    background: url(../img/common/arrow01.png) no-repeat right 20px center #b91c22;
    background-size: 24px 6px;
}
#g_nav .copy {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 40px;
    max-width: 1200px;
    margin: auto;
    color: #fff;
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    text-align: right;
    padding: 0 20px;
}

/*  */
#cv {
    background: #141414;
    background-size: cover;
    padding: 160px 20px;
    text-align: center;
}
#cv h2 {
    text-align: center;
    color: #fff;
    letter-spacing: 0.3em;
    font-size: 1.8rem;
    margin: 0 0 80px;
}
#cv h2 span {
    display: block;
    font-size: 8.4rem;
    letter-spacing: 0;
    margin: 10px 0 0;
}
#cv ul li {
    display: inline-block;
    width: 100%;
    max-width: 280px;
    margin: 0 10px;
}
#cv ul li a {
    display: block;
    color: #fff;
    font-size: 1.6rem;
    font-weight: bold;
    letter-spacing: 0.1em;
    padding: 30px 0;
}
#cv ul li.cv_btn01 a {
    background: url(../img/common/next.png) no-repeat right 20px center #fff;
    background-size: 24px 6px;
    color: #000;
}
#cv ul li.cv_btn02 a {
    background: url(../img/common/arrow01.png) no-repeat right 20px center #b91c22;
    background-size: 24px 6px;
}

footer {
    background: #000;
    padding: 100px 20px;
}
footer .inner {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}
footer .ft_item01 .logo {
    display: block;
    width: 250px;
    margin: 0 0 30px;
}
footer .ft_item01 p {
    color: #fff;
    margin: 0 0 10px;
    font-size: 1.2rem;
    line-height: 1.8;
    letter-spacing: 0.1em;
}
footer .ft_item01 p:nth-of-type(1) {
    margin: 0 0 20px;
}
footer .ft_item01 p a {
    color: #fff;
}
footer #copy {
    color: #fff;
    font-size: 1.2rem;
    letter-spacing: 0.1em;
}
footer #copy a {
    display: inline-block;
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 20px;
}
footer #top {
    width: 70px;
    position: fixed;
    right: 50px;
    bottom: 50px;
    z-index: 100;
}

/* blog */
#category_wrap {
    background: #fff;
    padding: 120px 20px 135px;
}
#category_wrap .blog_list01 {
    display: flex;
    flex-wrap: wrap;
}
#category_wrap .blog_list01 .blog_item01 {
    width: calc((100% - 60px) / 3);
    margin: 0 0 40px;
}
#category_wrap .blog_list01 .blog_item01:nth-of-type(3n + 2) {
    margin: 0 30px 40px;
}
#category_wrap .blog_list01 .blog_item01 a {
    display: block;
    color: #000;
}
#category_wrap .blog_list01 .blog_item01 img {
    width: 100%;
    height: 235px;
    object-fit: cover;
    object-position: center;
}
#category_wrap .blog_list01 .blog_item01 figcaption {
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 1.4;
    letter-spacing: 0.05em;
    margin: 25px 0 20px;
}
#category_wrap .blog_list01 .blog_item01 p.txt {
    font-size: 1.4rem;
    line-height: 2.2;
    font-weight: bold;
    letter-spacing: 0.08em;
    margin: 0 0 25px;
}
#category_wrap .blog_list01 .blog_item01 p.more {
    text-align: right;
}
#category_wrap .blog_list01 .blog_item01 p.more span {
    background: url(../img/common/next.png) no-repeat right center;
    background-size: 26px 5px;
    display: inline-block;
    font-weight: bold;
    letter-spacing: 0.2em;
    padding: 0 50px 0 0;
}

/* mamber */
#archive_wrap {
    background: #fff;
    padding: 120px 20px 135px;
}
#archive_wrap .member_list01 {
    display: flex;
    flex-wrap: wrap;
}
#archive_wrap .member_item01 {
    width: calc((100% - 60px) / 4);
    position: relative;
    margin: 0 20px 20px 0;
}
#archive_wrap .member_item01:nth-of-type(4n) {
    margin: 0 0 20px;
}
#archive_wrap .member_item01 img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    object-position: center;
}
#archive_wrap .member_item01 .num {
    position: absolute;
    color: #fff;
    left: 25px;
    top: 20px;
    font-size: 4.5rem;
    font-weight: 600;
    font-style: italic;
    letter-spacing: -0.05em;
}
#archive_wrap .member_item01 .detail {
    position: absolute;
    color: #fff;
    left: 30px;
    bottom: 30px;
}
#archive_wrap .member_item01 .detail .position {
    background: #000;
    display: inline-block;
    padding: 5px 18px;
    font-weight: bold;
}
#archive_wrap .member_item01 .detail .name {
    font-size: 2.8rem;
    font-weight: bold;
    letter-spacing: 0.05em;
    margin: 10px 0 6px;
}
#archive_wrap .member_item01 .detail .en_name {
    font-size: 1.4rem;
    letter-spacing: 0.08em;
}

/* result */
#archive_wrap .result_list01 {
    margin: 0 0 0;
}
#archive_wrap .result_list01 .result_item01 {
    background: #141414;
    border-top: solid 1px #fff;
}
#archive_wrap .result_list01 .result_item01 {
    border-top: solid 1px #fff;
}
#archive_wrap .result_list01 .result_item01 a {
    background: url(../img/common/arrow01.png) no-repeat right 50px center;
    background-size: 32px 6px;
    display: flex;
    align-items: center;
    color: #fff;
    padding: 50px 50px;
}
#archive_wrap .result_list01 .result_item01 .date {
    width: 170px;
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: 0.05em;
}
#archive_wrap .result_list01 .result_item01 .result01 {
    width: 80px;
    text-align: center;
}
#archive_wrap .result_list01 .result_item01 .result01 .win {
    width: 24px;
    height: 24px;
    border-radius: 100%;
    background: #fff;
    display: inline-block;
}
#archive_wrap .result_list01 .result_item01 .result01 .lose {
    width: 24px;
    height: 24px;
    border-radius: 100%;
    background: #464646;
    display: inline-block;
}
#archive_wrap .result_list01 .result_item01 .result02 {
    padding: 0 40px 0 20px;
    font-size: 1.7rem;
    font-weight: bold;
    line-height: 1.5;
    letter-spacing: 0.08em;
    width: auto;
    min-width: 280px;
    box-sizing: border-box;
}
#archive_wrap .result_list01 .result_item01 .result03 {
    width: 30%;
    padding: 0 0 0 40px;
    font-size: 1.7rem;
    font-weight: bold;
    line-height: 1.5;
    letter-spacing: 0.08em;
    box-sizing: border-box;
}
#archive_wrap .result_list01 .result_item01 .point {
    display: flex;
    align-items: center;
    margin: -15px 0 0;
}
#archive_wrap .result_list01 .result_item01 .point .point_val {
    font-size: 6rem;
    font-weight: bold;
    min-width: 60px;
    text-align: center;
}
#archive_wrap .result_list01 .result_item01 .point p {
    font-size: 2rem;
    font-style: italic;
    letter-spacing: 0.05em;
    margin: 15px 15px 0;
}

/* pager */
#pager .wp-pagenavi {
    margin: 60px 0 20px;
    text-align: center;
}
#pager .wp-pagenavi a,
#pager .wp-pagenavi span {
    background: #000;
    text-decoration: none;
    border: none;
    padding: 10px 13px;
    margin: 2px;
    color: #fff;
    display: inline-block;
    vertical-align: middle;
}
#pager .wp-pagenavi a:hover,
#pager .wp-pagenavi span.current {
    background: #b91c22;
    opacity: 1;
}

/* single */
.single_header {
    border-left: solid 6px #b91c22;
    margin: 0 0 60px;
}
.single_header .date {
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 0.1em;
    margin: 0 0 0 35px;
}
.single_header h2 {
    font-size: 3.2rem;
    line-height: 1.4;
    letter-spacing: 0.1em;
    padding: 15px 0 0 35px;
}
.single_box {
    margin: 40px 0 0;
}
.single_box p {
    font-size: 1.6rem;
    line-height: 2;
    letter-spacing: 0.1em;
    margin: 25px 0 0;
}
.single_box h1 {
    color: #fff;
    margin: 45px 0 30px;
    padding: 15px 15px 15px 32px;
    font-size: 2.2rem;
    line-height: 1.4;
    letter-spacing: 0.08em;
    background: #b91c22;
    border-radius: 5px;
    position: relative;
}
.single_box h1::before {
    content: '';
    display: block;
    position: absolute;
    left: 15px;
    top: 15px;
    bottom: 15px;
    width: 4px;
    height: auto;
    background: #fff;
}
.single_box h2 {
    color: #fff;
    margin: 45px 0 30px;
    padding: 15px 15px 15px 32px;
    font-size: 2.2rem;
    line-height: 1.4;
    letter-spacing: 0.08em;
    background: #b91c22;
    border-radius: 5px;
    position: relative;
}
.single_box h2::before {
    content: '';
    display: block;
    position: absolute;
    left: 15px;
    top: 15px;
    bottom: 15px;
    width: 4px;
    height: auto;
    background: #fff;
}
.single_box h3 {
    margin: 45px 0 30px;
    padding: 0 0 0 20px;
    font-size: 2rem;
    line-height: 1.4;
    letter-spacing: 0.08em;
    border-left: solid 4px #b91c22;
}
.single_box h4 {
    margin: 45px 0 30px;
    padding: 0 0 0 35px;
    font-size: 2rem;
    line-height: 1.4;
    letter-spacing: 0.08em;
    position: relative;
}
.single_box h4::before {
    content: '';
    display: block;
    width: 20px;
    height: 3px;
    background: #b91c22;
    position: absolute;
    left: 0;
    top: 15px;
}
.single_box h5 {
    margin: 45px 0 30px;
    padding: 0 0 0 25px;
    font-size: 2rem;
    line-height: 1.4;
    letter-spacing: 0.08em;
    position: relative;
}
.single_box h5::before {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    background: #b91c22;
    position: absolute;
    left: 0;
    top: 10px;
    border-radius: 100%;
}
.single_box h6 {
    margin: 25px 0;
    font-size: 1.6rem;
    line-height: 1.4;
    letter-spacing: 0.08em;
}
.single_box ul {
    margin: 45px 0 25px;
    padding: 25px 25px 25px 45px;
    border: solid 1px #dedede;
    border-radius: 10px;
    list-style: disc;
}
.single_box ol {
    margin: 45px 0 25px;
    padding: 25px 25px 25px 45px;
    border: solid 1px #dedede;
    border-radius: 10px;
}
.single_box ul li,
.single_box ol li {
    font-size: 1.4rem;
    line-height: 1.4;
    letter-spacing: 0.1em;
    margin: 10px 0;
}
.single_box blockquote {
}
.single_box table {
    max-width: 100%;
    margin: 45px 0 25px;
}

@media screen and (max-width: 1300px) {
    .top_ttl01 h2 {
        font-size: 1.4rem;
        letter-spacing: 0.3em;
    }
    .top_ttl01 h2 span {
        font-size: 9rem;
        line-height: 0.9;
        letter-spacing: 0;
        display: block;
        margin: 30px 0 0;
    }
    .top_ttl01 h2 span:first-letter {
        color: #b91c22;
    }
    .top_ttl01 h2::after {
        content: '';
        display: block;
        width: 160px;
        height: 4px;
        background: #b91c22;
        margin: 55px 0 50px;
    }
    .top_ttl01 h3 {
        font-size: 2.2rem;
        font-weight: 500;
        letter-spacing: 0.05em;
        margin: 0 0 40px;
    }
    .top_ttl01 p {
        font-size: 1.4rem;
        font-weight: bold;
        line-height: 2.4;
        padding: 0 0;
    }
}

@media screen and (max-width: 767px) {
    html {
        font-size: 62.5%;
        min-width: 320px;
    }
    body {
        min-width: 320px;
    }

    .sp {
        display: block;
    }
    .pc {
        display: none;
    }

    /* Title */
    .top_ttl01 {
        color: #fff;
    }
    .top_ttl01 h2 {
        font-size: 1.4rem;
        line-height: 2;
        letter-spacing: 0.2em;
    }
    .top_ttl01 h2 span {
        font-size: 14.5vw;
        line-height: 1;
        letter-spacing: 0;
        display: block;
        margin: 20px 0 0;
    }
    .top_ttl01 h2 span:first-letter {
        color: #b91c22;
    }
    .top_ttl01 h2::after {
        width: 35vw;
        height: 0.6vw;
        margin: 8% 0;
    }
    .top_ttl01 h3 {
        font-size: 4.5vw;
        margin: 0 0 40px;
    }
    .top_ttl01 p {
        font-size: 1.3rem;
        font-weight: bold;
        line-height: 2.4;
    }

    .top_ttl02 {
        color: #fff;
    }
    .top_ttl02 h2 {
        font-size: 1.6rem;
        letter-spacing: 0.2em;
    }
    .top_ttl02 h2 span {
        font-size: 13.5vw;
        line-height: 1;
        letter-spacing: 0;
        display: block;
        margin: 25px 0 0;
    }
    .top_ttl02 h2 span:first-letter {
        color: #b91c22;
    }
    .top_ttl02 a {
        display: inline-block;
        margin: 35px 0 0;
        color: #fff;
        font-size: 1.4rem;
        letter-spacing: 0.2em;
    }
    .top_ttl02 a span {
        background: url(../img/common/arrow01.png) no-repeat right center;
        background-size: 32px 6px;
        display: inline-block;
        padding: 0 50px 0 0;
    }

    .top_ttl03 {
        color: #fff;
    }
    .top_ttl03 h2 {
        font-size: 1.6rem;
        letter-spacing: 0.2em;
    }
    .top_ttl03 h2 span {
        font-size: 14.5vw;
        line-height: 1;
        margin: 25px 0 0;
    }
    .top_ttl03 h2 span:first-letter {
        color: #b91c22;
    }

    .top_ttl04 {
        color: #fff;
    }
    .top_ttl04 h2 {
        font-size: 1.8rem;
        letter-spacing: 0.3em;
    }
    .top_ttl04 h2 span {
        font-size: 14.5vw;
        line-height: 1;
        letter-spacing: 0;
        margin: 25px 0 0;
    }
    .top_ttl04 h2 span:first-letter {
        color: #b91c22;
    }

    .ttl_bk {
        color: #000;
    }

    /* button */
    .more_btn01 {
        background: url(../img/common/arrow01.png) no-repeat right 20px center #b91c22;
        background-size: 32px 6px;
        color: #fff;
        font-size: 1.4rem;
        font-weight: bold;
        letter-spacing: 0.2em;
        display: inline-block;
        width: 100%;
        max-width: 280px;
        padding: 25px 0;
        text-align: center;
    }
    .more_btn02 a {
        background: url(../img/common/arrow01.png) no-repeat right 20px center #b91c22;
        background-size: 32px 6px;
        color: #fff;
        font-size: 1.4rem;
        font-weight: bold;
        letter-spacing: 0.2em;
        display: inline-block;
        width: 100%;
        max-width: 280px;
        padding: 25px 0;
        text-align: center;
    }

    header {
        min-width: 0;
    }
    header.fixed {
        background: #000;
    }
    header .logo,
    header.fixed .logo {
        padding: 15px 0 15px 2%;
        z-index: 2;
        width: 41%;
    }
    header .header_btn {
        display: flex;
    }
    header #sp_menu {
        background: #000;
        display: block;
        position: relative;
        width: 92px;
        height: auto;
        z-index: 102;
    }
    header #sp_menu::before {
        content: '';
        background: url(../img/common/open.png) no-repeat;
        background-size: contain;
        position: absolute;
        display: block;
        width: 30px;
        height: 28px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        transition: 0.3s ease;
    }
    header.clicked #sp_menu::before {
        transform: translate(-50%, -50%) scale(0);
    }
    header #sp_menu::after {
        content: '';
        background: url(../img/common/close.png) no-repeat;
        background-size: contain;
        position: absolute;
        display: block;
        width: 30px;
        height: 28px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(0);
        transition: 0.3s ease;
    }
    header.clicked #sp_menu::after {
        transform: translate(-50%, -50%) scale(1);
    }
    header .contact_btn01 {
        position: relative;
        width: 110px;
        height: auto;
        z-index: 2;
    }
    header .contact_btn01 a {
        font-size: 1.2rem;
        letter-spacing: 0.2em;
    }

    #g_nav {
        flex-direction: column;
        padding: 0 5%;
    }
    #g_nav .nav_box {
        width: 90%;
        max-width: 1000px;
        display: block;
    }
    #g_nav .nav_box .nav_item ul li a {
        color: #fff;
        font-size: 1.8rem;
        display: inline-block;
        margin: 0 0 20px;
    }
    #g_nav .nav_box .nav_item ul li a small {
        font-size: 1.4rem;
    }
    #g_nav .nav_btn {
        margin: 20px 0 0;
    }
    #g_nav .nav_btn a {
        max-width: 100%;
        font-size: 1.4rem;
        padding: 20px 0;
        margin: 0 0 10px;
    }
    #g_nav .nav_btn a.nav_btn01 {
        background: url(../img/common/arrow01.png) no-repeat right 20px center #b91c22;
        background-size: 24px 6px;
    }
    #g_nav .nav_btn a.nav_btn02 {
        background: url(../img/common/arrow01.png) no-repeat right 20px center #b91c22;
        background-size: 24px 6px;
    }
    #g_nav .copy {
        position: static;
        font-size: 1rem;
        letter-spacing: 0.1em;
        text-align: center;
        padding: 0 5%;
        margin: 20px 0 0;
    }

    /* cv */
    #cv {
        padding: 80px 5%;
    }
    #cv h2 {
        letter-spacing: 0.2em;
        font-size: 1.6rem;
        margin: 0 0 40px;
    }
    #cv h2 span {
        font-size: 14.5vw;
        margin: 10px 0 0;
    }
    #cv ul li {
        display: inline-block;
        width: 100%;
        max-width: 280px;
        margin: 0 10px;
    }
    #cv ul li a {
        display: block;
        color: #fff;
        font-size: 1.6rem;
        font-weight: bold;
        letter-spacing: 0.1em;
        padding: 30px 0;
    }
    #cv ul li.cv_btn01 a {
        background: url(../img/common/next.png) no-repeat right 20px center #000;
        background-size: 24px 6px;
        background-color: #fff;
    }
    #cv ul li.cv_btn02 a {
        background: url(../img/common/arrow01.png) no-repeat right 20px center #b91c22;
        background-size: 24px 6px;
    }

    footer {
        padding: 80px 5% 40px;
        text-align: center;
    }
    footer .inner {
        display: block;
    }
    footer .ft_item01 .logo {
        display: block;
        width: 200px;
        margin: 0 auto 30px;
    }
    footer .ft_item01 p {
        color: #fff;
        margin: 0 0 10px;
        font-size: 1.2rem;
        line-height: 1.8;
        letter-spacing: 0.1em;
    }
    footer .ft_item01 p:nth-of-type(1) {
        margin: 0 0 20px;
    }
    footer .ft_item01 p a {
        color: #fff;
    }
    footer #copy {
        color: #fff;
        font-size: 1rem;
        letter-spacing: 0.1em;
        margin: 35px 0 0;
    }
    footer #top {
        width: 40px;
        position: fixed;
        right: 5%;
        bottom: 20px;
    }

    /* blog */
    #category_wrap {
        padding: 80px 5%;
    }
    #category_wrap .blog_list01 {
        display: block;
    }
    #category_wrap .blog_list01 .blog_item01 {
        width: 100%;
        margin: 0 0 35px;
    }
    #category_wrap .blog_list01 .blog_item01:nth-of-type(3n + 2) {
        margin: 0 0 35px;
    }
    #category_wrap .blog_list01 .blog_item01 a {
        display: block;
        color: #000;
    }
    #category_wrap .blog_list01 .blog_item01 img {
        width: 100%;
        height: 55vw;
        object-fit: cover;
        object-position: center;
    }
    #category_wrap .blog_list01 .blog_item01 figcaption {
        font-size: 1.6rem;
        line-height: 1.4;
        letter-spacing: 0.05em;
        margin: 20px 0 10px;
    }
    #category_wrap .blog_list01 .blog_item01 p.txt {
        font-size: 1.3rem;
        line-height: 2;
        font-weight: 500;
    }
    #category_wrap .blog_list01 .blog_item01 p.more {
        text-align: right;
        font-size: 1.2rem;
    }
    #category_wrap .blog_list01 .blog_item01 p.more span {
        background: url(../img/common/next.png) no-repeat right center;
        background-size: 22px 4px;
        padding: 0 35px 0 0;
    }

    /* mamber */
    #archive_wrap {
        padding: 80px 5%;
    }
    #archive_wrap .member_list01 {
        display: flex;
        flex-wrap: wrap;
    }
    #archive_wrap .member_item01 {
        width: calc((100% - 8px) / 2);
        position: relative;
        margin: 0 8px 8px 0;
    }
    #archive_wrap .member_item01:nth-of-type(2n) {
        margin: 0 0 8px 0;
    }
    #archive_wrap .member_item01:nth-of-type(4n) {
        margin: 0 0 8px 0;
    }
    #archive_wrap .member_item01 img {
        width: 100%;
        height: 65vw;
        object-fit: cover;
        object-position: center;
    }
    #archive_wrap .member_item01 .num {
        left: 15px;
        top: 15px;
        font-size: 3.5rem;
    }
    #archive_wrap .member_item01 .detail {
        left: 15px;
        bottom: 15px;
    }
    #archive_wrap .member_item01 .detail .position {
        padding: 5px 18px;
        font-weight: bold;
    }
    #archive_wrap .member_item01 .detail .name {
        font-size: 2rem;
        font-weight: bold;
        letter-spacing: 0.05em;
        margin: 10px 0 6px;
    }
    #archive_wrap .member_item01 .detail .en_name {
        font-size: 1.2rem;
        letter-spacing: 0.08em;
    }

    /* result */
    #archive_wrap .result_list01 {
        margin: 0 0 0;
    }
    #archive_wrap .result_list01 .result_item01 {
        background: #141414;
        border-top: solid 1px #fff;
    }
    #archive_wrap .result_list01 .result_item01 {
        border-top: solid 1px #fff;
    }
    #archive_wrap .result_list01 .result_item01 a {
        background: url(../img/common/arrow01.png) no-repeat right 15px top 20px;
        background-size: 14px 4px;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
        color: #fff;
        padding: 20px 5px;
    }
    #archive_wrap .result_list01 .result_item01 .date {
        width: 100%;
        text-align: left;
        font-size: 1.4rem;
        font-weight: bold;
        letter-spacing: 0.05em;
        margin: 0 0 10px 7px;
    }
    #archive_wrap .result_list01 .result_item01 .result01 {
        width: auto;
        text-align: center;
        margin: 2px 5px 0 0;
    }
    #archive_wrap .result_list01 .result_item01 .result01 .win {
        width: 14px;
        height: 14px;
    }
    #archive_wrap .result_list01 .result_item01 .result01 .lose {
        width: 14px;
        height: 14px;
    }
    #archive_wrap .result_list01 .result_item01 .result02 {
        padding: 0 0 0;
        font-size: 1.2rem;
        font-weight: bold;
        line-height: 1.5;
        letter-spacing: 0.08em;
        min-width: 0;
    }
    #archive_wrap .result_list01 .result_item01 .result03 {
        padding: 0 0 0;
        font-size: 1.2rem;
        font-weight: bold;
        line-height: 1.5;
        letter-spacing: 0.08em;
    }
    #archive_wrap .result_list01 .result_item01 .point {
        display: flex;
        align-items: center;
        margin: -5px 10px 0;
    }
    #archive_wrap .result_list01 .result_item01 .point .point_val {
        font-size: 3rem;
        font-weight: bold;
        min-width: 0;
    }
    #archive_wrap .result_list01 .result_item01 .point p {
        font-size: 1.6rem;
        font-style: italic;
        letter-spacing: 0.05em;
        margin: 15px 5px 0;
    }

    /* single common */
    .single_wrap {
        margin: auto;
        display: block;
    }
    .single_content {
        width: 100%;
        margin-bottom: 20vw;
    }
    .single_header {
        border-left: solid 4px #b91c22;
        margin: 0 0 40px;
    }
    .single_header .date {
        font-size: 1.4rem;
        font-weight: bold;
        letter-spacing: 0.1em;
        margin: 0 0 0 15px;
    }
    .single_header h2 {
        font-size: 2rem;
        line-height: 1.4;
        letter-spacing: 0.1em;
        padding: 10px 0 0 15px;
    }
    .single_box {
        margin: 40px 0 0;
    }
    .single_box p {
        font-size: 1.4rem;
        line-height: 2;
    }
    .single_box h1 {
        margin: 40px 0 25px;
        font-size: 2rem;
    }
    .single_box h2 {
        margin: 40px 0 25px;
        font-size: 2rem;
        line-height: 1.4;
    }
    .single_box h3 {
        margin: 40px 0 25px;
        font-size: 1.8rem;
        line-height: 1.4;
        padding: 0 0 5px 15px;
    }
    .single_box h4 {
        margin: 40px 0 25px;
        font-size: 1.8rem;
        line-height: 1.4;
    }
    .single_box h5 {
        margin: 40px 0 25px;
        font-size: 1.8rem;
        line-height: 1.4;
    }
    .single_box h6 {
        font-size: 1.6rem;
        line-height: 1.4;
    }
    .single_box ul {
        margin: 45px 0 25px;
        padding: 25px 25px 25px 45px;
        border: solid 1px #dedede;
        border-radius: 10px;
        list-style: disc;
    }
    .single_box ol {
        margin: 45px 0 25px;
        padding: 25px 25px 25px 45px;
        border: solid 1px #dedede;
        border-radius: 10px;
    }
    .single_box ul li,
    .single_box ol li {
        font-size: 1.4rem;
        line-height: 1.4;
        letter-spacing: 0.1em;
        margin: 10px 0;
    }
    .single_box blockquote {
    }
    .single_box table {
        max-width: 100%;
        margin: 45px 0 25px;
    }
}
