@charset "UTF-8";

/*/////////////////////////////
base
loading
header
hamburger menu
kv
news
live act
scroll text
ticket
goods
program
access
footer
/////////////////////////////*/

/*/////////////////////////////
base
 /////////////////////////////*/

*, *::before, *::after {
    box-sizing: border-box;
    margin:0;
    padding:0;
}

:root {
    --theme-color: #0e5277;
    --link-color: #e45d4a;
    --text-color: #2d2d2d;
    --accent-color: #f7b432;
    --white-color: #ffffff;
    --black-color: #2d2d2d;
    --gray-color: #ececec;
    --blue-color:linear-gradient(360deg, #0f2d46, #537599);
    --brown-color: #f2f0ed;
}

html {
    font-size: clamp(14px, 2.5vw, 16px);
    letter-spacing: 0.2rem;
    scroll-behavior: smooth;
}

body {
    font-family: "Roboto", "Noto Sans JP", sans-serif;
    font-size: 1rem;
    color:var(--text-color);
    line-height: 1.6;
    font-feature-settings: "palt";
    margin: 0;
    padding:0;
    overflow-x: clip;
    overflow-wrap: anywhere;
    word-break: normal;
    line-break: strict;
}

ol, ul {
    list-style: none; 
}

a {
    text-decoration: none;
    color: var(--link-color);
    cursor: pointer;
    transition: transform 0.3s,opacity 0.3s ease;
    opacity: 1;
}

a:hover, a:active {
    text-decoration: none;
    opacity: 0.7;
}

.sp{
    display: none;
}

.c-text__link{
    text-decoration: underline;
    text-underline-offset: 5px;
}

@media (max-width: 767px) {
    .sp{
        display: block;
    }
}

/*/////////////////////////////
loading
/////////////////////////////*/

.l-loading {
    width: 100vw;
    height: 100dvh;
    position: fixed;
    top: 0;
    left: 0;
    background: var(--blue-color);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: all 0.3s linear;
    z-index: 9999;
}

.l-loading.loaded {
    opacity: 0;
    visibility: hidden;
}

.l-loading__img {
    width:30%;
}

@media (max-width: 1020px) and (min-width: 768px) { 
    .l-loading__img {
        width:60%;
    }
}

@media (max-width: 767px) {
    .l-loading__img {
        width:80%;
    }
}

/*/////////////////////////////
header
/////////////////////////////*/

header {
    width:100%;
    position: relative;
    overflow: hidden;
}

/*/////////////////////////////
hamburger menu
/////////////////////////////*/

.l-hamburger__menu{
    position:fixed;
    top:0;
    right:0;
    z-index: 100;
}

/* ハンバーガーアイコン */
.p-hamburger__icon {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 100px;
    height: 100px;
    position: relative;
    z-index: 100;
    background: var(--link-color);
    border-radius: 0 0 0 30px;
}

/* ハンバーガーの線 */
.p-hamburger__icon span {
    width: 50px;
    height: 2px;
    background:var(--white-color);
    transition: transform 0.3s, opacity 0.3s;
    position: absolute;
}

/* 1本目（上の線） */
.p-hamburger__icon span:nth-child(1) {
    top: 36%;
}

/* 2本目（中央の線） */
.p-hamburger__icon span:nth-child(2) {
    top: 57%;
}

/* フルスクリーンメニュー */
.l-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100dvh;
    background: var(--blue-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
    opacity: 0; 
    visibility: hidden;
    
}

/* メニューが開いたとき */
.l-menu.active {
    opacity: 1;
    visibility: visible;
}
/* メニューのリンク */
.l-menu ul {
    list-style: none;
    text-align: center;
}

.l-menu li {
    margin: 20px 0;
    letter-spacing: -0.0009rem;
}

.l-menu a {
    color:var(--white-color);
    font-size: 2rem;
    font-weight: 900;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.l-menu a:hover {
    opacity: 0.7;
}
.l-hamburger__menu.active .p-hamburger__icon span {
    background: var(--white-color);
}

.l-hamburger__menu.active .p-hamburger__icon span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.l-hamburger__menu.active .p-hamburger__icon span:nth-child(2) {
    transform: translateY(-10px) rotate(-45deg);
}

.l-nav__logo{
    width:300px;
    margin-bottom:1rem;
}

.l-nav__sns{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
}

.l-nav__sns a{
    margin: 10px;
    border-radius: 100em;
    border: 1px solid var(--white-color);
}

.l-nav__sns img{
    width: 20px;
    margin:1rem;
    padding: 0;
    vertical-align:middle;
}

@media (max-width: 1020px) and (min-width: 768px) {
    .p-hamburger__icon {
        width: 5rem;
        height: 5rem;
        border-radius: 0 0 0 15px;
    }

    .p-hamburger__icon span {
        width: 28px;
        height: 2px;
    }

    .l-hamburger__menu.active .p-hamburger__icon span:nth-child(1) {
        transform: translateY(10px) rotate(45deg);
    }

    .l-hamburger__menu.active .p-hamburger__icon span:nth-child(2) {
        transform: translateY(-7px) rotate(-45deg);
    }
}

@media (max-width: 767px) {

    .l-menu li {
        margin: 10px 0;
        letter-spacing: -0.0009rem;
    }

    .p-hamburger__icon {
        width: 4rem;
        height: 4rem;
        border-radius: 0 0 0 15px;
    }

    .p-hamburger__icon span {
        width: 30px;
        height: 2px;
    }

    .l-hamburger__menu.active .p-hamburger__icon span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .l-hamburger__menu.active .p-hamburger__icon span:nth-child(2) {
        transform: translateY(-5px) rotate(-45deg);
    }

    .l-nav__logo{
        width:200px;
        margin-bottom:1rem;
    }
}

/*/////////////////////////////
kv
/////////////////////////////*/

.l-kv__inner {
    width:100%;
    background-color: var(--white-color);
    padding: 4rem;
}

h1{
    width:100%;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    margin:auto;
}

h1 img{
    width:100%;
    max-width: 100%;
    vertical-align:bottom;
    margin:auto;
}

.l-scroll__box{
    position: absolute;
    left: 1%;
    bottom: 50%;
    writing-mode: vertical-rl;
    font-weight: 500;
    color:#a5a5a5;
}

.l-scroll__box::before {
    animation: scroll 2s infinite;
    background-color:#919191;
    bottom: -500px;
    content: "";
    height: 485px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    width: 1px;
    z-index: 1;
}

.l-scroll__box::after {
    background-color: #ccc;
    bottom: -500px;
    content: "";
    height: 485px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    width: 1px;
}

@keyframes scroll {
    0% {
        transform: scale(1, 0);
        transform-origin: 0 0;
    }
    50% {
        transform: scale(1, 1);
        transform-origin: 0 0;
    }
    51% {
        transform: scale(1, 1);
        transform-origin: 0 100%;
    }
    100% {
        transform: scale(1, 0);
        transform-origin: 0 100%;
    }
}

#p-announce_btn {
    position: fixed;
    right: 5vw;
    bottom: 2.5vh;
    z-index: 10;
}

#p-announce_btn span {
    width:150px;
    height:150px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color:var(--white-color);
    background-color: var(--accent-color);
    border-radius: 100%;
    font-size: 1.18rem;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.09rem;
    box-shadow:0px 0px 15px -5px #b0b0b0;
}

#p-announce_btn span:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 100%;
    border: 4px solid transparent;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.55) 60%, rgba(255, 255, 255, 1) 80%) border-box border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) border-box;
    -webkit-mask-composite: destination-out;
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) border-box;
    mask-composite: exclude;
    transform: rotate(0deg);
    animation: rotate 1.6s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}



@media (max-width: 1020px) and (min-width: 768px) { 
    .l-kv__inner {
        width:90%;
        margin:auto;
        padding:2rem 0;
    }

    h1{
        border-radius: 15px;
    }
}

@media (max-width: 767px) {
    .l-kv__inner {
        width:90%;
        margin:auto;
        padding:40px 0;
    }

    h1{
        width:100%;
        margin:auto;
        border-radius: 15px;
        overflow: hidden;
        position: relative;
    }

    h1 img{
        width:100%;
        max-width: 100%;
        vertical-align:bottom;
        margin:auto;
    }

    .l-scroll__box{
        position: absolute;
        left: 0.5%;
        bottom: 50%;
        font-size: 0.7rem;
    }

    .l-scroll__box::before {
        bottom: -255px;
        height: 240px;
    }

    .l-scroll__box::after {
        bottom: -255px;
        height: 240px;
    }

    #p-announce_btn {
        position: fixed;
        right: 1.5vw;
        bottom: 2vh;
        z-index: 10;
    }

    #p-announce_btn span{
        width:100px;
        height:100px;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        color:var(--white-color);
        background-color: var(--accent-color);
        border-radius: 100%;
        font-size: 0.85rem;
        font-weight: 800;
        line-height: 1.5;
        letter-spacing: 0.05rem;
    }

    #p-announce_btn:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        border-radius: 100%;
        border: 2px solid transparent;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.55) 60%, rgba(255, 255, 255, 1) 80%) border-box border-box;
        -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) border-box;
        -webkit-mask-composite: destination-out;
        mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) border-box;
        mask-composite: exclude;
        transform: rotate(0deg);
        animation: rotate 1.6s linear infinite;
    }
}

/*/////////////////////////////
news
/////////////////////////////*/

.l-contents__wrap {
    width:100%;
    padding:100px 0;
}

.l-bg__gray {
    background-color: var(--brown-color);
}

.l-contents__inner {
    display: block;
    max-width: 1100px;
    width:90%;
    background-color: var(--white-color);
    margin: auto;
    padding: 100px 0;
    border-radius: 30px;
    position: relative;
}

.l-title__left {
    display: inline-block;
    padding: 0 3rem 0 0;
    border-radius: 0 0 30px 0;
    position: absolute;
    top:-3.5rem;
    left:0;
    overflow: hidden;
}

h2{
    font-size: 4.5em;
    letter-spacing: -0.07rem;
    font-weight: 900;
    color: var(--theme-color);
}

.l-news__inner {
    width:70%;
    display: flex;
    align-items: center;
    margin:1rem auto;
    padding-bottom: 0.5rem;
    border-bottom:1px solid #a5a5a5;
}

.l-news__inner a {
    color: var(--text-color);
    text-decoration: underline;
    text-decoration-color:#a5a5a5;
    text-underline-offset: 5px;
    transition: transform 0.3s,opacity 0.3s ease;
    opacity: 1;
}

.l-news__inner a:hover {
    color: var(--text-color);
    text-decoration: none;
    opacity: 0.7;
}

.p-news__date {
    width:14%;
    letter-spacing: 0.09rem;
    font-family: "Oswald", sans-serif;
    font-weight: 300;
}

.p-news__text {
    width:86%;
}

.p-news__category{
    display: inline-block;
    width: 3.5rem;
    margin-left: 1rem;
    color: var(--white-color);
    background:var(--accent-color);
    font-size: 0.7rem;
    text-align: center;
    letter-spacing: 0.1vw;
    line-height: 1.3rem;
    animation:blink 1s ease-in-out infinite alternate;
}

@keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}

@media (max-width: 1020px) and (min-width: 768px) { 

    .l-contents__inner {
        border-radius: 15px;
    }

    .l-news__inner {
        width:80%;
        flex-wrap: wrap;
    }

    .l-title__left {
        display: inline-block;
        border-radius: 0 0 15px 0;
        position: absolute;
        top:-3rem;
        left:0;
    }

    .p-news__date {
        width:100%;
    }

    .p-news__text {
        width:100%;
    }

    h2{
        font-size: 4rem;
        letter-spacing: -0.1rem;
    }
}

@media (max-width: 767px) {
    .l-contents__wrap {
        width:100%;
        padding:80px 0;
    }

    .l-contents__inner {
        display: block;
        width:90%;
        padding: 50px 0;
        border-radius: 15px;
    }

    .l-title__left {
        display: inline-block;
        border-radius: 0 0 15px 0;
        position: absolute;
        top:-2.5rem;
        left:0;
    }

    .l-news__inner {
        width:90%;
        flex-wrap: wrap;
    }

    .p-news__date {
        width:100%;
        letter-spacing: 0.09rem;
        font-size: 1rem;
    }

    .p-news__text {
        width:100%;
        font-size: 1rem;
    }

    .p-news__category{
        display: inline-block;
        width: 3.5rem;
        margin-left: 0.5rem;
        font-size: 0.8rem;
        letter-spacing: 0.4vw;
        line-height: 1.5rem;
    }

    h2{
        font-size: 3rem;
        letter-spacing: -0.1rem;
    }
}

/*/////////////////////////////
live act
/////////////////////////////*/

.l-title__box {
    position: absolute;
    top: 0%;
    left: 50%;
    transform: translate(-50%, -50%);
    line-height: 4.6rem;
}

.l-colume__box {
    display: flex;
    justify-content: space-between;
    margin:auto;
}

.l-colume__item {
    width: 80%;
    display: block;
}

.c-image__hover {
    margin: 0 20px;
    display: block;
    text-align: center;
    color: inherit;
    text-decoration: none;
}

.c-image__on {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.c-image__on img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s,opacity 0.3s ease;
    display: block;
    opacity: 1;
}

.c-image__hover:hover .c-image__on img {
    transform: scale(1.1);
    opacity: 0.7;
}

h3 {
    font-size:1.5rem;
    letter-spacing: 0.15rem;
    font-weight: normal;
    margin-top: 0.5rem;
}

@media (max-width: 1020px) and (min-width: 768px) { 
    .l-title__box{
        width: 100%;
        padding:2rem 0;
        text-align: center;
    }

    .l-colume__box {
        width:90%;
        flex-direction: column;
    }

    .c-image__hover {
        margin:1.5rem 0 2.5rem;
    }

    .c-image__hover:nth-child(2) {
        margin-bottom:0;
    }
}

@media (max-width: 767px) {
    .l-title__box{
        width: 100%;
        padding:2rem 0;
        text-align: center;
        line-height: 3rem;
    }

    .l-colume__box {
        width:100%;
        flex-direction: column;
    }

    .c-image__hover {
        margin:1.5rem 0;
    }

    .c-image__hover:nth-child(2) {
        margin:0;
    }
}

/*/////////////////////////////
scroll text
/////////////////////////////*/

.c-text {
    overflow: hidden;
    display: flex;
    width: 100vw;
    font-family: "Anton";
    white-space: nowrap;
    position: relative;
    border-top:3px solid var(--brown-color);
    border-bottom:3px solid var(--brown-color);
}

.c-text__item {
    flex-shrink: 0;
    font-size: 5rem;
    color:var(--brown-color);
    padding-right: 2rem;
    animation: marquee 24s linear infinite;
}

/* アニメーションのキーフレーム */
@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}


    @media (max-width: 767px) {
    .c-text__item {
        font-size: 4rem;
    }
}

/*/////////////////////////////
ticket
/////////////////////////////*/

.l-ticket__inner {
    width:90%;
    margin:auto;
}

.l-ticket__subtitle {
    display: block;
    width: 60%;
    min-width: 600px;
    margin:0 auto 2rem;
    text-align: center;
    font-size:1.5rem;
    padding: 0.5rem 0;
    border: 1px solid #1f1f1f;
}

.l-ticket__detail {
    width:60%;
    display: flex;
    align-items: center;
    margin:1rem auto;
    padding-bottom: 0.5rem;
    border-bottom:1px solid #a5a5a5;
}

.p-ticket__type {
    width: 60%;
    font-size: 1.2rem;
    font-weight: 600;
}

.p-ticket__price {
    width: 40%;
    text-align: right;
    font-size: 1rem;
    letter-spacing: 0.09rem;
    font-weight: 600;
}

.p-ticket__price span {
    font-size: 2rem;
    vertical-align: baseline;
    font-weight: 400;
    font-family: "Oswald", sans-serif;
}

.l-ticket__secondary_inner {
    text-align: center;
    margin:1rem 0 3rem;
}

.p_font__s {
    font-size: 0.8rem;
}

.l-ticket__date {
    font-size: 1rem;
    letter-spacing: 0.09rem;
    font-weight: 600;
}

.l-ticket__date span {
    font-size: 2rem;
    vertical-align: baseline;
    font-weight: 400;
    font-family: "Oswald", sans-serif;    
}

.p-ticket__category{
    text-align: center;
    margin-bottom:1rem;
}

a.c-ticket__btn,a.c-ticket__secondary_btn {
    display:block;
    width: 50%;
    
    margin:0 auto 2rem;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    padding: 1rem 0;
    border: 3px solid #1f1f1f;
    border-radius: 50px;
    position: relative;
    transition: opacity 0.3s ease;
    opacity: 1;
    font-family: "Oswald";   
}

a.c-ticket__secondary_btn {
    background-color: var(--link-color);
    border: none;
    color:var(--white-color);
}

a.c-ticket__btn img {
    width:100px;
    vertical-align:middle;
}

a.c-ticket__btn:hover,a.c-ticket__secondary_btn:hover {
    opacity: 0.7;
}

a.c-ticket__btn::after {
    display: block;
    position: absolute;
    content: "";
    background: url(../img/link_icon.svg) no-repeat center center;
    background-size: contain;
    top: calc(50% - 1rem / 2);
    right: 2rem;
    width: 1rem;
    height: 1rem;
}

a.c-ticket__secondary_btn::after {
    display: block;
    position: absolute;
    content: "";
    background: url(../img/w_link_icon.svg) no-repeat center center;
    background-size: contain;
    top: calc(50% - 1rem / 2);
    right: 2rem;
    width: 1rem;
    height: 1rem;
}

.l-colume__inner{
width:90%;
}

.l-ticket__attention_title {
    padding-top:2rem;

}

.l-ticket__attention {
    list-style: disc;
    font-size: 0.8rem;
    line-height: 1.2rem;
    list-style-position: inside;
    text-indent: -1rem;
    padding-left: 1rem;
    margin-bottom: 1rem;
}

.l-ticket__attention li {
    padding-bottom: 0.5rem;
}

@media (max-width: 1020px) and (min-width: 768px) { 
    a.c-ticket__btn,a.c-ticket__secondary_btn {
        width: 70%;
    }
}

@media (max-width: 767px) {

    .l-ticket__subtitle {
        width: 100%;
        margin:1.5rem auto;
        min-width: 100%;
    }

    .l-ticket__detail {
        width:100%;
        margin:1rem auto;
    }

    .p-ticket__price span {
        font-size: 1.5rem;
    }


    .p-ticket__sp{
        writing-mode: vertical-rl;
    }

    a.c-ticket__btn,a.c-ticket__secondary_btn {
        width: 100%;
        min-width: 100%;
        margin:0 auto 2rem;
        padding: 1rem 0;
    }

    a.c-ticket__btn img {
    width:90px;
    }
}

/*/////////////////////////////
goods
/////////////////////////////*/

.l-goods__inner{
    width:90%;
    margin:1.5rem auto 0;
}

.l-goods__inner h4{
    font-size: 1.3rem;
    text-align: center;
}

.l-goods__inner img{
    display:block;
    width:80%;
    margin:3rem auto 1.5rem;
}

.l-goods__attention{
    font-size: 0.8rem;
    text-align: center;
}

@media (max-width: 1020px) and (min-width: 768px) { 

    .l-goods__inner{
        width:100%;
    }

    .l-goods__inner img{
        display:block;
        width:100%;
    }

    .l-goods__inner h4{
        text-align: left;
    }
}

@media (max-width: 767px) {

    .l-goods__inner{
        width:100%;
    }

    .l-goods__inner img{
    display:block;
    width:100%;
    }

    .l-goods__inner h4{
    text-align: left;
    }

    .l-goods__attention{
    text-align: left;
    }
}

/*/////////////////////////////
program
/////////////////////////////*/

.l-bg__blue {
    background: var(--theme-color);
}

.l-title__program__box {
    width:40%;
}

.l-title__program__box h2{
    color:var(--white-color);
    line-height: 1em;
    margin-bottom:2rem;
}

.l-title__program__box h2 span{
    font-size: 0.73em;
}

.l-img__program__box {
    width:60%;
}

.l-img__program__box img{
    width:100%;
}

.l-contents__program__inner {
    display: block;
    max-width: 1100px;
    width:90%;
    margin: auto;
}

/* .l-contents__secondary__inner {
    display: block;
    width:65%;
    background-color: var(--white-color);
    padding: 100px 0;
    border-radius: 30px;
} */

.l-contents__secondary__inner {
    display: block;
    width:100%;
    background-color: rgb(17, 92, 133);
    padding: 2rem 0;
    color: var(--white-color);
    margin-top:4rem;
}


.l-program__inner {
    width:90%;
    margin:auto;
    text-align: center;
}

.l-program__inner img{
    width:100%;
    display: block;
    margin:0 auto 3rem;
}

.l-program__detail__container{
    margin:2rem 0;
}

.l-program__inner h4{
    font-size: 1.3rem;
    margin:0 auto 1rem;
}

.l-program__badge{
    width:120px;
    color:var(--white-color);
    background-color:var(--theme-color);
    font-size: 1rem;
    text-align: center;
    padding: 2px 0;
    margin-bottom: 10px;
    font-weight: 600;
}

.l-program__text{
    font-weight: 600;
}

@media (max-width: 1020px) and (min-width: 768px) { 

    .l-contents__program__inner {
        width:100%;
    }

    .l-program__inner {
        text-align: left;
    }

    .l-program__inner img{
        width:60%;
        display: block;
        margin:0 auto 3rem;
    }

    .l-title__program__box {
        width:100%;
        margin-bottom: 2rem;
    }

    .l-title__program__box h2{
        text-align: center;
    }

    .l-img__program__box {
        width:100%;
    }  

    .l-contents__secondary__inner {
        width:90%;
        padding: 2rem 0;
        margin: 20px auto 0;
    }
}

@media (max-width: 767px) {

    .l-contents__program__inner {
        width:100%;
    }

    .l-program__inner {
        text-align: left;
    }

    .l-program__inner img{
        width:100%;
        display: block;
        margin:0 auto 3rem;
    }

    .l-title__program__box {
        width:100%;
        margin-bottom: 2rem;
    }

    .l-title__program__box h2{
        text-align: center;
    }

    .l-img__program__box {
        width:90%;
        margin:auto;
    }  

    .l-contents__secondary__inner {
        width:90%;
        padding: 30px 0;
        margin: 30px auto 0;
    }

}

/*/////////////////////////////
access
/////////////////////////////*/

.l-access__inner{
    width:90%;
    margin:1.5rem auto 0;
}

.l-access__map {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    height: 0;
    margin-bottom:2rem;
}

address{
font-style:normal;
}

address p{
margin-top:1rem;
}

.l-access__map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.l-access__subtitle{
    font-size: 1.5rem;
}

a.c-more__btn {
    display:block;
    color: var(--link-color);
    font-size: 1.5rem;
    font-family: "Oswald", sans-serif;   
    width: 45%;
    min-width: 400px;
    margin:2rem auto 0;
    text-align: center;
    padding: 1rem 0;
    border: 1px solid #1f1f1f;
    border-radius: 50px;
    position: relative;
    transition: opacity 0.3s ease;
    opacity: 1;
    background-color: var(--white-color);
}

a.c-more__btn:hover {
    opacity: 0.7;
}

a.c-more__btn::after {
    display: block;
    position: absolute;
    content: "";
    background: url(../img/link_icon.svg) no-repeat center center;
    background-size: contain;
    top: calc(50% - 1rem / 2);
    right: 2rem;
    width: 1rem;
    height: 1rem;
}

@media (max-width: 767px) {
    .l-access__inner{
        width:100%;
    }

    a.c-more__btn {
        width: 100%;
        min-width: 100%;
    }
}

/*/////////////////////////////
footer
/////////////////////////////*/

footer{
    background: var(--black-color);
    color:var(--white-color);
    text-align: center;
    padding:4rem 0 0;
}

.p-footer__heading{
    font-weight: 600;
    margin-bottom:0.5rem;
}

footer dd{
    margin-bottom:2rem;
    line-height:2rem;
}

footer dd a{
    text-decoration: underline;
    transition: opacity 0.3s ease;
    opacity: 1;
    color:var(--white-color);
}

footer dd a:hover{
    color:var(--white-color);
    text-decoration: none;
    opacity: 0.7;
}

.copyright{
    background: #161616;
    padding:1rem 0;
    margin-top:4rem;
    font-size: 1rem;
    font-family: "Oswald", sans-serif;
}

.p-footer__link a img {
    width:300px;
}

@media (max-width: 767px) {
    .p-footer__link a img {
        width:240px;
    }
}






