@charset "UTF-8";
/* 呪文 */
* {
  margin: 0;
  padding: 0;
}

/* メディアクエリ準備: @include pc {}, @include sp {}の中に各設定をいれる */
/* フォントサイズ */
@media (min-width: 769px) {
  html {
    font-size: 75%;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 62.5%;
  }
}

/* メニューの高さとjapascript */
.fixed {
  position: fixed;
  top: 0;
  left: 0;
}

@media (min-width: 769px) {
  .yohakufixed {
    margin-top: 3.6rem;
  }
}
/*例↓
body{
    @include pc {

    }
    @include sp {

    }
}
*/
/* 色定義 */
.color1 {
  background-color: #fefefc;
  color: #2f4f4f;
}
.color1 a {
  color: #2f4f4f;
}
.color1 a:hover {
  color: #78cc78;
}
@media (min-width: 769px) {
  .color1 ul a span {
    border-bottom: 4px solid #b0e0e6;
  }
}
.color1 nav {
  /*pc*/
}
@media (min-width: 769px) {
  .color1 nav {
    background-color: #fefefc;
  }
}
.color1 .MV picture {
  background-color: #2f4f4f;
}
.color1 figcaption, .color1 footer, .color1 time {
  color: #708090;
}
.color1 main a span {
  border-bottom: 4px solid #b0e0e6;
}
@media (max-width: 768px) {
  .color1 .box,
.color1 footer {
    border-top: 1px solid #2f4f4f;
  }
}
@media (min-width: 769px) {
  .color1 .box {
    background-color: #e5eeef;
  }
}

.color2 {
  background-color: #687888;
  color: #fefefc;
}
.color2 a {
  color: #fefefc;
}
.color2 a:hover {
  color: #afeeee;
}
@media (min-width: 769px) {
  .color2 ul a span {
    border-bottom: 4px solid #e0ffff;
  }
}
.color2 nav {
  /*pc*/
}
@media (min-width: 769px) {
  .color2 nav {
    background-color: #687888;
  }
}
.color2 figcaption, .color2 footer, .color2 time {
  color: #fefefc;
}
.color2 main a span {
  border-bottom: 4px solid #e0ffff;
}
@media (min-width: 769px) {
  .color2 .box {
    background-color: #687888;
  }
}

body {
  text-align: center;
  font-family: 源ノ角ゴシック;
}

a {
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover {
  transition: color 0.4s ease;
}

.MV a, main a, footer a {
  font-weight: bold;
}

.logo picture {
  height: 7rem;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.logo picture img {
  z-index: 99;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 70%;
}

@media (max-width: 768px) {
  .MVari {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
  }
}

nav {
  z-index: 999;
  /*sp*/
  /*pc*/
}
@media (max-width: 768px) {
  nav .menu-btn {
    position: fixed;
    top: 10px;
    right: 10px;
    display: flex;
    height: 48px;
    width: 48px;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    z-index: 90;
    background-color: rgba(96, 157, 159, 0.7019607843);
  }
  nav .menu-btn span,
nav .menu-btn span:before,
nav .menu-btn span:after {
    content: "";
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background-color: #ffffff;
    position: absolute;
  }
  nav .menu-btn span:before {
    bottom: 8px;
  }
  nav .menu-btn span:after {
    top: 8px;
  }
  nav #menu-btn-check:checked ~ .menu-btn span {
    background-color: rgba(255, 255, 255, 0);
  }
  nav #menu-btn-check:checked ~ .menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
  }
  nav #menu-btn-check:checked ~ .menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
  }
  nav #menu-btn-check {
    display: none;
  }
  nav .menu2 {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%;
    z-index: 80;
    background-color: rgba(119, 136, 153, 0.9019607843);
    transition: left 0.2s ease;
  }
  nav .menu2 ul {
    padding: 70px 10px 0;
  }
  nav .menu2 ul li {
    border-bottom: solid 1px #fefefc;
    list-style: none;
  }
  nav .menu2 ul li a {
    display: block;
    width: 100%;
    font-size: 24px;
    box-sizing: border-box;
    color: #fefefc;
    text-align: center;
    text-decoration: none;
    padding: 9px 15px 10px 0;
    position: relative;
  }
  nav #menu-btn-check:checked ~ .menu2 {
    left: 0;
  }
}
@media (min-width: 769px) {
  nav {
    width: 100%;
    height: 3.6rem;
    box-sizing: border-box;
    /*  li+ li {
      border-left: 1px solid m.$text;
      }    
      */
  }
  nav input, nav label {
    display: none;
  }
  nav ul {
    width: 100%;
    max-width: 640px;
    height: inherit;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
  }
  nav li {
    font-size: 1.6rem;
  }
  nav a {
    display: block;
    line-height: 3.6rem;
    padding: 0 1rem;
    text-decoration: none;
    transition: color 0.2s ease;
  }
  nav a:hover {
    transition: color 0.4s ease;
  }
  nav a span {
    display: inline-block;
    padding: 0;
    line-height: 1.6rem;
  }
}

.yohaku {
  height: 0;
}

.MV picture {
  z-index: 1;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
@media (max-width: 768px) {
  .MV picture img {
    height: auto;
    width: auto;
    max-width: 100%;
    max-height: 100%;
  }
}
@media (min-width: 769px) {
  .MV picture img {
    width: auto;
    height: auto;
    max-width: 100%;
  }
}
.MV picture figcaption {
  line-height: 1.6;
  font-size: 1.4rem;
}

footer ul {
  width: 320px;
  margin: 1.6rem auto;
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
}
footer li {
  margin: 1rem;
}
footer img {
  width: 6rem;
  height: 6rem;
}
footer small {
  display: inline-block;
  line-height: 1.6;
  font-size: 1.4rem;
  margin: 0 auto;
}

main {
  position: -webkit-sticky;
  position: sticky;
}
main ul {
  width: 320px;
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  margin: 3rem auto;
}
main li {
  margin: 1rem;
}
main li a {
  font-size: 1.5rem;
}
main figcaption {
  line-height: 1.6;
  font-size: 1.4rem;
  margin-bottom: 4rem;
}

h1 {
  font-size: 3rem;
  margin: 3rem auto;
  font-weight: normal;
}

h2 {
  font-size: 1.6rem;
  margin: 1.6rem auto;
}

time {
  font-weight: bold;
  font-size: 1.6rem;
}

p {
  text-align: left;
  font-size: 1.4rem;
  line-height: 1.6;
  margin: 1.4rem auto;
}

.youtube {
  width: 100%;
  aspect-ratio: 16/9;
  margin: 2rem auto;
}

.youtube iframe {
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  .box {
    box-sizing: border-box;
    width: 100%;
    padding: 2.5rem 4rem;
  }
}
.box a {
  display: block;
  font-size: 1.5rem;
  line-height: 1.6;
}
@media (min-width: 769px) {
  .box {
    box-sizing: border-box;
    width: 720px;
    padding: 2.5rem 4rem;
    margin: 2rem auto 2rem;
  }
}
.box a {
  display: block;
  font-size: 1.5rem;
  line-height: 1.6;
}
.box img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}

@media (max-width: 768px) {
  .box2 {
    box-sizing: border-box;
    width: 100%;
  }
}
.box2 a {
  display: block;
  font-size: 1.5rem;
  line-height: 1.6;
}
@media (min-width: 769px) {
  .box2 {
    box-sizing: border-box;
    width: 720px;
    margin: 2rem auto 2rem;
  }
}
.box2 a {
  display: block;
  font-size: 1.5rem;
  line-height: 1.6;
}
.box2 img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}
/*# sourceMappingURL=index.css.map */