@charset "UTF-8";
/*共通*/

body{
    margin: 0;
    padding: 0;
}

.container{
    margin-left: auto;
    margin-right: auto;
    line-height: 0;
    max-width: 750px;
}

img{
    width:100%;
}

.iframe{
    width: 90%;
    height: auto;
    margin: auto;
}

a{
    text-decoration:none;
    color: inherit;
}

section{
    position: relative;
}

/* section4 */
.sec4__relativ{
    position: relative;
    background-color: #191717;
    padding-top: 23%;
}

.sec4__abso-1{
position: absolute;
    width: 94%;
    left: 3%;
    top: 0;
    z-index: 99;
}

.sec4__iframe-wrap{
    width: 93%;
    position: relative;
    padding-top: 56.25%;
    margin: auto;
}

iframe{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.sec4__text{
    color: #fff;
    font-size: 12px;
    font-family: sans-serif;
    padding: 4% 0% 4% 3%;
}

/* アコーディオン全体のスタイリング */
.accordion {
    margin-bottom: 10%;
  }
  
  /* アコーディオンのヘッダー部分のスタイリング */
  .accordion-header {
    padding: 0px;
    cursor: pointer;
    outline: none;
    position: relative; /* 矢印アイコンの位置調整のため */
    list-style: none; /* デフォルトの矢印を消す */
  }

  details summary::-webkit-details-marker {
  display: none;
}
  
  /* アコーディオンのコンテンツ部分のスタイリング */
  .accordion-content {
    padding: 15px 0px;
    line-height: 1.5;
    background-color: #fff;
  }

  /* アイコン（＋/ー）のスタイル */
.accordion-header::after {
    content: "+";
    font-size: 13px;
    font-weight: bold;
    transition: transform 0.2s;
    color: #fff;
    background-color: #000;
    border-radius: 50%;
    padding: 0px 4px 2px;
    position: relative;
    top: -30px;
    left: 85%;
    z-index: 999;
}

/* detailsタグが開いた状態[open]のときのスタイル */
.accordion[open] > .accordion-header::after {
    content: "−"; /* マイナス記号に変更 */
    transform: rotate(180deg); /* アニメーション効果（任意） */
}


/*-----btn-----*/
.btn-wrap{
    position: sticky;
    bottom: -3%;
    width: 80%;
    max-width: 750px;
    z-index: 9999;
    margin: auto;
}


a img:hover {
    transform: scale(1.2);
  }

/* footer */
footer{
    background-color: #000;
    color: #fff;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 15px 10px;
    line-height: 2;
    font-size: 12px;
    text-align: center;
    font-family: sans-serif;
}

@media screen and (min-width:750px){/*-----pc-----*/

.sec4__text{
    font-size: 16px;
}

/*-----btn-----*/
.btn-wrap{
    bottom: -4%;
    width: 100%;
    max-width: 500px;
    /*left: 50%; transform: translateX(-50%);*/
    margin: auto;
}

  /* アイコン（＋/ー）のスタイル */
.accordion-header::after {
    font-size: 22px;
    border-radius: 50%;
    padding: 0px 10px 2px;
    top: -57px;
    left: 85%;
}

footer{
    font-size: 16px;
}
}