@charset "UTF-8";

/* 共通部分 ------------------------------- */
html {
  font-size: 100%;
  scroll-behavior: smooth;
}
body {
  color: #000;
  font-size: 1rem;
}
a {
  color: #000;
  text-decoration: none;
}
li {
  list-style: none;
}
img {
  max-width: 100%;
  vertical-align: bottom;
}
.container{
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px
}
.sec-title{
  font-size: 2.25rem;
  color: #fff;
  -webkit-text-stroke: 1px #000;
  letter-spacing: 0.3rem
}

/* header ------------------------------- */
#header {
  background-color: #EEAE02;
  position: relative;
}
.header-img{
  object-fit: cover;
}
#header .header-nav{
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  font-weight: 900;
  font-size: 1.125rem;
}
#header .header-nav a{
  color: #fff;
}
#header .header-nav li{
  letter-spacing: 0.2rem;
  padding-bottom: 3px;
  position: relative;
}
#header .header-nav li::before{
  background: #fff;
  content: '';
  width: 100%;
  height: 3px;
  position: absolute;
  left: 0;
  bottom: 0;
  margin: auto;
  transform-origin: center top;
  transform: scale(0, 1);
  transition: transform .3s;
}
#header .header-nav li:hover::before{
  transform-origin: center top;
  transform: scale(1, 1);
}
#header .title-fixed{
  position: fixed;
  top: 20%;
  right: 1%;
  writing-mode: vertical-lr;
  font-weight: 900;
  letter-spacing: 0.2rem;
}

/* TOPへ戻るボタン */
#page_top{
  width: 50px;
  height: 50px;
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #000;
  opacity: 0.6;
  border-radius: 4px;
}
#page_top a{
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  text-decoration: none;
}
#page_top a::before{
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f106';
  font-size: 25px;
  color: #fff;
  position: absolute;
  width: 25px;
  height: 25px;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}

/* radio -------------------------------- */
#radio{
  text-align: center;
}
#radio .sec-title{
  margin-top: 120px;
  margin-bottom: 20px;
}
#radio h3{
  font-size: 1.5rem;
  margin-bottom: 50px;
}
#radio .radio-text{
  margin-bottom: 80px;
}
#radio .radio-text p{
  margin-bottom: 50px;
}
#radio p{
  margin-bottom: 100px;
}

/* video -------------------------------- */
#video{
  background: linear-gradient(to right, #8A99D1, #DE9BAC);
  text-align: center;
}
#video .container{
  padding-bottom: 150px;
}
#video .sec-title{
  padding-top: 85px;
  padding-bottom: 50px;
}
#video h3{
  font-size: 1.5rem;
  margin-bottom: 50px;
}
#video p{
  margin-bottom: 25px;
}

/* photo -------------------------------- */
#photo{
  text-align: center;
  padding-bottom: 100px;
}
#photo .sec-title{
  padding-top: 85px;
  padding-bottom: 100px;
}
#photo .container{
  position: relative;
}
.swiper-container{
  overflow: hidden;
}
.swiper-wrapper {
  max-width: 900px;
  height: 500px;
}
.swiper-slide {
	width: 100%;
	height: 100%;
}
.swiper-slide img{
  width: 800px;
  max-height: 500px;
  object-fit: cover;
}
.swiper-button-prev {
  left: -30px;
  top: 65%;
  color: #000;
}
.swiper-button-next {
  right: -30px;
  top: 65%;
  color: #000;
}
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: -35px;
}

/* member -------------------------------- */
#member{
  text-align: center;
  background: linear-gradient(to right, #8A99D1, #DE9BAC);
}
#member .sec-title{
  padding-top: 120px;
  margin-bottom: 70px;
}
#member .content{
  position: relative;
  text-align: left;
  padding-bottom: 150px;
}
#member .content::before,  #member .content::after{
  content: "";
  width: 200px;
  height: 200px;
}
#member .content::before{
  position: absolute;
  top: 20%;
  left: -15%;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  transform: rotate(-135deg);
}
#member .content::after{
  position: absolute;
  top: 20%;
  right: -15%;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  transform: rotate(45deg);
}
#member .content p{
  margin-bottom: 30px;
  font-size: 0.875rem;
}

/* about --------------------------------- */
#about{
  text-align: center;
}
#about .sec-title{
  padding: 85px;
  padding-bottom: 110px;
}
#about .content{
  position: relative;
  text-align: left;
  padding-bottom: 150px;
}
#about .content::before,  #about .content::after{
  content: "";
  width: 150px;
  height: 150px;
}
#about .content::before{
  position: absolute;
  top: 5%;
  left: -15%;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  transform: rotate(-135deg);
}
#about .content::after{
  position: absolute;
  top: 5%;
  right: -15%;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  transform: rotate(45deg);
}
#about .content p{
  font-size: 0.875rem;
  line-height: 1.8rem;
}

/* footer -------------------------------- */
#footer{
  background: linear-gradient(to right, #8A99D1, #DE9BAC);
  text-align: center;
  font-size: 0.875rem;
  padding-top: 25px;
  padding-bottom: 25px;
}

/* SP ------------------------------------ */
@media screen and (max-width: 1024px){
    #member .content::before,
    #member .content::after,
    #about .content::before,
    #about .content::after{
      display: none;
    }
    #header .title-fixed{
      display: none;
    }
}

@media screen and (max-width: 768px) {
    #header .header-nav{
      display: none;
    }
    #radio .radio-text{
      margin-bottom: 100px;
    }
    #photo .sec-title{
      padding-top: 65px;
      padding-bottom: 65px;
    }
    #radio .sec-title{
      margin-top: 65px;
    }
    #member .content{
      padding-bottom: 65px;
    }
    #member .sec-title{
      padding-top: 65px;
    }
    #about .sec-title{
      padding-bottom: 65px;
      padding-top: 65px;
    }
    #about .content{
      padding-bottom: 80px;
    }
    .swiper-wrapper{
      height: 100%;
    }
    #radio .radio-text{
      margin-bottom: 40px;
    }
    #radio .asterisk{
      margin-bottom: 60px;
      font-size: 11px;
    }
    #video .container{
      padding-bottom: 80px;
    }
    #video .sec-title{
      padding-top: 65px;
      padding-bottom: 65px;
    }
    #video .comingsoon{
      font-size: 2rem;
        margin-bottom: 20px;
        font-weight: 600;
    }
}

@media screen and(max-width: 414px) {
  .swiper-slide img{
    height: 100%;
  }
  #radio .asterisk{
    font-size: 11px;
  }
}