/* ============== COMMON STYLE ============= */
body {
  /* background-color: #f4f0f6; */
  position: relative;
  margin: 0;
  font-family: "Noto Sans CJK JP";
  font-size: 14px;
  color: #333;
  background: linear-gradient(to bottom, #fff9fa, #fdd7ea);
  transition: filter 0.3s ease;
}

.section_banner {
  position: relative;
  overflow: hidden;
}


/* メイン背景：画像ベースの半円 */
.wrapper-main{
  height: 45vw;
  top: -1;
  /* left: 50%; */
  padding-bottom: 12em;
  margin-right: -3em;
  margin-left: -3em;
  background: url('../image/keyvisual.png') center center / cover no-repeat;
  border-bottom-left-radius: 50vw;
  border-bottom-right-radius: 50vw;
  z-index: 1;
}

.wrapper-background{
  position: relative;
  width: 100%;
  height: 100%;
  background-color: #ffc4c4;
  border-bottom-left-radius: 100vw;
  border-bottom-right-radius: 100vw;
  /* border-bottom-left-radius: 50% 20%;
  border-bottom-right-radius: 50% 20%; */
  z-index: 0;
}

.main-curved-background {
  /* position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200vw;
  height: 100vw; /* 半円を作るため横幅の半分を縦幅に 
  background: url('../image/keyvisual.png') center center / cover no-repeat;
  border-bottom-left-radius: 100vw;
  border-bottom-right-radius: 100vw;
  z-index: 1; */
}

/* 背景テキストや見出し用のコンテンツを前面に表示 */
.section_banner_container,
.background-text {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #333;
}

/* タイトルやサブメッセージの余白 */
.section_banner_container {
  padding-top: 20vh;
  padding-bottom: 10vh;
}

.sub-message {
  font-size: 1.4rem; 
  text-align: center; 
  font-weight: 700;
  margin-top: 1rem;
  color: #ffffff;
  text-shadow:
  -1px -1px 5px #646464,  
   1px -1px 5px #646464,
  -1px  1px 5px #646464,
   1px  1px 5px #646464; /* 4方向に黒シャドウ */
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .main-curved-background {
    height: 120vw; /* モバイル用に若干縦長に調整 */
  }

  .section_title {
    font-size: 3rem;
  }

  .sub-message {
    font-size: 1rem;
    color: #ffffff;
    text-shadow:
    -1px -1px 0 #000,  
     1px -1px 0 #000,
    -1px  1px 0 #000,
     1px  1px 0 #000; /* 4方向に黒シャドウ */
  }

  .circular-text svg {
    width: 150px;
    height: 150px;
  }
}


object {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: -999; /* 最背面 */
  transition: opacity 0.5s ease-in-out;
  pointer-events: auto !important; /* `<object>` 内のクリックや操作を可能にする */
  /*display: none;  完全に非表示にする場合 */
}

/* `<object>` や `<img>` の影響を防ぐ */
object, img {
  pointer-events: none !important; /* カーソルが通過できるようにする */
  position: relative;
  z-index: 1; /* 通常のレイヤーに配置 */
}

/* `<object>` 内のクリックを有効にする */
object:hover {
  pointer-events: auto;
}

object.show {
  opacity: 1;
}

/* 他の要素が正しく前面にくるように */
.wrapper, header, section, footer {
  position: relative;
  z-index: 1; /* object より前面 */
}

/* 🎬 ローディングスクリーンのスタイル */
#loading-screen {
  font-family: Arial, sans-serif;
  position: fixed; /* 画面全体を覆う */
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  /* background-color: #f1e7f5;
  color: rgb(56, 54, 54); */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 9999;
  /* transition: transform 1.5s ease-in-out, opacity 0.8s ease-in-out; */
}

#loadingBar {
  width: 100%; /* 🔹 画面幅の80%に設定 */
  height: 15px; /* 🔹 太めのライン */
  position: absolute;
  bottom: 20px; /* 🔹 画面下部に配置 */
  left: 50%;
  transform: translateX(-50%); /* 🔹 中央配置 */
  border-radius: 5px; /* 🔹 丸みを少し追加 */
  /* background-color: rgb(184, 155, 201); */
}

/* 📱 レスポンシブ対応（スマホでは細く） */
/* @media (max-width: 768px) {
  #loadingBar {
      height: 5px; スマホでは少し細く 
      width: 70%; 幅を少し短く
  }
} */

/* ローディングコンテンツ（中央配置） */
#loading-screen .loading-content {
  display: flex;
  flex-direction: column; /* 縦方向に並べる */
  align-items: center;
  justify-content: center;
}

/* 📝 ローディングテキスト */
.loading-content h1 {
  font-size: 3rem;
  font-weight: bold;
  letter-spacing: 3px;
  opacity: 1;
  /* transition: opacity 1s ease-in-out; */
}

#loading-screen h1 {
  font-size: 60px;
  font-weight: bold;
  margin: 0;
}

#loading-screen p {
  font-size: 14px;
  letter-spacing: 2px;
}

/* 文字をバラバラに動かす */
#loading-screen h1 span {
  display: inline-block;
  /* animation: wave-animation 3.8s infinite ease-in-out; */
}

/* 文字をバラバラに動かす */
#loading-screen p span {
  display: inline-block;
  /* animation: wave-animation 3.8s infinite ease-in-out; */
}

/* 1文字ずつバラバラに動かす */
/* #loading-screen h1 span:nth-child(1), #loading-screen p span:nth-child(1) { animation-delay: 0s; }
#loading-screen h1 span:nth-child(2), #loading-screen p span:nth-child(2) { animation-delay: 0.1s; }
#loading-screen h1 span:nth-child(3), #loading-screen p span:nth-child(3) { animation-delay: 0.2s; }
#loading-screen h1 span:nth-child(4), #loading-screen p span:nth-child(4) { animation-delay: 0.3s; }
#loading-screen h1 span:nth-child(5), #loading-screen p span:nth-child(5) { animation-delay: 0.4s; }
#loading-screen h1 span:nth-child(6), #loading-screen p span:nth-child(6) { animation-delay: 0.5s; }
#loading-screen h1 span:nth-child(7), #loading-screen p span:nth-child(7) { animation-delay: 0.6s; }
#loading-screen h1 span:nth-child(8), #loading-screen p span:nth-child(8) { animation-delay: 0.7s; }
#loading-screen p span:nth-child(9) { animation-delay: 0.9s; }
#loading-screen p span:nth-child(10) { animation-delay: 1.0s; }
#loading-screen p span:nth-child(11) { animation-delay: 1.1s; } */

/* 文字が動いた後、少し止まるアニメーション */
/* @keyframes wave-animation {
  0% { transform: translateY(0px); }
  40% { transform: translateY(-18px); } 上に浮く 
  60% { transform: translateY(-18px); }  一定時間静止
  100% { transform: translateY(0px); }  元の位置へ 
} */

/* フェードインアニメーション */
/* @keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; } 
}*/

/* LOADING テキストの透過アニメーション */
/*.fade-text {
   animation: fadeLoading 6.5s ease-in-out forwards;
}

@keyframes fadeLoading {
  0% { opacity: 1; }
  100% { opacity: 0.3; } /* ゆっくり透過 
}*/

/* @keyframes loadingBarAnim {*
  0% { transform: scaleX(0); }
  100% { transform: scaleX(1); } / 
}*/

/* 上へ確実に移動するアニメーション（ブラインドスライド） */
/* @keyframes blindMoveUp {
  0% {
      transform: translateY(0);
      opacity: 1;
  }
  50% {
      transform: translateY(0);
      opacity: 1;
  }
  100% {
      transform: translateY(-100vh);
      opacity: 0;
  }
} */

/* JavaScriptでスライド用のクラスを適用 
.slide-up {
  animation: blindMoveUp 5s ease-in-out forwards !important;
}*/

/* タブレット（画面幅が 768px 以下） */
@media screen and (max-width: 768px) {
  #loading-screen img {
    max-width: 70%;
    max-height: 70%;
  }
}

/* スマホ（画面幅が 480px 以下） */
@media screen and (max-width: 480px) {
  #loading-screen img {
    max-width: 90%;
    max-height: 90%;
  }
}

/* 右にスライドして消える */
.slide-out {
  transform: translateY(-100%);
  opacity: 0;
}

.banner-text h2 {
  font-size: 3.5rem; /* 文字を少し大きめに */
  font-weight: bold;
  text-transform: uppercase; /* すべて大文字に */
  color: #ffffff; /* 白に設定 */
  text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.7), 0px 0px 20px rgba(255, 182, 193, 0.8); /* 影とグロー効果 */
  letter-spacing: 0.1em; /* 読みやすく間隔を広げる */
  margin-bottom: 15px;
  opacity: 0;
  transform: translateX(-100%);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.banner-text h2:nth-child(1) {
  transition-delay: 0.2s;
}

.banner-text h2:nth-child(2) {
  transition-delay: 0.4s;
}

.banner-text h2:nth-child(3) {
  transition-delay: 0.6s;
}

.banner-text.show h2 {
  opacity: 1;
  transform: translateX(0);
}

/* メインコンテンツを最初は非表示 */
.wrapper {
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.wrapper {
  overflow: hidden;
}

header{
  position: relative;
  z-index: 10000;
}

h1.logo img{
  width: 184px;
  height: auto;    
}

.text-left{
  text-align: left;	
}

.language{
	margin-right: 2em;
}

.language a{
	margin: 0 0.2em;
}

.language a:hover{
	color: darkgrey;
}

.image1 {
  position: fixed;
  width: 1700px;
  height: 1700px;
  top: -56%;
  left: 0%;
  z-index: -4;
  fill: url("style.css#grad1");
  filter: blur(0);
  opacity: 1;
  transition: filter 0.3s, opacity 0.3s;
}

.image3 {
  position: fixed; /* 背景として固定 */
  width: 400px;
  height: 400px;
  top: 80%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: moveBackground 30s infinite linear, smoothMorph 15s infinite ease-in-out;
  z-index: -5; /* 背景が前面に出ないように */
  filter: blur(0); /* 初期状態のボカシを0に設定 */
  opacity: 1; /* 初期状態は完全に見える */
  transition: filter 0.3s, opacity 0.3s; /* スムーズな変化のためにトランジションを追加 */
  object-fit: cover; /* 画像のサイズを要素にフィットさせる */
}

.JAPANMEDIA_IMG{
  position: absolute;
  top: 10%;
  height: 300px;
}

.ORIGINALCONTENT_IMG{
  position: absolute;
  top: 0%;
  height: 300px;
}

/* 🍪 クッキーポリシーバナー（左下に固定） */
.cookie-banner {
  position: fixed; /* 画面の左下に固定 */
  bottom: 20px;
  left: 20px;
  width: 320px; /* デフォルトの幅 */
  max-width: 90%; /* 画面サイズによって調整 */
  background: linear-gradient(135deg, rgba(106, 90, 205, 0.8), rgba(255, 105, 180, 0.7)); /* 紫～ピンクのグラデーション */
  border-radius: 10px;
  padding: 5px 15px; /* 🔥 縦のスペースを減らす */
  text-align: left; /* 左揃え */
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 9999;
}

/* 🍪 クッキーポリシーのタイトル */
.cookie-content h3 {
  font-size: 18px;
  font-weight: bold;
  color: #ffffff; /* 白文字で可読性UP */
  margin-bottom: 5px;
}

/* 🍪 クッキーポリシーの説明テキスト */
.cookie-content p {
  font-size: 14px;
  color: #ffffff; /* 白文字で見やすく */
  line-height: 1.6;
  margin-bottom: 15px;
}

/* 🍪 ボタン配置 */
.cookie-buttons {
  display: flex;
  gap: 10px;
}

/* 🍪 「詳しく見る」ボタン */
.cookie-link {
  padding: 8px 12px;
  background-color: transparent;
  border: 2px solid #ffffff; /* 白枠で統一 */
  color: #ffffff;
  border-radius: 5px;
  text-decoration: none;
  transition: 0.3s;
}

.cookie-link:hover {
  background-color: #ffffff;
  color: #6A5ACD; /* 文字色を青紫に */
}

/* 🍪 「同意する」ボタン */
.cookie-btn {
  padding: 8px 12px;
  background-color: #ffffff;
  color: #6A5ACD;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

.cookie-btn:hover {
  background-color: #483D8B; /* 濃い青紫 */
  color: #ffffff;
}

/* 📌 🎯 レスポンシブ対応 */

/* タブレット（画面幅が 768px 以下） */
@media screen and (max-width: 768px) {
  .cookie-banner {
    left: 10px; /* 画面の左端に寄せる */
    bottom: 10px;
    width: 250px; /* 少し小さく */
  }
  .cookie-content h3 {
    font-size: 16px; /* タイトルを小さく */
  }
  .cookie-content p {
    font-size: 13px; /* 説明文も小さめ */
  }
}

/* スマホ（画面幅が 480px 以下） */
@media screen and (max-width: 480px) {
  .cookie-banner {
    width: 90%; /* 画面の幅に合わせる */
    left: 50%;
    transform: translateX(-50%);
    bottom: 10px;
    text-align: center;
    align-items: center;
  }

  .cookie-content p {
    font-size: 12px; /* スマホではさらに小さめ */
  }

  .cookie-buttons {
    flex-direction: column; /* ボタンを縦並び */
    width: 100%;
  }

  .cookie-btn, .cookie-link {
    width: 100%;
    text-align: center;
  }
}

@keyframes moveBackground {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  25% {
    transform: translate(-50%, -50%) rotate(90deg);
  }
  50% {
    transform: translate(-50%, -50%) rotate(180deg);
  }
  75% {
    transform: translate(-50%, -50%) rotate(270deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes smoothMorph {
  0% {
    clip-path: inset(10% 10% 10% 10% round 20% 30% 40% 50%);
  }
  12.5% {
    clip-path: inset(15% 5% 20% 15% round 50% 20% 30% 40%);
  }
  25% {
    clip-path: inset(5% 15% 25% 10% round 30% 50% 20% 10%);
  }
  37.5% {
    clip-path: inset(0% 0% 0% 0% round 50% 50% 50% 50%);
  }
  50% {
    clip-path: inset(10% 20% 10% 15% round 25% 35% 45% 55%);
  }
  62.5% {
    clip-path: inset(15% 5% 20% 10% round 35% 45% 15% 25%);
  }
  75% {
    clip-path: inset(5% 25% 15% 20% round 45% 15% 25% 35%);
  }
  87.5% {
    clip-path: inset(0% 0% 0% 0% round 50% 50% 50% 50%);
  }
  100% {
    clip-path: inset(10% 10% 10% 10% round 20% 30% 40% 50%);
  }
}

/* スマホデザインのコンテナ */
.smartphone-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

/* スマホの枠 */
.smartphone-frame {
  position: relative;
  width: 320px; /* スマホの横幅 */
  height: 600px; /* スマホの縦幅 */
  background-color: black;
  border-radius: 40px; /* 丸みをつける */
  padding: 10px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3); /* スマホの影 */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* スマホのノッチ（カメラ部分） */
.smartphone-notch {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 15px;
  background: black;
  border-radius: 10px;
}

/* スマホの画面部分 */
.smartphone-screen {
  position: relative;
  width: 280px; /* 画面の幅 */
  height: 500px; /* 画面の高さ */
  overflow: hidden;
  border-radius: 30px; /* 画面に丸みをつける */
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* スライド画像 */
.smartphone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 1s ease-in-out;
}



/* 下に表示される四角形 */
#moving-square {
  position: fixed;
  left: 65%;
  top: 60%;
  width: 1450px;
  height: 1450px;
  transform: translate(-50%, -50%);
}

.water-ripple {
  position: fixed;
  width: 15px;
  height: 15px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  pointer-events: none;
  z-index: -1; /* 画面の一番下 */
  transform: scale(1);
  animation: rippleEffect 1.5s ease-out forwards;
}

/* 波紋の広がり */
@keyframes rippleEffect {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(8);
    opacity: 0.5;
  }
  100% {
    transform: scale(15);
    opacity: 0;
  }
}

/* /////////アニメーションリスポンシブ//////////// */
@media (max-width: 1440px) {
  .image1 {
    width: 1700px;
    height: 1700px;
    top: -430px;
    left: 0%;
  }
  .image3 {
    width: 400px;
    height: 400px;
    top: 560px;
  }
  #moving-square {
    width: 1450px;
    height: 1450px;
    top: 400px;
    left: 60%;
  }
}

@media (max-width: 1250px) {
  .image1 {
    width: 1550px;
    height: 1550px;
    top: -370px;
    left: -5%;
  }
  .image3 {
    width: 320px;
    height: 320px;
    top: 530px;
  }
  #moving-square {
    width: 1200px;
    height: 1200px;
    top: 400px;
    left: 50%;
  }
}
@media (max-width: 1200px) {
  .image1 {
    width: 1550px;
    height: 1550px;
    top: -370px;
    left: -5%;
  }
  .image3 {
    width: 320px;
    height: 320px;
    top: 530px;
  }
  #moving-square {
    width: 1200px;
    height: 1200px;
    top: 400px;
    left: 53%;
  }
}
/* 1100px 以下の調整 */
@media (max-width: 1100px) {
  .image1{
    width: 1475px;
    height: 1475px;
    top: -335px;
    left: -4%;
  }
  .image3 {
    width: 310px;
    height: 310px;
    top: 520px;
  }
  #moving-square {
    width: 1125px;
    height: 1125px;
    top: 370px;
    left: 57%;
  }
}
/* 1000px 以下の調整 */
@media (max-width: 1000px) {
  .image1 {
    width: 1400px;
    height: 1400px;
    top: -300px;
    left: -8%;
  }
  .image3 {
    width: 300px;
    height: 300px;
    top: 500px;
  }
  #moving-square {
    width: 1050px;
    height: 1050px;
    top: 350px;
    left: 60%;
  }
}
@media (max-width: 950px) {
  .image1 {
    width: 1300px;
    height: 1300px;
    top: -270px;
    left: -12%;
  }
  .image3 {
    width: 280px;
    height: 280px;
    top: 500px; /* 下に調整 */
  }
  #moving-square {
    width: 950px;
    height: 950px;
    top: 320px;
    left: 55%;
  }
}
@media (max-width: 900px) {
  .image1 {
    width: 1300px;
    height: 1300px;
    top: -270px;
    left: -12%;
  }
  .image3 {
    width: 280px;
    height: 280px;
    top: 500px; /* 下に調整 */
  }
  #moving-square {
    width: 950px;
    height: 950px;
    top: 320px;
    left: 55%;
  }
}
/* 850px 以下の調整 */
@media (max-width: 850px) {
  .image1 {
    width: 1250px;
    height: 1250px;
    top: -250px;
    left: -12%;
  }
  .image3 {
    width: 260px;
    height: 260px;
    top: 480px; /* 上に少し移動 */
  }
  #moving-square {
    width: 900px;
    height: 900px;
    top: 300px;
    left: 55%;
  }
}
/* 768px 以下の調整 */
@media (max-width: 768px) {
  .image1 {
    width: 1200px;
    height: 1200px;
    top: -230px;
    left: -15%;
  }
  .image3 {
    width: 250px;
    height: 250px;
    top: 460px; /* 上に少し移動 */
  }
  #moving-square {
    width: 850px;
    height: 850px;
    top: 280px;
    left: 55%;
  }
}
/* 700px 以下の調整 */
@media (max-width: 700px) {
  .image1 {
    width: 1100px;
    height: 1100px;
    top: -200px;
    left: -15%;
  }
  .image3 {
    width: 230px;
    height: 230px;
    top: 440px; /* 上に少し移動 */
  }
  #moving-square {
    width: 750px;
    height: 750px;
    top: 260px;
    left: 55%;
  }
}
@media (max-width: 650px) {
  .image1 {
    width: 1100px;
    height: 1100px;
    top: -200px;
    left: -20%;
  }
  .image3 {
    width: 230px;
    height: 230px;
    top: 440px; /* 上に少し移動 */
  }
  #moving-square {
    width: 750px;
    height: 750px;
    top: 260px;
    left: 55%;
  }
}
/* 600px 以下の調整 */
@media (max-width: 600px) {
  .image1 {
    width: 1000px;
    height: 1000px;
    top: -180px;
    left: -20%;
  }
  .image3 {
    width: 220px;
    height: 220px;
    top: 420px; /* 上に少し移動 */
  }
  #moving-square {
    width: 700px;
    height: 700px;
    top: 240px;
    left: 55%;
  }
}
/* 550px 以下の調整 */
@media (max-width: 550px) {
  .image1 {
    width: 900px;
    height: 900px;
    top: -150px;
    left: -20%;
  }
  .image3 {
    width: 200px;
    height: 200px;
    top: 400px; /* 上に少し移動 */
  }
  #moving-square {
    width: 650px;
    height: 650px;
    top: 280px;
    left: 60%;
  }
}
/* 480px 以下の調整 */
@media (max-width: 480px) {
  .image1 {
    width: 850px;
    height: 850px;
    top: -130px;
    left: -25%;
  }
  .image3 {
    width: 180px;
    height: 180px;
    top: 380px; /* 上に少し移動 */
  }
  #moving-square {
    width: 600px;
    height: 600px;
    top: 240px;
    left: 60%;
  }
}
/* 400px 以下の調整 */
@media (max-width: 400px) {
  .image1 {
    width: 750px;
    height: 750px;
    top: -120px;
    left: -20%;
  }
  .image3 {
    width: 150px;
    height: 150px;
    top: 320px; /* 上に少し移動 */
  }
  #moving-square {
    width: 550px;
    height: 550px;
    top: 200px;
    left: 60%;
  }
}
/* /////////アニメーションリスポンシブ//////////// */
section {
  margin-bottom: 150px;
}
p {
  line-height: 30px;
  font-size: 21px;
  font-family: "AlbertSans", serif;
}

a:hover {
  color: #fff;
}

/* セクションの基本レイアウト */
.section_banner {
  position: relative;
  width: 100%;
  height: 60vh;
  display: flex;
  border-radius: 0 0 50% 50%;
  flex-direction: column;
  align-items: center;
  justify-content: center; /* 変更: 半円を下部に配置 */
  text-align: center;
}

.section_banner_container{
  height: 80vh;
  display: flex;
  border-radius: 0 0 50% 50%;
  flex-direction: column;
  align-items: center;
  justify-content: center; /* 変更: 半円を下部に配置 */
  text-align: center; 
  max-width: 100%;
}

/* 🔄 円形テキスト */
.circular-text {
  position: relative;
  margin-top: 20px;
  width: 100px;
  height: 100px;
  z-index: 2;
}

.circular-text svg {
  width: 100%;
  height: 100%;
  animation: rotate-circle 10s linear infinite;
}

/* 🔄 円の回転 */
@keyframes rotate-circle {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* タイトル部分のスタイル */
.banner-text {
  position: relative;
  z-index: 10;
}

.banner-text .section_title {
  /* font-size: 2rem;
  font-weight: bold;
  color: white;
  margin: 10px 0; */
}

/* 🔵 背景の大きな文字 */
.background-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: -100;
}

/* 各行のスタイル */
.background-text div {
  display: flex;
  white-space: nowrap;
  font-size: 10.5vw; /* 画面幅に応じたサイズ */
  font-weight: bold;
  text-transform: uppercase;
  color: transparent;
  color: rgba(255, 255, 255, 0.2); /* 半透明の文字 */
  -webkit-text-stroke: 2px rgba(83, 58, 107, 0.4); /* 文字の枠 */
  animation-duration: 18s; /* 🔹 速度調整 */
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

/* ループ用に 2 つの span を用意（途中で途切れないように） */
.background-text span {
  display: inline-block;
  padding-right: 10px; /* 🔹 文字間を調整 */
}

/* 📝 行ごとに交互にスクロール */
.line1, .line3, .line5 {
  animation-name: scrolling-text-left;
}
.line2, .line4, .line6 {
  animation-name: scrolling-text-right;
}

/* 🔄 左スクロールアニメーション（1行目と3行目） */
@keyframes scrolling-text-left {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-50%); } /* 50% 移動でループ */
}

/* 🔄 右スクロールアニメーション（2行目） */
@keyframes scrolling-text-right {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0%); }
}

/* 📱 レスポンシブ対応 */
@media (max-width: 1024px) {
  .background-text div {
      font-size: 8vw; /* タブレットでは少し小さめ */
  }
}

@media (max-width: 768px) {
  .background-text {
      gap: 5px; /* スマホではさらに行間を狭める */
  }
  .background-text div {
      font-size: 6vw; /* スマホでは小さめに */
      font-size: clamp(16px, 8vw, 48px);
      -webkit-text-stroke: 1px rgba(83, 58, 107, 0.3);
      animation-duration: 25s;
  }
}

@media (max-width: 480px) {
  .background-text {
      gap: 3px; /* 行間をさらに狭める */
  }
  .background-text div {
      font-size: 5vw; /* モバイル用に最適化 */
  }
}

@media (max-width: 768px) {
  .curved-background {
      width: 160vw;
      height: 70vh;
      bottom: -30%;
  }
  
  .banner-text .section_title {
      font-size: 3rem;
  }

  .background-text span {
      font-size: 6rem;
  }
}

.section_title {
  font-style: "Noto Sans JP", "Yu Gothic", "Meiryo", sans-serif;
  font-family: "Pertili";
  line-height: 88px;
  font-size: 60px;
  font-weight: 300;
}

.sub_title {
  line-height: 24px;
  font-family: "Pertili";
  margin-bottom: 20px;
  font-size: 2.5rem;
  font-weight: 100;
}

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

.view-more {
  font-size: 20px;
  font-family: "Pertili";
  color: black;
  text-decoration: none;
  position: relative;
  text-align: right;
  z-index: 999;
}

.view-more::before {
  content: "→";
  font-size: 18px;
  display: block;
  line-height: 1px;
  /* margin-top: 25px; */
  transition: transform 0.3s ease;
}

.view-more:hover::before {
  transform: translateX(5px);
}

.view-more:hover {
  color: rgb(10, 186, 255);
}

.footer_link:hover {
  color: rgb(10, 186, 255);
}

/* 初期状態 */
.fadeIn {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* アクティブ状態 */
.fadeIn.active {
  opacity: 1;
  transform: translateY(0);
}

.flex {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.inner {
  max-width: 93%;
  padding: 0 2rem;
  margin: 70px auto;
}

.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
}

/* タブレット（画面幅 1024px 以下） */
@media screen and (max-width: 1024px) {
    .banner-text {
        max-width: 90%;
        padding: 15px;
        left: 6%; /* さらに左寄せ */
        max-width: 500px; /* 幅を調整 */
    }
    .banner-text h2 {
        font-size: 2.5rem; /* 文字を少し小さく */
    }
}

/* スマホ（画面幅 768px 以下） */
@media screen and (max-width: 768px) {
    .banner-text {
        padding: 10px;
        left: 4%; /* もっと左へ */
        max-width: 90%; /* 画面の幅を考慮 */
    }
    .banner-text h2 {
        font-size: 2rem; /* さらに小さく */
    }
}

/* スマホ（画面幅 480px 以下） */
@media screen and (max-width: 480px) {
    .banner-text {
      left: 3%; /* さらに左 */
      max-width: 95%;
    }
    .banner-text h2 {
        font-size: 1.8rem; /* 文字をコンパクトに */
    }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 80%;
  }
}
/* Albert Sans Variable Font */
@font-face {
  font-family: "Albert Sans";
  src: url("Fonts/AlbertSans-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900; /* 変数フォントの場合、範囲を指定 */
  font-style: normal;
}
/* Geomanist Regular */
@font-face {
  font-family: "Geomanist";
  src: url("Fonts/Geomanist-Regular.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
/* KozGoPr6N Regular */
@font-face {
  font-family: "KozGoPr6N";
  src: url("Fonts/KozGoPr6N-Regular.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
/* Noto Sans CJK JP Demi Light */
@font-face {
  font-family: "Noto Sans CJK JP";
  src: url("Fonts/NotoSansCJKjp-DemiLight.otf") format("opentype");
  font-weight: 300; /* Demi Lightに相当するウェイト */
  font-style: normal;
}
/* Noto Sans CJK JP Light */
@font-face {
  font-family: "Noto Sans CJK JP";
  src: url("Fonts/NotoSansCJKjp-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
}
/* Noto Sans CJK JP Regular */
@font-face {
  font-family: "Noto Sans CJK JP";
  src: url("Fonts/NotoSansCJKjp-Regular.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
/* Pertili */
@font-face {
  font-family: "Pertili";
  src: url("Fonts/PERTILI.TTF") format("truetype");
  font-weight: normal;
  font-style: normal;
}
/* Poppins Medium */
@font-face {
  font-family: "Poppins";
  src: url("Fonts/Poppins-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
/* SUSE Variable Font */
@font-face {
  font-family: "SUSE";
  src: url("Fonts/SUSE-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900; /* 変数フォントの場合、範囲を指定 */
  font-style: normal;
}
.mb-4{
	margin-bottom: 1em;
}
/* ====================== NAV ============================= */

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 50px;
  /*font-family: self;*/
  font-family: serif;
}
.logo object {
  width: 200px;
  height: auto;
}
.logo a {
  font-size: 24px;
  text-decoration: none;
  color: black;
}
/* レスポンシブスタイル */
@media (max-width: 959px) {
  .menu, .buttons {
    display: none;
    flex-direction: column;
    align-items: flex-start;
  }
  .hamburger-menu {
    display: flex;
  }
  .menu.open, .buttons.open {
    display: flex;
  }
}
.menu a, .drop_btn {
  margin: 0 5px;
  text-decoration: none;
  color: black;
  font-size: 20px;
}
.JAPANMEDIA {
  margin-left: 8px;
}
.dropdown {
  position: relative;
  display: inline-block;
}
.dropdown-content {
  display: none;
  position: absolute;
  min-width: 300px;
  /* 初期状態で透明度と位置を設定 */
  opacity: 0;
  left: -16px;
  transform: translateY(10px);
  /* アニメーションの設定 */
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.dropdown-content a {
  color: #000;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  /* 他のスタイルがあれば追加してください */
}
.dropdown:hover .dropdown-content {
  display: block;
  /* 透明度と位置を変化させてアニメーションを実現 */
  opacity: 1;
  transform: translateY(0);
}
/* =================  hamburger-menu ========================*/
#menu-toggle {
  font-size: 24px;
  cursor: pointer;
  z-index: 1500;
}
#navbar {
  text-align: center;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 66px;
  right: 0;
  padding: 0;
  width: 230px;
  transform: translateX(100%);
  transition: all 0.5s ease;
  z-index: 1000;
}
#navbar.show {
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
}
#navbar .nav_column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
#navbar .menu-item {
  width: 100%;
  padding: 20px;
  position: relative; /* ドロップダウンの位置決めに必要 */
}
#navbar .menu-item:hover {
  background-color: rgba(92, 90, 90, 0.6);
  color: #fff;
}
/* ドロップダウンメニューのスタイル */
#navbar .dropdown .dropdown-content {
  display: none;
  flex-direction: column;
  background-color: rgba(171, 160, 160);
  position: absolute;
  top: 100%;
  left: 0;
  width: 130px;
  z-index: 1001;
}
#navbar .dropdown:hover .dropdown-content {
  display: flex;
}
#navbar .dropdown-content a {
  padding: 15px 0px;
  width: 230px;
  color: #fff;
}
#navbar .dropdown-content a:hover {
  background-color: rgba(92, 90, 90, 1);
}
#navbar .buttons {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
#navbar .btn-black, #navbar .btn-outline-black {
  width: 80%;
  margin: 10px auto;
}
@media (min-width: 959px) {
  #menu-toggle {
    display: none;
  }
}
/* =================  hamburger-menu ========================*/
/* =================== BANNER ================ */
/* .section_banner {
  height: 750px;
  padding: 40px;
}

.banner {
  margin: 0 50px;
  background-image: url(../image/keyvisual.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-text {
  position: absolute;
  left: 8%; /* 少し左へ寄せる 
  width: 60%;*/
  /* color: yellow; 
} */

.fixed {
  position: fixed;
}

.svg-container {
  position: absolute;
  left: 83%;
  top: 65%;
  z-index: 129;
  transition: opacity 0.3s ease;
  display: none; /* 完全に非表示にする場合 */
}

.rotating-svg {
  animation: rotate 10s linear infinite;
}

@media (max-width: 768px) {
  .svg-container {
    left: 70%;
  }
  .rotating-svg {
    width: 40vw;
    height: auto;
  }
}

/* 画面サイズが480px以下の場合のスタイル */
@media (max-width: 480px) {
  .svg-container {
    left: 60%;
  }
  .rotating-svg {
    width: 45vw;
    height: auto;
  }
}

@media (max-width: 390px) {
  .svg-container {
    left: 75%;
  }
  .rotating-svg {
    width: 45vw;
    height: auto;
  }
}

@media (max-width: 768px) {
  .arrow-svg {
    width: 40vw; /* ビューポートの幅に対して70%のサイズ */
    height: auto;
  }
}

/* 画面サイズが480px以下の場合のスタイル */
@media (max-width: 480px) {
  .arrow-svg {
    width: 45vw; /* ビューポートの幅に対して90%のサイズ */
    height: auto;
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* 矢印を上下に動かすアニメーション（矢印は回転しない） */
.arrow-svg {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
}

.arrow-group {
  animation: arrow-move 3s ease-in-out infinite;
}

@keyframes arrow-move {
  0%, 20% {
    transform: translateY(0); /* 初期位置 */
  }
  50% {
    transform: translateY(10px); /* 数秒後に下に下がる */
  }
  100% {
    transform: translateY(0); /* 元に戻る */
  }
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.hidden {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

/* =================== NEWS ================ */
.news {
  display: flex;
  margin: auto;
  margin-top: 4em;
  gap: 50px;
  padding: 1em;
  /* border-top: 2px solid gray; */
}

.news-text {
  margin-top: 12px;
  text-align: right;
}
.news-details p {
  color: gray;
  /*font-size: 10px;*/
}
.news-text span {
  padding: 0;
  margin: 0;
}
.news-details p:nth-child(2) {
  margin-top: 5%;
}
.news-details p:nth-child(3) {
  margin-top: 5%;
}
.news-details span {
  color: black;
  font-size: 13px;
  margin-left: 7px;
}
/* =================== ABOUT ================ */
.about {
  /* border-top: 2px solid gray; */
}
.about-text {
  text-align: right;
}
.about-description p {
  margin: 15px 0;
}
/* =================== TEAM ================ */
.team {
  /* border-top: 2px solid gray; */
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-bottom: 500px;
}
.team-text {
  margin-top: 12px;
  text-align: right;
}
.team-description {
  width: 50%;
}
.team object {
  position: absolute;
  width: 520px;
  left: -70px;
  top: -35px;
}
.floating {
  animation: float 3s ease-in-out infinite;
}
@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}
/* =================== OUR PRODUCT ================ */
.ourproduct-text a {
  margin-top: 25px;
  display: inline-block;
}
.ourproduct {
  position: relative;
  margin-bottom: 450px;
  display: flex;
  justify-content: flex-end; /* 右寄せ */
  align-items: center;
  text-align: right; /* テキストを右寄せ */
  width: 100%;
}

.ourproduct object {
  position: absolute;
  display: flex;
  justify-content: flex-end; /* 右寄せ */
  width: 798px;
  top: -100px;
}

/* =================== SERVICE ================ */
.service {
  position: relative;
  width: 50%;
  height: 700px;
  display: flex;
  margin-bottom: 500px;
}
.service-image {
  z-index: -999; 
  position: relative;
  width: 100%;
  height: 700px;
  border-radius: 0 10px 10px 0;
  overflow: hidden;
}
.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service .inner {
  position: absolute;
  top: -5%;
  right: -80px;
  transform: translateY(-50%);
  transform: translateX(260px);
  color: #000;
}
.service-text {
  text-align: right;
}
.service-contents {
  position: absolute;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  max-width: 700px;
  top: 30%;
  right: -250px;
  transform: translateY(-40%);
  transform: translateX(90px);
  padding: 10px;
  border-radius: 5px;
  background-color: #f4f0f6;
}
.service-contents a {
  color: #fff;
}
.item-1, .item-2 {
  position: relative;
  width: 60%; /* item-1 は60% */
  height: 400px;
  border-radius: 2%;
  overflow: hidden;
  transition: box-shadow 0.3s ease; /* ボックスシャドウのトランジションを追加 */
}
.item-2 {
  width: 40%; /* item-2 は40% */
}
.content-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 0.3s ease, transform 0.3s ease;
}
.service-contents .item-1:hover .content-image, .service-contents .item-2:hover .content-image {
  filter: blur(5px);
  transform: scale(1.05);
}
.service-contents .item-1:hover, .service-contents .item-2:hover {
  box-shadow: 0 0 15px rgba(237, 7, 253, 0.7); /* 光るエフェクトを追加 */
}
.text-overlay-1 {
  font-family: "Pertili";
  position: absolute;
  top: 30%;
  left: 20px;
  transform: translateY(-50%);
  color: white;
  z-index: 1;
}
.text-overlay-2 {
  font-family: "Pertili";
  position: absolute;
  top: 20%;
  left: 20px;
  transform: translateY(-50%);
  color: white;
  z-index: 1;
}
.others-more {
  text-align: right;
}
.text-overlay-1 h4, .text-overlay-2 h4 {
  font-size: 28px;
  font-weight: bold;
  margin: 0;
  line-height: 1.2;
}
/* =================== RECRUIT ================ */
.recruit {
  position: relative;
  width: 65%;
  padding-bottom: 10em;
}
.recruit-image {
  position: relative;
  width: 75%;
  height: 500px;
  margin-left: 0;
  border-radius: 0 10px 10px 0;
  overflow: hidden;
}
.recruit-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.recruit .inner {
  position: absolute;
  width: 100%;
  top: 10%;
  right: 75px;
  transform: translateY(-30%);
  transform: translateX(180px);
  color: #000;
}
.recruit-text {
  text-align: right;
}
.recruit-text h5 {
  margin-bottom: 25px;
}
/* =============== CONTACT =============== */
.footer_link {
  margin: 10px 0;
  font-family: "Pertili";
}

.footer_link ::before {
  content: "|";
  margin-right: 10px;
  font-size: 20px;
}

.contact {
  margin-bottom: 50px;
}
.contact_content a {
  font-family: "Pertili";
  display: block;
  margin: 10px 0;
  text-decoration: none;
}
.contact_content .content_bottom {
  margin-top: 120px;
  font-family: "Pertili";
}
.contact_content .content_bottom span {
  display: block;
  margin-bottom: 5px;
}
.sns a {
  margin-right: 15px;
}
.sns a::after {
  content: "";
  display: inline-block;
  width: 2px;
  height: 10px;
  padding-bottom: 2px;
  background: #5b5959;
  margin-left: 15px;
}
.sns a:last-child::after {
  content: none;
}
.sns {
  margin: 10px 0;
  z-index: 1200;
  font-family: "Pertili";
}
/* =============== Response =============== */
/*--------------------------
// tb
--------------------------*/
@media screen and (min-width: 768px) and (max-width: 1024px) {
  section {
    margin-bottom: 120px;
  }
  .section_title {
    line-height: 68px;
    font-size: 48px;
  }
  .sub_title {
    font-size: 2.2rem;
  }
  p {
    line-height: 26px;
    font-size: 12px;
  }
  .logo object {
    width: 140px;
    height: auto;
  }
  /* =================== OUR PRODUCT ================ */
  .ourproduct object {
    width: 516px;
    top: -100px;
    right: 0;
  }
  .ourproduct {
    margin-bottom: 280px;
  }
  /* =================== SERVICE ================ */
  .service-image {
    height: 560px;
  }
  .service .inner {
    top: -10%;
    right: -48px;
  }
  .service-contents {
    max-width: 560px;
    height: 320px;
    top: 22%;
    right: -190px;
  }
  .content-image {
    height: 300px;
  }
  .item-1, .item-2 {
    height: 300px;
  }
  .text-overlay-1 h4, .text-overlay-2 h4 {
    font-size: 20px;
  }
}
/*--------------------------
// sm
--------------------------*/
@media screen and (max-width: 768px) {
  section {
    margin-bottom: 60px;
  }
  .section_title {
    line-height: 48px;
    font-size: 36px;
  }
  .sub_title {
    font-size: 2rem;
  }
  .logo object {
    width: 140px;
    height: auto;
  }
  .flex {
    display: flex;
    flex-direction: column; /* 縦並びに変更 */
    justify-content: flex-start; /* 必要に応じて調整 */
    align-items: flex-start; /* 必要に応じて調整 */
    gap: 10px; /* アイテム間のギャップはそのまま */
  }
  /* =================== NEWS ================ */
  .news-details span {
    font-size: 11px;
  }
  /* =================== TEAM ================ */
  .team object {
    position: absolute;
    width: 320px;
    left: 10%;
    top: 15px;
  }
  /* =================== OUR PRODUCT ================ */
  .ourproduct object {
    position: absolute;
    width: 400px;
    top: 200px;
    left: 50%;
    transform: translateX(-50%);
  }
  .ourproduct {
    text-align: center;
    margin-bottom: 600px;
    margin-top: 0;
  }
  .ourproduct h2 {
    display: inline;
    margin-left: 10px;
  }
  /* =================== SERVICE ================ */
  .service-image {
    height: 560px;
  }
  .service .inner {
    top: -10%;
    right: 48px;
  }
  .service-contents {
    max-width: 560px;
    height: 320px;
    top: 22%;
    right: -120px;
  }
  .content-image {
    height: 300px;
  }
  .item-1, .item-2 {
    height: 300px;
  }
  .text-overlay-1 h4, .text-overlay-2 h4 {
    font-size: 16px;
  }
}
/* =================== USE BANNER ================ */
h2.center{
    display: table;
    margin-left: auto;
    margin-right: auto;
}
.image4 {
  position: absolute;
  width: 400px;
  height: 400px;
  top: 290px;
  left: 50%;
  transform: translate(-50%, 0%);
  animation: moveBackground4 30s infinite linear, smoothMorph4 15s infinite ease-in-out;
  z-index: -5;
  filter: blur(0);
  opacity: 1;
  transition: filter 0.3s, opacity 0.3s;
  object-fit: cover;
}
@media (max-width: 959px) {
  .image4 {
  width: 40vw;
  height: 40vw;
	top: 28vw; 
}
}
@media (max-width: 768px) {
.image4 {
  width: 50vw;
  height: 50vw;
	top: 40vw; 
}	
}
.image4.scroll_anime_on {
  position: fixed!important;
  top: 80%;
  left: 50%;
  transform: translate(-50%, -100%);
  opacity: 0.3!important;
  filter: blur(10px)!important;
  animation: imagescrollon 1s linear, moveBackground4 30s infinite linear, smoothMorph4 15s infinite ease-in-out;
}
@media (max-width: 768px) {
.image4.scroll_anime_on {
  top: 45%;
  left: 50%;
}	
}
@keyframes imagescrollon {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 0.3;
  }
}
@keyframes moveBackground4 {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  25% {
    transform: translate(-50%, -50%) rotate(90deg);
  }
  50% {
    transform: translate(-50%, -50%) rotate(180deg);
  }
  75% {
    transform: translate(-50%, -50%) rotate(270deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes smoothMorph4 {
  0% {
    clip-path: inset(10% 10% 10% 10% round 20% 30% 40% 50%);
  }
  12.5% {
    clip-path: inset(15% 5% 20% 15% round 50% 20% 30% 40%);
  }
  25% {
    clip-path: inset(5% 15% 25% 10% round 30% 50% 20% 10%);
  }
  37.5% {
    clip-path: inset(0% 0% 0% 0% round 50% 50% 50% 50%);
  }
  50% {
    clip-path: inset(10% 20% 10% 15% round 25% 35% 45% 55%);
  }
  62.5% {
    clip-path: inset(15% 5% 20% 10% round 35% 45% 15% 25%);
  }
  75% {
    clip-path: inset(5% 25% 15% 20% round 45% 15% 25% 35%);
  }
  87.5% {
    clip-path: inset(0% 0% 0% 0% round 50% 50% 50% 50%);
  }
  100% {
    clip-path: inset(10% 10% 10% 10% round 20% 30% 40% 50%);
  }
}
.image5 {
	
	 position: absolute;
   width: 30vw;
    max-width: 560px;
    height: auto;
  top: 200px;
  left: 50%;
  transform: translate(-50%, 0%);
  z-index: -5;
  filter: blur(0);
  opacity: 1;
  transition: filter 0.3s, opacity 0.3s;
	animation: image5float 3s ease-in-out infinite;
   
}

@keyframes image5float {
  0% {
    transform: translate(-50%, 0%);
  }
50% {
    transform: translate(-50%,-15%);
  }
	
  100% {
    transform: translate(-50%, 0%);
  }
}
.image5.scroll_anime_on {
  position: fixed!important;
  top: 50vh;
  left: 50%;
  opacity: 0.3!important;
  filter: blur(10px)!important;
  animation: imagescrollon 1s linear,image5float 3s ease-in-out infinite;
}
@media (max-width: 959px) {
.image5.scroll_anime_on {
  position: fixed!important;
  top: 40vh;
  left: 50%;
}
}
#moving-square.original-square {
  position: absolute;
  left: 50%;
  top: 300px;
  width: 1450px;
  height: 1450px;
  transform: translate(-50%, 0%);
	z-index: -1;
}
@media (max-width: 768px) {
#moving-square.original-square {
  width: 250vw;
  height: 250vw;
}	
}
@media (max-width: 959px) {
#moving-square.original-square {
  top: 200px;
}	
	
}
@media (max-width: 768px) {
#moving-square.original-square {
  top: 200px;
}	
}
#moving-square.original-square.scroll_anime_on {
  position: fixed!important;
  top: 50vh;
  left: 50%;
  opacity: 0.3!important;
  filter: blur(10px)!important;
  animation: imagescrollon 1s linear;
}
.use_section_title {
  font-style: normal;
  font-family: "Pertili";
  line-height: 1.4em;
  font-size: 55px;
  font-weight: 300;
}
@media (max-width: 959px) {
.use_section_title {
  font-size: 50px;
}	
	
}
@media (max-width: 768px) {
.use_section_title {
  font-size: 7.5vw;
}	
}
.use_section_banner {
  height: 400px;
}
@media (max-width: 959px) {
.use_section_banner {
  height: 38vw;
}
}
.banner_inner {
  width: 100%;
  max-width: 768px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.use_container {
  width: 100%;
  max-width: 1131px;
  margin: 0 auto;
}
@media (max-width: 768px) {
.use_container {
  width: calc(100% - 60px);;
  max-width: 768px;
  margin: 0 30px;
}
	.d-sp-none{
		display: none;
	}
}

.d_flex {
  display: flex;
  flex-flow: wrap;
  margin: 0 -15px;
}
.col_left, .col_right {
  padding-left: 17%;
  padding-right: 15px;
}
h3.use_title {
  font-size: 2.4rem;
  font-family: "Pertili";
}
@media (max-width: 959px) {
h3.use_title {
  font-size: 2rem;
}	
	
}
@media (max-width: 768px) {
h3.use_title {
  font-size: 6vw;
	margin-bottom: 1em
}		
}
.about_table {}
.about_table th, .about_table td {
  padding-bottom: 1em;
  text-align: left;
}
.about_table th {
  white-space: nowrap;
  padding-right: 2em;
}
.about_table td {}
#overview nav.nav_fixed ul {
  position: fixed !important;
  animation: navscroll 0.5s linear;
  top: 30px !important;
  z-index: 100;
}
@keyframes navscroll {
  0% {
    opacity: 0;
    transform: translate(0%, -100%);
  }
  100% {
    opacity: 1;
    transform: translate(0%, 0%);
  }
}
.ggmap {
  position: relative;
  padding-bottom: 25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}
@media (max-width: 768px) {
.ggmap {
  padding-bottom: 60%;
}
}
.ggmap iframe, .ggmap object, .ggmap embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.mb-0 {
  margin-bottom: 0!important;
}
.mb-1 {
  margin-bottom: 1rem!important;
}
.mb-2 {
  margin-bottom: 2rem!important;
}
.md-3 {
  margin-bottom: 3rem!important;
}
.md-4 {
  margin-bottom: 4rem!important;
}
.md-5 {
  margin-bottom: 5rem!important;
}
@media (max-width: 768px) {
.md-5 {
  margin-bottom: 0rem!important;
}		
}
/* ABOUT */
#overview {
  position: relative;
  display: block;
}
#overview .use_container {
  /* padding-top: 4rem;
  border-top: 1px solid #333333; */
	padding-bottom: 10rem
}
@media (max-width: 959px) {
#overview .use_container {
	padding-bottom: 4rem
}
}
#overview .col_left,#message .col_left {
  width: 35%;
}
#overview .col_right,#message .col_right {
  width: 65%;
}
@media (max-width: 959px) {
#overview .col_left,#message .col_left {
  width: 30%;
}
#overview .col_right,#message .col_right {
  width: 70%;
}	
	
}
@media (max-width: 768px) {
#overview .col_left,#message .col_left {
  width: 100%;
}
#overview .col_right,#message .col_right {
  width: 100%;
}	
}
#overview nav ul {
  position: absolute;
  top: 4rem;
  left: 30px;
	z-index: 1000;
}
#overview nav ul li {
  margin-bottom: 1.5rem;
}
#overview nav ul li a {
  font-size: 1.2rem;
  font-family: "Pertili";
  opacity: 0.6;
  ccolor: #333;
  transition: opacity 0.6s ease-in-out;
}
#overview nav ul li a:hover {
  opacity: 1;
  color: #333 !important;
}
@media (max-width: 959px) {
#overview nav {
  display: none;
}
}
#member .col_left,#member .col_right {
  width: 50%;
}
@media (max-width: 768px) {
#member .col_left,#member .col_right {
  width: 100%;
}		
}
.member_item{
	display: flex;
	flex-flow: nowrap;
	align-items: center;
	margin-top: 2rem;
}
@media (max-width: 768px) {
.member_item{
	margin-top: 1rem;
}		
}
.member_item figure{
	width: 30%;
	margin: 0;
}
.member_item figure img{
	
}
.member_item .member_text{
  font-family: serif;
	width: 70%;
	padding-left: 2rem;
	
}
.member_item .member_text h4{
	font-size: 1.4rem;
	font-family: "Pertili";
	margin-top: 0.5rem;
}
@media (max-width: 768px) {
.member_item .member_text h4{
	font-size: 1.2rem;
}		
}
.member_item .member_text a{
    display: table;	
}
.member_item .member_text div:nth-of-type(2){
	margin-top: 1rem;
}
#message p {
  line-height: 30px;
  font-size: 0.9rem;
	margin-bottom: 1em;
  font-family: "Noto Sans CJK JP";
}
#message p:nth-last-of-type(1) {
    text-align: right;  
}
#message .container{
    background-image: url(../image/about/bg01.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    border-radius: 15px;
    padding: 120px 0;	
}
@media (max-width: 768px) {
#message .container{
    padding: 60px 0;	
}		
}
.logomark-item{
    background-image: url(../image/about/bg02.jpg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
	border-radius: 15px;
	padding: 60px;
	margin-top: 1rem;
}
@media (max-width: 768px) {
.logomark-item{
	padding: 30px;
	margin-top: 1rem;
}
	#logomark .use_container{
		 margin: 0;
		width: 100%;
	}
}
.logomark-item p{
	font-size: 1.2rem;
	color: white;
}
@media (max-width: 768px) {
.logomark-item p{
	font-size: 1rem;
	margin-bottom: 1em;
}
}
.logomark-item img{
    width: 125px;
    height: auto;
    margin-left: 2em;	
}
@media (max-width: 768px) {
.logomark-item img{
    margin-left: 0em;	
}
}
.logomark-item .d_flex {
  align-items: center;
	justify-content: center;
}

/* cpa */
#intro figure{
    border-radius: 5px;
    overflow-x: hidden;
	margin: 0
}

#media {
  margin-bottom: 0;
}

#media .col_left ,#original .col_left {
  width: 50%;
}

#media .col_right ,#original .col_right {
  width: 50%;
}

#media .col_right figure,#original .col_right figure{
	margin-left: 5%;
	margin-right: calc((50vw - 95%)*-1);
	margin-top: -30%;
}
@media (max-width: 768px) {
#media .col_left ,#original .col_left {
  width: 100%;
}
#media .col_right ,#original .col_right {
  width: 100%;
}
#media .col_right figure,#original .col_right figure{
	margin-left: 0%;
	margin-right: calc((50vw - 50%)*-1);
	margin-top: 1em;
}
}
#media .use_container {
    border-top: 1px solid #000D79;
	padding-top: 3em;
}
#platform {
    position: relative;
    top: 80px;
	margin-bottom: 100px;
}
@media (max-width: 1260px) {
#platform {
    top: 40px;
}
}
#platform .col_left,#platform .col_right {
  width: 50%;
}
@media (max-width: 768px) {
#platform .col_left,#platform .col_right {
  width: 100%;
}
#platform .col_left {
  margin-bottom: 3em;
}
}
#platform h3 {
  font-size: 1.8em;
margin-bottom: 0.6em;
}
#platform figure{
	padding: 0;
	margin: 0 0 2em 0;
}
.platform-item{
    padding: 5em;
    background-color: #FFFFFF;
}
@media (max-width: 959px) {
.platform-item{
    padding: 3em;
}
}
@media (max-width: 768px) {
.platform-item{
    padding: 2em;
}
}
figure.original-end{
    padding-top: 10%;
    padding-left: 10%;
    padding-right: 10%;
	position: relative;
}
figure.original-end h4{
    font-size: 2.4rem;
    font-family: "Pertili";
    position: absolute;
    top: 10%;
    left: 100%;
    transform: rotate(90deg);
    transform-origin: left top;
    color: #b3aeb3;
    letter-spacing: 0.1em;
}
@media (max-width: 768px) {
figure.original-end h4{
    font-size: 8vw;
    top: 5%;
    left: 120%;
}
}
.use_section_news{
	
}
.use_section_news .banner_inner{
	
}
.use_section_news .banner_inner h2{
	margin-top: 1em;
	margin-bottom: 1em;
	position: relative;
}
@media (max-width: 959px) {
.use_section_news .banner_inner h2{
	margin-top: 0.75em;
	margin-bottom: 0.5em;
}
}
@media (max-width: 768px) {
.use_section_news .banner_inner h2{
	margin-top: 0.5em;
	margin-bottom: 0.2em;
}	
}
.use_section_news .banner_inner h2::before{
    content: '';
    position: absolute;
	left: -60%;
	top: 200%;
    width: 700px;
    height: 170px;
    border: 1px solid #C69C6D;
    display: block;
    border-radius: 50%;
    z-index: -1;
	transform: rotate(-25deg);
	transform-origin: left top;
}
@media (max-width: 959px) {
.use_section_news .banner_inner h2::before{
    width: 500px;
    height: 100px;
	left: -100%;
	top: 200%;
}
}
@media (max-width: 768px) {
.use_section_news .banner_inner h2::before{
    width: 80vw;
    height: 20vw;
	left: -100%;
	top: 200%;
}	
}
.text-center{
    text-align: center;	
}
.thanks-text{
	font-size: 2.2em;
}
.col_news{
	width: 33.33333%;
	padding: 1em;
}
@media (max-width: 768px) {
.col_news{
	width: 50%;
	padding: 1em;
}	
}
.col_news figure{
    margin: 0;
    padding: 0;
    overflow: hidden;	
    width: 100%;
    /* width: 200px; */
    height: 200px;
    object-fit: cover;
}
.col_news p{
	font-size: 0.8em;
	font-family: "SUSE";
}
.col_news h4{
	font-size: 1em;
}
.col_news a{
    color: #333333;	
	transition: 0.7s;
}
.col_news a:hover{
    color: #9C6869;
}
.col_news a:hover img{
    transform: scale(1.1);
	
	transition: 0.7s;
}
.post figure h2 .date h3 p{
	
}
.post{
    background-color: #FFFFFF;
    padding-top: 6em;
    padding-right: 6em;
    padding-left: 6em;
    padding-bottom: 5em;
	  margin-right: -6em;
    margin-left: -6em;
	font-size: 1.2rem;
}
.post a:hover{
  color: #0098fd;
}
@media (max-width: 959px) {
.post{
    padding-top: 3em;
    padding-right: 3em;
    padding-left: 3em;
    padding-bottom: 2em;
	margin-right: 0em;
    margin-left: 0em;
}
}
@media (max-width: 768px) {
	.post{
    padding-top: 1em;
    padding-right: 1em;
    padding-left: 1em;
    padding-bottom: 1px;
}
}
.post figure{
    margin: 0;
    padding-top: 0;
    padding-right: 0;
    padding-left: 0;
    padding-bottom: 2em;
    display: flex;
    justify-content: center;
	
}
@media (max-width: 768px) {
.post figure{
    padding-bottom: 1em;
	
}
}
.post h2{
	font-size: 2em;
	padding-bottom: 1em;
	padding-top: 0.5em;
}
.post .date{
	font-size: 0.8em;
	font-family: "SUSE";
	padding-bottom: 2em;
}
.post h3{
    font-size: 1.4em;
    padding-bottom: 1em;
    border-top: 1px solid #DFDFDF;
	border-bottom: 1px solid #DFDFDF;
	padding-bottom: 0.5em;
	padding-top: 0.5em;
	margin-bottom: 1em;
	margin-top: 0.5em;
}
@media (max-width: 959px) {
.post h2{
	font-size: 1.6em;
}
.post h3{
    font-size: 1.2em;
}
}
@media (max-width: 768px) {
	.post h2{
	font-size: 5.5vw;
}
.post h3{
    font-size: 4.5vw;
}
}
.post p{
	font-family: "Noto Sans CJK JP";
	padding-bottom: 1em;
}
a.link-btn{
    padding-top: 0.6em;
    padding-right: 6em;
    padding-left: 6em;
    padding-bottom: 0.6em;
    border-radius: 50em;
    display: table;
    background-color: #333333;
    color: #FFFFFF;
    position: relative;
    text-align: center;
	transition: opacity 0.6s ease-in-out;
}
a.link-btn:hover{
    opacity: 0.7;
	transition: opacity 0.6s ease-in-out;
}
a.link-btn img{
    width: 1em;
    height: auto;
    position: absolute;
    right: 2em;
    top: 50%;
	transform: translate(0%, -50%);
}

#mailform a.link-btn{
    margin-right: auto;
    margin-left: auto;
	margin-top: 6em;
}
/*========*/
/* お問い合わせ */
/*========*/
#mailform p{
	font-family: "Noto Sans CJK JP";
	padding-bottom: 1em;
}
#mailform {
    margin-top: 0em;
    margin-right: -5em;
    margin-left: -5em;
    margin-bottom: 0em;
    padding: 5em;
    background-color: #fff;
}
@media (max-width: 959px) {
#mailform {
    margin-top: 0em;
    margin-right: 0em;
    margin-left: 0em;
    margin-bottom: 0em;
    padding: 3em;
}
}
@media (max-width: 768px) {
#mailform {
    margin-top: 0em;
    margin-right: 0em;
    margin-left: 0em;
    margin-bottom: 0em;
    padding: 1em;
}
}

.mailcont {
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #CCCCCC;
}
#mailform dl input,#mailform dl textarea{
	border:0;
	color:#000000;
	border:solid 1px #ccc;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	font-weight: normal;
	margin-top: 5px;
	margin-right: 0px;
	margin-bottom: 5px;
	margin-left: 0px;
	padding: 5px;
}
#mailform dl {
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #CCCCCC;
	overflow: hidden;
	padding: 0px;
	display: table;
	margin: 0px;
	width: 100%;
	position: relative;
	border-right-style: solid;
	border-right-width: 1px;
	border-left-width: 1px;
	border-left-style: solid;
	border-right-color: #CCCCCC;
	border-left-color: #CCCCCC;
}

#mailform dl dt {
	background-color: #E5E5E5;
	margin: 0px;
	display: block;
	text-align: left;
	padding: 10px;
	vertical-align: top;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #CCCCCC;
}
#mailform dl dd{
	margin: 0px;
	display: block;
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
	background-color: #FFFFFF;
	-moz-box-sizing: border-box;
  box-sizing: border-box;
}
@media (min-width: 768px) {
#mailform dl dt {
	padding: 20px;
	width: 300px;
	display: table-cell;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #CCCCCC;
	border-bottom-width: 1px;
	border-bottom-style: none;
	border-bottom-color: #CCCCCC;
}
#mailform dl dd{
	display: table-cell;
	padding-top: 15px;
	padding-right: 20px;
	padding-bottom: 15px;
	padding-left: 20px;
}}

#mailform  label {
	font-weight: normal;
}
#mailform  label em {
	font-style: normal;
	font-weight: normal;
}
#mailform .size-s {
	width: 25%;
}
#mailform .size-m {
	width: 99%;
}
@media (min-width: 768px) {
#mailform .size-m {
	width: 50%;
}}
#mailform .size-l {
	width: 100%;
}
#mailform .addresssearch {
	padding-top: 5px;
	padding-bottom: 5px;
	border: 1px solid #CCCCCC;
	background-color: #FFFFFF;
	font-size: 10px;
	color: #000000;
	text-align: center;
	display: inline;
	padding-right: 10px;
	padding-left: 10px;
}
#mailform .addresssearch:hover {
	background-color: #CCFFFF;
	text-decoration: none;
}
#formbutton {
	text-align: center;
	padding-top: 15px;
}
#formbutton .submit-button input {
	font-size: 120%;
	background-color: rgb(235, 152, 166);
	color: #FFFFFF;
	padding-top: 15px;
	padding-right: 100px;
	padding-bottom: 15px;
	padding-left: 100px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	-webkit-transition: 0.7s;
	-moz-transition: 0.7s;
	-o-transition: 0.7s;
	transition: 0.7s;
	border: 1px solid #FFF;
	margin-right: 0.5em;
	margin-left: 0.5em;
}
#formbutton .submit-button input:hover {
	background-color: #999999;
	-webkit-transition: 0.7s;
	-moz-transition: 0.7s;
	-o-transition: 0.7s;
	transition: 0.7s;
}
#formbutton .back-button input {
	font-size: 120%;
	background-color: #536394;
	color: #FFFFFF;
	padding-top: 15px;
	padding-right: 100px;
	padding-bottom: 15px;
	padding-left: 100px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	-webkit-transition: 0.7s;
	-moz-transition: 0.7s;
	-o-transition: 0.7s;
	transition: 0.7s;
	border: 1px solid #FFF;
}
#formbutton .back-button input:hover {
	background-color: #999999;
	-webkit-transition: 0.7s;
	-moz-transition: 0.7s;
	-o-transition: 0.7s;
	transition: 0.7s;
}
#mailform .contactfoot {

	margin-top: 50px;
	margin-bottom: 0px;
}
#mailform dl.col1 textarea,#reservation #mailform dl textarea {

}
#mailform h4 {
	font-weight: bold;
	margin-top: 30px;
	font-size: 120%;
}
#mailform .priv_info {
	border: 1px solid #CCCCCC;
	padding: 10px;
	height: 140px;
	overflow: scroll;
	margin-bottom: 15px;
	font-size: 80%;
	overflow-x:hidden;
	background-color: #FFFFFF;
}
#mailform .priv_info h6 {
	font-size: 110%;
	font-weight: bold;
	margin-bottom: 10px;
}
#mailform select {
	font-size: 1.1em;
}#mailform h3 {
	float: none;
	margin-bottom: 30px;
}
/* 送信ボタン */
.submit-btn {
  /* buttonタグのリセットCSS */
background-color: rgb(235, 152, 166);
  cursor: pointer; /* ポインターカーソルを表示 */
}
.back-btn {
    background-color: #C3AFD9!important;
    cursor: pointer; /* ポインターカーソルを表示 */
}
.back-btn:hover {
    background-color: #999999!important;
    cursor: pointer; /* ポインターカーソルを表示 */
}
.submit-btn[disabled] {
	background-color: #999999!important;
  cursor: not-allowed; /* クリック不可のカーソルを表示 */
}
.ajax-loader {
	display: none !important;
}
select.select-form {
	border: 1px solid #CCC;
	font-size: .3em;
}
.wpcf7-spinner{
	display: none;
}
.wpcf7-list-item{
	margin: 0;
}
.wpcf7c-conf{
	background-color: #FFD5D6;	
}

.lightbox { display: none; }

.member_lightbox{
    width: 100%;
    max-width: 760px;
	height: auto;
	font-size: 1.2rem;
	color: #fff!important;
}

@media (max-width: 768px) {

}
.member_lightbox .hed{
    font-family: "AlbertSans", serif;
	margin-bottom: 1em;
}
.member_lightbox .hed img{
    width: 30px;
	height: auto;
	margin-right: 1em;
}
.member_lightbox figure{
	padding: 0;
	margin: 0;
	width: 20%;
}
@media (max-width: 959px) {
.member_lightbox figure{
    padding-left: 1em
}
}
@media (max-width: 768px) {
.member_lightbox figure{
    width: 100%;
    padding-left: 1.5em;
    margin-bottom: 1.5em;
    text-align: center;	
	
}
	.member_lightbox figure img{
	width: 50vw;
		height: auto;
	
}
}
.member_lightbox .member_item_text{
	width: 80%;
	padding-left: 3em;
}
@media (max-width: 768px) {
.member_lightbox .member_item_text{
	width: 100%;
	padding-left: 0em;
	padding-left: 1em
}
}
.member_lightbox h4{
	font-size: 2em;
}
.member_lightbox h5{
	font-size: 1.4em;
	margin-bottom: 1em;
}
@media (max-width: 959px) {
.member_lightbox h4{
	font-size: 1.6em;
}
.member_lightbox h5{
	font-size: 1.3em;
}
}
@media (max-width: 768px) {
.member_lightbox h4{
	font-size: 1.3em;
}
.member_lightbox h5{
	font-size: 1em;
}
}
 .featherlight:last-of-type {
    background: rgba(0,0,0,1)!important;
  }

  .featherlight .featherlight-close-icon {
    position: absolute;
    z-index: 9999;
    top: 0;
    right: 0;
    line-height: 25px;
    width: 25px;
    cursor: pointer;
    text-align: center;
    font: Arial,sans-serif;
    background: transparent!important;
    color: #fff!important;
	  font-size: 2em;
  }
.featherlight .featherlight-content {
    position: relative;
    text-align: left;
    vertical-align: middle;
    display: inline-block;
    overflow: auto;
    padding: 25px 25px 0;
    border-bottom: 25px solid transparent;
    min-width: 30%;
    margin-left: 5%;
    margin-right: 5%;
    max-height: 95%;
    background: transparent!important;
    cursor: auto;
    white-space: normal;
  }
.splang{
    text-align: center;
    padding: 1em 0;
    display: block;
	margin-right: 0;
	width: 100%!important;
}
/*プライバシーポリシー*/
html body div.content_privacy {
    padding: 2em;
}
html body div.content_privacy h4{
    font-size: 150%;
    font-weight: bold;
    text-align: center;
    padding:10px;
}
.content_privacy li{
    padding:10px;
}
div.content_privacy br{
    display:block;
    content:"";
    margin-bottom: 7px;
}
div.content_privacy li[type="1"]{
    padding:10px;
}
div.content_privacy li[type="1"] b{
    font-size: 120%;
}

/*特定商取引法に基づく表示*/
html body div.content_tokushoho{
    padding: 2em;
}
html body div.content_tokushoho h4{
    font-size: 150%;
    font-weight: bold;
    text-align: center;
}
.content_tokushoho li{
    padding:10px;
}
.content_tokushoho li[type="1"]{
    padding:10px;
}
.content_tokushoho li[type="1"] b{
    font-size:120%;
}
div.content_tokushoho br{
    display:block;
    content:"";
    margin-bottom: 7px;
}

/*footer*/
div.content_between{
    margin-top:10px;
}
div.content_between span{
    display:block;
    margin-bottom:10px;
}
.confirmation_screen dl:first-child{
	display: none!important;
}