
/* 共通設定 */
body {
    margin: 0;
    padding: 0;
    background-color: #fff;
    line-height: 1;
    font-family: "YakuHanJP_Narrow" , "helvetica", "Noto Sans JP","Noto Serif JP","Hiragino Kaku Gothic" , "メイリオ", "Meiryo", sans-serif;
    width: 100%;
    height: 100vh;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    animation: Grad 6s infinite alternate;
  }

a:hover {
    opacity: 0.5;
}

img {
    width: 100%;
}

.wrapper {
    max-width: 1000px;
    margin: 0 auto;
}



  /*------------------------------------------------------------------------------
  javascript アニメーション用CSS
  ------------------------------------------------------------------------------*/


  /* フェードイン　左から */
.fadeIn_left {
  opacity: 0;
  transform: translate(-50%, 0);
  transition: 2s;
}
.fadeIn_left.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

  /* フェードイン　右から */

.fadeIn_right {
  opacity: 0;
  transform: translate( 50%, 0);
  transition: 2s;
}
.fadeIn_right.is-show {
  transform: translate(0, 0);
  opacity: 1;
}


/* フェードイン　下から */
.fadeIn {
  opacity: 0;
  transform: translate( 0, 10% );
  transition: 3s;
}
.fadeIn.is-show {
  opacity: 1;
  transform: translate(0, 0);
}

/* フェードイン　その場から */
.fade {
  opacity: 0;
  transition: 4s;
}
.fade.is-show {
  opacity: 1;
}


/* フェードインレスポンシブ */

@media (max-width: 1500px) {
  .fadeIn_right,.fadeIn_left {
    opacity: 0;
  transform: translate( 0, 20%);
  transition: 2s;
}
.fadeIn_right.is-show , .fadeIn_left.is-show {
  transform: translate(0, 0);
  opacity: 1;
}
}







@media (max-width: 1350px) {
    .sec-title-container {
        width: 10%;
        margin: 0 auto;    
    }
}

  /*------------------------------------------------------------------------------
  Header
  ------------------------------------------------------------------------------*/

#header {
    height: 70px;
    align-content: center;
    margin-bottom: 3rem;
}

.header-inner {
    width: 100%;
    margin: 0 auto;
}

#header h1 {
    
}

#header h1 a {    
    display: block;
    margin-left: 50px;
}

#header h1 a img {
    width: auto;
    height: 40px;
}


  /* メニューのスタイル */
  .menu {
    position: fixed;
    top: 0;
    right: -100%; /* 初期状態では画面の外に隠れている */
    width: 600px;
    height: 100%;
    background-color: #1D2088;
    opacity: .95;
    color: #333;
    transition: right 0.3s ease; /* スライドインのアニメーション */
    padding: 20px;
    box-sizing: border-box;
    z-index: 10;
  }
  
  /* メニューが開いているとき */
  .menu.open {
    right: 0;
  }
  
  /* ボタンのスタイル */
  .hamburger {
    position: fixed;
    top: 10px;
    right: 50px;
    width: 50px;
    aspect-ratio: 1/1;
    cursor: pointer;
    z-index: 20;
    background-color: #fff;
    padding: 10px;
    border-radius: .5rem;
  }
  
  .hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #1D2088;
    margin: 5px 0;
    transition: 0.4s;
  }
  
  /* バツ印に変化するスタイル */
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);

  }
  
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active span:nth-child(3) {

    transform: rotate(-45deg) translate(6px, -6px);
  }
  
  /* メニューリストのスタイル */
  .menu ul {
    list-style-type: none;
    padding: 0;
    margin-top: 150px;
    
  }
  
  .menu li {
    padding: 30px 0;
    border-bottom: 1px solid #ffffff;
  }
  
  .menu li a {
    color: #ffffff;
    text-decoration: none;
    display: block;
  }

  /*------------------------------------------------------------------------------
    Main Visual
  ------------------------------------------------------------------------------*/

  .main-visual {
    margin-bottom: 10rem;

  }

  .main-visual .slider {
    width: 80%;
    margin-top: 2rem;
    margin: 0 auto;

  }

  .main-visual .slider img {
    height: 100%;
    object-fit: cover;
    border-radius: 1.5rem;
  }


/*------------------------------------------------------------------------------
  News
------------------------------------------------------------------------------*/
#news {
  padding-bottom: 10rem;

}
#news .news-title {
  display: flex;
  justify-content: center;
  border-bottom: #000000 5px solid;
  padding-bottom: .5rem;
  margin-bottom: 2rem;
  
}
#news .icon {
  width: 40px;
}

#news .icon img {
  display: inline-block;
}

#news .news-title h2 {
  font-size: 2rem;
  font-weight: bold;
  color: #000000;
  margin-left: 10px;
  
}

#news .content {
  display: flex; 
  width: 100%;
}

#news .content img {
  height: 100%;
  object-fit: cover;
  width: 45%;
  border: #ff9100 15px solid;
  border-radius: 1.5rem;
}

#news .content-text {
  width: 100%;
  padding-left: 2rem;
}
#news .content-text h3 {
  padding-bottom: .3rem;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  border-bottom: #000000 5px solid;
}


#news .event-details {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 2rem;
  font-size: 1.5rem;
  font-weight: 500;
}

#news .event-details dt {
  margin-right: 2rem;
  width: 15%;
  margin-bottom: 1rem;
}

#news .event-details dd {
  width: 75%;
}

#news .content .content-text .ticket {
  display: flex;
  margin-top: 1rem;
  
}

#news .content .content-text .ticket .ticket-info {
  width: 50%;
  
}

#news .content .content-text .ticket .ticket-info li {
  margin-bottom: .5rem;
  font-size: 1.3rem;
}

#news .btn {
  display: block;
  width: 40%;
  padding: 1rem 2rem;
  background-color: #ff9100;
  color: #fff;
  border-radius: .5rem;
  text-decoration: none;
  font-weight: bold;
  text-align: center;
  margin: 2rem auto 0;
}

/*------------------------------------------------------------------------------
  about-us
------------------------------------------------------------------------------*/
#about-us {
  padding: 5rem 0;
  background-color: #0069c2;
  margin-bottom: 10rem;
}
#about-us .sec-title {
  padding: 1rem 0;
  margin: 0 auto 2rem;
  width: 40%;
  background-color: #1D2088;
  font-size: 4.5rem;
  font-weight: 600;
  color: #fff;
  text-align: center;
}

#about-us .sec-sub-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 600;
  font-family: serif;
  color: #fff;
  margin-bottom: 2rem;
}

#about-us p {
  width: 100%;
  margin: 0 auto;
  font-size: 1.5rem;
  color: #fff;
  line-height: 1.8;
  padding-bottom: 2rem;
}

#about-us .about-us-inner .btn {
  display: block;
  width: 40%;
  padding: 1rem 2rem;
  background-color: #1D2088;
  color: #fff;
  border-radius: .5rem;
  text-decoration: none;
  font-weight: bold;
  text-align: center;
  margin: 2rem auto 0;

}

/*------------------------------------------------------------------------------
  service
------------------------------------------------------------------------------*/
#service {
  margin-bottom: 10rem;
}

#service .sec-title {
  padding: 1rem 0;
  margin: 0 auto 2rem;
  width: 40%;
  background-color: #1D2088;
  font-size: 4.5rem;
  font-weight: 600;
  color: #fff;
  text-align: center;
}

#service .sec-sub-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 600;
  font-family: serif;
  color: #1D2088;
  margin-bottom: 2rem;
}

#service p {
  width: 100%;
  margin: 0 auto;
  font-size: 1.5rem;
  color: #1D2088;
  line-height: 1.8;
  padding-bottom: 2rem;
}

#service .ad-icon {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5rem;
  margin-bottom: 5rem;  
}

#service .ad-icon img {
  width: 100%;
  height: auto;
  padding: 2rem;
  border: #1D2088 5px solid;
  border-radius: 1.5rem;
  
}

#service .btn {
  display: block;
  width: 40%;
  padding: 1rem 2rem;
  background-color: #1D2088;
  color: #fff;
  border-radius: .5rem;
  text-decoration: none;
  font-weight: bold;
  text-align: center;
  margin: 2rem auto 5rem;
  
}






#service .pick-up {
  margin-bottom: 2rem;
}

#service .pick-up .pick-up-title {
  width: 15%;
  margin: 0 auto .5rem;
  font-size: 1rem;
  color: #fff;
  font-weight: 600;
  background-color: red;
  padding: .25rem;
  text-align: center;

}

#service .pick-up .top-livestreaming-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #1D2088;
  margin-bottom: .25rem;
}

#service .pick-up .top-livestreaming-subtitle2 {
  text-align: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.8;
  color: #fff;
  background-color: #1D2088;
  width: 60%;
}

#service .pick-up .top-livestreaming-subtitle {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.8;
  color: #1D2088;
  margin-bottom: 3rem;
}

#service .pick-up figure {
  width: 75%;
  height: auto;
  margin: 0 auto;
}



@media (max-width: 1000px) {
  #service .pick-up .top-livestreaming-subtitle2 {
      font-size: 1rem;
  }
  #service .pick-up .top-livestreaming-subtitle {
    font-size: 1.25rem;
  }

  #service .pick-up figure {
    width: 80%;
  }
}

@media (max-width: 500px) {
  #service .pick-up .top-livestreaming-subtitle2 {
    font-size: 1rem;
    width: 80%;
    line-height: 1;
    padding: .5rem 0;
  }
  #service .pick-up .top-livestreaming-subtitle {
    font-size: 1rem;
    line-height: 1;
  }
}
/*------------------------------------------------------------------------------
  works
------------------------------------------------------------------------------*/
#works {
  padding: 5rem 0;
  background-color: #0069c2;

}
#works .sec-title {
  padding: 1rem 0;
  margin: 0 auto 2rem;
  width: 40%;
  background-color: #1D2088;
  font-size: 4.5rem;
  font-weight: 600;
  color: #fff;
  text-align: center;
}

#works .sec-sub-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 600;
  font-family: serif;
  color: #fff;
  margin-bottom: 2rem;
}

#works p {
  width: 100%;
  margin: 0 auto;
  font-size: 1.5rem;
  color: #fff;
  line-height: 1.8;
  padding-bottom: 2rem;
}

#works .works-inner .btn {
  display: block;
  width: 40%;
  padding: 1rem 2rem;
  background-color: #1D2088;
  color: #fff;
  border-radius: .5rem;
  text-decoration: none;
  font-weight: bold;
  text-align: center;
  margin: 2rem auto 0;

}

/*------------------------------------------------------------------------------
  footer
------------------------------------------------------------------------------*/
#footer {
  background-color: #1D2088;
  color: #fff;
  padding: 1rem 0;
}

#footer .footer-inner {
  width: 100%;
  margin: 0 auto;
  text-align: center;
}


/*------------------------------------------------------------------------------
  レスポンシブ　タブレット
------------------------------------------------------------------------------*/

@media (max-width: 1000px) {
  .wrapper {
    padding: 0 1rem;
  }

  .hamburger {
    right: 15px;
  }
    .menu {
    width: 100%;
  }

  #news .content {
  display: flex; 
  flex-direction: column;
  width: 100%;
}

#about-us .about-us-inner .btn ,{
    font-size: 1rem;}

#news .content img {
  height: 100%;
  object-fit: cover;
  width: 100%;
  margin-bottom: 2rem;
}

#works .sec-title , #service .sec-title, #about-us .sec-title {
  font-size: 3rem;
}

#works .sec-sub-title, #service .sec-sub-title, #about-us .sec-sub-title {
  font-size: 1.5rem;
}

#service .ad-icon {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;  
}

#news .content-text {
  padding-left: 0;
}

}

/*------------------------------------------------------------------------------
  レスポンシブ　スマホ
------------------------------------------------------------------------------*/
@media (max-width: 500px) {

  #header h1 a {    
    margin-left: 15px;
}


    .main-visual {
    margin-bottom: 3rem;

  }

  .main-visual .slider {
    width: 100%;
    margin-top: 1rem;


  }

  .main-visual .slider img {
    border-radius: 0rem;
  }




#works .sec-title , #service .sec-title, #about-us .sec-title {
  font-size: 2rem;
  width: 100%;
  }

#works .sec-sub-title, #service .sec-sub-title, #about-us .sec-sub-title {
  font-size: 1.5rem;
}

  #works p, #service p, #about-us p {
    font-size: 1rem;
    
  }

  #service .ad-icon {
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  
}

/* News */

#news .content-text h3 {
  text-align: center;
  font-size: 1.5rem;


}


#news .event-details {
  font-size: 1rem;
}

#news .content .content-text .ticket .ticket-info li {
  letter-spacing: -.5px;

  font-size: 1rem;
}

#news .btn {
  display: block;
  width: 40%;
  padding: 1rem 2rem;
  background-color: #ff9100;
  color: #fff;
  border-radius: .5rem;
  text-decoration: none;
  font-weight: bold;
  text-align: center;
  margin: 2rem auto 0;
}
}

/*------------------------------------------------------------------------------
  Company Page
------------------------------------------------------------------------------*/
.company-page .company-content {
  background-color: #1D2088;
  font-size: 1.5rem;
  margin-bottom: 10rem;
}

.company-page .sec-title {
  font-size: 5rem;
  font-weight: 600;
  color: #1D2088;
  margin-bottom: 1rem;
  text-align: center;
}

.company-page .sec-subtitle {
  font-weight: 500;
  font-size: 1.5rem;
  color: #1D2088;
  text-align: center;
  margin-bottom: 2rem;
}



.company-page .company-content .company-content-inner {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding-top: 2rem;
  padding-bottom: 2rem;
  
}

.company-page .company-content .company-content-inner dt {
  width: 15%;
  color: #fff;
  font-weight: 400;
  margin-bottom: 1rem;
  border-bottom: #0069c2 3px solid;
  padding-bottom: 1rem;
  text-align-last: justify;
  padding: 0 1.5rem;
}

.company-page .company-content .company-content-inner dd {
  width: 85%;
  color: #fff;
  font-weight: 400;
  margin-bottom: 1rem;
  padding-left: 2rem;
  padding-bottom: .5rem;
  border-bottom: #fff 3px solid;
}

.company-page {
  margin-bottom: 2rem;
}

.company-page .message {
  margin-bottom: 10rem;
  
}

.company-page .ceo-message {
  font-family: serif;
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 3rem;
}

.company-page .ceo {
  display: flex;
  font-family: serif;
  text-align: right;
  align-items: center;
  justify-content: end;
  
}

.company-page .role {
  font-size: 1rem;
  
}

.company-page .ceo .name {
  font-weight: bold;
  font-size: 1.5rem;
  margin-left: .5rem;
  margin-left: 1rem;
}

.company-page #access .company-map {
  max-width: 1000px;
}


@media (max-width: 1000px) {
  .company-page .company-content .company-content-inner {
    margin: 0 10px;
    margin-bottom: 6rem;
}
.company-page #access .company-map {
  width: 100%;

}


.company-page .company-content .company-content-inner {
  font-size: 1.2rem;
}

.company-page .company-content .company-content-inner dt {
  width: 20%;
}

.company-page .company-content .company-content-inner dd {
  width: 80%;
  color: #fff;
  font-weight: 400;
  margin-bottom: 1rem;
  padding-left: 2rem;
  padding-bottom: .5rem;
  border-bottom: #fff 3px solid;
}

}

@media (max-width: 500px) {
  .company-page .sec-title {
  font-size: 3rem;
  margin-bottom: .5rem;
}

.company-page .sec-subtitle {
  font-weight: 500;
  font-size: 1.2rem;}


.company-page .company-content .company-content-inner {
  font-size: 1rem;
  padding-left: 0;
}

.company-page .company-content .company-content-inner dt {
  width: 27.5%;
  font-size: .75rem;
  padding: 0.5 0rem 0.5rem 0rem;
  padding-left: ;
  align-items: center;
}

.company-page .company-content .company-content-inner dd {
  width: 72.5%;
  font-size: .9rem;
  padding-bottom: 0.5rem;
  padding-left: .5rem;
  line-height: 1.2;
}

.company-page .ceo-message {
  font-family: serif;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}



}


/*------------------------------------------------------------------------------
  News Page
------------------------------------------------------------------------------*/
.news-page .news-title {
  display: flex;
  justify-content: center;
  padding-bottom: .5rem;
  margin-bottom: 2rem;
  
}
.news-page .icon {
  width: 40px;
}

.news-page .icon img {
  display: inline-block;
}

.news-page .news-title h2 {
  font-size: 2rem;
  font-weight: bold;
  color: #000000;
  margin-left: 10px;
}

.news-page .news-page__mv {
  width: 100%;
  height: auto;
  line-height: 1;
  padding-bottom: 2rem;

}

.news-page .news-page__content-inner {
  background-color: #ff9100;
  padding: 2rem 1rem;
  margin-bottom: 5rem;
}

.news-page .news-page__content-inner .sec-title {
  font-size: 3rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 800;
  text-align: center;
  padding-bottom: 2rem;
}

.news-page .news-page__content-inner .news-page__detail {
  display: flex;
  width: 100%;
  background-color: #fff;
  border-top: #000000 3px solid;
  border-bottom: #000000 3px solid;
  padding: 2rem 1.5rem;
  line-height: 1.5;
  font-size: 1.2rem;
  font-weight: 900;
  margin-bottom: 2rem;
}

.news-page .news-page__content-inner .news-page__detail dt {
  width: 20%;
  color: #000;
  font-weight: 500;
  margin-bottom: 1rem;
  padding: 0.5rem 1rem;
  text-align-last: justify;
}

.news-page .news-page__content-inner .news-page__detail dd {
  width: 80%;
  color: #000;
  font-weight: 400;
  margin-bottom: 1rem;
  padding: 0.5rem 1rem;
}

.news-page .news-page__content-inner .news-page__detail .event-details1 , .news-page .news-page__content-inner .news-page__detail .event-details2 {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
} 

.news-page .news-page__content-inner .warnning {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.3;
  color: #000;

}

.news-page .sales {

}

.news-page .sales .sales-title {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-align: center;
  margin-bottom: 2rem;
}

.news-page .sales .sales-store {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-top: #000000 3px solid;
  border-bottom: #000000 3px solid;
  padding: 2rem 1.5rem;
  margin-bottom: 5rem;
}

.news-page .sales .sales-store .sales-store1 , .news-page .sales .sales-store .sales-store2 {
  width: 49.5%;
  padding: 1rem;

}

.news-page .sales .sales-store .sales-store1 h3, .news-page .sales .sales-store .sales-store2 h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 2rem;
  background-color: #1D2088;
  color: #fff;
  padding: .5rem;
  width: 50%;
  text-align: center;
}

.news-page .sales .sales-store dl {
  display: flex;
  flex-wrap: wrap;
}

.news-page .sales .sales-store .sales-store1 {
  background-color: rgb(255, 240, 181);
  
}

.news-page .sales .sales-store .sales-store2 {
  background-color: rgb(233, 209, 252);
}

.news-page .sales .sales-store .sales-store1 dt {
  width: 50%;
  align-content: center;
  margin-bottom: 1rem;
}

.news-page .sales .sales-store .sales-store1 dd {
  width: 30%;
  margin-bottom: 1rem;
}

.news-page .sales .sales-store .sales-store2 dt {
  width: 50%;
  margin-bottom: 1rem;

}

.news-page .sales .sales-store .sales-store2 dd {

}

.news-page .sales .sales-store .sales-store1 p {
  font-size: .8rem;
  line-height: 1;
}

.news-page .line {
  background-color: #38d430;
  padding: 2rem;
  
}

.news-page .line .line-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
}

.news-page .line .line-inner h3 {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  margin-right: 2rem;
  text-align: center;
  line-height: 1.5;
}

.news-page .line .line-inner a {
  display: block;
  width: 150px;
}

.news-page .line p {
  font-size: 1.2rem;
  color: #fff;
  line-height: 1.5;
  text-align: center;
}

@media (max-width: 500px) {
  .news-page .news-page__content-inner .sec-title {
    font-size: 1.8rem;
  }
  .news-page .news-page__content-inner .news-page__detail {
    flex-direction: column;
    flex-wrap: wrap;
    width: 100%;
    padding: 1.5rem 1rem;
    
  }
  .news-page .news-page__content-inner .news-page__detail dt {
    width: 10%;
    font-size: .9rem;
    padding: 0;
  }
  .news-page .news-page__content-inner .news-page__detail dd {
    width: 84%;
    font-size: 1rem;
    padding: 0;
    margin-left: 1rem;
  }
  .news-page .news-page__content-inner .warnning {
    font-size: .8rem;
  }
  .news-page .sales .sales-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }

  .news-page .sales .sales-store {
  flex-direction: column;
  flex-wrap: wrap;
  }
  .news-page .sales .sales-store .sales-store1, .news-page .sales .sales-store .sales-store2 {
    width: 100%;
    margin-bottom: 2rem;
  }
  .news-page .sales .sales-store .sales-store2 dt {
  width: 55%;
  }
  .news-page .sales .sales-store {
    padding: .2rem;
  }

  .news-page .sales .sales-store .sales-store1 h3 {
    width: 70%;
  }
  .news-page .sales .sales-store .sales-store1 dt {
    width: 70%;
  }

  .news-page .line .line-inner h3 {
    font-size: 1rem;
    
  }
  .news-page .line .line-inner a {
    width: 100px;
  }
  .news-page .line p {
    font-size: 1rem;
    color: #fff;
    line-height: 1.5;
    text-align: left;
  }

}

/*------------------------------------------------------------------------------
  service-page
------------------------------------------------------------------------------*/
#service-page {
  padding: 5rem 0 10rem;
  
}


#service-page .sec-title {
  font-size: 5rem;
  font-weight: 600;
  color: #1D2088;
  text-align: center;
}


#service-page .sub-title {
  font-weight: 500;
  font-size: 1.5rem;
  color: #1D2088;
  text-align: center;
  margin-bottom: 6rem;
}


#service-page .service-container {
  display: flex;
  justify-content: space-between;
  width: 80%;
  margin: 0 auto;
  margin-bottom: 5rem;
  }


#service-page .service-container .service-content {
  color: #1D2088;
  width: 46%;
  
}

#service-page .service-container .service-content .service-title {
  font-size: 2.5rem;
  font-weight: 600;
  padding: 0 .75rem;
  margin-bottom: 1.5rem;
  border-bottom: #1D2088 8px solid;
}

#service-page .service-container .service-content li {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  padding-left: 1rem;
}

#service-page .service-container .service-content li .small {
  font-size: 1rem;
}

#service-page .service-container .service-content li:before {
  content: "";
  position: absolute;
  top: .25rem;
  left: 0;
  width: 10px;
  height: 10px;
  background-color: #1D2088;
  border-radius: 50%;
}



#service-page .service-coment {

  margin-top: 15rem;
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 2rem;
  color: #1D2088;
  text-align: center;

}
 #service-page .service-coment-container {

  margin: 0 auto;
  padding: 3rem 1rem ;
  border-top: #1D2088 8px solid;
  border-bottom: #1D2088 8px solid;
  font-family: "Noto Serif JP", serif;
  font-size: 1.25rem;
  line-height: 2;
  color: #1D2088;
  display: flex;
  margin-bottom: 5rem;

 }

  #service-page .service-coment-container .service-coment-content {
    margin-right: 5rem;
    width: 100%;
  }
  

  #service-page .service-coment-container .service-coment-content p{
    margin-bottom: 1rem;

  }

  
    #service-page .service-coment-container .service-coment-content:last-child {
    margin-right: 0;
    }

@media (max-width: 1000px) {
  #service-page {
    padding: 0 1.5rem;
  }
  #service-page .service-coment {
    font-size: 2.3rem;
  }
  #service-page .service-container .service-content .service-title {
    font-size: 2rem;
  }
}
@media (max-width: 500px) {
  #service-page .sec-title{
    font-size: 3rem;
  }
  #service-page .sub-title{
    font-size: 1.8rem;
  }
  #service-page .service-container {
  flex-direction: column; 
  margin-bottom: 0;
  }
  #service-page .service-container .service-content .service-title {
    
    padding-bottom: .25rem;
  }
  #service-page .service-container .service-content {
    width: 100%;
    margin:0 0 2rem 0;
  }
  #service-page .service-container .service-content .service-title {
    display: inline-block;
  }
  #service-page .service-coment {
  font-size: 1.5rem;
  margin-top: 4rem;
  }
  #service-page .service-coment-container {
  flex-direction: column;
  line-height: 1.5;
  padding: 2rem 1rem ;
  }
}


/*------------------------------------------------------------------------------
  Contact-page
------------------------------------------------------------------------------*/



#contact-page {
  width: 80%;
  text-align: center;
  padding: 3rem 0;
  
}


#contact-page .sec-title {
  font-size: 5rem;
  font-weight: 600;
  color: #1D2088;
  text-align: center;
}


#contact-page .sub-title {
  font-weight: 500;
  font-size: 1.5rem;
  color: #1D2088;
  text-align: center;
  margin-bottom: 2rem;
}


#contact-page p {
  line-height: 1.5;
  margin-bottom: 3rem;
}




#contact-page .privacy {
  margin: 0 auto;
  width: 80%;
  height: 100px;
  border: 1px solid #837a7a;
  overflow-y: scroll;
  text-align: left;
  margin-bottom: 5rem;
  border-radius: 5px;  
}


#contact-page h4 {  
  width: 80%;
  border-left: solid 3px #1D2088;
  padding-left: 10px;
  font-size: .9rem;
  margin: 0 auto .5rem;
  text-align: left;
}

#contact-page .privacy .privacy-txt {
  font-size: .7rem;
  line-height: 1.25;
  padding: .25rem;
}


/* Google Formsの調整１ */
/* ------------------------------------ */
/* フォーム共通書式 */
/* ------------------------------------ */
/* labelタグ：項目のラベルと入力欄を囲うタグ */
.form_block {
  width: 100%;
  display: grid;
  grid-template-columns: 4rem 1fr;
  padding: 1rem;
  align-items: center;
  height: 5rem;
  text-align: left;
  margin-bottom: 2rem;
  
}


.form_label {
  width: 4.5rem;
  padding: 0 .25rem;
  text-align-last: justify;
  margin-right: 3rem;
}


/* 必須アイコン */
.form-required {
  width: 4rem;
  margin-top: .25rem;
  color: #fff;
  background-color: #1D2088;
  padding: .25rem 1rem;
  font-size: .8rem;
  border-radius: 3px;
  display: block;
  text-align: center;
  margin-right: 0rem;
}
/* 入力欄 */
.form_field {
  width: 90%;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 1rem 1rem;
  margin-left: 2rem;
}

@media (max-width:1000px) {
  #contact-page {
    padding: 0 0;
  }
  .form_field {
  width: 90%;
  margin-left: 2rem;
  }
  .form-required , .form_label{
  }
}

@media (max-width:500px) {
  #contact-page {
  width: 100%;
  padding: 0 1rem;
  }
  #contact-page .sec-title {
    font-size: 3rem;
  }
  #contact-page p{
    text-align: left;
    padding: 0 1rem;
  }
  .form_field {
  width: 90%;
  margin-left: 1.5rem;
}
  #contact-page .privacy {
  width: 90%;
  }
}

/* ------------------------------------ */
/* 段落入力 */
/* ------------------------------------ */
.form_block.--textfield {
  align-items: start;
  height: auto;
}
.form_field.--textfield {
  height: 20em;
  resize: none;
}
/* ------------------------------------ */
/* 送信ボタン */
/* ------------------------------------ */
.form-btn{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 12rem;
  height: 3rem;
  font-size: 1rem;
  background-color: #1D2088;
  border-radius: .5rem;
  color: #fff;
  margin-left: auto;
  margin-right: auto;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

/*------------------------------------------------------------------------------
  thanks-page
------------------------------------------------------------------------------*/
#thanks-page {
  padding: 5rem 0;
  text-align: center;
}

#thanks-page .sec-title {
  font-size: 2rem;
  margin-bottom: 5rem;
  font-weight: 600;
}

#thanks-page .btn {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: #1D2088;
  color: #fff;
  border-radius: .5rem;
  text-decoration: none;
  font-weight: bold;
  text-align: center;
  margin: 2rem auto 0;
}

#thanks-page p {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}

#thanks-page .kaigyou {
  display: none;
}

@media (max-width:1000px) {
  #thanks-page {
    padding: 1rem;
  }  
  #thanks-page .sec-title {
    font-size: 1.8rem;
    line-height: 1.2;
}
  #thanks-page .kaigyou {
  display: block;
}
}


/*------------------------------------------------------------------------------
  livestremaing
------------------------------------------------------------------------------*/

#livestreaming {
  padding: 5rem 0 10rem;
  
}


#livestreaming .sec-title {
  font-size: 5rem;
  font-weight: 600;
  color: #1D2088;
  text-align: center;
}


#livestreaming .sub-title {
  font-weight: 500;
  font-size: 1.5rem;
  color: #1D2088;
  text-align: center;
  margin-bottom: 6rem;
}

.livestreaming {
  margin-bottom: 8rem;
}

#livestreaming .livestreaming .livestreaming-title {
  background-color: #1D2088;
  color: #fff;
  text-align: center;
  padding: .75rem;
  width: 55%;
  margin: 0 auto;
  margin-bottom: 2rem;
  font-size: 1.25rem;
  font-weight: 600;

}

#livestreaming .livestreaming .livestreaming-subtitle {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
  color: #1D2088;
  line-height: 1.5;
  margin-bottom: 3rem;
}

#livestreaming .livestreaming-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  
}

#livestreaming .livestreaming-content .livestreaming-contents .livestreaming-contents-img {
  position: relative;
  
}

#livestreaming .livestreaming-content .livestreaming-contents h5 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(29, 32, 136, 0.8);
  color: #fff;
  padding: .25rem;
  text-align: center;
  font-size: .9rem;
}
#livestreaming .livestreaming-content .livestreaming-contents p {
  padding: .5rem;
  line-height: 1.5;
}

#livestreaming .hybrid {
  width: 75%;
  margin: 0 auto;
}

#livestreaming .sound {
  margin-bottom: 10rem;
}

#livestreaming .sound .livestreaming-title {
  background-color: #1D2088;
  color: #fff;
  text-align: center;
  padding: .75rem;
  width: 55%;
  margin: 0 auto;
  margin-bottom: 2rem;
  font-size: 1.25rem;
  font-weight: 600;

}

#livestreaming .sound .livestreaming-subtitle {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
  color: #1D2088;
  line-height: 1.5;
  margin-bottom: 3rem;
}
#livestreaming .sound .sound-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 3rem;
}

#livestreaming .sound .sound-content .sound-contents img{
  border: #1D2088 3px solid;
  margin-bottom: .5rem;
}

#livestreaming .sound .sound-content h5 {
  text-align: center;
  font-size: .8rem;
}

#livestreaming .achievements {

}

#livestreaming .achievements .livestreaming-title {
  background-color: #1D2088;
  color: #fff;
  text-align: center;
  padding: .75rem;
  width: 55%;
  margin: 0 auto;
  margin-bottom: 2rem;
  font-size: 1.25rem;
  font-weight: 600;

}

#livestreaming .achievements .achievements-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .75rem;
  margin-bottom: 3rem;
}

#livestreaming .achievements .achievements-content li {
  
}
#livestreaming .achievements .achievements-content li img {
  width: 100%;
  height: auto;
}
#livestreaming .achievements .achievements-content li h5 {
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(29, 32, 136, 1);
  color: #fff;
  padding: .25rem;
  text-align: center;
  font-size: .9rem;
  margin-bottom: .5rem;
}

#livestreaming .achievements .achievements-content li h6 {
  text-align: center;
  color: #1D2088;
  font-weight: 600;
  margin-bottom: .5rem;
}

#livestreaming .achievements .achievements-content li p {
  line-height: 1.5;
  font-size: .7rem;
  color: #000;
}


#livestreaming .achievements p {
  text-align: center;
  font-size: 1.5rem;
}

#livestreaming-price {

}

#livestreaming-price .sec-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: #1D2088;
  text-align: center;
  border-bottom: #1D2088 10px solid;
  margin: 0 auto 3rem;
  padding-bottom: .75rem;
  width: 25%;
}

#livestreaming-price .livestreaming-price-plan {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .5rem;
  margin-bottom: 3rem;
}

#livestreaming-price .livestreaming-price-plan .plan {
  border: #1D2088 3px solid;
  padding: 1rem;
  text-align: center;
}

#livestreaming-price .livestreaming-price-plan .plan h3 {
  margin: .75rem auto;
  width: 70%;
  font-size: 1.5rem;
  color: #1D2088;
  font-weight: 700;
  margin-bottom: .5rem;
  border-bottom: #1D2088 3px solid;
  padding-bottom: .5rem;

}

#livestreaming-price .livestreaming-price-plan .plan .livestreaming-subtitle {
  font-size: .75rem;
  color: #1D2088;
  font-weight: 600;
  margin-bottom: 2rem;
  height: 1rem;
}

#livestreaming-price .livestreaming-price-plan .plan .price {
  font-size: 2rem;
  color: #1D2088;
  font-weight: 600;
  margin-bottom: 2rem;
}

#livestreaming-price .livestreaming-price-plan .plan dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 1rem;
  color: #1D2088;
  height: 9rem;
}
#livestreaming-price .livestreaming-price-plan .plan dl dt {
  margin-bottom: 1rem;
  padding-right: 1rem;
  text-align: right;
  width: 50%;
  font-weight: 600;
}
#livestreaming-price .livestreaming-price-plan .plan dl dd {
  margin-bottom: 1rem;
  text-align: left;
  width: 50%;
  font-weight: 600;
}

#livestreaming-price .livestreaming-price-plan .plan p {
  margin-bottom: 1rem;
  color: #1D2088;
  font-weight: 600;
}

#livestreaming-price .livestreaming-price-common h3 {
  margin: 0 auto;
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
  border-bottom: #1D2088 3px solid;
  padding-bottom: .5rem;
  width: 20%;
  color: #1D2088;
  font-weight: 600;
}


#livestreaming-price .livestreaming-price-common ul {
  padding: 0 8rem;
  margin-bottom: 3rem;
  color: #1D2088;
}

#livestreaming-price .livestreaming-price-common ul li {
  list-style: circle;
  margin-bottom: .5rem;
}

#livestreaming-price p {
  text-align: center;
  line-height: 1.5;
  color: #1D2088;
  margin-bottom: 2rem;
}

@media (max-width: 1050px) {
  #livestreaming {
    padding: 0 1.5rem;
  }

#livestreaming .livestreaming .livestreaming-title {
  padding: .5rem;
  width: 80%;
  margin-bottom: 1rem;
  
  }

#livestreaming .livestreaming .livestreaming-subtitle {
  font-size: 1.2rem;
  }

  #livestreaming .livestreaming-content {
    grid-template-columns: repeat(2, 1fr);
  }
  

  #livestreaming .sound .sound-content {
    grid-template-columns: repeat(2, 1fr);
  }

  #livestreaming .achievements .achievements-content {
    grid-template-columns: repeat(2, 1fr);
  }

  #livestreaming-price .sec-title {
    margin-top: 8rem;
    font-size: 2rem;
    width: 40%;
  }
  
  #livestreaming-price .livestreaming-price-common h3 {
    width: 30%;
  }

  #livestreaming-price .livestreaming-price-common ul {
    padding: 0 3rem;
  }
  
}

@media (max-width: 500px) {
#livestreaming .sec-title {
  font-size: 3rem;
}

#livestreaming .sub-title {
  font-size: 1rem;
  margin-bottom: 2rem;
}

#livestreaming .livestreaming .livestreaming-title {
  width: 100%;
  padding: .5rem;
  margin-bottom: 1rem;
}

#livestreaming .livestreaming .livestreaming-subtitle {
  font-size: 1.2rem;
  line-height: 1.2;
  text-align: left;
  margin-bottom: 1.5rem;
}

#livestreaming .livestreaming .livestreaming-content {
  margin-bottom: 1rem;
}

#livestreaming .livestreaming .livestreaming-content .livestreaming-contents .livestreaming-contents-img h5 {
  font-size: .8rem;
}

#livestreaming .livestreaming .livestreaming-content .livestreaming-contents p {
  font-size: .8rem;
  line-height: 1.2;
  padding: .5rem 0;
}

#livestreaming .sound .livestreaming-subtitle{
  font-size: 1.2rem;
  }

#livestreaming .achievements .achievements-content li h5 {
  font-size: .8rem;
}
#livestreaming .achievements .achievements-content li h6 {
  font-size: .75rem;
}
#livestreaming .achievements .achievements-content li p {
  text-align: left;
}

#livestreaming .achievements p {
  font-size: 1rem;
}

  #livestreaming-price .livestreaming-price-plan {
    overflow-x: scroll;
  }
  #livestreaming-price .livestreaming-price-plan .none {
    display: none;
  }
  #livestreaming-price .livestreaming-price-plan .plan h3 {
    width: 100%;
  }

  #livestreaming-price .livestreaming-price-plan .plan .livestreaming-subtitle {
    height: 4rem;
    text-align: left;
  }
  #livestreaming-price .sec-title {
    width: 60%;
    margin-bottom: 1rem;
  }  

    #livestreaming-price .livestreaming-price-common h3 {
    width: 50%;
  }

  #livestreaming-price .livestreaming-price-common ul {
    padding: 0 .5rem;
  }

  
}
