@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;800&family=Prompt:wght@500&display=swap');
/*-------------------------------------------------------*/
/*基本*/
/*-------------------------------------------------------*/
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    padding: 0;
    color: #FFFFFF;
    font-family: "Segoe UI", "Helvetica Neue", "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Meiryo, "メイリオ", sans-serif;
    background-color: #000000;
}
a {
    color: #FFFFFF;
    text-decoration: none;
}
a:link {
    color: #FFFFFF;
}
a:visited {
    color: #EEEEEE;
}
a:hover {
    color: #FFFFFF;
}
a:active {
    color: #FFFFFF;
}
img {
    vertical-align: top;
}
p {
    font-size: 14px;
    color: #FFFFFF;
    margin-bottom: 1em;
}
h2 {
    font-size: 36px;
    font-weight: bold;
}
h3 {
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 0.8em;
}
h4 {
    font-size: 18px;
    font-weight: bold;
    margin: 0.5em 0;
}
.border_top {
    border-top: #333333 solid 3px;
}
@media screen and (max-width: 767px) {
    p {
        font-size: 13px;
    }
    h2 {
        font-size: 28px;
    }
    h3 {
        font-size: 20px;
        margin-bottom: 0.5em;
    }
    h4 {
        font-size: 18px;
    }
}
/*********************************************************/
/*共通*/
/*********************************************************/
.inner_1000 {
    width: 100%;
    max-width: 1000px;
    margin: 30px auto;
}
.box_flex {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -30px;
}
.col3 {
    display: block;
    width: 33.3334%;
    padding: 0 30px;
}
.col2 {
    display: block;
    width: 50%;
    padding: 0 30px;
}
.col1 {
    display: block;
    width: 100%;
    padding: 0 30px;
}
.linklist_box .box_flex {
    margin: 0 -10px !important;
}
.linklist_box .col3 {
    padding: 10px !important;
}
.btn_box {
    width: 100%;
    padding: 50px 0;
    text-align: center;
}
.btn_box a {
    display: block;
    width: 50%;
    padding: 22px;
    margin: 0 auto;
    font-size: 22px;
    font-weight: bold;
    border: #FFFFFF solid 3px;
    border-radius: 8px;
    line-height: 1;
}
.btn_border a {
    display: block;
    width: 100%;
    height: 100%;
    padding: 20px;
    font-size: 18px;
    border: #FFFFFF solid 2px;
    border-radius: 8px;
}
.txt_box {
    padding: 30px 0;
}
.t18, .t18 p {
    font-size: 18px;
    line-height: 1.6em;
}
.t11, .t11 p {
    font-size: 11px;
}
.t_center {
    text-align: center;
}
.t_right {
    text-align: right;
}
@media screen and (max-width: 767px) {
    .inner_1000 {
        max-width: 767px;
        margin: 20px auto;
    }
    .box_flex {
        display: block;
        flex-wrap: nowrap;
        margin: 0;
    }
    .col1, .col2, .col3 {
        width: 100%;
        padding: 0;
    }
    .linklist_box .col3 {
        padding: 5px 10px !important;
    }
    .btn_box {
        padding: 30px 0;
    }
    .btn_box a {
        width: 80%;
        padding: 16px;
        font-size: 16px;
        border: #FFFFFF solid 2px;
    }
    .btn_border a {
        padding: 10px;
        font-size: 16px;
    }
    .txt_box {
        padding: 30px 20px;
    }
    .t18, .t18 p {
        font-size: 14px;
    }
}
/*-------------------------------------------------------*/
/*ヘッダ*/
/*-------------------------------------------------------*/
header {
    position: fixed;
    top: 0;
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 85px;
    padding: 0 20px;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 99999;
}
.header_logo {
    width: 220px;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
}
@media screen and (max-width: 767px) {
    header {
        position: static;
        top: 0;
        height: 60px;
        padding: 0 5px;
    }
    .header_logo {
        width: 160px;
    }
}
/*-------------------------------------------------------*/
/*ナビ*/
/*-------------------------------------------------------*/
.navi_box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.navi_box ul {
    display: flex;
    flex-wrap: wrap;
}
.navi_box li a {
    display: block;
    padding: 0 14px;
    font-size: 20px;
}
.hamburger-menu {
    display: none;
}
@media screen and (max-width: 767px) {
    .navi_box {
        display: none;
        align-content: flex-start;
        position: absolute;
        top: 60px;
        width: 100%;
        z-index: 9999;
        background-color: rgba(113, 0, 0, 0.6);
    }
    .navi_box ul {
        display: block;
    }
    .navi_box__list {
        text-align: center;
    }
    .navi_box__list-item {
        border-bottom: solid 1px #000000;
    }
    .navi_box__list-item:first-child {
        border-top: solid 1px #000000;
    }
    .navi_box li a {
        padding: 1em 0;
    }
    .navi_box__link {
        color: #fff;
        font-weight: 700;
        text-decoration: none;
        display: block;
        padding: 24px 0;
        transition: .5s;
    }
    .hamburger-menu {
        display: block;
        width: 50px;
        height: 50px;
        position: relative;
        border: none;
        background: transparent;
        appearance: none;
        padding: 0;
        cursor: pointer;
    }
    .hamburger-menu__bar {
        display: inline-block;
        width: 44%;
        height: 2px;
        background: #CCCCCC;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        transition: .5s;
    }
    .hamburger-menu__bar:first-child {
        top: 16px;
    }
    .hamburger-menu__bar:nth-child(2) {
        top: 24px;
    }
    .hamburger-menu__bar:last-child {
        top: 32px;
    }
    .hamburger-menu--open .hamburger-menu__bar {
        top: 50%;
    }
    .hamburger-menu--open .hamburger-menu__bar:first-child {
        transform: translateX(-50%) translateY(-50%) rotate(45deg);
    }
    .hamburger-menu--open .hamburger-menu__bar:last-child {
        transform: translateX(-50%) translateY(-50%) rotate(-45deg);
    }
    .hamburger-menu--open .hamburger-menu__bar:nth-child(2) {
        display: none;
    }
}
/*-------------------------------------------------------*/
.slick-dots {
    bottom: 0px !important;
}
.slick-dots li button:before {
    color: #FFFFFF !important;
}
.slick-dotted.slick-slider {
    margin: 0 !important;
}
/*-------------------------------------------------------*/
/*アコーディオン*/
/*-------------------------------------------------------*/
.accordion {
    padding: 25px 0 0;
}
.toggle {
    display: none;
}
.linklist_label {
    padding: 0.8em;
    margin: 20px 0;
    display: block;
    text-align: center;
    border: #FFFFFF solid 3px;
}
.linklist_label span {
    font-size: 30px;
    font-weight: 500;
    color: #FFFFFF;
    line-height: 1;
}
.linklist_label span::after { /*タイトル横の矢印*/
    content: "";
    display: inline-block;
    width: 30px;
    height: 30px;
    background: url("../images/arrow.png") no-repeat center 11px;
    background-size: 26px auto;
    transform: rotate(0deg);
}
.linklist_label, .linklist_box {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    transition: all 0.3s;
}
.linklist_box { /*本文*/
    height: 0;
    margin-bottom: 10px;
    padding: 0;
    overflow: hidden;
}
.toggle:checked + .linklist_label + .linklist_box { /*開閉時*/
    height: auto;
    padding: 20px 0;
    transition: all .3s;
}
.toggle:checked + .linklist_label span::after {
    transform: rotate(-180deg) !important;
    background-position: center 3px;
}
@media screen and (max-width: 767px) {
    .accordion {
        padding: 0px 30px;
    }
    .linklist_label {
        margin: 5px 0;
    }
    .linklist_box { /*本文*/
        margin: 0;
    }
    .linklist_label span {
        font-size: 20px;
    }
    .linklist_label span::after { /*タイトル横の矢印*/
        content: "";
        width: 20px;
        height: 20px;
        background: url("../images/arrow.png") no-repeat center 6px;
        background-size: 20px auto;
    }
    .toggle:checked + .linklist_label span::after {
        transform: rotate(-180deg) !important;
        background-position: center 1px;
    }
}
/*-------------------------------------------------------*/
/*モーダルウィンドウ*/
/*-------------------------------------------------------*/
.modal {
    display: none;
    height: 100vh;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 99999;
}
.modal_bg {
    background: rgba(0, 0, 0, 0.8);
    height: 100vh;
    position: absolute;
    width: 100%;
}
.modal_content {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 68%;
    transform: translate(-50%, -50%);
    box-sizing: border-box;
}
.modal_content .entrynumber_box {
    display: none;
}
.modal_content .image_box { /* panzoom 画像拡大縮小用 */
    overflow: hidden;
}
.modal_content .control_box {
    position: absolute;
    bottom: 25px;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
    justify-content: center;
}
.modal_content .control_box .zoomin {
    display: block;
    width: 40px;
    height: 40px;
    margin: 5px 0;
    cursor: pointer;
    background: url("../img/pc_btn_plus.png") no-repeat;
    background-size: contain;
}
.modal_content .control_box .zoomout {
    display: block;
    width: 40px;
    height: 40px;
    margin: 5px 0;
    cursor: pointer;
    background: url("../img/pc_btn_minus.png") no-repeat;
    background-size: contain;
}
.modal_content .close_btn {
    position: absolute;
    top: -40px;
    right: -40px;
    display: block;
    width: 36px;
    height: 36px;
    cursor: pointer;
    background: url("../img/pc_btn_close.png") no-repeat;
    background-size: contain;
}
.modal_content .close_btn_sp {
    display: none;
}
.designlist_box_last {
    padding-bottom: 84px !important;
    margin-top: 60px !important;
}
@media screen and (max-width: 767px) {
    .modal_content {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 100%;
        transform: translate(-50%, -50%);
    }
    .modal_content .entrynumber_box {
        position: absolute;
        bottom: 12px;
        left: 50%;
        transform: translate(-50%, 0);
        display: block;
        width: 70px;
        height: 23px;
        padding: 4px;
        background-color: rgba(0, 0, 0, 0.3);
        border-radius: 11px;
        font-size: 12px;
        color: #FFFFFF;
        line-height: 14px;
    }
    .modal_content .control_box {
        position: absolute;
        bottom: -60px;
        right: inherit;
        left: 50%;
        transform: translate(-50%, 0);
        display: flex;
        flex-direction: row-reverse;
    }
    .modal_content .control_box .zoomin {
        margin: 10px;
    }
    .modal_content .control_box .zoomout {
        margin: 10px;
    }
    .modal_content .close_btn {
        display: none;
    }
    .designlist_box_last {
        padding-bottom: 90px !important;
        margin-top: 50px !important;
    }
    .close_btn_sp {
        position: absolute;
        top: 60px;
        right: 30px;
        display: block;
        width: 30px;
        height: 30px;
        cursor: pointer;
        background: url("../img/pc_btn_close.png") no-repeat;
        background-size: contain;
    }
}
/*********************************************************/
/* トップページ*/
/*********************************************************/
.headcover {
    position: relative;
    width: 100%;
    height: auto;
    margin: 85px auto 0;
    overflow: hidden;
}
.headcover .fade {
    width: 100%;
    height: 100%;
}
.headcover .fade img {
    width: 100%;
}
@media (max-width: 767px) {
    .headcover {
        margin: 0 auto;
    }
    .headcover .fade img {
        width: 100%;
        height: 246px;
        margin: auto;
        max-height: 100%;
        max-width: 100%;
        object-fit: cover;
    }
}
/*-------------------------------------------------------*/
.main_box {
    width: 100%;
    background: url("../images/cobra_bg_b.jpg") no-repeat;
    background-size: contain;
}
.main_box_inner {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}
.cobra_box {
    position: relative;
    width: calc(100% - 400px);
    order: 0;
}
.cobra_box .pic_box {
    padding: 60px 0 0 0;
}
.cobra_box .pic_box img {
    width: 360px;
}
.cobra_box .lead_box {
    position: absolute;
    top: 100px;
    right: 94px;
    width: 310px;
}
.cobra_box .lead_box h1 {
    width: 220px;
    margin-bottom: 30px;
}
.sns_box {
    width: 400px;
    padding: 50px 0 0 20px;
    order: 1;
}
@media (max-width: 767px) {
    .main_box {
        display: block;
    }
    .main_box_inner {
        max-width: 767px;
        margin: 0 auto;
    }
    .cobra_box {
        width: 100%;
        padding: 50px 5px;
        background: none;
        order: 1;
    }
    .cobra_box .pic_box {
        padding: 0 0 0 0;
    }
    .cobra_box .pic_box img {
        width: 66%;
    }
    .cobra_box .lead_box {
        width: 40%;
        position: absolute;
        top: 80px;
        right: 20px;
    }
    .cobra_box .lead_box h1 {
        width: 155px;
    }
    .cobra_box .lead_box p {
        font-size: 11px;
    }
    .sns_box {
        width: 340px;
        padding: 20px 0 0;
        margin: 0 auto;
        order: 0;
    }
}
.work_box01 {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    margin-top: -40px;
}
.work_box01 .pic_box {
    width: 40%;
    order: 2;
}
.work_box01 .lead_box {
    width: 50%;
    order: 1;
    padding: 100px 0 0 0;
}
.work_box01 .lead_box h2 {
    width: 230px;
    margin-bottom: 30px;
}
.work_box02 {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    margin-top: -60px;
}
.work_box02 .pic_box {
    width: 34%;
}
.work_box02 .lead_box {
    width: 64%;
    padding: 100px 0 0 0;
}
.work_box02 .lead_box h2 {
    width: 200px;
    margin-bottom: 30px;
}
@media (max-width: 767px) {
    .work_box01, .work_box02 {
        display: block;
        width: 100%;
        margin-top: 0px;
    }
    .work_box01 .pic_box {
        width: 80%;
        margin: 10px auto;
    }
    .work_box01 .lead_box {
        width: 100%;
        padding: 10px;
    }
    .work_box01 .lead_box h2 {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    .work_box01 .lead_box h2 img {
        width: 180px;
    }
    .work_box01 .lead_box p, .work_box02 .lead_box p {
        font-size: 11px;
    }
    .work_box02 .pic_box {
        width: 64%;
        margin: 50px 0;
    }
    .work_box02 .lead_box {
        width: 40%;
        position: absolute;
        top: 10px;
        right: 20px;
        padding: 0;
    }
    .work_box02 .lead_box h2 {
        width: 140px;
        margin-bottom: 30px;
    }
}
.top_title .title_box {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 125px;
}
.top_title h1 {
    display: block;
    text-align: center;
}
.top_title .title_box h2 img {
    width: 80%;
    height: auto;
}
.work_box_other {
    position: relative;
    display: block;
    width: 100%;
    height: 150px;
    background: url("../images/toppic_others.png") no-repeat top right;
    background-size: 390px auto;
    background-color: #1A1A1A;
}
.work_box_other .title_box {
    display: flex;
    align-items: center;
    height: 150px;
}
.work_box_other .title_box h2 {
    padding-left: 54px;
    font-size: 40px;
    font-weight: bold;
    line-height: 1;
}
@media (max-width: 767px) {
    .top_title .col3 {
        width: 80%;
        padding: 25px 0;
        margin: 0 auto 20px;
    }
    .top_title .title_box {
        height: 100px;
        text-align: center;
    }
    .top_title .lead_box p {
        font-size: 11px;
    }
    .top_title .title_box h2 img {
        width: 76%;
        height: auto;
    }
    .work_box_other {
        width: 80%;
        margin: 0 auto;
        background: url("../images/toppic_others.png") no-repeat top center;
        background-size: cover;
    }
    .work_box_other .title_box {
        justify-content: center;
    }
    .work_box_other .title_box h2 {
        padding-left: 0;
        text-align: center;
        font-size: 30px;
    }
}
/*-------------------------------------------------------*/
.top_vote_menu li a {
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
    justify-content: center;
    width: 420px;
    height: 100px;
    border-radius: 8px;
    cursor: pointer;
}
/*********************************************************/
/* 下層*/
/*********************************************************/
/*ページ名*/
/*-------------------------------------------------------*/
.pagetitle_box {
    padding: 35px 50px;
    margin-top: 85px;
    background-color: #131313;
}
.pagetitle_box h2 {
    font-family: 'Prompt', sans-serif;
    font-size: 36px;
    font-weight: 500;
    color: #FFFFFF;
}
@media screen and (max-width: 767px) {
    .pagetitle_box {
        padding: 15px;
        margin-top: 0px;
    }
    .pagetitle_box h2 {
        font-size: 28px;
    }
}
/*-------------------------------------------------------*/
/*プロフィール*/
/*-------------------------------------------------------*/
.profile_pic {
    text-align: center;
    padding: 30px 0;
}
.profile_txt {
    margin-bottom: 50px;
}
.profile_txt h3 {
    text-align: center;
    margin-bottom: 30px;
}
/*table*/
.profile_table {
    margin: 30px 0;
}
.profile_table h3 {
    padding: 0 0 30px;
}
.profile_table th, .profile_table td {
    padding: 1em;
}
.profile_table tr:nth-child(odd) th {
    border-right: #888888 solid 3px;
}
.profile_table tr:nth-child(even) th {
    border-right: #333333 solid 3px;
}
.profile_table li {
    margin: 2px 0;
}
@media screen and (max-width: 767px) {
    .profile_pic {
        padding: 20px;
    }
    .profile_pic img {
        width: 60%;
    }
    .profile_txt {
        padding: 0 20px;
    }
    .profile_table {
        margin: 20px 5px;
        font-size: 13px;
    }
    .profile_table h3 {
        padding: 0 15px 20px;
    }
    .profile_table th, .profile_table td {
        padding: 15px;
    }
}
/*-------------------------------------------------------*/
/*作品ページ*/
/*-------------------------------------------------------*/
.works_headcover {
    width: 100%;
    height: 700px;
}
.works_headcover .lead_box {
    padding-left: 90px;
}
.works_headcover_cobra {
    background: url("../images/cobra_headcover.jpg") no-repeat top right;
}
.works_headcover_cobra .lead_box {
    width: 54%;
    padding-top: 150px;
}
.works_headcover_cobra .lead_box h1 {
    padding-bottom: 40px;
}
.works_headcover_cobra .lead_box p, .works_headcover_bat .lead_box p {
    font-size: 16px;
    line-height: 1.6em;
}
.works_headcover_bat {
    background: url("../images/bat_headcover.jpg") no-repeat top right;
}
.works_headcover_bat .lead_box {
    width: 54%;
    padding-top: 120px;
}
.works_headcover_bat .lead_box h1 {
    padding-bottom: 30px;
}
.works_headcover_goku {
    position: relative;
    background: url("../images/goku_headcover.jpg") no-repeat top left;
}
.works_headcover_goku .lead_box {
    position: absolute;
    right: 80px;
    top: 200px;
    width: 50%;
}
.works_headcover_goku .lead_box h1 {
    padding-bottom: 30px;
}
.works_headcover_kabuto {
    background: url("../images/kabuto_headcover.jpg") no-repeat top right;
}
.works_headcover_kabuto .lead_box {
    width: 50%;
    padding-top: 150px;
}
.works_headcover_kabuto .lead_box h1 {
    padding-bottom: 30px;
}
.works_headcover_takeru {
    background: url("../images/takeru_headcover.jpg") no-repeat top right;
}
.works_headcover_takeru .lead_box {
    width: 50%;
    padding-top: 150px;
}
.works_headcover_takeru .lead_box h1 {
    padding-bottom: 30px;
}
.works_headcover_gundragon {
    background: url("../images/gundragon_headcover.jpg") no-repeat top right;
}
.works_headcover_gundragon .lead_box {
    width: 50%;
    padding-top: 150px;
}
.works_headcover_gundragon .lead_box h1 {
    padding-bottom: 30px;
}
.others_headcover {
    width: 100%;
    padding: 100px;
    text-align: center;
}
.others_headcover h1 {
    font-size: 40px;
    font-weight: bold;
    padding: 40px;
}
/*------------------*/
.item_box h2 {
    padding-bottom: 40px;
}
.item_box h3 {
    font-size: 20px;
    line-height: 1.2em;
}
.item_box .col1, .item_box .col2 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}
.item_box .item_pic {
    width: 36%;
}
.item_box .item_pic img {
    border: #333333 solid 1px;
}
.item_box .item_txt {
    width: 60%;
}
.item_box .item_txt p, .goods_txt p {
    margin-bottom: 0;
}
.others_item_box .item_pic {
    padding-bottom: 30px;
    text-align: center;
}
.others_item_box .item_pic img {
    height: 360px;
    width: auto;
}
.goods_pic {
    padding-bottom: 10px;
}
.goods_txt p {
    font-size: 14px;
}
.goods_txt a {
    color: #D06F6F;
}
@media screen and (max-width: 767px) {
    .works_headcover {
        width: 100%;
        height: auto;
    }
    .works_headcover .lead_box {
        padding-left: 20px;
    }
    .works_headcover_cobra {
        background: url("../images/cobra_headcover.jpg") no-repeat top right;
        background-size: 164%;
    }
    .works_headcover_cobra .lead_box {
        width: 100%;
        padding: 40vh 20px 20px;
    }
    .works_headcover_cobra .lead_box h1 {
        padding-bottom: 30px;
        text-align: center;
    }
    .works_headcover_cobra .lead_box h1 img {
        width: 70%;
    }
    .works_headcover_cobra .lead_box p, .works_headcover_bat .lead_box p {
        font-size: 14px;
    }
    .works_headcover_bat {
        background: url("../images/bat_headcover.jpg") no-repeat top right;
        background-size: 174%;
    }
    .works_headcover_bat .lead_box {
        width: 100%;
        padding: 44vh 20px 20px;
    }
    .works_headcover_bat .lead_box h1 {
        padding-bottom: 30px;
        text-align: center;
    }
    .works_headcover_bat .lead_box h1 img {
        width: 70%;
    }
    .works_headcover_goku {
        position: relative;
        background: url("../images/goku_headcover.jpg") no-repeat top left;
        background-size: 160%;
    }
    .works_headcover_goku .lead_box {
        position: static;
        width: 100%;
        padding: 44vh 20px 20px;
    }
    .works_headcover_goku .lead_box h1 {
        padding-bottom: 30px;
        text-align: center;
    }
    .works_headcover_kabuto {
        background: url("../images/toppic_kabuto.png") no-repeat top center;
        background-size: auto 490px;
    }
    .works_headcover_kabuto .lead_box {
        width: 100%;
        padding: 510px 20px 20px;
    }
    .works_headcover_kabuto .lead_box h1 {
        padding-bottom: 10px;
        text-align: center;
    }
    .works_headcover_kabuto .lead_box h1 img {
        width: 54%;
    }
    .works_headcover_takeru {
        background: url("../images/toppic_takeru.png") no-repeat top center;
        background-size: auto 490px;
    }
    .works_headcover_takeru .lead_box {
        width: 100%;
        padding: 510px 20px 20px;
    }
    .works_headcover_takeru .lead_box h1 {
        padding-bottom: 10px;
        text-align: center;
    }
    .works_headcover_takeru .lead_box h1 img {
        width: 46%;
    }
    .works_headcover_gundragon {
        background: url("../images/toppic_gundragon.png") no-repeat top center;
        background-size: auto 490px;
    }
    .works_headcover_gundragon .lead_box {
        width: 100%;
        padding: 510px 20px 20px;
    }
    .works_headcover_gundragon .lead_box h1 {
        padding-bottom: 10px;
        text-align: center;
    }
    .works_headcover_gundragon .lead_box h1 img {
        width: 80%;
    }
    .others_headcover {
        padding: 50px 30px;
    }
    .others_headcover h1 {
        font-size: 30px;
        padding: 20px;
    }
    /*----------*/
    .item_box {
        padding: 0 30px;
    }
    .item_box .col2 {
        margin-bottom: 30px;
    }
    .item_box .item_txt p {
        font-size: 12px;
        line-height: 1.5em;
    }
    .item_box h3, .goods_box h3 {
        font-size: 18px;
    }
    .others_item_box .item_pic img {
        height: 300px;
        width: auto;
    }
    .others_item_box .item_txt {
        width: 80%;
        margin: 0 auto 40px;
    }
    .others_item_box .item_txt h3 {
        font-size: 16px;
    }
    .goods_pic {
        text-align: center;
    }
    .goods_pic img {
        width: 80%;
    }
    .goods_txt {
        width: 80%;
        padding-bottom: 1.5em;
        margin: 0 auto;
    }
    .goods_txt p {
        font-size: 12px;
    }
}
/*-------------------------------------------------------*/
/*ニュース履歴*/
/*-------------------------------------------------------*/
.news_box .col2 {
    padding: 30px;
}
.news_box .news_txt h3 {
    padding: 0.5em 0;
    margin: 0;
    font-size: 18px;
}
@media screen and (max-width: 767px) {
    .news_box .col2 {
        padding: 15px 30px;
    }
    .news_box .news_txt h3 {
        font-size: 16px;
    }
}
/*-------------------------------------------------------*/
/*フリーイラスト*/
/*-------------------------------------------------------*/
.illust_list {
    display: flex;
    flex-wrap: wrap;
    padding: 10px 0 40px;
    margin: 0 -20px;
}
.illust_list .illust {
    width: 20%;
    padding: 20px;
}
.illust_list .illust img {
    width: 100%;
    height: auto;
}
@media screen and (max-width: 767px) {
    .illust_list {
        padding: 0 0 10px;
        margin: 0 10px;
    }
    .illust_list .illust {
        width: 50%;
        padding: 10px;
    }
}
/*********************************************************/
/*ページトップへ*/
/*********************************************************/
.pagetop_box {
    display: flex;
    justify-content: flex-end;
}
.pagetop {
    height: 50px;
    width: 50px;
    border-radius: 8px;
    border: #555555 solid 2px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}
.pagetop_arrow {
    height: 24px;
    width: 24px;
    background: url("../images/pagetop_arrow.png") no-repeat center center;
    background-size: contain;
}
@media screen and (max-width: 767px) {
    .pagetop_box {
        padding: 0 20px;
    }
    .pagetop {
        height: 40px;
        width: 40px;
    }
    .pagetop_arrow {
        height: 18px;
        width: 18px;
        background: url("../images/pagetop_arrow.png") no-repeat center center;
        background-size: contain;
    }
}
/*********************************************************/
/*お問い合わせ*/
/*********************************************************/
.contact_box {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    height: 220px;
    background-color: #000000;
    background: -webkit-linear-gradient(rgba(0, 0, 0, 1) 0%, rgba(113, 0, 0, 1) 100%);
    background: -o-linear-gradient(rgba(0, 0, 0, 1) 0%, rgba(113, 0, 0, 1) 100%);
    background: linear-gradient(rgba(0, 0, 0, 1) 0%, rgba(113, 0, 0, 1) 100%);
}
.contact_box a {
    display: block;
    width: 390px;
    padding: 20px;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    color: #000000;
    border-radius: 8px;
    background-color: #FFFFFF;
}
@media screen and (max-width: 767px) {
    .contact_box {
        height: 180px;
        margin-top: -20px;
    }
    .contact_box a {
        width: 74%;
        padding: 16px;
        font-size: 20px;
    }
}
/*********************************************************/
/*フッタ*/
/*********************************************************/
footer .footer_inner {
    background-color: #000000;
}
footer .f_navi_box {
    display: flex;
    width: 100%;
    height: 80px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
footer .f_navi_box div {
    padding: 0 10px;
}
footer .f_navi_box div a {
    font-size: 20px;
}
footer .copy {
    padding: 0 0 2em;
    text-align: center;
    font-size: 13px;
}
@media screen and (max-width: 767px) {
    footer .f_navi_box {
        height: 60px;
    }
    footer .f_navi_box div a {
        font-size: 15px;
    }
}