@charset "UTF-8";

:root {
    /* fonts */
    --Pr6N: "Yu Mincho Pr6N", "游明朝体", "Yu Mincho", YuMincho, "Noto Serif JP", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
    --Oswald: "Yu Gothic", "游ゴシック体", YuGothic, "游ゴシック", "Noto Sans JP", sans-serif;
    --Oswald: "Oswald", sans-serif;
    --Roboto: "Roboto", sans-serif;
}

/* resets */

* {
    margin: 0;
    padding: 0;
}

html {
    font-family: var(--Oswald);
    text-align: left;
    color: #2e2e2e;
}

sup {
    font-size: 0.7em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: normal;
}

body {
    position: relative;
    /* word-break: break-all; */
    text-size-adjust: none;
    -webkit-text-size-adjust: none;
}

.ul,
.ol {
    list-style-type: none;
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

a {
    text-decoration: none;
    cursor: pointer;
    color: #000;
    display: inline-block;
    margin: 0;
    padding: 0;
}

table {
    border-spacing: 0;
}

sup {
    font-size: 0.5em;
}

.sp_mode {
    display: none;
}

.pc_mode {
    display: block;
}

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

.sp_version {
    display: none;
}

.pc_version {
    display: flex;
}

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

.sp_mode_custom {
    display: none;
}

.pc_mode_custom {
    display: block;
}

@media screen and (max-width: 1200px) {
    .sp_mode_custom {
        display: block;
    }
    .pc_mode_custom {
        display: none;
    }
}

.inner001 {
    box-sizing: border-box;
    max-width: 1440px;
    width: 90%;
    margin: 0 auto;
}

.inner002 {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
}

.inner003 {
    max-width: 1080px;
    width: 90%;
    margin: 0 auto;
}

.inner004 {
    max-width: 960px;
    width: 90%;
    margin: 0 auto;
}

@media screen and (max-width: 767px) {
    .inner001 {
        width: 90%;
    }
    .inner002 {
        width: 90%;
    }
    .inner003 {
        width: 90%;
    }
}

body {
    height: auto;
    overflow: hidden;
}

main {
    height: auto;
    min-height: 100vh;
}

/*  */

#all-content {
    width: 100%;
    position: relative;
}

#all-content::after {
    content: "";
    position: fixed;
    background: url("../img/phase3-bg-left.svg") no-repeat;
    background-position: top left;
    background-size: 100% auto;
    top: 0;
    left: 0;
    width: 30%;
    height: 100vh;
    z-index: -1;
}
#all-content::before {
    content: "";
    position: absolute;
    background: url("../img/phase3-bg-right.svg") no-repeat;
    background-position: top right;
    background-size: 100% auto;
    top: 0;
    right: 0;
    width: 31%;
    height: 100vh;
}

@media screen and (max-width: 767px) {
    #all-content::after {
        width: 69%;
    }
    #all-content::before {
        background: url("../img/phase3-bg-right-sp.svg") no-repeat;
        background-position: top right;
        background-size: 100% auto;
        width: 31%;
    }
}

/* start video */

#video-bg {
    background-color: #070705;
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    z-index: 99991;
    overflow: hidden;
    top: 0;
    left: 0;
}

#video-bg iframe {
    max-width: 1080px;
    width: 95%;
    height: 608px;
    /* padding-bottom: 75%; */
    position: relative;
    display: block;
}

.close-button {
    position: absolute;
    display: block;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background-color: white;
    cursor: pointer;
    border-radius: 0 0 0 5px;
}

.close-button::before {
    content: "";
    position: absolute;
    width: 40px;
    height: 3px;
    background-color: #070705;
    transform: translate(-50%, -50%) rotate(45deg);
    top: 50%;
    left: 50%;
    transition: all 0.3s ease-in;
}

.close-button:hover::before,
.close-button:hover::after {
    width: 30px;
    opacity: 0.8;
}

.close-button::after {
    content: "";
    position: absolute;
    width: 40px;
    height: 3px;
    background-color: #070705;
    transform: translate(-50%, -50%) rotate(135deg);
    top: 50%;
    left: 50%;
    transition: all 0.3s ease-in;
}

@media screen and (max-width: 1200px) {
    #video-bg iframe {
        height: 400px;
    }
}

@media screen and (max-width: 570px) {
    #video-bg iframe {
        height: 280px;
    }
}

/* intro */

#intro {
    padding-top: 60px;
    position: relative;
    width: 100%;
    height: calc(100vh - 60px);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    z-index: 9;
    transition: opacity 2s;
    top: 0;
    left: 0;
}

#intro-logo {
    z-index: 1;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    max-width: 220px;
    width: 100%;
    display: none;
}

#intro .green-tap-container {
    position: absolute;
    top: 370px;
    left: 10%;
    max-width: 680px;
}

@media screen and (max-height: 980px) {
    #intro {
        height: 980px;
    }

    #intro .green-tap-container {
        top: 37vh;
    }
}


#intro .green-tap-container .green-tap {
    width: 100%;
    margin-bottom: 38px;
    margin-left: -11px;
}

#intro .green-tap-container .gt-reg-text {
    font-family: var(--Oswald);
    font-weight: bold;
    font-size: 40px;
    letter-spacing: 0.03em;
    line-height: 76px;
    text-align: left;
    color: #000;
    margin-left: -19px;
}

#intro .green-tap-container .green-tap img {
    width: 100%;
    vertical-align: middle;
}

#intro .tool-img-container {
    position: absolute;
    max-width: 925px;
    width: 50%;
    right: 0;
    top: 70px;
}

#intro .tool-img-container img {
    width: 100%;
    vertical-align: middle;
}

#header,
main {
    opacity: 0;
    transition: opacity 3s;
}

@media screen and (min-width: 1921px) {
    #intro {
        height: calc(100vh - 60px);
    }
}

@media screen and (max-width: 1500px) {
    #intro {
        height: 55vw;
    }

    #intro .green-tap-container {
        width: 35%;

        position: absolute;
        top: 50%;
        transform: translateY(-50%);
    }
    #intro .green-tap-container .gt-reg-tex {
        width: 381px;
    }
    #intro .green-tap-container .green-tap {
        margin-bottom: 20px;
    }
    #intro .green-tap-container .gt-reg-text {
        font-size: 20px;
        line-height: 1.6;
    }
}

@media screen and (max-width: 1000px) {
    #intro .green-tap-container .gt-reg-text {
        font-size: 16px;
    }
}

@media only screen and (max-width: 767px) {
    #intro {
        height: 90vh;
    }
    #intro:after {
        display: none;
    }
    #intro-video {
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 100%;
        height: 41vh;
        object-fit: cover;
        z-index: -100;
        transform: translateX(-50%);
    }
    #intro-logo {
        max-width: 120px;
    }
    #intro .tool-img-container {
        width: 70%;
        top: 211px;
    }
    #intro .green-tap-container {
        position: absolute;
        left: 0;
        right: 0;
        top: 167px;
        transform: unset;
        margin: 0 auto;
        width: 291px;
    }
    #intro .green-tap-container .green-tap {
        margin-bottom: 9px;
        margin-left: -2px;
    }
    #intro .green-tap-container .gt-reg-text {
        font-size: 16px;
        text-align: center;
        margin-left: 1px;
    }
}

@media screen and (max-width: 470px) {
    #intro {
        height: 584px;
    }
    #intro .tool-img-container {
        width: 94%;
        top: 211px;
    }
}

@media screen and (max-width: 390px) {
    #intro {
        height: 530px;
    }
}

/* header */

#header {
    z-index: 9999;
    padding-left: 60px;
    box-sizing: border-box;
    display: block;
    position: absolute;
    top: 0;
}

#header,
#header nav {
    width: 100%;
    box-sizing: border-box;
}

#header .logo-container {
    margin-top: 44px;
    margin-right: 10px;
}

#header .emo-logo {
    margin-top: 20px;
    width: 90px;
    margin-left: 4px;
}

#header .osg-logo:hover,
#header .emo-logo:hover {
    opacity: 0.8;
}

#header .emo-logo img {
    width: 100%;
    vertical-align: middle;
}

@media screen and (max-width: 1620px) {
    #header {
        padding-left: 16px;
        box-sizing: border-box;
    }
    #header .logo-container {
        margin-top: 16px;
        margin-right: 0px;
    }
    #header .logo-container a img {
        width: 60px;
    }
    #header .emo-logo {
        margin-top: 0px;
        width: 52px;
    }
}

/* timer-container */

/* main */

#main {
    width: 100%;
    height: 100vh;
    box-sizing: border-box;
    position: absolute;
    z-index: 9998;
    top: 0;
    left: 0;
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

#app {
    transition: opacity 2s;
}

/* video-container */

#video-container {
    margin-top: 96px;
    width: 100%;
    padding-top: 0;
    position: relative;
    z-index: 999;
}

#video-container .video-contents {
    max-width: 1080px;
    width: 100%;
    margin: 0 auto 40px;
}

#video-container .video-contents iframe {
    width: 100%;
    height: 608px;
}

#block-text {
    padding-bottom: 1176px;
    /* max-width: 1080px; */
}

.emmissions-text-container {
    max-width: 1177px;
    margin: 0 auto;
}

.line2 {
    font-family: var(--Oswald);
    font-weight: bold;
    font-size: 68px;
    letter-spacing: 0.03em;
    line-height: 1.6;
    text-align: center;
    color: #000;
    max-width: 1180px;
    margin: 0 auto;
}

.line2 span:first-child {
    font-size: 30px;
    margin-bottom: 4px;
}

.line2 span:last-child {
    font-size: 30px;
}

.line2 .asterism {
    vertical-align: super;
    font-size: 52px;
}

.line3 .asterism {
    font-size: 20px;
}

.line3 {
    font-family: var(--Oswald);
    font-weight: bold;
    font-size: 20px;
    letter-spacing: 0.03em;
    text-align: right;
    color: #000;
    line-height: 2;
    box-sizing: border-box;
    padding-right: 4px;
}

.video-hd {
    margin-bottom: 67px;
}

@media screen and (max-width:1600px){

}

@media screen and (max-width: 1500px) {
    .emmissions-text-container {
        max-width: 837px;
    }
    #video-container .video-contents {
        margin: 0 auto 70px;
    }
    #block-text {
        padding-bottom: 700px;
    }
    .line2 {
        font-size: 48px;
    }
    .line2 span:last-child {
        font-size: 24px;
    }
}

@media screen and (max-width: 950px){
    .line3 {
        text-align: center;
    }
}

@media screen and (max-width: 767px) {
    #video-container {
        margin-top: 0;
        padding-bottom: 0;
    }
    #video-container .video-contents {
        margin: 0 auto 40px;
    }
    #video-container .video-contents iframe {
        height: 308px;
    }
    .line2 {
        font-size: 23px;
        text-align: center;
        margin-left: 0;
    }
    .line2 span:first-child {
        font-size: 10px;
    }
    .line2 span:last-child {
        font-size: 20px;
        vertical-align: unset;
    }
    .line3 {
        font-size: 12px;
    }
    .video-hd {
        margin-bottom: 30px;
    }

    #block-text {
        padding-bottom: 346px;
    }
    .line3 .asterism {
        font-size: 12px;
    }
}

@media screen and (max-width: 444px) {
    #video-container .video-contents iframe {
        height: 230px;
    }
}

/* performance */

#performance {
    width: 100%;
    position: relative;
    padding-top: 0;
    padding-bottom: 90px;
}

#performance .inner001 {
    background: #fff;
}

.centered-text {
    font-family: var(--Oswald);
    font-weight: bold;
    font-size: 34px;
    letter-spacing: 0.03em;
    line-height: 62px;
    text-align: center;
    color: #000;
    max-width: 1080px;
    margin: 0 auto;
}

#performance .block {
}

#performance .block:last-child {
    border-bottom: none;
}

#performance .block-container {
    width: 100%;
    background-color: #fff;
    padding: 78px 70px 0;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
}

#performance .flexbox-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding-bottom: 81px;
    border-bottom: #cbcbcb 1px solid;
    margin-bottom: 7px;
}

#performance .block:last-child .flexbox-container {
    border-bottom: none;
}

#performance .sustainable-block .flexbox-container {
    flex-direction: column;
}

#performance .text-container {
    width: 100%;
    flex: 1;
    margin-right: 80px;
}

#performance .green-title {
    font-family: var(--Oswald);
    font-weight: normal;
    font-size: 90px;
    letter-spacing: 0.05em;
    text-align: left;
    color: #6cbe4f;
    margin-bottom: 19px;
    margin-top: -30px;
    white-space: nowrap;
}
#performance .green-title.center {
    text-align: center;
}

#performance .green-title br {
    display: none;
}

#performance .gen-body {
    font-family: var(--Oswald);
    font-weight: bold;
    font-size: 26px;
    letter-spacing: 0.03em;
    line-height: 48px;
    text-align: left;
    color: #000;
}

#performance .gen-body .co2 {
    font-size: 16px;
}

#performance .gen-body ul {
    list-style: none;
}

#performance .img-container {
    width: 47%;
}

#performance .img-container img {
    vertical-align: middle;
    width: 100%;
}

#performance .sustainable-card {
    margin-top: 65px;
    width: 100%;
    padding: 40px 50px 54px 48px;
    box-sizing: border-box;
    border: 1px solid #707070;
}

#performance .sustainable-block .text-container {
    margin-right: 0;
}

#performance .sustainable-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#performance .s_cont {
    width: 42%;
}

#performance .s_cont img {
    width: 100%;
    vertical-align: middle;
}

#performance .green-arrow {
    width: 16%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

#performance .green-arrow img {
    max-width: 80px;
    width: 100%;
    vertical-align: middle;
}

#performance .green-border-text {
    font-family: var(--Oswald);
    font-size: 18px;
    letter-spacing: 0.03em;
    color: #000;
    font-weight: bold;
    padding-bottom: 13px;
    border-bottom: #76b015 0.5px solid;
    margin-bottom: 17px;
}

#performance .green-border-text span {
    font-size: 10px;
}

#performance .size {
    font-size: 16px;
    font-weight: bold;
    font-family: var(--Oswald);
    letter-spacing: 0.03em;
    color: #000;
    margin-bottom: 37px;
}

@media screen and (max-width: 1500px) {
    #performance::before {
        background: url(../img/performance-bg.svg) no-repeat;
        background-position: top left;
        background-size: 100% auto;
        width: calc(100% - 20px);
        height: 100%;
        right: 0;
        top: 0;
        margin-top: 140px;
    }
    .centered-text {
        font-size: 22px;
        line-height: 1.8;
    }
    #performance .text-container {
        margin-right: 40px;
    }
    #performance .green-title {
        font-size: 64px;
        margin-bottom: 23px;
        margin-top: -23px;
    }
    #performance .gen-body {
        font-size: 20px;
        line-height: 1.8;
    }

    #performance .gen-body .co2 {
        font-size: 10px;
    }
}

@media screen and (max-width: 1100px) {
    #performance .block-container {
        padding: 40px 40px 0;
    }
    #performance .green-title {
        font-size: 40px;
        line-height: 52px;
        margin-top: -10px;
    }
    #performance .gen-body {
        font-size: 18px;
        line-height: 1.8;
    }
    .centered-text {
        /* margin-bottom: 338px; */
    }
    #performance .green-arrow img {
        max-width: 60px;
    }
}

@media screen and (max-width: 767px) {
    #performance {
        padding-bottom: 40px;
    }
    #performance::before {
        background-size: cover;
        height: 280px;
    }
    #performance .flexbox-container {
        flex-direction: column;
        padding-bottom: 40px;
    }
    #performance .sustainable-block .block-container {
        padding: 40px 20px 0;
    }
    #performance .sustainable-card {
        margin-top: 40px;
        padding: 20px 20px 30px;
    }
    #performance .block-container {
        padding: 0 20px 0;
    }
    #performance .text-container {
        margin-right: 0;
    }
    #performance .img-container {
        width: 100%;
        margin-bottom: 0;
        margin-top: 30px;
    }
    #performance .green-title {
        font-size: 35px;
        margin-top: 0;
    }
    #performance .gen-body {
        font-size: 16px;
    }
    #performance .block {
        padding-bottom: 40px;
    }
    #performance .block:last-child {
        padding-bottom: 0;
    }
    .centered-text {
        font-size: 16px;
        line-height: 1.8;
    }
    #performance .sustainable-flex {
        flex-direction: column;
    }
    #performance .green-arrow {
        margin-left: 0;
        transform: rotate(90deg);
        margin-top: 20px;
        margin-bottom: 40px;
    }
    #performance .s_cont {
        width: 70%;
    }
    #performance .green-border-text {
        font-size: 16px;
        padding-bottom: 8px;
        margin-bottom: 10px;
    }
    #performance .size {
        font-size: 14px;
        margin-bottom: 20px;
    }
}

@media screen and (max-width:375px){
    #performance .green-title br {
        display: block;
    }
}

/* emo_2023 */

#emo_2023 {
    padding-top: 135px;
    background-color: #6cbe4f;
    padding-bottom: 150px;
}

#emo_2023 .emo-banner {
    margin-bottom: 67px;
}

#emo_2023 .emo-banner,
#emo_2023 .emo-banner img {
    width: 100%;
    vertical-align: middle;
}

#emo_2023 .emo-hd {
    margin-bottom: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#emo_2023 .emo-hd .emo-hd-logo {
    margin-right: 40px;
    max-width: 300px;
    width: 100%;
}

#emo_2023 .emo-hd .emo-hd-logo img {
    width: 100%;
    vertical-align: middle;
}

#emo_2023 .emo-dates {
    font-family: 'Oswald', sans-serif;
    font-weight: normal;
    font-size: 32px;
    letter-spacing: 0.05em;
    text-align: left;
    color: #fff;
}

#emo_2023 .emo-body-text {
    font-family: var(--Oswald);
    font-weight: bold;
    font-size: 26px;
    letter-spacing: 0.03em;
    line-height: 48px;
    text-align: left;
    color: #fff;
    margin: 0 auto 87px;
    max-width: 920px;
}

#emo_2023 .emo-flex-cont {
    display: flex;
    justify-content: space-between;
}

#emo_2023 .emo-cont {
    width: 48%;
    max-width: 690px;
}

#emo_2023 .emo-cont img {
    width: 100%;
    vertical-align: middle;
}

@media screen and (max-width: 1100px) {
    #emo_2023 .emo-body-text {
        font-size: 18px;
        line-height: 1.8;
    }
    #emo_2023 .emo-hd .emo-hd-logo {
        max-width: 200px;
    }
    #emo_2023 .emo-hd {
        margin-bottom: 30px;
    }
    #emo_2023 .emo-dates {
        font-size: 26px;
    }
}

@media screen and (max-width: 767px) {
    #emo_2023 {
        padding-top: 60px;
        background-color: #6cbe4f;
        padding-bottom: 60px;
    }
    #emo_2023 .emo-hd {
        margin-bottom: 40px;
    }
    #emo_2023 .emo-body-text {
        font-size: 16px;
        margin: 0 auto 40px;
    }
    #emo_2023 .emo-flex-cont {
        flex-direction: column;
    }
    #emo_2023 .emo-cont {
        width: 100%;
        max-width: unset;
    }
    #emo_2023 .emo-cont:first-child {
        margin-bottom: 20px;
    }
    #emo_2023 .emo-hd .emo-hd-logo {
        max-width: 160px;
        margin-right: 20px;

    }
    #emo_2023 .emo-dates {
        font-size: 18px;
    }
}

@media screen and (max-width: 530px){
    #emo_2023 .emo-hd {
        flex-direction: column;
    }
    #emo_2023 .emo-hd .emo-hd-logo {
        margin-bottom: 20px;
        margin-right: 0;
    }
    #emo_2023 .emo-dates {
        text-align: center;
    }
}

/* footer */

footer {
    background-color: #fff;
    position: relative;
    display: block;
    opacity: 1;
    bottom: 0;
    padding-left: 0;
    padding-top: 51px;
    padding-bottom: 85px;
    box-sizing: border-box;
    z-index: 9;
    width: 100%;
}

.beyond {
    font-family: var(--Oswald);
    font-weight: normal;
    font-size: 130px;
    letter-spacing: 0.05em;
    text-align: center;
    color: #000;
    margin-bottom: 56px;
}

.beyond span {
    color: #6cbe4f;
}

footer .footnote {
    font-family: var(--Roboto);
    font-weight: 300;
    font-size: 16px;
    letter-spacing: 0.05em;
    line-height: 1;
    text-align: center;
    color: #000;
    z-index: 1;
}

@media screen and (max-width: 1500px) {
    .beyond {
        font-size: 80px;
        line-height: 1.6;
    }
}

@media screen and (max-width: 767px) {
    footer {
        left: 50%;
        transform: translateX(-50%);
        padding-left: 0;
        padding-bottom: 60px;
    }
    .beyond {
        font-size: 43px;
        margin-bottom: 0;
    }
    footer .footnote {
        display: flex;
        justify-content: center;
        font-size: 10px;
        text-align: center;
        text-align: center;
        white-space: nowrap;
    }
}

@media screen and (max-width: 767px) {
    footer {
        padding-top: 20px;
        padding-bottom: 20px;
    }
}

/* scroll */

.box-scroll {
    position: absolute;
    left: 50%;
    bottom: 50px;
    width: 28px;
    padding-bottom: 0.6rem;
    letter-spacing: 0.1em;
    color: #000;
    transform: translateX(-50%) rotate(90deg);
    /* transform-origin: left bottom; */
    border-bottom: 1px solid #201919b2;
}

.box-scroll span {
    position: absolute;
    bottom: -11px;
    left: -42px;
    transform: rotate(270deg);
    font-family: var(--Oswald);
    font-weight: normal;
    font-size: 16px;
    letter-spacing: 0.05em;
    text-align: center;
    color: #000;
}

.box-scroll:after {
    content: "";
    position: absolute;
    left: 5%;
    bottom: 0;
    display: block;
    width: 0;
    height: 1px;
    background: #000;
    animation: scroll_ani 2s infinite;
}

@media screen and (min-width: 1921px) {
    /* .box-scroll {
        bottom: 100px;
    } */
}

@media screen and (max-width: 1300px) {
    /* .box-scroll {
        bottom: 133px;
    } */
}

@media screen and (max-width: 767px) {
    .box-scroll {
        width: 28px;
        bottom: 20px;
        display: none;
    }
}

@keyframes scroll_ani {
    10% {
        width: 28px;
    }
    50% {
        width: 0;
    }
    100% {
        width: 0;
    }
}

/* contact-link */

.contact-link-container {
    position: relative;
}

.contact-link-container::before {
    content: "";
    position: absolute;
    background: url(../img/performance-bg.svg) no-repeat;
    background-position: top left;
    background-size: cover;
    width: 91.8%;
    height: 1323px;
    right: 0;
    top: 0;
    z-index: -1;
    margin-top: 164px;
}

.contact-link {
    background: url("../img/contact-link.png") no-repeat;
    background-position: center center;
    background-size: cover;
    width: 280px;
    height: 280px;
    position: fixed;
    bottom: 120px;
    right: 60px;
    transition: all 0.1s ease-in;
    z-index: 999;
}

.contact-link:hover {
    opacity: 0.75;
}

@media screen and (max-width: 1620px) {
    .contact-link {
        width: 135px;
        height: 135px;
        bottom: 80px;
        right: 20px;
    }
}

@media screen and (max-width: 1500px) {
    .contact-link-container::before {
        height: 700px;
    }
}

@media screen and (max-width: 1000px) {
    .contact-link {
        z-index: 9999;
    }
}

@media screen and (max-width: 1000px) {
    .contact-link {
        bottom: 100px;
    }
}

@media screen and (max-width: 767px) {
    .contact-link {
        bottom: 10px;
        right: 10px;
    }
    .contact-link-container::before {
        height: 346px;
        width: 100%;
    }
}

/* event-link */

.event-link {
    max-width: 1080px;
    width: 100%;
    border-bottom: 1px solid #cbcbcb;
    padding-bottom: 127px;
    margin: 0px auto 81px;
}

.event-link a img {
    width: 100%;
    vertical-align: middle;
}

@media screen and (max-width: 767px) {
    .event-link {
        margin: 0 auto 40px;
        padding-bottom: 30px;
    }
}

@media print {
    body {
        width: 100%;
        -webkit-print-color-adjust: exact;
        color-adjust: exact;
    }
    .contact-link {
        width: 120px;
        height: 120px;
        bottom: 20px;
        right: 20px;
    }
    .large-hd-text {
        max-width: 426px;
        width: 100%;
    }
    .large-hd-text img {
        width: 100%;
    }
    footer {
        position: absolute;
        bottom: 0;
    }
}
