@charset 'UTF-8';

/*
COLORS
================================================ */
:root {
    --light-blue: #4db1ec;
    --blue: #1665cc;
    --purple: #b473bf;
    --pink: #ffb2c1;
    --orange: #ff9f67;
    --yellow: #ffd673;
    --light-green: #a2e29b;
    --light-yellow: #f4f741;
    --green: #00a2af;
    --grey: #333;
    --white: #fff;
}

/*
GENERAL STYLING
================================================ */
html {
    font-size: 100%;
    /* スムーズスクロール */
    scroll-behavior: smooth;
}
body {
	color: var(--grey);
	font-family: 'M PLUS Rounded 1c', sans-serif;
}



/*
COMMON
================================================ */
p {
    line-height: 1.7;
    /* font-size: 21px; */
}

img {
    max-width: 100%;
}
h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
}
h1,
h2 {
    text-align: center;
}
header,
h1,
h2,
.hero-date {
    font-family: 'M PLUS Rounded 1c', sans-serif;
}

/* Layout */
.wrapper {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
}

/*
HEADER
================================================ */
header {
    background: var(--grey);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    z-index: 1;
}
header .wrapper {
    display: flex;
    justify-content: space-between;
}
header a {
    color: var(--white);
    font-size: 1.5rem;
}
.btn-menu {
    position: absolute;
    top: 12px;
    right: 12px;
    border: 1px solid rgba(255,255,255,.5);
    color: var(--white);
    padding: .5rem 1rem;
}
.main-nav {
    background: var(--grey);
    width: 0;
    position: absolute;
    z-index: 2;
    top: 50px;
    right: 0;
    overflow: hidden;
    transition: .5s;
}
.main-nav li {
    text-align: center;
    margin: 2rem 0;
}
.main-nav a {
    display: block;
}
.main-nav.open-menu {
    width: 100%;
}

/*
Space
================================================ */
#space div{
 height: 5vh;
}


/*
HERO
================================================ */

#hero {
    position: relative;
    margin-bottom: .5rem;
}
.header-text {
    position: absolute;
    top: 0%;
    display: flex;
    flex-direction: column;
    justify-content:center;
    align-items: center;
    z-index: 2;
    text-align: center;
    color: rgb(177, 245, 17);
}

.header-text img {
    width: 80%;
}

.header-title {
    font-size: 2rem;
}
.header-name {
    font-size: 4rem;
    margin-bottom: 1rem;
}
.header-link {
    font-size: 1.25rem;
    color: var(--white);
}
.header-pattern {
    position: absolute;
    z-index: 1;
    background-size: auto auto;
    background-image: repeating-linear-gradient(0deg, transparent, transparent 2px, var(--bg) 2px, var(--bg) 4px );
}
#hero video {
    object-fit: cover;
    object-position: center top;
    opacity: var(--video-opacity);
}
.header-text,
.header-pattern,
#hero video {
    width: 100vw;
    height: 90vh;
}

/*
ABOUT
================================================ */
#about {
    padding: 2rem 1rem;
}
#about h2 {
  background: linear-gradient(var(--yellow), var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
}
#about p {
    margin-bottom: 2rem;
}



.pc {
    display: none
}

.desktop {
    display: none
}

.smart {
    display:block;
}



/* NEWS
================================================ */
#news {
    background-image: linear-gradient(var(--light-green), var(--green));
    padding: 4rem 0;
    -webkit-clip-path: polygon(0 0, 100% 5%, 100% 95%, 0 100%);
    clip-path: polygon(0 0, 100% 5%, 100% 95%, 0 100%);
}
#news h2 {
    color: var(--white);
}
.news-table {
    color: var(--white);
    width: 100%;
}
.news-table tr {
    border-bottom: 1px solid rgba(255,255,255,.5);
}
.news-table td {
    display: block;
    line-height: 1.5;
}
.news-date {
    font-size: .875rem;
    padding-top: 1rem;
}
.news-content {
    padding-bottom: 1rem;
}

#news img {
    margin-bottom: 2rem;
}

/*
SPEAKERS（コーチ）
================================================ */
#speakers {
    padding: 2rem 1rem;
}
.speakers-list {
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-start;
    margin-bottom: 2rem;
}
.speakers-text {
    margin-left: 1rem;
}
#speakers h2 {
  background: linear-gradient(var(--light-blue), var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
}
#speakers h3 {
    font-size: 1.2rem;
    margin-bottom: .5rem;
}
#speakers img {
    border-radius: 50%;
    width: 20%;
}

/*
Photo　（風景）
================================================ */
#photo {
    background-image: linear-gradient(var(--light-yellow), var(--yellow));
    padding: 4rem 0;
    -webkit-clip-path: polygon(0 0, 100% 5%, 100% 95%, 0 100%);
    clip-path: polygon(0 0, 100% 5%, 100% 95%, 0 100%);
}
#photo h2 {
    color: var(--white);
}
.news-table {
    color: var(--white);
    width: 100%;
}
.news-table tr {
    border-bottom: 1px solid rgba(255,255,255,.5);
}
.news-table td {
    display: block;
    line-height: 1.5;
}
.news-date {
    font-size: .875rem;
    padding-top: 1rem;
}
.news-content {
    padding-bottom: 1rem;
}

/*
Location (各会場）
================================================ */
.card {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  #location {
    padding: 3rem 1rem;
}

#location h2 {
  background: linear-gradient(var(--light-blue), var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
}
#location h3 {
    font-size: 1.5rem;
    margin-bottom: .5rem;
}


/*--------------------------------------
  カード型_01
--------------------------------------*/
.l-wrapper_01 {
    margin: 1rem auto;
    width: 90%;
  }
  
  .l-wrapper_01:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 14px rgba(50,50,93,.1), 0 3px 6px rgba(0,0,0,.08);
    transition: all .5s;
  }
  
  .card_01 {
    background-color: #fff;
    box-shadow: 0 0 8px rgba(0, 0, 0, .16);
    color: #212121;
    text-decoration: none;
  }
  
  .card__header_01 {
    display: flex;
    flex-wrap: wrap;
  }
  
  .card__title_01 {
    padding: 1rem 1.5rem 0;
    font-size: 1.3rem;
    order: 1;
    margin-bottom: 0.6rem;
    font-weight: bold;
    text-decoration: none;
  }

  .card__title_02 {
    padding: 1rem 1.5rem 0;
    font-size: 1.3rem;
    order: 1;
    margin-bottom: 0.6rem;
    font-weight: bold;
    text-decoration: none;
  }

  .card__thumbnail_01 {
    margin: 0;
    order: 0;
  }
  
  .card__image_01 {
    width: 100%;
  }
  
  .card__body_01 {
    padding: 0 1.5rem;
  }
  
  .card__text_01 {
    font-size: .8rem;
    text-align:center;
    text-decoration: none;
      padding-bottom: 0;
  }
  
  .card__text2_01 {
    font-size: .8rem;
    margin-top: 0;
    margin-bottom: 2rem;
  }
  
  .card__text_01 + .card__text_01 {
    margin-top: .5rem;
  }
  
  .card__footer_01 {
    padding: 1rem;
    border-top: 1px solid #ddd;
  }
  
  .button_01 {
    display: inline-block;
    text-decoration: none;
    transition: background-color .3s ease-in-out;
    text-align: center;
  }
  
  .button_01 a {
    text-decoration: none;
  }
  
  .button_01.-compact {
    padding: .5rem 1rem;
    border-radius: .25rem;
    background-color: #4f96f6;
    color: #fff;
    font-weight: bold;
      text-decoration: none;
  }
  
  .button_01.-compact:hover,
  .button_01.-compact:focus {
    background-color: #6bb6ff;
  }


/*
TICKET(申し込みフォーム）
================================================ */
#ticket {
    background-image: linear-gradient(var(--pink), var(--purple));
    padding: 4rem 1rem 2rem;
    -webkit-clip-path: polygon(0 0, 100% 5%, 100% 100%, 0 100%);
    clip-path: polygon(0 0, 100% 5%, 100% 100%, 0 100%);
}
#ticket h2 {
    color: var(--white);
}
.ticket-form {
    max-width: 480px;
    margin: 0 auto 5rem;
    /* margin-bottom: 10px; */
}
.ticket-form label {
    color: var(--white);
    display: block;
    margin-bottom: .5rem;
}
.ticket-field {
    background: rgba(255,255,255,.6);
    padding: 1rem;
    width: 100%;
    margin-bottom: 1.5rem;
}
.ticket-btn {
    background: var(--grey);
    color: var(--white);
    display: block;
    width: 100%;
    padding: 1rem;
    margin-top: 1rem;
}

.tel {
    font-size: 25px;
    text-align: center;
    color: rgba(255,255,255,0.5);
    
}

textarea {
    height: 8rem;
}

/*
FOOTER
================================================ */
.footer {
    border-top: 1px solid rgba(255,255,255,0.5);
    padding-top: 2rem;
    text-align: center;
    font-size: .875rem;
    color: var(--white);
}
.footer a {
    text-decoration: underline;
}

span {
    display: inline-block
}

/*
DESKTOP SIZE
================================================ */
@media (min-width: 600px) {
/* Common */
    h2 {
        font-size: 5rem;
    }
    a:hover,
    .ticket-btn:hover {
        transition: .3s;
    }
    a:hover {
        color: var(--blue);
    }
    .ticket-btn:hover {
        background: var(--blue);
    }

    p {
        font-size: 22px;
    }

/* Header */
    .btn-menu {
        display: none;
    }
    .main-nav {
        width: 100%;
        position: static;
        display: flex;
    }
    .main-nav li {
        margin: 0 0 0 1.5rem;
    }
/* Hero */
    #hero h1 {
        font-size: 6.875rem;
    }
    .hero-date {
        font-size: 3rem;
    }

    .header-text img {
        width: 50%;
    }

/* News */
    .news-table td {
        display: table-cell;
    }
    .news-date {
        padding: 1.125rem 0 1rem 1rem;
    }
    .news-content {
        padding: 1rem 1rem 1rem 0;
    }
/* Speakers */
    #speakers h2 {
        margin-bottom: 4rem;
    }

    #speakers h3 {
        font-size: 1.8rem;
        margin-bottom: .5rem;
    }

    .speakers-list {
        margin-bottom: 3rem;
    }
    .speakers-text {
        margin-left: 2rem;
    }
    .l-wrapper_01 {
        margin: 1rem 0.01rem;
        width: 32%;
    }

    .sp {
        display: none
    }
    
    .pc {
        display: block
    }

    .smart {
        display: none
    }

    .desktop {
        display: block;
    }

    #about h2 {
        margin-top: 3rem;
    }

    #about img {
        margin-bottom: 3rem;
    }

    #news h2 {
        margin-top: 3rem;
    }

    #news table {
        margin-bottom: 3rem;
    }

    #speakers h2 {
        margin-top: 3rem;
    }

    #speakers .coach-bottom {
        margin-bottom: 3rem
    }

    #photo h2 {
        margin-top: 3rem;
    }

    #photo img {
        margin-bottom: 3rem;
    }

    #location h2 {
        margin-top: 3rem;
    }

    #location .card {
        margin-bottom: 3rem;
    }

    #ticket h2 {
        margin-top: 3rem;
    }

    label {
        font-size: 22px;
    }

    .ticket-field {
        font-size: 22px;
    }

    option {
        font-size: 22px;
    }

    .ticket-btn {
        font-size: 22px;
    }

    .birth-field {
        font-size: 22px;
    }

    .birth-field2 {
        font-size: 22px;
    }

    .card {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
      }
      
      .l-wrapper_01 {
        width: calc((100% - 30px * 2) / 3);
      }

    .card__text2_01 {
        font-family: メイリオ;
    }

    .card__text_01 {
        font-family: メイリオ;
    }



}


