@charset "UTF-8";

/*======================================================
(0) 変数設定
======================================================*/
:root{
    --link-color: #009994;
    --primary-color:#e70000;
    --secondary-color:#009994;
    --border-color: #ccc;

    /*-- 無彩色 --*/
    --white: #fff;
    --verypale: #f2f2f2;
    --pale: #d8d8d8;
    --light: #b4b4b7;
    --soft: #757578;
    --default: #414143;
    --dark: #080808;
    --black: #000;
}

/*======================================================
(1) 共通設定
======================================================*/
/*-- 全体設定 
---------------------------------------*/
/*-- リセット --*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    text-align: center;
}

a {
    text-decoration: none;
}

li {
    list-style-type: none;
}

/*-- 見出し --*/
.heading {
    margin-bottom: 10px;
}

/* 英語表記 */
.en-heading {
    color: var(--primary-color);
    font-weight: bold;
    line-height: 1;
    font-size: 12px;
}

/*-- 共通事項(FV以外のコンテンツ) --*/
.common {
    padding: 50px 0;

    h2 {
        line-height: 1;
        font-size: 28px;
    }
}

/*======================================================
(2) PC設定
======================================================*/
/*-- ヘッダー
---------------------------------------*/
header {
    width: 100%;
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 150px;
}

.site-title {
    display: block;
    width: 200px;
}

.hamburger-menu {
    display: none;
}

.checkbox {
    display: none;
}

/*-- ヘッダーメニュー --*/
.header-nav {
    background-color: var(--verypale);

    ul {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    li {
        width: 25%;
        height: 100%;
    }

    a {
        display: inline-block;
        color: var(--black);
        font-weight: bold;
        width: 100%;
        height: 100%;
        padding: 15px 10px;
    }

    a:hover {
        background-color: var(--white);
    }
}

.sp-nav {
    display: none;
}

/* お問い合わせボタン */
.header-contact-btn {
    font-weight: bold;
    color: var(--white);
    padding: 10px 40px 10px 30px;
    border-radius: 50px;
    background-color: var(--primary-color);
    border: 2px solid var(--primary-color);
    position: relative;
}

/* お問い合わせボタンの矢印 */
.header-contact-btn::after {
    content: '';
    width: 8px;
    height: 8px;
    margin-top: -5px;
    border-top: 2px solid var(--white);
    border-right: 2px solid var(--white);
    transform: rotate(45deg);
    position: absolute;
    top: 50%;
    right: 20px;
}

.header-contact-btn:hover {
    background-color: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.header-contact-btn:hover::after {
    content: '';
    width: 8px;
    height: 8px;
    margin-top: -5px;
    border-top: 2px solid var(--primary-color);
    border-right: 2px solid var(--primary-color);
    transform: rotate(45deg);
    position: absolute;
    top: 50%;
    right: 20px;
}


/*-- TOPページ
---------------------------------------*/
/*-- FV --*/
.first-view {
    background-color: var(--black);
    color: var(--white);
    text-align: left;
    padding: 50px 150px;
    background-image: url("../images/jcrew_fv.webp");
    background-position: right -300px;
    background-repeat: no-repeat;

    h2 {
        font-size: 30px;
    }
}

/* ダーツ名表示部分 */
.fv_dartslist{
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.fv_dartsname {
    display: grid;
    place-items: center;
    width: 120px;
    height: 120px;
    padding: 10px;
    background-color: var(--white);
    color: var(--black);
    overflow-wrap: break-word;
    border-radius: 50%;
    border: 3px solid var(--primary-color);
    font-family: "Jost", sans-serif;
    font-weight: 400;
    font-size: 25px;
    text-align: center;
    margin-right: 20px;
    background-image: linear-gradient(50deg, rgba(242, 242, 242, 1) 30%, rgba(255, 255, 255, 1) 30%);
    line-height: 1;
}

.fv_dartsname_phoenix {
    font-size: 22px;
}

/*-- 取扱マシン --*/
.machine {
    width: 85%;
    margin: 0 auto;
}

.darts-card {
    background-color: var(--verypale);
    margin: 10px;
    border-radius: 10px;
    position: relative;
}

.darts-type {
    font-size: 12px;
    color: var(--white);
    padding: 3px 15px;
    background-color: var(--primary-color);
    border-radius: 20px;
    position: absolute;
    top: 13px;
    left: 15px;
}

/* マシン紹介部分 */
.machine-list {
    margin-top: 15px;
}

/* マシン紹介部分 共通事項 */
.introduction {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;

    img {
        margin-top: 30px;
    }
}

/* マシン紹介部分 上段 */
.machine_new {
    .darts-card {
        width: 30%;
        padding: 30px;
    }

    img {
        width: 80%;
    }
}

/* マシン紹介部分 下段 */
.machine_other {
    .darts-card {
        width: 22%;
        padding: 20px;
    }

    img {
        width: 60%;
    }
}

/*-- お問い合わせ --*/
.contact {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 50px 10px;

    .en-heading {
        color: var(--white);
        font-weight: bold;
    }

    .contact_btn {
        margin: 30px 0 20px;
    }

    .contact_catch {
        font-weight: bold;
        font-size: 20px;
    }

    img {
        width: 30px;
        margin: 0 5px -13px 0;
    }

    a {
        font-weight: bold;
        color: var(--primary-color);
        padding: 30px 50px;
        border-radius: 50px;
        background-color: var(--white);
        box-shadow: 0 9px rgba(0, 0, 0, 0.3);
        font-size: 20px;
        position: relative;
        top: 0;
        transition: .2s ease-in-out;
    }

    a:hover {
        top: 9px;
        box-shadow: 0 0 rgba(0, 0, 0, 0.3);
    }
}

/*-- 選手一覧 --*/
.player_heading {
    margin-bottom: 20px;
}

.player_link {
    width: 55%;
    margin: 0 auto 40px;
    background-color: var(--verypale);
    text-align: left;
    padding: 60px 50px;
    position: relative;

    h3 {
        display: inline-block;
        border-left: 5px solid var(--primary-color);
        padding-left: 10px;
        margin-left: 0;
    }
}

.player-card {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;

    img {
        width: 400px;
        position: absolute;
        bottom: 0;
        right: 0;
    }
}

.player_introduction {
    p {
        width: 50%;
    }
}

.player-name {
    margin: 10px 0;
}

.player-full {
    font-weight: bold;
    font-size: 20px;
}

.playerlist-link {
    margin-top: 50px;
    margin-right: 0;

    a {
        color: var(--primary-color);
        font-weight: bold;
        border: 3px solid var(--primary-color);
        background-color: var(--white);
        padding: 10px;
    }

    a:hover {
        color: var(--white);
        background-color: var(--primary-color);
    }
}

/*-- 会社概要 --*/
.company {
    background-color: var(--verypale);

    table {
        margin: auto;
        border-collapse: collapse;
    }

    tr {
        border-top: 1px solid var(--black);
        border-bottom: 1px solid var(--black);
    }

    th {
        padding: 15px 50px;
    }

    td {
        text-align: left;
        border-left: 1px solid var(--black);
        padding: 15px 50px 15px 30px;
    }
}

/*-- フッター
---------------------------------------*/
footer {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 30px 150px;
}

.footer_sitename {
    margin-right: 50px;
    font-weight: bold;
    font-size: 35px;
    width: 200px;
}

.footer_tel {
    display: flex;
    align-items: center;
    font-size: 22px;
    font-weight: bold;

    img {
        width: 25px;
        margin-right: 5px;
    }
}

.footer_time {
    font-size: 15px;
    text-align: right;
}

.copyright {
    margin-left: auto;
}


/*-- 下層ページ(選手一覧)
---------------------------------------*/
.player-list {
    width: 70%;
    margin: 0 auto;

    .heading {
        margin-bottom: 40px;
    }

    .sub_player-card {
        background-color: var(--verypale);
    }
}

.card_top {
    height: 400px;
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    padding: 50px;
    position: relative;
    text-align: left;
    margin-bottom: 20px;

    img {
        width: 40%;
        position: absolute;
        bottom: 0;
        right: 0;
    }
}

.card_middle {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.card_second {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.second {
    width: 32%;
    padding: 30px;

    img {
        width: 90%;
    }

    .player_introduction {
        p {
            width: 100%;
        }
    }
}

.card_bottom {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.card_four {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.third {
    width: 18%;
    padding: 10px;
    text-align: center;

    img {
        width: 100%;
    }
}


/*======================================================
(3) タブレット設定
======================================================*/
@media screen and (max-width: 1350px) {
    /*-- TOPページ
    ---------------------------------------*/
    /*-- 取扱マシン --*/
    .machine_other {
        img {
            width: 80%;
        }
    }

    /*-- 選手一覧 --*/
    .player_link {
        width: 40%;
    }

	.player-card {
        display: inline-block;
        text-align: center;

        div {
            display: inline-block;
        }

        img {
            width: 100%;
            position: static;
            bottom: auto;
            right: auto;
        }

        p {
            width: 100%;
        }
    }

    /*-- 下層ページ(選手一覧)
    ---------------------------------------*/
    .player-kana {
        font-size: 13px;
    }
}


/*======================================================
(4) スマホ設定
======================================================*/
@media screen and (max-width: 785px) {
    /*-- TOPページ
    ---------------------------------------*/
    /*-- ヘッダー
    ---------------------------------------*/
    .header-top {
        padding: 20px 20px;
    }

    .header-contact-btn {
        display: none;
    }

    .header-nav {
        display: none;
        height: 100vh;
        width: 100%;
    }

    .menubtn {
        position: relative;
    }

    .checkbox {
        display: block;
        position: absolute;
        top: 9px;
        right: 20px;
        z-index: 5;
        opacity: 0;
        cursor: pointer;
        width: 50px;
        height: 50px;
    }

    .hamburger-menu {
        display: block;
        border: 2px solid var(--primary-color);
        width: 50px;
        height: 50px;
        position: absolute;
        top: 9px;
        right: 20px;
        z-index: 2;
    }

    .hamburger-line {
        display: block;
        margin: 10px auto;
        height: 2px;
        width: 60%;
        border-radius: 10px;
        background: var(--primary-color);
    }

    .line1 {
        transform-origin: 0% 0%;
        transition: transform 0.4s ease-in-out;
    }

    .line2 {
        transition: transform 0.2s ease-in-out;
    }

    .line3 {
        transform-origin: 0% 100%;
        transition: transform 0.4s ease-in-out;
    }

    .checkbox:checked ~ .page-wrapper {
        height: 100vh;
        overflow: hidden;
    }

    .checkbox:checked ~ .page-wrapper .header-top {
        padding: 0;
    }

    .checkbox:checked ~ .page-wrapper .header-top .site-title_link{
        display: none;
    }

    .checkbox:checked ~ .page-wrapper .header-top .sp-nav{
        transform: translateX(0);
        display: block;
    }

    .checkbox:checked ~ .page-wrapper .header-top .sp-nav .sp-nav_ul{
        display: block;
        padding: 80px 50px 20px;
        text-align: left;
    }

    .checkbox:checked ~ .page-wrapper .header-top .sp-nav .sp-nav_ul li{
        width: 100%;
        line-height: 1;
        font-size: 20px;
    }

    .checkbox:checked ~ .page-wrapper .header-top .sp-nav .sp-nav_player {
        padding-bottom: 3px;
    }

    .checkbox:checked ~ .page-wrapper .header-top .sp-nav .sp-nav_playerlink {
        display: block;
    }

    .checkbox:checked ~ .page-wrapper .header-top .sp-nav .sp-nav_playerlink li {
        margin-left: 20px;
        line-height: 0.5;
    }

    .checkbox:checked ~ .page-wrapper .header-top .header-contact-btn {
        width: 80%;
        height: 56px;
        color: var(--white);
    }

    .checkbox:checked ~ .page-wrapper .header-top .header-contact-btn:hover {
        color: var(--primary-color);
    }

    .checkbox:checked ~ .page-wrapper .header-top .hamburger-menu {
        background-color: var(--primary-color);
    }

    .checkbox:checked ~ .page-wrapper .header-top .hamburger-menu .line1{
        transform: rotate(45deg);
        border: 1px solid var(--white);
        position: absolute;
        top: 3px;
        right: 4px;
    }

    .checkbox:checked ~ .page-wrapper .header-top .hamburger-menu .line2{
        transform: scaleY(0);
    }

    .checkbox:checked ~ .page-wrapper .header-top .hamburger-menu .line3{
        transform: rotate(-45deg);
        border: 1px solid var(--white);
        position: absolute;
        bottom: 2px;
        right: 4px;
    }

    /*-- TOPページ
    ---------------------------------------*/
    /*-- FV --*/
    .first-view {
        padding: 50px 20px;
        background-position: right 0;
        background-size: 70%;
    }

    .fv_dartslist {
        /* justify-content: space-between; */
    }

    .fv_dartsname {
        width: 100px;
        height: 100px;
        font-size: 22px;
        padding: 5px;
        margin-right: 10px;
    }

    .fv_dartsname_phoenix {
        font-size: 20px;
    }

    /*-- 取扱マシン --*/
    .introduction {
        display: block;
    }

    .machine_new {
        .darts-card {
            width: 100%;
            margin: 20px auto;
        }
    }

    .machine_other {
        display: flex;
        align-items: stretch;
        justify-content: space-between;

        .darts-card {
            width: 47%;
            margin: 0 0 20px;
        }

        h3 {
            font-size: 13px;
        }
    }

    /*-- 選手一覧 --*/
    .player_link {
        width: 90%;
    }

    /*-- 会社概要 --*/
    .company {
        table {
            width: 90%;
        }

        th {
            padding: 15px;
            width: 30%;
        }

        td {
            padding: 15px;
        }
    }

    /*-- フッター
    ---------------------------------------*/
    footer {
        display: block;
        padding: 30px 10px;
    }

    .footer_sitename {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .footer_tel {
        justify-content: center;
        font-size: 20px;
    }

    .footer_time {
        text-align: center;
        margin-bottom: 10px;
    }

    /*-- 下層ページ(選手一覧)
    ---------------------------------------*/
    .player-list {
        width: 90%;

        .sub_player-card {
            margin-bottom: 15px;
        }
    }

    .card_top {
        display: block;
        width: 100%;
        height: 100%;
        padding: 20px;
        text-align: center;

        img {
            width: 80%;
            position: static;
        }
    }

    .player_introduction {
        p {
            width: 100%;
        }
    }

    .card_middle {
        justify-content: center;
        gap: 0 13px;
    }

    .second {
        width: 48%;
        padding: 10px;
    }

    .card_bottom {
        justify-content: center;
        gap: 0 13px;
    }

    .third {
        width: 48%;
        padding: 10px;
    }
}