@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;200;300;400;500;600;700;800;900&family=Oswald:wght@600&display=swap');


:root {
    --blue00: rgb(49, 197, 123);
    --blue: #009C84;
    --blue03: #076EAC;
    --icegray: rgb(220, 245, 230);
    /* --blue: rgb(0, 136, 66); */
    --mossgreen: rgb(0, 156, 132);
    /*
    --gold: /* #c59852;rgb(195,150,80); */
    --gold:  #c59d4e;
    --orange: #EB881D;
    --orange02: #ebb81d;
    --pink: rgb(255, 89, 115);
    --yellow: rgb(255, 250, 0);
    --sand: #F9F7F1;
}

* {
    margin: 0;
    padding: 0;
}

html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  list-style: none;
  text-indent: 0;
  outline: none;
  box-sizing: border-box;
}
*, *::before, *::after {
    margin: 0;
    box-sizing: border-box !important;
    border-collapse: collapse;
    font-feature-settings: "palt"; /* auto curning (for OpenType) */
}
article, aside, caption, details, figcaption, figure, picture,
footer, header, hgroup, menu, nav, section {
    display: block;
}
img {
    display: block;
    width: 100%;
    height: auto;
}
a {
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}

html{
    font-size: 62.5%;
}
body{
    color: #000;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.8rem; /* 18px */
    font-weight: 400;
    line-height: 1;
    height: auto;
    overflow-x: hidden;
    position: relative;
    width: 100%;
}
/* for iOS Safari */
@supports (-webkit-touch-callout: none) {
    html{
        height: -webkit-fill-available;
    }
    
    body {
        min-height: 100vh;
        height: -webkit-fill-available;
    }
}


/* 点滅 */
.blinking {
	-webkit-animation:blink 1.5s ease-in-out infinite alternate;
    -moz-animation:blink 1.5s ease-in-out infinite alternate;
    animation:blink 1.5s ease-in-out infinite alternate;
    text-align: center;
}
@-webkit-keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}
@-moz-keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}
@keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}


#floatingBanner {
    position: fixed;
      right: -40px;
      bottom: -40px;
      z-index: 9999999;
    display: flex;
      transform: translate(-50%,-50%);
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
  }
  a.floatingBtn.pc {
    display: block;
    width: 166px;
      height: 166px;
  }
  a.floatingBtn.sp {
    display: none;
  }
  
  a.floatingBtn img {
    width: 100%;
  }
  #floatingBanner:hover {
    filter: saturate(200%);
  }
@media screen and (max-width: 768.99px) {
#floatingBanner {
    position: fixed;
      left: 50%;
      bottom: -30px;
      z-index: 9999999;
      transform: translate(-50%,-50%);
    width: 90%;
  }
  a.floatingBtn.sp {
    display: block;
    width: 100%;
  }

  a.floatingBtn.pc {
    display: none;
  }
  a.floatingBtn img {
    width: 100%;
  }
}

/* ======== header ======== */
header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    position: fixed;
    top: 0;
    width: 100%;
    padding: 10px 30px;
    height: 60px;
    z-index: 5;
}
header.scroll-on {
    background: #FFF;
}
@media screen and (max-width: 1024px) {
    header {
        padding: 14px 0 14px 14px;
    }
}
@media screen and (max-width: 768.99px) {
    header {
        justify-content: flex-start;
        height: auto;
        padding: 10px;
    }
}
nav {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: stretch;
    margin: 0 auto 0 0;
    padding: 0;
    width: 60%;
    min-width: 450px;
    height: 100%;
}
@media screen and (max-width: 1024px) {
    nav {
        width: 70%;
        margin: 0;
        min-width: 70vw;
    }
}
@media screen and (max-width: 768.99px) {
    nav {
        width: 60%;
        margin: 0;
        min-width: 60vw;
    }
}
nav h1 {
    display: block;
    width: auto;
    height: 100%;
    padding: 5px 0;
}
@media screen and (max-width: 768.99px) {
    nav h1 {
        padding: 10px;
    }
}
nav h1 a {
    display: block;
}
nav h1 a img {
    width: 240px;
    height: auto;
    filter: brightness(200);
}
header.scroll-on nav h1 a img {
    filter: none !important;
}
nav ul {
    display: flex;
    justify-content: space-evenly;
    width: 100%;
    height: 100%;
}
@media screen and (max-width: 768.99px) {
    nav ul {
        display: none;
    }
}
nav li a {
    display: block;
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
    height: 30px;
    line-height: 30px;
}
@media screen and (max-width: 1199.99px) {
    nav li a {
        font-size: 14px;
    }
}
header.scroll-on nav li a {
    color : var(--blue);
}
.headerSns {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    padding: 10px;
    width: 50%;
    min-width: 250px;
    height: auto;
}
@media screen and (max-width: 1024px) {
    .headerSns {
        width: 30%;
        min-width: 150px;
        margin: 0;
    }
}
@media screen and (max-width: 768.99px) {
    .headerSns {
        width: 40%;
        min-width: 100px;
        margin: 0;
    }
}
.headerSns .headerCta {
    display: block;
    width: 210px;
    padding-left: 10px;
}
@media screen and (max-width: 768.99px) {
    .headerSns .headerCta {
        display: none;
    }
}
.headerSns h4 {
    color: var(--blue);
    font-size: 15px;
    font-weight: 900;
    padding-right: 5px;
}
@media screen and (max-width: 768.99px) {
    .headerSns h4 {
        display: none;
    }
}
.share_link {
    width: 37px;
    color: var(--blue);
}
.share_link img {
    margin: 0 0 0 auto;
    width: 32px;
}

/* ======== sections ======== */
#sec-fv, #sec-message, #sec-videos, #sec-pg,
#sec-ov, #sec-entry, #sec-entry--sec-faq, #sec-partners, 
#sec-sponsors, #sec-support, #sec-contact {
    position: relative;
}
.screen {
    width: 100vw;
    height: 120vh;
    min-height: 52vw;
    position: relative;
    overflow: hidden;
}
@media screen and (max-width: 1024px) {
    .screen {
        min-height: 133vw;
    }
}
@media screen and (max-width: 768.99px) {
    .screen {
        height: 100vh;
        min-height: 130vw;
    }
    @media screen and (min-height: 1023.99px) {
        .screen {
            height: 150vh;
            min-height: 150vh;
        }
    }
}
.scene01 {
    background: url(../img/fv/img-slide-01.png) no-repeat center center fixed;
    background-size: cover;
    z-index: 1;
}
@media screen and (max-width: 1024px) {
    .scene01 {
        background: url(../img/fv/img-fv-01-tb-min.png) no-repeat top center;
        background-image: image-set(url(../img/fv/img-fv-01-tb-min.png) 1x, url(../img/fv/img-fv-01-tb.png) 2x);
        background-image: -webkit-image-set(url(../img/fv/img-fv-01-tb-min.png) 1x, url(../img/fv/img-fv-01-tb.png) 2x);
        background-size: cover;
    }
}
@media screen and (max-width: 768.99px) {
    .scene01 {
        background: url(../img/fv/img-slide-01-sp.png) no-repeat top center;
        background-size: 100% auto;
    }
}
.scene02 {
    background: url(../img/fv/img-slide-02.png) no-repeat center center fixed;
    background-size: cover;
    z-index: 2;
}
@media screen and (max-width: 1024px) {
    .scene02 {
        background: url(../img/fv/img-fv-02-tb.png) no-repeat center right;
        background-image: image-set(url(../img/fv/img-fv-02-tb-min.png) 1x, url(../img/fv/img-fv-02-tb.png) 2x);
        background-image: -webkit-image-set(url(../img/fv/img-fv-02-tb-min.png) 1x, url(../img/fv/img-fv-02-tb.png) 2x);
        background-size: cover;
    }
}
@media screen and (max-width: 768.99px) {
    .scene02 {
        background: url(../img/fv/img-slide-02-sp.png) no-repeat top center;
        background-size: cover;
    }
}
.scene03 {
    background: url(../img/fv/img-slide-03.png) no-repeat center center fixed;
    background-size: cover;
    z-index: 3;
}
@media screen and (max-width: 1024px) {
    .scene03 {
        background: url(../img/fv/img-slide-03.png) no-repeat center center;
        background-size: cover;
    }
}
@media screen and (max-width: 768.99px) {
    .scene03 {
        background: url(../img/fv/img-slide-03-sp.png) no-repeat center center ;
        background-size: cover;
    }
}
.scene04 {
    background: url(../img/fv/img-slide-04.png) no-repeat center center fixed;
    background-size: cover;
    z-index: 4;
}
@media screen and (max-width: 1024px) {
    .scene04 {
        background: url(../img/fv/img-slide-04-sp.png) no-repeat bottom center;
        background-size: 100% auto;
    }
}
@media screen and (max-width: 768.99px) {
    .scene04 {
        background: url(../img/fv/img-slide-04-sp.png) no-repeat center center;
        background-size: cover;
    }
    @media screen and (max-height: 680px) {
        .scene04 {
            background: url(../img/fv/img-slide-04-sp.png) no-repeat bottom center;
            background-size: cover;
        }
    }
}
.screen div {
    position: absolute;
    display: block;
    left: 0;
    top: 25%;
    padding: 0% 0% 0% 4%;
    width: 600px;
    height: 100%;
}
.screen.scene04 div {
    top: 20%;
}
.screen.scene04 div a {
    display: block;
    padding-top: 15px;
    height: auto;
    outline: none;
}
.screen.scene04 div a:hover {
    filter: saturate(150%);
}
@media screen and (min-width: 1620px) {
    .screen div {
        position: absolute;
        display: block;
        left: 0;
        top: 25%;
        padding: 0% 0% 0% 4%;
        width: 780px;
        height: 100%;
    }
}
@media screen and (min-width: 1920px) {
    .screen div {
        position: absolute;
        display: block;
        left: 0;
        top: 25%;
        padding: 0% 0% 0% 4%;
        width: 900px;
        height: 100%;
    }
}
@media screen and (max-width: 1024px) {
    .screen div {
        width: 100%;
        height: 100%;
        padding: 5vw;
        top: 40vh;
    }
    .screen.scene01 div {
        top: 0;
        padding-top: 20vw;
    }
    .screen.scene02 div {
        top: 0;
        padding-top: 20vw;
    }
    .screen.scene03 div {
        top: 0;
        padding-top: 120vw;
    }
    .screen.scene04 div {
        width: 80%;
        top: 60%;
    }
}   
@media screen and (max-width: 768.99px) {
    .screen div {
        width: 100%;
        height: 100%;
        padding: 5vw;
        top: 50vh;
    }
    .screen.scene01 div {
        top: 0;
    }
    .screen.scene02 div {
        top: 0;
        padding-top: 50%;
    }
    .screen.scene03 div {
        top: 0;
        padding-top: 60vh;
    }
    .screen.scene04 div {
        top: 41.5%;
    }
    @media screen and (max-height: 680px) {
        .screen.scene04 div {
            top: 54vh;
        }
    }
    @media screen and (min-height: 680.1px) {
        .screen.scene04 div {
            top: 0;
            padding-top: 133vw;
        }
    }
    @media screen and (min-height: 1023.99px) {
        .screen.scene03 div {
            top: 0;
            padding-top: 130%;
        }
        .screen.scene04 div {
            top: 0;
            padding-top: 130%;
        }
    }
    .screen.scene04 div a {
        padding-top: 15px;
    }
    .screen.scene04 img {
        filter: drop-shadow(1px 1px 25px rgba(255,255,255, 1))
    }
    @media screen and (max-width: 393.99px) and (min-height: 819.99px) {
        .screen.scene04 div {
            top: 0;
            padding-top: 128%;
        }

    }
}
.screen.scene01 img,
.screen.scene02 img,
.screen.scene03 img {
    filter: drop-shadow(0px 0px 10px rgba(0,0,0, 0.5));
}
.screen div p {
    color: #FFF;
    font-weight: 600;
}
/*スクロールダウン全体の場所*/
.scrolldown1{
    /* display: block; */
    display: none;
    position: relative;
    left: 30%;
    top: 46%;
    /*全体の高さ*/
    height:120px;
}
.scene02 .scrolldown1,
.scene03 .scrolldown1 {
    left: 30%;
}
@media screen and (max-width: 768.99px) {
    .scrolldown1{
        top: 48%;
        right: 0%;
        left: 80%;
        width: 100%;
    }
    .scene02 .scrolldown1,
    .scene03 .scrolldown1 {
        left: 73%;
    }
}

/*Scrollテキストの描写*/
.scrolldown1 span{
    /*描画位置*/
    position: absolute;
    left:-15px;
    top: -15px;
    /*テキストの形状*/
    color: #eee;
    font-size: 0.7rem;
    letter-spacing: 0.05em;
}
.scene03 .scrolldown1 span {
    color: rgb(0, 135, 100);
}

/* 線の描写 */
.scrolldown1::after{
  content: "";
    /*描画位置*/
  position: absolute;
  top: 0;
    /*線の形状*/
  width: 1px;
  height: 70px;
  background: #eee;
    /*線の動き1.4秒かけて動く。永遠にループ*/
  animation: pathmove 1.4s ease-in-out infinite;
  opacity:0;
}
.scene03 .scrolldown1::after {
    background: rgb(0, 135, 100);
}
/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove{
  0%{
    height:0;
    top:0;
    opacity: 0;
  }
  30%{
    height:30px;
    opacity: 1;
  }
  100%{
    height:0;
    top:50px;
    opacity: 0;
  }
}

.contents {
    position: relative;
    background-color: #fff;
    z-index: 5;
}
.contents img {
    display: block;
    margin: 0 auto 0 0;
    width: 600px;
}
.contents p {
    display: block;
    width: 700px;
    margin: 40px auto;
}

section .inner {
    margin: 0 auto;
    padding: 100px 0;
}
@media screen and (max-width: 768.99px) {
    section .inner {
        width: 100%;
        padding: 12vw 2%;
    }
}
@media screen and (max-width: 400.99px) {
    section .inner {
        width: 100%;
        padding: 10vw 2%;
    }
}
@media screen and (min-width: 769px) {
    section .inner {
        width: 90%;
        padding: 80px 2%;
    }
}
@media screen and (min-width: 1001px) {
    section .inner {
        width: 1000px;
        padding: 50px 0;
    }
}
@media screen and (max-width: 768.99px) {
    .sp {display: block;}
    .pc {display: none;}
}
@media screen and (min-width: 769px){
    .sp {display: none;}
    .pc {display: block;}
}

/* ======== buttons ======== */
.btnHead {
    background: var(--orange);
    border: 1px solid #fff;
    border-radius: 10px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    color: #FFF;
    font-size: 14px;
    font-weight: 500;
    display: block;
    position: relative;
    margin: 0 auto;
    padding: .75em 2em .75em 1em;
    text-align: center;
    text-decoration: none;
    width: 180px;
    height: auto;
}
.btnHead:hover {
    background: var(--orange02);
    text-decoration: none;
}
.btnHead::after {
    background: url(../img/icons/icon-arrow-r.png) no-repeat right center;
    background-size: cover;
    content: "";
    display: block;
    position: absolute;
    right: 1em;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    width: 20px;
    height: 20px;
}
.btnHead:hover::after {
    right: 0.8em;
}
.box_cta {
    display: block;
    margin: 0 auto;
    padding: 60px 0 20px 0;
    text-align: center;
}
.btnCta {
    background: var(--blue);
    border: 1px solid #fff;
    border-radius: 40px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    color: #FFF;
    font-size: 28px;
    font-weight: 500;
    display: block;
    position: relative;
    margin: 0 auto;
    padding: .75em 2em .75em 1em;
    text-align: center;
    text-decoration: none;
    width: 50%;
    height: auto;
}
@media screen and (max-width: 999.99px) {
    .btnCta {
        font-size: 24px;
    }
}
@media screen and (max-width: 768.99px) {
    .btnCta {
        font-size: 26px;
        width: 90%;
    }
}
@media screen and (max-width: 399.98px) {
    .btnCta {
        font-size: 21px;
    }
}
.btnCta:hover {
    background: #308611;
    border: 1px solid #fff;
    text-decoration: none !important;
}
.btnCta::after {
    background: url(../img/icons/icon-arrow-r.png) no-repeat right center;
    background-size: cover;
    content: "";
    display: block;
    position: absolute;
    right: 1.2em;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    width: 28px;
    height: 28px;
}
.btnCta:hover::after {
    right: 1em;
}
    
/* ======== headings ======== */
.heading-box {
    display: block;
    margin: 0 auto;
    text-align: center;
    width: 1000px;
}
@media screen and (max-width: 999.99px) {
    .heading-box {
        width: 100%;
    }
}
.heading-box h2{
    color: var(--blue);
    display: inline-block;
    font-size: 3rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: 2;
    margin: 0 auto;
    padding: 1rem 12rem;
    position: relative;
    text-align: center;
    z-index: 1;
}
#sec-sponsors .heading-box h2
#sec-faq .heading-box h2 {
    color: var(--blue);
}
section .heading-box h2.h2-title {
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    font-size: 60px;
    letter-spacing: 0;
    line-height: 1.3;
}
section .heading-box h2 span {
color: #000;
display: block;
font-family: 'Noto Sans JP', sans-serif;
font-size: 18px;
font-weight: 300;
letter-spacing: 1px;
margin: 0 auto;
}
@media screen and (max-width: 768.99px) {
section .inner h2,
section .heading-box h2.h2-title {
    padding: 0.4em 3.5em;
    font-size: 2.8rem;
}
section .inner h2 span,
section .heading-box h2 span {
    display: block;
    font-size: 50%;
}
section .inner h2::before,
section .inner h2::after {
    transform: scale(0.7);
}
}



/* ----- message ----- */
#sec-message {
    background: #FFF;
    margin: 0 auto;
    padding: 0;
}
#sec-message .inner {
    padding: 8rem 0;
}
@media screen and (max-width: 768.99px) {
    #sec-message .inner {
        padding: 2rem 0;
        width: 90%;
    }
}
.sec-message--flex {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    margin: 2em auto;
    padding: 2em;
    width: 86%;
}
@media screen and (max-width: 999.99px) {
    .sec-message--flex {
        margin: 0 auto;
        padding: 2em 0;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        width: 100%;
    }
}
.sec-message--flex figure {
    border-radius: 10px;
    display: block;
    width: 210px;
    height: 218px;
    overflow: hidden;
}
@media screen and (max-width: 768.99px) {
    .sec-message--flex figure {
        /*
        border-radius: 100px;
        display: block;
        margin-top: 30px;
        width: 200px;
        height: 208px;
        overflow: hidden;
        */
        display: none;
    }
}
.sec-message--flex figure img {
    width: 100%;
}
.sec-message--flex div.message-box {
    padding: 10px 0 0 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
}
@media screen and (max-width: 999.99px) {
    .sec-message--flex div.message-box {
        padding: 0;
    }
}
.sec-message--flex div.message-box p {
    font-size: 1.68rem;
    font-weight: 400;
    line-height: 2;
    text-align: center;
}
.sec-message--flex div.message-box p.small{
    font-size: 1.4rem;
    padding-top: 1em;
    text-align: center;
}
@media screen and (max-width: 768.99px) {
    .sec-message--flex div.message-box p,
    .sec-message--flex div.message-box p.small {
        text-align: left;
    }
}

.sec-message--flex div.message-box span {
    font-size:1.2rem;
    line-height: 1.4;
    display: block;
}
.sec-message--flex div.message-box small {
    font-size:1.2rem;
}


/* ----- videos ----- */
#sec-videos {
    background: #FFFFF8;
    margin: 0 auto;
}
#sec-videos .inner_wide {
    padding: 100px 0;
    width: 100%;
    height: auto;
}
a.fv-cta-relife {display: block; margin: 0 auto 30px auto;width: 625px;border:0;outline:0;filter:drop-shadow(3px 3px 3px rgba(2,2,2,0.6));}
@media screen and (max-width: 768.99px) {
    a.fv-cta-relife {
        margin: 0 auto;
        padding: 0;
        width: 96%;
    }
}

@media screen and (max-width: 1199.98px) {
    #sec-videos .inner_wide {
      max-width: 100%;
    }
  }
@media screen and (min-width: 1200px) {
    #sec-videos .inner_wide {
        max-width: 1200px;
    }
}
#sec-videos div.inner.inner_wide > .lead-box-videos h1 {
    display: block;
    margin: 0 auto;
    padding: 0 0 10px 0;
    position: relative;
    width: 100%;
    height: auto;
}
#sec-videos div.inner.inner_wide .lead-box-videos h1 img {
    display: block;
    margin: 0 auto;
    padding: 0;
    width: 600px;
}
@media screen and (max-width: 768.99px) {
    #sec-videos div.inner.inner_wide .lead-box-videos h1 img {
        width: 96%;
    }
}
#sec-videos div.inner.inner_wide .lead-box-videos h2 {
    font-size: 26px;
    text-align: center;
    padding: 0 0 40px 0;
    line-height: 1.2;
}

#sec-videos .galleryBox {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
    margin: 0 auto;
    padding: 4em 0 0 0;
    width: 1000px;
    height: auto;
}
@media screen and (max-width: 999.99px) {
    #sec-videos .galleryBox {
        width: 98%;
    }
}
#sec-videos .galleryBox > .galleryImage {
    padding: 0 0 4em 0;
    width: 32%;
    flex-basis: 32%;
    text-align: center;
}
@media screen and (max-width: 768.99px) {
    #sec-videos .galleryBox > .galleryImage {
        padding: 0 0 2em 0;
        width: 48%;
        flex-basis: 48%;
        text-align: center;
    }
}
#sec-videos .galleryBox > .galleryImage figure {
    width: 100%;
    position: relative;
}
#sec-videos .galleryBox > .galleryImage figure img {
    width: 100%;
    filter: drop-shadow(2px 2px 2px rgba(2,2,2, 0.2));
}
#sec-videos .galleryBox > .galleryImage figure::after {
    background: url(../img/icons/icon-play.png) no-repeat center center;
    background-size: cover;
    content: "";
    display: block;
    filter: drop-shadow(2px 2px 2px rgba(2,2,2, 0.4));
    width: 84px;
    height: 84px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}
#sec-videos .galleryBox > .galleryImage h3 {
    color: var(--mossgreen);
    font-size: 1.7rem;
    font-weight: 600;
    margin: 1em auto 0 auto;
    padding: 0;
    text-align: center;
    line-height: 1;
}
#sec-videos .galleryBox > .galleryImage:nth-child(1) h3,
#sec-videos .galleryBox > .galleryImage:nth-child(2) h3,
#sec-videos .galleryBox > .galleryImage:nth-child(3) h3{
    line-height: 1.2;
}
@media screen and (max-width: 768.99px) {
    #sec-videos .galleryBox > .galleryImage h3,
    #sec-videos .galleryBox > .galleryImage:nth-child(1) h3,
    #sec-videos .galleryBox > .galleryImage:nth-child(2) h3,
    #sec-videos .galleryBox > .galleryImage:nth-child(3) h3 {
        font-size: 1.6rem;
        line-height: 1.2;
    }
}
#sec-videos .galleryBox > .galleryImage p {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0.5em auto 0 auto;
    padding: 0;
    text-align: center;
}
#sec-videos .galleryBox > .galleryImage p small {
    display: block;
    margin: 0 auto;
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.4;
    padding-bottom: 0.5em;
}
#sec-videos .galleryBox > .galleryImage p span {
    font-size: 1.2rem;
    font-weight: 400;
}
@media screen and (max-width: 768.99px) {
    #sec-videos .galleryBox > .galleryImage p {
        font-size: 1.4rem;
    }
}

/* ----- program ----- */
#sec-pg {
    background: var(--sand);
    margin: 0 auto;
    padding: 0;
}
#sec-pg .inner_wide {
    padding: 50px 2.5%;
    width: 100%;
    max-width: 1200px;
    height: auto;
}
@media screen and (max-width: 1199.99px) {
    #sec-pg .inner_wide {
        max-width: 100%;
    }
}
p.p-prog {
    font-size: 0.78em;
    font-weight: 300;
    line-height: 1.6;
}
dl.pg-profile {
    margin: 0 auto;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}
dl.pg-profile dt{
    width: 100%;
    padding: 0;
    position: relative;
}
dl.pg-profile dt.active .btn::after {
    background: url(../img/icons/icon-close01.png) no-repeat right center;
    background-size: cover;
    }
dl.pg-profile dd {
    background: rgb(248, 249, 248);
    border-top: 20px solid #FFF;
    margin: 0;
    padding: 2em;
    width: 100%;
    height: auto;
    display: none;
    transition: transform .3s;
}
@media screen and (max-width: 768.99px) {
    dl.pg-profile dd {
        padding: 1.5em;
    }
}
dl.pg-profile dd.active {
    display: block;
}
dl.pg-profile .pg_acdn_box {
    padding-bottom: 2em;
}
dl.pg-profile .pg_acdn_box:last-child {
    padding-bottom: 0;
}
dl.pg-profile dd h4 {
    color: var(--blue);
    font-size: 2.2rem;
    font-weight: 300;
    padding: 1em 0 0.5em 0;
}
dl.pg-profile dd h5 {
    font-size: 2rem;
    font-weight: 500;
    line-height: 2;
}
dl.pg-profile dd h5 span {
    font-size: 1.4rem;
}
dl.pg-profile dd h6 {
    font-size: 1.26rem;
    font-weight: 400;
    line-height: 1.4;
}
dl.pg-profile dd p {
    font-size: 1.4rem;
    font-weight: 300;
    line-height: 1.6;
    padding-top: 1rem;
}

dl.pg-profile p:first-child {
    padding-top: 0;
}
    


.sec-pg--ul_attention {
    margin: 0 auto 2em auto;
    width: 90%;
    padding: 2%;
}
.sec-pg--ul_attention li {
    font-size: 1.4rem;
    font-weight: 300;
    padding: 0 0 0.5em 1.2em;
    position: relative;
    width: 100;
}
@media screen and (max-width: 768.99px) {
    .sec-pg--ul_attention li {
        font-size: 14px;
        line-height: 1.6;
    }
}
.sec-pg--ul_attention li::before {
    content: "※";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 14px;
    height: 14px;
}
@media screen and (max-width: 768.99px) {
    .sec-pg--ul_attention li::before {
        font-size: 14px;
        width: 14px;
        height: 14px;
    }
}

.box_info {
    background: #FFF;
    border: 1px solid var(--gold);
    box-shadow: 6px 6px 6px rgba(7, 110, 170, 0.2);
    margin: 1em auto 0 auto;
    padding: 1.5em;
    width: 980px;
}
@media screen and (max-width: 979.99px) {
    .box_info {
        padding: 8% 4%;
        width: 90%;
    }
}
.box_info > * {
    text-align: center;
}
.box_info h3{
    color: var(--gold);
    font-size: 2.4rem;
    font-weight: 400;
    line-height: 1.8;
}
.box_info p {
    font-size: 2rem;
    line-height: 1.6;
}
@media screen and (max-width: 768.99px) {
    .box_info h3{
        font-size: 2rem;
        line-height: 1.4;
    }
    .box_info p {
        font-size: 1.4rem;
        line-height: 1.6;
    }
}

#sec-pg .programBox {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin: 0 auto;
    padding: 50px 0 0 0;
    width: 1000px;
    height: auto;
}
@media screen and (max-width: 999.99px) {
    #sec-pg .programBox {
        width: 100%;
    }
}
#sec-pg .pgList {
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: flex-start;
}
.pgCard {
    background: #FFF;
    border: 1px solid var(--gold);
    border-left: 4px solid var(--gold);
    box-shadow: 6px 6px 6px rgba(7, 110, 170, 0.2);
    margin: 0 auto 50px auto;
    padding: 8% 2% 2% 2%;
    position: relative;
    width: 46%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: space-evenly;
    min-height: 550px;
}
/* 最新のsafari用 */
@media screen and (min-width: 769px) {
    _::-webkit-full-page-media, _:future, :root .pgCard {
        min-height: 550px;
    }
    /* 古いsafari用 */
    @media screen and (-webkit-min-device-pixel-ratio:0) {
        ::i-block-chrome, .pgCard {
            min-height: 550px;
        }
    }
}
@media screen and (max-width: 768.99px) {
    .pgCard {
        min-height: auto;
    }
}
.pgCard .spacer.pc{
    display: block;
    height: 30px;
}
@media screen and (max-width: 1199.99px) {
    .pgCard .spacer.pc{
        display: block;
        height: 0px;
    }
}
@media screen and (max-width: 768.99px) {
    .pgCard {
        padding: 16% 4% 7% 4%;
        width: 90%;
    }
    .pgCard .spacer.pc{
        display: none !important;
    }

}
.pgCard-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: auto;
}
.pgCard-header li:nth-child(1){
    width: 70px;
}
.pgCard-header li:nth-child(2){
    width: calc(100% - 70px);
    height: 50px;
    font-weight: 400;
}
@media screen and (max-width: 768.99px) {
    .pgCard-header {
        height: 20%;
    }
    .pgCard-header li:nth-child(1){
        width: 12%;
    }
    .pgCard-header li:nth-child(2){
        width: 85%;
        height: 45px;
    }
}
.pgCard .number {
    display: block;
    color: #FFF;
    font-size: 36px;
    font-weight: 900;
    line-height: 55px;
    width: 50px;
    height: 60px;
    text-align: center;
    text-indent: -9999px;
}
@media screen and (max-width: 768.99px) {
    .pgCard .number {
        width: 40px;
        height: 40px;
    }
}
.pgCard:nth-child(1) .number{
    background: url(../img/icons/img-num01.png) no-repeat 20px center;
    background-size: 30px auto;
}
.pgCard:nth-child(2) .number{
    background: url(../img/icons/img-num02.png) no-repeat 20px center;
    background-size: 30px auto;
}
.pgCard:nth-child(3) .number{
    background: url(../img/icons/img-num03.png) no-repeat 20px center;
    background-size: 30px auto;
}
.pgCard:nth-child(4) .number{
    background: url(../img/icons/img-num04.png) no-repeat 20px center;
    background-size: 30px auto;
}

@media screen and (max-width: 768.99px) {
    .pgCard:nth-child(1) .number{
        background: url(../img/icons/img-num01.png) no-repeat;
        background-size: auto 90%;
        background-position: 70% 150%;
    }
    .pgCard:nth-child(2) .number{
        background: url(../img/icons/img-num02.png) no-repeat;
        background-size: auto 90%;
        background-position: 70% 150%;
    }
    .pgCard:nth-child(3) .number{
        background: url(../img/icons/img-num03.png) no-repeat;
        background-size: auto 90%;
        background-position: 70% 150%;
    }
    .pgCard:nth-child(4) .number{
        background: url(../img/icons/img-num04.png) no-repeat;
        background-size: auto 90%;
        background-position: 70% 150%;
    }
}

.pgCard time {
    background: var(--gold);
    font-family: sans-serif;
    color: #fff;
    display: inline-block;
    font-size: 2.4rem;
    font-weight: 300;
    line-height: 2;
    padding: 0 1em;
    width: 100%;
    height: 100%;
}
@media screen and (max-width: 768.99px) {
    .pgCard time {
        font-size: 2.2rem;
        text-align: left;
    }
}

/*
.pgCard .sponsored {
    background: #DECE50;
    color: #FFF;
    font-size: 21px;
    font-weight: 700;
    line-height: 32px;
    display: block;
    position: absolute;
    top: 0;
    right: 5%;
    width: 170px;
    height: 32px;
    text-align: center;
}
@media screen and (max-width: 1199.98px) {
    .programCard .sponsored {
        font-size: 18px;
        width: 50%;
    }
}
*/
.pgCard-inner {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: stretch;
}
@media screen and (max-width: 768.99px) {
    .pgCard-inner {
        flex-direction: column;
        justify-content: flex-start;
    }
}

.pgCard-inner-box {
    width: 100%;
}
.pgCard:nth-child(1) .pgCard-inner-box:nth-child(1),
.pgCard:nth-child(2) .pgCard-inner-box:nth-child(1) {
    min-height: 220px;
}
.pgCard:nth-child(3) .pgCard-inner-box:nth-child(1),
.pgCard:nth-child(4) .pgCard-inner-box:nth-child(1) {
    min-height: 160px;
}
@media screen and (max-width: 768.99px) {
    .pgCard:nth-child(1) .pgCard-inner-box:nth-child(1),
    .pgCard:nth-child(2) .pgCard-inner-box:nth-child(1),
    .pgCard:nth-child(3) .pgCard-inner-box:nth-child(1),
    .pgCard:nth-child(4) .pgCard-inner-box:nth-child(1) {
        min-height: auto;
    }
}
.pgCard h3 {
    color: var(--blue);
    display: inline-block;
    font-size: 3.2rem;
    font-weight: 600;
    line-height: 1.2;
    margin: 10px auto 10px auto;
    width: 100%;
    min-height: 8rem;
}
.pgCard:nth-child(3) .pgCard-inner-box:nth-child(1) h3,
.pgCard:nth-child(4) .pgCard-inner-box:nth-child(1) h3{
    min-height: auto;
}
@media screen and (max-width: 999.99px) {
    .pgCard h3 {
        font-size: 3.1rem;
    }
}
@media screen and (max-width: 768.99px) {
    .pgCard h3 {
        font-size: 3rem;
    }
}
.pgCard h3 small,
.pgCard h3 span {
    display: inline-block;
    font-size: 68%;
    width: 100%;
}
.pgCard h3 span.inline {
    display: inline;
}
@media screen and (max-width: 768.99px) {
    .pgCard h3 small,
    .pgCard h3 span {
        font-size: 19px;
    }
}
@media screen and (max-width: 399.98px) {
    .pgCard h3 small,
    .pgCard h3 span{
        font-size: 17px;
    }
}
.pgCard p.pg_description {
    font-size: 1.4rem;
    line-height: 1.6;
    padding-bottom: 2rem;
}
@media screen and (max-width: 1199.99px) {
    .pgCard p.pg_description {
        font-size: 1.6rem;
        line-height: 1.4;
        padding-bottom: 2rem;
    }
}
@media screen and (max-width: 768.99px) {
    .pgCard p.pg_description {
        font-size: 1.6rem;
        line-height: 1.4;
        padding-bottom: 2rem;
    }
}


.pgCard p.speaker {
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 2;
    text-align: center;
    min-height: auto;
}
@media screen and (max-width: 768.99px) {
    .pgCard p.speaker  {
        padding: 0;
        font-size: 1rem;
        line-height: 1.4;
        font-weight: 400;
        min-height: auto;
    }
}

.pgCard ul.profileImage {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: stretch;
    margin: 0 auto 20px auto;
    padding: 10px 0 0 0;
    width: 99%;
}
.pgCard ul.profileImage li {
    width: 31%;
}
.pgCard figcaption {
    display: none;
    font-size: 1.4rem;
    padding: 1rem;
    text-align: center;
}
.pgCard .buttons {
    margin: 0 auto;
    padding: 0;
    width: 100%;
}
.btn {
    background: var(--blue);
    border: 1px solid #FFF;
    border-radius: 10px;
    box-shadow: 3px 3px 0 rgba(10, 140, 185, 0.2);
    color: #FFF;
    font-size: 21px;
    font-weight: 400;
    display: block;
    position: relative;
    margin: 0 auto;
    padding: 1em;
    text-align: center;
    text-decoration: none;
    width: 100%;
    height: auto;
}
.btn-small {
    background: #FFF;
    border: 2px solid var(--mossgreen);
    border-radius: 10px;
    color: var(--mossgreen);
    font-family: sans-serif;
    font-size: 1em;
    font-weight: 300;
    padding: 0.5em;
}
@media screen and (max-width: 768.99px) {
    .btn {
        padding: 1em 1.25em 1em 0;
    }
}
.btn:hover {
    background: #FFF;
    border: 2px solid var(--mossgreen);
    color: var(--mossgreen);
    text-decoration: none;
}
.btn::after {
    background: url(../img/icons/icon-open-02.png) no-repeat right center;
    background-size: cover;
    content: "";
    display: block;
    position: absolute;
    right: 1em;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    width: 24px;
    height: 24px;
}
/* ----- overviews ----- */
#sec-ov {
    background: #FFF;
    margin: 0 auto;
    padding: 0;
}
#sec-ov table {
    border-collapse: collapse;
    display: block;
    margin: 50px auto 20px auto;
    padding: 0;
    table-layout: fixed;
}
@media screen and (max-width: 768.99px) {
    #sec-ov table {
        width: 90%;
    }
}
@media screen and (min-width: 769px) {
    #sec-ov table{
        width: 80%;
    }
}
@media screen and (min-width: 999.98px) {
    #sec-ov table{
        width: 780px;
    }
}
#sec-ov tr, #sec-ov th, #sec-ov td {
    border: 1px solid #666;
    border-collapse: collapse;
    border-right: 0;
    border-left: 0;
}
#sec-ov th, #sec-ov td {
    padding: 20px;
    vertical-align: top;
    text-align: left;
}
#sec-ov th {
    color: var(--blue);
    font-size: 21px;
    font-weight: 400;
    line-height: 1.6;
    width: 7em;
}
@media screen and (max-width: 768.99px) {
    #sec-ov th {
        font-size: 16px;
        width: 7em;
    }
}
#sec-ov tr:nth-child(4) th,
#sec-ov tr:nth-child(5) th {
    letter-spacing: 0;
}
#sec-ov th small {
    display: block;
    font-size: 70%;
    letter-spacing: 0;
    line-height: 1;
    width: 100%;
}
@media screen and (max-width: 768.99px) {
    #sec-ov th small {
        line-height: 2;
    }
}
#sec-ov td {
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: 1.6;
}
@media screen and (max-width: 768.99px) {
    #sec-ov td {
        font-size: 18px;
        letter-spacing: 0;
    }
}
#sec-ov td a {
    color: #CC0000;
    text-decoration: underline;
}
#sec-ov td small {
    display: block;
    font-size: 80%;
    line-height: 1.4;
    width: 100%;
}
@media screen and (max-width: 768.99px) {
    #sec-ov td small {
        font-size: 14px;
        line-height: 1.6;
    }
}
.sec-ov--dl_attention {
    background: var(--icegray);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    margin: 40px auto 0 auto;
    padding: 0;
    width: 780px;
    height: auto;
}
@media screen and (max-width: 999.99px) {
    .sec-ov--dl_attention {
        width: 90%;
    }
}
.sec-ov--dl_attention dt {
    margin: 0;
    color: var(--mossgreen);
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
    position: relative;
    text-align: center;
}
@media screen and (max-width: 768.99px) {
    .sec-ov--dl_attention dt {
        padding: 2em 1em;
    }
}
@media screen and (min-width: 769px) {
    .sec-ov--dl_attention dt {
        padding: 2em;
    }
}
.sec-ov--dl_attention dt::after {
    /*
    background: #E86969;
    */
    background: var(--mossgreen);
    content: "";
    width: 20em;
    height: 2px;
    position: absolute;
    bottom: 1em;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}
@media screen and (max-width: 768.99px) {
    .sec-ov--dl_attention dt::after {
        width: 90%;
    }
}
.sec-ov--dl_attention dd {
    margin: 0;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.6;
    text-align: center;
}
@media screen and (max-width: 768.99px) {
    .sec-ov--dl_attention dd {
        padding: 0 2em 2em 2em;
        line-height: 1.8;
    }
}
@media screen and (min-width: 769px) {
    .sec-ov--dl_attention dd {
        padding: 0 4em 2em 4em;
    }
}
/* ----- entry ----- */
#sec-entry {
    background: var(--sand);
    margin: 0 auto;
    padding: 0;
}
#sec-entry .sec-entry--p_attention {
    font-size: 1.4rem;
    line-height: 1;
    padding: 0 0 0 1em;
    position: relative;
}
@media screen and (max-width: 768.99px) {
    #sec-entry .sec-entry--p_attention {
      padding: 0 1rem 0 3em; 
      font-size: 16px;
      line-height: 1.6;
    }
}
@media screen and (min-width: 769px) {
    #sec-entry .sec-entry--p_attention {
        display: block;
        margin: 0 auto;
        width: 780px;
      }
}
#sec-entry .sec-entry--p_attention::before {
    content: "※";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 1rem;
    height: 1rem;
}
@media screen and (max-width: 768.99px) {
    #sec-entry .sec-entry--p_attention::before {
        font-size: 14px;
        width: 14px;
        height: 14px;
        left: 1.5em;
    }
}
#sec-entry table {
    background: #FFF;
    border-collapse: collapse;
    display: block;
    margin: 50px auto 20px auto;
    padding: 0;
    table-layout: fixed;
}
@media screen and (max-width: 768.99px) {
    #sec-entry .sec-entry table {
        width: 90%;
    }
}
@media screen and (min-width: 769px) {
    #sec-entry table{
        width: 700px;
    }
}
@media screen and (min-width: 999.98px) {
    #sec-entry table{
        width: 780px;
    }
}
#sec-entry tr,#sec-entry th, #sec-entry td {
    border: 2px solid var(--blue);
    border-collapse: collapse;
}
#sec-entry th, #sec-entry td {
    padding: 20px;
    vertical-align: top;
    text-align: left;
}
#sec-entry th {
    border-right: 0;
    color: var(--blue);
    font-family: 'Jost', sans-serif;
    font-size: 52px;
    font-weight: 600;
    text-align: center;
}
@media screen and (max-width: 768.99px) {
    #sec-entry th {
        width: 14%;
    }
}
@media screen and (min-width: 769px) {
    #sec-entry th{
        width: 70px;
    }
}
@media screen and (min-width: 1000px) {
    #sec-entry th{
        width: 100px;
    }
}
#sec-entry td {
    border-left: 0;
}
#sec-entry td p {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.8;
}
@media screen and (max-width: 768.99px) {
    #sec-entry td p {
        font-size: 18px;
        line-height: 1.8;
    }
}
#sec-entry tr:nth-child(2) td p{
    padding-bottom: 1em;
}
#sec-entry tr:nth-child(2) td p:last-child{
    padding-bottom: 0;
}
#sec-entry td .sec-entry--p_attention {
    font-size: 70%;
    line-height: 1;
    padding: 0 0 0 1em;
    position: relative;
}
@media screen and (max-width: 768.99px) {
    #sec-entry td .sec-entry--p_attention {
        font-size: 16px;
        line-height: 1.6;
        font-weight: 400;
    }
}
#sec-entry td .sec-entry--p_right {
    text-align: right;
}
#sec-entry td p a {
    color: #CC0000;
    text-decoration: underline;
}
#sec-entry td ul {
    display: block;
    font-size: 16px;
    line-height: 1.8;
    width: 98%;
}
#sec-entry .sec-entry--ul_attention li {
    font-size: 17px;
    padding: 0 0 0 1em;
    position: relative;
    width: 100%;
}
@media screen and (max-width: 768.99px) {
    #sec-entry .sec-entry--ul_attention li {
        font-size: 16px;
        line-height: 1.6;
    }
}
#sec-entry td .sec-entry--p_attention::before,
#sec-entry td .sec-entry--ul_attention li::before {
    content: "※";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 18px;
    height: 18px;
}
@media screen and (max-width: 768.99px) {
    #sec-entry td .sec-entry--p_attention::before,
    #sec-entry td .sec-entry--ul_attention li::before {
        font-size: 14px;
        width: 14px;
        height: 14px;
    }
}

/* ----- sponsor banners ----- */
#sec-partners, 
#sec-sponsors, #sec-support {
    background: #FFF;
    margin: 0 auto;
    padding: 0;
}
#sec-sponsors {
    background: var(--icegray);
}
#sec-partners .inner, 
#sec-sponsors .inner, #sec-support .inner {
    text-align: center;
}
#sec-partners h3, 
#sec-sponsors h3, 
#sec-support h3 {
    display: block;
    margin: 30px auto -3px auto;
    font-size: 26px;
    font-weight: 400;
    line-height: 3;
    width: 4em;
    height: 3em;
    text-align: center;
}
#sec-partners ul,
#sec-support ul,
#sec-sponsors ul {
    margin: 50px auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    width: 80%;
}
#sec-partners ul.ul-bnr-large{
    width: 100%;
}
@media screen and (max-width: 768.99px) {
    #sec-partners ul,
    #sec-support ul,
    #sec-sponsors ul {
        width: 100%;
    }
}
#sec-partners li,
#sec-support li,
#sec-sponsors li {
    margin: 0 0 20px 0;
    padding: 0;
    text-align: center;
    width: calc((100% - 20px)/3);
}
@media screen and (max-width: 768.99px) {
    #sec-partners li,
    #sec-support li,
    #sec-sponsors li {
        width: calc((100% - 20px)/2);
    }
    #sec-partners ul.ul-bnr-large li {
        width: 100%;
    }
}
#sec-partners li a,
#sec-support li a,
#sec-sponsors li a {
    display: block;
    border: 0;
    transition: all .5s;
}
#sec-partners li a:hover,
#sec-support li a:hover,
#sec-sponsors li a:hover {
    opacity: .5;
}
#sec-partners li a img,
#sec-support li a img,
#sec-sponsors li a img{
    margin: 0 auto;
    width: auto;
    height: 70px;
}
#sec-partners li a img {
    height: 100px;
}
@media screen and (max-width: 768.99px) {
    #sec-partners li,
    #sec-support li,
    #sec-sponsors li{
        padding: 0;
        height: 70px;
    }
    #sec-partners li a img,
    #sec-support li a img,
    #sec-sponsors li a img{
        margin: 5px auto;
        width: auto;
        height: 60px;
    }
    #sec-partners li a img {
        height: 100px;
    }
}
/* ----- faq ----- */
#sec-faq {
    background: var(--icegray);
    margin: 0 auto;
    padding: 0;
}
#sec-faq h3 {
background: #FFF;
color: var(--blue);
font-size: 3rem;
line-height: 1;
margin: 2em 0 1em 0;
padding: 0.5em 1em;
position: relative;
z-index: 0;
}
#sec-faq h3:first-child {
margin: 0 0 1em 0;
}
#sec-faq h3::before {
content: "";
display: block;
position: absolute;
top: 50%;
left: 0;
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
z-index: -1;
width: 8px;
height: 32px;
}
@media screen and (max-width: 768.99px) {
    #sec-faq h3 {
    font-size: 26px;
    line-height: 1;
}
#sec-faq h3::before {
    width: 8px;
    height: 26px;
}
}
.faq_list {
margin: 0 auto;
padding: 50px 0 0 0;
width: 90%;
max-width: 700px;
}
.faq_list dl{
background: #FFF;
border: 1px solid var(--blue);
border-radius: 10px;
margin: 0 auto 20px auto;
width: 100%;
height: auto;
display: flex;
flex-direction: column;
align-items: stretch;
}
.faq_list dt{
width: 100%;
font-size: 18px;
line-height: 1.6;
padding: .75em 4em 1em 3em;
position: relative;
}
.faq_list dt::before{
color: var(--blue);
content: "Q";
font-weight: 700;
font-size: 28px;
width: 28px;
height: 28px;
position: absolute;
left: 0.5em;
top: 0.2em;
}
.faq_list dt::after{
content: "";
background: url(../img/icons/icon-open.png) no-repeat right center;
background-size: cover;
width: 24px;
height: 24px;
position: absolute;
right: 1em;
top: 50%;
transform: translateY(-50%);
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
}
.faq_list dt.active::after {
background: url(../img/icons/icon-close01.png) no-repeat right center;
background-size: cover;
}
.faq_list dd {
background: #fff;
border-top: 1px solid var(--blue);
border-radius: 0 0 10px 10px;
margin: 0;
padding: 1.5em 2em;
width: 100%;
height: auto;
display: none;
transition: transform .3s;
}
.faq_list dd.active {
display: block;
}
.faq_list dd p {
font-size: 16px;
font-weight: 300;
line-height: 1.8;
padding-top: 1rem;
}
.faq_list dd p:first-child {
padding-top: 0;
}
.faq_list dd p a {
color: #CC0000;
text-decoration: underline;
}
/* ----- contact ----- */
#sec-contact {
    background: rgb(0, 135, 100);
    margin: 0 auto;
    padding: 0;
}
#sec-contact .heading-box {background:transparent;}
#sec-contact h2 {color: #FFF; padding: 1em 0 0 0;}
#sec-contact .inner {
    padding-top: 0;
    text-align: center;
}
#sec-contact .inner p {
    color: #FFF;
    font-weight: 400;
    line-height: 2.2;
    padding: 50px 0;
}
#sec-contact .inner p a{
    color: var(--yellow);
    font-weight: 600;
    text-decoration: underline;
}
#sec-contact .inner p a:hover{
    color: var(--type02);
}
/* ----- footer ----- */
#footer {
    margin: 0 auto;
    padding: 10px;
    width: 100%;
}
#footer .inner {
    padding: 1rem 2rem;
}
#footer p {
    font-size: 10px;
    font-weight: 300;
    line-height: 2;
    text-align: center;
}
