@charset "utf-8";

/* ==============================

1. Common
2. Header
3. Button
4. Footer
5. Section
    5-1. Section01
    5-2. Section02
    5-3. Section03
    5-4. Section04

============================== */


/* ====================

    1. Common

==================== */

html{
}

body {
  margin: 0;
  background-color: #ffffff;
}

body { 
  background: url("../images/bg_pc.jpg") center top no-repeat fixed; 
    background-size: cover;
    background-position: center;
}

.wrap {
  background-color: #fff;
  width: 100vw;
  margin: 0 auto;
  font-family: 'ヒラギノ角ゴ Pro W3','hiragino-kaku-gothic-pron',sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-wrap: break-word;
  text-align: justify;
  box-shadow: 1px 0 5px #ccc;
}

.inner{
  width: 60%;
  margin: 0 auto;
}

.align-center {
  text-align: center;
}
.align-right{
  text-align: right;  
}

img {
  width: 100%;
  height:auto;
  vertical-align: bottom;
}
figure{ margin: 0;}
li { list-style: none; }
h1,h2,h3,p,ul { margin: 0 auto; }
ul{ padding: 0;}
p { line-height: 1.7; }
.furigana{font-size: 0.6em; margin-left: 0.5em;}
.mark-yellow{background:linear-gradient(transparent 50%,#f9dd6c 50%);}
.bold{font-weight: bold;}

@media screen and (max-width:768px) {
  .wrap {
    width: 100%;
  }
  .inner{
    width: 90%;
    margin: 0 auto;
  }
}
@media screen and (max-width:600px) {
  p { line-height: 1.6; }
}




/* ====================

    2. Header

==================== */

.loop_wrap {
  display: flex;
  width: 100vw;
  overflow: hidden;
}

.loop_wrap img {
  width: 100%;
}

.loop_wrap ul {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row nowrap;
    flex-flow: row nowrap;
    width: 100%;
    margin: 0;
    padding: 0;
}
.loop_wrap li {
  display: inline-block;
  margin: 0;
  list-style: none;
  text-align: center;
  width: calc(100vw / 6);
}

@keyframes loop {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.loop_wrap ul {
  animation: loop 50s infinite linear 0.5s both;
}

@media screen and (max-width:768px) {
  .loop_wrap li {
    display: inline-block;
    margin: 0;
    list-style: none;
    text-align: center;
    width: calc(100vw / 3);
  }
  .loop_wrap ul {
    width: 250%;
  }
}

/* --------------------

    3. Button

-------------------- */
img.btn_animate01 {
margin: 0 auto;
animation: fuwafuwa 1s ease 0s infinite alternate;
transform-origin:center;
cursor: pointer;
}
@keyframes fuwafuwa {
from {transform: scale(0.9,0.9);}
to {transform: scale(1,1);}
}
.sp-ft-button{
  height: 3rem;
  width: 80%;
  font-size: 1.7rem;
  color: #fff;
  text-decoration: none;
  border-radius: 80px;
  border: 0.5px #58a880 solid;
  text-align: center;
  font-family: "toppan-bunkyu-midashi-go-std", sans-serif;
  font-weight: 900;
  font-style: normal;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.48);
  letter-spacing: 0.05rem;
  background: url(../images/btn_bg.jpg);
  background-size: 14%;
  z-index: 10;  
  align-items: center;
  display: flex;
  justify-content: center;
}
.sp-ft-button .text {
    width: 95%; 
 }
.sp-ft-button .triangle {
    width: 5%;
    margin-left: 5px;
}
@media screen and (max-width:767px) {
  .sp-ft-button{
    padding: 0.5em 1.2em;
    letter-spacing: 0.05rem;
  }
}
@media screen and (max-width:600px) {
  .sp-ft-button{
    padding: 1rem 2.5rem;
    line-height: 3rem;
  }
}
@media screen and (max-width:400px) {
  .sp-ft-button{
    font-size: 1.9rem;
  }
}
@media screen and (max-width:376px) {
  .sp-ft-button{
    padding: 0.5rem 2rem;
    font-size: 1.4rem;
    line-height: 2rem;
   }
}
@media screen and (max-width:415px) {
  .sp-ft-button{
    width: 80%;
  }
}
@media screen and (max-width:390px) {
  .sp-ft-button{
    width: 85%;
  }
}

/* --------------------

    4. Footer

-------------------- */
.footer {
  background:#333333;
  text-align: center;
  padding: 2rem 0;
  color: #fff;
  font-size: 15px;
  font-weight: 300;
  font-style: normal;
}
.footer div{
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}
.footer div a{
  margin: 0 20px;
}

@media screen and (max-width:767px) {
  .footer {
    padding-bottom: 65px;
  }
  
  .footer p{
    margin-bottom: 0.5em;
    margin-top: 0.5em;
  }
}

@media screen and (max-width:600px) {
  .footer {
    padding: 20px;
  }
  .footer div{
    flex-direction: column;
  }
  .footer div a{
    margin: 2px 20px;
  }
  #ft-cta-button img{
    width: 95%;
  }
}

ul.footernav {
    padding-left: 0;
    font-size: 13px;
}

.footer .footernav li {
    display: inline-block;
}
.footer ul li {
    list-style: none;
    margin:0 10px;
}

.footer a {
  color: #fff;
  text-decoration: none
}

.footer a:hover {
  text-decoration: underline
}

@media screen and (max-width:767px) {
  .footer .copyright {
    font-size: 13px
  }
}

.btn_cta_sp, .sp-only{
  display: none;
}

.pc-only{
  display: block;
}

.btn_cta_sp_wrapper{
  position: static;
}

.btn_cta_sp{
  display: none;
}

@media screen and (max-width:719px) {  
  .sp-only{
    display: block;
  }
  
  .pc-only{
    display: none;
  }
  
  .btn_cta_sp{
    opacity: 0; /* 初めは非表示 */
    transition: opacity 0.3s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

/* --------------------

    5. Section

-------------------- */
/* --- 5-0. CTA --- */
.cta{
  background: url("../images/sec00/cta-back.jpg") center top no-repeat fixed; 
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 4rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cta .inner{
  width: 40%;
  margin: 0 auto;
}
.btn{
  text-align: center;
  margin: 30px auto 0;
}
@media screen and (max-width:768px) {  
  .cta{
    padding: 2rem 0;
    background: url("../images/sec00/cta-back.jpg") center top no-repeat;
    background-size: cover;
  }
  .cta .inner{
    width: 60%;
  }
  .btn{
    width: 90%;
    margin: 2rem auto 0;
  }
}
@media screen and (max-width:600px) {  
  .cta .inner{
    width: 85%;
  }
  .btn{
    width: 100%;
    margin: 1rem auto 0;
  }
}
/* --- 5-1. Section01 --- */
.sec01{
  background: url("../images/sec01/sec01-bg.jpg") center top no-repeat fixed; 
  background-size: cover;
  background-position: center;
  padding: 4rem 0;
}
.sec01 h2{
  width: 60%;
}
.sec01 p{
  background-color: #fff;
  opacity: 0.8;
  box-shadow: 0px 0px 18px 4px rgba(0, 0, 0, 0.25);
  padding: 30px;
  margin-top: 45px;
}

@media screen and (max-width:768px) {  
  .sec01{
    padding: 3rem 0;
    background: url("../images/sec01/sec01-bg.jpg") center top no-repeat;
    background-size: cover;
  }
  .sec01 h2{
    width: 70%;
  }
}
@media screen and (max-width:600px) {  
  .sec01{
    padding: 2rem 0;
  }
  .sec01 h2{
    width: 90%;
  }
  .sec01 p{
    margin-top: 1.5rem;
  }
}
/* --- 5-2. Section02 --- */
.sec02{
  background: url("../images/sec02/sec02-bg.jpg") center top no-repeat fixed; 
  background-size: cover;
  background-position: center;
  padding: 4rem 0;
}
.sec02 h2{
  width: 70%;
}
.sec02 p{
  background-color: #fff;
  opacity: 0.8;
  box-shadow: 0px 0px 18px 4px rgba(0, 0, 0, 0.25);
  padding: 30px;
  margin-top: 45px;
}
.sec02 .photos{
  display: flex;
  flex-direction: row;
  margin-top: 40px;
}
.sec02 .photos figure{
  width: 100%;
}
@media screen and (max-width:768px) {  
  .sec02{
    background: url("../images/sec02/sec02-bg.jpg") center top no-repeat; 
    background-size: cover;
  }
}
@media screen and (max-width:600px) {  
  .sec02{
    padding: 2rem 0;
  }
  .sec02 h2{
    width: 100%;
  }
  .sec02 p{
    margin-top: 1.5rem;
  }
}
/* --- 5-3. Section03 --- */
.sec03{
  background: url("../images/bg-fog.jpg") center top no-repeat fixed; 
  background-size: cover;
  background-position: center;
  padding: 4rem 0;
}
.sec03 h2{
  width: 70%;
  margin-bottom: 45px;
}
.judge{
  margin-bottom: 20px;
  border: 15px solid;
  border-image: linear-gradient(90deg, #2daee5, #1f2e50) 1 1;
  display: flex;
  flex-direction: row;
  padding: 40px 40px 30px 40px;
  background-color: #ffffff;
  background-image: linear-gradient(90deg, #99999912 1px, transparent 1px), linear-gradient(#99999912 1px, transparent 1px);
  background-position: 10px 10px;
  background-size: 15px 15px;
}
.person{
  display: flex;
  flex-direction: column;
  width: 50%;
}
.katagaki{
  order: 2;
  margin-left: 20px;
  margin-right: 20px;
}
.name{
  order: 3;
  font-size: 25px;
  margin: 10px 20px 0 20px;
}
.person .portrait{
  order: 1;
  margin: 0 50px 20px 0px;
  width: 75%;
}
.person .logo{
  order: 4;
  display: block;
  margin: 0 20px 0 20px;
  width: 70%;
  bottom: 7%;
  position: relative;
}
.person-inner{
  order: 2;
  background: linear-gradient(90deg, #2daee5, #1f2e50);
  padding: 10px;
  color: #fff;
  text-shadow: 1px 1px 1px #1f2e50;
  margin-left: 30px;
  bottom: 10%;
  position: relative;
  width: 75%;
}
.judge:nth-of-type(3) .logo, .judge:nth-of-type(4) .logo, .judge:nth-of-type(6) .logo{
  width: 40%;
}
.profile{
  width: 50%;
}
@media screen and (max-width:1200px) {  
  .judge:nth-of-type(5) .person-inner{
    bottom: 7%;
  }
  .judge:nth-of-type(5) .logo{
    margin: 20px 20px 0 20px;
  }
}
@media screen and (max-width:768px) {  
  .sec03{
    background: url("../images/bg-fog.jpg") center top no-repeat; 
    background-size: cover;
  }
  .person-inner {
    width: 80%;
    margin-left: 15px;
  }
  .katagaki{
    margin-left: 10px;
    margin-right: 10px; 
  }
  .name {
    margin: 10px 20px 0 10px;
  }
}
@media screen and (max-width:600px) {  
  .sec03{
    padding: 2rem 0;
  }
  .sec03 h2{
    width: 100%;
    margin-bottom: 1.5rem;
  }
  .judge{
    margin-bottom: 10px;
    border: 5px solid;
    border-image: linear-gradient(90deg, #2daee5, #1f2e50) 1 1;
    flex-direction: column;
    padding: 1rem;
  }
  .person{
    width: 100%;
  }
  .person .portrait{
    margin: 0 auto 1.5rem;
    width: 80%;
  }
  .person-inner{
    margin: 0 auto 1rem;
  }
  .katagaki{
    line-height: 1.4;
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }
  .name, .logo{
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }
  .profile{
    margin-top: 1.5rem;
    width: 90%;
  }
  .judge:nth-of-type(5) .logo{
    margin: 0 20px 0 20px;
  }
}

/* --- 5-4. Section04 --- */
.sec04{
  background: url("../images/sec04/sec04-bg.jpg") center top no-repeat fixed; 
  background-size: cover;
  background-position: center;
  padding: 4rem 0;
}
.sec04-container{
  box-shadow: 0px 0px 18px 4px rgba(0, 0, 0, 0.25);
  position: relative;
  background: #fff;
  padding-bottom: 50px;
}
.sec04 .seven-merits{
  width: 90%;
  margin-top: -100px;
  position: relative;
  z-index: 1;
}
.sec04 .merit{
  background: #efefef;
  box-shadow: 5px 5px 0px 0px rgba(204, 215, 231, 1);
  padding: 20px 20px 20px 30px;
  display: flex;
  flex-direction: row;
  margin-bottom: 10px;
}
.sec04 .merit figure{
  width: 15%;
}
.sec04 .merit figure img{
  width: 90%;
}
.sec04 h3{
  background: linear-gradient(transparent 70% , #f9dd6c 70%);
  font-weight: 600;
  margin-left: 0;
  margin-bottom: 10px;
}
.sec04 .merit-detail{
  display: flex;
  flex-direction: column;
  margin-left: 10px;
  width: 85%;
}
.sec04 .merit-detail p{
  margin-left: 0;
}
@media screen and (max-width:768px) {  
  .sec04{
    background: url("../images/sec04/sec04-bg.jpg") center top no-repeat; 
    background-size: cover;
  }
}
@media screen and (max-width:600px) {  
  .sec04{
    padding: 0;
  }
  .sec04-container{
    width: 100%;
  }
  .sec04 .seven-merits{
    margin-top: -3rem;
  }
  .sec04 .merit{
    padding: 1rem;
    flex-direction: column;
    align-items: center;
  }
  .sec04 h3{
    margin: 0 auto 10px;
    font-weight: bold;
  }
  .sec04 .merit figure img{
    width: 120%;
  }
  .sec04 .merit-detail{
    width: 95%;
    margin-left: 0;
    margin-top: 1rem;
  }
}

/*VOICE*/
/*
.voice{
  background-color: #fff;
}

.voice_ttl{
  display: flex;
  margin-right: 20px;
  width: 80%;
}

.toggle_contents {
  margin: 0 auto 100px;
}
.toggle_contents:last-child {
  margin: 0 auto 60px;
}

.toggle_title {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 50px;
  padding-right: 10px;
  background-color: #e4faff;
  cursor: pointer;
  font-size: 2.7rem;
  line-height: 1.4;
  color:#0c2449;
  font-weight: 600;
  font-style: normal;
}
.toggle_btn {
  margin-right: 10px;
  font-size: 30px;
}
.toggle_btn:before, .toggle_btn:after {
}
.toggle_btn:before {
}
.naiyou{
  display: none;
  width: 86%;
  font-size: 2.2rem;
  line-height: 3.5rem;
  padding: 20px 50px;
  font-weight: 600;
  font-style: normal;
  margin-left: 0;
  color:#0c2449;
  letter-spacing: 0.02em;
}

@media screen and (max-width:430px) {
  .toggle_contents {
    margin: 0 auto 4rem;
  }
  .toggle_contents:last-child {
    margin: 0 auto 2rem;
  }
  .toggle_title {
    font-size: 1.5rem;
    padding: 20px;
    padding-right: 5px;
  }
  .toggle_btn {
    width: 20%;
  }
  .voice_ttl{
    margin-right: 10px;
    width: 80%;
  }
  .naiyou{
    width: 85%;
    font-size: 1.4rem;
    line-height: 2rem;
    margin-left: 0;
    padding: 20px;
  }
}
*/
/* --- 5-5. Section05 --- */
.sec05{
  background: #fff;
  background-size: cover;
  background-position: center;
  padding: 4rem 0;
}
.sec05 h2{
  width: 70%;
  margin-bottom: 60px;
}
.sec05 p{
/*  font-size: 25px;*/
/*  text-align: center;*/
/*  color: #be2727;*/
/*  font-family: "yu-mincho-pr6n", sans-serif;*/
/*  font-weight: 500;*/
/*  font-style: normal;*/
}

.presenter {
  margin-bottom: 20px;
  background-color: #ffffff;
  box-shadow: 0px 0px 18px 4px rgba(0, 0, 0, 0.25);
  position: relative;
  width: 85%;
  margin: 0 auto 20px;
  padding: 0.5rem;
  background: #fff;
}
.presenter-inner{
  border: 2px solid;
  border-image: linear-gradient(90deg, #2daee5, #1f2e50) 1 1;
}
/* ヘッダー部分の配置調整 */
.presenter-header {
  display: flex;
  flex-direction: row;
  align-items: stretch; /* 子要素の高さを揃える */
  padding: 20px;
/*  padding-left: 19%;*/
}

.sec05 .portrait img {
  width: 100%;
  height: auto;
  border-radius: 50%;
  box-shadow: 0px 0px 18px 4px rgba(0, 0, 0, 0.25);
}

/* 情報とボタンを含むラッパー */
.presenter-info-wrapper {
  display: flex;
  flex-direction: column;
  padding-left: 20px;
  flex-grow: 1;
  padding: 20px;
}

.presenter-header-inner {
  color: #333;
  margin-bottom: 10px; /* 名前とプロフィールボタンの間の固定スペース */
}

.sec05 .katagaki {
  margin-bottom: 5px;
  line-height: 1.2;
}
.profile-btn-wrapper{
  background: linear-gradient(90deg, #2daee5, #1f2e50);
}
/*
.sec05 .profile-content{
  background: linear-gradient(90deg, #2daee5, #1f2e50);
}
*/


@media screen and (max-width:600px) {  
  .sec05{
    padding: 2rem 0;
  }
  .sec05 h2{
    width: 100%;
    margin-bottom: 1.5rem;
  }
  .presenter{
    width: 95%;
  }
  .presenter-header{
    flex-direction: column;
  }
  .presenter-info-wrapper {
    padding: 20px 0 20px;
    width: 100%;
    position: relative;
  }
  .sec05 .portrait{
    width: 50%;
    margin: 0 auto;
  }
}

/* --- 5-6. Section06 --- */
/*
.sec02{
  background: url("../images/sec02/sec02-bg.jpg") center top no-repeat fixed; 
  background-size: cover;
  background-position: center;
  padding: 60px 350px;
}
*/
.sec06{
  background: linear-gradient(90deg, #2daee5, #1f2e50);
  background-size: cover;
  background-position: center;
  padding: 4rem 0;
}
.sec06 h2{
  width: 70%;
  margin-bottom: 45px;
}
.sec06 .special{
  background: linear-gradient(90deg, rgba(226,200,99,1) 0%, rgba(248,227,176,1) 16%, rgba(226,200,99,1) 53%, rgba(248,227,176,1) 81%, rgba(226,200,99,1) 100%);
  padding: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  position: relative;
  margin-bottom: 30px;
}
.sec06 .special-inner{
  background: transparent;
  border: #fff solid 2px;
  position: relative;
}
.sec06 h3{
  display: flex;
  flex-direction: row;
  margin-left: 50px;
}
.sec06 .ribbon{
  margin-left: -40px;
  margin-top: -22px;
  width: 20%;
}
.sec06 .title{
  width: 77%;
  margin-top: 20px;
  margin-left: 20px;
}
.sec06 .special-inner p{
  padding: 10px 70px 25px 50px;
  font-size: 24px;
  line-height: 1.3;
  color: #222222;
  font-family: "yu-mincho-pr6n", sans-serif;
  font-weight: 500;
  font-style: normal;
}
.sec06 .photo1{
  position: absolute;
  top: -20px;
  right: 0;
  width: 32%;
}
.sec06 .photo2{
  position: absolute;
  bottom: -110px;
  right: -20px;
  width: 32%;
  z-index: 1;
}
@media screen and (max-width:1300px) {  
  .sec06 .photo2{
/*    bottom: -110px;*/
  }
}
@media screen and (max-width:768px) {  
  .sec06{
    padding: 2rem 0;
  }
  .sec06 .photo1{
    right: -2rem;
  }
  .sec06 .photo2{
    bottom: -123px;
    right: -20px;
    width: 30%;
  }
}
@media screen and (max-width:600px) {  
  .sec06{
    padding: 1.5rem 0;
  }
  .sec06 h2{
    width: 90%;
    margin-bottom: 1.5rem;
  }
  .sec06 .ribbon {
    margin-left: -3.7rem;
    margin-top: -1.2rem;
    width: 30%;
  }
  .sec06 .title{
    width: 85%;
    position: absolute;
    top: 1.8rem;
    left: 8.5rem;
    margin: 0;
  }
  .sec06 .special:nth-of-type(2) .title, .sec06 .special:nth-of-type(3) .title{
    width: 75%;
    top: 1.5rem;
  }
  .sec06 .special-inner p{
    padding: 1rem;
    font-size: 1.2rem;
  }
  .sec06 .photo2{
    top: inherit;
    bottom: -7rem;
    right: -1rem;
    width: 33%;
  }
}
@media screen and (max-width:425px) { 
  .sec06 .title{
    width: 55%;
    position: absolute;
    top: 0.8rem;
    left: 5.5rem;
    margin: 0;
  }
  .sec06 .special:nth-of-type(2) .title, .sec06 .special:nth-of-type(3) .title{
    width: 65%;
    top: 0.5rem;
  }
  .sec06 .photo2{
    top: inherit;
    bottom: -3.5rem;
    right: -1rem;
    width: 35%;
  }
}
/* --- 5-7. Section06 --- */
.sec07{
  background: url("../images/bg-fog.jpg") center top no-repeat fixed; 
  background-size: cover;
  background-position: center;
  padding: 4rem 0;
}
.sec07 h2{
  width: 70%;
}
.sec07 .gaiyou{
  background-color: #ffffff;
  background-image: linear-gradient(90deg, #99999912 1px, transparent 1px), linear-gradient(#99999912 1px, transparent 1px);
  background-position: 10px 10px;
  background-size: 15px 15px;
  padding: 40px 80px 40px;
  margin-top: -35px;
  box-shadow: 0px 0px 18px 4px rgba(0, 0, 0, 0.25);
}
.sec07 h3{
  width: 30%;
  margin-top: 60px;
  margin-bottom: 25px;
}
.sec07 .place{
  font-size: 2em;
  font-weight: 600;
  line-height: 1;
  text-align: center;
}
.sec07 .place span{
  font-size: 0.8em;
  font-weight: 300;
}
.sec07 .point{
  text-align: center;
  margin: 20px auto;
}
.sec07 .point-inner{
  display: inline-block;
  font-size: 1.2em;
  text-decoration: underline;
  line-height: 1.3;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}
.sec07 .point-inner span{
  font-weight: 700;
  color: #be2727;
}

.sec07 .layout{
  width: 50%;
  margin: 0 auto;
}

.seat {
  width: 100%;
  border-collapse: collapse;
  font-family: sans-serif;
  font-size: 1.8rem;
  margin: 0 auto;
  line-height: 1;
}

.seat th, .seat td {
  padding: 8px;
  border: 1px solid #000;
}

.seat th {
  text-align: center;
  width: 50%;
  font-weight: 500;
  background-color: #fff;
}

.seat td {
  text-align: right;
  background-color: #fff;
  padding-right: 2rem;
}

.vip th, .vip td {
  background: linear-gradient(135deg, #F2E6BC 0%, #ffffff 40%, #F2E6BC 70%, #ffffff 90%, #F2E6BC 100%);
  font-weight: bold;
  text-shadow: 3px 3px 3px #ffffff;
}

.vip th{
  color: #e46648;
}

.vip img {
  width: 45px;
  height: 45px;
  vertical-align: middle;
  margin-right: 8px;
}
.torikeshi{
  text-decoration: line-through;
  font-size: 70%;
  margin-left: 5px;
}
.seat .sp-only{
  display: none;
}

@media screen and (max-width:1300px) {  
  .seat {
    font-size: 1.5rem;
  }
  .vip img {
    width: 40px;
    height: 40px;
    margin-right: 3px;
  }
}
@media screen and (max-width:1024px) {  
  .seat {
    font-size: 1.3rem;
  }
  .vip img {
    width: 30px;
    height: 30px;
    margin-right: 3px;
  }
}

@media screen and (max-width:768px) {  
  .sec07{
    background: url("../images/bg-fog.jpg") center top no-repeat; 
    background-size: cover;
  }
}
@media screen and (max-width:600px) {  
  .sec07{
    padding: 2rem 0;
  }
  .sec07 h2{
    width: 95%;
  }
  .sec07 .gaiyou{
    padding: 2rem;
  }
  .sec07 h3{
    width: 40%;
    margin: 2rem auto 1rem;
  }
  .sec07 .place{
    font-size: 1.4em;
  }
  .sec07 .layout{
    width: 100%;
  }
.sec07 .point-inner{
  text-decoration-thickness: 0.5px;
  }
}
@media screen and (max-width:425px) {  
  .seat {
    font-size: 1rem;
  }
  .seat td {
    padding-right: 1rem;
  }
  .vip img {
    width: 20px;
    height: 20px;
    margin-right: 3px;
  }
  .seat .sp-only{
    display: block;
  }
}

/* --- 5-8. Section08 --- */
.sec08{
  background: url("../images/bg-fog.jpg") center top no-repeat fixed; 
  background-size: cover;
  background-position: center;
  padding: 4rem 0;
}
.sec08 h2{
  width: 70%;
  margin-bottom: 45px;
}
.special-presenter{
  margin-bottom: 20px;
  display: flex;
  flex-direction: row;
  padding: 40px 40px 30px 40px;
  background-color: #ffffff;
  position: relative;
}
.special-presenter:before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 120px;
  height: 120px;
  background: linear-gradient(90deg, #2daee5, #1f2e50); /* グラデーション */
  clip-path: polygon(0 0, 100% 0, 0 100%); /* 左上に三角形を描画 */
  z-index: 0; /* コンテンツより背面に配置したい場合は調整 */
}
.special-presenter::after, .presenter::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: linear-gradient(90deg, #2daee5, #1f2e50); /* グラデーション */
  clip-path: polygon(0 100%, 100% 0, 100% 100%); /* 右下の三角形 */
  z-index: 0;
}
.sec08 .person{
  display: flex;
  flex-direction: column;
  width: 50%;
  z-index: 1;
}
.sec08 .person .portrait{
  width: 60%;
  margin: 0 50px 20px 10px;
}
.sec08 .profile{
  width: 50%;
  z-index: 1;
}
.sec08 .special-presenter:nth-of-type(3) .logo{
  width: 50%;
}
@media screen and (max-width:1200px) {  
  .special-presenter:nth-of-type(3) .person-inner{
    bottom: 7%;
  }
  .special-presenter:nth-of-type(3) .logo{
    margin: 20px 20px 0 20px;
  }
}
@media screen and (max-width:768px) {  
  .sec08{
    background: url("../images/bg-fog.jpg") center top no-repeat; 
    background-size: cover;
  }
}
@media screen and (max-width:600px) {  
  .sec08{
    padding: 2rem 0;
  }
  .sec08 h2{
    width: 100%;
    margin-bottom: 1.5rem;
  }
  .special-presenter{
    margin-bottom: 10px;
    flex-direction: column;
    padding: 1rem;
  }
  .sec08 .person {
    width: 100%;
  }
  .sec08 .profile{
    width: 90%;
  }
  .sec08 .person .portrait{
    margin: 1rem auto 2rem;
  }
  .special-presenter:nth-of-type(3) .logo{
    margin: 0 20px 0 20px;
  }
}

/* --- 5-8. Section09 --- */
.sec09{
  background: url("../images/sec09/sec09-bg.jpg") center top no-repeat fixed; 
  background-size: cover;
  background-position: center;
  padding: 4rem 0;
}
.sec09 h2{
  width: 70%;
  margin-bottom: 45px;
}
.sponsor {
  margin-bottom: 20px;
  background-color: #ffffff;
  box-shadow: 0px 0px 18px 4px rgba(0, 0, 0, 0.25);
  background: linear-gradient(90deg, #2daee5, #1f2e50);
  position: relative;
  width: 85%;
  margin: 0 auto 20px;
  padding: 0.5rem;
}
.sponsor-inner{
  border: #fff 0.5px solid;
}
.sponsor-mark {
  width: 15%;
  position: absolute;
  top: 0;
  left: 10px;
}

/* ヘッダー部分の配置調整 */
.sponsor-header {
  display: flex;
  flex-direction: row;
  align-items: stretch; /* 子要素の高さを揃える */
  padding: 20px;
  padding-left: 19%;
}

.portrait {
  width: 25%;
  flex-shrink: 0; /* サイズを固定 */
}

.sec09 .portrait img {
  width: 100%;
  height: auto;
  border-radius: 50%;
  box-shadow: 0px 0px 18px 4px rgba(0, 0, 0, 0.25);
}

/* 情報とボタンを含むラッパー */
.sponsor-info-wrapper {
  display: flex;
  flex-direction: column;
  padding-left: 20px;
  flex-grow: 1;
  padding: 20px;
}

.sponsor-header-inner {
  color: #fff;
  text-shadow: 1px 1px 1px #1f2e50;
  margin-bottom: 10px; /* 名前とプロフィールボタンの間の固定スペース */
}

.sec09 .katagaki {
  margin-bottom: 5px;
  line-height: 1.2;
}

.sec09 .name {
  font-size: 1.2em;
  margin-bottom: 10px;
}

/* プロフィールボタン部分 */
.profile-details {
  margin-top: 0; /* 上部の余白を自動調整 */
  margin-left: 20px;
}

/* プロフィールボタン周りのスタイルを更新 */
.profile-toggle {
  list-style: none;
  cursor: pointer;
  padding: 0;
}

.profile-btn-wrapper {
  display: inline-flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 8px 16px;
  transition: background-color 0.3s;
}

.profile-btn-wrapper:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

.profile-btn {
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  margin-right: 10px;
}

.profile-content{
  background-color: #fff;
  padding: 15px;
  margin-top: 10px;
  border-radius: 10px;
}

/* 矢印のデフォルト状態（閉じている時）: 下向き */
.arrow {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg); /* -45度で下向き */
  transition: transform 0.3s;
}

/* 開いている時: 上向き */
details[open] .arrow {
  transform: rotate(135deg); /* 135度で上向き */
}

/* detailsのデフォルトの矢印を非表示 */
.profile-details summary {
  list-style: none;
}

.profile-details summary::-webkit-details-marker {
  display: none;
}

@media screen and (max-width:600px) {  
  .sec09 h2 {
        width: 100%;
        margin-bottom: 1.5rem;
  }
  .sponsor{
    width: 95%;
  }
  .sponsor-header{
    flex-direction: column;
  }
  .sponsor-mark{
    width: 25%;
  }
  .sponsor-info-wrapper {
    padding: 20px 0 20px;
    width: 150%;
    left: -45%;
    position: relative;
  }
  .sponsor-header{
    padding-left: 35%;
  }
  .sec09 .portrait{
    width: 75%;
  }
  .profile-content{
    width: 85%;
  }
  .profile-details{
    margin-left: 0;
  }
}
/* --- 5-10. Section10 --- */
.sec10{
  background: url("../images/bg-fog.jpg") center top no-repeat fixed; 
  background-size: cover;
  background-position: center;
  padding: 4rem 0;
}
.sec10 h2{
  margin: 0 auto 15px;
  font-size: 2rem;
  font-family: "yu-mincho-pr6n", sans-serif;
  font-weight: 500;
  font-style: normal;
  text-align: center;
}
.sec10 h2 span{
  position: relative;
}
.sec10 h2 span:before{
  content: '';
  position: absolute;
  top: 0;
  left: -20px;
  width: 20px;
  height: 33px;
  background: linear-gradient(90deg, #2daee5, #1f2e50);
  clip-path: polygon(0 0, 100% 0, 0 100%);
  z-index: 0;
}
.sec10 h2 span:after{
  content: '';
  position: absolute;
  top: 0;
  right: -25px;
  width: 20px;
  height: 33px;
  background: linear-gradient(90deg, #2daee5, #1f2e50);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  z-index: 0;
}
.sec10 h2 span{
/*
  background: linear-gradient(to right, #2daee5 0%, #1f2e50 100%);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 100% 50%;
*/
}
.host{
  margin-bottom: 20px;
  padding: 40px 40px 30px 40px;
  background-color: #ffffff;
  box-shadow: 0px 0px 18px 4px rgba(0, 0, 0, 0.25);
  padding: 0.5rem;
}
.sec10 .host-inner{
  border: 4px solid;
  border-image: linear-gradient(90deg, #2daee5, #1f2e50) 1 1;
  display: flex;
  flex-direction: column;
  padding: 20px 40px 30px 40px;
}
.sec10 .host-item{
  padding: 1rem;
  display: flex;
  flex-direction: row;
}
.sec10 .person-inner{
  margin-left: 0;
}
.sec10 .person .portrait{
  width: 90%;
}
@media screen and (max-width:768px) {  
  .sec10{
    background: url("../images/bg-fog.jpg") center top no-repeat; 
    background-size: cover;
  }
}
@media screen and (max-width:600px) {  
  .sec10{
    padding: 2rem 0;
  }
  .sec10 h2{
    width: 100%;
    margin-bottom: 1.5rem;
    font-size: 1.7rem;
  }
  .sec10 .host-inner{
    padding: 1rem;
  }
  .sec10 .host-item{
    flex-direction: column;
    padding: 0;
  }
  .sec10 .person .portrait{
    margin-bottom: -3rem;
  }
  .sec10 .person-inner{
    margin: 0 auto;
    width: 100%;
  }
}