@charset "utf-8";
/* CSS Document */


    body {
      font-family: "MS Gothic";
      margin: 0;
      background: #fff;
    }
    .background-wrapper {
      background-image: url('../img/back_gazou02.svg');
      background-repeat: no-repeat;
      background-position: center top;
      background-size: 1000px auto;
      display: flex;
      justify-content: center;
      padding-top: 1rem;
    }

    .container {
      width: 100%;
      max-width: 1000px;
      position: relative;
    }

    .sns-buttons {
      position: absolute;
      top: 10px;
      right: 10px;
      display: flex;
      gap: 1.5rem;
      z-index: 10;
    }
    .sns-buttons a {
      display: inline-block;
      width: 2rem;
      height: 2rem;
      text-align: center;
      line-height: 3rem;
      border-radius: 4px;
      text-decoration: none;
      font-weight: bold;
      font-size: 12px;
    }

.content-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end; /* 底辺揃え */
  padding: 0 0 0 20%; /* 左右に50pxの余白 */
}

.left-image {
  width: 300px;
  height: 105px;
  object-fit: cover;
}

.right-text {
  max-width: calc(100% - 20% - 300px - 25%); /* 残りスペースに収める */
  text-align: right;
}
.right-text a{
  font-family: "Univers 75", sans-serif;
  font-size: 16px;
  color: #655e4c;
  display: inline-flex;
  margin-left: 15px;     /* aタグ同士の間隔 */
  text-decoration: none;
}
.text-about {
  text-decoration:none;
  font-family: "Univers 75", sans-serif;
  font-size: 16px;
  color: #655e4c;
  bottom: 20px;
}
.text-aboutni {
  text-decoration:none;
  font-family: "Univers 75", sans-serif;
  font-size: 16px;
  color: #A4A4A4;
  bottom: 20px;
}
.aboutlink {
	margin-top: 80px;
	margin-left: 20%;
	text-decoration:none;
	color:#5281ba;
    font-family: "Univers 75", sans-serif;
    font-weight: bold;
    letter-spacing : 0.44em;
    font-size:24px;
}

    .divider-container {
      display: flex;
      justify-content: flex-end;
      margin: 5px 0 10px 20px;
    }
    .divider-container img {
      width: 800px;
      height: 15px;
    }

    a {
      text-decoration: none;
      font-size: 12px;
      display: inline-block;
      text-align: left;
      width: 100%;
    }

    .zoom-slide-number {
    text-align: right;
    font-size: 14px;
    letter-spacing : 0.2em;
    color: #555;
    margin-bottom: 1rem;
    width: 600px;
    margin-left: auto;
    margin-right: auto;
    }

    .zoom-slide-number span {
      position: relative;
      margin-left: 5px;
      color: #655e4c;
      padding-bottom: 6px;
      display: inline-block;
	  font-family: "Univers 75", sans-serif;
	  font-weight: bold;
    }

    .zoom-slide-number span::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 100%;
      height: 4px;
      background-color: #655e4c;
      border-radius: 2px;
      opacity: 0.7;
      transition: background-color 0.3s ease;
    }

    .zoom-slide-number span.zoom-active {
      font-family: "Univers 75", sans-serif;
      font-weight: bold;
      color: #655e4c;
    }

    .zoom-slide-number span.zoom-active::after {
      background-color: #5281ba; /* セレクトカラー */
      opacity: 1;
    }

    .zoom-slideshow-container {
      width: 600px;
      margin: 0 auto;
      border: 4px solid #ccc;
      overflow: hidden;
      position: relative;
      background: #fff;
      aspect-ratio: 3 / 2;
    }

    .zoom-slide {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      opacity: 0;
      transform: scale(1.2);
      transition: opacity 2s ease-in-out, transform 5s ease-in-out;
    }

    .zoom-slide.zoom-active {
      opacity: 1;
      transform: scale(1.0);
      z-index: 1;
    }

    .zoom-slideshow-container img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    /* ===== 共通マスク（チラ見防止） ===== */
    .slider-mask-left,
    .slider-mask-right {
      position: absolute;
      top: 0;
      bottom: 0;
      width: 3rem;
      background: #eeedeb;
      z-index: 5;
      pointer-events: none;
    }
    .slider-mask-left {
      left: 0;
      border-top-left-radius: 12px;
      border-bottom-left-radius: 12px;
    }
    .slider-mask-right {
      right: 0;
      border-top-right-radius: 12px;
      border-bottom-right-radius: 12px;
    }

    .slider-wrapper,
    .detail-slider {
      position: relative;
      overflow: hidden;
      max-width: 1000px;
      margin: 2rem auto;
      padding: 0 3rem;
      background: #eeedeb;
      border-radius: 12px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      box-sizing: border-box;
    }

    .slider-wrapper .slide-track {
      padding: 1rem 0; /* 上下に余白を追加 */
    }

    .slide-track {
	text-align: left;
      display: flex;
      gap: 1rem;
      transition: transform 0.5s ease;
    }

    .slide {
      flex: 0 0 calc((100% - 4rem) / 5);
      text-align:left;
      box-sizing: border-box;
      overflow:hidden;
    }

    .slide img {
      width: 100%;
      height: 100%;
      border-radius: 0;
	  transition:1s all;
    }

    .slide img:hover {
      transform:scale(1.2,1.2);
      transition:0.3s all;
    }

    .slide p {
      margin: 0.5rem 0 0;
    }

    .slide a:link {
    color: #655e4c;
    }

    .nav-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 10;
      background: #eeedeb;
      border: none;
      cursor: pointer;
      font-size: 1.5rem;
      width: 2.5rem;
      height: 2.5rem;
      padding: 0;
      border-radius: 0; /* 丸くしない */
    }
    .nav-btn.prev { left: 0.5rem; }
    .nav-btn.next { right: 0.5rem; }

    /* ===== 詳細スライドショー ===== */
    .detail-track {
      display: flex;
      gap: 1rem;
      transition: transform 0.5s ease;
    }

    .detail-slide {
      flex: 0 0 calc(100% - 1rem);
      display: flex;
      box-sizing: border-box;
      align-items: center;
      padding: 1rem;
    }

    .detail-slide img {
      width: 30%;
      height: auto;
      margin-right: 1rem;
      border-radius: 8px;
    }

    .detail-text {
      width: 70%;
    }
	  
	h3 {
	font-size:16px;
	}
	  
	.p02 {
	font-family: 'kozuka gothic B';
	font-size: 10px;
	text-align: left;
	color: #5281BA;
	}
	  
	.p022 {
	font-family: 'kozuka gothic B';
	font-size: 10px;
	text-align: left;
	}
	  
	.p025 {
	font-family: 'Kozuka Gothic';
	font-weight: normal;
	font-size: 12px;
	text-align: left;
	}
	  
	.p027 {
	font-family: "Univers 45", sans-serif;
	font-size: 11px;
	text-align: left;
	}
	  
    .eu{
	font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-size:24px;
    color:#5281ba;
    letter-spacing : 0.18em;
	float: right;
    margin-top:-0.5%;
    margin-bottom:40px;
    }
    .tate01{
    writing-mode: vertical-rl;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-weight: bold;
    font-size:48px;
    color:#655e4c;
    margin-top:10px;
    }
    .tate02{
	line-height: 72px;
    writing-mode: vertical-rl;
	font-family: 'kozuka gothic B';
	font-weight: bold;
    font-size:24px;
    color:#655e4c;
    margin-right:12%;
    }
    .co{
    font-family:"Univers LT Pro 55";
    font-size:36px;
    text-align: center;
    }
    .co02{
    font-family:"Univers LT Pro 55";
    font-size:18px;
    }
	.setu{
	font-family: 'Kozuka Gothic';
	font-weight: normal;
	margin:0 20% 0 20%;
	font-size:20px;
	color:#5281ba;
	}
	.line_s {
	margin: 50px 0 0 200px;
	}
	.line_s img {
	width: 600px;
	}
	.prod{
	font-family: "Univers 55", sans-serif;
	font-weight: normal;
	margin-left:20%;
	font-size:32px;
	color:#655e4c;
	margin-top:-10px;
	}
    .text-box {
    width: 1000px;
    background-color: #eeedeb; /* グレイ */
    padding: 30px 0 30px 0;
    box-sizing: border-box;
    }

    .text-boxleft {
	margin-left: 27%;
    width: 740px;
    display: flex;
    box-sizing: border-box;
    align-items: flex-start;
    }

    .text-box p {
    margin: 10px 0 0 20%;
    color: #655e4c;
    }

    .text-boxa {
    margin: 10px 0 0 20%;
    color: #655e4c;
	font-family: 'kozuka gothic B';
    }

    .text-boxb {
    margin: 10px 0 0 20%;
    color: #655e4c;
	font-family: 'Kozuka Gothic';
	font-weight: normal;
    }

    .text-boxleft p {
    color: #655e4c;
    }
    .text-boxc {
      width: 800px;
      margin: 0 auto 50px 20%;
      padding: 20px;
      box-sizing: border-box;
    }
    .text-ad {
	  line-height: 32px;
	  font-family: 'kozuka gothic B';
	  font-size: 16px;
      margin: 0 200px 50px 0;
      box-sizing: border-box;
    }
    .tabl_th{
      font-family: 'kozuka gothic B';
    }
    .tabl_td{
    font-family: 'Kozuka Gothic';
	font-weight: normal;
    }

    .vertical-text {
    writing-mode: vertical-rl;
    text-orientation: upright;
    }

    .vertical-text p {
    margin: 10px 0;
    }

    .horizontal-text {
    flex: 1;
    text-align: center;
    margin-left:10%;
    margin-top: 100px;
    }

    .horizontal-text a{
    font-family: "Univers 75", sans-serif;
    font-weight: bold;
    letter-spacing : 0.44em;
    font-size:24px;
    color: #5281ba;
    }

    .horizontal-textni{
      text-align: left;
      margin-left: 20%;
	  margin-top: 30px;
    }

    .horizontal-textni a{
      font-family: "Univers 75", sans-serif;
      font-weight: bold;
	  font-size:20px;
	  color: #655e4c;
      text-decoration: none;
    }
    .horizontal-textsan{
    font-family: "Univers 75", sans-serif;
    font-weight: bold;
    letter-spacing : 0.44em;
    font-size:24px;
    color: #5281ba;
    text-align: left;
    margin-left: 20%;
    margin-top: 30px;
    }
    .partner-box {
	margin-left: 20%;
	width: 620px;
    padding: 10px 0;
    }
    .partner-box img{
    height:57px;
    padding: 0 10px 0 0;
    }
	.home {
	margin:50px;
	}
	.home a {
	text-align: center;
	}
	.home img {
	widows:60px;
	height: auto;
	}
	.cop {
	margin-bottom: 150px;
	}

/* ifraim用 */
#overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 1000;
}
/* モーダル */
#modal {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 1000px;
  height: 285px;
  background: #fff;
  display: none;
  z-index: 1001;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
}
/* iframeサイズ */
#modal iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 15px;
}
/* 閉じるボタン */
#closeBtn {
  position: fixed;
  top: 10px;
  right: 10px;
  font-size: 30px;
  background: transparent; /* ← 背景を透明にする！ */
  color: white; /* 文字色はそのまま白でOK */
  border: none;
  border-radius: 50%;
  width: 40px; height: 40px;
  cursor: pointer;
  z-index: 1002;
  display: none;
}
/* リンクのデザイン */
a.modal-link {
  display: inline-block;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}