@charset "UTF-8";
/*=============================================*/
/*Font import */
/*=============================================*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,500;0,600;0,700;1,500;1,700&family=Noto+Sans+JP:wght@400;500;700&display=swap");
@import url(https://use.fontawesome.com/releases/v5.10.2/css/all.css);
/*=============================================*/
/*Reset CSS*/
/*=============================================*/
article, aside, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, main {
    display: block;
}

blockquote, body, dd, div, dl, dt, fieldset, figure, form, h1, h2, h3, h4, h5, h6, input, li, ol, p, pre, td, textarea, th, ul {
    margin: 0;
    padding: 0;
    font-weight: normal;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

li {
    list-style: none;
}

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

img {
    max-width: 100%;
    height: auto;
    border: 0;
    height: auto;
    vertical-align: bottom;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

button, input, select, textarea {
    margin: 0;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

select::-ms-expand {
    display: none;
}

input[type="radio"]::-ms-check,
input[type="checkbox"]::-ms-check {
    display: none;
}

i {
    font-style: normal;
}

textarea {
    resize: none;
    font-family: sans-serif;
}

* {
    box-sizing: border-box;
}

/*=============================================*/
/*Common Base*/
/*=============================================*/
html {
    font-size: 62.5%;
}

body {
    margin: auto;
    width: auto;
    font-family: 'Noto Sans JP', sans-serif;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -o-text-size-adjust: 100%;
    text-size-adjust: 100%;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

a, b, dd, dt, li, p, span, td, th {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.2;
    color: #333333;
}

h1, h2, h3, h4, h5, h6 {
    color: #333333;
}

.sp_only {
    display: none !important;
}

@media screen and (max-width: 767px) {
    .sp_only {
        display: block !important;
    }
    .pc_only {
        display: none !important;
    }
}

.center {
    margin: auto;
    text-align: center;
    line-height: 180%;
}

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

/*=============================================*/
/*  layout  Base                        */
/*=============================================*/
.main_width {
    width: calc(100% - 30px);
    max-width: 1260px;
    margin: auto;
}

.main_width.size1750 {
    max-width: 1750px;
}

.main_width.size1335 {
    max-width: 1335px;
}

.main_width.size1420 {
    max-width: 1420px;
}

section {
    padding: 80px 0;
}

.txt_base p {
    font-size: 1.6rem;
    line-height: 2;
}

.txt_base p:not(:last-of-type) {
    margin-bottom: 1em;
}

/*=============================================*/
/*  layout                               */
/*=============================================*/
body:after {
    position: fixed;
    left: 0;
    top: 0;
    content: '';
    width: 100%;
    height: 100%;
    background: url(../img/common/main-texture-bg.png) no-repeat center/cover;
    mix-blend-mode: multiply;
    z-index: 0;
}

.bg_video {
    position: fixed;
    z-index: -1;
    /*最背面に設定*/
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    overflow: hidden;
}

.bg_video #video {
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 177.77777778vh;
    height: 56.25vw;
    min-height: 100%;
    min-width: 100%;
}

/********************************************/
/*header */
/********************************************/
.header {
    width: 100%;
    padding: 10px 20px;
    display: -ms-flexbox;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.header .logo {
    width: 20%;
    margin-right: 5%;
    z-index: 3;
}

.header .logo a {
    display: block;
    width: 100%;
    max-width: 230px;
    min-width: 120px;
}

.header .logo a img {
    -webkit-transition: all 0.1s;
    transition: all 0.1s;
}

.header .logo a:hover img {
    transform: scale(1.08);
}

.header .main_nav {
    width: 75%;
    margin-top: 20px;
}

.nav_list {
    width: 80%;
    display: -ms-flexbox;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: flex-end;
    margin-left: auto;
}

.nav_list li {
    display: inline-block;
    margin-bottom: 3px;
}

.nav_list li:not(:last-child) {
    margin-right: 2%;
}

.nav_list li a {
    position: relative;
    display: block;
    padding: 0.3em;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.6rem;
    font-style: italic;
    letter-spacing: 0.05em;
}

.nav_list li a:before {
    position: absolute;
    bottom: 0;
    left: 3px;
    content: '';
    width: 0;
    height: 2px;
    background: #B60016;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.nav_list li a {
    position: relative;
    z-index: 1;
}

.nav_list li a:before {
    position: absolute;
    bottom: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 2px;
    background: #B60016;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: -1;
}

.nav_list li a:hover:before {
    transform: scaleX(1);
    transform-origin: left;
}

.nav_list li a .inner {
    display: block;
    overflow: hidden;
    position: relative;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.nav_list li a .txt_base,
.nav_list li a .txt_next {
    display: inline-block;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    transform: translate(0px);
    overflow: hidden;
}

.nav_list li a .txt_next {
    position: absolute;
    top: 0;
    left: 0;
    transform: translateY(110%);
}

.nav_list li a:hover .txt_base {
    transform: translateY(-110%);
}

.nav_list li a:hover .txt_next {
    transform: translateY(0);
}

.header.is_show {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    background-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(20px) brightness(115%);
}

.header.is_show .logo {
    width: 10%;
}

.header.is_show .logo img {
    max-width: 130px;
}

.sp_menu_trigger {
    display: none;
}

/********************************************/
/*footer */
/********************************************/
.footer {
    position: relative;
    padding: 60px 0 20px;
    background: url(../img/common/footer-bg.jpg) no-repeat bottom/cover;
    z-index: 1;
}

.footer .menu_area {
    width: 100%;
    margin-bottom: 380px;
    display: -ms-flexbox;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.footer .menu_area .logo {
    width: 20%;
    margin-right: 10%;
}

.footer .menu_area .logo a {
    display: block;
}

.footer .menu_area .logo a img {
    -webkit-transition: all 0.1s;
    transition: all 0.1s;
}

.footer .menu_area .logo a:hover img {
    transform: scale(1.08);
}

.footer .menu_area .nav_list {
    width: 41%;
    display: -ms-flexbox;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.footer .nav_list li:not(:last-child) {
    margin-right: 5%;
}

.footer .nav_list li:not(:last-child) a:after {
    position: absolute;
    top: 0;
    right: -15px;
    bottom: 0;
    content: '/';
    margin: auto;
    height: 1em;
    color: #fff;
}

.footer .nav_list li a {
    color: #fff;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.footer .nav_list li a:before {
    content: none;
}

.footer .nav_list li a:hover {
    color: #B60016;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.copryright {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.8rem;
    font-style: italic;
    letter-spacing: 0.05em;
    color: #fff;
    text-align: center;
}

/********************************************/
/*sns_block */
/********************************************/
.sns_block {
    position: relative;
    padding: 110px 0 60px;
    background: rgba(245, 245, 245, 0.6);
}

.sns_block .main_ttl {
    position: absolute;
    top: -55px;
    right: 0;
    left: 0;
    content: '';
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 9rem;
    font-style: italic;
    text-align: center;
    z-index: 1;
}

.sns_block .sns_list li .left,
.sns_block .sns_list li .right {
    padding: 0 5%;
}

.sns_block .sns_list li .left {
    position: relative;
    width: 43%;
}

.sns_block .sns_list li .left:before {
    position: absolute;
    top: 0;
    right: 0;
    content: '';
    width: 1px;
    height: 100%;
    background: #707070;
}

.sns_block .sns_list li .right {
    width: 57%;
}

.sns_block .sns_list {
    position: relative;
    width: 100%;
    display: -ms-flexbox;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    z-index: 1;
}

.sns_block .sns_list > li {
    width: 46%;
    margin-bottom: 65px;
}

.sns_block .sns_list > li:not(:nth-child(2n)) {
    margin-right: 8%;
}

.sns_block .sns_list > li > a {
    width: 100%;
    display: -ms-flexbox;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    padding: 35px 0;
    background: #fff;
    align-items: center;
}

.sns_block .sns_list .left .ttl .en,
.sns_block .sns_list .left .ttl .ja {
    display: block;
    line-height: 1.4;
    letter-spacing: 0.02em;
}

.sns_block .sns_list .left .ttl .en {
    margin-bottom: 0.2em;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: clamp(2rem, 2.3vw, 3rem);
}

.sns_block .sns_list .left .ttl .ja {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: clamp(1.3rem, 1.2vw, 1.6rem);
}

.sns_block .sns_list li.twitter a {
    border-bottom: 8px solid #00ACEE;
}

.sns_block .sns_list li.facebook a {
    border-bottom: 8px solid #3B5998;
}

.sns_block .sns_list li.youtube a {
    border-bottom: 8px solid #C4302B;
}

.sns_block .sns_list li.insta a {
    border-bottom: 8px solid #00ACEE;
    border-image: linear-gradient(90deg, #4c64d3 0%, #cf2e92 30%, #f26939 70%, #ffdd83 100%);
    border-image-slice: 1;
}

.sns_block .sns_list li a {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.sns_block .sns_list li a:hover {
    box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.2);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

/********************************************/
/*main_visual_block */
/********************************************/
.header .main_nav {
    width: 100%;
}

.header .logo {
    position: absolute;
}

.main_visual_block {
    position: relative;
    overflow: hidden;
}

.main_visual_block .main_width {
    position: relative;
    max-width: 1600px;
}

.main_visual_block .catch {
    position: absolute;
    left: 0;
    top: 15%;
    font-size: 3.4vw;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-style: italic;
    color: #000;
    z-index: 2;
}

.main_visual_block .catch:first-letter {
    color: #B60016;
}

.main_visual_block .nobuharu {
    position: relative;
    width: 32%;
    max-width: 600px;
    float: right;
    z-index: 2;
}

.main_visual_block .character {
    position: absolute;
    width: 15%;
    max-width: 370px;
    right: 26%;
    bottom: 6%;
    z-index: 2;
}

.main_visual_block .name {
    position: absolute;
    left: 5%;
    bottom: 5%;
    font-size: 5.1vw;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #41435B;
    z-index: 2;
}

.main_visual_block .name b {
    position: relative;
    font-size: 1em;
    color: inherit;
    z-index: 1;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.main_visual_block:before {
    position: absolute;
    left: -33%;
    right: 0;
    bottom: 17%;
    content: '';
    width: 200%;
    height: 28%;
    margin: auto;
    background-color: #B60016;
    transform: skew(10deg, 10deg);
    z-index: 1;
}

.main_visual_block #youtube_area {
    position: absolute;
    top: 30%;
    left: 0;
    overflow: hidden;
    opacity: 0;
    width: 100%;
    height: 59%;
    transform: skew(0deg, -7deg);
    z-index: 1;
}

.main_visual_block #youtube_area:before {
    position: absolute;
    left: 0;
    top: 0;
    content: '';
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.4);
    z-index: 1;
}

#youtube_area.appear {
    animation-name: PageAnimeAppear;
    animation-duration: .5s;
    animation-fill-mode: forwards;
}

@keyframes PageAnimeAppear {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

#youtube_frame {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 177.77777778vh;
    height: 56.25vw;
    min-height: 100%;
    min-width: 100%;
}

#youtube_mask {
    position: absolute;
    z-index: 2;
    top: 0;
    width: 100%;
    height: 100%;
}

/********************************************/
/*top_about_block */
/********************************************/
.top_about_block {
    padding-top: 0;
    padding-bottom: 0;
    z-index: 1;
}

.top_about_block .top_area {
    position: relative;
    padding-top: 90px;
    padding-bottom: 240px;
    z-index: 1;
}

.top_about_block .top_area:before {
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    margin: 0 calc(50% - 50vw);
    width: 100vw;
    height: 100%;
    background: url(../img/top/about-bg.jpg) no-repeat center/cover;
    z-index: -2;
}

.top_about_block .top_area .main_ttl_italic {
    color: #fff;
    padding-left: 0.2em;
}

.top_about_block .message {
    position: relative;
    width: 100%;
    display: -ms-flexbox;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    margin-top: -300px;
    padding-bottom: 130px;
    z-index: 1;
}

.top_about_block .message .img {
    position: absolute;
    top: 0;
    right: 57%;
    width: 33%;
    min-width: 320px;
    z-index: 2;
}

.top_about_block .message .right {
    width: 66%;
    margin: 0 0 0 auto;
    padding-right: 5%;
    z-index: 1;
}

.top_about_block .message .car_img {
    position: absolute;
    bottom: 0;
    left: 2%;
    content: '';
    width: 50%;
    max-width: 883px;
    height: 458px;
    z-index: 2;
}

.top_about_block .message .txt_box {
    position: relative;
    margin-top: 115px;
    padding: 40px 5% 170px 5%;
    background: #B60016;
    z-index: 1;
}

.top_about_block .message .txt_box:before {
    position: absolute;
    top: -110px;
    right: 0;
    content: '';
    width: 43%;
    max-width: 493px;
    height: 12%;
    max-height: 96px;
    background: url(../img/common/logo-txt.svg) no-repeat center/100%;
}

.top_about_block .message .txt_box:after {
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 690px;
    background: url(../img/top/bg-checker.png) no-repeat top left/100%;
    z-index: -1;
}

.top_about_block .message .txt_box .border_side_ttl {
    background: url(../img/top/about-message-ttl.svg) no-repeat right center/1480px;
}

.top_about_block .message .txt_box .ttl {
    margin-bottom: 1.3em;
    padding-left: 20%;
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 2;
    letter-spacing: 0.1em;
    color: #fff;
}

.top_about_block .message .txt_box .txt_base {
    margin-bottom: 60px;
    padding-left: 20%;
}

.top_about_block .message .txt_box .txt_base p {
    line-height: 2.8;
    color: #fff;
}

.top_about_block .message .txt_box .btn_wrapper {
    text-align: right;
}

.top_about_block .message .txt_box .btn_wrapper .round_btn {
    display: inline-block;
}

.top_about_block .message .txt_box .btn_wrapper .round_btn a {
    padding: 10px 0;
}

/********************************************/
/*top_schedule_block */
/********************************************/
.top_schedule_block {
    padding-top: 0;
    padding-bottom: 140px;
}

.top_schedule_block .schedule_list {
    margin-top: -100px;
}

.top_schedule_block .top_area {
    position: relative;
    padding-top: 90px;
    padding-bottom: 400px;
    z-index: 1;
}

.top_schedule_block .top_area:before {
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    margin: 0 calc(50% - 50vw);
    width: 100vw;
    height: 100%;
    background: url(../img/top/schedule-bg.jpg) no-repeat top right/cover;
    z-index: -2;
}

.top_schedule_block .top_area:after {
    position: absolute;
    left: calc(50% - 50vw);
    bottom: -270px;
    content: '';
    width: 66vw;
    max-width: 942px;
    height: 462px;
    background: #F5F5F5;
    z-index: -1;
}

.top_schedule_block .top_area .main_ttl_italic {
    color: #fff;
}

.top_schedule_block .schedule_list li {
    position: relative;
    width: 90%;
    max-width: 1045px;
    z-index: 1;
}

.top_schedule_block .schedule_list li:not(:last-child) {
    margin-bottom: 115px;
}

.top_schedule_block .schedule_list li:nth-child(even) {
    margin: 0 0 0 auto;
    padding-right: 25px;
}

.top_schedule_block .schedule_list li:nth-child(even):before {
    right: 0px;
}

.top_schedule_block .schedule_list li:before {
    position: absolute;
    bottom: -25px;
    right: -25px;
    content: '';
    width: 95%;
    height: 180px;
    background: #B60016;
    z-index: -2;
}

.top_schedule_block .schedule_list li a {
    position: relative;
    display: block;
    height: 480px;
    z-index: 1;
    overflow: hidden;
}

.top_schedule_block .schedule_list li a .txt_box {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 30px 50px;
    display: -ms-flexbox;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.top_schedule_block .schedule_list li a:after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    content: '';
    width: 100%;
    height: 100%;
    z-index: -1;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.top_schedule_block .schedule_list li a:hover:after {
    transform: scale(1.1);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.top_schedule_block .schedule_list li:first-child a:after {
    background: url(../img/top/schedule-formula.jpg) no-repeat center/cover;
}

.top_schedule_block .schedule_list li:nth-child(2) a:after {
    background: url(../img/top/schedule-gt.jpg) no-repeat center/cover;
}

.top_schedule_block .schedule_list li a .race_ttl {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 8.3rem;
    font-style: italic;
    letter-spacing: 0.1em;
    color: #fff;
}

.top_schedule_block .schedule_list li a .bottom_area {
    width: 100%;
    display: -ms-flexbox;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.top_schedule_block .schedule_list li a .bottom_area .left {
    width: 65%;
    margin-right: 5%;
    margin-bottom: 30px;
    display: -ms-flexbox;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
}

.top_schedule_block .schedule_list li a .bottom_area .btn_wrapper {
    width: 30%;
}

.top_schedule_block .schedule_list li a .bottom_area .btn_wrapper .round_btn {
    justify-content: flex-end;
}

.top_schedule_block .schedule_list li a .bottom_area .next {
    position: relative;
    display: inline-block;
    width: 160px;
    margin-right: 5%;
    margin-bottom: 0.3em;
    padding: 2.2em 1em;
}

.top_schedule_block .schedule_list li a .bottom_area .next span {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 2rem;
    letter-spacing: 0.1em;
    color: #fff;
}

.top_schedule_block .schedule_list li a .bottom_area .next .big {
    font-size: 1.9em;
    color: #fff;
}

.top_schedule_block .schedule_list li a .bottom_area .next:before, .top_schedule_block .schedule_list li a .bottom_area .next:after {
    position: absolute;
    content: '';
    width: 20px;
    height: 100%;
}

.top_schedule_block .schedule_list li a .bottom_area .next:before {
    position: absolute;
    top: 0;
    left: 0;
    border-left: solid 1px #fff;
    border-top: solid 1px #fff;
    border-bottom: solid 1px #fff;
}

.top_schedule_block .schedule_list li a .bottom_area .next:after {
    position: absolute;
    top: 0;
    right: 0;
    border-right: solid 1px #fff;
    border-top: solid 1px #fff;
    border-bottom: solid 1px #fff;
}

.top_schedule_block .schedule_list li a .bottom_area .detail {
    width: 60%;
}

.top_schedule_block .schedule_list li a .bottom_area .detail .date {
    display: block;
    margin-bottom: 0.5em;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 2.5rem;
    line-height: 1.4;
    letter-spacing: 0.1em;
    color: #fff;
}

.top_schedule_block .schedule_list li a .bottom_area .detail .ttl {
    margin-bottom: 0;
    font-size: 2.3rem;
    line-height: 1.4;
    letter-spacing: 0.1em;
    color: #fff;
}

.top_schedule_block .schedule_list li a .bottom_area .detail .ttl .round {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 1.8rem;
    font-style: normal;
    line-height: 1.4;
    letter-spacing: 0.1em;
    color: #fff;
}

.top_schedule_block .schedule_list li a .bottom_area .detail .course dt,
.top_schedule_block .schedule_list li a .bottom_area .detail .course dd {
    display: inline-block;
    font-size: 1.7rem;
    line-height: 1.7;
    letter-spacing: 0.1em;
    color: #fff;
}

.top_schedule_block .schedule_list li a .bottom_area .detail .course dt {
    margin-right: 3px;
}

/********************************************/
/*top_results_block */
/********************************************/
.top_results_block {
    padding: 60px 0 120px;
    z-index: 1;
}

.top_results_block .result_list li {
    position: relative;
    width: 100%;
    display: -ms-flexbox;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
}

.top_results_block .result_list li:not(:last-child) {
    margin-bottom: 110px;
}

.top_results_block .result_list li .img {
    position: absolute;
    top: 0;
    right: 57%;
    width: 50vw;
    height: 100%;
    overflow: hidden;
}

.top_results_block .result_list li .img img {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.top_results_block .result_list li .img:after {
    padding-top: 63%;
}

.top_results_block .result_list li .txt_box {
    width: 54%;
    max-width: 850px;
    margin: 0 0 0 auto;
}

.top_results_block .result_list li:nth-child(even) .img {
    left: 57%;
    width: 50vw;
    height: 100%;
}

.top_results_block .result_list li:nth-child(even) .txt_box {
    margin: 0;
}

.small_border_btn_ttl {
    position: relative;
    margin-bottom: 70px;
    margin-left: 35px;
    padding-bottom: 0.5em;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 3rem;
    font-style: italic;
    letter-spacing: 0.1em;
}

.small_border_btn_ttl:before {
    position: absolute;
    bottom: 0;
    left: 0;
    content: '';
    width: 92px;
    height: 2px;
    background: #41435B;
}

.result_table {
    margin-bottom: 80px;
}

.result_table table {
    width: 100%;
}

.result_table table th,
.result_table table td {
    padding: 1em;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 1.6rem;
}

.result_table table tr:first-of-type {
    border-bottom: 1px solid #CCCCCC;
}

.top_results_block .btn_wrapper {
    text-align: right;
}

.top_results_block .btn_wrapper .round_btn {
    display: inline-block;
}

.top_results_block .bg_area {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.top_results_block .bg_area:before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: -10%;
    content: '';
    margin: auto;
    width: 120%;
    height: 815px;
    transform: skew(138deg) rotate(-12deg);
    background: rgba(245, 245, 245, 0.6);
    z-index: -1;
}

.top_results_block .result_list li > a:hover img {
    transform: scale(1.1);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.top_results_block .result_list li .round_btn a:hover .txt {
    color: #B60016;
}

/********************************************/
/*top_gallery_block */
/********************************************/
.top_gallery_block {
    position: relative;
    padding: 100px 0 120px;
    z-index: 1;
}

.top_gallery_block .main_ttl_italic {
    margin-bottom: 0;
}

.top_gallery_block .img_link {
    display: block;
    text-align: right;
}

.top_gallery_block .img_link .img {
    width: 100%;
    margin: 0 auto 30px;
    z-index: 1;
    overflow: hidden;
}

.top_gallery_block .img_link .img img {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.top_gallery_block .img_link .round_btn {
    justify-content: flex-end;
}

.top_gallery_block .img_link:hover .img img {
    transform: scale(1.1);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.top_gallery_block .img_link:hover .round_btn .txt {
    color: #B60016;
}

.top_gallery_block:before {
    position: absolute;
    bottom: 0;
    left: 0;
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 49vh 0 0 80vw;
    border-color: transparent transparent transparent #B60016;
    z-index: -1;
}

/********************************************/
/*top_movie_block */
/********************************************/
.top_movie_block {
    position: relative;
    overflow: hidden;
}

.top_movie_block .main_ttl_italic {
    margin-bottom: 0;
    text-align: right;
}

.top_movie_block:before {
    position: absolute;
    left: 0;
    top: 0;
    content: '';
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

.top_movie_block .main_width {
    position: relative;
    z-index: 1;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    content: none;
}

.movie_slider {
    position: relative;
    margin-right: calc(50% - 50vw);
    padding-top: 125px;
}

.movie_slider .swiper-button-next,
.movie_slider .swiper-button-prev {
    position: absolute;
    top: 23px;
    left: 1px;
    width: 96px;
    height: 96px;
}

.movie_slider .swiper-button-next:before,
.movie_slider .swiper-button-prev:before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    content: '';
    width: 28px;
    height: 18px;
    background: url(../img/common/ico-arrow-w.svg) no-repeat center/100%;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.movie_slider .swiper-button-next:after,
.movie_slider .swiper-button-prev:after {
    position: absolute;
    top: 0;
    left: -1px;
    content: '';
    width: 96px;
    height: 96px;
    border: 1px solid #fff;
    border-radius: 200px;
}

.movie_slider .swiper-button-prev {
    transform: scale(-1, 1);
    /* 左右反転 */
}

.movie_slider .swiper-button-next {
    left: 120px;
}

.movie_slider .swiper-button-next,
.movie_slider .swiper-button-prev {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.movie_slider .swiper-button-next:hover:before,
.movie_slider .swiper-button-prev:hover:before {
    transform: translateX(5px);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.movie_slider {
    padding-right: 40px;
}

.movie_slider .img_box {
    position: relative;
    margin-bottom: 30px;
}

.movie_slider .img_box:after {
    padding-top: 56%;
}

.movie_slider .txt_base p {
    font-weight: 500;
    letter-spacing: 0.1em;
    color: #fff;
}

.top_movie_block .swiper-slide a {
    display: block;
}

.top_movie_block .swiper-slide a .img_inner {
    display: block;
    position: relative;
}

.top_movie_block .swiper-slide a .img_inner:before {
    position: absolute;
    left: 0;
    top: 0;
    content: '';
    width: 100%;
    height: 0%;
    background-color: rgba(77, 77, 77, 0.7);
    z-index: 1;
    mix-blend-mode: multiply;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.top_movie_block .swiper-slide a .img_inner:after {
    position: absolute;
    content: '';
    width: 42px;
    height: 30px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0, 0);
    background: url(../img/common/ico-youtube.svg) no-repeat center/100%;
    z-index: 2;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.top_movie_block .swiper-slide a:hover .img_inner:before {
    height: 100%;
}

.top_movie_block .swiper-slide a:hover .img_inner:after {
    transform: translate(-50%, -50%) scale(1, 1);
}

/********************************************/
/*top_news_block */
/********************************************/
.top_news_block {
    padding: 50px 0;
}

.top_news_block .main_ttl_italic {
    margin-bottom: 50px;
    text-align: center;
}

.top_news_block .news_list li .no_link,
.top_news_block .news_list li a {
    width: 100%;
    display: -ms-flexbox;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    padding: 40px 0;
    border-bottom: 1px dashed #CCCCCC;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.6);
}

.top_news_block .news_list li .no_link .date,
.top_news_block .news_list li a .date {
    width: 13%;
    min-width: 130px;
    margin-right: 2%;
}

.top_news_block .news_list li .no_link .right,
.top_news_block .news_list li a .right {
    width: 85%;
}

.top_news_block .news_list li .no_link .date,
.top_news_block .news_list li a .date {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 1.8rem;
    letter-spacing: 0.1em;
    color: #41435B;
}

.top_news_block .news_list li .no_link .category,
.top_news_block .news_list li a .category {
    display: inline-block;
    margin-bottom: 1em;
    font-size: 1.6rem;
    letter-spacing: 0.1em;
    color: #B60016;
}

.top_news_block .news_list li .no_link .ttl,
.top_news_block .news_list li a .ttl {
    font-size: 1.6rem;
    line-height: 1.5;
    letter-spacing: 0.1em;
    color: #41435B;
}

.top_news_block .news_list li a {
    position: relative;
    z-index: 1;
}

.top_news_block .news_list li a:before {
    position: absolute;
    bottom: -1px;
    left: 0;
    content: '';
    width: 100%;
    height: 3px;
    background: #B60016;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: -1;
}

.top_news_block .news_list li a:hover:before {
    transform: scaleX(1);
    transform-origin: left;
}

.top_news_block .news_list {
    margin-bottom: 45px;
}

.top_news_block .btn_wrapper {
    position: relative;
    text-align: center;
    z-index: 1;
}

.top_news_block .btn_wrapper .round_btn {
    display: inline-block;
}

.top_news_block .btn_wrapper .round_btn a {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.top_news_block .btn_wrapper .round_btn a:hover .txt {
    color: #B60016;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

/********************************************/
/*top_blog_block */
/********************************************/
.top_blog_block .main_ttl_italic {
    text-align: center;
}

.top_blog_block .blog_list {
    display: -ms-flexbox;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.top_blog_block .blog_list:after {
    display: block;
    width: 30%;
    content: "";
}

.top_blog_block .blog_list li {
    width: 30%;
}

.top_blog_block .blog_list li a {
    position: relative;
    z-index: 1;
}

.top_blog_block .blog_list li a .img {
    margin-bottom: 20px;
    overflow: hidden;
}

.top_blog_block .blog_list li a .img img {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.top_blog_block .blog_list li a .img:after {
    padding-top: 64%;
}

.top_blog_block .blog_list li a .top_area {
    margin-bottom: 10px;
}

.top_blog_block .blog_list li a .date {
    display: inline-block;
    margin-right: 40px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 1.8rem;
    letter-spacing: 0.1em;
    color: #41435B;
}

.top_blog_block .blog_list li a .category {
    display: inline-block;
    font-size: 1.6rem;
    letter-spacing: 0.1em;
    color: #B60016;
}

.top_blog_block .blog_list li a .ttl {
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 0.1em;
    color: #41435B;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.top_blog_block .blog_list li a:hover .img img {
    transform: scale(1.1);
}

.top_blog_block .blog_list li a:hover .ttl {
    color: #B60016;
}

/*=============================================*/
/*media query    Tablet */
/*=============================================*/
@media screen and (max-width: 1024px) {
    /********************************************/
    /*header */
    /********************************************/
    .main_nav .nav_list li a {
        font-size: 1.6rem;
    }
    /********************************************/
    /*sns_block */
    /********************************************/
    .sns_block .sns_list > li {
        width: 48%;
    }
    .sns_block .sns_list > li:not(:nth-child(2n)) {
        margin-right: 2%;
    }
    /********************************************/
    /*top_results_block */
    /********************************************/
    .top_results_block .result_list li {
        height: auto;
        display: block;
    }
    .top_results_block .result_list li:not(:last-child) {
        margin-bottom: 50px;
    }
    .top_results_block .result_list li .img {
        position: relative;
        right: 2%;
        width: 90%;
        height: 100%;
        margin-bottom: 30px;
    }
    .top_results_block .result_list li .img:after {
        padding-top: 53%;
    }
    .top_results_block .result_list li .txt_box {
        width: 100%;
    }
    .top_results_block .result_list li:nth-child(even) .img {
        left: 12%;
        width: 90%;
    }
    /********************************************/
    /*top_schedule_block */
    /********************************************/
    .top_schedule_block .schedule_list li a {
        height: auto;
    }
    .top_schedule_block .schedule_list li a .txt_box {
        padding: 20px 30px;
    }
    .top_schedule_block .schedule_list li a .race_ttl {
        margin-bottom: 0.8em;
    }
    .top_schedule_block .schedule_list li a .bottom_area {
        display: block;
    }
    .top_schedule_block .schedule_list li a .bottom_area .left {
        width: 100%;
        margin-right: 0%;
        margin-bottom: 30px;
    }
    .top_schedule_block .schedule_list li a .bottom_area .btn_wrapper {
        width: 100%;
    }
}

/*=============================================*/
/*media query    Tablet ipad 5.7inch */
/*=============================================*/
/*=============================================*/
/*media query    SmartPhone */
/*=============================================*/
@media screen and (max-width: 767px) {
    section {
        padding: 50px 0;
    }
    .txt_base p {
        font-size: 1.4rem;
        line-height: 1.8;
    }
    /********************************************/
    /* body fixed*/
    /********************************************/
    body {
        width: 100%;
    }
    body.fixed {
        position: fixed;
        width: 100%;
    }
    /********************************************/
    /*  Sp-menu btn*/
    /********************************************/
    .sp_menu_trigger {
        position: fixed;
        top: 0;
        right: 0;
        width: 60px;
        height: 60px;
        background: #B60016;
        display: -ms-flexbox;
        display: -webkit-box;
        display: -webkit-flex;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        box-sizing: border-box;
        cursor: pointer;
        z-index: 9999;
        -webkit-transition: all 0.5s;
        transition: all 0.5s;
    }
    .sp_menu_trigger .line {
        position: relative;
        width: 30px;
        height: 18px;
        margin: 6px 6px 3px 0;
        display: -ms-flexbox;
        display: -webkit-box;
        display: -webkit-flex;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .sp_menu_trigger .line span {
        position: absolute;
        display: inline-block;
        background: #fff;
        width: 24px;
        height: 2px;
        left: 0;
        right: 0;
        margin: auto;
        transition: all .4s;
    }
    .sp_menu_trigger .line span:nth-of-type(1) {
        top: 0px;
        right: -10px;
    }
    .sp_menu_trigger .line span:nth-of-type(2) {
        top: 8px;
        left: -3px;
    }
    .sp_menu_trigger .line span:nth-of-type(3) {
        bottom: 0px;
        right: -10px;
    }
    .sp_menu_trigger .txt {
        position: relative;
        width: 36px;
        height: 15px;
        display: -ms-flexbox;
        display: -webkit-box;
        display: -webkit-flex;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .sp_menu_trigger .txt:before {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        margin: auto;
        content: 'MENU';
        font-size: 1rem;
        font-weight: bold;
        font-style: italic;
        color: #fff;
        text-align: center;
    }
    .sp_menu_trigger.active .line {
        margin: 6px 0px 3px 0;
    }
    .sp_menu_trigger.active .line span {
        width: 30px;
    }
    .sp_menu_trigger.active .line span:nth-of-type(1) {
        right: 0;
        -webkit-transform: translateY(8px) rotate(-345deg);
        transform: translateY(8px) rotate(-345deg);
    }
    .sp_menu_trigger.active .line span:nth-of-type(2) {
        left: 0;
        opacity: 0;
    }
    .sp_menu_trigger.active .line span:nth-of-type(3) {
        right: 0;
        -webkit-transform: translateY(-8px) rotate(345deg);
        transform: translateY(-8px) rotate(345deg);
    }
    .sp_menu_trigger.active .txt:before {
        content: 'CLOSE';
    }
    /********************************************/
    /*header */
    /********************************************/
    .header {
        width: calc(100% - 60px);
        height: 60px;
        padding: 5px 10px;
        align-items: center;
    }
    .header .logo {
        width: 75%;
        margin-right: 0%;
    }
    .header .logo a {
        max-width: 110px;
        min-width: 100px;
    }
    .header .main_nav {
        width: 75%;
        margin-top: 20px;
    }
    .nav_list {
        display: block;
        width: 100%;
    }
    .nav_list li {
        display: block;
        margin-bottom: 0;
    }
    .nav_list li:not(:last-child) {
        margin-right: auto;
    }
    .nav_list li a {
        padding: 20px 10px;
        border-bottom: 2px dotted #CCCCCC;
        font-size: 2rem;
    }
    .nav_list li a:before {
        position: absolute;
        top: 0;
        right: 13px;
        bottom: 0;
        left: auto;
        content: '';
        margin: auto;
        width: 14px;
        height: 9px;
        background: url(../img/common/ico-arrow.svg) no-repeat center/100%;
        transform: none;
        z-index: 1;
    }
    .nav_list li a:after {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        content: '';
        margin: auto;
        width: 40px;
        height: 40px;
        background: url(../img/common/ico-circle.svg) no-repeat center/100%;
        z-index: 1;
    }
    .header .main_nav {
        position: fixed;
        top: 0;
        right: -100%;
        margin-top: 0;
        padding: 110px 30px 40px;
        background: url(../img/common/main-texture-bg.ong) no-repeat center/cover, #fff;
        width: 100vw;
        height: 100vh;
        -webkit-overflow-scrolling: touch;
        overflow-y: scroll;
        box-sizing: border-box;
        z-index: 9998;
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
    }
    .header .main_nav.open {
        right: 0;
    }
    /********************************************/
    /*footer */
    /********************************************/
    .footer {
        padding: 40px 0 20px;
        background: url(../img/common/footer-bg-sp.jpg) no-repeat bottom/cover;
    }
    .footer .menu_area {
        display: block;
        margin-bottom: 170px;
    }
    .footer .menu_area .logo {
        width: 100%;
        margin-right: auto;
    }
    .footer .menu_area .logo a {
        width: 100%;
        max-width: 190px;
        margin: 0 auto 40px;
    }
    .footer .menu_area .nav_list {
        width: 100%;
        justify-content: center;
    }
    .footer .nav_list li a {
        padding: 0.4em 0.5em;
        border-bottom: none;
        font-size: 1.5rem;
    }
    .footer .nav_list li a:after {
        right: -12px;
        width: auto;
        background: none;
    }
    .copryright {
        font-size: 1.1rem;
    }
    /********************************************/
    /*sns_block */
    /********************************************/
    .sns_block {
        padding: 70px 0 50px;
    }
    .sns_block .main_ttl {
        top: -35px;
        font-size: 5.5rem;
    }
    .sns_block .sns_list li .left,
    .sns_block .sns_list li .right {
        padding: 0 4%;
    }
    .sns_block .sns_list {
        display: block;
    }
    .sns_block .sns_list > li {
        width: 100%;
        margin-bottom: 20px;
    }
    .sns_block .sns_list > li:not(:nth-child(2n)) {
        margin-right: auto;
    }
    .sns_block .sns_list > li > a {
        padding: 15px 0;
    }
    .sns_block .sns_list .left .ttl .en {
        font-size: clamp(1.8rem, 2.3vw, 3rem);
    }
    .sns_block .sns_list .left .ttl .ja {
        font-size: clamp(1.2rem, 1.2vw, 1.6rem);
    }
    .sns_block .sns_list li.twitter a {
        border-bottom: 4px solid #00ACEE;
    }
    .sns_block .sns_list li.facebook a {
        border-bottom: 4px solid #3B5998;
    }
    .sns_block .sns_list li.youtube a {
        border-bottom: 4px solid #C4302B;
    }
    .sns_block .sns_list li.insta a {
        border-bottom: 4px solid #00ACEE;
    }
    /********************************************/
    /*main_visual_block */
    /********************************************/
    .main_visual_block .catch {
        top: 5%;
        font-size: 6.8vw;
    }
    .main_visual_block .nobuharu {
        padding-top: 16%;
        width: 64%;
        right: -10%;
    }
    .main_visual_block .character {
        width: 35%;
        max-width: 370px;
        right: 40%;
        bottom: 28%;
    }
    .main_visual_block .name {
        left: 5%;
        bottom: 1%;
        font-size: 10.1vw;
    }
    .main_visual_block:before {
        left: -33%;
        right: 0;
        bottom: auto;
        top: 30%;
        height: 58%;
    }
    .main_visual_block #youtube_area {
        top: 25%;
        height: 49%;
    }
    /********************************************/
    /*top_about_block */
    /********************************************/
    .top_about_block .top_area {
        padding-top: 30px;
        padding-bottom: 270px;
    }
    .top_about_block .message {
        padding-bottom: 50px;
    }
    .top_about_block .message .car_img {
        bottom: 70px;
        left: 0%;
        width: 90%;
        max-width: 400px;
        height: 178px;
    }
    .top_about_block .message .img {
        right: auto;
        left: -15px;
        width: 57%;
        min-width: 230px;
        max-width: 330px;
    }
    .top_about_block .message .right {
        width: 95%;
        padding-right: 0%;
    }
    .top_about_block .message .txt_box {
        padding: 70px 20px 190px 20px;
    }
    .top_about_block .message .txt_box:before {
        top: -70px;
        width: 35%;
    }
    .top_about_block .message .txt_box .border_side_ttl {
        margin-bottom: 35px;
        background: url(../img/top/about-message-ttl.svg) no-repeat right center/1080px;
    }
    .top_about_block .message .txt_box .ttl {
        padding-left: 0%;
        font-size: 1.8rem;
        line-height: 1.7;
    }
    .top_about_block .message .txt_box .txt_base {
        margin-bottom: 30px;
        padding-left: 0%;
    }
    .top_about_block .message .txt_box .txt_base p {
        line-height: 2;
    }
    /********************************************/
    /*top_schedule_block */
    /********************************************/
    .top_schedule_block {
        padding-bottom: 60px;
    }
    .top_schedule_block .schedule_list {
        margin-top: -50px;
    }
    .top_schedule_block .top_area {
        padding-top: 40px;
        padding-bottom: 150px;
    }
    .top_schedule_block .top_area:before {
        background: url(../img/top/schedule-bg-sp.jpg) no-repeat center right/cover;
    }
    .top_schedule_block .top_area:after {
        bottom: -190px;
        height: 300px;
    }
    .top_schedule_block .schedule_list li {
        width: 95%;
    }
    .top_schedule_block .schedule_list li:not(:last-child) {
        margin-bottom: 40px;
    }
    .top_schedule_block .schedule_list li:nth-child(even) {
        padding-right: 15px;
    }
    .top_schedule_block .schedule_list li:before {
        bottom: -15px;
        right: -15px;
    }
    .top_schedule_block .schedule_list li a .txt_box {
        padding: 20px 30px;
    }
    .top_schedule_block .schedule_list li a .race_ttl {
        font-size: 3.5rem;
    }
    .top_schedule_block .schedule_list li a .bottom_area .left {
        display: block;
    }
    .top_schedule_block .schedule_list li a .bottom_area .next {
        margin-right: 0%;
        margin-bottom: 1em;
        padding: 0.5em 1em;
        text-align: center;
    }
    .top_schedule_block .schedule_list li a .bottom_area .next span {
        font-size: 1.3rem;
    }
    .top_schedule_block .schedule_list li a .bottom_area .next .big {
        font-size: 1em;
    }
    .top_schedule_block .schedule_list li a .bottom_area .next:before, .top_schedule_block .schedule_list li a .bottom_area .next:after {
        width: 10px;
    }
    .top_schedule_block .schedule_list li a .bottom_area .detail {
        width: 100%;
    }
    .top_schedule_block .schedule_list li a .bottom_area .detail .date {
        margin-bottom: 0.3em;
        font-size: 2rem;
    }
    .top_schedule_block .schedule_list li a .bottom_area .detail .ttl {
        margin-bottom: 0.3em;
        font-size: 1.6rem;
    }
    .top_schedule_block .schedule_list li a .bottom_area .detail .ttl .round {
        font-size: 1.2rem;
    }
    .top_schedule_block .schedule_list li a .bottom_area .detail .course dt,
    .top_schedule_block .schedule_list li a .bottom_area .detail .course dd {
        font-size: 1.3rem;
    }
    .top_schedule_block .schedule_list li a .bottom_area .detail .course dt {
        margin-right: 5px;
    }
    /********************************************/
    /*top_results_block */
    /********************************************/
    .top_results_block {
        padding: 30px 0 50px;
    }
    .top_results_block .result_list li .img {
        right: 5%;
    }
    .top_results_block .result_list li:nth-child(even) .img {
        left: 15%;
    }
    .small_border_btn_ttl {
        margin-bottom: 20px;
        margin-left: 0px;
        font-size: 2.8rem;
    }
    .small_border_btn_ttl:before {
        width: 60px;
    }
    .result_table {
        margin-bottom: 10px;
        overflow: scroll;
        white-space: nowrap;
    }
    .result_table table th,
    .result_table table td {
        font-size: 1.3rem;
    }
    .top_results_block .caution {
        margin-top: 1em;
        margin-bottom: 10px;
        font-size: 1.2rem;
    }
    .top_results_block .bg_area:before {
        left: -60%;
        width: 200%;
        transform: rotate(-12deg);
    }
    /********************************************/
    /*top_gallery_block */
    /********************************************/
    .top_gallery_block {
        padding: 20px 0 60px;
    }
    .top_gallery_block .img_link .img {
        margin: 0 auto 15px;
    }
    .top_gallery_block:before {
        border-width: 27vh 0 0 80vw;
    }
    /********************************************/
    /*top_movie_block */
    /********************************************/
    .movie_slider {
        padding-top: 80px;
    }
    .movie_slider .swiper-button-next,
    .movie_slider .swiper-button-prev {
        width: 56px;
        height: 56px;
    }
    .movie_slider .swiper-button-next:before,
    .movie_slider .swiper-button-prev:before {
        width: 17px;
        height: 13px;
    }
    .movie_slider .swiper-button-next:after,
    .movie_slider .swiper-button-prev:after {
        width: 56px;
        height: 56px;
    }
    .movie_slider .swiper-button-next {
        left: 70px;
    }
    .movie_slider {
        padding-right: 80px;
    }
    .movie_slider .img_box {
        margin-bottom: 15px;
    }
    /********************************************/
    /*top_news_block */
    /********************************************/
    .top_news_block {
        padding: 50px 0 60px;
    }
    .top_news_block .main_ttl_italic {
        margin-bottom: 30px;
    }
    .top_news_block .news_list li .no_link,
    .top_news_block .news_list li a {
        display: block;
        padding: 20px 0;
    }
    .top_news_block .news_list li .no_link .date,
    .top_news_block .news_list li a .date {
        width: 100%;
        margin-right: 0;
    }
    .top_news_block .news_list li .no_link .right,
    .top_news_block .news_list li a .right {
        width: 100%;
    }
    .top_news_block .news_list li .no_link .date,
    .top_news_block .news_list li a .date {
        margin-bottom: 0.2em;
        font-size: 1.3rem;
    }
    .top_news_block .news_list li .no_link .category,
    .top_news_block .news_list li a .category {
        font-size: 1.2rem;
    }
    .top_news_block .news_list li .no_link .ttl,
    .top_news_block .news_list li a .ttl {
        font-size: 1.5rem;
    }
    .top_news_block .news_list {
        margin-bottom: 35px;
    }
    /********************************************/
    /*top_blog_block */
    /********************************************/
    .top_blog_block .blog_list {
        display: block;
    }
    .top_blog_block .blog_list:after {
        content: none;
    }
    .top_blog_block .blog_list li {
        width: 100%;
        margin-bottom: 30px;
    }
    .top_blog_block .blog_list li a {
        display: -ms-flexbox;
        display: -webkit-box;
        display: -webkit-flex;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
    .top_blog_block .blog_list li a .img {
        width: 41%;
    }
    .top_blog_block .blog_list li a .txt_box {
        width: 55%;
    }
    .top_blog_block .blog_list li a .top_area {
        margin-bottom: 15px;
    }
    .top_blog_block .blog_list li a .date {
        margin-right: 1em;
        font-size: 1.3rem;
    }
    .top_blog_block .blog_list li a .category {
        font-size: 1.3rem;
    }
    .top_blog_block .blog_list li a .ttl {
        font-size: 1.6rem;
        line-height: 1.5;
    }
}
