@charset "utf-8";

/* ------------

共通

--------------- */
@media screen and (min-width: 768px) {
  html{
    scroll-padding-top: 50px;
  }
}
html{
  scroll-behavior: smooth;
}
body {
    font-size: 16px;
    line-height: 2em;
    color: #121212;
    font-family: "Zen Kaku Gothic Antique", sans-serif;
}

a {
    transition: 0.3s
}

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

.pc {
    display: inherit;
}

.sp {
    display: none;
}

@media screen and (max-width: 767px) {
    .pc {
        display: none;
    }

    .sp {
        display: inherit;
    }
}

/* レイアウト */
div.inner-contents {
    width: 90%;
    max-width: 950px;
    margin-inline: auto;
}

div.contents-unit {
    width: 90%;
    margin-inline: auto;
}

/*font*/
.font-en {
    font-family: "Oswald", sans-serif;
    font-weight: 500;
}

.tac {
    text-align: center;
}

/* 見出し */
.bg-title {
    background-color: #9d0000;
    color: #fff;
    text-align: center;
    font-size: 30px;
    font-weight: 600;
    padding: 36px 0;
    margin-bottom: 50px;
}

.bg-title span {
    border-bottom: 2px solid #eadc21;
    padding: 0 24px 10px;
    display: inline-block;
}

.border-title {
    text-align: center;
    display: flex;
    flex-direction: column;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    padding: 24px 0;
    font-size: 30px;
    line-height: 1.5em;
    font-weight: 600;
    margin: 0 auto 36px;
}

.border-title.red-title {
    font-size: 30px;
    color: #9d0000;
}

.border-title.red-title span {
    display: block;
    font-size: 20px;
    font-weight: 600;
    color: #000;
}


/* リンクボタン */
p.link-btn {
    margin: 60px auto;
    width: 100%;
    max-width: 680px;
    text-align: center;
    box-sizing: border-box;
}

p.link-btn a {
    border: 5px solid #bababa;
    display: block;
    padding: 36px;
    font-size: 20px;
    font-weight: 600;
    transition: .3s;
    position: relative;
}

p.link-btn a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    border: 12px solid transparent;
    border-left: 15px solid #555;
}

p.link-btn a:hover {
    background-color: #9d0000;
    color: #fff;
}

ul.link-cta-unit{
    display: flex;
    justify-content: space-between;
}
.link-cta {
    margin: 50px auto;
    text-align: center;
    box-sizing: border-box;
    display: none;
}


.link-cta a {
    background-color: #2b86d8;
    background-image: url(../images/foot-icon-mail.png);
    background-position: 4% center;
    background-repeat: no-repeat;
    background-size: 32px;
    border-radius: 8px;
    color: #fff;
    display: block;
    padding: 24px;
    font-size: 1.2rem;
    font-weight: 600;
    transition: .3s;
    position: relative;
}

.link-cta a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 3%;
    transform: translateY(-50%);
    border: 10px solid transparent;
    border-left: 10px solid #fff;
}

.link-cta a:hover {
    background-color:#2b86d8;
}


/* ------------

header

--------------- */
header {
    background-color: #fff;
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 5;
    align-items: center;
    display: grid;
    grid-template-columns: 180px auto;
}
header h1{
   font-size: 1.1em;
   font-weight: 600;
   text-align: center;
}
header nav{
    display: flex;
    justify-content: space-between;
}
header nav ul {
    display: flex;
}
header nav ul.nomal{
    justify-content: flex-start;
}
header nav ul.contact{
    justify-content: flex-end;
}

header nav ul li {
    font-size: 1em;
    font-weight: 500;
    margin-left: 2px;
    min-width: 150px;
}

header nav ul li a {
    display: block;
    text-align: center;
    color: #fff;
    padding: 1.2em 1em;
    font-weight: bold;
}
header nav ul li a:hover {opacity: .6;}

header nav ul li.out a{background-color: #1b1464;}
header nav ul li.score a{background-color: #267a20;}
header nav ul li.in a{background-color: #750da5;}
header nav ul li.bench a{background-color: #d44504;}

header nav ul.contact li a{
    background-color:#0059d0;
    width:240px;
    background-position: 12px center;
    background-repeat: no-repeat;
    background-size: 24px;
    padding-left: 2em;
}
header nav ul.contact li.dl a{background-image: url(../images/foot-icon-form.png);}
header nav ul.contact li.form a{background-image: url(../images/foot-icon-mail.png);}



main.nagoyastadium-contents {
    padding-top: 48px;
    margin-bottom: 260px;
}

/* ------------

メインビジュアル

--------------- */
section.main-visual {
    position: relative;
    margin-bottom: 0;
}
section.main-visual.bg-main{
    background-image: url(../images/bg-main.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 700px;
}

section.main-visual .main-v-text div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 7rem;
}

section.main-visual h1 {
    font-size: 5em;
    font-weight: bold;
    line-height: 1.5em;
    margin-bottom: 6%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

section.main-visual h1 span.min-headding {
    font-size: 1em;
    line-height: 1.2em;
}


/* ------------

contents

--------------- */
section {
    margin-bottom: 100px;
}


.img-dome {
    text-align: center;
}


/*------ 各配色 ------*/
.head-bg {
    position: relative;
    z-index: 1;
    padding-top: 60px;
}

.head-bg::after {
    content: "";
    width: 100%;
    height: 600px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;

}

/* 外野フェンス */
#outfield.head-bg::after {background-color: #1b1464;}
#outfield .slide-title h2.bg-white {color: #1b1464;}
#outfield .swiper.thumbs ul li:hover,
#outfield .swiper.thumbs ul li.swiper-slide-thumb-active {background-color: #1b1464;}

/* スコアボード */
#scoreboard.head-bg::after {background-color: #267a20;}
#scoreboard .slide-title h2.bg-white {color: #267a20;}
#scoreboard .swiper.thumbs ul li:hover,
#scoreboard .swiper.thumbs ul li.swiper-slide-thumb-active {background-color: #267a20;}

/* 内野フェンス */
#infield.head-bg::after {background-color: #750da5;}
#infield .slide-title h2.bg-white {color: #750da5;}
#infield .swiper.thumbs ul li:hover,
#infield .swiper.thumbs ul li.swiper-slide-thumb-active {background-color: #750da5;}

/* ベンチ */
#bench.head-bg::after {background-color: #d44504;}
#bench .slide-title h2.bg-white {color: #d44504;}
#bench .swiper.thumbs ul li:hover,
#bench .swiper.thumbs ul li.swiper-slide-thumb-active {background-color: #d44504;}


/*------ スライド関係 ------*/
.slide-title {
    text-align: center;
    margin-bottom: 24px;
}

.slide-title .bg-white {
    background-color: #fff;
    font-size: 30px;
    font-weight: 600;
    text-align: center;
    display: inline-block;
    padding: 12px 24px;
    margin: 0 auto 24px;
}

.slide-title .border-white {
    border: 2px solid #fff;
    padding: 24px;
    font-size: 22px;
    line-height: 1.8em;
    font-weight: 600;
    color: #fff;
}

/* slider */
.swiper-wrapper {
    height: auto;
}

.swiper-slide img {
    width: 100%;
}

.swiper.mainslide ul li.swiper-slide  h3 {
    font-size: 18px;
    font-weight: 600;
    padding: 24px 0;
    text-align: center;
}

/* サムネイルのスタイル */
.swiper.thumbs {
    margin-top: 32px;
    margin-bottom: 0;
}

.swiper.thumbs ul {
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.swiper.thumbs ul li {
    background-color: #f5f5f5;
    text-align: center;
    border-radius: 6px;
    border: 1px solid #fff;
    padding: 8px 10px;
    cursor: pointer;
    transition: .3s;
    font-size: 0.9rem;
    box-sizing: border-box;
}

.swiper.thumbs ul li span {
    display: block;
    font-size: 0.8rem;
}

.swiper.thumbs ul.big-btn li.swiper-slide {
    width: 320px !important;
}

.swiper.thumbs ul li:hover,
.swiper.thumbs ul li.swiper-slide-thumb-active {
    color: #fff;
}

/* 前へ次への矢印カスタマイズ */
.swiper-button-prev,
.swiper-button-next {
    height: 50px;
    width: 50px;
    top: 250px;
}

/* 前へ次への矢印カスタマイズ */
.swiper-button-prev::after,
.swiper-button-next::after {
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    height: 50px;
    margin: auto;
    width: 50px;
}

/* 前への矢印カスタマイズ */
.swiper-button-prev::after {
    background-image: url(../images/icon-before.svg);
}

/* 次への矢印カスタマイズ */
.swiper-button-next::after {
    background-image: url(../images/icon-next.svg);
}

/* 画像サイズ調整 */
.swiper-slide img {
    height: auto;
    width: 100%;
}




/* ------------

footer

--------------- */
footer {
    display: flex;
    justify-content: space-between;
    color: #fff;
    font-size: 0.8rem;
    padding: 12px 5%;
    background-color: #1b1464;
}

footer ul.footer-sitemap {
    display: flex;
    justify-content: flex-end;
}

footer ul.footer-sitemap li {
    margin-left: 24px;
}

footer ul.footer-sitemap li a:hover {
    color: #3d4095;
}

.side-btn {
    position: fixed;
    z-index: 20;
    top: 45%;
    right: 10px;
    width: 160px;
    transition: .3s;
}

.side-btn:hover {
    opacity: 0.7;
}

.sp-foot-menu{
    display: none;
}

div.side-unit{
    position: fixed;
    right: 1%;
    bottom: 5%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap:20px;
}
p.page-top.dl-sp{display:none;}
p.page-top{
    background-color: #fff;
    border: 2px solid #1b1464;
    text-align: center;
    width: 96px;
    height: 96px;
    border-radius: 50%;
    font-size: 12px;
    line-height: 1.5em;
}
p.page-top:hover{
    background-color: #1b1464;
    color: #fff;
}
p.page-top a{
    display: block;
    width: 100%;
    height: 100%;
    padding-top: 18px;
}
p.page-top a::before{
    content: "";
    background: #1b1464;
    height: calc(tan(60deg) * 12px / 2);
    width: 12px;
    clip-path: polygon(50% 0, 100% 100%, 0 100%);
    display: block;
    margin-inline:auto ;
    margin-bottom: 8px;
}
p.page-top:hover a::before{
    background-color: #fff;
}
p.side-bnr{width: 160px;}
p.side-bnr:hover{opacity: .6;}


/* サイズ表 */
.size-unit{
    margin-bottom: 0;
    padding-top: 4%;
    padding-bottom: 4%;
}

h2{
    text-align: center;
    color: #fff;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 36px;
}
p.size-img{margin-bottom: 12px;}

div.size-table{overflow:hidden ;}
div.size-table table{
    width: 100%;
    background-color: #fff;
    font-size: 0.85rem;

}
div.size-table table thead th{
    background-color:#E0DEB0;
}
div.size-table table thead th,
div.size-table table tbody td{
    box-sizing: border-box;
    padding:.6em 1rem;
    text-align: center;
    border: 1px solid #333;
    vertical-align: middle;
}
div.size-table table tbody td a{
    color: #203db1;
    text-decoration: underline;
}
div.size-table table tbody td a:hover{
    text-decoration: none;
    color: #ccc;
}

ul.size-caption{
    margin-top: 24px;
}
ul.size-caption li{
    margin-bottom: 8px;
}

/* tablet対応 */
@media (max-width: 1240px) {
    .side-btn {
        top: auto;
        right: 5px;
        bottom: 80px;
        width: 120px;
    }

    section.main-visual .main-v-text div {
        height: 450px;
    }

    section.main-visual h1 {
        font-size: 2.4rem;
        margin-bottom: 8%;
    }
    header{
        grid-template-columns: 140px auto;
    }
    header h1{
        font-size: 1em;
        margin-left: 1%;
    }
    header nav ul li {
        font-size: .85em;
        margin-left: 1px;
        min-width: auto;
    }

    header nav ul li a {
        padding: 1.2em 1em;
    }
    header nav ul.contact li a{
        width:auto;
        padding: 1.2em 1em 1.2em 45px;
    }
    .swiper.thumbs ul li{
        width: auto;
        min-width: 200px;
    }

}

@media (max-width: 1180px) {
    /* 見出し */
    .bg-title {
        font-size: 2rem;
    }

    .border-title,
    .border-title.red-title {
        font-size: 1.6rem;
    }

    .border-title.red-title span {
        font-size: 1.1rem;
    }

    .slide-title .bg-white {font-size: 1.5rem;}
    .slide-title .border-white {font-size: 1.2rem;}


    .swiper.thumbs {
        margin-top: 12px;
    }

    .swiper.thumbs ul li.swiper-slide h3 {
        display: block;
        font-size: 0.8rem;
    }

    .swiper.thumbs ul.big-btn li.swiper-slide {
        width: 46% !important;
    }

    section.metit ul.merit-list li {
        font-size: 1.2rem;
        padding: 16px;
    }

    section.metit p.font-big {
        font-size: 1.2rem;
    }

    .blue-text {
        font-size: 1.2rem;
        border-radius: 20px;
    }

    .link-cta a {
        font-size: 1rem;
    }


    /* サイズ表-tablet */

    div.size-table table thead th,
    div.size-table table tbody td{
        padding:1rem 5px;
    }

    div.size-table table{
        font-size: 0.8rem;
    }

    .side-bnr{display: none;}

}

/* SP対応 */
@media screen and (max-width: 767px) {
    body {
        font-size: 0.8rem;
        line-height: 2em;
    }

    /* ハンバーガーボタンのデザイン */
    .sp-menu{
        position: fixed;
        top: 0;
        right: 0;
        z-index: 999;
    }
    .drawer__button {
        position: relative;
        background:#1b1464;
        display: inline-block;
        width: 50px;
        height: 50px;
        border: none;
        cursor: pointer;
        z-index: 999;
    }

    /* ハンバーガーボタン内の線 */
    .drawer__button>span {
        display: block;
        position: absolute;
        top: 50%;
        left: 50%;
        width: 2rem;
        height: 2px;
        background-color: #fff;
        transform: translateX(-50%);
    }

    .drawer__button>span:first-child {
        transform: translate(-50%, calc(-50% - 0.5rem));
        transition: transform 0.3s ease;
    }

    .drawer__button>span:nth-child(2) {
        transform: translate(-50%, -50%);
        transition: opacity 0.3s ease;
    }

    .drawer__button>span:last-child {
        transform: translate(-50%, calc(-50% + 0.5rem));
        transition: transform 0.3s ease;
    }

    /* 展開時のデザイン */
    .drawer__button.active>span:first-child {
        transform: translate(-50%, -50%) rotate(-45deg);
    }

    .drawer__button.active>span:nth-child(2) {
        opacity: 0;
    }

    .drawer__button.active>span:last-child {
        transform: translate(-50%, -50%) rotate(45deg);
    }

    /* メニューのデザイン */
    .drawer__nav {
        position: fixed;
        /* 追従ヘッダーなどでも表示できるよう設定しておく */
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.5);
        transition: opacity 0.3s ease;
        opacity: 0;
        visibility: hidden;
    }

    .drawer__nav.active {
        opacity: 1;
        visibility: visible;
    }

    .drawer__nav__inner {
        position: relative;
        width: 80%;
        height: 100%;
        background-color: white;
        padding: 4rem 1.5rem 1rem;
        margin: 0 0 0 auto;
        overflow: scroll;
        transform: translateX(100%);
        transition: transform 0.3s ease;
    }

    .drawer__nav.active .drawer__nav__inner {
        transform: translateX(0);
    }

    .drawer__nav__menu {
        list-style: none;
        padding-left: 0;
    }

    .drawer__nav__link {
        display: block;
        color: black;
        text-decoration: none;
        padding: 1rem 1rem;
        border-bottom: solid 1px lightgray;
    }

    header {
        position:inherit;
        background-color: #fff;
        width: 100%;
        z-index: 1;
        display: inherit;
    }
    header h1{
        width: 100%;
        display: none;
    }

    header nav{
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.5);
        transition: opacity 0.3s ease;
        opacity: 0;
        visibility: hidden;
        z-index: 990;
        flex-direction: column;
        justify-content: flex-start;
    }
    header nav.active{
        opacity: 1;
        visibility: visible;
    }

    header nav ul {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        border-right: none;
        overflow: scroll;
        position: relative;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        width: 100%;
    }

    header nav.active ul{
        transform: translateX(0);
        width: 100%;
    }

    header nav ul li {
        border-left: none;
        border-bottom: 1px solid #fff;
        font-size: 1.1rem;
    }

    header nav ul li a,
    header nav ul.contact li a {
        padding-top: 24px;
        padding-bottom: 24px;
    }

    header nav ul li a:hover {
        color: #fff;
        background-color: #1b1464;
    }
    header nav ul.contact li a{
        width:100%;
        background-size: 24px;
    }

    main.nagoyastadium-contents {
        padding-top: 0;
        margin-bottom: 150px;
    }

    div.contents-unit {
        width: 100%;
    }

    section.main-visual.bg-main{
        height: auto;
    }

    section.main-visual h1 {
        font-size: 3em;
        padding-top: 4%;
    }

    section.main-visual h1 span.min-headding{
        font-size: .8em;
    }


    section.main-visual .main-v-text div {
        height: 400px;
        padding-top: 20%;
        justify-content: flex-start;
    }

    section.main-visual .swiper {
        max-height: auto;
    }

    .movie_list_wrap #video {
        max-width: 340px;
    }

    /* 見出し */
    .bg-title {
        font-size: 1.4rem;
        padding: 20px 0;
        margin-bottom: 30px;
    }

    .bg-title span {
        border-bottom: 2px solid #eadc21;
        padding: 0 12px 8px;
        display: inline-block;
    }

    .border-title {
        padding: 20px 0;
        font-size: 1.2rem;
        line-height: 1.5em;
        margin: 0 auto 36px;
    }

    .border-title.red-title {
        font-size: 1.1rem;
    }

    .border-title.red-title span {
        font-size: 0.8rem;
    }

    /* リンクボタン */
    .link-cta {
        margin: 32px auto;
        display: block;
    }

    .link-cta a {
        padding: 20px;
        font-size: 1rem;
    }

    p.link-btn a::after {
        right: 3%;
        border: 8px solid transparent;
        border-left: 10px solid #555;
    }

    section {
        margin-bottom: 40px;
    }


    /* スライドショー */
    .head-bg {
        padding-top: 30px;
    }

    .head-bg::after {
        height: 300px;
    }

    .slide-title {
        margin-bottom: 24px;
    }

    .slide-title .bg-white {
        font-size: 1.2rem;
        padding: 10px 12px;
        margin: 0 auto 24px;
    }

    .slide-title .border-white {
        padding: 12px;
        font-size: 0.9rem;
    }

    /* slider */
    .swiper.mainslide ul li.swiper-slide  h3 {
        display: block;
        font-size: 1rem;
    }

    /* サムネイルのスタイル */
    .swiper.thumbs {
        margin-top: 12px;
    }

    .swiper.thumbs ul li.swiper-slide {
        padding: 6px 0;
        font-size: 0.75rem;
        margin-bottom: 6px;
        width: 46% !important;
    }

    .swiper.thumbs ul li span {
        display: block;
        font-size: 0.8rem;
    }

    .swiper.thumbs ul.big-btn li.swiper-slide {
        width: 46% !important;
    }
    .swiper.thumbs ul li{
        min-width: auto;
    }


    /* 前へ次への矢印カスタマイズ */
    .swiper-button-prev,
    .swiper-button-next {
        height: 30px;
        width: 30px;
        top:100px;
    }

    /* 前へ次への矢印カスタマイズ */
    .swiper-button-prev::after,
    .swiper-button-next::after {
        height: 30px;
        width: 30px;
    }


    .sp-foot-menu{
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 2;
    }
    .sp-foot-menu ul{
        display: grid;
        grid-template-columns: repeat(1,1fr);
        justify-content: center;
    }
    .sp-foot-menu ul li{
        border-right: 1px solid #fff;
    }
    .sp-foot-menu ul li:last-child{
        border-right: none;
    }
    .sp-foot-menu ul li a{
        display: block;
        text-align: center;
        background-color:rgba(35,37,131,0.94);
        color: #fff;
        padding: 10px 0;
        font-size: 0.85rem;
    }
    .sp-foot-menu ul li a:hover{
        background-color:#2b86d8;
    }
    .sp-foot-menu ul li a::before{
        content: "";
        width: 20px;
        height: 20px;
        display: inline-block;
        background-position: center;
        background-repeat: no-repeat;
        background-size: 100%;
        margin-right: 3%;
        position: relative;
        top: 5px;
    }
    .sp-foot-menu ul li.ft-contact a::before{
        background-image: url(../images/foot-icon-form.png);
    }
    .sp-foot-menu ul li.ft-mail a::before{
        background-image: url(../images/foot-icon-mail.png);
    }


    footer {
        flex-direction: column-reverse;
        font-size: 0.75rem;
        justify-content: center;
        text-align: center;
    }
    #nagoyastadium footer{
        padding-bottom: 60px;
    }

    footer ul {
        flex-direction: column;
        margin-bottom: 36px;
    }

    .side-btn {
        top: auto;
        right: 5px;
        bottom: 60px;
        width: 80px;
    }

    p.page-top{
        position: fixed;
        right: 1%;
        bottom: 70px;
        width: 55px;
        height:55px;
        font-size: 9px;
        line-height: 1.3em;
    }
    p.page-top a{
        padding-top: 5px;
    }
    p.page-top a::before{
        height: calc(tan(60deg) * 6px / 2);
        width: 6px;
        margin-bottom: 2px;
    }
    p.page-top.dl-sp{
      display: block;
    }
    p.page-top.dl-sp a{
      background-image: url(../images/foot-icon-mail-blue.png);
      background-repeat: no-repeat;
      background-size: 12px;
      background-position: center  6px;
      padding-top: 18px;
    }
    p.page-top.dl-sp a:hover{
        background-image: url(../images/foot-icon-mail.png);
    }
    p.page-top.dl-sp a::before{
      display: none;
    }



    /* サイズ表-SP */
    .dome-page-title{
        text-align: center;
        padding: 18% 0 6%;
        margin-bottom: 0;
    }
    .dome-page-title h1{
        font-size: 1.3rem;
        line-height: 1.6em;
    }
    .size-unit{
        padding-top: 6%;
        padding-bottom:6%;
    }
    .size-unit article{
        margin-bottom: 60px;
    }
    h2{
        font-size: 1.1rem;
        margin-bottom: 24px;
    }

    div.size-table{
        width: 100%;
        white-space: nowrap;
    }

    div.size-table table{
        border-collapse: collapse;
        font-size: 0.8rem;
    }

    div.size-table table thead th,
    div.size-table table tbody td{
        padding:1rem 3px;
        font-size: .8em
    }
    div.size-table table thead th.price,
    div.size-table table tbody td.price{
        display: none;
    }

    ul.size-caption{
        margin-top: 24px;
    }
    ul.size-caption li{
        margin-bottom: 8px;
    }
}

/* wordpress調整用 */
header#header.nagoyastadiumd-form{
    display: block;
    position: static;
    padding: 40px 0;
}
header#header.nagoyastadiumd-form h1.form-title{
    text-align: center;
    font-size: 2rem;
    line-height: 1.6em;
    font-weight: 600;
    width: 100%;
}
main.nagoyastadium-form-contents{
    padding-top: 0;
}
.nagoyastadium-form-contents section{
  margin-bottom: 24px;
}
.contact-mail{
  text-align: center;
}
.link-cta.page-back{
    display: block;
    max-width: 420px;
}
.link-cta.page-back a{
    background-image: none;
    padding: 24px ;
}
.link-cta.page-back a::after{
    right: auto;
    left: 5%;
    transform: translateY(-50%);
    border: 10px solid transparent;
    border-left: 0;
    border-right: 10px solid #fff;
}
.link-cta.page-back a:hover{
    opacity: .6;
}

@media screen and (max-width: 767px) {
    header#header.nagoyastadiumd-form{
    padding: 24px 0;
    }
  header#header.nagoyastadiumd-form h1.form-title{
        display: block;
      font-size: 1.5rem;
      padding-top: 20px;
    }
}
