/* popup関係 */
html {
  color: #333333;
}
.cell-list {
  width: 100%;
  height: 100%;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 16px;
  display: inline-flex;
  margin-bottom: 16px;
  
}

.cell-image {
  width: 100px;
  height: 100px;
  position: relative;
  transform: rotate(180deg);
  transform-origin: 0 0;
}

.body-bg{
  position: relative;
  margin-top: 52px;
  

}

.hamburger-parent{
  display: none;

}


.welcome-image{
  display: inline-flex;
  /* transform: rotate(8.586deg); */
  position: absolute;
  right: 290px;
  top: -48px;
  justify-content: center;
  align-items: flex-end;
  width: 344px;
  gap: 6.41px;
}

.cell-image img {
  width: 100%;
  height: auto; /* 画像のアスペクト比を保持 */
  transform: rotate(180deg); /* 必要に応じて画像を180度回転 */
  transform-origin: 0 0;
}

.cell-good {
  background: #0071BB;
}

.cell-bad{
  background: #E47059;
}
.icon-inner {
  width: 100px;
  height: 100px;
  left: 0;
  top: 0;
  position: absolute;
  transform: rotate(180deg);
  transform-origin: 0 0;
  background: #D9D9D9;
  border-radius: 8px;
}

.text-section {
  flex: 1 1 0;
  height: 85px;
  border-bottom: 1px #333 dotted;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 8px;
  display: inline-flex;
}

.label {
  padding: 4px 16px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  display: inline-flex;
  color: white;
  font-size: 12px;
  font-family: Noto Sans JP;
  font-weight: 500;
  line-height: 14px;
  word-wrap: break-word;
}

.text-content {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.text {
  justify-content: center;
  align-items: center;
  gap: 10px;
  display: inline-flex;
  color: #333;
  font-family: Noto Sans JP;
  font-weight: 400;
  line-height: 15px;
  word-wrap: break-word;
}

.text-large {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
}




svg{
  overflow: visible;

}

.container{
    display: flex;
    flex-direction: column;
    padding: 0px;
    margin: 0px;
    align-items: center;
}

.h2-title{
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: visible;


}

.h2-title{
  display: flex;
  flex-direction: column;
  align-items: center;

}


.bg{
    background-color: #FFEFEC;
}

.body-pc{
display: inline;
width: 951px;
height: 1593px;
}

.body-sp{
display: none;
margin: 0;

}

header{
  display: flex;
padding: 16px 0px;
justify-content: center;
align-items: center;
gap: 40px;
transform-origin: center;

}

.menu-content{
  font-family: "Noto Sans JP";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  }

  .credit{
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 200%; /* 32px */

  }

  .inspection-image{
    width:450.273px;
    height:273px;
  }

.button{
  --svg-fill-color: #FFFFFF; /* 初期色を白に設定 */
    border-radius: 100px;
    box-sizing: border-box;
    background: #169757;
    border: 2px solid #169757;

    color: #FFFFFF;
  padding: 16px 40px;
  margin-right: 40px;
    text-decoration: none;
    text-align: center;
    gap:10px;


}

.button svg {
  fill: var(--svg-fill-color, #FFFFFF);
  
}

.button-text{
  font-family: "Noto Sans JP";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;

}

.button:hover{
  background: #FFFFFF;
  color: #169757;
  border: 2px solid #169757;

  --svg-fill-color: #169757;
}


.top-image{
  width: 777px;
  height: 384px;
  flex-shrink: 0;
  position: relative;
  animation: zoomIn 1.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  background-image: url('assets/top.png');
  background-size: 425px 366px;
  /* 背景の繰り返しなし */
  background-repeat: no-repeat;
  /* 背景を要素野中央に配置 */
  background-position: center;

}
.beetle{
  position:  absolute;        /* 要素の配置方法を指定 */
  left: -80px;   
  top: 257px;
  height: 180px;                  /* 上からの位置指定 */

}
.penguin{
  position:  absolute;        /* 要素の配置方法を指定 */
  left: -28px;    
  top:0px;             
  height: 168px;

}

.boy{
  position:  absolute;        /* 要素の配置方法を指定 */
  right: -53px;    
  top: 37px;             
  height: 198px;
}

.ship{
  position:  absolute;        /* 要素の配置方法を指定 */
  right: 10px;    
  top: 237px;             
  height: 160px;
}

@keyframes zoomIn {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.slidein {
  opacity: 0; /* 初期状態では不透明度を0に設定 */
  transform: translate(0, 0); /* 初期状態では移動しない */
  transition: all 0.5s; /* アニメーションの持続時間とタイプを指定 */
  transform: translate(0, 6px); /* 下からスライドインする開始位置を指定 */

}

.slidein.slidein-bottom {
  transform: translate(0, 6px); /* 下からスライドインする開始位置を指定 */
}

/* スクロールまたはトリガーによって追加されるクラス */
.slidein.scrollin {
  transform: translate(0, 0) !important; /* 最終的な位置に移動 */
  opacity: 1 !important; /* 不透明度を1に設定して完全に表示 */
}



.bg-center{
    background-color: #FFEFEC;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.content{
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    width: 950px;
}
.container{
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 80px 16px;

    align-items: center;
}

.title-characters{
    display: flex;
    align-items: flex-end;
    margin-top: 82px;

}

a{
    text-decoration: none;
    color:inherit;
}

h2{
    margin: 0%;
    color: var(--333333, #333);
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 50px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%; /* 75px */
}


.title-underbar{
  display: inline-block; /* 要素の幅をテキストの量に合わせる */

    color: var(--333333, #333);
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%; /* 48px */
    position: relative; /* 疑似要素の位置の基準点 */


}

.title-underbar:after {
  content: ""; /* 疑似要素を表示するために必要 */
  position: absolute;
  bottom: -5px; /* テキストの下から5pxの位置 */
  left: 0;
  width: 100%; /* 要素の幅に合わせる */
  border-bottom: 4px dashed #333; /* 下線スタイル */
}


.image-elips{
  width: 120px;
  height: 120px;

}


h4{
    margin: 0%;
    color: var(--333333, #333);
    text-align: left;
    font-family: "Noto Sans JP";
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%; 
    display: flex;
}

main{
  background-image: url('assets/bg.png');
}
.main-content {
  color: var(--333333, #333);
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 180%;
}


.english{
    margin: 0%;
    color: var(--333333, #333);
    text-align: center;
    font-family: "Helvetica Neue";
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 36px */
    letter-spacing: 3.6px;
}

.box{
    display:flex;
    margin-top: 24px;
    margin-bottom: 24px;
    /* justify-content: center; */
    align-items: center;
  
  }

.right{
    flex-direction: row-reverse;
  
}
  .saiboushitsu{
    width:598px;
    margin-right: 24px;
  }
.box-left{
    display: flex;
    width: 737px;
    padding: 24px 80px 24px calc(50vw - 475px);
    flex-direction: column;
    align-items: flex-starttextarea;
    gap: 8px;
    flex-shrink: 0;
}

.box-right{
    display: flex;
    width: 737px;
    padding: 24px calc(50vw - 475px) 24px 80px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    flex-shrink: 0;
    background: #FFEFEC;

}
.bg-primary{
    background: #FFEFEC;
}
.bg-yellow{
    background: #FFFAE2;
}

.h4{
    color: #0000;
    font-family: "Noto Sans JP";
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%; /* 30px */
}



.photo{
    display: flex;
    align-items: center;
    margin-left: -67px;
    margin-right: -67px;
    width: 200px;
    height: 200px;
    z-index: 999;

}

.graph{
    width: 950px;
    margin-top: 24px;
    margin-bottom: 24px;
}

.box-textarea{
    flex-shrink: 0;
    align-self: stretch;
    text-align: left;
}
.main-content {
  color: var(--333333, #333);
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 180%;
}

.top-description {
  display: flex;
  justify-content: center;  /* 子要素を水平中央に揃えます */
  align-items: center;      /* 子要素を垂直中央に揃えます（必要に応じて） */
}

.box-description{
    color: "#000000";
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 24px */
}

.cell-size-image{
  background-image: url('assets/cell-size.png');
  width: 950px;
  height: 496px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;

}

.inspection-flow-image{
  background-image: url('assets/flow_image.png');
  width: 950px;
  height: 287px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;

}

.h3-content{
    gap: 24px;
    margin-top: 40px;
    margin-bottom: 40px;
    text-align: center; /* 中央寄せ */


}

.sub-content{
    width: 950px;
    gap: 24px;

}

.numberling{
    display: flex;
    /* float: left; */
    margin-top: 14px;
    gap: 16px;
}

.number{
    font-family: "Helvetica Neue";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px; 
}

h5{
  font-family: "Noto Sans JP";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  margin-top: 0px;
  margin-bottom: 0px;

}
.sub-title{
    position: relative; /* 疑似要素の位置の基準点 */


}

.sub-title:after {
  content: ""; /* 疑似要素を表示するために必要 */
  position: absolute;
  bottom: -5px; /* テキストの下から5pxの位置 */
  left: 0;
  width: 100%; /* 要素の幅に合わせる */
  border-bottom: 2px dashed #333; /* 下線スタイル */
}

.numberling-contnt{
    gap: 4px;
}

.insepction_top{
    width: 450.273px;
    height: 273px;
    flex-shrink: 0;
}

.about-bg {
    position: relative;
  }
  

  .blank{
height: 80px;
  }


  .about-bg::before,
  .about-bg::after {
    content: '';
    position: absolute;
    top: 0;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }
  
  .about-bg::before {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 10; 
     /* 幅を ウィンドウ幅/2-148にする */
    /* 幅を ウィンドウ幅/2-148にする */
    width: calc(50vw - 200px);
  
    height: 737px;
    background-image: url('assets/Vector-1.svg'); 
    transform: translateY(-133px);
    background-position: top left;
    
}
  
  .about-bg::after {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 10; 
    width: calc(50vw - 200px);
    height: 594px;
    background-image: url('assets/Vector.svg'); 
    transform: translateY(-72px);

    background-position: top right;
    

  }

  .inspection-bg {
    position: relative;
  }
  
  .inspection-bg::before,
  .inspection-bg::after {
    content: '';
    position: absolute;
    top: 0;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }
  
  .inspection-bg::before {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 10; 
    width: calc(50vw - 200px);
    height: 787px;
    background-image: url('assets/Vectormiddle-1.svg'); 
    transform: -133px;
    background-position: top left;
    
}
  
  .inspection-bg::after {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 10; 
    width: calc(50vw - 200px);
    height: 594px;
    background-image: url('assets/Vectormiddle.svg'); 
    transform: -72px;
    background-position: top right;

  }
  .graph-content{
    display: flex;
    gap: 36px;
    margin-top: 24x;
    margin-bottom: 24px;
    width: 950px;
    text-align: left;
  }

  .graph-description{
color: var(--333333, #333);
font-family: "Noto Sans JP";
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 150%; /* 24px */
  }
  .graph-subimage{
    width: 146px;
    height: 113px;
  }

  .bottom-content-bg {
    display: flex;
    padding: 80px 16px;
    gap: 10px;
    justify-content: center; /* 水平方向の中央揃え */

  }

  .salutation-bg{
    background: #FFE353;
  }

  .workshop-bg{
    background: #169757;
  }

  .contact-bg{
    background: #0071BB;
  }

  .infomation-bg{
    background: #FFEFEC;
  }

  .bottom-content-content{
    width: 950px;
    text-align: center;
    gap: 32px;

    display: flex;
    justify-content: center; /* 水平方向の中央揃え */
    align-items: center; /* 垂直方向の中央揃え */
    flex-direction: column; /* 子要素を縦方向に並べる */

  }

  .box-fonttype-mini{
    color: var(--333333, #333);
    color: var(--333333, #333);
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 24px */
    }
  .salutation-image{
    width: 200px;
    height: 200px;
    margin: 32px;

  
  }
  .flip-animation{
    animation: flip 2s ease-out 0s 1; /* アニメーション: 名前, 時間, タイミング関数, 遅延, 繰り返し回数 */
    transform-style: preserve-3d;

  }

  .bottom-content-text{
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 24px */
    text-align: left
  }

  .workshop-text{
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 30px */
  }
  
  .white-text{
    color: #FFFFFF;
  }


  @keyframes flip {
    from {
      transform: rotateY(0deg);
    }
    to {
      transform: rotateY(360deg);
    }
  }
  
  .bottom-button{

    border-radius: 100px;
    width: 300px;
    padding: 15px;
    box-sizing: border-box;
    background: #FFFFFF;
    text-decoration: none;
    text-align: center;

    font-family: "Noto Sans JP";
    font-size: 20px;
    font-style: normal;
    font-weight: 700;

    transform-origin: center;

  }

  .workshop-button{
    color: #169757;
    border: 2px solid #169757;

  }
  .added-button{

    border-radius: 100px;
    width: 300px;
    padding: 15px;
    box-sizing: border-box;
    background: #FFE353;
    text-decoration: none;
    text-align: center;

    font-family: "Noto Sans JP";
    font-size: 20px;
    font-style: normal;
    font-weight: 700;

    transform-origin: center;


  }
  
  .workshop-button:hover{
    background: #169757;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
  }

.contact-button{
     color: #0071BB;
     border: 2px solid #0071BB;

}


.contact-button:hover{
    background: #0071BB;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
}

.infomation-type{
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    margin: 0;

}
.infomation-content{
    border-top: #000000 2px solid;
    display: flex;
    width: 800px;
    padding: 16px 0px;
    align-items: flex-start;
    gap: 24px;
}

.infomation-parent{
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.supporter-parent{
    display: flex;
    /* flex-direction: column; */
    gap: 0px;
    margin-top: 16px;
    margin-bottom: 16px;
}

.supporter-flame{
    width: 229px;
    flex: 1 0 0;
    margin: 16px 40px;
}

.sapporter-content{
  display: flex;
  flex-direction: column;
  text-align: center;

}

.sapporter{
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 24px */

}

footer{
  display: flex;
  padding: 24px 0px;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: #EBEBEB;
}

.copy-right-pearent{
  display: flex;
  gap: 40px;
}

.copy-right{
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
  text-align: center;

}

.popup {
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,.8);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  transition: all .2s;
  visibility: hidden;
}
.popup__container {
  width: 500px;
  background: var(--back-ground, #FFEFEC);
   position: absolute;
  display: flex;
   flex-direction: column;

  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 24px 32px;
  border-radius: 8px;
  max-height: 100vh; 
  overflow-y: auto; 

  /* 子要素を横に中央寄せにする */
}
@media 

@keyframes fadeIn {
  from {
      opacity: 0;
  }
  to {
      opacity: 1;
  }
}



.popup:target {
  visibility: visible;
  animation: fadeIn 0.5s ease-out forwards;
}




.box-title{
  color: var(--white, #FFF);
text-align: center;
font-family: "Noto Sans JP";
font-size: 24px;
font-style: normal;
font-weight: 700;
line-height: 150%; /* 36px */
padding: 0;
margin: 0; !important

}

.title-box{
  display: flex;
  width: 176px;
  padding: 8px 16px;
  flex-direction: column;
  align-items: center;  
  border-radius: 8px;
  border: 2px solid var(--white, #FFF);
  background: #169757;
  z-index: 999;
  position: absolute;
  top: -32px;

    /* 子要素を左寄せにする */
  text-align: left;

}
.datebox{
  width: 950px; 
  margin: 32px;
   border: 2px white solid; 
   justify-content: center; 
   align-items: center; 
   gap: 10px; 
   display: inline-flex;
   z-index: 0;
   position: relative;

   
}

.workshop-data-parent{
  display: flex;
  flex-direction: column;
  padding: 36px;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 24px */
  justify-content: flex-start; /* Aligns child elements to the left if it's a flex container */
  align-items: center; /* Pushes the item to the left in a flex container with flex-direction: row */

}

.workshop-data{
  text-align: left;
  color: var(--white, #FFF);
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 24px */
  justify-content: flex-start; /* Aligns child elements to the left if it's a flex container */
  margin-right: auto; /* Pushes the item to the left in a flex container with flex-direction: row */


}

.popup__container h2 {
  margin-bottom: 2rem;
}
.popup:target {
  visibility: visible;
}
.popup__close {
  position: absolute;
  top: 9px;
  right: 9px;
  color: black;
  text-decoration: none;
  font-size: 38px;
  line-height: 1rem;
}

.popup-title{
  display: flex;
  padding: 8px 16px 8px 0px;
  align-items: center;
  justify-content: center;
}

.ruby{
  color: var(--333333, #333);
text-align: center;
font-family: "Noto Sans JP";
font-size: 12px;
font-style: normal;
font-weight: 700;
line-height: 150%; /* 18px */
margin: 0; !important

}

.part-title{
  color: var(--333333, #333);
text-align: center;
font-family: "Noto Sans JP";
font-size: 24px;
font-style: normal;
font-weight: 700;
line-height: 150%; /* 36px */
margin: 0; !important
}
.image-bg{
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #FFFFFF;
  justify-content: center;
  padding: 16px 0px;

}

.popup-description{
  color: var(--333333, #333);
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 24px */
}

.madeform{

  display: flex;
  align-items: center;
  margin-left: -198px;
  z-index: 999;
  width: 394px; 
  height: 191px; 
}


/* ボタンのデザイン */
#pageTopBtn {
  position: fixed;
  bottom: 16px;
  right: 16px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
    width: 87.477px;
  height: 77.867px;

    background-image: url(assets/top-button.png);
  }
/* ボタンホバー時 */
#pageTopBtn:hover {
  background-image: url(assets/top-button-hover.png);
}

.ruby-part{
  color: var(--333333, #333);
font-family: "Noto Sans JP";
font-size: 10px;
font-style: normal;
font-weight: 400;
line-height: 150%; /* 15px */
  
}

.br-sp{
  display: none;
}
.br-tab{
  display: none;

}

.contact-text{
  color: var(--white, #FFF);
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 24px */
  }

  @keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
  }


/* 他のスタイル */
.sliderwrap {
  width: 100vw; /* 全画面幅に設定 */
  height: 250px; /* 高さを拡大された要素の高さに設定 */
  margin: 50px 0;
  overflow: hidden; /* 親要素から出たコンテンツを非表示にします */
  display: flex;
  position: relative;
  align-items: center; /* 子要素を上下中央寄せにします */
}

.slider {
  display: flex;
  transition: transform 0.5s ease-in-out; /* スムーズなアニメーションを追加します */
  position: absolute;
}

.slider ul {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
  align-items: center; /* 子要素を上下中央寄せにします */
}

.slide {
  width: 384px; /* 通常スライドの幅 */
  height: 216px; 
  text-align: center;
  margin: 0 20px; /* コンテンツの間に40pxの空間を追加します */
  transition: transform 0.5s ease-in-out; /* スムーズなアニメーションを追加 */
  display: flex;
  align-items: center; /* 子要素を上下中央寄せにします */
  justify-content: center; /* 子要素を左右中央寄せにします */
}

.slide:last-child {
  margin-right: 0; /* 最後のスライドの右マージンを削除 */
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide.center {
  width: 448px; /* 拡大されたスライドの具体的な幅 */
  height: 252px; /* 拡大されたスライドの具体的な高さ */
}

.nav-button {
  position: absolute;
  top: 50%;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background-color: #FFFFFF;
  color: #169757;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
}

.prev-button {
  left: calc(50% - 290px);
}

.next-button {
  right: calc(50% - 290px);
}
.video-container {
  width: 704px;
  height: 396px;
  padding: 16px;
  background-color: #ffffff;
  box-sizing: border-box;
}

.video-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.video-header {
  display: flex;
  align-items: center;
  justify-content: center; /* 横方向の中央寄せ */
  margin-bottom: 20px;
  margin-top: 64px;

}

.video-header img {
  width: 40px; /* アイコンのサイズ */
  margin-right: 10px;
}

.video-title {
  font-size: 32px;
  color: white; /* 文字色を白に */
  display: flex;
  align-items: center; /* 上下中央寄せ */
  margin: 0; /* 不要な余白を削除 */
}

.video-description{
  font-size: 16px;
  color: white; /* 文字色を白に */
}

/* 2025-10-03: ごあいさつセクションを非表示 */
.salutation-bg {
  display: none !important;
}

/* 2025-10-03: ワークショップセクション非表示（PC） */
.workshop,
.section-workshop,
#workshop {
  display: none !important;
}

