@charset "UTF-8";
a {
  text-decoration: none;
}
ul, li {
  list-style: none;
}
main {
  width: 100%;
  
}
a:hover {
  opacity: 0.9;
}
h2 {
  line-height: normal;
      line-height: normal;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}
h3 {
  line-height: normal;
}
h4 {
  line-height: normal;
}
p {
  line-height: normal;
}
img {
  width:100%;
}
:root {
    --swiper-theme-color: #9E9E9E;
}
.rubik-mono-one-regular {
  font-family: "Rubik Mono One", monospace;
  font-weight: 400;
  font-style: normal;
}

.rubik-dirt-regular {
  font-family: "Rubik Dirt", system-ui;
  font-weight: 400;
  font-style: normal;
}
.kranky-regular {
  font-family: "Kranky", serif;
  font-weight: 400;
  font-style: normal;
}





/*ローディング*/
.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10;
  background-color: #666;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeOut 1.5s 2.5s forwards;
}
.loading_div{
  display: block;
  text-align: center;
  width: 250px;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    visibility: hidden;
  }
}

.loading__logo {
  opacity: 0;
  animation: logo_fade 2s 0.5s forwards;
  width: 250px;
}

@keyframes logo_fade {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  60% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
  }
}


.line {
  margin-top: 10px;
  margin-bottom: 10px;
  border: 1px dotted #ccc;
}
.footer {
  background-color: #010609;
  height: auto;
 
  padding: 40px 20px;
 /* border-top: 1px solid #62ff96;*/

}
.footer div {
  margin: auto;
}
.footer h1 {
  width: 200px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  color: #fff;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.footer-inner-01 p{
color: #fff9c6;
font-size: 18px;
}
.footer-inner-02 {
  padding: 0;
  border-left: solid 1px #62ff96
}
.footer-inner-02 img {
  width: 16px;
}
.footer-inner ul li {
  margin-left: 20px;
  padding-top: 12px;
  line-height: normal;
}
.footer-inner a {
  color: #fff;
  font-size: 14px;
}
.footer-inner a:hover {
  color: #62ff96;
}
.corporate {
  line-height: 18px;
  text-align: center;
  color: #91bfe0;
  padding-bottom: 60px;
  font-size: 10px;
}
.logo-img{
  width: 200px;
}
.logo-img img{
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .footer-inner {
    display: block;
    max-width: 500px;
    width: 100%;
  }
  .footer-inner-02 {
    padding: 0;
    border-left: none;
    border-bottom: solid 1px #62ff96;
  }
  .footer-inner ul li {
    margin-left: 0;
    padding-top: 5px;
  }
  .footer-inner ul {
    padding-bottom: 20px;
    padding-top: 15px;
  }
}

.black{
  background-color: #010609;

}
.white{
  background-color: #fff;
}
/*--ボタン--*/
.alubum_button{
  display:flex;
  justify-content: center;
  column-gap: 10px;
}
.button{
  width: 50%;

}
.button a {
    position: relative;
    overflow: hidden;
    border-radius: 3px;
    text-decoration: none;
    display: block;
    max-width: 250px;
    background: #eee;
    margin: auto;
    padding: 10px 15px;
    font-weight: 500;
    text-align: center;
    line-height: 1.8;
    outline: none;
    transition: ease .2s;
    border: 2px solid #777;
}

.button a span {
    position: relative;
    z-index: 3;
    color:#333;
    font-weight: 600;
}

.button a:hover span{
    color:#fff;
}

.bgleft:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background:#333;
  width: 100%;
  height: 100%;
  transition: transform .6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
}

.bgleft:hover:before{
  transform-origin:left top;
  transform:scale(1, 1);
}
@media screen and (max-width: 431px) {
   .button{
  width: 80%;
  margin: 0 auto;

}
    }
/*============
nav
=============*/
nav {
  display: block;
  position: fixed;
  top: 0;
  left: -400px;
  bottom: 0;
  width: 300px;
  background: #000;
  overflow-x: hidden;
  overflow-y: auto;
 /* -webkit-overflow-scrolling: touch;*/
  transition: .5s;
  z-index: 3;
  padding: 25px;
  background-image: url("../images01/1.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom;
}
.open nav {
  left: 0;
}
nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
nav ul li {
  position: relative;
  margin: 0;
  border-bottom: 1px solid;
}
nav ul li a {
  display: block;
  color: #fff;
  font-size: 18px !important;
  padding: 1em;
  text-decoration: none;
  transition-duration: 0.2s;
}
nav ul li a:hover {
  color: #fff9c6;
}
.accordio-li {
  border-bottom: none;
  margin-bottom: 5px;
}
.accordio-li a {
  color: #fff;
}
.logo {
  position: fixed;
  z-index: 2;
  left: 20px;
  width: 250px;
  text-align: left;
  line-height: 2px;
}
.logo a{
  color: #fff;
  font-size: 40px;
}
.logo a span{
 font-size: 12px;
 font-weight: 400;
}
.logo img {
  width: 80px;
  padding-top: 6px;
}

/* 通常時 */
.header-nav__item a {
  font-size: 18px !important;
}
/* カレント表示 */
.header-nav__item.current a {
  color: #62ff96;
}
@media screen and (max-width: 767px) {
  nav {
    left: -300px;
    width: 240px;
  }

.logo a{

  font-size: 30px;
}
.logo a span{
 font-size: 12px;
}
}
/*============
@keyframes
=============*/
@keyframes equalizer01 {
  0% {
    width: 70%;
  }
  10% {
    width: 50%;
  }
  20% {
    width: 100%;
  }
  30% {
    width: 10%;
  }
  40% {
    width: 50%;
  }
  50% {
    width: 70%;
  }
  60% {
    width: 50%;
  }
  70% {
    width: 10%;
  }
  80% {
    width: 100%;
  }
  90% {
    width: 10%;
  }
  100% {
    width: 70%;
  }
}
@keyframes equalizer02 {
  0% {
    width: 30%;
  }
  10% {
    width: 20%;
  }
  20% {
    width: 40%;
  }
  30% {
    width: 10%;
  }
  40% {
    width: 20%;
  }
  50% {
    width: 30%;
  }
  60% {
    width: 20%;
  }
  70% {
    width: 10%;
  }
  80% {
    width: 40%;
  }
  90% {
    width: 10%;
  }
  100% {
    width: 30%;
  }
}
/*============
.toggle_btn
=============*/
.toggle_btn {
  display: block;
  position: fixed;
  top: 6px;
  right: 20px;
  width: 60px;
  height: 30px;
  transform: translate(0, 0);
  transition: all .5s;
  cursor: pointer;
  z-index: 3;
}
.open .toggle_btn {
  left: 330px;
}
.toggle_btn span {
  display: block;
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  background-color: #62ff96;
  transition: all .5s;
}
.toggle_btn span:nth-child(1) {
  top: 5px;
  width: 60px;
  animation: equalizer01 7000ms infinite;
}
.toggle_btn span:nth-child(2) {
  top: 15px;
  width: 30px;
  animation: equalizer02 5000ms infinite;
  animation-delay: 0.33s;
}
.toggle_btn span:nth-child(3) {
  top: 25px;
  width: 20px;
  animation: equalizer02 5000ms infinite;
}
.open .toggle_btn span {
  background-color: #fff;
  width: 30px;
}
.open .toggle_btn span:nth-child(1) {
  transform: translate(0, 10px) rotate(-45deg);
  animation: unset;
}
.open .toggle_btn span:nth-child(2) {
  opacity: 0;
  animation: unset;
}
.open .toggle_btn span:nth-child(3) {
  transform: translate(0, -10px) rotate(45deg);
  animation: unset;
}
@media screen and (max-width: 767px) {
  .open .toggle_btn {
    left: 260px;
  }
}
/*============
#mask
=============*/
#mask {
  display: none;
}
.open #mask {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: .8;
  z-index: 2;
  cursor: pointer;
  transition: all .5s;
}
/*あコーディオン*/
/*ベース*/
.toggle {
  display: none;
}
.Label { /*タイトル*/
  padding: 1em;
  display: block;
  font-size: 18px;
  color: #fff;
  text-align: left;
  /*color: #fff;
	background:#019ac6;*/
}
.Label::before { /*タイトル横の矢印*/
  content: "";
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  position: absolute;
  top: calc(50% - 3px);
  right: 20px;
  transform: rotate(135deg);
}
.Label, .content {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: all 0.3s;
}
.content { /*本文*/
  height: 0;
  margin-bottom: 10px;
  padding: 0 20px;
  overflow: hidden;
}
.toggle:checked + .Label + .content { /*開閉時*/
  height: auto;
  padding: 20px;
  transition: all .3s;
}
.toggle:checked + .Label::before {
  transform: rotate(-45deg) !important;
}



/*---------main-----------------------------------------*/
.cont01 {
padding-top: 70px;
}
.cont01-02 {
  color: #fff;
  width: 100%;

}
.cont01-02__01 {
    text-align: center;
    padding: 100px 20px 40px;

}
.cont01-02__01 h2{
   width: 300px;
}
.cont01-02__01 h3 {
  font-size: 30px;
  font-weight: 400;
 letter-spacing: 3px;
}
.cont01-02__01 p{
   padding: 7px 0;
}
@media only screen and (max-width: 767px) {
.cont01-02__01 h2 {
  width: 280px;
  padding-bottom: 20px;
}
.cont01-02__01 {
    padding: 60px 20px 0;
}
.cont01-02__01 h3 {
  font-size: 20px;
  padding-top: 20px;
  line-height: 24px;

}
}
.swiper {
  width: auto;
  height: auto; 
}
.swiper--wrapper {
  /* wrapperのサイズを調整 */
  width: 100%;
  height: 300px;
}
.swiper-slide {
  /* スライドのサイズを調整、中身のテキスト配置調整、背景色 */
  color: #ffffff;
  width: 300px;
  height: 100%;
  text-align: center;
  /*line-height: 300px;*/
  text-align: center;
}
.swiper-slide:nth-child(5n + 1) {
  background-color: #000;
}
.swiper-slide:nth-child(5n + 2) {
  background-color: #000;
}
.swiper-slide:nth-child(5n + 3) {
  background-color: #000;
}
.swiper-slide:nth-child(5n + 4) {
  background-color: #000;
}
.swiper-slide:nth-child(5n + 5) {
  background-color: #000;
}
.top-discription {
  padding: 20px 0 40px;
}
.top-discription a{
  color: #fff;
}

/*---------section-3-------------*/
.section-3 {
  padding: 100px 20px 40px;
}
.section-3__flex {
  align-content: flex-start;
  align-items: flex-start;
  background: rgba(0, 0, 0, 0.0);
  display: flex;
  
  height: auto;
  justify-content: space-between;
  margin: 0 auto;
  overflow-x: visible;
  overflow-y: visible;
  width: 100%;
  max-width: 1200px;
  column-gap: 20px;
  
}
.section-3__flex-1 {
  position: relative; /*相対配置*/
  height: auto;
  min-width:27%;
  width: 100%;
}
.section-3__flex-1-word {
  position: absolute; /*絶対配置*/
  color: white; /*文字は白に*/
  font-weight: bold; /*太字に*/
  top: 35%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  margin: 0 auto;
  width: 100%;
}

@media only screen and (max-width: 768px) {
.section-3__flex-1 {
}
}
/*-----zoomで拡大------*/
.zoomimg {
  /*width: 100%;
  height: 100%;*/
  cursor: pointer;
  max-width: 100%;
  overflow: hidden;
 
  border:1px solid #ccc;
}
.zoomimg img {
  height: auto;
  object-fit: cover;
  width: 100%;
  transition: transform .6s ease; /* ゆっくり変化させる */
}
.zoomimg:hover img {
  transform: scale(1.1); /* 拡大 */
}

*.section-3__flex-1-word h3 {
  color: #FFFFFF;
  font-size: 46px;
  padding: 0 20px;
  letter-spacing: 0.2rem;
  text-align: center;
  font-weight: 700;
  text-shadow: 3px 3px 1px #00000087;
  /*font-family: "Playwrite FR Moderne", cursive;*/
}
.section-3__flex-1-word h3:hover {
  opacity: 0.9;
}
.section-3__flex-1-button {
  position: absolute; /*絶対配置*/
  color: white; /*文字は白に*/
  font-weight: bold; /*太字に*/
  font-size: 2em; /*サイズ2倍*/
  top: 75%;
  right: -80%;
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  margin: 0 auto;
  width: 100%;
}
@media screen and (max-width:1150px) {
 .section-3__flex-1-word h3 {
    padding: 0 20px;
    font-size: 46px;
  }
  }
  @media screen and (max-width:10240px) {
 .section-3__flex-1-word h3 {
    padding: 0 20px;
    font-size: 36px;
  }
  }

@media screen and (max-width:850px) {
  .section-3__flex {
    column-gap: 60px;
  }
  .section-3__flex__1 img {
    height: 400px;
  }
  .section-3__flex-1-word h3 {
    padding: 0 20px;
    font-size: 22px;
  }
  .section-3__flex-1-button {
    top: 85%;
    right: -70%;
  }
}
@media screen and (max-width:767px) {
  .section-3 {
padding:60px 20px;
  }
  .section-3__flex {
    display: block;
    margin: 0 auto;
    padding: 0;
    width: 100%;
    max-width: 390px;
   /* align-content: flex-start;*/
  }
  .section-3__flex-1 {
    width: 100%;
    height: auto;
  
  }
  .section-3__flex-1:last-child {
    margin-top: 20px;
  }
  .section-3__flex-1__img {
    width: 100%;
    height: auto;
  }
  .section-3__flex-1__img img {
    width: 100%;
    height: auto;

  }
  .section-3__flex-1-button {
    position: absolute; /*絶対配置*/
    font-size: 2em; /*サイズ2倍*/
    top: 70%;
    right: -70%;
    margin: 0 auto;
    width: 100%;
  }
  .section-3__flex-1-word {
    top: 50%;
  }
  .section-3__flex-1-word h3 {
    font-size: 30px;
  }
}


.section-3__flex-1-word p {
  color: #FFFFFF;
  font-size: 20px;
  text-align: center;
  letter-spacing: 0.1rem;
  padding: 0 20px;
  text-shadow: 1px 1px 10px #000000;
}
.section-3__flex-explanation {
  text-align: center;
  font-size: 12px;
}

/*flex-contents*/
.flex-contents{

    height: auto;
    padding: 80px 20px;
    line-height: 36px;

}
.flex-contents_inner{
  display: flex;
  justify-content: space-between;
align-items: center;
column-gap: 40px;
height: auto;
max-width: 1200px;
margin: 0 auto;
   
}
.rinne-backcolor{
background-image: linear-gradient(360deg, rgb(8 13 13 / 85%), rgb(30 109 121 / 85%) 34%, rgb(76 48 11 / 85%) 72%, rgb(86 21 20 / 85%) 97%);
}


.border_line{
   border: 1px solid #ccc;
    padding: 20px;
}
.flex-contents_inner__03{
  width: 33%;
  text-align: center;
  color: #fff;
}
.flex-contents_inner__03 h2{
  font-size: 70px;
  margin: 20px auto;
}
.flex-contents_inner__01{
width: 33%;
padding: 0 0 40px;
color: #fff;
}
.flex-contents_inner__02{
width: 50%;
text-align: center;
}
.flex-contents_inner__02 img {
  width: 50%;
  border-radius: 50%;
}

.bgleft:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background:#62ff96;
  width: 100%;
  height: 100%;
  transition: transform .6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
}

.bgleft:hover:before{
  transform-origin:left top;
  transform:scale(1, 1);
}

@media screen and (max-width:1140px) {
.flex-contents_inner__03 h2{
  font-size: 50px;
  width: fit-content;
}
}

@media screen and (max-width:860px) {
  .flex-contents{
padding: 60px 20px;


}
.flex-contents_inner{
  display: block;
  
  max-width: 500px;

}
.flex-contents_inner__03{
  width: 100%;
  margin: 40px auto;
}
.flex-contents_inner__01{
width: 100%;
 margin: 40px auto 0;
}
.flex-contents_inner__02 {
    width: 100%;
    text-align: center;
    margin: 0 auto ;
}

}
.about-li {
  margin-top: 40px;
}
  .section-access__map {
    width: 50%;
    margin: 0 auto;
  }
@media(max-width:767px) {
  .section-access {
    margin: 0 auto;
    width: 100%;
    max-width: 100%;
    padding-top: 40px;
  }
  .section-access__name {
    width: 100%;
    margin: 0 auto;
  }
  .section-access__map {
    width: 100%;
    margin: 0 auto;
    text-align: center;
   
  }
}
@media(max-width:480px) {
  .section-access__flex {
    display: block;
  }
  .section-access h2 {
    padding-top: 60px;
  }
}
/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.clients {
  height: auto;
  padding: 100px 0px;

}

.section-title {
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 40px;
}
.section-title h2{
font-size: 80px;

}
.section-title p {
  text-align: left;
  font-weight: 600;
max-width: 1200px;
  margin: 0 auto;
}
.partner_inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  max-width: 700px;
  margin: 0 auto;
  column-gap: 20px;
}
.partner_inner::after {
  content: "";
  display: block;
  width: 30%;
}
.inner-01 {
  max-width: 100px;
 /* max-width: 157px;
  width: 20%;*/
}
.inner-01 img {
  width: 100%;
  transition: transform .6s ease; /* ゆっくり変化させる */
}
.inner-01:hover img {
  transform: scale(1.1); /* 拡大 */
}

@media screen and (max-width: 767px) {
  .section-title h2{


}
  .partner_inner {}
  .inner-01 {
    width: 100%;
   /* padding: 15px;*/
  }
  .clients h2 {
            font-size: 56px;
  }
  .clients {
    padding: 60px 20px ;
  }
  .inner-01 {
  /*max-width: 40px;*/
 /* max-width: 157px;
  width: 20%;*/
}
}

.section-discography {
  padding:100px 0 0;
}
.section-discography__newsong{
  text-align: center;
   padding: 60px 20px; 

}
.section-discography__newsong p{
  font-weight: 700;
  font-size: 20px;
  padding: 0px 0px 40px;
}
.newsong-inner {
  max-width: 560px;
  width: 100%;
  height: 315px;
  margin: 0 auto;
   background-color: #000;
   padding: 20px;

}
/*---モーダル---*/



.course-wrapper {
  display: flex;
  /*justify-content: space-between;*/
  justify-content: flex-start;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  column-gap: 20px;
      flex-wrap: wrap;
}

.course-wrapper li{
  max-width: 360px;
  width: 100%;
  height: auto;
  margin: 40px auto;
}
.discography{

  background-image: linear-gradient(360deg, rgba(54, 146, 140, 0.85), rgba(198, 255, 198, 0.85) 34%, rgba(255, 185, 248, 0.85) 72%, rgba(206, 58, 54, 0.85) 97%);
width: 100%;
  margin: 100px auto 0;
  padding-top: 100px;
}

.discography h2{
font-size: 80px;
padding: 0 20px;
}
.discography h3{
font-size: 50px;
    line-height: normal;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 20px;
}

.discography-year{
  padding: 100px 0;
}
.song-title{
  background-color: aliceblue;
    padding: 20px;
}
.song-title a{
 color: #333;
}
.song-title h2{
 font-size: 20px!important;
 padding: 0;
}

.song-title h2:hover{
  color: orange;
}


@media screen and (max-width: 767px) {
  .section-title h2{

}
.course-wrapper {
  justify-content: center;
  display: block;
 
}
.youtube-link h2{

    font-size: 36px;

}
.youtube-link{
  padding: 60px 20px;

}
.youtube-link h3{
 font-size: 30px;
 padding-top: 60px;

}
.discography{
  margin: 0 auto;

}
.digitalsingle-img {
  width:100%;

}
.discography h2{
font-size: 40px;
}

}

/*----aboutpage--下層ページのトップセクション--*/
.anderpage {
  padding: 0;
  background-size: cover;
}
.anderpage-cont01{
  padding-top: 70px;
  background-color: #000;
  height: auto;
}
.anderpage-cont01-inner {
  max-width: 1990px;
  width: 100%;
  position: relative;
  height: auto;
}
.anderpage-cont01-inner img {
  width: 100%;
  height: auto;
}
.anderpage-cont01-title {
  position: absolute;
  top: 40%;
  left: 0;
  right: 0;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.anderpage-cont01-title h2 {
  font-size: 80px;
  color: #fff;
  text-shadow: 1px 1px 10px #000;

}
.anderpage-cont01-title2 h2 {
  font-size: 80px;
  color: #00486d;
  text-shadow: 5px 5px 0px #fff;
  padding: 20px;
  width: fit-content;
}
.anderpage-cont01-title p {
  font-size: 30px;
  color: #fff;
  margin-top: 20px;
  text-shadow: 1px 1px 10px #000;

}
.anderpage-cont01-title2 p {
  font-size: 24px;
  color: #00486d;
  background-color: #fff;
  padding: 20px;
  width: fit-content;
  margin-top: 0;
}
/*下層ページフレックスセクション*/

.reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .anderpage-cont01-inner {

        margin: 0 auto;
}
  .anderpage-cont01-title {
    top: 10%;
  }
  .anderpage-cont01-title h2 {
    font-size: 33px;
  }
  .anderpage-cont01-title p {
  font-size: 16px;
  margin-top: 0;
 
}

}
.discography_img{
  max-width: 500px;
width: 100%;
margin: 0 0 0 auto;
}
/*========= system.php//バー表示のためのCSS ===============*/
/*タイムライン全体の設定*/
.timeline {
  max-width: 760px;
  width: 100%;
  margin: 50px auto;
}
.timeline li {
  /*線の起点とするためrelativeを設定*/
  position: relative;
  list-style: none;
  padding: 0 0 20px 0;
}
.timeline dl {
  margin: 0 0 20px 3em;
}
.timeline dd strong {
  display: block;
  padding: 10px 0;
}
.timeline dd a {
  color: #606060;
}
.timeline dd a:hover{
  color: #62ff96;
}
.timeline dt{
  font-size: 20px;
  font-weight:700 ;

}

/*絶対配置で線を設定*/
.border-line {
  /*線の位置*/
  position: absolute;
  left: 0.2em;
  top: 0;
  width: 2px; /*線の太さ*/
  height: 0; /*はじめは高さを0に*/
  background: #62ff96;
}
/*タイムラインの見出し横の丸の位置と形状*/
.timeline li::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  background: #62ff96;
  border-radius: 50%;
}
.section-scroll {
  background-color: #ff6c6c9e;
 
   
}
.section-scroll__inner{
   padding: 100px 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.section-scroll h2 {
  
 
  font-size: 80px;
  border-bottom: 1px solid #01548f;
  padding-bottom: 10px;
}

/*-----privacy-------*/
.privacy {
  

  margin: 0 auto;
  padding: 200px 20px;
  background: linear-gradient(180deg, rgba(2,0,36,0.2) 0%, rgba(0,21,159,0.2) 35%, rgba(255,108,108,0.62) 100%),url('../images01/rain-bg.png');
  background-size: cover;

}
.privacy_h2 {
  font-size: 80px;
  border-bottom: 1px solid #62ff96;
  padding-bottom: 10px;
  max-width: 1200px;
  width: 100%;
   margin: 0 auto;
}
.privacy_p {
  font-size: 18px;
  max-width: 760px;
  width: 100%;
    margin: 0 auto;
    line-height: 36px;
}
.privacy_name {
      text-align: right;

    max-width: 760px;
  width: 100%;
}
.section-menu {
  padding: 0 0 100px;
}


@media screen and (max-width: 768px) {
.privacy_p {
  font-size: 16px;
  
}
}

/*お問合せ*/
.section-contact{
  height: auto;
  padding: 80px 20px;
 
line-height: 38px;

   
}
.section-contact2{
height: auto;
    max-width: 1200px;
    padding: 100px 20px;
    margin: 100px auto 0;
    }

.section-contact__flex {
  padding-bottom: 0px;
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  align-items: flex-start;
    flex-direction:row-reverse;
    column-gap: 40px;
}
.section-contact__under-inner {
  text-align: center;
}

.section-contact h2 {
 font-size: 80px;
    color: #fff;
    /* padding-bottom: 20px; */
    max-width: 1200px;
    margin: 15px auto;
    font-weight: 400;
 
}

.bgred{
  background-color: #750f08;
}
.bgblue{
   background-color: #4cb9b3;

}
.section-contact h3 {
  font-size: 20px;
  color: #fff;
}

.section-contact__01 {
 width: 50%;
}
.section-contact p {
  font-size: 16px;
  color: #fff;
  width: 100%;
  line-height: 40px;
}
.contact-bg{
  background-image: url('../images01/contact.webp');
      background-size: cover;
      background-position: right;
      height: 450px;

}

@media screen and (max-width: 769px) {
  .contact-buttom {
    display: block;
  }
  .section-contact__inner {
    padding: 60px 0;

  }
  .section-contact {
      height: 400px;
  padding: 60px 20px 60px;
  background-position: 80%;

   
  }
  .section-contact__01 {
    width: 100%;
  }
  .section-contact h2 {
    font-size: 56px;
    padding-top: 0;
    text-shadow: 1px 1px 20px #000;
  }
  .section-contact p {
    font-size: 14px;
  }
    .section-contact__flex{
        display: block;
    }
    .privacy {
  padding: 60px 20px;
}
    .privacy_h2 {
  font-size: 50px;

}
.section-scroll h2 {
  font-size: 50px;
}
.section-scroll {
 
  padding: 60px 20px;
 
}
.section-scroll__inner{
   padding: 0;
}
}
.about{
  background-image: url('../images01/about-kuru.webp');
  background-size: cover;
}
/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 60px 20px 0;
  min-height: 40px;
  margin: 0 auto;
  background-color: #000;
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  align-items: center;
}
.breadcrumbs ol li + li {
  padding-left: 10px;
  color: #fff;
}
.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #fff;
  content: "/";
}
.breadcrumbs ol li a {
  color: #00548f;
}
@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*コンタクトページ*/
.section-contact__inner {
  max-width: 420px;
  width: 100%;
  margin: 0 auto;
  padding: 20px 20px;
}

label {
  font-size: 18px;
}
input {
  padding-top: 7px;
  padding-bottom: 7px;
  margin-top: 10px;
}

/*jq下から表示*/
.fadein {
  opacity: 0;
  transform: translate(0, 100px);
  transition: all 1s;
}
.fadein.active {
  opacity: 1;
  transform: translate(0, 0);
}
/*コンタクトページ*/
.container-contact {
  max-width: 760px;
  width: 100%;
  padding: 100px 20px;
  margin: 0 auto;
}
.container-contact h1 {
  font-size: 40px;
}
.container-contact p {
  text-align: left;
  font-size: 20px;
  padding-top: 60px;
  padding-bottom: 60px;
}
.contact_innner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.contact_innner_01 {
  width: 25%;
}
.contact_innner_02 {
  width: 75%;
}
.fontsize {
  font-size: 16px !important;
  color: #333 !important;
}
@media (max-width: 768px) {
  .container-contact h1 {
    font-size: 30px;
  }
}

/*rain*/
.drop {
  position: absolute;
  bottom: 100%;
  width: 10px;
  height: 120px;
  pointer-events: none;
  animation: drop 0.5s linear infinite;
}

@keyframes drop {
  0% {
    transform: translateY(0vh);
  }
  75% {
    transform: translateY(90vh);
  }
  100% {
    transform: translateY(90vh);
  }
}

.stem {
  width: 2px;
  height: 60%;
  margin-left: 7px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(100, 255, 249, 0.50));
  animation: stem 0.5s linear infinite;
}

@keyframes stem {
  0% {
    opacity: 1;
  }
  65% {
    opacity: 1;
  }
  75% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

.splat {
  width: 15px;
  height: 10px;
  border-top: 2px dotted rgba(53, 255, 254, 0.7);
  border-radius: 50%;
  opacity: 1;
  transform: scale(0);
  animation: splat 0.5s linear infinite;
  display: none;
}

.splat {
  display: block;
}

@keyframes splat {
  0% {
    opacity: 1;
    transform: scale(0);
  }
  80% {
    opacity: 1;
    transform: scale(0);
  }
  90% {
    opacity: 0.5;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.5);
  }
}

/*角の三角*/
.triangle {
  
    position: relative;
}
 
/* ラベル部分 左上に表示 */
.triangle::before {
    content: "";
    top: 0;
    left: 0;
    border-bottom: 10em solid transparent;
    border-left: 10em solid #861309; /* ラベルの色はここで変更 */
    position: absolute;
    z-index: 1;
}
.triangle::after {
    content: "NOW ON SALE!";
    display: block;
    top: 35px;
    transform: rotate(-45deg);
    color: #fff; /* 文字色はここで変更 */
    left: -8px;
    position: absolute;
    z-index: 101;
}




