@charset "UTF-8";

/*共通部分
-------------------------------*/
html {
    /* font-size: 62.5%;1rem=10px */
    font-size: 10px;
}

body {
    font-size: 1.6rem;
    /*16px*/
    color: #ffffff;
    background-color: #132C4E;
    -webkit-font-smoothing:antialiased;
    font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
}

main {
    max-width: 1240px;
}

.inner {
    margin-left: 1.3333%;
    margin-right: 1.3333%;
}

.bg {
    background-color: rgba(0, 0, 0, 0.3);
}

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

img.icon {
    float: left;
    margin-left: 1rem;
    width: 3.5rem;
}

/* リンク無効 */
a.disabled{
    pointer-events: none;
}

a,
a:link,
a:visited {
    color: #ffffff;
}

a:hover {
    background-color: dimgray;
}

li {
    list-style-type: none;
}

li a,
li a:link,
li a:visited {
    text-decoration: none;
}

body {
    font-size: 1.6rem;
}

h1 {
    font-size: 3rem;
    font-family: 'Anton', sans-serif;
    text-shadow: 0 3px 6px #000000;
    line-height: 1;
}

h2 {
    font-size: 1.8rem;
    font-family: 'Anton', sans-serif;
    text-shadow: 0 3px 6px #000000;
}

h3 {
    font-size: 2.5rem;
    font-family: 'Open Sans', sans-serif;
    text-shadow: 0 3px 6px #000000;
}

h4 {
    font-size: 1.6rem;
    font-family: 'Open Sans', sans-serif;
    letter-spacing: 2px;
}

.pc {
    display: none !important;
}

.sp {
    display: block !important;
}

.Racing_Sans_One {
    font-family: 'Racing Sans One', cursive;
}

.noto_san_jp {
    font-family: 'Noto Sans JP', sans-serif;
}

section h3.sub_title_teko {
    text-shadow: none;
    font-family: 'Teko', sans-serif;
    font-size: 5rem;
}

hr {
    width: 100px;
    margin-left: auto;
    margin-right: auto;
}

section.next_back {
    margin: 2.5rem 0;
}

section.next_back nav ul {  
    display: flex;
    justify-content: space-around;
}

section.next_back nav ul li {
    width: 15%;
    max-width: 100px;
    
}

span.red {
    color: rgb(255, 0, 0);
    font-size: 16px;
}

/* PC版
------------------------------- */
@media (min-width: 751px) {

    /* 751px以上*/
    main {
        margin-left: auto;
        margin-right: auto;
    }

    .wrapper {
        max-width: 1240px;
    }

    .inner {
        margin-left: 3.2258%;
        margin-right: 3.2258%;
    }

    img.icon {
        margin-left: 2rem;
        width: 75px;
    }

    h1 {
        font-size: 7rem;
    }

    h2 {
        font-size: 3rem;
    }

    h3 {
        font-size: 3rem;
    }

    h3.sub_title {
        padding: 1.5rem 0;
    }

    hr {
        width: 200px;
        margin-left: auto;
        margin-right: auto;
    }

    section.next_back {
        margin: 5rem 0;
    }

    /* パソコンで見たときは"pc"のclassがついた画像が表示される */
    .pc {
        display: block !important;
    }

    .sp {
        display: none !important;
    }

    div.sp_menu {
        display: none;
    }
}

/* PC版大文字
------------------------------- */
@media (min-width: 1000px) {
    h1 {
        font-size: 9rem;
    }

    h2 {
        font-size: 5rem;
    }
}



/*メニュ-*/
#main_header {
    height: 60px;
    font-size: 2rem;
}

#main_header div.wrapper {
    position: fixed;
    width: 100%;
    z-index: 40;
    background-color: #6BBCAC;

}

#main_header div.inner {
    display: flex;
    height: 100%;
}

#main_header div.inner p {
    margin: 2rem 0 0 1.3333%;
}

#main_header div.inner img {
    width: 80px;
    padding-top: 15px;
}

#main_header div.inner nav {
    margin-left: 25%;
}

#main_header div.inner ul {
    display: flex;
    height: 100%;
}

#main_header nav ul li a,
#main_header nav ul li a:link,
#main_header nav ul li a:visited {
    display: block;
    padding: 2rem 0;
    color: #132C4E;
}

#main_header nav ul li.entry_link a,
#main_header nav ul li.entry_link a:link,
#main_header nav ul li.entry_link a:visited {
    color: #ffffff;
}

#main_header nav ul li.entry_link {
    display: block;
    width: 100px;
    background-color: #D5421C;
    text-align: center;
}

/*ハンバーガーメニュ-*/
#nav-container {
    position: fixed;
    height: 100vh;
    width: 100%;
    pointer-events: none;
}

#nav-container .bg {
    position: absolute;
    top: 60px;
    left: -1.3333%;
    width: 100%;
    height: calc(100vh - 60px);
    visibility: hidden;
    opacity: 0;
    transition: .3s;
    background: #000;
}

#nav-container:focus-within .bg {
    visibility: visible;
    opacity: .6;
}

#nav-container * {
    visibility: visible;
}

.button {
    position: relative;
    float: right;
    flex-direction: column;
    justify-content: center;
    z-index: 1;
    -webkit-appearance: none;
    background: transparent;
    height: 30px;
    width: 30px;
    cursor: pointer;
    pointer-events: auto;
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    margin-top: 2rem;
    margin-right: 2.5rem;
}

.icon-bar {
    display: block;
    width: 100%;
    height: 3px;
    background: #ffffff;
    transition: .3s;
}

.icon-bar+.icon-bar {
    margin-top: 5px;
}

#nav-container:focus-within .button {
    pointer-events: none;
}

#nav-container:focus-within .icon-bar:nth-of-type(1) {
    transform: translate3d(0, 8px, 0) rotate(45deg);
}

#nav-container:focus-within .icon-bar:nth-of-type(2) {
    opacity: 0;
}

#nav-container:focus-within .icon-bar:nth-of-type(3) {
    transform: translate3d(0, -8px, 0) rotate(-45deg);
}

#nav-content {
    margin-top: 60px;
    padding: 20px;
    width: 60%;
    max-width: 200px;
    position: absolute;
    top: 0;
    right: 0;
    height: calc(100% - 60px);
    background: #132C4E;
    pointer-events: auto;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    transform: translateX(100%);
    transition: transform .3s;
    will-change: transform;
    contain: paint;
}

#nav-content ul {
    height: 100%;
    display: flex;
    flex-direction: column;
}

#nav-content li a {
    padding: 10px 0;
    display: block;
    text-transform: uppercase;
    transition: color .1s;
}

#nav-container:focus-within #nav-content {
    transform: none;
}


/* PC版
------------------------------- */
@media (min-width: 751px) {
    /* 751px以上*/

    #main_header {
        max-width: 1240px;
        margin-left: auto;
        margin-right: auto;
        height: 100px;
        transition: top .3s;
    }

    #main_header .inner {
        margin-left: 1.6129%;
        margin-right: 1.6129%;
    }

    #main_header div.inner img {
        width: 140px;
        padding-top: 30px;
        transition: padding-top .3s, width .3s;
    }

    #main_header nav {
        margin: 0;
        font-size: 3rem;
        width: 100%;
    }

    #main_header div.inner nav {
        margin-left: 9.7%;
    }

    #main_header nav ul li {
        display: block;
        max-width: 170px;
        text-align: center;
        width: 20%;
    }

    #main_header nav ul li.entry_link {
        max-width: 170px;
        width: 20%
    }

    #main_header nav ul li a,
    #main_header nav ul li a:link,
    #main_header nav ul li a:visited {
        padding: 3.5rem 0;
        transition: padding-top .3s;
    }

    li.line {
        position: relative;
        display: inline-block;
    }

    /*以下で線を表示*/
    li.line:before {
        content: '';
        position: absolute;
        left: 50%;
        bottom: 5px;
        /*線の上下位置*/
        display: inline-block;
        width: 50px;
        /*線の長さ*/
        height: 5px;
        /*線の太さ*/
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        /*位置調整*/
        background-color: #ffffff;
        ;
        /*線の色*/
    }

    /*200px下がったら縮小表示*/
    #main_header.small {
        top:　60px;
    }

    #main_header.small div.inner img {
        width: 80px;
        padding-top: 20px;
    }

    #main_header.small nav ul li a,
    #main_header.small nav ul li a:link,
    #main_header.small nav ul li a:visited {
        padding: 1.5rem 0;
    }

}

/*メインヴィジュアル-------------*/
#mv {
    max-width: 100%;
    position: relative;
    z-index: 15;
}

#mv div.logo {
    position: absolute;
    top: 1.5rem;
    right: 1.3333vw;
    text-align: right;
}

#mv div.logo h2 {
    margin-top: 2rem;
}

#mv div.logo2 {
    position: absolute;
    top: 1.5rem;
    left: 1.3333vw;
    text-align: left;
    color: #fd0000;
}

#mv div.logo2 h2 {
    margin-bottom: 2rem;

}

#mv_bg {
    max-width: 1240px;
    position: fixed;
    top: 60px;
    left: auto;
    z-index: 5;
    opacity: 0.05;
    pointer-events: none;
}

#mv_bg div.logo {
    position: absolute;
    top: 1.5rem;
    right: 1.3333vw;
    text-align: right;
}

#mv_bg div.logo h2 {
    margin-top: 2rem;
}

/* PC版
------------------------------- */
@media (min-width: 751px) {

    /* 751px以上*/
    #mv div.logo {
        top: 6.0483%;
    }

    #mv div.logo h2 {
        margin-top: 4rem;
    }

    #mv div.logo2 {
        top: 6.0483%;
    }

    #mv div.logo2 h2 {
        margin-bottom: 4rem;
    }

    #mv_bg div.logo h2 {
        margin-top: 4rem;
    }

}

/* パンくずリスト
------------------------------- */
#breadcrumbs ul {
    padding: 2rem 0;
    margin-left: 1.3333%;
}

#breadcrumbs ul li {
    display: inline;
}

#breadcrumbs ul li:after {
    /* >を表示*/
    content: '>';
    padding: 0 1rem;
    color: #ffffff;
}

#breadcrumbs ul li:last-child:after {
    content: '';
}

#breadcrumbs ul li a {
    text-decoration: none;
    border-bottom: 1px #ffffff solid;
}


/* PC版
------------------------------- */
@media (min-width: 751px) {
    #breadcrumbs ul {
        padding: 4rem 0;
        margin-left: 3.2258%;
    }
}

/* board_are
--------------------------------*/
#board_area {
    margin: 2.5rem 0 5rem 0 ;
    line-height: 2rem;
}

#board_area h3 {
    margin-left: 6rem;
    height: 3.5rem;
}

#board_area ul {
    padding: 2rem 0 ;
    margin-left: 5%;
    
}

#board_area ul li {
    padding-top: 1.6rem;
    text-decoration: underline;
    list-style-type: disc;
    margin-left: 5%;
}

#board_area ul li:last-child {
    padding-bottom: 1.6rem;
}

/* PC版
------------------------------- */
@media (min-width: 751px) {
    #board_area {
        margin: 5rem 0 10rem 0 ;
        font-size: 3rem;
        line-height: 3rem;
    }

    #board_area ul li {
        padding-top: 4rem;
    }

    #board_area ul li:last-child {
        padding-bottom: 4rem;
    }

    #board_area h3 {
        height: 5rem;
    }
}


/*welcome_are
--------------------------------*/
#welcome_area {
    margin: 2.5rem 0 5rem 0 ;
    line-height: 20px;
}

#welcome_area h3 {
    margin-left: 6rem;
    height: 3.5rem;
}

#welcome_area dl {
    padding: 2rem 0 ;
}

#welcome_area dl dt {
    padding-bottom: 1.6rem;
}

#welcome_area dl dd:last-child {
    padding-top: 1.6rem;
}

#welcome_area .Closing_Remarks {
    margin: 4rem 5%;
    width: 90%;
}

/* PC版
------------------------------- */
@media (min-width: 751px) {
    #welcome_area {
        margin: 5rem 0 10rem 0 ;
        font-size: 1.8rem;
        line-height: 25px;
    }

    #welcome_area dl {
        padding: 5rem 0 ;
    }

    #welcome_area dl dt {
        padding-bottom: 1.8rem;
    }

    #welcome_area dl dd:last-child {
        padding-top: 1.8rem;
    }

    #welcome_area h3 {
        height: 5rem;
    }

}


/*お知らせ
--------------------------------*/
#news {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
}

#news .inner {
    margin-left: 2.439%;
    margin-right: 2.439%;
}


#news h3 {
    margin-left: 6rem;
}

#news ul {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

#news li a {
    display: block;
    padding: 0.4rem;
}

#news p {
    text-align: center;
    padding-bottom: 2rem;
    font-size: 2.5rem;
}

#news time {
    color: grey;
    font-weight: bold;
    float: left;
    width: 9rem;
}

#news .text {
    float: none;
    width: auto;
    margin-left: 13.3333%;
}

/* SNS
-------------------------------- */
#sns {
    padding: 2.5rem 0;
}

/* box
------------------------------- */
/* PC版
------------------------------- */
@media (min-width: 751px) {

    /* 751px以上*/
    .box1::after {
        display: block;
        content: "";
        clear: both;
    }

    #news {
        width: 66.129%;
        float: left;
        margin-top: 2rem;
        margin-bottom: 10rem;
    }
    
    #news time {
    width: 20rem;
}

    #sns {
        width: 33.871%;
        float: left;
        padding-top: 10rem;
        padding-bottom: 10rem;

    }

    #sns .inner {
        margin-left: 0;
        margin-right: 4.9205%;
    }

    h3.sub_title {
        font-size: 5rem;

    }

    #news li {
        margin-bottom: 1.5rem;
    }

    #news li:last-child {
        margin-bottom: 8rem;
    }

    #news li a {
        padding: 0.51rem;
    }

    #news ul {
        padding-top: 5rem;
    }

    #news p {
        padding-bottom: 5rem;
    }

    #news ul.noto_san_jp {
        font-size: 2.5rem;
    }
}


/* main_slide
-------------------------------- */
#main_slide {
    padding: 2.5rem 0;
}

#main_slide .slide_title1,
#main_slide .slide_title2,
#main_slide .slide_title3,
#main_slide .slide_title4,
#main_slide .slide_title5,
#main_slide .slide_title6 {
    position: relative;
}

#main_slide h3 {
    font-size: 3rem;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
    text-align: center;
    border-bottom: #ffffff 2px solid;
}

#main_slide h3 span {
    font-size: 2.4rem;
}

/* PC版
------------------------------- */
@media (min-width: 751px) {
    /* 751px以上*/

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

    #main_slide {
        padding: 10rem 0;
    }

    #main_slide .inner {
        margin-left: 1.6129%;
        margin-right: 1.6129%;
    }

    #main_slide .slide_title1,
    #main_slide .slide_title2,
    #main_slide .slide_title3,
    #main_slide .slide_title4,
    #main_slide .slide_title5,
    #main_slide .slide_title6 {
        max-width: 400px;
        float: left;
        width: 33.3333%;
    }

    #main_slide h3.font_hide {
        display: none;
    }

}

/* PC版大文字
------------------------------- */
@media (min-width: 1000px) {

    /* 1000px以上*/
    #main_slide h3 {
        font-size: 4rem;
    }

    #main_slide h3 span {
        font-size: 3rem;
    }
}


/* slide_show
-------------------------------- */
#slide_show {
    padding: 2.5rem 0;
}

#slide_show #slider ul li img {
    width: 64.5161%;
    margin-left: 17.74175%;
    margin-right: 17.74175%;
}

#slider ul {
    position: relative;
}

#slider li {
    position: absolute;
    width: 100%;
}

#button {
    padding-top: 37.3333%;
    text-align: center;
}

#button ul {
    display: inline-block;
}

#button ul li {
    float: left;
    margin-right: 15px;
}

#button ul li:last-child {
    margin-right: 0;
}

#button ul li a {
    text-indent: -9999px;
    text-decoration: none;
    display: block;
    width: 20px;
    height: 20px;
    border-radius: 10px;
    background: #ffffff;
}

#button ul li a.target {
    background: #6BBCAC;
}

@media (min-width: 751px) {

    /* 751px以上*/
    #slide_show {
        padding: 10rem 0;
    }
}

/* エントリーエリア
-------------------------------- */
#entry_area {
    margin: 2.5rem 0;
    text-align: center;
}

#entry_area .inner>p {
    padding-top: 3rem;
    padding-bottom: 2.5rem;
}

#entry_area .inner p:nth-of-type(2) {
    padding-top: 2.5rem;
    padding-bottom: 3rem;
}

#entry_area .entry_bottom {
    width: 68.49315068%;
    background-color: #D5421C;
    margin-left: 15.753425%;
    margin-right: 15.753425%;
}

#entry_area .entry_bottom span {
    font-size: 3rem;

}

#entry_area .entry_bottom p a,
#entry_area .entry_bottom p a:link,
#entry_area .entry_bottom p a:visited {
    text-decoration: none;
    display: block;
    padding-top: 3.15rem;
    padding-bottom: 3.15rem;
}

/* PC版
------------------------------- */
@media (min-width: 715px) {

    /* 715px以上*/
    #entry_area {
        margin: 10rem 0;
        font-size: 2.5rem;
    }

    #entry_area .inner>p {
        padding-top: 5rem;
        padding-bottom: 2rem;
    }

    #entry_area .inner p:nth-of-type(2) {
        padding-top: 3rem;
        padding-bottom: 5rem;
    }

    #entry_area .inner {
        margin-left: 0;
        margin-right: 0;
    }

    #entry_area .entry_bottom {
        width: 39.1666%;
        margin-left: 30.4167%;
        margin-right: 30.4167%;
    }

    #entry_area .entry_bottom span {
        font-size: 5rem;
        letter-spacing: 0.5rem;

    }
}

/* 主催者HP_link
-------------------------------- */

#organizer_link {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
}

#organizer_link .inner {
    margin-left: 4%;
    margin-right: 4%;
}

#organizer_link .inner p {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

#organizer_link .inner ul {
    display: flex;
    justify-content: space-between;
}

#organizer_link .inner ul li a,
#organizer_link .inner ul li a:link,
#organizer_link .inner ul li a:visited {
    display: block;
}

#organizer_link a:hover img {
    opacity: 0.6;
    transition-duration: 0.3s;
    display: block;
}

@media (min-width: 751px) {

    /* 751px以上*/
    #organizer_link::after {
        display: block;
        content: "";
        clear: both;
    }

    #organizer_link {
        margin-top: 10rem;
        margin-bottom: 5rem;
    }

    #organizer_link img {
        max-width: 775px;
        float: left;
        margin-bottom: 5rem;
    }
    
    #organizer_link .inner {
        float: left;
        width: 335px;
        margin-left: 7.5rem;
        font-size: 2rem;
    }

    #organizer_link .inner p {
        padding-top: 0;
        padding-bottom: 5rem;

    }
}

/* フッター
-------------------------------- */
#main_footer {
    background-color: #6BBCAC;
    height: 150px;
    text-align: center;

}

#main_footer p {
    padding-top: 2rem;
}

#main_footer p::before {
    content: url(../images/top.png);
}

#main_footer h4 {
    padding-top: 4rem;
    line-height: 2.4rem;
}

@media (min-width: 715px) {

    /* 715px以上*/
    #main_footer {
        margin-left: auto;
        margin-right: auto;
    }

    #main_footer p {
        padding-top: 3rem;
    }

    #main_footer h4 {
        padding-top: 4rem;
        line-height: 2.4rem;
        font-size: 2rem;
    }
}

/* NEWS_P
-------------------------------- */
@media (min-width: 715px) {
    div.news_p #news {
        width: 100%;
        float: none;

    }
}

/* LINK
-------------------------------- */
#link h3.sub_title_teko,
#link2 h3.sub_title_teko,
#link3 h3.sub_title_teko,
#link4 h3.sub_title_teko {
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    font-size: 3rem;
    letter-spacing: 0.2rem;
    margin-left: 1.3333%;
    margin-right: 1.3333%;
}

#link3 h3.sub_title_teko,
#link4 h3.sub_title_teko {
    margin-top: 0;
}

#link2,
#link3,
#link4 {
    margin-bottom: 2.5rem;
    line-height: 2.5rem;
}

#link2 a:hover img,
#link3 a:hover img,
#link4 a:hover img{
    opacity: 0.6;
    transition-duration: 0.3s;
    display: block;
}

/* LINK2
-------------------------------- */
#link2 .shops {
    margin-bottom: 2.5rem;
}

#link2 .shops h5 {
    margin: 1.5rem 0 1.5rem 0;
}

#link2 .inner .shops ul li:first-child {
    margin-bottom: 2rem;
}

/* LINK3
-------------------------------- */
#link3 .shops {
    margin-bottom: 2.5rem;
}

#link3 .shops h5 {
    margin: 1.5rem 0 1.5rem 0;
}

#link3 .inner .shops ul li:first-child {
    margin-bottom: 2rem;
}

/* LINK4
-------------------------------- */
#link4 .shops {
    margin-bottom: 2.5rem;
}

#link4 .inner .shops ul li:first-child {
    margin-bottom: 2rem;
}

#link4 .shops h5 {
    margin: 1.5rem 0 1.5rem 0;
}

@media (min-width: 751px) {

    /* 751px以上*/
    a[href^="tel:"] {
        pointer-events: none;
    }

    #link2,
    #link3,
    #link4 {
        margin-bottom: 5rem;
        line-height: 2.5rem;
    }

    /* LINK2
-------------------------------- */
    #link2 .shops {
        width: 47.5%;
        float: left;
        margin-bottom: 2rem;
    }

    #link2 .shops h5 {
        text-align: center;
    }

    #link2 .inner .shops ul li:first-child {
        margin-bottom: 2rem;
    }

    #link2 .inner {
        overflow: hidden;
    }

    #link2 .inner .shops:nth-child(n+2) {
        margin-left: 5%;
    }

    #link2 .inner .shops:nth-child(2n+1) {
        margin-left: 0;
        clear: both;
    }

    /* LINK3
-------------------------------- */
    #link3 .shops {
        width: 47.5%;
        float: left;
        margin-bottom: 2rem;
    }

    #link3 .shops h5 {
        text-align: center;
    }

    #link3 .inner .shops ul li:first-child {
        margin-bottom: 2rem;
    }

    #link3 .inner {
        overflow: hidden;
    }

    #link3 .inner .shops:nth-child(n+2) {
        margin-left: 5%;
    }

    #link3 .inner .shops:nth-child(2n+1) {
        margin-left: 0;
        clear: both;
    }

    /* LINK4
-------------------------------- */
    #link4 .shops {
        width: 47.5%;
        float: left;
        margin-bottom: 2rem;
    }

    #link4 .shops h5 {
        text-align: center;
    }

    #link4 .inner .shops ul li:first-child {
        margin-bottom: 2rem;
    }

    #link4 .inner {
        overflow: hidden;
    }

    #link4 .inner .shops:nth-child(n+2) {
        margin-left: 5%;
    }

    #link4 .inner .shops:nth-child(2n+1) {
        margin-left: 0;
        clear: both;
    }
}


/* ABOUT
-------------------------------- */
#about {
    margin-bottom: 2.5rem;
}

#about dl {
    padding: 2rem 0;
    line-height: 2.5rem;
}


#about dl dd:last-of-type {
    margin-bottom: 0;
}

@media (min-width: 715px) {
    #about {
        margin-bottom: 10rem;
    }

    #about .inner {
        margin-left: 1.6129%;
        margin-right: 1.6129%;
    }

    #about dl {
        padding: 5rem 0;
        line-height: 25px;
    }
}

/* about_6fes
-------------------------------- */
#about_6fes {
    margin-bottom: 2.5rem;
}

#about_6fes dl {
    padding: 2rem 0;
    line-height: 2.5rem;
}


#about_6fes dl dd:last-of-type {
    margin-bottom: 0;
}

@media (min-width: 715px) {
    #about_6fes {
        margin-bottom: 10rem;
    }

    #about_6fes .inner {
        margin-left: 1.6129%;
        margin-right: 1.6129%;
    }

    #about_6fes dl {
        padding: 5rem 0;
        line-height: 25px;
    }
}


/* REGULATION
-------------------------------- */
#regulation {
    margin: 2.5rem 0;
    line-height: 3rem;
    color: #dadada;
}

#regulation h3.sub_title {
    height: 5rem;
}

#regulation section h5 {
    border-bottom: 1px #D5421C solid;
    font-size: 2rem;
    line-height: 2.5rem;
    background-color: rgba(0, 0, 0, 0.3);
}

#regulation section dl {
    line-height: 2.5rem;
}

#regulation section h5,
#regulation section div.reg_g {
    width: 97.2604%;
    height: auto;
    text-align: left;
    padding: 2.5rem 1.3698% 2.5rem 1.3698%;
}

#reg1,
#reg2,
#reg3,
#reg4,
#reg5,
#reg6,
#reg7,
#reg8,
#reg9 {
    border-top: 1px #D5421C solid;
    border-left: 1px #D5421C solid;
    border-right: 1px #D5421C solid;
    box-sizing: border-box;
}

#reg10 {
    border: 1px #D5421C solid;
    box-sizing: border-box;

}

#reg2 dl dd:nth-of-type(4),
#reg3 dl dd:last-of-type,
#reg4 dl dd:nth-of-type(n+6),
#reg5 dl dd:nth-of-type(6),
#reg6 dl dd:nth-of-type(5),
#reg9 dl dd:nth-of-type(5) {
    font-size: 1.4rem;
}

#reg2 dl dd:nth-of-type(4)::before,
#reg3 dl dd:last-of-type::before,
#reg4 dl dd:nth-of-type(6)::before,
#reg5 dl dd:nth-of-type(6)::before,
#reg6 dl dd:nth-of-type(5)::before,
#reg9 dl dd:nth-of-type(5)::before {
    content: "※";
}

#reg3 dl dd:last-of-type,
#reg4 dl dd:nth-of-type(5),
#reg5 dl dt:nth-of-type(2),
#reg5 dl dd:nth-of-type(4),
#reg8 dl.reg8_2 dt,
#reg8 dl.reg8_2 dd,
#reg8 dl.reg8_3 dt,
#reg8 dl.reg8_4 dt {
    margin-top: 2rem;
}

#reg4 dl dt:nth-of-type(n+2),
#reg7 dl dt:nth-of-type(n+2),
#reg8 dl.reg8_5 dt,
#reg9 dl dt:nth-of-type(n+2) {
    font-weight: bold;
    margin-top: 2rem;
}

#reg5 dl dt,
#reg7 dl dt,
#reg8 dl.reg8_2 dt,
#reg8 dl.reg8_3 dt,
#reg8 dl.reg8_4 dt,
#reg8 dl.reg8_5 dt,
#reg9 dl dt {
    font-size: 2.5rem;
    font-weight: bold;
}

#reg8 dl.reg8_1 dd,
#reg8 dl.reg8_5 dt {
    margin-bottom: 2rem;
}

#reg5 dl dt::before,
#reg8 dl.reg8_1 dt::before,
#reg10 dl dt::before,
#reg10 dl dd::before {
    content: "★";
}

#reg8 dl.reg8_5 img {
    width: 75px;
}

#reg8 dl.reg8_5 dd:nth-of-type(n+2) {
    margin-top: 2rem;
}

#reg8 dl.reg8_5 span.whi {
    color: #ffffff;
    font-weight: bold;
    padding-left: 2rem;
}

#reg8 dl.reg8_5 span.ye {
    color: yellow;
    font-weight: bold;
    padding-left: 2rem;
}

#reg8 dl.reg8_5 span.gre {
    color: green;
    font-weight: bold;
    padding-left: 2rem;
}

#reg8 dl.reg8_5 span.red {
    color: red;
    font-weight: bold;
    padding-left: 2rem;
}

#scroll_1 {
    margin-bottom: 2rem;
}

#scroll_1 nav ul li:before {
    content:'● ';
}


@media (min-width: 715px) {
    #regulation {
        margin: 0 0 10rem 0;
    }

    #regulation .inner {
        margin-left: 1.6129%;
        margin-right: 1.6129%;
    }

    #regulation section {
        display: flex;
    }

    #regulation section h5 {
        width: 27.5%;
        height: auto;
        text-align: center;
        border-right: 1px #D5421C solid;
        padding: 5rem 4.1666% 5rem 4.1666%;
    }

    #reg8 dl.reg8_5 img {
        width: 150px;
    }

}

/* STORIED
-------------------------------- */
#stories1,
#stories2 {
    margin-bottom: 2.5rem;
}

#stories1 h3.sub_title,
#stories2 h3.sub_title {
    height: 3.5rem;
}

#stories1 .inner,
#stories2 .inner {
    padding: 2.5rem 0;
}

#stories1 .inner h3,
#stories2 .inner h3 {
    margin: 1.5rem 0;
}

#stories1 .inner .before_stories1_1 h3,
#stories2 .inner .start_stories2 h3 {
    margin-top: 0;
}

#stories1 .inner dl,
#stories2 .inner dl {
    margin: 1.6rem 0;
    line-height: 2.5rem;
}

.before_stories1_3 p {
    padding-bottom: 1.6rem;
}

.before_stories1_3 ol {
    line-height: 2.5rem;
}

#stories1 .inner dl dt:nth-of-type(n+2),
#stories2 .inner dl dt:nth-of-type(n+2) {
    padding-top: 1.6rem;
}

div.start_stories2_2 h5 {
    padding-top: 1.6rem;
}

.text-indent_6fes dd {
    padding-left:1em;
}

#stories1 table.before_stories1_3_5 td {
    border: solid 1px #ffffff;
}

#stories1 table.before_stories1_3_5 td:nth-of-type(1) {
    width: 18%;
    padding:0 1%;
    text-align: center;
}

#stories1 table.before_stories1_3_5 td:nth-of-type(2) {
    padding: 1%;
}   

#stories1 table.before_stories1_3_5 tbody td {
    padding: 0.5rem 0;
}

#stories1 .before_stories1_3_G figure,
#stories2 .start_stories2_2_G figure,
#stories2 .start_stories2_3_G figure,
#stories2 .start_stories2_4_G figure {
    margin-bottom: 2rem;
}

.start_stories2_6 h3.sub_title_teko {
    letter-spacing: 3px;
}

.start_stories2_6 h3.sub_title_teko,
.start_stories2_6 h5 {
    text-align: center;
}

.start_stories2_6 h5 {
    font-size: 5rem;
    margin-bottom: 2rem;
}

.start_stories2_8 h5 {
    font-size: 5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: rgb(255, 0, 0);
}

.start_stories2_6 figure:nth-of-type(1) {
    margin-bottom: 2rem;
}

#stories1 .before_stories1_2_G figure,
#stories2 .start_stories2_7_G figure {
    margin: 2rem 0;
}

@media (min-width: 715px) {
    #stories1,
    #stories2 {
        margin-bottom: 10rem;
    }

    #stories1 .inner,
    #stories2 .inner {
        padding: 5rem 0;
    }

    #stories1 .inner h3,
    #stories2 .inner h3 {
        margin: 2rem 0;
    }
    
    #stories1 .inner .before_stories1_1 h3,
    #stories2 .inner .start_stories2 h3 {
        margin-top: 0;
    }

    #stories2 .start_stories2_2_L {
        display: flex;
    }

    #stories2 .start_stories2_2_L figure {
        width: 20%;
        min-width: 200px;
        margin-right: 2%;
    }

    #stories2 .start_stories2_2_L dl {
        margin-top: 0;
    }

    #stories1 .before_stories1_3_G figure,
    #stories2 .start_stories2_2_G figure,
    #stories2 .start_stories2_3_G figure,
    #stories2 .start_stories2_4_G figure {
        width: 48.5%;
        float: left;
        overflow: hidden;
    }

    #stories1 .before_stories1_3_G figure:last-child,
    #stories2 .start_stories2_2_G figure:last-child,
    #stories2 .start_stories2_3_G figure:last-child,
    #stories2 .start_stories2_4_G figure:last-child {
        margin-left: 3%;
    }

    #stories1  .before_stories1_2_G figure,
    #stories2 .start_stories2_7_G figure {
        width: 31.333333%;
        float: left;
        overflow: hidden;
        margin-right: 3%;
    }

    #stories1  .before_stories1_2_G figure:last-child,
    #stories2 .start_stories2_7_G figure:last-child {
        margin-right: 0;
    }
}

/* MOVIE
-------------------------------- */
#movie .bg {
    margin-bottom: 2.5rem;
}

#movie .bg:nth-of-type(n+2) {
    margin-top: 2.5rem;
}

#movie .bg .inner {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.youtube {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
}

.youtube iframe {
    position: absolute;
    top: 0;
    right: 0;
    width: 100% !important;
    height: 100% !important;
}

@media (min-width: 715px) {
    #movie .bg {
        margin-bottom: 10rem;
    }

    #movie .bg:nth-of-type(n+2) {
        margin-top: 10rem;
    }

    #movie .bg .inner {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
}