@charset "UTF-8";

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

    header

--------------------------------------------------*/
@media screen and (min-width: 768px) {
    header {
        width: 100%;
        background-color: #fff;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 500;
    }
    header h1 {
        line-height: 2.4;
        color: #fff;
        font-size: 1.3rem;
        font-weight: 300;
        letter-spacing: 0.025em;
        background-color: #b81313;
        border-bottom: 3px solid  #232323;
    }
    header h1 span {
        display: block;
    }
    header .hd-basis {
        align-items: center;
    }
    header .hd-items {
        flex: 1 1 0%;
        margin-left: 70px;
        padding: 17px 0 14px;
    }
    header .hd-adr {
        align-items: center;
        justify-content: flex-end;
    }
    header .hd-adr img {
        vertical-align: middle;
    }
    header .hd-adr--tel {
        padding-left: 20px;
        margin: 0 17px 0 23px;
        font-size: 2.6rem;
        font-weight: bold;
        position: relative;
    }
    header .hd-adr--tel::before {
        content: '';
        display: block;
        width: 2px;
        height: 22px;
        background-color: #3a3a3a;
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-50%) rotate(25deg);
    }
    header .hd-adr--tel span {
        display: inline-block;
        margin-right: 6px;
        font-size: 1.8rem;
    }
    header .hd-adr--tel span::first-letter {
        letter-spacing: -0.1em;
        font-size: 2.6rem;
    }
    header .hd-adr--btn:hover {
        opacity: .7;
    }
    header .gnav {
        font-size: 1.6rem;
    }
    header .gnav-inner {
        display: flex;
        flex-flow: row wrap;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }
    header .gnav-inner li {
        padding-right: 20px;
        padding-left: 14px;
        text-align: center;
        border-right: 1px solid #000;
        white-space: nowrap;
        position: relative;
    }
    header .gnav-inner li:not(:first-child) {
        flex: 1;
        padding-right: 20px;
        margin-left: 20px;
    }
    header .gnav-inner li::after {
        content: '';
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 4.5px 0 4.5px 8px;
        border-color: transparent transparent transparent #bdbdbd;
        position: absolute;
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
        transition: all 0.5s;
    }
    header .gnav-inner li:hover::after {
        border-color: transparent transparent transparent #b81313;
    }
    header .gnav-inner .current::after {
        border-color: transparent transparent transparent #b81313;
    }
}
@media all and (-ms-high-contrast: none) {
    *::-ms-backdrop, header .gnav-inner li {
        display: flex;
        align-items: center;
    }
    *::-ms-backdrop, header .gnav-inner li:not(:first-child) {
        flex: auto;
    }
}
@media screen and (max-width: 767px) {
    header .hd-bar {
        align-items: center;
        width: 100%;
        padding: 5px 10px;
        background-color: #fff;
        box-shadow: 0px 9px 10px -10px rgba(0, 0, 0, 0.4);
        position: fixed;
        top: 0;
        left: 0;
        z-index: 1000;
        transition: all 0.75s;
    }
    header .scrollTop {
        transform: translateY(0);
    }
    header .scrollDown {
        transform: translateY(-100%);
    }
    header .hamburger-btn {
        cursor: pointer;
        width: 40px;
        height: 40px;
        position: relative;
        transition: all 0.5s;
    }
    header .hamburger-btn span {
        display: block;
        width: 30px;
        height: 2.5px;
        margin: auto;
        background-color: #b81313;
        transition: all 0.3s;
        position: absolute;
        right: 0;
        left: 0;
    }
    header .hamburger-btn span:first-child {
        top: 9px;
    }
    header .hamburger-btn span:nth-child(2) {
        top: 19px;
    }
    header .hamburger-btn span:last-child {
        top: 29px;
    }
    header .hamburger-btn.active span:first-child {
        transform: rotate(45deg);
    }
    header .hamburger-btn.active span:last-child {
        transform: rotate(-45deg);
    }
    header .hamburger-btn.active span:nth-child(2) {
        opacity: 0;
        transform: translateX(20px);
    }
    header .hamburger-btn.active span:not(:nth-child(2)) {
        top: 19px;
    }
    header h1 {
        width: auto;
        height: 20px;
    }
    header h1 img {
        height: 100%;
    }
    header .gnav {
        display: none;
        align-items: baseline;
        width: 100%;
        height: 100%;
        padding: 20px 20px 35%;
        color: #3a3a3a;
        font-size: 16px;
        background-color: #fff;
        position: fixed;
        top: 50px;
        left: 0;
        overflow-y: auto;
        z-index: 500;
    }
    header .gnav ul {
        width: 100%;
        border-bottom: 1px solid #333;
        padding: 0 0 9px;
    }
    header .gnav ul li {
        transition: all 0.5s;
    }
    header .gnav ul li:hover {
        color: #b81313;
    }
    header .gnav ul .current {
        color: #b81313;
    }
    header .gnav-inner {
        margin: 0 0 9px;
    }
    header .gnav-inner li:first-child {
        margin-bottom: 9px;
        padding-bottom: 9px;
        border-bottom: 1px solid #333;
    }
    header .gnav-inner a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 7px;
        transition: all 0.4s;
    }
    header .gnav-inner a::after {
        content: '\f0da';
        font-size: 0.8em;
        font-weight: 900;
        font-family: "Font Awesome 5 Free";
    }
    header .gnav-inner a:hover {
        transform: translate3d(3px, -3px, 0);
    }
    header .gnav-sub--inner li {
        width: 100%;
    }
    header .gnav-sub--inner a {
        padding: 4px 7px;
        font-size: 1.4rem;
    }
}

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

    catch

--------------------------------------------------*/
.catch {
    position: relative;
    border-bottom: 6px solid #000;
}
.catch-inner {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: center;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.catch-title {
    font-family: 'NotoSerif', serif;
    text-align: center;
}
.catch-title--sub {
    display: inline-block;
    margin: 0 0 14px;
    color: #fff;
    font-weight: 300;
    background-color: rgba(25, 22, 23, 0.97);
}
.catch-title--main {
    display: block;
    font-weight: 500;
    letter-spacing: 0.01em;
    background-color: rgba(254, 253, 252, 0.97);
}
@media screen and (min-width: 768px) {
    .catch {
        height: 600px;
        margin-top: 131px;
    }
    .catch-title br {
        display: none;
    }
    .catch-title--sub {
        padding: 8px 35px;
        font-size: 3.0rem;
    }
    .catch-title--main {
        padding: 4px 64px 6px;
        font-size: 6.0rem;
    }
}
@media screen and (max-width: 767px) {
    .catch {
        height: 60vh;
        margin-top: 50px;
    }
    .catch-title {
        width: 90%;
        margin: 0 auto;
    }
    .catch-title br {
        content: normal;
    }
    .catch-title--sub {
        padding: 5px 3%;
        font-size: 1.6rem;
    }
    .catch-title--main {
        padding: 10px 3%;
    }
}
.catch-under {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
    background: url(../images/common/under-catch--bg.png) no-repeat center/cover;
}
.catch-under.club-catch {
    background: url(../images/club/catch-bg.png) no-repeat center/cover;
}
.catch-under--title {
    font-weight: 300;
    text-align: center;
    background-color: rgba(247, 247, 247, 0.9);
}
@media screen and (min-width: 768px) {
    .catch-under {
        height: 316px;
        margin-top: 131px;
        border-bottom: 6px solid  #181818;
    }
    .catch-under--title {
        padding: 9px 90px;
        font-size: 4.5rem;
    }
}
@media all and (-ms-high-contrast: none) {
    *::-ms-backdrop, .catch-under--title {
        height: 76px;
        line-height: 76px;
    }
}
@media screen and (max-width: 767px) {
    .catch-under {
        height: 30vh;
    }
    .catch-under--inner {
        width: 100%;
    }
    .catch-under--title {
        width: 90%;
        max-width: 420px;
        padding: 7px 15px;
        margin: auto;
    }
}

/*  ▼ gymnova
------------------------------------- */
.gymnova {
    background: url(../images/top/gymnova/gymnova-bg.png) no-repeat center/cover;
}
.gymnova-title {
    text-align: center;
}
.gymnova-title img {
    display: block;
    margin: 0 auto 10px;
}
.gymnova-title--en {
    display: inline-block;
    color: #fff;
    font-style: italic;
    font-size: 1.5rem;
    font-weight: 300;
    font-family: 'NotoSerif', serif;
    background: linear-gradient(to right, rgba(0, 0, 0, 0), #212121 25%, #212121 75%, rgba(0, 0, 0, 0)) no-repeat center;
}
.gymnova-prod {
    overflow: hidden;
}
.gymnova-prod a:focus {
    outline: none;
}
.gymnova-button {
    text-align: right;
}
.gymnova-prod a:hover {
    opacity: 0.7;
}
.gymnova-button a {
    display: inline-block;
    padding-left: 18px;
}
.gymnova-button a:hover {
    opacity: .7;
}
@media screen and (min-width: 768px) {
    .gymnova {
        padding: 70px 0 50px;
    }
    .gymnova-title {
        margin: 0 0 40px;
    }
    .gymnova-title--en {
        width: 370px;
        padding: 5.5px 0;
    }
    .gymnova-prod--items {
        margin-right: 30px;
    }
    .gymnova-prod img {
        width: 100%;
    }
    .gymnova-button {
        width: 1080px;
        margin: 40px auto 0;
        font-size: 1.6rem;
    }
}
@media screen and (max-width: 767px) {
    .gymnova {
        background-position: left center;
    }
    .gymnova-title {
        font-size: 1.8rem;
    }
    .gymnova-title img {
        height: 26px;
    }
    .gymnova-title--en {
        width: 300px;
        margin: 10px auto 0;
    }
    .gymnova-prod--items {
        margin-right: 20px;
    }
    .gymnova-prod {
        margin: 30px 0;
    }
    .gymnova-prod li {
        margin-right: 20px;
    }
    .gymnova-button {
        width: calc(100% - 25px);
        margin: 0 auto;
        font-size: 1.6rem;
    }
}

/*  ▼ greeting
------------------------------------- */
.greeting {
    color: #fff;
    background: url(../images/top/greeting/greeting-bg.png) no-repeat center/cover;
}
.greeting-title {
    margin: 0 0 8.16327%;
    font-family: 'ARDESTINE', sans-serif;
}
.greeting-title span {
    color: #fff;
}
.greeting-about {
    width: 100%;
    background: linear-gradient(to top left, rgba(0, 0, 0, 0) 50%, #5d0707 50.3%) no-repeat top left/139px 135px, url(../images/top/greeting/greeting-about.png) no-repeat center/cover;
}
.greeting-about--title {
    width: 100%;
    margin: 0 0 30px;
    color: #161616;
    background: url(../images/top/greeting/greeting-about--title__bg.png) no-repeat center;
    font-family: 'ARDESTINE', sans-serif;
}
.greeting-about--title span {
    display: inline-block;
}
.greeting-about--link {
    display: flex;
    flex-flow: row wrap;
    align-items: flex-end;
    width: 31.8%;
    height: 26vw;
    max-height: 250px;
    border: 1px solid  #535353;
}
.greeting-about--link:hover {
    opacity: 0.8;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}
.greeting-about--link:nth-of-type(1) {
    background: url(../images/top/greeting/greeting-about--link01.png) no-repeat center top/contain;
}
.greeting-about--link:nth-of-type(2) {
    background: url(../images/top/greeting/greeting-about--link02.png) no-repeat center top/contain;
}
.greeting-about--link:nth-of-type(3) {
    background: url(../images/top/greeting/greeting-about--link03.png) no-repeat center top/contain;
}
.greeting-about--link p {
    width: 100%;
    background: url(../images/top/greeting/greeting-about--link__bg.png) no-repeat top left;
}
.greeting-about--link span::after {
    left: auto;
    right: 0;
    border-color: transparent transparent transparent #fff;
}
@media screen and (min-width: 768px) {
    .greeting {
        padding: 113px 0;
    }
    .greeting-title {
        font-size: 5.5rem;
    }
    .greeting-content {
        width: 490px;
    }
    .greeting-video {
        width: 510px;
        height: 340px;
    }
    .greeting .greeting-about--link {
        background-size: cover;
    }
    .greeting-about {
        margin: 60px 0 0;
        padding: 60px 50px 70px;
    }
    .greeting-about--title {
        padding: 7px 36px;
        font-size: 3.5rem;
    }
    .greeting-about--title span {
        font-size: 1.5rem;
        margin-left: 18px;
    }
    .greeting-about--link p {
        padding: 22px 30px 13px;
        font-size: 2.0rem;
        background-size: 100% auto;
    }
    .greeting-about--link span {
        padding-right: 24px;
    }
}
@media screen and (max-width: 767px) {
    .greeting-title {
        font-size: 5.0rem;
    }
    .greeting-video {
        width: 100%;
        height: 62.96296vw;
        margin: 5% auto 8%;
    }
    .greeting-about {
        padding: 30px 15px;
    }
    .greeting-about--title {
        line-height: 1;
        padding: 10px;
        font-size: 3.0rem;
        background-size: 100% 100%;
    }
    .greeting-about--title span {
        display: block;
        line-height: 1;
        margin-left: 0;
        font-size: 1.4rem;
    }
    .greeting-about--link p {
        padding: 22px 10px 13px;
    }
    .greeting-about--link span {
        padding-right: 18px;
    }
}
@media screen and (max-width: 540px) {
    .greeting .greeting-about--link {
        width: 100%;
        height: 124vw;
        background-size: cover;
    }
    .greeting .greeting-about--link:nth-of-type(even) {
        margin: 20px 0;
    }
    .greeting .greeting-about--link p {
        background-size: 100%;
    }
}

/*  ▼ news
------------------------------------- */
.news {
    background: url(../images/common/pattern01.png) repeat;
}
.news-basis {
    padding: 1.85185% 0;
    border-top: 1px solid #434343;
    border-bottom: 1px solid #434343;
}
.news-items {
    display: flex;
    flex-flow: column wrap;
    align-items: center;
    align-content: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    border-radius: 50%;
    background-color: #000;
}
.news-items:hover {
    opacity: .7;
}
.news-items--btn {
    width: 100%;
    font-size: 1.4rem;
}
.news-title--en {
    display: block;
    line-height: 1;
    font-family: 'ARDESTINE', sans-serif;
}
@media screen and (min-width: 768px) {
    .news {
        padding: 80px 0 100px;
    }
    .news-basis {
        margin-bottom: 50px;
    }
    .news-items {
        width: 245px;
        height: 245px;
    }
    .news-items--btn {
        width: 110px;
        padding-left: 18px;
    }
    .news-title {
        margin-bottom: 25px;
        font-size: 3.5rem;
    }
    .news-title--en {
        font-size: 3.0rem;
    }
    .news-list {
        width: 770px;
        min-height: 250px;
    }
}
@media screen and (max-width: 767px) {
    .news-basis {
        padding: 30px 0;
        margin-bottom: 40px;
    }
    .news-items {
        width: 100px;
        height: 100px;
    }
    .news-items--btn {
        font-size: 1.2rem;
    }
    .news-items--btn::after {
        content: normal;
    }
    .news-title {
        margin: 0 0 7px;
        font-size: 1.6rem;
    }
    .news-title--en {
        font-size: 1.4rem;
    }
    .news-list {
        width: calc(100% - 120px);
    }
    .news-list a {
        flex-direction: column;
    }
    .news-list span {
        width: 100%;
    }
}
.another-links--items {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: flex-end;
    width: 45.5%;
    border-right: 25px solid #0f0f0f;
}
.another-links--items:hover {
    opacity: .7;
}
.another-links--items::before {
    content: '';
    display: block;
    padding-top: 32.25714%;
}
.another-links--items:first-of-type {
    background: #a50807 url(../images/top/news/another-links--bg01.png) no-repeat left center/contain;
}
.another-links--items:last-of-type {
    background: #1d1e71 url(../images/top/news/another-links--bg02.png) no-repeat left center/contain;
}
.another-links--items span {
    display: block;
    width: 50%;
    text-align: left;
}
.another-links--items span::after {
    left: auto;
    right: -18px;
    border-color: transparent transparent transparent #fff;
}
@media screen and (max-width: 767px) {
    .another-links--items img {
        height: 30px;
    }
}
@media screen and (max-width: 570px) {
    .another-links--items {
        width: 100%;
    }
    .another-links--items::before {
        padding-top: 42.85714%;
    }
    .another-links--items:first-child {
        margin-bottom: 20px;
    }
    .another-links--items span {
        width: 35%;
    }
    .another-links--items img {
        height: 33px;
    }
}

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

    charm

--------------------------------------------------*/
.charm-lead {
    color: #fff;
    text-align: center;
    background: url(../images/charm/charm-bg.png) no-repeat center/cover;
    position: relative;
    z-index: 1;
}
.charm-lead--title {
    font-weight: 300;
}
.charm-lead--title span {
    display: inline-block;
    font-style: italic;
    background: url(../images/charm/deco.png) no-repeat center bottom/100% 3px;
}
.charm-lead--title br {
    content: normal;
}
@media screen and (min-width: 768px) {
    .charm-lead {
        padding: 114px 0 216px;
    }
    .charm-lead--title {
        margin: 0 0 15px;
        font-size: 3.6rem;
    }
    .charm-lead--title span {
        margin: 0 0 15px;
        padding: 0 0 10px;
    }
}
@media screen and (max-width: 767px) {
    .charm-lead {
        padding: 80px 0 200px;
        background-position: bottom;
    }
    .charm-lead--title {
        margin: 0 0 18px;
        font-size: 2.2rem;
    }
    .charm-lead--title span {
        padding: 0 0 7px;
        margin: 0 0 12px;
    }
    .charm-lead p br {
        content: normal;
    }
}
@media screen and (max-width: 480px) {
    .charm-lead p {
        font-size: 1.3rem;
    }
}
.charm li:nth-of-type(even) {
    margin-top: 9.25926%;
    margin-bottom: 4.62963%;
}
.charm-content--box {
    background-color: #f1f1f1;
    box-shadow: 0px 2px 6.51px 0.49px rgba(0, 0, 0, 0.13);
}
.charm-content--title {
    align-items: center;
    justify-content: flex-start;
    padding: 0 0 2.0339%;
    margin: 0 0 4.40678%;
    font-weight: 500;
    border-bottom: 1px solid #313131;
    position: relative;
}
.charm-content--title::after {
    content: '';
    display: block;
    width: 10px;
    height: 1px;
    background-color: #313131;
    transform: rotate(45deg);
    position: absolute;
    right: 0;
    bottom: 3px;
}
.charm-content--num {
    margin-right: 0.83em;
}
.charm {
    position: relative;
    z-index: 10;
}
@media screen and (min-width: 768px) {
    .charm {
        padding: 0 0 130px;
        margin-top: -140px;
        background-repeat: no-repeat;
        background-position: left top 190px, right bottom;
        background-image: url(../images/common/cmn-logo--bg02.png), url(../images/common/cmn-logo--bg02.png);
    }
    .charm-content {
        position: relative;
    }
    .charm-content--box {
        width: 590px;
        min-height: 340px;
        padding: 40px 30px;
        z-index: 10;
    }
    .charm-content--title {
        font-size: 2.4rem;
    }
    .charm li:nth-of-type(odd) .charm-content--box {
        margin-top: -250px;
        margin-left: auto;
    }
    .charm li:nth-of-type(even) .charm-content--box {
        margin-top: -400px;
    }
    .charm li:nth-of-type(even) .charm-content--fig {
        margin-left: auto;
    }
}
@media screen and (min-width: 1600px) {
    .charm {
        background-position: left 150px top 190px, right 150px bottom;
    }
}
@media screen and (max-width: 767px) {
    .charm {
        margin-top: -100px;
        padding: 0 0 50px;
    }
    .charm li:nth-child(even) {
        margin-bottom: 9.25926%;
    }
    .charm-content {
        max-width: 552px;
        padding: 0;
        margin: auto;
    }
    .charm-content--box {
        margin-top: -3px;
        padding: 20px;
    }
    .charm-content--title {
        font-size: 2.0rem;
    }
    .charm-content--main {
        width: 80%;
    }
    .charm-content--num {
        width: 42.67px;
    }
    .charm-content--num img {
        width: 100%;
        height: 100%;
    }
}
.charm-video {
    background-color: #0f1014;
    background-repeat: no-repeat;
    background-position: left center, right center;
    background-image: url(../images/charm/charm-video--left.png), url(../images/charm/charm-video--right.png);
}
@media screen and (min-width: 768px) {
    .charm-video {
        padding: 50px 0;
    }
    .charm-video--wrap {
        width: 725px;
        height: 410px;
    }
}
@media screen and (max-width: 767px) {
    .charm-video {
        padding: 25px 0;
    }
    .charm-video--wrap {
        max-width: 552px;
        height: 56.55172vw;
    }
}

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

    product

--------------------------------------------------*/
.product-nav li {
    width: 50%;
    text-align: center;
    border: 1px solid  #bfbfbf;
}
.product-nav li:last-child {
    border-width: 1px 1px 1px 0;
}
.product-nav a {
    padding: 4.62963% 0;
}
.product-nav a:not(.product-nav--current):hover {
    color: #fff;
    background-color: #b81313;
}
.product-nav--current {
    color: #c3c3c3;
    background-color: #e5e5e5;
}
.product article {
    padding: 0;
}
.product-card {
    display: flex;
    align-items: stretch;
    flex-flow: column wrap;
    border: 1px solid #313131;
    cursor: pointer;
    transition: all 0.5s;
}
.product-card:hover {
    opacity: 0.7;
}
.product-title {
    width: 100%;
    color: #fff;
    font-weight: 300;
    background: url(../images/product/product-content--deco.png) no-repeat left top/auto 99%, linear-gradient(to top left, rgba(0, 0, 0, 0) 50%, #181818 51%) no-repeat top left/400% 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    position: relative;
    z-index: 10;
}
@media all and (-ms-high-contrast: none) {
    *::-ms-backdrop, .product-title {
        background: url(../images/product/product-content--deco.png) no-repeat left top/auto 99%, linear-gradient(to top left, rgba(0, 0, 0, 0) 50%, #181818 50.1%) no-repeat top left/400% 100%;
    }
}
.product-thumb {
    margin: -6% 0 0;
    width: 100%;
    height: 0;
    padding-top: 73.53%;
    position: relative;
}
.product-thumb img {
    width: 100%;
    height: 100%;
    max-width: none;
    margin: auto;
    object-fit: cover;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.product-inner {
    flex: 1;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    line-height: 1.47;
}
.product-button {
    width: 100%;
    height: 45px;
    margin-top: auto;
    color: #fff;
    text-align: center;
    background-color: #181818;
    transition: all 0.5s;
}
.product-card:hover .product-button {
    background-color: #b81313;
}
.product-modal {
    display: none;
    width: 100%;
    background-color: #fff;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow-y: scroll;
    z-index: 10000;
}
.product-modal--thumbs img {
    width: 100%;
    height: 100%;
}
.product-modal--thumbs__sub {
    justify-content: flex-start;
}
.product-modal--title {
    padding-left: 0.57em;
    border-left: 10px solid #b81313;
}
.product-modal--subtitle {
    align-items: center;
    justify-content: flex-start;
    font-family: 'ARDESTINE', sans-serif;
    border-bottom: 2px solid  #3a3a3a;
}
.product-modal--subtitle span {
    font-family: 'NotoSans', 'Noto Sans JP', sans-serif;
    font-weight: 300;
    font-size: 1.5rem;
}
.product-modal td:empty {
    content: '-';
}
.js-modal__close {
    line-height: 1;
    font-size: 1.5em;
    cursor: pointer;
    position: fixed;
    top: 10px;
    right: 10px;
}
@media screen and (min-width: 768px) {
    .product {
        padding: 70px 0 100px;
    }
    .product-nav {
        font-size: 1.9rem;
        margin: 0 0 77px;
    }
    .product-content {
        justify-content: flex-start;
    }
    .product-card {
        width: 340px;
        min-height: 500px;
        margin-right: 30px;
        margin-bottom: 40px;
    }
    .product-card:nth-of-type(3n-1) {
        margin-right: 0;
    }
    .product-title {
        padding: 20px 15px 26px 35px;
        font-size: 2.0rem;
    }
    .product-inner {
        min-height: 197px;
        padding: 20px;
    }
    .product-card p {
        width: 100%;
        height: 88.2px;
        line-height: 1.47;
        position: relative;
        overflow: hidden;
        word-break: break-all;
        text-align: justify;
    }
    .product-card p:before, .product-card p:after {
        position: absolute;
    }
    .product-card p:before {
        content: '...';
        width: 1em;
        background-color: #fff;
        top: 66.15px;
        right: 0;
    }
    .product-card p:after {
        content: '';
        width: 100%;
        height: 100%;
        background-color: #fff;
        z-index: 2;
    }
    .product-modal {
        width: 1365px;
        height: 740px;
        top: calc(50% + 65.5px);
    }
    .product-modal--column {
        padding: 40px 25px;
    }
    .product-modal--thumbs {
        width: 640px;
    }
    .product-modal--thumbs__main {
        width: 100%;
        height: 526px;
        margin: 0 0 20px;
    }
    .product-modal--thumbs__sub li {
        width: 207px;
        height: 147px;
    }
    .product-modal--thumbs__sub li:not(:nth-child(3n)) {
        margin-right: 9px;
    }
    .product-modal--thumbs__sub li:nth-child(-n+2) {
        margin-bottom: 9px;
    }
    .product-modal--content {
        flex: 1 1 0%;
        margin-left: 50px;
    }
    .product-modal--title {
        margin-bottom: 22px;
        font-size: 3.5rem;
    }
    .product-modal--subtitle {
        padding: 0 0 10px;
        margin: 60px 0 30px;
        font-size: 3.0rem;
    }
    .product-modal--subtitle span {
        margin-left: 20px;
    }
    .product-modal td {
        padding-top: 13px;
        padding-bottom: 13px;
    }
}
@media screen and (max-width: 1365px) and (min-width: 768px) {
    .product-modal {
        width: 1180px;
    }
    .product-modal--thumbs {
        flex: 1 1 0%;
    }
    .product-modal--thumbs__main {
        height: 400px;
    }
    .product-modal--thumbs__sub li {
        width: 174px;
        height: 125px;
    }
}
@media screen and (max-width: 767px) {
    .product {
        padding: 50px 0;
    }
    .product-nav {
        margin: 0 0 30px;
    }
    .product-card {
        min-height: 350px;
        margin: 0 0 30px;
        width: 48%;
    }
    .product-title {
        padding: 10px 10px 15px 20px;
        font-size: 1.6rem;
    }
    .product-inner {
        padding: 20px 6px;
    }
    .product-inner p {
        width: 100%;
        height: 61.74px;
        line-height: 1.47;
        margin-bottom: 10px;
        position: relative;
        overflow: hidden;
        word-break: break-all;
        text-align: justify;
    }
    .product-inner p:before, .product-inner p:after {
        position: absolute;
    }
    .product-inner p:before {
        content: '...';
        width: 1em;
        background-color: #fff;
        top: 41.16px;
        right: 0;
    }
    .product-inner p:after {
        content: '';
        width: 100%;
        height: 100%;
        background-color: #fff;
        z-index: 2;
    }
    .product-button {
        height: 40px;
    }
    .product-modal {
        width: calc(100% - 25px);
        height: 80vh;
    }
    .product-modal--column {
        padding: 30px 20px;
    }
    .product-modal--thumbs {
        width: 100%;
    }
    .product-modal--thumbs__main {
        margin: 0 0 15px;
        width: 100%;
        height: 0;
        padding-top: 77.78%;
        position: relative;
    }
    .product-modal--thumbs__main img {
        width: 100%;
        height: 100%;
        max-width: none;
        margin: auto;
        object-fit: cover;
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
    }
    .product-modal--thumbs__sub li {
        width: 31%;
        padding-top: 22.46%;
        margin-bottom: 3.5%;
        position: relative;
    }
    .product-modal--thumbs__sub li:not(:nth-child(3n)) {
        margin-right: 3.5%;
    }
    .product-modal--thumbs__sub img {
        width: 100%;
        height: 100%;
        max-width: none;
        margin: auto;
        object-fit: cover;
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
    }
    .product-modal--title {
        font-size: 1.8rem;
        margin: 30px 0 20px;
        border-width: 0 0 0 5px;
    }
    .product-modal--subtitle {
        font-size: 2.4rem;
        padding: 0 0 7px;
        margin: 20px 0 15px;
    }
    .product-modal--subtitle span {
        font-size: 1.2rem;
        margin-left: 0.65em;
    }
    .js-modal__close {
        font-size: 2.0em;
        top: 5px;
        right: 5px;
    }
}
@media screen and (max-width: 450px) {
    .product-card {
        min-height: 311px;
    }
}
.product-block--title {
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    color: #fff;
    font-weight: 500;
    font-family: 'ARDESTINE', sans-serif;
    background: url(../images/product/product-title--bg.png) no-repeat left center/100%;
}
.product-block--title span {
    margin-left: 1em;
    font-size: 1.5rem;
    font-family: 'NotoSans', 'Noto Sans JP', sans-serif;
}
@media screen and (min-width: 768px) {
    .product-block {
        padding-bottom: 50px;
    }
    .product-block--content {
        margin: 0 0 90px;
    }
    .product-block--content:last-of-type {
        flex-direction: row-reverse;
    }
    .product-block--title {
        padding: 9px 37px;
        margin: 0 0 40px;
    }
    .product-block--items {
        width: 540px;
        height: 300px;
    }
    .product-block--txt {
        flex: 1 1 0%;
        margin-left: 60px;
    }
    .product-block--content:last-of-type .product-block--txt {
        margin-left: 0;
        margin-right: 60px;
    }
}
@media screen and (max-width: 767px) {
    .product-block--content {
        padding: 0;
        margin-bottom: 40px;
    }
    .product-block--title {
        font-size: 2.4rem;
        background-size: 100% 100%;
        padding: 10px 20px;
        margin: 0 0 20px;
    }
    .product-block--title span {
        width: 100%;
        line-height: 1;
        margin: 0;
        font-size: 1.2rem;
    }
    .product-block--items {
        width: 100%;
        height: 55.56vw;
        margin: 0 0 20px;
    }
    .product-block--items img {
        width: 100%;
        height: 100%;
    }
}

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

    perf

--------------------------------------------------*/
.perf-list {
    background: url(../images/perf/perf-line.png) no-repeat left center;
}
.perf-list--items {
    margin: 0 0 2.77778%;
    border: 1px solid #b5b5b5;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right center;
    position: relative;
}
.perf-list--items::before {
    content: '';
    display: block;
    position: absolute;
}
.perf-list > li:last-child {
    margin: 0;
}
.perf-list > li:nth-child(1) {
    background-image: url(../images/perf/perf-list01.png);
}
.perf-list > li:nth-child(1)::before {
    background: url(../images/perf/icon01.png) no-repeat center/contain;
}
.perf-list > li:nth-child(3) {
    background-image: url(../images/perf/perf-list03.png);
}
.perf-list > li:nth-child(3)::before {
    background: url(../images/perf/icon03.png) no-repeat center/contain;
}
.perf-list > li:nth-child(4) {
    background-image: url(../images/perf/perf-list04.png);
}
.perf-list > li:nth-child(4)::before {
    background: url(../images/perf/icon04.png) no-repeat center/contain;
}
.perf-list--level2 li:nth-child(1) {
    background-image: url(../images/perf/perf-list02.png);
}
.perf-list--level2 li:nth-child(1)::before {
    background: url(../images/perf/icon02.png) no-repeat center/contain;
}
.perf-list--level2 li:nth-child(2) {
    background-color: #efefef;
    background-image: url(../images/perf/perf-list02-1.png);
}
@media screen and (min-width: 768px) {
    .perf {
        padding: 60px 0 160px;
    }
    .perf-title {
        margin: 0 0 60px;
    }
    .perf-list {
        padding-left: 115px;
        margin: 0 0 100px;
        background-position: left 32px center;
    }
    .perf-list--items {
        display: flex;
        flex-flow: column wrap;
        justify-content: center;
        height: 127px;
        padding: 0 50px;
    }
    .perf-list--items::before {
        width: 67px;
        height: 67px;
        left: -115px;
    }
    .perf-list--title {
        font-size: 2.5rem;
    }
}
@media screen and (max-width: 767px) {
    .perf-list {
        margin: 0 0 50px;
        padding-left: 40px;
        background-size: 3px 80%;
        background-position: left 11px top 50px;
    }
    .perf-list--items {
        padding: 20px;
        background-image: none !important;
    }
    .perf-list--items::before {
        width: 44.67px;
        height: 44.67px;
        left: -50px;
    }
    .perf-list--title {
        margin: 0 0 5px;
        font-size: 1.8rem;
    }
}
.perf-case--list li {
    width: calc(((767px - 25px) - 100%) * 1000);
    min-width: 31.5%;
    max-width: 48%;
}
@media screen and (min-width: 768px) {
    .perf-case {
        margin: 0 0 100px;
    }
    .perf-case--list li:not(:nth-last-child(-n+3)) {
        margin-bottom: 30px;
    }
}
@media screen and (max-width: 767px) {
    .perf-case--list li:not(:nth-last-child(-n+2)) {
        margin-bottom: 20px;
    }
}
.perf-outcome table th {
    width: auto;
    text-align: center;
    background-color: #d2d2d2;
}
.perf-outcome table th:last-child {
    width: 240px;
}
@media screen and (min-width: 768px) {
    .perf-outcome--title {
        margin: 0 0 34px;
    }
    .perf-outcome table td {
        padding: 13px 43px;
        border-right: 1px solid #b5b5b5;
    }
}
@media screen and (max-width: 767px) {
    .perf-outcome {
        padding: 0;
    }
    .perf-outcome table tr:first-child {
        display: none;
    }
    .perf-outcome table tr:nth-child(odd) td:nth-child(even) {
        background-color: #d2d2d2;
    }
    .perf-outcome table tr:nth-child(even) td:nth-child(odd) {
        background-color: #d2d2d2;
    }
    .perf-outcome table td::before {
        content: attr(data-lable);
        display: block;
        font-weight: bold;
    }
}

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

    company

--------------------------------------------------*/
.company-content {
    color: #fff;
    position: relative;
    z-index: 10;
}
.company-content::after {
    content: '';
    display: block;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    margin: auto;
    border: 1px solid  #fff;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
}
.company-content--title {
    font-weight: 300;
}
.company-content--block {
    padding: 1.5em 0;
    border-top: 1px dashed #fff;
    border-bottom: 1px dashed #fff;
}
@media screen and (min-width: 768px) {
    .company {
        padding: 70px 0 130px;
    }
    .company-content {
        margin: 0 0 70px;
        padding: 70px 480px 70px 90px;
        background-color: #181818;
        background-repeat: no-repeat;
        background-position: right center, left center;
        background-image: url(../images/company/company-bg--right.png), url(../images/company/company-bg--left.png);
    }
    .company-content--title {
        margin: 0 0 20px;
        font-size: 3.6rem;
    }
    .company-content--title span {
        margin-left: 23px;
        font-size: 1.5rem;
    }
}
@media screen and (max-width: 767px) {
    .company-content {
        padding: 20px;
        margin: 0 0 50px;
        background: #181818 url(../images/company/company-bg--left.png) no-repeat center/cover;
    }
    .company-content::before {
        content: '';
        display: block;
        width: 90%;
        height: 100%;
        margin: auto;
        background: url(../images/company/sp__company-bg--right.png) no-repeat center top/contain;
        position: absolute;
        top: 20px;
        right: 0;
        left: 0;
    }
    .company-content::after {
        width: calc(100% - 10px);
        height: calc(100% - 10px);
    }
    .company-content--title {
        padding-top: 77.45%;
        margin: 0 0 10px;
    }
    .company-content--title span {
        display: block;
        font-size: 1.2rem;
    }
}
.company-info table {
    border-color: #626262;
}
.company-info table tr {
    border-color: #626262;
}
.company-info table th {
    border-color: #626262;
}
@media screen and (min-width: 768px) {
    .company-info table {
        width: 640px;
    }
    .company-info--map {
        width: 100%;
        height: 340px;
        margin-top: 45px;
    }
}
@media screen and (max-width: 767px) {
    .company-info {
        padding: 0;
    }
    .company-info table {
        order: 2;
        margin: 30px 0;
    }
    .company-info--fig {
        order: 1;
        width: 100%;
        text-align: center;
    }
    .company-info--map {
        order: 3;
        width: 100%;
        height: 250px;
    }
}

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

    club

--------------------------------------------------*/
.club {
    background-color: #fffef7;
}
.cmn-club--title {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}
.cmn-club--title::before, .cmn-club--title::after {
    content: '';
    flex: 1;
    display: block;
    border-top: 5px dotted #e0262c;
}
.cmn-club--title span {
    display: block;
    text-align: center;
}
.cmn-club--title span::after {
    content: '';
    display: block;
    width: 70px;
    height: 6px;
    margin: 10px auto 0;
    background-color: #e0262c;
    border-radius: 30px;
}
@media screen and (min-width: 768px) {
    .cmn-club--title::before {
        margin-right: 62px;
    }
    .cmn-club--title::after {
        margin-left: 62px;
    }
}
@media screen and (max-width: 767px) {
    .cmn-club--title {
        width: 100%;
        margin: 0 0 30px;
    }
    .cmn-club--title::before {
        margin-right: 1em;
    }
    .cmn-club--title::after {
        margin-left: 1em;
    }
}
.club-title {
    text-align: center;
    background: url(../images/club/club-bg.png) no-repeat center/cover;
}
.club-subtitle {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    font-weight: bold;
}
.club-subtitle::before, .club-subtitle::after {
    content: '';
    display: block;
    width: 3px;
    height: 32px;
    background-color: #535353;
}
.club-subtitle::before {
    margin-right: 0.87em;
    transform: rotate(-15deg);
}
.club-subtitle::after {
    margin-left: 0.87em;
    transform: rotate(15deg);
}
@media screen and (min-width: 768px) {
    .club-title {
        padding: 85px 0;
        margin: 70px 0 0;
    }
    .club-wrap {
        padding: 80px 0 65px;
    }
    .club-wrap p {
        width: 495px;
        margin: auto;
        text-align: center;
    }
    .club-subtitle {
        margin: 0 0 30px;
        font-size: 3.0rem;
        text-align: center;
    }
}
@media screen and (max-width: 767px) {
    .club {
        padding: 0;
    }
    .club-title {
        padding: 30px 0;
    }
    .club-title img {
        width: 100%;
        max-width: 485px;
    }
    .club-wrap {
        padding: 40px 0;
    }
    .club-subtitle {
        align-items: center;
        margin: 0 0 20px;
    }
}
.club-course {
    overflow: hidden;
    background: url(../images/club/club-course--bg.png) no-repeat center/cover;
}
.club-course--heading {
    display: flex;
    align-items: center;
    font-weight: bold;
}
.club-course--heading::before {
    content: '';
    display: block;
    width: 8px;
    height: 30px;
    margin-right: 1em;
    background-color: #e0262c;
    border-radius: 30px;
}
.club-course--heading:not(:last-of-type) {
    padding-bottom: 0;
}
.club-course--heading span {
    vertical-align: middle;
    font-size: 1.5rem;
    font-weight: 300;
}
.club-course table td {
    background-color: #fff;
}
@media screen and (min-width: 768px) {
    .club-course {
        padding: 100px 0;
    }
    .club-course--title {
        width: 100%;
        margin: 0 0 70px;
        text-align: center;
    }
    .club-course--subtitle {
        margin: 0 0 10px;
        text-align: center;
    }
    .club-course--subtitle + p {
        margin: 0 0 15px;
        text-align: center;
        font-size: 2.3rem;
    }
    .club-course--content {
        width: 540px;
        position: relative;
    }
    .club-course--content:first-of-type {
        margin-bottom: 78px;
    }
    .club-course--content:first-of-type::before {
        content: url(../images/club/club-course--deco01.png);
        position: absolute;
        top: 50%;
        left: -70%;
        transform: translateY(-50%);
    }
    .club-course--content:last-of-type::after {
        content: url(../images/club/club-course--deco02.png);
        position: absolute;
        right: -70%;
        bottom: 30px;
    }
    .club-course--heading {
        margin: 0 0 10px;
        font-size: 1.9rem;
    }
    .club-course--heading span {
        margin-left: 44px;
    }
    .club-course table:first-of-type {
        margin-bottom: 26px;
    }
    .club-course table th {
        vertical-align: middle;
    }
    .club-course table td {
        padding: 13px 28px;
    }
}
@media screen and (max-width: 1600px) {
    .club-course--content::before, .club-course--content::after {
        content: none !important;
    }
}
@media screen and (max-width: 767px) {
    .club-course--content:first-of-type {
        order: 2;
        margin-bottom: 40px;
    }
    .club-course--content:last-of-type {
        order: 4;
    }
    .club-course--fig {
        margin-bottom: 30px;
        width: 100%;
        height: 0;
        padding-top: 60%;
        object-position: top;
        position: relative;
    }
    .club-course--fig img {
        width: 100%;
        height: 100%;
        max-width: none;
        margin: auto;
        object-fit: cover;
        object-position: top;
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
    }
    .club-course--fig:nth-of-type(2) {
        order: 1;
    }
    .club-course--fig:nth-of-type(3) {
        order: 3;
    }
    .club-course--subtitle {
        height: 35px;
        margin: 0 0 10px;
        text-align: center;
    }
    .club-course--subtitle img {
        height: 100%;
    }
    .club-course--subtitle + p {
        padding: 0;
        margin: 0 0 20px;
    }
    .club-course--heading {
        font-size: 1.8rem;
        margin: 0 0 15px;
    }
    .club-course table:first-of-type {
        margin-bottom: 20px;
    }
}
.club-intro {
    color: #fff;
    background: url(../images/club/club-intro--bg.png) no-repeat center/cover;
}
.club-intro--title {
    width: 100%;
}
.club-intro--title::before, .club-intro--title::after {
    border-color: #fff;
}
.club-intro--title span::after {
    background-color: #fff;
}
.club-intro--subtitle {
    width: 100%;
    color: #3a3a3a;
    border-radius: 8px;
    background-color: #fff;
}
.club-intro table {
    color: #3a3a3a;
}
.club-intro table td {
    background-color: #fff;
}
@media screen and (min-width: 768px) {
    .club-intro {
        padding: 80px 0 70px;
    }
    .club-intro--title {
        margin: 0 0 45px;
    }
    .club-intro--subtitle {
        padding: 10px 35px;
        margin: 0 0 30px;
        font-size: 2.5rem;
    }
    .club-intro table {
        width: 540px;
        margin-left: 30px;
    }
    .club-intro table th {
        width: 205px;
        vertical-align: middle;
    }
    .club-intro table td {
        padding: 30px 18px;
    }
}
@media screen and (max-width: 767px) {
    .club-intro--subtitle {
        padding: 10px;
        margin: 0 0 20px;
        font-size: 1.7rem;
    }
    .club-intro--fig {
        margin: 0 0 15px;
        width: 100%;
        height: 0;
        padding-top: 70%;
        object-position: top;
        position: relative;
    }
    .club-intro--fig img {
        width: 100%;
        height: 100%;
        max-width: none;
        margin: auto;
        object-fit: cover;
        object-position: top;
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
    }
    .club-intro table td {
        padding-right: 15px;
        padding-left: 15px;
    }
}
.club-room {
    background: url(../images/club/club-room--bg.png) no-repeat center/cover;
}
.club-room--subtitle {
    width: 100%;
    color: #fff;
    border-radius: 8px;
    background-color: #e0262c;
}
.club-room table {
    border: none;
}
.club-room tr {
    border-bottom: 1px dashed #3a3a3a;
}
.club-room tr:not(:last-child) {
    border-color: #3a3a3a;
    border-style: dashed;
}
.club-room th {
    border: none;
    background: none;
}
.club-room table a {
    display: inline-block;
    color: #003567;
    border-bottom: 1px solid  #003567;
}
@media screen and (min-width: 768px) {
    .club-room {
        padding: 85px 0 0;
    }
    .club-room--item {
        flex: 1 1 0%;
        margin-left: 50px;
    }
    .club-room--fig {
        flex: 2 2 0%;
        margin-left: calc(-50vw + 50%);
    }
    .club-room--subtitle {
        padding: 10px 35px;
        margin: 0 0 30px;
        font-size: 2.5rem;
    }
    .club-room table th {
        vertical-align: middle;
        width: 145px;
        padding-right: 10px;
        padding-left: 10px;
    }
    .club-room table td {
        padding: 13px 10px 13px 0;
    }
    .club-room--list {
        margin: 65px auto 70px;
    }
    .club-room--list li {
        width: 340px;
        height: 250px;
    }
    .club-room--map {
        width: 100%;
        height: 400px;
    }
}
@media screen and (max-width: 1280px) and (min-width: 768px) {
    .club-room--basis {
        flex-direction: column;
    }
    .club-room--item {
        width: 100%;
        margin-left: 0;
    }
    .club-room--fig {
        width: 100%;
        margin: 0 0 30px 0;
        text-align: center;
    }
}
@media screen and (max-width: 767px) {
    .club-room {
        padding-bottom: 0;
    }
    .club-room--fig {
        margin-bottom: 20px;
    }
    .club-room--subtitle {
        padding: 10px;
        font-size: 1.7rem;
    }
    .club-room table th {
        padding-bottom: 0;
    }
    .club-room--list {
        margin: 35px auto 40px;
    }
    .club-room--list li {
        width: 100%;
        height: 50vw;
    }
    .club-room--list li:nth-child(even) {
        margin: 20px 0;
    }
    .club-room--map {
        height: 60vw;
    }
}

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

    footer

--------------------------------------------------*/
footer {
    color: #fff;
    background-color: #0f0f0f;
}
footer .ft-txt {
    margin: 3.87097% 0 8.3871%;
}
footer .ft-adr img {
    vertical-align: middle;
}
footer .ft-adr p span {
    margin-left: 20px;
}
footer .ft-adr--btn:hover {
    opacity: .7;
}
footer .copy {
    font-size: 1.4rem;
    text-align: center;
    background-color: #b81313;
}
footer .copy a {
    display: inline-block;
    text-decoration: underline;
}
@media screen and (min-width: 768px) {
    footer .ft-basis {
        padding: 80px 0 100px;
    }
    footer .ft-items {
        width: 465px;
    }
    footer .ft-tel {
        font-size: 4.1rem;
        font-weight: 500;
    }
    footer .ft-tel span {
        display: inline-block;
        margin-right: 13px;
        font-size: 3.1rem;
    }
    footer .ft-tel span::first-letter {
        font-size: 4.1rem;
    }
    footer .ft-nav {
        width: 390px;
    }
    footer .ft-nav ul {
        height: 215px;
        flex-direction: column;
        justify-content: flex-start;
        align-content: space-between;
    }
    footer .ft-nav li {
        line-height: 2.37;
    }
    footer .ft-nav a:hover {
        color: #b81313;
    }
}
@media screen and (max-width: 767px) {
    footer .ft-basis {
        padding: 30px 0;
    }
    footer .ft-items {
        margin: auto;
    }
    footer .ft-tel {
        font-size: 2.6rem;
    }
    footer .ft-tel span {
        display: inline-block;
        margin-right: 10px;
        font-size: 1.8rem;
    }
    footer .ft-tel span::first-letter {
        font-size: 2.6rem;
    }
    footer .ft-adr {
        align-items: center;
    }
    footer .ft-adr a {
        display: inline-block;
    }
    footer .ft-adr--btn {
        width: 60px;
        height: 60px;
    }
    footer .ft-adr--btn img {
        height: 100%;
    }
    footer .copy {
        font-size: 1.2rem;
    }
}

.pdf-link{
    margin: 30px auto 0;
    display: flex;
    justify-content: space-around;
}
.pdf-link a{
    width: 40%;
}
.pdf-link a:hover{
    opacity: .6;
}
@media screen and (max-width:768px) {
    .pdf-link{
        width: 90%;
        display: block;
    }
    .pdf-link a{
        width: 100%;
    }
}

.pdf-link2{
  text-align: center;
  margin: 30px 0;
}
.pdf-link2{
  text-align: center;
  margin: 30px 0;
}

@media screen and (max-width:768px) {
  .pdf-link2 a{
    display: inline-block;
  }
}
