body{
  margin:0;
  padding: 0;
  overflow-x: hidden;
  width: 100%;
  background-color: #ffff;
  font-family: "Zen Maru Gothic";
  font-weight: bold;
  justify-content: center; 
}
.main-conteiner {
  width: 100%;
  /* ビューポート幅に合わせる */
  min-width: 0;
  /* 幅の最小値をリセット */
  box-sizing: border-box;
  margin-left: auto;

  /* パディング・ボーダー含めて幅計算 */
  height: auto;
  /* 高さは自動 */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#loading-screen{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, #50BAFF, #4049FF);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  clip-path: circle(150%);
  transition:clip-path 1s cubic-bezier(0.77, 0, 0.01, 1);
  pointer-events: auto;
}
#loading-screen.is-hidden {
  clip-path: circle(0%);
  pointer-events: none;
}
.loading-content {
  text-align: center;
}
.loading-chars1{
  width: 30%;
  margin-bottom: 20px;
}
.loading-chars2{
  width: 30%;
  margin-bottom: 20px;
}
.loading-text{
  color: white;
  font-size: 24px;
  font-weight: bold;
  font-family: "Zen Maru Gothic";
}
.loading-text span{
  opacity: 0;
  animation: blink 1.5s infinite;
}
.loading-text span:nth-child(2){
  animation-delay: 0.3s;
}
.loading-text span:nth-child(3){
  animation-delay: 0.5s;
}
@keyframes blink{
  0%{
    opacity: 0;
  }
  50%{
    opacity: 1;
  }
  100%{
    opacity: 0;
  }
}

@media screen and (min-width: 100px) and (max-width: 766px) {
  
  /*--------------ヘッダーはここからコピペ----------------*/
  .siteheader {
  margin: 0;
  padding: 0;
  width:100vw;
  height:15vw;
  background: linear-gradient(to right, #50BAFF, #4049FF);
  position:relative;
  z-index: 100;
}
 
/* headerinnerの修正 */
.headerinner {
  display: flex;
  justify-content: flex-end; /* space-betweenから変更 */
  align-items: center;
  width:90vw;
  height:8vw;
  margin: 0 auto;
  position: relative; /* これを追加 */
}
 
.sitelogo{
  margin: 0;
  padding: 0;
  color: white;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
    position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
 
button.menu{
  margin: 0;
  padding: 0;
  background-color: transparent;
  border:none;
  cursor: pointer;
  z-index: 200;
}
 
.bar{
  display: block;
  margin: 4px;
  width: 30px;
  height: 4px;
  background-color: white;
  border-radius: 2px;
  transition: all 0.3s ease-in-out;
}
 
/* メニューが開いたときにボタンを「×」にする */
.menu.is-active .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.menu.is-active .bar:nth-child(2) {
  opacity: 0;
}
.menu.is-active .bar:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}
 
.g-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  height: 100vh;
  background-color: rgba(42, 39, 42, 0.5);
  backdrop-filter: blur(5px);
  padding: 80px 25px;
  box-sizing: border-box;
  transform: translateX(100%);
  transition: transform 0.4s ease-in-out;
  z-index: 50;
}
 
/* メニュー表示時のスタイル */
.g-nav.is-active {
  transform: translateX(0);
}
 
/* メニューリスト */
.g-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
 
/* メニュー項目 */
.g-nav li {
  margin-bottom: 22px;
}
 
/* メニューのリンク */
.g-nav a {
  color: #ffffff;
  text-decoration: none;
  font-size: 20px;
  font-weight: bold;
}
 
/* SNSアイコンのコンテナ */
.g-nav .sns {
  position: absolute;
  bottom: 25px;
  left: 25px;
  display: flex;
  gap: 15px;
}
 
/* SNSアイコンの画像 */
.g-nav .sns img {
  width: 30px;
  height: 30px;
  opacity: 0.7;
  transition: opacity 0.3s;
}
 
.g-nav .sns a:hover img {
    opacity: 1;
}
/*-----------------------ヘッダーはここまでをコピペ--------------------------*/
  body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-width: auto;
  background-image: url("../img/background.png");
  background-size: 150%;
  background-position: center;
  background-repeat: repeat;
 height: 100% ;
  z-index: -2; /* テキストなどコンテンツの背面に配置 */
}
body::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  filter: blur(1px);
  margin-top: 15%;
  background-image: url("../2025teaser/img/sozai/top.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  z-index: -1; /* テキストなどコンテンツの背面に配置 */
}
  html,body {
    margin: 0;
    padding: 0;
    width: 100%;
    /*max-width: 414px;*/
    /* iPhone 14 Proの幅 */
    overflow-x: hidden;
    font-family: "Zen Maru Gothic";
    /* 画面の高さ分は最低限確保 */
    z-index: -100;
  }

  .main-conteiner {
    width: 100%;
    /* ビューポート幅に合わせる */
    min-width: 0;
    /* 幅の最小値をリセット */
    box-sizing: border-box;
    margin-left: auto;
    
    /* パディング・ボーダー含めて幅計算 */
    height: auto;
    /* 高さは自動 */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .heading {
    color: #ffffff;
    left: 0;
    /* 左端に揃える */
    right: 0;
    /* 右端に揃える */
    top: 0;
    font-size: 30px;
    /* スマホ用に小さめ */
    margin: 0 auto;
    font-weight: 600;
    position: relative;
    /* relative推奨（absoluteだとズレやすい） */
    text-align: center;
    -webkit-text-stroke: 1px #222;
    /* 黒縁取り */
     text-shadow:
      4px 4px 0 #5745fc,
      0px 4px 0 #5745fc,
      4px 4px 0 #5745fc;
    box-sizing: border-box;
    width: 100%;
    /* 見出しも画面幅に合わせる */
    padding: 0 10px;
    overflow-wrap: break-word;
    /* 長い文字も折り返す */
  }

  .img {
    max-width: 100%;
    height: auto;
  }

  .img2 {
    max-width: 100%;
    height: auto; 
  }

  .heading2 {
    color: #ffffff;
    left: 0;
    /* 左端に揃える */
    right: 0;
    /* 右端に揃える */
    top: 0;
    font-size: 30px;
    /* スマホ用に小さめ */
    margin: 0 auto;
    position: relative;
    /* relative推奨（absoluteだとズレやすい） */
    text-align: center;
    -webkit-text-stroke: 1px #000;
     text-shadow:
      4px 4px 0 #5745fc,
      0px 4px 0 #5745fc,
      4px 4px 0 #5745fc;
    font-weight: bold;
    box-sizing: border-box;
    width: 100%;
    /* 見出しも画面幅に合わせる */
    padding: 0 10px;
    overflow-wrap: break-word;
    /* 長い文字も折り返す */
  }

  .box {
    font-weight: bold;
    color: black;
    background: rgba(255, 255, 255, 0.7);
    /* 白＋70%不透明 */
    border: 4px solid;
    /* 太さはお好みで */
    border-image: linear-gradient(135deg, #50BAFF, #4049FF) 1;
    border-radius: 10px;
    text-align: center;
  width: 95%;
    max-width: 400px;
    height: 350px;
    margin-bottom: 100px;
    margin-top: auto;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
    padding: 8px 4px;
      /* 内側の余白 */
  }

  .title1 {
    position: relative;
    top: -60px;
    /* 枠線より上に出す */
    left: 50%;
    transform: translateX(-50%);
    width: 240px;
    height: 50px;
    background: linear-gradient(135deg, #50BAFF, #4049FF);
    /* ←グラデーション背景 */
    text-align: center;
    color: white;
    -webkit-text-stroke: 1px #222;
    /* 黒縁取り */
    font-weight: bold;
    font-size: 20px;
    text-align: center;
    border-radius: 30px;
    margin-bottom: -40px;
  }

  .sailing-box {
    background: rgba(151, 192, 255, 0.49);
    /* 薄い青 */
    width: 90vw;
    max-width: 420px;
    margin: 40px auto;
    box-sizing: border-box;
    padding: 24px 16px;
    position: relative;
    justify-content: center;
    align-items: center;
  }



  .sailing-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    justify-content: center;
    align-items: center;
  }

  .sailing-info {
    width: 100%;

  }

  .sailing-title {
    font-size: 40px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 12px;
    -webkit-text-stroke: 1px #222;
    letter-spacing: 1px;
    text-align: center;
  }

  .sailing-desc {
    font-size: 14px;
    color: #222;
    line-height: 1.7;
    text-align: center;
  }
  .chara{
    justify-content: center;
    text-align: center;
    font-size: 30px;
    font-weight: bold;
    color: #000000;
    text-shadow:
    1px 1px 0 #ff2e63,    /* ピンクの影（右下） */
    0px 1px 0 #ff2e63,    /* ピンクの影（下） */
    1px 0px 0 #ff2e63;    /* ピンクの影（右） */
  }
  .mini-chara{
    text-align: center;
    margin-top: -40px;
    font-size: 14px;
    font-weight: bold;
    color: #000000;
}
  .chara-all{
    display: flex;
    margin: 0;
    justify-items: center;
    justify-content: center;
  }
  .chara-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 48px;
  width: 200px;
  justify-content: center;
}

.chara-img {
  max-width: 200px;
  height: auto;
  margin-top: 30px;
  z-index: 2;
}

.chara-circle {
  position: relative;
  width: 160px;
  height: 200px;
  background: rgba(255, 180, 180, 0.4); /* 赤系円（ぺんまる用） */
  border-radius: 50%;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  margin-top: 0;
  margin: auto;
}

.chara-circle.yellow {
  display: flex;
  flex-direction: column;
  background: rgba(255, 230, 150, 0.4); /* 黄系円（ほべっく用） */
}

.chara-name {
  font-size: 28px;
  font-weight: bold;
  color: #ffffff; /* ぺんまる用ピンク */
  -webkit-text-stroke: 1px #000;
  margin-top: 24px;
  margin-bottom: 8px;
  text-align: center;
  letter-spacing: 2px;
}

.chara-name.yellow {
  -webkit-text-stroke: 1px #000;
  color: #ffffff; /* ほべっく用黄色 */
}

.chara-desc {
  position: relative;
  text-decoration: underline;
  text-align: center;
  font-size: 8px;
  color: #222;
  text-align: center;
  line-height: 1.7;
  margin: 0 16px;
  margin-top: -2%;
  margin-left: -5%;
}
.gatya{
  display: flex;           /* ★Flexboxコンテナにする */
  flex-direction: column;  /* ★子要素を縦に並べる */
  align-items: center;     /* ★横方向の中央揃え */
  gap: 10px;               /* お好みでテキストと画像の間の余白を追加 */

}
  .gatya-img{
    display: flex;
    position: relative;
    height: auto;
    width: 100vw;
  }
  .gatya-const-info{
    font-size: 30px;
    text-decoration: underline;
  }
.content {
  display: flex;
  justify-content: center; /* 水平方向の中央揃え */
  align-items: flex-start;   /* 垂直方向の上揃え */
    background: rgba(228, 18, 39, 0.55);
    /* 薄い青 */
    width: 100%;
    max-width: 900px;
    margin: 40px auto;
    box-sizing: border-box;
    padding: 24px 16px;
  }
  .content-text{
    font-size: 35px;
    font-weight: bold;
    color: #ffffff;
    text-align: center;
    -webkit-text-stroke: 1px #000;
  }
  .content-img {
    display: flex;
    /* アイコンを横並びにする */
    justify-content: center;
    /* 中央に寄せる */
    align-items: center;
    /* 垂直方向の中央を揃える */
    gap: 50px;
    /* アイコン間の隙間 */
    margin-bottom: 15px;
    /* 下のアカウント名との余白 */
    z-index: 1000;
    /* ヘッダーと同じく、最前面に表示 */
}

/* SNSアイコンの画像 */
.content-img img {
    width: 50px;
    /* アイコンの幅 */
    height: 50px;
    /* アイコンの高さ */
    transition: opacity 0.3s;
    /* ホバー時のアニメーション */
    z-index: 1000;
    /* ヘッダーと同じく、最前面に表示 */
}
.hanabi {
  display: flex;           /* ★Flexboxコンテナにする */
  flex-direction: column;  /* ★子要素を縦に並べる */
  align-items: center;     /* ★横方向の中央揃え */
  gap: 10px;               /* お好みでテキストと画像の間の余白を追加 */
}

/* テキストの見出し */
.hanabimidashi {
  font-size: 28px;
}


.hanabi-img {
  width: auto;      /* 画像のアスペクト比を保つ */
  height: 250px;
  display: block;   /* 念のためブロック要素にしておく */
}
  .box2 {
    font-weight: bold;
    color: black;
    background: rgba(255, 255, 255, 0.7);
    /* 白＋70%不透明 */
    border: 4px solid;
    /* 太さはお好みで */
    border-image: linear-gradient(135deg, #FFAAE3, #FD3866) 1;
    border-radius: 10px;
    text-align: left;
    width: 95%;
    max-width: 400px;
    height: 600px;
    margin-bottom: 100px;
    margin-top: 50px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
    padding: 12px 12px
      /* 内側の余白 */
  }
  .title2 {
    position: relative;
    top: -60px;
    /* 枠線より上に出す */
    left: 50%;
    transform: translateX(-50%);
    width: 240px;
    height: 50px;
    background: linear-gradient(135deg, #FFAAE3, #FD3866);
    /* ←グラデーション背景 */
    text-align: center;
    color: white;
    -webkit-text-stroke: 1px #222;
    /* 黒縁取り */
    font-weight: bold;
    font-size: 20px;
    text-align: center;
    border-radius: 30px;
    margin-bottom: -40px;
  }
  .box3 {
    font-weight: bold;
    color: black;
    background: rgba(255, 255, 255, 0.7);
    /* 白＋70%不透明 */
    border: 4px solid;
    /* 太さはお好みで */
    border-image: linear-gradient(135deg, #4CBAFF, #9876FF) 1;
    border-radius: 10px;
    text-align: left;
    width: 95%;
    height: 600px;
    margin-bottom: 200px;
    margin-top: 50px;
        margin: 50px auto 200px auto; /* このマージンは後で調整 */
    box-sizing: border-box;
    padding: 12px 12px
      /* 内側の余白 */
  }
  .title3 {
    position: relative;
    top: -60px;
    /* 枠線より上に出す */
    left: 50%;
    transform: translateX(-50%);
    width: 240px;
    height: 50px;
    background: linear-gradient(135deg, #4CBAFF, #9876FF);
    /* ←グラデーション背景 */
    text-align: center;
    color: white;
    -webkit-text-stroke: 1px #222;
    /* 黒縁取り */
    font-weight: bold;
    font-size: 18px;
    text-align: center;
    border-radius: 30px;
    margin-bottom: -40px;
    z-index: 2;
  }
  .aisatsu{
    font-size: 13px;
  }
   .rotated-image-wrapper {
  width: 100%;
  height: 450px;      /* ← 高さを少し調整（見ながら変更してください） */
  position: relative;
  overflow: hidden;
  margin-top: -250px;   /* ← 上の要素との重なりは維持 */
  margin-bottom: 20px;   /* ← ★最重要：マイナスをやめ、フッターとの間に余白を作る */
  pointer-events: none;
}
  /* 画像本体のスタイル */
  .img3 {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 140%; /* 箱より少し大きくして、回転しても隙間ができないように */
    height: auto;
    opacity: 0.5;
    /* translateで中央に補正し、rotateで回転 */
    transform: translate(-50%, -50%) rotate(30deg); /* 画像に合わせて角度を調整 */
    z-index: 0; /* 背景として配置 */
  }
  /*.img3{
    size: 130%;
    max-width: 100%;
    height: auto;
    opacity: 0.5;
    transform: rotate(30deg);
    position: absolute;
    z-index: -1;
    margin-top: -300px;
  }*/
  .site-footer {
    /* ヘッダーと同じグラデーション背景 */
    background: linear-gradient(to right, #4FBEFF, #4049FF);
    color: white; /* テキストの基本色を白に */
    padding: 25px 20px; /* 内側の余白（上下に多め） */
    text-align: center; /* 中の要素を中央揃えに */
    bottom: 0;
    z-index: 1000; /* ヘッダーと同じく、最前面に表示 */
}

.footer-content {
  height: 100px;
    max-width: 1200px;
    margin: 0 auto; /* コンテンツ全体の横幅を制限し、中央に配置 */
    z-index: 1000; /* ヘッダーと同じく、最前面に表示 */
}

/* SNSアイコンのリンクのコンテナ */
.sns-links {
    display: flex; /* アイコンを横並びにする */
    justify-content: center; /* 中央に寄せる */
    align-items: center; /* 垂直方向の中央を揃える */
    gap: 50px; /* アイコン間の隙間 */
    margin-bottom: 15px; /* 下のアカウント名との余白 */
    z-index: 1000; /* ヘッダーと同じく、最前面に表示 */
}

/* SNSアイコンの画像 */
.sns-links img {
    width: 50px; /* アイコンの幅 */
    height: 50px; /* アイコンの高さ */
    transition: opacity 0.3s; /* ホバー時のアニメーション */
    z-index: 1000; /* ヘッダーと同じく、最前面に表示 */
}

/* アイコンにマウスを乗せたときに少し薄くする */
.sns-links a:hover img {
    opacity: 0.8;
}

/* アカウント名 */
.account-name {
    margin: 0; /* pタグのデフォルトマージンをリセット */
    font-size: 14px; /* 文字サイズを少し小さめに */
    font-weight: bold; /* 文字を太く */
    letter-spacing: 1px; /* 文字間隔を少し広げる */
    z-index: 1000; /* ヘッダーと同じく、最前面に表示 */
}
}
@media screen and (min-width: 767px) and (max-width: 1024px) {
    body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-width: auto;
  background-image: url("../img/background.png");
  background-size: 150%;
  background-position: center;
  background-repeat: repeat;
 height: 100% ;
  z-index: -2; /* テキストなどコンテンツの背面に配置 */
}
body::after {
  margin-top: -15%;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  filter: blur(2.5px);
  background-image: url("../img/sozai/topipad.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;

  z-index: -1; /* テキストなどコンテンツの背面に配置 */
}
  html,body {
    margin: 0;
    width: 100%;
    max-width: auto;
    overflow-x: hidden;
    font-family: "Zen Maru Gothic";

  }
  .siteheader {
  background: linear-gradient(to right, #4FBEFF, #4049FF);
  border-bottom: 2px solid white;
  padding: 10px 20px;
  position: relative;
  z-index: 100;
}

/* ヘッダー内部のコンテナ */
.headerinner {
  display: flex;
  justify-content: flex-end; /* space-betweenから変更 */
  align-items: center;
  width:95vw;
  height:5vw;
  margin: 0 auto;
  position: relative; /* これを追加 */
}

/* ロゴテキスト */
.sitelogo{
  margin: 0;
  padding: 0;
  color: white;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
    position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
/* ハンバーガーメニューボタン */
button.menu{
  margin: 0;
  padding: 0;
  background-color: transparent;
  border:none;
  cursor: pointer;
  z-index: 200;
}
 
.bar{
  display: block;
  margin: 6px;
  width: 40px;
  height: 5px;
  background-color: white;
  border-radius: 2px;
  transition: all 0.3s ease-in-out;
}

/* メニューが開いたときにボタンを「×」にする */
.menu.is-active .bar:nth-child(1) {
  transform: translateY(12px) rotate(45deg);
}
.menu.is-active .bar:nth-child(2) {
  opacity: 0;
}
.menu.is-active .bar:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}
/* ナビゲーションメニュー全体 */
.g-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 600px;
  height: 100vh;
   background-color: rgba(42, 39, 42, 0.5);
  backdrop-filter: blur(5px);
  padding: 80px 25px;
  box-sizing: border-box;
  transform: translateX(100%);
  transition: transform 0.4s ease-in-out;
  z-index: 50;
}

/* メニュー表示時のスタイル */
.g-nav.is-active {
  transform: translateX(0);
}

/* メニューリスト */
.g-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* メニュー項目 */
.g-nav li {
  margin-bottom: 22px;
}

/* メニューのリンク */
.g-nav a {
  color: #333;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
}

/* SNSアイコンのコンテナ */
.g-nav .sns {
  position: absolute;
  bottom: 25px;
  left: 25px;
  display: flex;
  gap: 15px;
}

/* SNSアイコンの画像 */
.g-nav .sns img {
  width: 30px;
  height: 30px;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.g-nav .sns a:hover img {
    opacity: 1;
}
  .main-conteiner {
    width: 100%;
    /* ビューポート幅に合わせる */
    min-width: 0;
    /* 幅の最小値をリセット */
    box-sizing: border-box;
    /* パディング・ボーダー含めて幅計算 */
    height: auto;
    /* 高さは自動 */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .heading {
    color: #ffffff;
    /* 左端に揃える */
    left: 25%;
    /* 右端に揃える */
    top: 0;
    font-size: 30px;
    /* スマホ用に小さめ */
    margin: 0 auto;
    font-weight: 600;
    position: relative;
    /* relative推奨（absoluteだとズレやすい） */
    text-align: center;
    -webkit-text-stroke: 2px #222;
    /* 黒縁取り */
     text-shadow:
      4px 4px 0 #5745fc,
      0px 4px 0 #5745fc,
      4px 4px 0 #5745fc;
    box-sizing: border-box;
    width: 100%;
    /* 見出しも画面幅に合わせる */
     padding: 0 10px; /* ← 左右に少し余白を持たせる */
    overflow-wrap: break-word;
    /* 長い文字も折り返す */
  }
  .img {
    margin-top: -20%;
    width: 50%;
    max-width: 50%;
    height: auto;
  }

  .img2 {
    align-items: center;
    max-width: 100%;
    height: auto;
    text-align: center;
    width: 50%;
    left: 0;
    right: 0;
    margin-top: -50%;
    margin: 0 auto;
    margin-left: 25%;
    position: relative;
  }
  .heading2 {
    color: #ffffff;
    /* 左端に揃える */
    left: 25%;
    /* 右端に揃える */
    margin-top: -20%;
    font-size: 30px;
    /* スマホ用に小さめ */
    font-weight: 600;
    position: relative;
    /* relative推奨（absoluteだとズレやすい） */
    text-align: center;
    -webkit-text-stroke: 2px #222;
    /* 黒縁取り */
     text-shadow:
      4px 4px 0 #5745fc,
      0px 4px 0 #5745fc,
      4px 4px 0 #5745fc;
    box-sizing: border-box;
    width: 100%;
    /* 見出しも画面幅に合わせる */
     padding: 0 10px; /* ← 左右に少し余白を持たせる */
    overflow-wrap: break-word;
    /* 長い文字も折り返す */
  }
  .box {
    font-size:30px;
    font-weight: bold;
    color: black;
    background: rgba(255, 255, 255, 0.7);
    /* 白＋70%不透明 */
    border: 4px solid;
    /* 太さはお好みで */
    border-image: linear-gradient(135deg, #50BAFF, #4049FF) 1;
    border-radius: 10px;
    text-align: center;
    width: 95%;
    height: 600px;
    margin-bottom: 100px;
    margin-top: 50px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
    padding: -8px 4px
      /* 内側の余白 */
  }
  .title1 {
    position: relative;
    top: -55px;
    /* 枠線より上に出す */
    left: 50%;
    transform: translateX(-50%);
    width: 240px;
    height: 50px;
    background: linear-gradient(135deg, #50BAFF, #4049FF);
    /* ←グラデーション背景 */
    text-align: center;
    color: white;
    -webkit-text-stroke: 1px #222;
    /* 黒縁取り */
    font-weight: bold;
    font-size: 20px;
    text-align: center;
    border-radius: 30px;
    margin-bottom: -40px;
  }
  .sailing-box {
    background: rgba(151, 192, 255, 0.49);
    /* 薄い青 */
    height:600px;
    width: 90vw;
    max-width: auto;
    margin: 40px auto;
    box-sizing: border-box;
    padding: 24px 16px;
  }

  .sailing-content {
    display: flex;
    align-items: flex-start;
    gap: 16px;
  }

  .sailing-img {
    width: 40%;
    max-width: 100%;
    height: auto;
    display: block;
  }

  .sailing-info {
    width: 52%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .sailing-title {
    text-align: center;
    font-size: 60px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 12px;
    -webkit-text-stroke: 1px #222;
    letter-spacing: 1px;
  }

  .sailing-desc {
    font-size: 18px;
    color: #222;
    line-height: 1.7;
    text-align: left;
  }
  .chara{
    text-align: center;
    font-size: 60px;
    font-weight: bold;
    color: #000000;
    text-shadow:
    1px 1px 0 #ff2e63,    /* ピンクの影（右下） */
    0px 1px 0 #ff2e63,    /* ピンクの影（下） */
    1px 0px 0 #ff2e63;    /* ピンクの影（右） */
  }
  .mini-chara{
    text-align: center;
    margin-top: -40px;
    font-size: 30px;
    font-weight: bold;
    color: #000000;
}
.chara-all {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 48px;
  justify-content: center;
}

.chara-img {
  max-width: 350px;
  height: auto;
  margin-top: 30px;
  z-index: 2;
}

.chara-circle {
  position: relative;
  width: 350px;
  height: 350px;
  background: rgba(255, 180, 180, 0.4); /* 赤系円（ぺんまる用） */
  border-radius: 50%;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  margin-top: 0;
}

.chara-circle.yellow {
  background: rgba(255, 230, 150, 0.4); /* 黄系円（ほべっく用） */
}

.chara-name {
  font-size: 60px;
  font-weight: bold;
  color: #ffffff; /* ぺんまる用ピンク */
  -webkit-text-stroke: 1px #000;
  margin-top: 24px;
  margin-bottom: 8px;
  text-align: center;
  letter-spacing: 2px;
}

.chara-name.yellow {
  -webkit-text-stroke: 1px #000;
  color: #ffffff; /* ほべっく用黄色 */
}

.chara-desc {
  position: relative;
  text-decoration-line: underline;
  font-size: 16px;
  color: #222;
  text-align: center;
  line-height: 1.7;
  margin-top: -5%;
}
.gatya{
  display: flex;           /* ★Flexboxコンテナにする */
  flex-direction: column;  /* ★子要素を縦に並べる */
  align-items: center;     /* ★横方向の中央揃え */
  gap: 10px;               /* お好みでテキストと画像の間の余白を追加 */

}
 .gatya-img{
    display: flex;
    position: relative;
    height: auto;
    width: 100vw;
  }
  .gatya-const-info{
    font-size: 50px;
    text-align: center;
    text-decoration: underline;
  }
  .content {
  display: flex;
  justify-content: center; /* 水平方向の中央揃え */
  align-items: flex-start;   /* 垂直方向の上揃え */
    background: rgba(228, 18, 39, 0.55);
    /* 薄い青 */
    width: 100vw;
    height: 400px;
    margin: 40px auto;
    box-sizing: border-box;
    padding: 24px 16px;
  }
  .content-text{
    font-size: 60px;
    font-weight: bold;
    color: #ffffff;
    text-align: center;
    -webkit-text-stroke: 1px #000;
  }
  .content-img {
    display: flex;
    /* アイコンを横並びにする */
    justify-content: center;
    /* 中央に寄せる */
    align-items: center;
    /* 垂直方向の中央を揃える */
    gap: 50px;
    /* アイコン間の隙間 */
    margin-bottom: 15px;
    /* 下のアカウント名との余白 */
    z-index: 1000;
    /* ヘッダーと同じく、最前面に表示 */
}

/* SNSアイコンの画像 */
.content-img img {
    width: 100px;
    /* アイコンの幅 */
    height: 100px;
    /* アイコンの高さ */
    transition: opacity 0.3s;
    /* ホバー時のアニメーション */
    z-index: 1000;
    /* ヘッダーと同じく、最前面に表示 */
}
.hanabi {
  display: flex;           /* ★Flexboxコンテナにする */
  flex-direction: column;  /* ★子要素を縦に並べる */
  align-items: center;     /* ★横方向の中央揃え */
  gap: 10px;               /* お好みでテキストと画像の間の余白を追加 */
}

/* テキストの見出し */
.hanabimidashi {
  font-size: 50px;
}


.hanabi-img {
  width: auto;      /* 画像のアスペクト比を保つ */
  height: 500px;
  display: block;   /* 念のためブロック要素にしておく */
}
  .box2 {
    font-weight: bold;
    font-size: 23px;
    color: black;
    background: rgba(255, 255, 255, 0.7);
    /* 白＋70%不透明 */
    border: 4px solid;
    /* 太さはお好みで */
    border-image: linear-gradient(135deg, #FFAAE3, #FD3866) 1;
    border-radius: 10px;
    text-align: left;
    width: 95% ;
    height: 600px;
    margin-bottom: 100px;
    margin-top: 50px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
    padding: 12px 12px
      /* 内側の余白 */
  }
  .title2 {
    position: relative;
    top: -60px;
    /* 枠線より上に出す */
    left: 50%;
    transform: translateX(-50%);
    width: 240px;
    height: 50px;
    background: linear-gradient(135deg, #FFAAE3, #FD3866);
    /* ←グラデーション背景 */
    text-align: center;
    color: white;
    -webkit-text-stroke: 1px #222;
    /* 黒縁取り */
    font-weight: bold;
    font-size: 20px;
    text-align: center;
    border-radius: 30px;
    margin-bottom: -40px;
  }
  .box3 {
    font-weight: bold;
    font-size: 23px;
    color: black;
    background: rgba(255, 255, 255, 0.7);
    /* 白＋70%不透明 */
    border: 4px solid;
    /* 太さはお好みで */
    border-image: linear-gradient(135deg, #4CBAFF, #9876FF) 1;
    border-radius: 10px;
    text-align: left;
    width: 95%;
    height: 600px;
    margin-bottom: 100px;
    margin-top: 50px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
    padding: 12px 12px
      /* 内側の余白 */
  }
  .title3 {
    position: relative;
    top: -60px;
    /* 枠線より上に出す */
    left: 50%;
    transform: translateX(-50%);
    width: 240px;
    height: 50px;
    background: linear-gradient(135deg, #4CBAFF, #9876FF);
    /* ←グラデーション背景 */
    text-align: center;
    color: white;
    -webkit-text-stroke: 1px #222;
    /* 黒縁取り */
    font-weight: bold;
    font-size: 18px;
    text-align: center;
    border-radius: 30px;
    margin-bottom: -40px;
    z-index: 2;
  }
  .aisatsu{
    font-size: 19px;
  }
  .rotated-image-wrapper {
  width: 100%;
  height: 600px;      /* ← 高さを少し調整（見ながら変更してください） */
  position: relative;
  overflow: hidden;
  margin-top: 0;   /* ← 上の要素との重なりは維持 */
  margin-bottom: 20px;   /* ← ★最重要：マイナスをやめ、フッターとの間に余白を作る */
  pointer-events: none;
}
  /* 画像本体のスタイル */
  .img3 {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%; /* 箱より少し大きくして、回転しても隙間ができないように */
    height: auto;
    opacity: 0.5;
    /* translateで中央に補正し、rotateで回転 */
    transform: translate(-50%, -50%) rotate(20deg); /* 画像に合わせて角度を調整 */
    z-index: 0; /* 背景として配置 */
  }
 /* .img3{
    margin-left: 0;
    size: 100%;
    max-width: 100%;
    height: auto;
    opacity: 0.5;
    transform: rotate(-20deg);
    z-index: -1;
  }*/
.site-footer {
    /* ヘッダーと同じグラデーション背景 */
    background: linear-gradient(to right, #4FBEFF, #4049FF);
    color: white; /* テキストの基本色を白に */
    padding: 25px 20px; /* 内側の余白（上下に多め） */
    text-align: center; /* 中の要素を中央揃えに */
}

.footer-content {
  height: 200px;
    max-width: 1200px;
    margin: 0 auto; /* コンテンツ全体の横幅を制限し、中央に配置 */
}

/* SNSアイコンのリンクのコンテナ */
.sns-links {
    display: flex; /* アイコンを横並びにする */
    justify-content: center; /* 中央に寄せる */
    align-items: center; /* 垂直方向の中央を揃える */
    gap: 60px; /* アイコン間の隙間 */
    margin-bottom: 15px; /* 下のアカウント名との余白 */
}

/* SNSアイコンの画像 */
.sns-links img {
    width: 100px; /* アイコンの幅 */
    height: 100px; /* アイコンの高さ */
    transition: opacity 0.3s; /* ホバー時のアニメーション */
}

/* アイコンにマウスを乗せたときに少し薄くする */
.sns-links a:hover img {
    opacity: 0.8;
}

/* アカウント名 */
.account-name {
    margin: 0; /* pタグのデフォルトマージンをリセット */
    font-size: 28px; /* 文字サイズを少し小さめに */
    font-weight: bold; /* 文字を太く */
    letter-spacing: 1px; /* 文字間隔を少し広げる */
}
}

@media screen and (min-width: 1025px){
    body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-width: auto;
  background-image: url("../img/background.png");
  background-size: 150%;
  background-position: center;
  background-repeat: repeat;
 height: 100% ;
  z-index: -2; /* テキストなどコンテンツの背面に配置 */
}
body::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 150%;
  filter: opacity(0.7) blur(2.5px);
  margin-top: 5%;
  background-image: url("../2025teaser/img/sozai/topdesk.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  z-index: -1; /* テキストなどコンテンツの背面に配置 */
}
  body {
    margin: 0;
    width: 100%;
    max-width: auto;

    overflow-x: hidden;
    font-family: "Zen Maru Gothic";
    /*background-image: url("../img/background.png");
    justify-content: center;
    background-size: 150%;
    background-position: center;
    background-repeat: repeat;
    min-height: 100vh;
*/
  }
  .siteheader {
  margin: 0;
  padding: 0;
  width:100vw;
  height:5vw;
  background: linear-gradient(to right, #50BAFF, #4049FF);
  position:relative;
  z-index: 100;
}
 
/* headerinnerの修正 */
.headerinner {
  display: flex;
  justify-content: flex-end; /* space-betweenから変更 */
  align-items: center;
  width:95vw;
  height:5vw;
  margin: 0 auto;
  position: relative; /* これを追加 */
}
 
.sitelogo{
  margin: 0;
  padding: 0;
  color: white;
  font-size: 38px;
  font-weight: bold;
  text-align: center;
    position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
 
button.menu{
  margin: 0;
  padding: 0;
  background-color: transparent;
  border:none;
  cursor: pointer;
  z-index: 200;
}
 
.bar{
  display: block;
  margin: 6px;
  width: 40px;
  height: 5px;
  background-color: white;
  border-radius: 2px;
  transition: all 0.3s ease-in-out;
}
 
/* メニューが開いたときにボタンを「×」にする */
.menu.is-active .bar:nth-child(1) {
  transform: translateY(12px) rotate(45deg);
}
.menu.is-active .bar:nth-child(2) {
  opacity: 0;
}
.menu.is-active .bar:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}
 
.g-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  height: 100vh;
  background-color: rgba(42, 39, 42, 0.5);
  backdrop-filter: blur(5px);
  padding: 80px 25px;
  box-sizing: border-box;
  transform: translateX(100%);
  transition: transform 0.4s ease-in-out;
  z-index: 50;
}
 
/* メニュー表示時のスタイル */
.g-nav.is-active {
  transform: translateX(0);
}
 
/* メニューリスト */
.g-nav ul {
  list-style: none;
  padding: 0;
  margin-top: 10%;
}
 
/* メニュー項目 */
.g-nav li {
  margin-bottom: 22px;
}
 
/* メニューのリンク */
.g-nav a {
  color: #ffffff;
  text-decoration: none;
  font-size: 20px;
  font-weight: bold;
}
 
/* SNSアイコンのコンテナ */
.g-nav .sns {
  position: absolute;
  bottom: 25px;
  left: 25px;
  display: flex;
  gap: 15px;
}
 
/* SNSアイコンの画像 */
.g-nav .sns img {
  width: 30px;
  height: 30px;
  opacity: 0.7;
  transition: opacity 0.3s;
}
 
.g-nav .sns a:hover img {
    opacity: 1;
}
  .main-conteiner {
    width: 100vw;
    /* ビューポート幅に合わせる */
    min-width: 0;
    /* 幅の最小値をリセット */
    box-sizing: border-box;
    /* パディング・ボーダー含めて幅計算 */
    height: auto;
    /* 高さは自動 */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .heading {
    color: #ffffff;
    /* 左端に揃える */
    left: 25%;
    /* 右端に揃える */
    top: 0;
    font-size: 50px;
    /* スマホ用に小さめ */
    margin: 0 auto;
    font-weight: 600;
    position: relative;
    /* relative推奨（absoluteだとズレやすい） */
    text-align: center;
    -webkit-text-stroke: 2px #222;
    /* 黒縁取り */
     text-shadow:
      4px 4px 0 #5745fc,
      0px 4px 0 #5745fc,
      4px 4px 0 #5745fc;
    box-sizing: border-box;
    width: 100vw;
    /* 見出しも画面幅に合わせる */
    overflow-wrap: break-word;
    /* 長い文字も折り返す */
  }
  .img {
    margin-top: -20%;
    width: 50%;
    max-width: 50%;
    height: auto;
  }

  .img2 {
    align-items: center;
    max-width: 100%;
    height: auto;
    text-align: center;
    width: 50%;
    left: 0;
    right: 0;
    margin: 0 auto;
    margin-left: 25%;
    position: relative;
  }
  .heading2 {
    color: #ffffff;
    /* 左端に揃える */
    left: 25%;
    /* 右端に揃える */
    margin-top: -20%;
    font-size: 50px;
    /* スマホ用に小さめ */
    font-weight: 600;
    position: relative;
    /* relative推奨（absoluteだとズレやすい） */
    text-align: center;
    -webkit-text-stroke: 2px #222;
    /* 黒縁取り */
     text-shadow:
      4px 4px 0 #5745fc,
      0px 4px 0 #5745fc,
      4px 4px 0 #5745fc;
    box-sizing: border-box;
    width: 100vw;
    /* 見出しも画面幅に合わせる */
    overflow-wrap: break-word;
    /* 長い文字も折り返す */
  }
  .box {
    font-size: 40px;
    font-weight: bold;
    color: black;
    background: rgba(255, 255, 255, 0.7);
    /* 白＋70%不透明 */
    border: 4px solid;
    /* 太さはお好みで */
    border-image: linear-gradient(135deg, #50BAFF, #4049FF) 1;
    border-radius: 10px;
    text-align: center;
    width: auto;
    height: 700px;
    margin-bottom: 100px;
    margin-top: 50px;
    margin-left: 1%;
    box-sizing: border-box;
    padding: -8px 4px
      /* 内側の余白 */
  }
  .title1 {
    position: relative;
    top: -75px;
    /* 枠線より上に出す */
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 70px;
    background: linear-gradient(135deg, #50BAFF, #4049FF);
    /* ←グラデーション背景 */
    text-align: center;
    color: white;
    -webkit-text-stroke: 1px #222;
    /* 黒縁取り */
    font-weight: bold;
    font-size: 30px;
    text-align: center;
    border-radius: 30px;
    margin-bottom: -40px;
  }
  .kuu{
    margin-top: 700px;
  }
  .sailing-box {
    background: rgba(151, 192, 255, 0.49);
    /* 薄い青 */
    height:650px;
    width: 90vw;
    max-width: auto;
    margin: 40px auto;
    box-sizing: border-box;
    padding: 24px 16px;
  }

  .sailing-content {
    display: flex;
    align-items: flex-start;
    gap: 16px;
  }

  .sailing-img {
    width: 40%;
    max-width: 100%;
    height: auto;
    display: block;
  }

  .sailing-info {
    width: 52%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .sailing-title {
    text-align: center;
    font-size: 60px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 12px;
    -webkit-text-stroke: 1px #222;
    letter-spacing: 1px;
  }

  .sailing-desc {
    font-size: 24px;
    color: #222;
    line-height: 1.7;
    text-align: left;
  }
  .chara{
    text-align: center;
    font-size: 70px;
    font-weight: bold;
    color: #000000;
    text-shadow:
    1px 1px 0 #ff2e63,    /* ピンクの影（右下） */
    0px 1px 0 #ff2e63,    /* ピンクの影（下） */
    1px 0px 0 #ff2e63;    /* ピンクの影（右） */
  }
  .mini-chara{
    text-align: center;
    margin-top: -40px;
    font-size: 40px;
    font-weight: bold;
    color: #000000;
}
.chara-all {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 48px;
  justify-content: center;
}

.chara-img {
  max-width: 750px;
  height: auto;
  margin-top: 30px;
  z-index: 2;
}

.chara-circle {
  position: relative;
  width: 700px;
  height: 700px;
  background: rgba(255, 180, 180, 0.4); /* 赤系円（ぺんまる用） */
  border-radius: 50%;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  margin-top: 0;
}

.chara-circle.yellow {
  background: rgba(255, 230, 150, 0.4); /* 黄系円（ほべっく用） */
}

.chara-name {
  font-size: 60px;
  font-weight: bold;
  color: #ffffff; /* ぺんまる用ピンク */
  -webkit-text-stroke: 1px #000;
  margin-top: 24px;
  margin-bottom: 8px;
  text-align: center;
  letter-spacing: 2px;
}

.chara-name.yellow {
  -webkit-text-stroke: 1px #000;
  color: #ffffff; /* ほべっく用黄色 */
}

.chara-desc {
  position: relative;
  text-align: center;
  font-size: 30px;
  color: #222;
  text-align: center;
  line-height: 1.7;
  margin-top: 10%;
  text-decoration-line: underline;
}
.gatya{
  display: flex;           /* ★Flexboxコンテナにする */
  flex-direction: column;  /* ★子要素を縦に並べる */
  align-items: center;     /* ★横方向の中央揃え */
  gap: 10px;               /* お好みでテキストと画像の間の余白を追加 */

}
 .gatya-img{
    display: flex;
    position: relative;
    height: auto;
    width: 100vw;
  }
  .gatya-cost{
    align-items: center;
  }
  .gatya-const-info{
    font-size: 60px;
    text-decoration: underline;
  }
  .content {
  display: flex;
  justify-content: center; /* 水平方向の中央揃え */
  align-items: flex-start;   /* 垂直方向の上揃え */
    background: rgba(228, 18, 39, 0.55);
    /* 薄い青 */
    width: 100vw;
    height: 500px;
    margin: 40px auto;
    box-sizing: border-box;
    padding: 24px 16px;
  }
  .content-text{
    font-size: 60px;
    font-weight: bold;
    color: #ffffff;
    text-align: center;
    -webkit-text-stroke: 1px #000;
  }
  .content-img {
    display: flex;
    /* アイコンを横並びにする */
    justify-content: center;
    /* 中央に寄せる */
    align-items: center;
    /* 垂直方向の中央を揃える */
    gap: 100px;
    /* アイコン間の隙間 */
    margin-bottom: 15px;
    /* 下のアカウント名との余白 */
    z-index: 1000;
    /* ヘッダーと同じく、最前面に表示 */
}

/* SNSアイコンの画像 */
.content-img img {
    width: 200px;
    /* アイコンの幅 */
    height: 200px;
    /* アイコンの高さ */
    transition: opacity 0.3s;
    /* ホバー時のアニメーション */
    z-index: 1000;
    /* ヘッダーと同じく、最前面に表示 */
}
.hanabi{

  text-align: center;
}
.hanabimidashi{
  font-size: 60px;
  text-align: center;
}
.hanabi-img{
  width: auto;
  height: 700px;
}
  .box2 {
    font-weight: bold;
    font-size: 28px;
    color: black;
    background: rgba(255, 255, 255, 0.7);
    /* 白＋70%不透明 */
    border: 4px solid;
    /* 太さはお好みで */
    border-image: linear-gradient(135deg, #FFAAE3, #FD3866) 1;
    border-radius: 10px;
    text-align: left;
    width: auto;
    height: 650px;
    margin-bottom: 100px;
    margin-top: 50px;
    margin-left: 1%;
    box-sizing: border-box;
    padding: 12px 12px
      /* 内側の余白 */
  }
  .title2 {
    position: relative;
    top: -80px;
    /* 枠線より上に出す */
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 60px;
    background: linear-gradient(135deg, #FFAAE3, #FD3866);
    /* ←グラデーション背景 */
    text-align: center;
    color: white;
    -webkit-text-stroke: 1px #222;
    /* 黒縁取り */
    font-weight: bold;
    font-size: 28px;
    text-align: center;
    border-radius: 30px;
    margin-bottom: -40px;
  }
  .box3 {
    font-weight: bold;
    font-size: 28px;
    color: black;
    background: rgba(255, 255, 255, 0.7);
    /* 白＋70%不透明 */
    border: 4px solid;
    /* 太さはお好みで */
    border-image: linear-gradient(135deg, #4CBAFF, #9876FF) 1;
    border-radius: 10px;
    text-align: left;
    width: auto;
    height: 800px;
    margin-bottom: 100px;
    margin-top: 50px;
    margin-left: 1%;
    box-sizing: border-box;
    padding: 12px 12px
      /* 内側の余白 */
  }
  .title3 {
    position: relative;
    top: -80px;
    /* 枠線より上に出す */
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 60px;
    background: linear-gradient(135deg, #4CBAFF, #9876FF);
    /* ←グラデーション背景 */
    text-align: center;
    color: white;
    -webkit-text-stroke: 1px #222;
    /* 黒縁取り */
    font-weight: bold;
    font-size: 28px;
    text-align: center;
    border-radius: 30px;
    margin-bottom: -40px;
    z-index: 2;
  }
  .img3{
    margin-left: 10%;
    size: 130%;
    max-width: 100%;
    height: auto;
    opacity: 0.5;
    transform: rotate(-20deg);
    z-index: -1;
  }

}
