@charset "UTF-8";

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

h1 {
  margin: 0;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  color: #000000;
}

.wrapper {
  height: 100%;
  width: 100%;
}

/* フォント */

body {
  font-family: 'Noto Sans JP', sans-serif;
}

/* メインビジュアル */

.main {
  height: 100vh;
  width: 76%;
}

.bg_main {
  background-image: url(../images/bg_main.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 100vh;
  width: 100%;
  text-align: center;
  position: relative;
}

.logo_main {
  width: 64%;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* サイドメニュー */

.side {
  background-image: url(../images/bg_side.png);
  background-repeat: no-repeat;
  background-size: cover;
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 24%;
  z-index: 1;
  padding: 40px 40px;
  text-align: center;
}

.logo_side {
  margin-bottom: 48px;
}

.side li {
  padding-bottom: 16px;
  text-align: left;
}

.side li a {
  color: #003489;
  font-weight: bold;
  font-size: 18px;
}

.side li a:hover {
  color: #000000;
}

/* header {
  text-align: center;
} */

/* セクション共通 */

.inner {
  max-width: 90%;
  margin: 120px auto;
}

.inner_sec04 {
  max-width: 90%;
  margin: 0 auto;
}

.inner_footer {
  max-width: 90%;
  margin: 0 auto;
}

.line {
  margin-bottom: 32px;
}

.left_sec {
  line-height: 2;
}

.section_h2 {
  margin-bottom: 20px;
}

/* ここからセクション */

/* セクション01 */

.section_flex {
  display: flex;
}

.left_sec {
  width: 100%;
}

.blue_sec {
  color: #013b86;
  padding-top: 32px;
  font-weight: bold;
  font-size: 48px;
}

/* ガイド */

.blue_sec02 {
  color: #013b86;
  font-weight: bold;
  font-size: 32px;
}

/* インストラクター */

.right_sec {
  width: 100%;
  text-align: right;
  line-height: 2;
}

/* イベント */

.section4 {
  background-image: url(../images/bg_sec04.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  position: relative;
}

.sec04_margin {
  padding-bottom: 200px;
}

/* フッター */

footer {
  background-color: #0f80c7;
  color: #fff;
  padding: 120px 0;
  position: relative;
  z-index: 50;
}

.footer_flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 80px;
  z-index: 103;
}

.footer_flex02 {
  display: flex;
  align-items: flex-start;
  z-index: 102;
}

.txt_footer {
  width: 50%;
  text-align: left;
  line-height: 2;
  z-index: 101;
}

.footer_title02 {
  z-index: 104;
}

.footer_moyou {
  position: absolute;
  bottom: 80px;
  left: -200px;
  z-index: -59;
}

.footer_logo {
  display: flex;
  justify-content: flex-end;
}

/* タイトル非表示 */

.SP_section_h2 {
  display: none;
}

/* メニュー非表示 */
#menu-btn-check {
  display: none;
}

.menu-content {
  display: none;
}

/* .hamburger-menu {
  display: none;
} */

/* ここからスマホ */

@media screen and (max-width: 768px) {
  .side {
    display: none;
  }
  /* スマホメニュー */

  .menu-btn {
    position: fixed;
    top: 10px;
    right: 10px;
    display: flex;
    height: 60px;
    width: 60px;
    justify-content: center;
    align-items: center;
    z-index: 90;
    background-color: #013b86;
  }
  .menu-btn span,
  .menu-btn span:before,
  .menu-btn span:after {
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background-color: #ffffff;
    position: absolute;
  }
  .menu-btn span:before {
    bottom: 8px;
  }
  .menu-btn span:after {
    top: 8px;
  }

  #menu-btn-check:checked ~ .menu-btn span {
    background-color: rgba(
      255,
      255,
      255,
      0
    ); /*メニューオープン時は真ん中の線を透明にする*/
  }
  #menu-btn-check:checked ~ .menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
  }
  #menu-btn-check:checked ~ .menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
  }

  #menu-btn-check {
    display: none;
  }

  /* メニュー開いたレイアウト */

  .menu-content ul li a {
    transform: skewX(0deg);
  }

  .menu-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 80;
    background-color: #013b86;
  }
  .menu-content ul {
    padding: 70px 10px 0;
  }
  .menu-content ul li {
    list-style: none;
  }
  .menu-content ul li a {
    display: block;
    width: 100%;
    font-size: 24px;
    box-sizing: border-box;
    color: #ffffff;
    text-decoration: none;
    padding: 40px 0px 0px 0;
    position: relative;
    text-align: center;
  }

  .menu-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%; /*leftの値を変更してメニューを画面外へ*/
    z-index: 80;
    background-color: #013b86;
    transition: all 0.5s; /*アニメーション設定*/
  }

  #menu-btn-check:checked ~ .menu-content {
    left: 0; /*メニューを画面内へ*/
  }

  .menu-content {
    display: block;
  }

  /* スマホメニューここまで */

  /* ここにCSSコードを書く。 */
  .main {
    width: 100%;
  }
  .section_flex {
    display: block;
  }
  .blue_sec {
    font-size: 38px;
  }

  /* タイトル表示 非表示*/

  .SP_section_h2 {
    display: block;
    margin-bottom: 20px;
  }
  .section_h2 {
    display: none;
  }

  /* セクション02 */

  .blue_sec02 {
    font-size: 24px;
  }

  .section4 {
    background-image: url(../images/SP_bg_sec04.png);
    background-size: auto;
    background-position: bottom;
  }

  .footer_flex {
    display: block;
  }

  .footer_flex02 {
    flex-direction: column-reverse;
  }
  .txt_footer {
    width: 100%;
    margin-top: 20px;
  }
}
