@charset "UTF-8";

html {
    font-size: 100%;
    scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans JP', sans-serif;

    /* Playfair Display 明朝英文字
    font-family: 'Playfair Display', serif;

    Shippori Mincho　明朝体
    font-family: 'Shippori Mincho', serif;

    Oswald　ゴシック英文字
    font-family: 'Oswald', sans-serif;
    */

    color: #121212;
    background-image: url(../images/bg5.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    background-attachment: fixed;

}

/* サイト全体を枠で囲む 枠の太さ = 10px 枠の色 = #C79E62*/

html:before,
html:after,
body:before,
body:after {
  content: "";
  background: #C79E62;
  position: fixed;
  display: block;
  z-index: 1;
}

/* 上 */
html:before {
  height: 10px; 
  width: 100vw;
  left: 0;
  top: 0;
}

/* 右 */
html:after {
  width: 10px;
  height: 100vh;
  right: 0;
  top: 0;
}

/* 下 
body:before {
  height: 10px;
  width: 100vw;
  bottom: 0;
  left: 0;
}*/

/* 左 */
body:after {
  width: 10px;
  height: 100vh;
  top: 0;
  left: 0;
}

img {
    max-width: 100%;
    vertical-align: bottom;
}

li {
    list-style: none;
}

a {
    color: #121212;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    opacity: 0.7;
}

/* Inview */
.fadein {
  opacity: 0;
  transform: translateY(80px);
  transition: all 1s;
}
.fadein.inview {
  opacity: 1;
  transform: translateY(0);
}

*{
  margin: 0;
}

.confetti canvas {
  height: 100%;
  width: 100%;
  top: 0px;
  position: absolute;
  outline: 0px solid red;
  z-index: 100;
}



/* パソコンでは"pc-br"のclassがついた改行が効く */
.pc-br { display: block !important; }
.sp-br { display: none !important; }


/*-------------------------------------------
Header
-------------------------------------------*/
#header {
    outline: 0px solid red;
}

#header .logo {
    width: 100%;
    max-width: 60px;
    position: fixed;
    top: 105px;
    right: 20px;
    z-index: 150;
}

#header .logo a {
    display: block;
}

#header .logo img {
    width: 100%;
}

#header .logo-x {
    width: 100%;
    max-width: 30px;
    position: fixed;
    top: 230px;
    right: 33px;
    z-index: 150;
}

#header .logo-x a {
    display: block;
}

#header .logo-x img {
    width: 100%;
}



#header .hamburger {
  width: 60px;
  height: 60px;
  background-color: #C79E62;
  border-radius: 50%;
  cursor: pointer;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 150;
}
#header .hamburger span {
  width: 30px;
  height: 2px;
  background-color: #FFF;
  display: inline-block;
  position: absolute;
  left: 15px;
  transition: all 0.4s;
}
#header .hamburger span:nth-of-type(1) {
  top: 25px; 
}
#header .hamburger span:nth-of-type(2) {
  top: 35px;
}
#header .hamburger.active span:nth-of-type(1) {
  top: 30px;
  transform: rotate(-30deg);
}
#header .hamburger.active span:nth-of-type(2) {
  top: 30px;
  transform: rotate(30deg);
}
#header .navi {
  width: 100%;
  height: 100vh;
  /*background-color: #f2f9fd;*/
  background-image: url(../images/bg5.png);
  padding: 100px 20px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 160;
  transition: all 0.6s;
  opacity: 0;
  visibility: hidden;
}
#header .navi.active {
  opacity: 1;
  visibility: visible;
}
#header .navi .menu-area {
  width: 100%;
  height: 100vh;
  overflow: auto;
}
#header .navi .menu-area .menu {
  max-width: 750px;
  display: flex;
  flex-wrap: wrap;
  background-color: #fff;
  border-radius: 20px 20px 0 0;
  padding: 80px 70px 20px;
  margin: 0 auto;
  z-index: 150;
}
#header .navi .menu-area .menu li {
  width: 46%;

  border-bottom: solid 2px #B38340;;
  margin: 0 2%;
  position: relative;
}
#header .navi .menu-area .menu li::after {
  content: "";
  width: 10px;
  height: 10px;
  border-top: solid 3px #B38340;;
  border-right: solid 3px #B38340;;
  transform: rotate(45deg);
  position: absolute;
  top: 30px;
  right: 30px;
}
#header .navi .menu-area .menu li:nth-child(-n+2) {
  border-bottom: solid 2px #B38340;;
}
#header .navi .menu-area .menu li a {
  display: block;
  padding: 20px 0;
  color: #B38340;
  font-size: 17px;
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
}
#header .navi .menu-area .btn {
  max-width: 750px;
  display: flex;
  align-items: center;
  background-color: #fff;
  border-radius: 0 0 20px 20px;
  padding: 20px 80px 80px;
  margin: 0 auto;
}
#header .navi .menu-area .btn li {
  width: 46%;
  background-color: #121212;
  border-radius: 5px;
  margin: 0 2%;
}
#header .navi .menu-area .btn li a {
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  padding: 20px 0;
}
#header .navi .menu-area .btn li .arrow {
  width: 20px;
  margin-right: 10px;
}

/*-------------------------------------------
main
-------------------------------------------*/

.Firstview {
  outline: 0px solid red;
  text-align: center;
}

.Firstview-logo {
    width: 100%;
    max-width: 850px;
    outline: 0px solid green;
    z-index: 50;
    text-align: center;
    margin: 80px auto 0 auto;

}

.Firstview-logo img{
  width: 100%;
}

.Firstview .startday {
  color: #C79E62;
  font-size: 65px;
  letter-spacing: 0.03em;
  font-family: "Markazi Text", serif;
  font-weight: 400;
}

.Firstview .catchcopy {
  font-size: 20px;
  font-family: "Noto Serif JP", serif;
  font-weight: bold;
  letter-spacing: 0.07em;
  line-height: 30px;
}


/*-------------------------------------------
Activity
-------------------------------------------*/
#activity {
  padding: 80px 0;
  outline: 0px solid green;
}
#activity .slider .slider-item {
  max-width: 400px;
  margin: 0 40px;
}

/*-------------------------------------------
Cate
-------------------------------------------*/

.Cate {
  outline: 0px solid green;
  max-width: 1000px;
  margin: 0 auto 70px auto;
}


.Cate .Cate-title {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-size: 38px;
  letter-spacing: 0.1em;
  overflow: hidden;
  align-items: center;
  background: #C79E62;
  color: #fff;
  height: 60px;
  line-height: 40px;
  display: flex;
  max-width: 600px;
  margin: 0 auto;
}
.Cate .Cate-title:before,
.Cate .Cate-title:after {
  content: "";
  flex: 1;
  background: #fff;
  padding: 1px 0;
  height: 0;
  transform: rotate(55deg);
}

.Cate .Cate-caption {
  font-size: 18px;
  font-family: "Noto Serif JP", serif;
  font-weight: bold;
  letter-spacing: 0.07em;
  line-height: 30px;
  text-align: center;
  margin: 20px auto 50px auto;
  outline: 0px solid red;
}

.special-block1 {
  display: flex;
  margin: 20px 0 110px 0;
  outline: 0px solid blue;
}


.special-block2 {
  display: flex;
  margin: 20px 0 110px 0;
  outline: 0px solid red;
}

.special-block-image {
  width: 50%;
}


.special-block-text {
  width: 50%;
  padding: 30px;
  margin-bottom: 10px;
}

.special-block-text .title .number {
  color: #C79E62;
  font-family: "Train One", system-ui;
  font-weight: bold;
  font-style: normal;
  font-size: 50px;
  display: block;

}

.special-block-text .title .title-text1 {
  color: #B38340;
  font-size: 36px;
  font-family: "Noto Sans JP", sans-serif;

}

.special-block-text .title .title-text2 {
  color: #B38340;
  font-size: 45px;
  font-family: "Noto Sans JP", sans-serif;

}

.special-block-text .description {
  font-size: 18px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;

}



.special-block-text_movie {
  width: 100%;
  padding: 30px;
  margin: 0 auto;
  text-align: center;
  outline: 0px solid red;
}


.special-block-text_movie .title .number_movie {
  color: #C79E62;
  font-family: "Train One", system-ui;
  font-weight: bold;
  font-style: normal;
  font-size: 50px;
}

.special-block-text_movie .title .title-text1 {
  color: #B38340;
  font-size: 36px;
  font-family: "Noto Sans JP", sans-serif;

}

.special-block-text_movie .title .title-text2 {
  color: #B38340;
  font-size: 40px;
  font-family: "Noto Sans JP", sans-serif;

}




.video-wrapper {
  max-width: 1000px;
  height: auto;
  outline: 0px solid red;
  margin: 0 auto;
  position: relative;
}

.Cate .title-movie {
  margin-bottom: 30px;
}


.video {
  width: 100%;
  /*border: 15px solid #B38340;*/
  border: 15px solid;
  border-image: linear-gradient(90deg, #B38340 0%, #FFF1C7 50%, #B38340 100%)2;
  margin: 0 auto;
}


/*
.movie .play-btn.playActive {
  display:none;
}*/



/*----------------------------------------------
footer
------------------------------------------------*/
.copyright {
  font-size: 10px;
  text-align: center;
  margin:  0 auto;
}

.footer-border {
  outline: 10px solid #C79E62;;
}

/*----------------------------------------------
TOPへ戻る
------------------------------------------------*/
#page_top{
  width: 60px;
  height: 60px;
  position: fixed;
  right: 20px;
  bottom: 50px;
  background: #C79E62;
  border-radius: 50%;
  outline: 0px solid red;
}
#page_top a{
  position: relative;
  display: block;
  width: 60px;
  height: 60px;
  text-decoration: none;
}

.top-arrow img{
  width: 28px;
  height: 28px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

/*
#page_top a::before{
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: 'url(../images/);';
  font-size: 25px;
  color: #fff;
  position: absolute;
  width: 25px;
  height: 25px;
  top: -5px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}*/




/*----------------------------------------------
タブレット (1024px以下) 
------------------------------------------------*/
@media screen and (max-width: 1024px) {

    /* サイト全体を枠で囲む 枠の太さ = 10px 枠の色 = #C79E62*/
  html:before,
  html:after,
  body:before,
  body:after {
    content: "";
    background: #C79E62;
    position: fixed;
    display: block;
    z-index: 1;
  }

  /* 上 */
  html:before {
    height: 8px; 
    width: 100vw;
    left: 0;
    top: 0;
  }

  /* 右 */
  html:after {
    width: 0px;
    height: 100vh;
    right: 0;
    top: 0;
  }

  /* 下 */
  body:before {
    height: 8px;
    width: 100vw;
    bottom: 0;
    left: 0;
  }

  /* 左 */
  body:after {
    width: 0px;
    height: 100vh;
    top: 0;
    left: 0;
  }


  /*-------------------------------------------
  Cate
  -------------------------------------------*/

  .Cate {
    outline: 0px solid green;
    max-width: 90%;
  }


  .video-wrapper {
    max-width: 85%;
    height: auto;
    outline: 0px solid red;
    margin: 0 auto;
  }


}



/*----------------------------------------------
スマートフォン
------------------------------------------------*/
@media screen and (max-width: 767px) {

  
html {
    width: 100%;
    outline: 3px solid green;
}


body {
    background-image: url(../images/bg5_sp.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;

}

/* スマートフォンでは"sp-br"が改行される */
  .pc-br {display: none !important;}
  .sp-br {display: block !important; }

/* サイト全体を枠で囲む 枠の太さ = 10px 枠の色 = #C79E62*/

html:before,
html:after,
body:before,
body:after {
  content: "";
  background: #C79E62;
  position: fixed;
  display: block;
  z-index: 1;
}

/* 上 */
html:before {
  height: 0px; 
  width: 100vw;
  left: 0;
  top: 0;
}

/* 右 */
html:after {
  width: 0px;
  height: 100vh;
  right: 0;
  top: 0;
}

/* 下 */
body:before {
  height: 0px;
  width: 100vw;
  bottom: 0;
  left: 0;
}

/* 左 */
body:after {
  width: 0px;
  height: 100vh;
  top: 0;
  left: 0;
}



  /*-------------------------------------------
  Header
  -------------------------------------------*/
  
  #header .logo {
    display: none;
    /*max-width: 65px;
    top: 103px;
    outline: 0px solid red;*/
  }


  #header .logo-x {
      display: none;
  }

   


  #header .navi .menu-area .menu {
    flex-direction: column;
    padding: 20px;
  }
  #header .navi .menu-area .menu li {
    width: 100%;
    margin: 0;
  }
  #header .navi .menu-area .menu li::after {
    top: 30px;
  }
  #header .navi .menu-area .menu li:nth-child(-n+2) {
    border-top: none;
  }
  #header .navi .menu-area .menu li a {
    padding: 20px 0;
  }
  #header .navi .menu-area .btn {
    flex-direction: column;
    padding: 20px;
  }
  #header .navi .menu-area .btn li {
    width: 100%;
    margin: 0 0 20px;
  }

/*-------------------------------------------
main
-------------------------------------------*/

.Firstview-logo {
    width: 80%;
    max-width: 100%;
    outline: 0px solid blue;
    z-index: 50;
    text-align: center;
    margin: 50px auto 0 auto;

}


.Firstview .startday {
  color: #C79E62;
  font-size: 45px;
  letter-spacing: 0.07em;
  margin-top: 10px;
}

.Firstview .catchcopy {
  font-size: 14px;
  font-family: "Noto Serif JP", serif;
  line-height: 30px;
  /*padding: 10px 20px;*/
  text-align: center;
  letter-spacing: 0.07em;
  margin: 10px auto 0 auto;
  outline: 0px solid red;
  width: 90%;
}





  /*-------------------------------------------
  Cate
  -------------------------------------------*/

  .Cate {
    outline: 0px solid green;
    width: 98%;
    margin: 0 auto 100px auto;
  }
    
  .Cate .Cate-title {
    font-weight: 500;
    font-size: 25px;
    background: #C79E62;
    color: #fff;
    height: 40px;
    display: flex;
    max-width: 98%;
  }

  .Cate .Cate-caption {
    font-size: 15px;
    font-weight: bold;
    letter-spacing: 0.07em;
    line-height: 30px;
    text-align: left;
    padding: 0 20px;
    margin: 20px auto 50px auto;
    outline: 0px solid red;
  }


  .special-block1 {
    flex-direction: column-reverse;
    margin: 20px 0 80px 0;
    outline: 0px solid red;
  }


  .special-block2 {
    flex-direction: column;
    margin: 20px 0 80px 0;
    outline: 0px solid red;
  }


  .special-block-image {
    width: 90%;
    margin: 0 auto;
  }


  .special-block-text {
    width: 90%;
    padding: 0px;
    margin: 0 auto 20px auto;
    outline:0px solid red;
  }


  .special-block-text .title .number {
    font-size: 40px;
  }

  .special-block2 .special-block-text .title .title-text1 {
    font-size: 35px;

  }

  .special-block-text .title .title-text1 {
    font-size: 30px;

  }

  .special-block-text .title .title-text2 {
    font-size: 30px;

  }

    
  .special-block-text .description {
    font-size: 15px;
  }




  .video-wrapper {
    max-width: 98%;
    outline: 0px solid red;
  }

  .video {
    width: 100%;
    /*border: 15px solid #B38340;*/
    border: 8px solid;
    border-image: linear-gradient(90deg, #B38340 0%, #FFF1C7 50%, #B38340 100%)2;
  }


  /*-------------------------------------------
  footer
  -------------------------------------------*/

  .copyright {
    width: 90%;
    font-size: 8px;
    text-align: center;
    outline: 0px solid red;
  }






    
}