/**************************
↓↓↓↓ 共通 ↓↓↓↓
***************************/
:root {
    --txt_ja: "Noto Sans JP";
    --txt_en: "Lato";
    --txt_serif: "Noto Serif JP", serif;
    --fw_reg: 400;
    --fw_bold: 700;
    --main_color: #C6194F;
    --accent_color: #0A90CD;
    --font_color: #FFFFFF;
    --base_color: #000000;
}

* {
    box-sizing: border-box;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}

body {
    font-family: "Noto Sans JP", "Noto Serif JP", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif, "Mate SC", "Orbitron", sans-serif;
    font-weight: var(--fw_reg);
    color: var(--font_color);
    letter-spacing: 1px;
    background-color: var(--base_color);
    margin: 0;
    padding: 0;
    margin-top: 80px;
}

h1,
h2,
h3,
p,
ul,
li,
dl,
dd,
dt {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}

li {
    list-style: none;
}

img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

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

.contact_link_box {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
}

.contact_link {
    display: flex;
    align-items: center;
    font-size: 24px;
    color: #fff;
    font-weight: bold;
    padding: 22px 20px;
    border: 1px solid var(--accent_color);
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

.contact_link:nth-child(2) {
    margin-left: 20px;
}

.contact_link:hover {
    background-color: var(--accent_color);
}

.contact_link>img {
    max-width: 50px;
    height: 50px;
    -o-object-fit: contain;
    object-fit: contain;
    margin-right: 10px;
}

.contact_link>span {
    display: inline-block;
}

.section_ttl_box {
    text-align: center;
}

.section_ttl_sm {
    font-size: 14px;
    color: var(--main_color);
}

.section_ttl {
    position: relative;
    font-size: 30px;
    padding-bottom: 10px;
}

.section_ttl::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 1px;
    background-color: var(--main_color);
}


@media only screen and (max-width: 1200px) {
    .inner {
        max-width: 1000px;
    }
}

@media only screen and (max-width: 1000px) {
    .inner {
        max-width: 700px;
    }

    .contact_link {
        font-size: 18px;
        padding: 10px;
    }
}

@media only screen and (max-width: 768px) {
    body {
        margin-top: 60px;
    }

    .inner {
        padding-left: 15px;
        padding-right: 15px;
    }

    .contact_link_box {
        flex-wrap: wrap;
        margin-top: 30px;
    }

    .contact_link {
        font-size: 16px;
    }

    .contact_link:nth-child(2) {
        margin-top: 30px;
    }

    .contact_link>img {
        max-width: 40px;
        height: 40px;
    }

    .section_ttl_sm {
        font-size: 12px;
    }

    .section_ttl {
        font-size: 24px;
    }

    .service_ttl {
        font-size: 24px;
    }
}


/**************************
↑↑↑↑ 共通 ↑↑↑↑
***************************/

/**************************
↓↓↓↓ ヘッダー ↓↓↓↓
***************************/
#header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
    width: 100vw;
    height: 80px;
    background-color: #fff;
}

#header_box {
    /* padding-left: 80px;
    padding-right: 80px; */
    display: flex;
    justify-content: space-between;
}

/* ロゴ */
#header_logo_box {
    height: 80px;
}

#header_logo_box h1 {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

#header_logo_box h1 a {
    /* width: 170px; */
    height: 60px;
    display: block;
}

#header_logo {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    transition: 0.3s;
}

#header_logo:hover {
    opacity: 0.5;
}

/* グローバルナビ */
#header_glonav_box {}

.header_glonav_list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 16px;
}

.header_glonav_list_item {
    font-family: var(--txt_ja);
    margin-left: 40px;
}

.header_glonav_list_item a {
    position: relative;
    text-decoration: none;
    font-weight: bold;
    color: var(--base_color);
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}

.header_glonav_list_item a:hover {
    color: var(--main_color);
}

.header_glonav_list_item a:hover::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    bottom: -5px;
    left: 0;
    background-color: var(--main_color);
}

.header_glonav_list_item img {
    width: 100%;
    height: 16px;
}

.header_glonav_list_item.ab a {
    border: 1px solid #111;
    padding: 9px 20px;
}

.header_glonav_list_item.ab a:hover {
    background-color: var(--btn_color);
    color: #fff;
    border: 1px solid var(--btn_color);
}

#hamburger {
    display: none;
}

#sp_glonav {
    display: none;
}



@media only screen and (max-width: 768px) {
    #header {
        height: 60px;
    }

    #header_box {
        /* padding-left: 20px;
        padding-right: 20px; */
    }

    #header_logo_box {
        height: 60px;
    }

    #header_logo_box h1 a {
        width: 170px;
    }

    #header_logo {}

    .header_glonav_box,
    .header_sns_box {
        display: none;
    }

    #sp_glonav_wrap {
        /* position: fixed;
        width: 100vw;
        overflow: hidden;
        height: 100vh;
        z-index: 100; */
    }

    #sp_glonav {
        position: fixed;
        top: 0;
        left: 100%;
        background: #000000;
        transition: .3s;
        z-index: 100;
        display: block;
    }

    #sp_glonav div {
        width: 100vw;
        height: calc(100vh - 60px);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 60px;
    }

    #sp_glonav ul {}

    #sp_glonav ul li {
        list-style-type: none;
        margin-bottom: 50px;
        line-height: 180%;
        text-align: center;
    }

    #sp_glonav a {
        display: block;
        text-decoration: none;
        color: #ffffff;
        transition: .3s;
        font-size: 16px;
    }

    #hamburger {
        display: block;
        position: absolute;
        top: 20px;
        right: 0px;
        width: 50px;
        height: 24px;
        cursor: pointer;
        transition: 1s;
        z-index: 1000;
    }

    .inner_line {
        display: block;
        position: absolute;
        left: 0;
        width: 30px;
        height: 2px;
        background-color: var(--base_color);
        transition: 0.3s;
        border-radius: 4px;
    }

    .line1 {
        top: 0;
    }

    .line2 {
        top: 11px;
    }

    .line3 {
        bottom: 0px;
    }

    .in {
        transform: translateX(-100%);
        -webkit-transform: translateX(-100%);
        -moz-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        -o-transform: translateX(-100%);
    }

    /* .Line_1,.Line_2,.Line_3{
    background: #000000;
    } */
    .line_open_1 {
        /*-45度回転させる*/
        transform: rotate(-225deg);
        top: 10px;
    }

    .line_open_2 {
        opacity: 0;
    }

    .line_open_3 {
        /*45度回転させる*/
        transform: rotate(225deg);
        bottom: 11px;
    }
}


/**************************
↑↑↑↑ ヘッダー ↑↑↑↑
***************************/

/**************************
↓↓↓↓ フッター ↓↓↓↓
***************************/
#footer {
    background-color: #222222;
}

.footer_box {
    /* padding: 60px 160px 20px 160px; */
    padding: 4rem 0 1.3rem 0;
}

.footer_nav_wrap {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer_logo_box {
    width: 50%;
}

.footer_logo_box a {
    width: 70%;
    display: block;
    height: auto;
}
.footer_logo_box a>img {
    -o-object-fit: contain;
       object-fit: contain;
}

.footer_logo {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    transition: 0.3s;
}

.footer_logo:hover {
    opacity: 0.5;
}

.footer_nav_box {
    width: 50%;
}

.footer_nav_list {
    display: flex;
    flex-wrap: wrap;
}

.footer_nav_item {
    margin-left: 60px;
    list-style: none;
    margin-bottom: 20px;
}

.footer_nav_item a {
    position: relative;
    color: var(--font_color);
    text-decoration: none;
}

.footer_nav_item.nb a:hover {
    color: var(--btn_color);
}

.footer_nav_item.nb a:hover::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    bottom: -5px;
    left: 0;
    background-color: var(--btn_color);
}

.footer_nav_item.sns:hover {
    opacity: 0.5;
}


.copyright_box {
    /* background-color: #333333; */
    text-align: center;
    color: #fff;
    padding-top: 10px;
    padding-bottom: 10px;
}

.top_scroll_box {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 10px;
    z-index: 5;
}

.top_scroll_box div {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #111;
    border-radius: 100px;
    cursor: pointer;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}

.top_scroll_box div:hover {
    background-color: var(--btn_color);
    border-color: var(--btn_color);
}

.top_scroll_box:hover svg path {
    fill: #ffffff;
}

@media only screen and (max-width: 768px) {
    .footer_box {
        padding: 2rem 0 1rem 0;
    }

    .footer_nav_wrap {
        display: block;
        margin-bottom: 20px;
    }

    .footer_nav_list {
        display: block;
    }
    .footer_nav_box {
        width: 100%;
    }
    .footer_logo_box {
        width: 100%;
        margin-bottom: 30px;
    }

    .footer_logo_box a {
        width: 250px;
        margin: auto;
    }

    .footer_nav_list {
        padding: 0 20px;
    }

    .footer_nav_item {
        line-height: 180%;
        margin-bottom: 30px;
        margin-left: 0;
        text-align: center;
    }

    .footer_nav_item.sns {
        margin-top: 20px;
    }
    .copyright_box {
        font-size: 12px;
    }
}




/**************************
↓↓↓↓ About ↓↓↓↓
***************************/
#about {
    margin-top: 100px;
    margin-bottom: 100px;
}

.about_box {
    position: relative;
    width: 100%;
    height: auto;
    text-align: center;
    padding-top: 70px;
    padding-bottom: 70px;
    box-sizing: border-box;
}

.about_border1::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 50%;
    height: 1px;
    background-color: var(--accent_color);
}

.about_border1::after {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 1px;
    height: 100%;
    background-color: var(--accent_color);
}

.about_border2::before {
    position: absolute;
    bottom: 0;
    right: 0;
    content: "";
    width: 50%;
    height: 1px;
    background-color: var(--accent_color);
}

.about_border2::after {
    position: absolute;
    bottom: 0;
    right: 0;
    content: "";
    width: 1px;
    height: 100%;
    background-color: var(--accent_color);
}

.about_logo {
    position: absolute;
    bottom: 30px;
    right: 50px;
    width: 150px;
    height: 150px;
    z-index: -1;
}

.about_ttl {
    font-size: var(--font_size_md);
    margin-bottom: 40px;
}

.about_txt {}

.about_txt p:first-child {
    margin-bottom: 16px;
}

@media only screen and (max-width: 768px) {
    #about {
        margin-top: 50px;
        margin-bottom: 50px;
    }

    .about_box {
        padding-top: 50px;
        padding-bottom: 50px;
        padding-left: 10px;
        padding-right: 10px;
    }

    .about_logo {
        position: absolute;
        top: 50%;
        left: 50%;
        bottom: unset;
        right: unset;
        transform: translate(-50%, -50%);
    }

    .about_ttl {
        font-size: 16px;
    }

    .about_txt {
        font-size: 12px;
    }
}

/* news */
.news {
    padding-top: 60px;
    padding-bottom: 80px;
    background-color: #222222;
}

.news_box {
    position: relative;
}

.news_list {
    margin-top: 30px;
}

.news_link {
    display: block;
    color: #fff;
    padding-top: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #fff;
}

.news_link:hover {
    opacity: 0.7;
}

.news_link_date {
    font-size: 14px;
    margin-bottom: 10px;
}

.news_more_box {
    position: absolute;
    top: 0;
    right: 0;
}

.news_more_box>a {
    display: block;
    width: 200px;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    border: 1px solid #fff;
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
}

.news_more_box>a:hover {
    color: #000000;
    background-color: #fff;
}

@media only screen and (max-width: 768px) {
    .news_link {
        padding-top: 10px;
        padding-bottom: 10px;
        ;
    }

    .news_more_box {
        position: unset;
        margin-top: 50px;
    }

    .news_more_box>a {
        margin-left: auto;
        margin-right: auto;
    }
}


/* audition */
.audition {
    padding-top: 50px;
    padding-bottom: 100px;
}

.audition_ttl {
    width: 30%;
}

.audition_ttl2 {
    position: relative;
    font-size: 40px;
    text-align: center;
    margin-top: 30px;
}

.audition_ttl2:before {
    position: absolute;
    content: '';
    top: 50%;
    left: 0;
    width: 20%;
    height: 1px;
    background-color: #fff;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.audition_ttl2:after {
    position: absolute;
    content: '';
    top: 50%;
    right: 0;
    width: 20%;
    height: 1px;
    background-color: #fff;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.audition_logo {
    margin-top: 50px;
    width: 162px;
    height: auto;
    margin-left: auto;
    margin-right: auto;
}

.audition_contents_box {
    margin-top: 100px;
}

.audition_first_content {
    margin-bottom: 100px;
}

.audition_first_content_img_box {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
}

.audition_first_content_img {
    width: 300px;
    height: 230px;
}

.audition_first_content_img:last-child {
    margin-left: 50px;
}

.audition_first_content_img.only {
    margin-left: 0;
    height: auto;
}

.audition_first_content_txt {
    text-align: center;
}

.audition_contents {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.audition_contents:last-child {
    margin-bottom: 0px;
}

.audition_contents_txt_box {
    width: 45%;
}

.audition_contents_ttl {
    font-size: 24px;
    margin-bottom: 30px;
}

.audition_contents_txt {}

.audition_contents_img_box {
    width: 45%;
    height: 350px;
}

@media only screen and (max-width: 768px) {
    .audition_ttl {
        width: 50%;
    }

    .audition_ttl2 {
        font-size: 20px;
    }

    .audition_ttl2::before,
    .audition_ttl2::after {
        width: 0;
        height: 0;
    }

    .audition_contents_box {
        margin-top: 50px;
        margin-bottom: 50px;
    }

    .audition_contents {
        flex-direction: column;
    }

    .audition_contents:nth-child(2n) {
        flex-direction: column-reverse;
    }

    .audition_contents_txt_box {
        width: 100%;
        margin-bottom: 30px;
    }

    .audition_contents_img_box {
        width: 100%;
        height: 53vw;
    }

    .audition_first_content {
        margin-bottom: 50px;
    }

    .audition_first_content_img_box {
        margin-bottom: 30px;
        justify-content: space-between;
    }

    .audition_first_content_img_box.service_c {
        justify-content: center;
    }

    .audition_first_content_img {
        width: 48%;
        height: auto;
    }

    .audition_first_content_img:last-child {
        margin-left: 0;
    }
}


/* about */
.about2 {}

.about2_box {
    text-align: center;
}

.about2_img_box {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px;
}

.about2_subttl {
    position: relative;
    display: inline-block;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    margin-top: 50px;
    margin-bottom: 30px;
}

.about2_subttl:before {
    position: absolute;
    content: '';
    top: 50%;
    left: -130px;
    width: 100px;
    height: 1px;
    background-color: #fff;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.about2_subttl:after {
    position: absolute;
    content: '';
    top: 50%;
    right: -130px;
    width: 100px;
    height: 1px;
    background-color: #fff;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.about2_txt {
    text-align: center;
    font-weight: 300;
    line-height: 30px;
    letter-spacing: 1px;
    margin-bottom: 50px;
}

@media screen and (max-width: 768px) {
    .about2_subttl {
        font-size: 20px;
    }
    .about2_subttl:before,
    .about2_subttl:after {
        width: 0;
        height: 0;
    }
}



#About_Second_Contents_Wrap {
    width: 96%;
    margin: 0 auto;
    background: rgba(255,255,255,0.42);
    padding: 12px 0;
    margin-bottom: 68px;
    border-radius: 16px;
}

#About_Second_Contents_Ttl {
    font-size: 24px;
    letter-spacing: 0.02em;
    margin-top: 36px;
    margin-bottom: 56px;
    text-align: center;
    font-weight: bold;
}



@media screen and (min-width: 1024px) {
    .About_Second_Contents_Box_Wrap {
        display: flex;
        justify-content: space-between;
        width: 88%;
        margin: 0 auto;
    }
}

.About_Second_Contents_Box {
    width: 92%;
    margin: 0 auto 64px;
    padding: 48px 0;
    border-radius: 25px;
    box-shadow: rgba(62, 62, 62, 0.068) 0px 0px 16px;
    position: relative;
    background: #ffffffc7;
}

@media screen and (min-width: 768px) {
    .About_Second_Contents_Box {
        width: 68%;
    }
}

@media screen and (min-width: 1024px) {
    .About_Second_Contents_Box {
        width: 44%;
        margin: 0 auto 64px;
        padding: 48px 0;
    }

}

.About_Second_Contents_Box::before {
    content: "";
    display: block;
    font-weight: bold;
    font-size: 56px;
    line-height: 56px;
    background-image: linear-gradient(150deg, rgba(146, 0, 126, 1), rgba(248, 49, 31, 1));
    color: rgba(255, 200, 122, 1);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -56%);
    height: 56px;
    width: 83px;
    overflow: hidden;
}


.About_Second_Contents_Box01::before {
    content: "01";
}

.About_Second_Contents_Box02::before {
    content: "02";
}

.About_Second_Contents_Box03::before {
    content: "03";
}

.About_Second_Contents_Box04::before {
    content: "04";
}

.About_Second_Contents_Box04 {
    margin-bottom: 40px;
}

@media screen and (min-width: 1024px) {
    .About_Second_Contents_Box04 {
        margin: 0 auto 64px;
    }
}

.About_Second_Contents_Txt {
    font-size: 18px;
    letter-spacing: 0.02em;
    text-align: center;
    line-height: 1.8;
    margin-bottom: 0;
    color: #212529;
}

.About_Second_Contents_Txt span {
    font-weight: bold;
    background: linear-gradient(transparent 50%, #ffff66 0%);
}


/* contact */
.contact {
    margin-bottom: 100px;
}
.contact_box {

}
.contact_txt {
    color: var(--font_color);
    text-align: center;
    margin-bottom: 20px;
}
.contact_point {
    text-align: right;
    margin-bottom: 10px;
}
.contact_point span {
    color: red;
}
.contact_form {
    color: #000000;
    padding: 90px 40px;
    margin-top: 50px;
    background-color: #ffffff;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}
.input_box {
    display: flex;
    align-items: center;
    letter-spacing: 0;
    border-bottom: 1px solid #999999;
    margin-bottom: 30px;
    padding-bottom: 30px;
    padding-right: 30px;
}
.input_box.check {
    align-items: start;
}
.input_box:last-child {
    border: none;
}
.input_label {
    padding-left: 30px;
    margin-right: 30px;
    min-width: 350px;
}
.input_label>p {
    font-size: 14px;
    font-weight: 200;
    color: #444444;
    margin-top: 5px;
}
.checkbox_wrap {
    display: flex;
    flex-wrap: wrap;
}
.checkbox {
    margin-right: 50px;
    margin-bottom: 20px;
}
.required {
    font-size: 12px;
    color: #fff;
    font-weight: bold;
    background-color: #DF0000;
    padding: 2px 5px;
    margin-left: 10px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}
.input_text {
    width: 100%;
    height: 40px;
    padding: 0 10px;
    border: 1px solid #aaa;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}
.input_text.middle {
    margin-top: 20px;
    margin-bottom: 20px;
}
.input_select {
    width: auto;
    height: 40px;
    padding: 0 10px;
    border: none;
    background-color: #EEEEEE;
}
.input_textarea {
    width: 100%;
    height: auto;
    padding: 0 10px;
    border: 1px solid #aaa;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}
.form_txt {
    margin-top: 50px;
    text-align: center;
    font-weight: 400;
    letter-spacing: 0;
}
.form_btn {
    margin-top: 50px;
}
.send_btn {
    margin: auto;
    width: 500px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    color: #fff;
    background-image: linear-gradient(90deg, rgba(146, 0, 126, 1), rgba(248, 49, 31, 1));
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}
.send_btn:hover {
    opacity: 0.7;
}

span.wpcf7-form-control-wrap {
    width: 100%;
}

@media only screen and (max-width: 768px) {
    .contact_form {
        padding: 50px 15px;
    }
    .checkbox_wrap {
        display: block;
    }
    .checkbox {
        margin-bottom: 20px;
    }
    .checkbox:last-child {
        margin-bottom: 0;
    }
    .input_box {
        display: block;
        padding-bottom: 20px;
        padding-right: 0px;
    }
    .input_label {
        padding-left: 0;
        margin-right: 0;
        margin-bottom: 20px;
    }
    .send_btn {
        width: 100%;
        height: 40px;
    }
}

/* corporate */
.corporate {
    margin-bottom: 100px;
}
.corporate_box {
    margin-top: 50px;
}
.corporate_box dl {
    display: flex;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--main_color);
    width: 70%;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 30px;
}
.corporate_box dt {
    width: 150px;
    margin-right: 100px;
}
.corporate_box dd {

}

@media only screen and (max-width: 768px) {
    #corporate {
        margin-top: 50px;
        margin-bottom: 50px;
    }
    .corporate_box dl {
        display: block;
        width: 80%;
    }
    .corporate_box dt {
        margin-bottom: 20px;
    }
}


.all_news {
    padding-top: 100px;
    padding-bottom: 100px;
}
.single_news {
    padding-top: 100px;
    padding-bottom: 100px;
}
.Date_Txt {
    margin-bottom: 10px;
    letter-spacing: 2px;
}
.Detail_Ttl_Txt {
    font-size: 20px;
    letter-spacing: 2px;
}
.Detail_Ttl_Wrap {
    margin-top: 50px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #fff;
}
.Detail_Content_Wrap {
    line-height: 2rem;
    margin-bottom: 50px;
}

.AllInfo_Link a {
    display: block;
    width: 200px;
    padding: 10px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid #fff;
    text-align: center;
    color: #fff;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}
.AllInfo_Link a:hover {
    color: #000;
    background-color: #fff;
    border-color: #fff;
}

@media only screen and (max-width: 768px) {
    .all_news {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .single_news {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}


/* sponsor */
.sponsor {
    margin-bottom: 100px;
}
.sponsor_box {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 50px;
}
.sponsor_item {
    width: 48%;
}
.sponsor_item_logo {
    width: auto;
    height: 120px;
    margin-left: auto;
    margin-right: auto;
}
.sponsor_item_logo>img {
    -o-object-fit: contain;
       object-fit: contain;
}

@media only screen and (max-width: 768px) {
    .sponsor {
        margin-bottom: 50px;
    }
    .sponsor_item {
        width: 100%;
    }
    .sponsor_item:last-child {
        margin-top: 50px;
    }
    .sponsor_item_logo {
        height: 60px;
    }
}