@charset "utf-8";

/* 全体にかかるもの--------------------------------------------------------- */
body {
  background-color: #f5f8fa;
  color: #333;
  font-family: "Kosugi Maru", sans-serif;
  overflow-x: hidden;
}

header,
main,
footer {
  margin: 0 auto;
  padding: 0px;
}

main {
  width: 100%;
}
@media screen and (max-width:767px) {
  main {
    margin-top: 60px;
  }
}
.main-content {
  margin-top: 100px;
}

h1 {
  color: #a1c6cb;
  font-size: 60px;
  text-align: center;
  padding-top: 30px;
}
.image-sp{
  display: none !important;
}
@media screen and (max-width:767px) {
.image-pc{
  display: none !important;
}
.image-sp{
  display: block !important;
}
}
/* ロード画面--------------------------------------------------------- */
.load {
  height: 100vh;
  background: #f5f8fa;
  background-image: url("../images/namelogo.png");
  background-size: 30%;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  z-index: 30;
  width: 100%;
  top: 0;
  left: 0;
  animation-name: Opening;
  animation-duration: 5s;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
  z-index: 100;
}

@keyframes Opening {
  0%,
  80% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}
/* ヘッダー--------------------------------------------------------- */
header {
  display: flex;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(245, 248, 250, 0.5);
  z-index: 10;
  overflow: hidden;
}
@media screen and (max-width:767px) {
  header {
    padding: 0 20px;
  }
}
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 860px;
  height: 100px;
  margin: 0 auto;
  top: 0;
}
@media screen and (max-width:767px) {
  .header-container {
    height: 60px;
  }
}

.name-logo {
  width: 180px;
  height: auto;
}
@media screen and (max-width:767px) {
  .name-logo {
    width: 100px;
  }
}
@media screen and (max-width:767px) {
  .nav-menu {
    display: none;
  }
  header p{
    position: relative;
    z-index: 110;
    width: fit-content;
  }
  header p img{
    width: 50px;
    display: block;
  }
  p.is-open + .nav-menu {
    display: block;
    background-color: rgba(245, 248, 250, 0.8);
    width: 100%;
    height: 300px;
    position: fixed;
    z-index: 100;
    top: 60px;
    left: 0;
  }
}
.nav-menu a {
  text-decoration: none;
  color: #333;
  margin-left: 20px;
  font-size: 16px;
}
@media screen and (max-width:767px) {
  .nav-menu a {
    display: block;
    width: 100%;
    text-align: center;
    padding: 13px 0;
    margin-left: 0;
  }
}
/* セクション--------------------------------------------------------- */
section {
  padding: 100px 8%;
  width: 100%;
  height: 100vh;
  min-height: 667px;
  overflow: hidden;
}

@media screen and (max-width:767px) {
  section {
    height: auto;
    min-height: auto;
  }
}
.section-title {
  margin-bottom: 30px;
}

.section-title img {
  display: block;
  margin: 0 auto;
  width: auto;
  height: 66px;
}
@media screen and (max-width:767px) {
  .section-title img {
    height: 33px;
  }
}
/* ファーストビュー--------------------------------------------------------- */
section#first{
  padding: 0;
}
@media screen and (max-width:767px) {
  section#first{
    height: 250px;
    overflow: hidden;
  }
}
#first video {
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -100;
  overflow: hidden;
  object-fit: cover;
}
@media screen and (max-width:767px) {
  #first video {
    height: 250px;
  }
}
/* サイドアニメーション--------------------------------------------------------- */
.illustration {
  position: fixed;
  width: 150px;
  overflow: hidden;
  height: 100vh;
}

/* 左側の動く足跡設定 */
.illustration.left {
  left: 0;
  background-image: url("../images/ashiato.svg");
  background-size: 150px auto;
  animation: slideUp 6s linear infinite;
  background-repeat: repeat-y;
}
@media screen and (max-width:767px) {
  .illustration.left {
    background-size: 30px auto;
    animation: slideUp 12s linear infinite;
    width: 30px;
  }
}
/* 右側の動く足跡設定 */
.illustration.right {
  right: 0;
  background-image: url("../images/ashiato.svg");
  background-size: 150px auto;
  animation: slideDown 6s linear infinite;
  background-repeat: repeat-y;
  top: 0;
}
@media screen and (max-width:767px) {
  .illustration.right {
    background-size: 30px auto;
    animation: slideDown 12s linear infinite;
    width: 30px;
    top: 60px;
  }
}
/* 左側のアニメーション */
@keyframes slideUp {
  0% {
    background-position: 0 100%;
  }
  100% {
    background-position: 0 0;
  }
}

/* 右側のアニメーション */
@keyframes slideDown {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 0 100%;
  }
}
@keyframes flowing {
  0% {
    transform: translateY(0%);
  }
  100% {
    transform: translateY(-100%);
  }
}

/* タイトル文字スクロールアニメーション--------------------------------------------------------- */
.is_scroll {
  opacity: 0;
  position: relative;
  bottom: -100px;
}
@keyframes scroll {
  0% {
    opacity: 0;
    bottom: -100px;
  }
  100% {
    opacity: 1;
    bottom: 0px;
  }
}
/* インフォメーション--------------------------------------------------------- */
.info {
  display: flex;
  flex-direction: column;
}
.info p {
  font-size: 18px;
  padding-bottom: 20px;
  padding-top: 20px;
  text-align: center;
}

.info .images-container {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 auto;
  max-width: 800px;
}

.info a {
  width: 30%;
  border-radius: 15px;
  flex-grow: 0;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width:767px) {
  .info a {
    width: 100%;
  }
  .info a + a{
    margin-top: 20px;
  }
}
.image-container img {
  display: block;
  width: 100%;
  border-radius: 10px 10px 0 0;
}

.info .images-container > p {
  width: 100%;
  margin-bottom: 20px;
}

.info p {
  text-align: center;
  width: 100%;
}

.article-link {
  text-decoration: none;
}

.overlay-text {
  position: absolute;
  bottom: 0;
  left: 0;
  color: #f5f8fa;
  background: rgba(0, 0, 0, 0.5);
  padding: 5px;
  font-size: 14px;
  border-radius: 0 0 10px 10px;
}
/* バイオグラフィー--------------------------------------------------------- */
.bio-container {
  position: relative;
  background-size: cover;
  background-image: url("../images/biobg.png");
  padding-top: 100px;
  padding-left: 20px;
  font-size: 16px;
  height: 600px;
  border-radius: 20px;
  max-width: 800px;
  margin: 0 auto;
}
@media screen and (max-width:959px) {
  .bio-container {
    padding: 20px;
    font-size: 12px;
  }
}
.standing-image {
  position: absolute;
  width: 300px;
  height: 600px;
  background-image: url("../images/stand.png");
  background-size: contain;
  top: 0px;
}
@media screen and (max-width:959px) {
  .standing-image {
    top: auto;
    bottom: 0;
    right: -50px;
  }
}
.name-logo-image {
  position: absolute;
  width: 400px;
  height: 178px;
  background-image: url("../images/namelogo.png");
  background-size: contain;
  left: 50px;
  bottom: 10px;
}

@media screen and (max-width:959px) {
  .name-logo-image {
    width: 130px;
    height: 58px;
    top: 20px;
    left: 30px;
    bottom: auto;
  }
}
@media screen and (max-width:959px) {
  .text {
    background-color: rgba(255, 255, 255, 0.4);
    padding: 60px 20px 0;
    position: relative;
    z-index: 5;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: justify;
    color: #222121;
  }
}
.bio-container ul{
  padding-left: 14px;
  padding-right: 0;
}
/* 立ち絵アニメーション--------------------------------------------------------- */
.is_scroll_r {
  opacity: 0;
  position: absolute;
  right: 2000px;
}
@keyframes scroll-r {
  0% {
    opacity: 0;
    right: 2000px;
  }
  100% {
    opacity: 1;
    right: -100px;
  }
}
@media screen and (max-width:959px) {
  @keyframes scroll-r {
    0% {
      opacity: 0;
      right: 2000px;
    }
    100% {
      opacity: 1;
      right: -50px;
    }
  }
}
/* ネームロゴアニメーション--------------------------------------------------------- */
.is_scroll_l {
  opacity: 0;
  position: absolute;
  left: 2000px;
}
@keyframes scroll-l {
  0% {
    opacity: 0;
    left: 2000px;
  }
  100% {
    opacity: 1;
    left: 50px;
  }
}
@media screen and (max-width:959px) {
  @keyframes scroll-l {
    0% {
      opacity: 0;
      left: 2000px;
    }
    100% {
      opacity: 1;
      left: 30px;
    }
  }
}
/* アバウト--------------------------------------------------------- */
.about p {
  font-size: 18px;
  padding-bottom: 20px;
  padding-top: 20px;
  text-align: center;
}
@media screen and (max-width:767px) {
  .about p {
    font-size: 14px;
  }
}
/* スライド---------------------------------- */
.slick-slide {
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slick-slide .slide-image-container {
  width: 100%;
  padding-top: 56.25%;
  position: relative;
  overflow: hidden;
}

.slick-slide img, .slick-slide iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  margin: 0 auto;
}

.slider {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 !important;
}

.slider .slick-slide {
  text-align: center;
  width: 100%;
  max-width: 800px;
}
.slick-dots {
  text-align: center;
  display: flex;
  justify-content: center;
}

.slick-prev:before,
.slick-next:before {
  color: #545454 !important;
  font-size: 50px !important;
}
.slick-prev,.slick-next{
  top: calc(46% - 25px);
}
@media screen and (max-width:767px) {
  .slick-prev,.slick-next{
    top: calc(42% - 25px);
  }
}
.slick-prev {
  left: -25px;
  z-index: 10;
}

.slick-next {
  right: 4px;
  z-index: 10;
}

@media screen and (max-width:767px) {
  .slick-slide p{
    font-size: 12px;
  }
}
/* スケジュール--------------------------------------------------------- */
.schedule-container{
  max-width: 800px;
  margin: 0 auto;
}

.schedule > img {
  border-radius: 15px;
  width: 100%;
  height: auto;
  margin-top: 20px;
}
.schedule p {
  font-size: 18px;
  padding-bottom: 20px;
  padding-top: 20px;
  text-align: center;
}
/* コンタクト--------------------------------------------------------- */
#contact {
  margin: 40px 0 0;
  padding: 20px;
  background-color: #f5f8fa;
}

#contact h2 {
  text-align: center;
  font-size: 24px;
  margin-bottom: 20px;
}

#contact form {
  max-width: 600px;
  margin: 0 auto;
}

#contact label {
  display: block;
  font-weight: bold;
  margin: 10px 0;
}

#contact input,
#contact textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

#contact .privacy-policy {
  font-size: 14px;
  margin: 20px 0;
}

#contact button {
  display: block;
  width: 100%;
  padding: 10px;
  background-color: #a1c6cb;
  color: #f5f8fa;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

#contact button:hover {
  background-color: #38b48b;
}
.contact p {
  font-size: 18px;
  padding-bottom: 20px;
  padding-top: 20px;
  text-align: center;
}
/* フッター--------------------------------------------------------- */
footer {
  border-top: 1px solid #a1c6cb;
  text-align: center;
}