@charset "utf-8";

/* ----------------------------------------------------
  ローディング
---------------------------------------------------- */
.fadeUp{
  animation-name: fadeUpAnime;
  animation-duration:1s;
  animation-fill-mode:forwards;
  opacity: 0;
}
@keyframes fadeUpAnime{
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.start {
  background: #f7f5f4; /* 背景色 */
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 9999;
}
.start img {
  max-width: 280px;
  min-width: 280px;
  height: auto;
}

/* スマホ用 */
@media only screen and (max-width: 480px) {
  .start img {
    width: 150px;
    max-width: none;
  }
}

.start p {
  position: fixed;
  left: 50%;
  top: 48%;
  transform: translate(-50%,-50%);
  display: none;
  z-index: 9999;
}
.loading {
  color: #04c3df; /* 文字色 */
  position: fixed;
  font-weight: 600;
  top: 69%;
  transform: translate(-50%,-50%);
  display: none;
  z-index: 9999;
  left: 50%;
  font-size: 28px;
}
.loading span {
  display: inline-block;
  margin: 0 -.075em 50px;
  animation: loading .7s infinite alternate;
}
.loading span:nth-child(2) {animation-delay: .1s;}
.loading span:nth-child(3) {animation-delay: .2s;}
.loading span:nth-child(4) {animation-delay: .3s;}
.loading span:nth-child(5) {animation-delay: .4s;}
.loading span:nth-child(6) {animation-delay: .5s;}
.loading span:nth-child(7) {animation-delay: .6s;}

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

/* ----------------------------------------------------
  文字スライド
---------------------------------------------------- */
.marquee {
  overflow: hidden;
  display: flex;
  color: #edeae8;
  padding: 20px 0 40px 0
}
.marquee-inner {
  display: flex;
  white-space: nowrap;
  animation: marquee 90s linear infinite;
}
.marquee-inner span {
  padding-right: 50px;
  font-size: 50px;
  line-height: .9;
  margin-top: -0.1em;
  }

.bg-marquee {
  position: relative;
  overflow: hidden;
}

.bg-marquee .marquee {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px; /* 下からの位置調整 */
  z-index: 0;
  pointer-events: none;
}

/* 前面 */
.bg-marquee .zenmen-content {
  position: relative;
  z-index: 1;
}

@media print, screen and (min-width: 768px) {
.marquee {padding: 20px 0 40px 0}
.marquee-inner span {
  font-size: 10rem;
  }
}

@media print, screen and (min-width: 1200px) {
.marquee-inner span {
  font-size: 15rem;
  }
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ----------------------------------------------------
	 カテゴリー（カタログ）
---------------------------------------------------- */
/* 共通余白　必須class
--------------------------- */
.tenkai_ctrg{
  padding:0;
}

@media print, screen and (min-width: 1200px) {
.tenkai_ctrg{
    padding:0;
  }
}

/* アコーディオン基本
--------------------------- */
.tenkai_ctrg .accordion dt{
  display:block;
  width:100%;
  padding:15px 20px;
  font-weight:normal;
  color:#fff;
  background:#04c3df;/* 背景　メインカラー */
  cursor:pointer;
}

.tenkai_ctrg .accordion dd{
  display:none;
}

.tenkai_ctrg .accordion dd ul{
  list-style:none;
  padding:0;
  margin:0;
}

.tenkai_ctrg .accordion dd li a{
  display:block;
  padding:15px 40px 15px 20px;
  border-top:1px solid #e6ddd4;
  transition:.3s;
  position:relative;
}

/* 縦メニュー　角丸
--------------------------- */
@media only screen and (max-width: 767px) {
.tenkai_ctrg .accordion dt{
  border-radius:5px 5px 0 0;
  }
.tenkai_ctrg .accordion dd li:last-child a{
  border-radius:0 0 5px 5px;
  border-bottom:none;
  }
}

/* リンク
--------------------------- */
.tenkai_ctrg .accordion dd li a:link,
.tenkai_ctrg .accordion dd li a:visited{
  color:#222;
  background:#fff;
}

.tenkai_ctrg .accordion dd li a:hover{
  color:#fff;
  background:#04c3df;  
}

/* アイコン
--------------------------- */
.tenkai_ctrg .accordionIcon{
  position:relative;
  float:right;
  width:24px;
  height:24px;
}

.tenkai_ctrg .accordionIcon span{
  position:absolute;
  left:0;
  width:100%;
  height:2px;
  background:#fff;
  transition:.4s;
}

.tenkai_ctrg .accordionIcon span:nth-of-type(1){top:0;}
.tenkai_ctrg .accordionIcon span:nth-of-type(2){top:11px;}
.tenkai_ctrg .accordionIcon span:nth-of-type(3){bottom:0;}

.tenkai_ctrg .active .accordionIcon span:nth-of-type(1){
  transform:translateY(11px) rotate(-315deg);
}

.tenkai_ctrg .active .accordionIcon span:nth-of-type(2){
  opacity:0;
}

.tenkai_ctrg .active .accordionIcon span:nth-of-type(3){
  transform:translateY(-11px) rotate(315deg);
}

/* 現在選択中のカテゴリ
--------------------------- */
@media only screen and (max-width: 767px) {
.tenkai_ctrg .navon{
  background:#eee !important;
  color:#222 !important;
  }
}

@media print, screen and (min-width: 768px) {
.tenkai_ctrg .navon{
  background:#04c3df !important; /* 選択中　背景色 */
  color:#fff !important;
  }
}

/* ----------------------------------------------------
   カテゴリ Aタイプ（横並びボタン）
---------------------------------------------------- */
@media print, screen and (min-width: 768px) {
.tenkai_ctrg--a .accordion dd{
  display:block;
  }

.tenkai_ctrg--a .accordion dd ul{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:10px;
  }

.tenkai_ctrg--a .accordion dd li{
  width:auto;
  }

.tenkai_ctrg--a .accordion dd li a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:44px;
  padding:10px 20px;
  border-radius:5px;
  border:1px solid #e6ddd4;
  background:#fff;
  white-space:nowrap;
  }
}

@media print, screen and (min-width: 992px) {
.tenkai_ctrg--a .accordion dd ul{
  gap:20px;
  }
}

/* ----------------------------------------------------
  スクロールヒント用
---------------------------------------------------- */
.table_wrap {
  width: 100%;
  margin-inline: auto;
  overflow-x: auto;
  overflow-y: auto;  
}
@media only screen and (max-width: 767px) {
.table_wrap {
  width: 100%;
  height: 330px;
  }
}
.table_wrap::-webkit-scrollbar {height: 10px;}
.table_wrap::-webkit-scrollbar-track {background-color: #E2E2E2;}
.table_wrap::-webkit-scrollbar-thumb {background-color: #aaa;}

/* スマホ幅　スクロールヒント用　横幅
---------------------------------------------------- */
@media only screen and (max-width: 767px) {
.table_hint {
  width: 800px;
  margin: 0 auto;
  }
}
@media print, screen and (min-width: 768px) {
.table_hint {
  width: 100%;
  }
}

/* ----------------------------------------------------
    タブ切り替え（静）
---------------------------------------------------- */
.tab_shell_scroll {
  width: 100%;
  margin: 0 auto;
}

.tab_tabs_scroll {
  font-size: 0;
  white-space: nowrap;
  overflow: hidden; /* 横スクロールをなくす */
  text-align: left;
  padding-bottom: 0;
  margin-bottom: 5px;
  display: flex;
  flex-wrap: wrap; /* タブを複数行に折り返し */
  gap: 8px; /* タブ間のスペース */
}
@media print, screen and (min-width: 768px) {
.tab_tabs_scroll {
  margin-bottom: 0;
  }
}

.tab_shell_scroll input[type="radio"] {display: none;}

.tab_tabs_scroll label {
  display: block;
  font-size: 16px;
  padding: 10px 14px;
  cursor: pointer;
  border-radius: 10px;
  vertical-align: top;
  background-color: #04c3df;
  color: #fff;
  transition: background-color 0.3s ease, color 0.3s ease;
  min-width: 100px; /* タブの最小幅 */
  text-align: center;
  gap: 15px; /* タブ間のスペース */
}

@media screen and (min-width: 768px) {
.tab_tabs_scroll label {
  font-size: 20px;
  border-radius: 10px 10px 0 0;    
  padding: 15px 25px 15px 25px;
  min-width: 120px;
  }
}

.tab_tabs_scroll label i {
  margin-left: 5px;
  font-size: 18px;
}

#tab1:checked ~ .tab_tabs_scroll label.tab_tabs_01,
#tab2:checked ~ .tab_tabs_scroll label.tab_tabs_02,
#tab3:checked ~ .tab_tabs_scroll label.tab_tabs_03 {
  background-color: #fff;
  color: #222;
  font-weight: bold;
}

.tab_zone_cluster {
  width: 100%;
  padding: 0;
  display: none;
}

#tab1:checked ~ .tab_zone_scroll #tab_zone_01 {display: block;}
#tab2:checked ~ .tab_zone_scroll #tab_zone_02 {display: block;}
#tab3:checked ~ .tab_zone_scroll #tab_zone_03 {display: block;}

.tab_zone_scroll {
  background: #fff;
  margin-top: 0;  
  padding: 15px 15px 0 15px;
  border-radius:10px;
}
@media print, screen and (min-width: 768px) {
.tab_zone_scroll {
  padding: 30px 40px 15px 40px;
  border-radius:0 10px 10px 10px;  
  }
}
@media print, screen and (min-width: 992px) {
.tab_zone_scroll {
  padding: 50px 60px 20px 60px;
  }
}

/* タブエリア内　記事ごとの余白
---------------------------------------------------- */
.tab_zone .border_box{margin-bottom: 50px;}
@media print, screen and (min-width: 768px) {.tab_zone .border_box{margin-bottom: 40px;}}