@charset "UTF-8";
/* ==========================================================================
Foundation
========================================================================== */
/* Reset
- デフォルトスタイルの初期化
  - reset用cssはCDNを利用。ress.cssなら box-sizing: border-box; を含む
----------------------------------------------------------------- */
/* 変数
----------------------------------------------------------------- */
/* Function
----------------------------------------------------------------- */
/* Mixin
----------------------------------------------------------------- */
/* --------------------
2022年時点では以下のように指定
詳細：https://www.notion.so/2022-09a16b806da6468f9270c3a2ed0c39d2

-------------------- */
/* --------------------
ブレークポイントを指定
-------------------- */
/* --------------------
mixin
-------------------- */
/* --------------------
media query 使い方
-------------------- */
/* Base
- プロジェクトにおける基本スタイル
----------------------------------------------------------------- */
html {
  scroll-behavior: smooth;
}

body {
  color: #333;
  line-height: 1.6;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 16px;
  }
}

a {
  color: #d3a110;
  transition: all 0.3s;
}
a:link, a:visited {
  color: #d3a110;
}
a:hover {
  color: #e3b223;
}
a:active, a:focus {
  color: #d3a110;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

/* ==========================================================================
Layout
- header、main、sub、footerなどプロジェクト共通のコンテナブロックを定義
- ページで唯一なので、IDセレクタを使用してもOK
- 大枠のスタイル、構造上のスタイルだけ指定
- max-width、width、position、float、box-sizing…etc.
========================================================================== */
/* Header
----------------------------------------------------------------- */
/* Main
----------------------------------------------------------------- */
/* Sidebar
----------------------------------------------------------------- */
/* Footer
----------------------------------------------------------------- */
/* コンテンツ幅
基本は幅100%だが、大きいモニターだと広すぎなのでmax-widthで制限
----------------------------------------------------------------- */
.l-container {
  width: 100%;
  max-width: 900px;
}

.l-header-container {
  width: 100%;
  max-width: 900px;
}

.l-footer-container {
  width: 100%;
  max-width: 900px;
}

.content-width {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

/* ==========================================================================
Object
========================================================================== */
/* Component 
- 再利用できる最低限の機能を持ったコンポーネント
- componentの参考：https://getbootstrap.jp/docs/5.0/components/accordion/
- 見出し、ボタン、表組み、注釈コメント、強調テキスト etc.
- 再利用しやすいように、なるべく固有のサイズや色を持たせないこと
----------------------------------------------------------------- */
/* Button */
.c-btn {
  padding: 10px 15px;
  box-sizing: border-box;
  text-decoration: none;
  text-align: center;
  display: inline-block;
  border-radius: 6px;
  font-weight: bold;
}
.c-btn:link, .c-btn:visited, .c-btn:hover, .c-btn:active {
  color: #fff;
}

.c-btn--primary {
  background: #04aaa5;
}
.c-btn--primary i::before {
  margin-left: 10px;
}
.c-btn--primary:hover {
  background: #04c0b9;
}

.c-btn.disabled {
  color: #f2f2f2;
  background: #b8b8b8;
  pointer-events: none;
}

/* Media */
.c-section {
  padding: 0 5vw;
}
.c-section:not(:first-child) {
  margin-top: 60px;
}
@media screen and (min-width: 1025px) {
  .c-section:not(:first-child) {
    margin-top: 100px;
  }
}
@media screen and (min-width: 1025px) {
  .c-section {
    padding: 0;
  }
}

.c-section-title {
  font-size: 16px;
  font-weight: 800;
}
@media screen and (min-width: 768px) {
  .c-section-title {
    font-size: 22px;
  }
}
@media screen and (min-width: 1025px) {
  .c-section-title {
    font-size: 30px;
  }
}

.c-section-sub-title {
  font-size: 14px;
  font-weight: 800;
  margin-top: 10px;
}
@media screen and (min-width: 1025px) {
  .c-section-sub-title {
    font-size: 20px;
    margin-top: 20px;
  }
}

.c-section-lead {
  margin-top: 20px;
}

.c-tbl {
  width: 100%;
  border-collapse: collapse;
}

.c-tr {
  background: #fff;
}
.c-tr:nth-child(even) {
  background: #fffaee;
}

.c-th,
.c-td {
  padding: 15px;
}

/*------------------------------------
ページ先頭に戻るボタン
------------------------------------*/
/*リンクを右下に固定*/
.page-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 2;
  /*はじめは非表示*/
  opacity: 0;
  transform: translateX(100px);
}
@media screen and (min-width: 768px) {
  .page-top {
    right: 13px;
    bottom: 13px;
  }
}
.page-top i {
  font-size: 40px;
}

/*　左の動き　*/
#js-page-top.LeftMove {
  animation: LeftAnime 0.5s forwards;
}

@keyframes LeftAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*　右の動き　*/
#js-page-top.RightMove {
  animation: RightAnime 0.5s forwards;
}

@keyframes RightAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(100px);
  }
}
/*------------------------------------
ハンバーガーメニュー
------------------------------------*/
.hamburger {
  display: block;
  position: fixed;
  z-index: 999;
  right: 13px;
  top: 12px;
  width: 42px;
  height: 42px;
  cursor: pointer;
  text-align: center;
  border-radius: 3px;
  background-color: #d3a110;
}

.hamburger span {
  display: block;
  position: absolute;
  width: 26px;
  height: 2px;
  left: 8px;
  background: #fff;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.hamburger span:nth-child(1) {
  top: 10px;
}

.hamburger span:nth-child(2) {
  top: 20px;
}

.hamburger span:nth-child(3) {
  top: 30px;
}

/* ナビ開いてる時のボタン */
.hamburger.active span {
  width: 30px;
  left: 6px;
}

.hamburger.active span:nth-child(1) {
  top: 19px;
  left: 6px;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 19px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
}

nav.globalMenuSp {
  position: fixed;
  z-index: 998;
  top: 0;
  right: 0;
  color: #000;
  background: #d3e6db;
  transform: translateX(100%);
  transition: all 0.6s;
  width: 100%;
  height: 100vh;
}
@media screen and (min-width: 1025px) {
  nav.globalMenuSp {
    width: 400px;
  }
}

nav.globalMenuSp ul {
  margin: 60px auto 0;
  padding: 0;
  width: 100%;
}

nav.globalMenuSp ul li {
  list-style-type: none;
  padding: 0;
  width: 100%;
  border-bottom: 1px solid #fff;
  transition: all 0.3s;
}

nav.globalMenuSp ul li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

nav.globalMenuSp ul li:hover {
  background: #d6f0e1;
}

nav.globalMenuSp ul li a {
  display: block;
  color: #000;
  padding: 1em 2em;
  text-decoration: none;
}

/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
  transform: translateX(0%);
}

/* Project
- プロジェクト固有のスタイルを書いていく
- Block、Elementで構成される（Componentを含むこともある）
- ページを構成する要素はだいたいここに書く
- 繰り返し使うパーツは切り出してComponentに書く
- Componentを少し変更して使いたい場合はここで上書き
----------------------------------------------------------------- */
/* Articles */
.hero-6th {
  height: 60vw;
  max-height: 360px;
  overflow: hidden;
  background-image: url(../img/hero_bg.jpg);
  background-repeat: repeat-x;
  background-size: cover;
  animation: 100s linear -30s infinite infinite-scroll;
  position: relative;
  z-index: 20;
}
@media screen and (min-width: 768px) {
  .hero-6th {
    max-height: 360px;
    background-size: contain;
  }
}
@media screen and (min-width: 1025px) {
  .hero-6th {
    height: 487px;
    max-height: none;
  }
}

@-webkit-keyframes infinite-scroll {
  0% {
    background-position-x: 0;
  }
  100% {
    background-position-x: -300vw;
  }
}
@keyframes infinite-scroll {
  0% {
    background-position-x: 0;
  }
  100% {
    background-position-x: -300vw;
  }
}
.hero-6th_provided {
  position: absolute;
  right: 10px;
  bottom: 10px;
  color: #fff;
  font-size: 8px;
}
@media screen and (min-width: 1025px) {
  .hero-6th_provided {
    font-size: 10px;
  }
}

.hero-6th__circle {
  width: 75%;
  max-width: 450px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 768px) {
  .hero-6th__circle {
    max-width: 490px;
  }
}
@media screen and (min-width: 1025px) {
  .hero-6th__circle {
    max-width: 670px;
  }
}

.hero-6th__title {
  width: 60%;
  max-width: 340px;
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 1025px) {
  .hero-6th__title {
    max-width: 370px;
  }
}
@media screen and (min-width: 1025px) {
  .hero-6th__title {
    max-width: 530px;
  }
}

.hero-6th__btn {
  width: 50%;
  max-width: 240px;
  min-width: 180px;
  position: absolute;
  top: 66%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .hero-6th__btn {
    font-size: 16px;
  }
}
@media screen and (min-width: 1025px) {
  .hero-6th__btn {
    top: 70%;
    font-size: 26px;
    max-width: 340px;
  }
}

.en .hero-6th__btn {
  min-width: 193px;
}

.page-nav {
  background: #d3a110;
  display: none;
}
@media screen and (min-width: 768px) {
  .page-nav {
    display: block;
  }
}

.page-nav__list {
  display: flex;
  justify-content: space-between;
}

.page-nav__item {
  list-style: none;
  width: 25%;
  text-align: center;
}
.page-nav__item i {
  transform: rotate(90deg);
  vertical-align: sub;
}
.page-nav__item i::before {
  margin-right: 15px;
}

.en .page-nav__item {
  width: auto;
  flex-grow: 1;
}

.page-nav__link {
  text-decoration: none;
  display: block;
  padding: 15px;
}
.page-nav__link:link, .page-nav__link:visited, .page-nav__link:hover, .page-nav__link:active {
  color: #fff;
}
.page-nav__link:hover {
  background: #e3b223;
}

.entry__btn {
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .entry__btn {
    font-size: 16px;
  }
}
@media screen and (min-width: 1025px) {
  .entry__btn {
    font-size: 20px;
  }
}

.entry__note {
  margin-top: 20px;
}

.entry__btn-wrap {
  margin-top: 20px;
}

.main {
  padding: 10vw 0;
  background: linear-gradient(-45deg, #e2f0e8, #fff6dd);
}
@media screen and (min-width: 1025px) {
  .main {
    padding: 100px 0;
  }
}

.summary__tbl {
  margin-top: 20px;
}
.summary__tbl .c-th {
  text-align: left;
  width: 130px;
}
@media screen and (min-width: 768px) {
  .summary__tbl .c-th {
    width: 160px;
  }
}
@media screen and (min-width: 1025px) {
  .summary__tbl .c-th {
    width: 220px;
    padding: 15px 25px;
  }
}
.summary__tbl ul {
  margin-left: 25px;
}

.timetable__junbi {
  padding: 20px;
  text-align: center;
  border: 3px dotted #fff;
  margin-top: 20px;
  margin-bottom: 100px;
}

.footer {
  background: url(../img/footer_bg.jpg) no-repeat center top;
  background-size: contain;
  display: flex;
  flex-direction: column;
  padding: 18vw 0 8vw;
}
@media screen and (min-width: 768px) {
  .footer {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 13vw 0 3vw;
  }
}

.footer__spp {
  font-size: 13px;
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .footer__spp {
    margin-bottom: 0;
    margin-right: 20px;
    font-size: 16px;
  }
}

.footer__btn-inq {
  text-align: center;
}

.footer__btn {
  border: 2px solid #d3a110;
  width: 200px;
}
.footer__btn:link, .footer__btn:visited, .footer__btn:hover, .footer__btn:active {
  color: #d3a110;
}
.footer__btn:hover {
  color: #e3b223;
  border: 2px solid #e3b223;
}
.footer__btn i::before {
  margin-right: 10px;
}

/* Utility
- ComponentとProjectで解決できないもの
- ちょっとした調整用のスタイル
----------------------------------------------------------------- */
/* clearfix */
/* margin */
.u-mb10 {
  margin-bottom: 10px;
}

/* display */
@media (max-width: 767px) {
  .u-pc-only {
    display: none;
  }
}
@media (min-width: 768px) {
  .u-sp-only {
    display: none;
  }
}
.u-liststyle-none {
  list-style: none;
}

.font-400 {
  font-weight: 400;
}
.font-400 .c-section-title,
.font-400 .c-section-lead {
  font-weight: 400;
}

.font-500 .c-section-title,
.font-500 .c-section-lead {
  font-weight: 500;
}

.font-700 .c-section-title,
.font-700 .c-section-lead {
  font-weight: 700;
}

.font-800 {
  font-weight: 800;
}
.font-800 .c-section-title,
.font-800 .c-section-lead {
  font-weight: 800;
}

.font-normal .c-section-title,
.font-normal .c-section-lead {
  font-weight: normal;
}

.font-bold .c-section-title,
.font-bold .c-section-lead {
  font-weight: bold;
}

.program__title {
  font-size: 14px;
  font-weight: 800;
}
@media screen and (min-width: 768px) {
  .program__title {
    font-size: 18px;
  }
}
@media screen and (min-width: 1025px) {
  .program__title {
    font-size: 22px;
  }
}

.program__title-date {
  font-size: 14px;
  font-weight: 500;
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .program__title-date {
    font-size: 18px;
  }
}
@media screen and (min-width: 1025px) {
  .program__title-date {
    font-size: 22px;
  }
}

.program__title {
  background-color: #333;
  color: #fff;
  padding: 8px 20px 10px 15px;
  border-radius: 0 100px 100px 0;
  display: inline-block;
}

.program-tbl {
  width: 100%;
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .program-tbl {
    margin-top: 20px;
  }
}

.program-tbl__table {
  table-layout: fixed;
  border-collapse: collapse;
}
@media screen and (min-width: 768px) {
  .program-tbl__table {
    width: 100%;
  }
}
.program-tbl__table th,
.program-tbl__table td {
  padding: 10px 15px;
  border: 1px solid #333;
  line-height: 1.4;
}
.program-tbl__table td {
  font-weight: 400;
}
.program-tbl__table .font-800 {
  font-weight: 800;
}

.program__text {
  margin-top: 10px;
}

.program__section {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .program__section {
    margin-top: 40px;
  }
}

.program-tbl__time {
  width: 70px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .program-tbl__time {
    width: 120px;
  }
}
@media screen and (min-width: 768px) {
  .program-tbl__time br {
    display: none;
  }
}

.program-tbl__table .program-tbl__time {
  padding: 10px 5px;
}

.program-tbl__bg-main {
  background-color: #98ccf9;
  font-weight: bold;
}

.program-tbl__bg-gray {
  background-color: #ccc;
}

.program-tbl__bg-sub {
  background-color: #cae7ff;
}

.program-tbl__bg-sub2 {
  background-color: #b1f7ff;
}

.bold {
  font-weight: bold;
}

.text-l {
  text-align: left;
}

.text-r {
  text-align: right;
}

.mt-5 {
  margin-top: 5px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-40 {
  margin-top: 40px;
}

.program__btn-pdf {
  color: #d3a110;
  border: 2px solid #d3a110;
  background: #fff;
  border-radius: 4px;
  padding: 5px 10px;
  display: inline-block;
  font-size: 14px;
  text-decoration: none;
  margin-top: 5px;
}

.program-tbl__bg-gray {
  background-color: #d6d6d6;
}

.program-tbl__bg-brue {
  background-color: #98ccf9;
}

.program-tbl__bg-white {
  background-color: #fff;
}

.program-tbl__bg-brue-light {
  background-color: #bbe0ff;
}

.program-tbl__bg-yellow {
  background-color: #f6f99a;
}

.program-tbl__bg-yellow-light {
  background-color: #fffcd3;
}

.program-tbl__bg-orange {
  background-color: #f0d29f;
}

.program-tbl__bg-green {
  background-color: #aff09f;
}

.program-tbl__bg-green-light {
  background-color: #d2f9c9;
}

.program-tbl__session-ttl--blue {
  color: #488ac4;
  font-weight: 800;
}

.program-tbl__session-ttl--yellow {
  color: #b29b0f;
  font-weight: 800;
}

.program-tbl__session-ttl--green {
  color: #41a029;
  font-weight: 800;
}

.program-tbl__session-ttl--orange {
  color: #b08223;
  font-weight: 800;
}

.program-tbl__speaker--green {
  color: #41a029;
}

.program-tbl__speaker--yellow {
  color: #b29b0f;
}

.program-tbl__speaker--blue {
  color: #488ac4;
}

.fa-youtube {
  color: red;
  font-size: 15px;
}

.program-tbl__role {
  font-size: 13px;
  color: #666;
  line-height: 1.3;
  margin-top: 5px;
}

.program-tbl__session-content {
  margin-top: 5px;
}

/* display */
@media (max-width: 767px) {
  .u-pc-only {
    display: none;
  }
}
@media (min-width: 768px) {
  .u-sp-only {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */