@charset "UTF-8";

/******************************************************************************
*
* [共通]ヘッダー
*
******************************************************************************/

header.fv {
    background-image: url(../images/bg1.jpg);
    background-size: cover;
    background-position: center;
    height: 100vh;
    position: relative;
    animation: zoomInOut 10s ease-in-out infinite alternate;
}

header.fv::before {
    content: "";
    display: block;
    width: 95%;
    width: -webkit-calc(100% - 50px);
    width: calc(100% - 50px);
    height: 95%;
    height: -webkit-calc(100% - 50px);
    height: calc(100% - 50px);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    -webkit- transform: translateY(-50%) translateX(-50%);
    border: solid 1px #fff;
}

header.fv .middle_wrap {
    position: relative;
    height: 100%;
}

header.fv h1.logo {
    width: 58%;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    -webkit- transform: translateY(-50%);
}

header.fv h1.logo img {
    filter: drop-shadow(0 0 12px rgba(0, 0, 0, 0.2));
    transform: translateZ(0);
}

/* キーフレーム定義 */

@keyframes zoomInOut {
    0% {
        background-size: 150% auto;
    }

    100% {
        background-size: 160% auto;
    }
}

/*スクロールアイコン*/

.scroll_icon {
    bottom: 40px;
}


/******************************************************************************
*
* [共通]お知らせ
*
******************************************************************************/

#news {
    background: #f4f6f8;
    background-image: url(../images/bg7.jpg);
    background-size: cover;
    background-position: center;
    padding-top: 30px;
}

#news .btn {
    width: 80%;
    max-width: 300px;
    margin: 30px auto 0;
    transition: all 0.5s;
}

#news .btn:hover {
    opacity: 0.8;
}

/*---------------------
* リスト
---------------------*/

#news .list dl {
    background: #fff;
    padding: 30px 30px;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    border-radius: 10px;
    border: solid 1px #ddd;
}

#news .list a {
    display: block;
}

#news .list a:hover dl dd {
    color: #d6757d
}

/*日付*/

#news .list dl dt {
    width: 90px;
    border-right: solid 1px #ccc;
    color: #60494a;
}

#news .list dl dt .y {
    font-size: 16px;
    line-height: 1;
    margin-bottom: 5px;
}

#news .list dl dt .md {
    font-size: 28px;
    line-height: 1;
}

/*タイトル*/

#news .list dl dd {
    width: 70%;
    width: -webkit-calc(100% - 90px);
    width: calc(100% - 90px);
    padding-left: 20px;
    padding-right: 50px;
    font-size: 16px;
    color: #333;
    font-weight: 500;
    transition: color 0.5s;
    position: relative;
}

#news .list dl dd span {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

#news .list dl dd::before {
    content: "";
    display: block;
    background-image: url(../images/arrow.png);
    background-size: cover;
    width: 18px;
    height: 18px;
    position: absolute;
    top: 18px;
    right: 3px;
}


/******************************************************************************
*
* [共通]詳細
*
******************************************************************************/

#about {
    padding-bottom: 100px;
}

#about h2.lead {
    width: 72%;
    margin: 0 auto 60px;
}

#about p {
    padding: 0 1em;
    line-height: 2;
}

#about .point {
    width: 80%;
    margin: 50px auto 80px;
}

/*---------------------
* 監修
---------------------*/

#about .com {
    background: #fff;
    padding: 30px;
    border-radius: 30px;
    position: relative;
    filter: drop-shadow(0 0 20px rgba(180, 50, 50, 0.2));
    transform: translateZ(0);
}

#about .com:before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 25px solid transparent;
    border-left: 25px solid transparent;
    border-bottom: 30px solid #fff;
    border-top: 0;
    position: absolute;
    top: -28px;
    left: 0;
    right: 0;
    margin: auto;
}

#about .com h3 {
    text-align: center;
    font-size: 22px;
    letter-spacing: 0.1em;
    margin-bottom: 30px;
}

#about .com .list {
    display: flex;
    justify-content: space-between;
}

#about .com .list dl {
    width: 48.5%;
    background: #f4f6f8;
    padding: 0 25px 30px;
    border-radius: 10px;
}

#about .com .list dl dt .sub {
    background: #0072ba;
    width: 130px;
    text-align: center;
    color: #fff;
    margin: auto;
    border-bottom-left-radius: 7px;
    border-bottom-right-radius: 7px;
    font-size: 14px;
    padding: 0 0 2px;
}

#about .com .list dl dt .logo {
    width: 50%;
    margin: 30px auto 15px;
}

#about .com .list dl dt h4 {
    text-align: center;
    color: #0072ba;
    font-weight: 900;
    font-size: 20px;
}

#about .com .list dl dd {
    font-size: 14px;
    margin-top: 20px;
}

/*差分*/

#about .com .list dl:nth-child(2) dt .sub {
    background: #d6757d;
}

#about .com .list dl:nth-child(2) dt h4 {
    color: #d6757d;
}


/******************************************************************************
*
* [共通]講師
*
******************************************************************************/

#prof {
    background-image: url(../images/bg2.jpg);
    background-size: cover;
    background-position: center;
    padding-top: 50px;
}


/******************************************************************************
*
* [共通]企業理念
*
******************************************************************************/

#philosophy {
    padding-bottom: 150px;
}

#philosophy .common_h2 {
    margin-bottom: 80px;
}

#philosophy .list .c {
    background-image: url(../images/bg3.jpg);
    background-size: cover;
    background-position: center 0;
    border-radius: 50px;
    margin-bottom: 50px;
    height: 350px;
    position: relative;
}

#philosophy .list .c:last-child {
    margin-bottom: 0;
}

#philosophy .list .c .inner {
    width: 70%;
    position: absolute;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    -webkit- transform: translateY(-50%) translateX(-50%);
}

#philosophy .list .c h3 {
    font-size: 80px;
    letter-spacing: 0.1em;
    line-height: 1;
    color: #fff;
}

#philosophy .list .c p {
    color: #fff;
    font-weight: bold;
    margin-top: 25px;
    font-size: 20px;
    text-decoration: underline rgba(255, 255, 255, 0.4);
    text-underline-offset: 0.5em;
}

/*差分*/

#philosophy .list .c.c2 {
    background-image: url(../images/bg4.jpg);
}

#philosophy .list .c.c2 .inner {
    text-align: right;
}

#philosophy .list .c.c3 {
    background-image: url(../images/bg5.jpg);
}


/******************************************************************************
*
* [共通]流れ
*
******************************************************************************/

#flow {
    background-image: url(../images/bg9.jpg);
    background-size: cover;
    background-position: center bottom;
    padding: 50px 0;
}

#flow h2.lead {
    width: 80%;
    max-width: 300px;
    margin: 0 auto 40px;
}

/*テキスト*/

#flow .txt {
    margin-top: 30px;
    padding: 15px 30px 20px;
    background: rgba(255, 255, 255, 0.6);
}

#flow .txt h3 {
    text-align: center;
    font-size: 20px;
    border-bottom: dotted 2px #b9b9b9;
    padding-bottom: 10px;
    margin-bottom: 14px;
}

#flow .txt .list dl {
    display: flex;
    margin-bottom: 8px;
}

#flow .txt .list dl:last-child {
    margin-bottom: 0;
}

#flow .txt .list dl dt {
    width: 125px;
    font-weight: bold;
    color: #d6757d;
}

#flow .txt .list dl dt i {
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 11px solid #000000;
    border-right: 0;
    margin-left: 8px;
    opacity: 0.15
}

#flow .txt .list dl dd {
    width: 80%;
    width: -webkit-calc(100% - 125px);
    width: calc(100% - 125px);
    font-size: 15px;
}


/******************************************************************************
*
* [共通]サポート
*
******************************************************************************/

#support {
    background-image: url(../images/bg7.jpg);
    background-size: cover;
    background-position: center;
    padding-top: 50px;
    position: relative;
}

#support::before {
    content: "";
    display: block;
    width: 100%;
    height: 200px;
    position: absolute;
    bottom: 0;
    left: 0;
    background: linear-gradient(0deg, rgba(255, 255, 255, 1) 8.67%, rgba(255, 255, 255, 0) 100%);
}

#support .wrap {
    position: relative;
}

#support h2.lead {
    width: 90%;
    max-width: 420px;
    margin: 0 auto 60px;
}

#support .list {
    display: flex;
    justify-content: space-between;
}

#support .list .c {
    width: 31%;
    box-shadow: 6px 6px 0 rgba(209, 111, 123, 0.17);
}


/******************************************************************************
*
* [共通]内容
*
******************************************************************************/

#content .lead {
    margin-bottom: 80px;
}

#content .lead .en {
    font-size: 80px;
    line-height: 1;
    text-align: center;
    color: #60494a;
    opacity: 0.07;
}

#content .lead h2 {
    text-align: center;
    font-size: 32px;
    letter-spacing: 0.1em;
    font-weight: bold;
    color: #60494a;
    line-height: 1.5;
    margin-top: -30px;
}

/*---------------------
* リスト
---------------------*/

#content .list dl {
    border: solid 2px #d6757d;
    margin-bottom: 50px;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
}

#content .list dl:last-child {
    margin-bottom: 0;
}

#content .list dl dt {
    background: #d6757d;
    text-align: center;
    font-size: 24px;
    color: #fff;
    padding: 3px 0 6px;
}

#content .list dl dd .title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px 0;
}

#content .list dl dd .title h3 {
    width: 60%;
}

#content .list dl dd .title .img {
    width: 37%;
}

#content .list dl dd p.cap {
    padding: 25px 30px 35px;
}

/*サブ*/

#content .list dl dd .sub {
    background: #f6eaec;
    padding: 30px 30px 35px;
}

#content .list dl dd .sub h4 {
    text-align: center;
    margin-bottom: 25px;
}

#content .list dl dd .sub h4 span {
    background: #d6757d;
    text-align: center;
    color: #fff;
    padding: 3px 20px 6px;
    border-radius: 50px;
}

/*サブ1*/

#content .list dl dd .sub .point {
    display: flex;
    justify-content: space-between;
}

#content .list dl dd .sub .point .c {
    width: 31%;
}

#content .list dl dd .sub .point .c h5 {
    text-align: center;
    line-height: 1.5;
    margin-bottom: 10px;
    font-weight: bold;
}

#content .list dl dd .sub .point .c p {
    font-size: 13px;
    margin-top: 10px;
}

/*サブ3*/

#content .list dl dd .c2_photo {
    display: flex;
    justify-content: space-between;
    padding: 0 30px 25px;
}

#content .list dl dd .c2_photo .c {
    width: 48.5%;
}

#mov_box {
    padding: 0 30px 30px;
}

#movie_container {
    width: 100%;
    height: auto;
    margin: 0 auto;
    position: relative;
}

#movie_container::before {
    content: "";
    display: block;
    padding-top: 56.2%;
}

#movie_container #movie_main {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#movie_container #movie_msk {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(../images/content/thum.jpg);
    background-size: cover;
    background-position: center;
}

#movie_container #movie_start_btn {
    display: block;
    width: 100px;
    height: 100px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    -webkit- transform: translateY(-50%) translateX(-50%);
    cursor: pointer;
}

#movie_container #movie_start_btn img {
    display: block;
    position: relative;
    z-index: 3;
}

/*サブ4*/

#content .list dl dd .sub .graph {
    width: 95%;
    margin: auto;
}


/******************************************************************************
*
* [共通]イベント
*
******************************************************************************/

#event {
    background-image: url(../images/bg8.webp);
    background-size: cover;
    background-position: center top;
}

#event .middle_wrap {
    display: flex;
    justify-content: space-between;
}

#event .lc {
    width: 40%;
    padding-top: 80px;
}

#event .rc {
    width: 55%;
}

/*見出し*/

#event .lc .lead .en {
    font-size: 80px;
    line-height: 1;
}

#event .lc .lead h2 {
    font-size: 20px;
    letter-spacing: 0.1em;
    margin-top: 10px;
}

#event .lc p {
    margin-top: 40px;
}

/*---------------------
* リスト
---------------------*/

#event .rc {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

#event .rc dl {
    width: 48%;
    border-radius: 24px;
    border-bottom-left-radius: 0;
    overflow: hidden;
    box-shadow: -5px 5px 12px rgba(96, 45, 0, 0.3);
}

#event .rc dl:nth-child(n+3) {
    margin-top: 30px;
}

#event .rc dl dt {
    background: linear-gradient(90deg, rgba(155, 111, 31, 1) 0%, rgba(69, 34, 14, 1) 100%);
    font-weight: bold;
    color: #fff;
    text-align: center;
    font-size: 18px;
    line-height: 1.5;
    padding: 15px 0;
}

#event .rc dl:nth-child(even) dt {
    background: linear-gradient(-90deg, rgba(155, 111, 31, 1) 0%, rgba(69, 34, 14, 1) 100%);
}

#event .rc dl dd {
    background: #fff;
    padding-top: 5px;
}

#event .rc aside {
    width: 100%;
    font-size: 14px;
    text-indent: -1em;
    padding-left: 1em;
    line-height: 1.6;
    margin-top: 30px;
    opacity: 0.5;
}


/******************************************************************************
*
* [共通]会社概要
*
******************************************************************************/

#info {
    background: #333;
    padding: 40px 0;
}

#info h2.lead {
    text-align: center;
    font-size: 18px;
    color: #fff;
    font-weight: 500;
    margin-bottom: 20px;
}

/*情報*/

#info table {
    color: #fff;
    text-align: left;
    width: 85%;
    margin: auto;
}

#info table th,
#info table td {
    padding: 8px;
    font-size: 12px;
    font-weight: 400;
    border-bottom: solid 1px #555;
}

#info table tr:first-child th,
#info table tr:first-child td {
    border-top: solid 1px #555;
}

#info table th {
    width: 200px;
}

#info table td {
    width: 70%;
    width: -webkit-calc(100% - 200px);
    width: calc(100% - 200px);
}

/*ボタン*/

#info .btn {
    width: 80%;
    max-width: 450px;
    margin: 30px auto 0;
    transition: all 0.5s;
}

#info .btn:hover {
    opacity: 0.8;
}


/******************************************************************************
*
* [共通]レスポンシブ対応
*
******************************************************************************/

/*644px以下*/

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

    /*---------------------
    * [共通]FV
    ---------------------*/

    header.fv {
        background-image: url(../images/bg1_sp.jpg);
        background-position: center top;
        height: 100vh;
        animation: zoomInOut 10s ease-in-out infinite alternate;
    }

    header.fv::before {
        width: -webkit-calc(100% - 14px);
        width: calc(100% - 14px);
        height: -webkit-calc(100% - 14px);
        height: calc(100% - 14px);
    }

    header.fv h1.logo {
        width: 80%;
        top: 50%;
        left: 50%;
        transform: translateY(-50%) translateX(-50%);
        -webkit- transform: translateY(-50%) translateX(-50%);
    }

    header.fv h1.logo img {
        filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.5));
        transform: translateZ(0);
    }

    @keyframes zoomInOut {
        0% {
            background-size: 110% auto;
        }

        100% {
            background-size: 115% auto;
        }
    }

    .scroll_icon {
        bottom: 10px;
    }

    .scroll_icon {
        color: #999;
    }

    .scroll_icon span {
        border-color: #999;
    }

    .scroll_icon span::before {
        background: #999;
    }

    /*---------------------
    * [共通]お知らせ
    ---------------------*/

    #news {
        padding-top: 30px;
    }

    #news .common_h2 {
        margin-bottom: 20px;
    }

    #news .btn {
        width: 200px;
        margin: 20px auto 0;
    }

    /*リスト*/

    #news .list dl {
        padding: 15px 12px;
        margin-bottom: 7px;
        border-radius: 6px;
    }

    #news .list dl dt {
        width: 60px;
    }

    #news .list dl dt .y {
        font-size: 12px;
    }

    #news .list dl dt .md {
        font-size: 20px;
    }

    #news .list dl dd {
        width: -webkit-calc(100% - 60px);
        width: calc(100% - 60px);
        padding-left: 12px;
        padding-right: 20px;
        font-size: 12px;
    }

    #news .list dl dd span {
        -webkit-line-clamp: 3;
    }

    #news .list dl dd::before {
        width: 12px;
        height: 12px;
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
        -webkit- transform: translateY(-50%);
    }

    /*---------------------
    * [共通]詳細
    ---------------------*/

    #about {
        padding-bottom: 60px;
    }

    #about h2.lead {
        width: 88%;
        margin: 0 auto 30px;
    }

    #about p {
        padding: 0;
        line-height: 1.8;
    }

    #about .point {
        width: 80%;
        margin: 36px auto 50px;
    }

    /*監修*/

    #about .com {
        width: 94%;
        margin: auto;
        padding: 13px 16px 20px;
        border-radius: 20px;
        filter: drop-shadow(0 0 10px rgba(180, 50, 50, 0.1));
        transform: translateZ(0);
    }

    #about .com:before {
        border-right: 15px solid transparent;
        border-left: 15px solid transparent;
        border-bottom: 20px solid #fff;
        top: -19px;
    }

    #about .com h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }

    #about .com .list {
        display: block;
    }

    #about .com .list dl {
        width: 100%;
        padding: 0 20px 20px;
        border-radius: 10px;
        margin-bottom: 15px;
    }

    #about .com .list dl:last-child {
        margin-bottom: 0;
    }

    #about .com .list dl dt .sub {
        width: 105px;
        border-bottom-left-radius: 5px;
        border-bottom-right-radius: 5px;
        font-size: 12px;
        padding: 2px 0 4px;
    }

    #about .com .list dl dt .logo {
        width: 95px;
        margin: 22px auto 10px;
    }

    #about .com .list dl dt h4 {
        font-size: 16px;
    }

    #about .com .list dl dd {
        font-size: 13px;
        line-height: 1.6;
        margin-top: 10px;
    }

    /*---------------------
    * [共通]講師
    ---------------------*/

    #prof {
        padding: 30px 0 50px;
        background: #fff;
    }

    #prof .wrap {
        width: 100%;
    }

    /*---------------------
    * [共通]企業理念
    ---------------------*/

    #philosophy {
        padding-bottom: 60px;
    }

    #philosophy .common_h2 {
        margin-bottom: 40px;
    }

    #philosophy .list .c {
        border-radius: 20px;
        margin-bottom: 25px;
        height: 250px;
    }

    #philosophy .list .c .inner {
        width: 90%;
    }

    #philosophy .list .c h3 {
        font-size: 40px;
    }

    #philosophy .list .c p {
        margin-top: 20px;
        font-size: 14px;
        text-underline-offset: 0.3em;
    }

    /*差分*/

    #philosophy .list .c.c2 {
        background-position: top 0 left 18%;
    }

    #philosophy .list .c.c3 {
        background-position: top 0 right 18%;
    }

    /*---------------------
    * [共通]流れ
    ---------------------*/

    #flow {
        background-image: url(../images/bg9_sp.jpg);
        padding: 40px 0;
    }

    #flow h2.lead {
        max-width: 220px;
        margin: 0 auto 30px;
    }

    /*テキスト*/

    #flow .txt {
        margin-top: 20px;
        padding: 15px 15px 20px;
        background: rgba(255, 255, 255, 0.85);
    }

    #flow .txt h3 {
        font-size: 16px;
    }

    #flow .txt .list dl {
        display: block;
    }

    #flow .txt .list dl dt {
        width: 100%;
    }

    #flow .txt .list dl dd {
        width: 100%;
        width: -webkit-calc(100%);
        width: calc(100%);
        font-size: 13px;
    }

    /*---------------------
    * [共通]サポート
    ---------------------*/

    #support {
        padding-top: 30px;
    }

    #support::before {
        height: 50px;
    }

    #support h2.lead {
        width: 260px;
        margin: 0 auto 30px;
    }

    #support .list {
        display: block;
    }

    #support .list .c {
        width: 100%;
        box-shadow: 5px 5px 0 rgba(209, 111, 123, 0.17);
        margin-bottom: 20px;
    }

    #support .list .c:last-child {
        margin-bottom: 0;
    }

    /*---------------------
    * [共通]内容
    ---------------------*/

    #content .lead {
        margin-bottom: 40px;
    }

    #content .lead .en {
        font-size: 40px;
    }

    #content .lead h2 {
        font-size: 24px;
        margin-top: -19px;
    }

    /*リスト*/

    #content .list dl {
        border-width: 1px;
        margin-bottom: 30px;
        border-radius: 10px;
    }

    #content .list dl dt {
        font-size: 16px;
        padding: 5px 0 7px;
    }

    #content .list dl dd .title {
        padding: 15px 15px 0;
    }

    #content .list dl:nth-child(3) dd .title,
    #content .list dl:nth-child(4) dd .title {
        align-items: flex-start;
    }

    #content .list dl dd .title h3 {
        width: 63%;
    }

    #content .list dl dd .title .img {
        width: 35%;
    }

    #content .list dl dd p.cap {
        padding: 15px 15px 20px;
        font-size: 13px;
        line-height: 1.6;
    }

    /*サブ*/

    #content .list dl dd .sub {
        padding: 20px 15px 25px;
    }

    #content .list dl dd .sub h4 {
        margin-bottom: 15px;
    }

    #content .list dl dd .sub h4 span {
        padding: 8px 10px 10px;
        border-radius: 10px;
        display: block;
        font-size: 14px;
        line-height: 1.5;
    }

    /*サブ1*/

    #content .list dl dd .sub .point {
        flex-wrap: wrap;
    }

    #content .list dl dd .sub .point .c {
        width: 48%;
    }

    #content .list dl dd .sub .point .c:last-child {
        margin-top: 20px;
    }

    #content .list dl dd .sub .point .c h5 {
        font-size: 14px;
        margin-bottom: 7px;
    }

    #content .list dl dd .sub .point .c p {
        font-size: 11px;
        margin-top: 5px;
        line-height: 1.6;
    }

    /*サブ3*/

    #content .list dl dd .c2_photo {
        padding: 0 15px 10px;
    }

    #content .list dl dd .c2_photo .c {
        width: 49%;
    }

    #mov_box {
        padding: 0 15px 20px;
    }

    .pulse_btn,
    #movie_container #movie_start_btn {
        width: 60px;
        height: 60px;
    }

    /*サブ4*/

    #content .list dl dd .sub .graph {
        width: 100%;
    }

    /*---------------------
    * [共通]イベント
    ---------------------*/

    #event {
        padding-bottom: 60px;
    }

    #event .middle_wrap {
        display: block;
    }

    #event .lc {
        width: 100%;
        padding-top: 0;
    }

    #event .rc {
        width: 100%;
        margin: 0 calc(50% - 50vw);
        width: 100vw;
    }

    /*見出し*/

    #event .lc .lead .en {
        font-size: 50px;
    }

    #event .lc .lead h2 {
        font-size: 16px;
        margin-top: 10px;
    }

    #event .lc p {
        width: 100%;
        margin-top: 30px;
        margin-bottom: 30px;
    }

    /*リスト*/

    #event .rc {
        display: block;
    }

    #event .rc dl {
        width: 92%;
        border-radius: 0;
    }

    #event .rc dl:nth-child(odd) {
        border-top-right-radius: 20px;
        box-shadow: 5px 5px 12px rgba(96, 45, 0, 0.3);
    }

    #event .rc dl:nth-child(even) {
        margin-left: auto;
        border-top-left-radius: 20px;
        box-shadow: -5px 5px 12px rgba(96, 45, 0, 0.3);
    }

    #event .rc dl:nth-child(n+2) {
        margin-top: 30px;
    }

    #event .rc dl dt {
        font-size: 15px;
        letter-spacing: 0.1em;
        padding: 15px 0;
    }

    #event .rc dl dd {
        padding-top: 4px;
    }

    #event .rc aside {
        width: 90%;
        margin: auto;
        font-size: 10px;
        line-height: 1.7;
        margin-top: 30px;
    }

    /*---------------------
    * [共通]会社概要
    ---------------------*/

    #info {
        padding: 30px 0;
    }

    #info h2.lead {
        font-size: 14px;
    }

    /*情報*/

    #info table {
        width: 100%;
    }

    #info table th,
    #info table td {
        padding: 8px;
        font-size: 11px;
    }

    #info table th {
        width: 100px;
    }

    #info table td {
        width: -webkit-calc(100% - 100px);
        width: calc(100% - 100px);
    }

    /*ボタン*/

    #info .btn {
        width: 90%;
        margin: 20px auto 0;
    }

}
