@charset "utf-8";

/*==============================
　　Webクリエイター養成科
　　共通スタイル（common.css）
==============================*/
/*------------------------------
　[共通] リセット＆ベース
------------------------------*/
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: 'Noto Sans JP', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    color: #000000;
    line-height: 1.95;
    letter-spacing: 0.1em;
    font-weight: 500;
    background-color: #DEFF49;
}

p {
    text-align: justify;
}

a {
    color: inherit;
    text-decoration: none;
}

ul,
ol,
li {
    list-style: none;
}

img {
    width: 100%;
    vertical-align: bottom;
}

.clearfix:after {
    content: "";
    display: block;
    clear: both;
}

.br_none {
    display: none;
}

/*------------------------------
　[共通] リンクボタン
------------------------------*/
.black-btn {
    display: block;
    background-color: #000000;
    background-image: url(../images/btn_arrow.svg);
    background-repeat: no-repeat;
    background-position: right 35px center;
    color: #ffffff;
    text-align: center;
    padding: 23px 60px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.3rem;
    line-height: 1.3em;
    transition: 0.5s;
}

.black-btn:hover {
    opacity: 0.7;
    transform: translateY(-5px);
}

.black-btn span {
    font-size: 0.9rem;
}

/*------------------------------
　[共通] ヒーローセクション
------------------------------*/
header {
    width: 100%;
    height: 70px;
    padding: 0 0 0 20px;
    background-color: #DEFF49;
    border-bottom: 4px solid #000;
    line-height: 1;
    display: flex;
    justify-content: space-between;
    position: fixed;
    top: 0;
    z-index: 9999;
}

.logo {
    line-height: 1;
    display: flex;
    align-items: center;
}

.logo a img {
    width: 400px;
}

header nav {
    display: flex;
    gap: 20px;
}

header nav ul {
    display: flex;
    align-items: center;
    height: 100%;
    padding-top: 23px;
}

header nav ul li {
    margin-left: 20px;
    height: 100%;
}

header nav ul li a {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

header nav ul li:last-child,
nav .logo,
#menu_tel {
    display: none;
}

#menu_contact a {
    display: block;
    width: 130px;
    height: 100%;
    padding-top: 13px;
    background-color: #000;
    color: #FFF;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}

#menu_contact a img {
    width: 30px;
    padding-bottom: 8px;
}

/*------------------------------
　[共通] 下層ページ
------------------------------*/
article {
    padding-top: 70px;
}

article h1 {
    height: 200px;
    margin-bottom: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #DEFF49;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.1;
    text-align: center;
    background-image: repeating-linear-gradient(135deg, #000000, #000000 18px, #393939 18px, #393939 35px);
}

/*------------------------------
　[共通] セクション
------------------------------*/
.section_card {
    width: 1140px;
    margin: 0 auto 170px auto;
    padding: 0px 0px 0px;
}

.section_header {
    margin-bottom: 80px;
    text-align: center;
}

.section_title {
    font-size: 2.3rem;
    font-weight: 800;
    line-height: 1;
    color: #000000;
    display: inline-block;
    position: relative;
    padding-bottom: 80px;
}

.section_title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    border-bottom: 4px solid #000000;
}

.section_title span {
    display: inline-block;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    -webkit-text-stroke: 3px #000000;
    paint-order: stroke fill;
    padding-bottom: 20px;
}

.item_card {
    background-color: #FFF;
    border: 4px solid #000;
    padding: 0;
}

/*------------------------------
　[共通] フッター
------------------------------*/
footer {
    width: 100%;
    background-color: #000;
    color: #FFF;
    font-size: 0.8rem;
    padding: 50px 0 10px;
}

.footer_content {
    width: 1140px;
    margin: 0 auto;
    overflow: hidden;
}

/* インフォエリア */
.info_area {
    width: 570px;
    float: left;
}

.info_area a.course {
    display: inline-block;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0;
    margin-bottom: 15px;
}

.info_area a.course span {
    font-size: 1.7rem;
}

.info_area p {
    line-height: 1.4;
    margin-bottom: 6px;
}

.info_area p span {
    padding-right: 0.8em;
}

.info_company {
    font-size: 1rem;
    font-weight: 700;
}

/* リンクエリア */
.link_area {
    width: 570px;
    float: right;
}

.link_area ul li {
    margin-bottom: 10px;
}

.link_area ul li a {
    display: block;
    border: 2px solid #ffffff;
    text-align: center;
    position: relative;
    transition: all 0.8s;
}

.link_area ul li a::after {
    content: "";
    width: 8px;
    height: 8px;
    border-top: solid 1px #ffffff;
    border-right: solid 1px #ffffff;
    transform: rotate(45deg);
    position: absolute;
    top: 8px;
    right: 10px;
}

.link_area ul li a:hover {
    color: #000000;
    background-color: #ffffff;
}

.link_area ul li a:hover::after {
    border-top: solid 1px #000000;
    border-right: solid 1px #000000;
}

.instagram {
    padding-top: 15px;
    text-align: center;
}

.instagram a:first-child {
    margin-right: 20px;
}

.instagram a:first-child img {
    width: 30px;
}

.instagram a:last-child img {
    width: 28px;
}

/* コピーライト */
.copyright {
    font-size: 0.7rem;
    padding-top: 30px;
    text-align: center;
    clear: both;
}

/*------------------------------
　メディアクエリ（1200px以下）
------------------------------*/
@media (max-width: 1200px) {

    /*----- [共通] セクション -----*/
    .section_card {
        width: 90%;
    }

    /*----- [共通] フッター -----*/
    footer {
        padding: 40px 5% 10px;
    }

    .footer_content {
        width: 100%;
    }

    .info_area {
        width: 51%;
    }

    .link_area {
        width: 49%;
    }

}

/*------------------------------
　メディアクエリ（1140px以下）
------------------------------*/
@media (max-width: 1140px) {}

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

    /*----- [共通] ヒーローセクション -----*/
    header {
        height: 60px;
    }

    .logo a img {
        width: 320px;
    }

    header nav {
        display: block;
    }

    header nav ul {
        display: block;
        height: auto;
        margin-bottom: 30px;
        padding-top: 0;
        border-top: 4px solid #000;
    }

    header nav ul li:last-child {
        display: block;
    }

    header nav ul li {
        margin-left: 0;
        height: auto;
    }

    header nav ul li a {
        display: block;
        text-align: center;
        padding: 22px 0;
        border-bottom: 2px dotted #000;
        font-size: 16px;
    }

    header nav ul li a:hover {
        /* background-image: repeating-linear-gradient(135deg, #000000, #000000 18px, #4d4d4d 18px, #4d4d4d 35px); */
        background-color: #000;
        color: #FFF;
    }

    /*------------------------------
    　　[共通] ハンバーガーメニュー
    ------------------------------*/
    .hamburger {
        width: 60px;
        height: 60px;
        cursor: pointer;
        position: fixed;
        top: 0px;
        right: 0px;
        z-index: 99999;
        background-color: #000;
    }

    .hamburger span {
        width: 30px;
        height: 3px;
        background-color: #fff;
        display: inline-block;
        position: absolute;
        left: 15px;
        transition: all 0.4s;
    }

    .hamburger span:nth-last-of-type(1) {
        top: 17px;
    }

    .hamburger span:nth-last-of-type(2) {
        top: 26px;
    }

    .hamburger span:nth-last-of-type(3) {
        top: 35px;
    }

    .hamburger.active span:nth-of-type(1) {
        top: 26px;
        transform: rotate(-225deg);
    }

    .hamburger.active span:nth-of-type(2) {
        top: 26px;
        transform: scale(0);
    }

    .hamburger.active span:nth-of-type(3) {
        top: 26px;
        transform: rotate(225deg);
    }

    header nav {
        display: block;
        width: 100%;
        height: 100vh;
        background-color: #DEFF49;
        /* padding: 56px 0px 80px 0px; */
        padding: 0px 0px 80px 0px;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 88888;
        transition: all 0.5s;
        opacity: 0;
        visibility: hidden;
    }

    header nav.active {
        opacity: 1;
        visibility: visible;
        overflow-y: auto;
    }

    nav .logo {
        display: block;
        height: 56px;
        padding: 0 0 0 20px;
        display: flex;
        align-items: center;
    }

    #menu_contact a {
        display: block;
        width: auto;
        height: auto;
        margin: 0 20px;
        padding: 23px 30px;
        border-radius: 50px;
        background-color: #000;
        color: #fff;
        font-size: inherit;
        font-weight: 600;
        text-align: center;
    }

    #menu_contact a img {
        margin-right: 20px;
        padding-bottom: 0;
    }

    #menu_contact a br {
        display: none;
    }

    #menu_contact a span {
        position: relative;
        top: -3px;
    }

    #menu_tel {
        display: block;
        padding-top: 20px;
    }

    #menu_tel p {
        text-align: center;
    }

    #menu_tel p:first-child {
        font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
        font-size: 40px;
        font-weight: 800;
        letter-spacing: 0;
        margin-bottom: 5px;
    }

    /*----- [共通] 下層ページ -----*/
    article {
        padding-top: 60px;
    }

}

/*------------------------------
　メディアクエリ（750px以下）
------------------------------*/
@media (max-width: 750px) {

    /*----- [共通] リセット＆ベース -----*/
    html {
        font-size: 0.875rem;
    }

    /*----- [共通] リンクボタン -----*/
    .black-btn {
        background-position: right 25px center;
        padding: 23px 30px;
        font-size: 1.3rem;
        line-height: 1.3em;
    }

    /*----- [共通] 下層ページ -----*/
    article h1 {
        height: 150px;
        font-size: 2.5rem;
        margin-bottom: 50px;
    }

    /*----- [共通] セクション -----*/
    .section_card {
        margin-bottom: 60px;
    }

    .section_header {
        margin-bottom: 50px;
    }

    .section_title {
        padding-bottom: 50px;
    }

    /*----- [共通] フッター -----*/
    .info_area {
        width: 100%;
        float: none;
        text-align: center;
        margin-bottom: 30px;
    }

    .info_area p {
        display: block;
        text-align: center;
    }

    .link_area,
    .instagram {
        width: 100%;
        float: none;
    }

}

/*------------------------------
　メディアクエリ（430px以下）
------------------------------*/
@media screen and (max-width: 430px) {

    /*----- [共通] ヒーローセクション -----*/
    header {
        padding: 0 0 0 3%;
    }

    .logo a {
        display: flex;
        align-items: center;
    }

    .logo a img {
        width: 77%;
    }

    /*----- [共通] ハンバーガーメニュー -----*/
    nav .logo {
        padding: 0 0 0 3%;
    }

    /*----- [共通] 下層ページ -----*/
    article h1 {
        height: 130px;
        font-size: 2.1rem;
    }

    /*----- [共通] セクション -----*/
    .section_title {
        font-size: 1.9rem;
    }

    .section_title span {
        font-size: 17px;
    }

    /*----- [共通] フッター -----*/
    .link_area ul li a {
        padding: 4px 15px 4px 15px;
        letter-spacing: 0;
    }

    .link_area ul li a::after {
        top: 12px;
        right: 10px;
    }

}

/*------------------------------
　メディアクエリ（370px以下）
------------------------------*/
@media screen and (max-width: 370px) {

    /*----- [共通] フッター -----*/
    .link_area ul li a {
        font-size: 0.75rem;
    }

    .info_area a span {
        display: block;
        font-size: 1.1rem;
        padding-bottom: 2px;
    }

    .info_area p span {
        display: block;
        padding-right: 0;
    }

    .info_area a.course,
    .info_area a.course span {
        font-size: 23.5px;
    }

    .info_area a.course span {
        display: inline;
    }

}

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

    /*----- [共通] ヒーローセクション -----*/
    header {
        padding: 0 0 0 1%;
    }

    /*----- [共通] ハンバーガーメニュー -----*/
    nav .logo {
        padding: 0 0 0 1%;
    }

    #menu_tel p:first-child {
        font-size: 36px;
    }

    #menu_tel p:last-child {
        font-size: 90%;
    }

}