@import url('https://fonts.googleapis.com/css2?family=BIZ+UDMincho:wght@400;700&family=Noto+Sans+JP:wght@100..900&display=swap');

/*-----------------------------------------
-------------------------------------------
-------------------------------------------
-------------------------------------------

目次　※各々レスポンシブ対応あり

01 共通部分設定＆リセットCSS
02 ヘッダーの設定
03 コンテンツの設定
04 フッターの設定

-------------------------------------------
-------------------------------------------
-----------------------------------------*/

/*-----------------------------------------
01 共通部分設定＆リセットCSS
-------------------------------------------*/
body {
  padding: 0;
  margin: 0;
}

div.body {
  margin: auto;
  min-width: 1100px;
}

@media screen and (max-width:768px) {
  div.body {
    min-width: auto;
  }
}

div.body * {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}

.center {
  width: calc(100% - 30px);
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

@media screen and (max-width:768px) {
  .center {
    width: calc(100% - 20px);
    max-width: 500px;
  }
}

.body a {
  transition: all 0.6s ease 0s;
  text-decoration: none;
}

.body a:hover {
  opacity: 1;
}

.body img {
  width: 100%;
  height: auto;
  vertical-align: top;
}

.body p,
.body a,
.body h1,
.body h2,
.body h3,
.body h4,
.body h5,
.body li,
.body span,
.body div {
  text-shadow: none;
  margin: auto;
  padding: 0;
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--black01);
  letter-spacing: 0.07em;
  line-height: 1.5;
  background: none;
}
.body h1,
.body h2,
.body h3,
.body h4,
.body h5{
  font-weight: 700;
}
.body li {
  list-style: none;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

@media screen and (max-width:768px) {
  .pc {display: none !important;}
  .sp {display: block;}
}


.fnt-main {
  font-family: 'Noto Sans JP', sans-serif;
}

:root {
  /* --orange01: #E95006;
  --orange02: #ff6629;
  --orange03: #fd7c36;
  --brown01:#493C2F;
  --gray01: #505050;
  --blue01: #0075C1;
  --blue02: #23B3D3;
  --yellow01: #FFE000;
  --yellow02: #fdf6bc; */

  --blue01: #1D91D8;
  --blue02: #8BE1EF;
  --yellow01: #F4F77F;
  --black01: #333333;
  --gray01: #F2F2F2;
}

/*-----------------------------------------
01 共通部分設定＆リセットCSS　ここまで
-------------------------------------------*/

/*-----------------------------------------
02 ヘッダーの設定
-------------------------------------------*/
/*背景*/
section.headGrp {
  padding: 40px 0 60px;
  background: url(https://d11w49g8ylcixs.cloudfront.net/resource/20260427/bg_pc.png)no-repeat center top / contain;
}

@media screen and (max-width:768px) {
  section.headGrp {
    background: url(https://d11w49g8ylcixs.cloudfront.net/resource/20260427/bg_sp.png)no-repeat center top / contain;
  }
}

/* 途中から背景固定 */
section.headGrp.target-bg.is-fixed {
  background-attachment: fixed;
  background-size: cover;
}

/* タイトル */
section.headGrp .wrap01 div.center {
  max-width: 1150px;
}

@media screen and (max-width:768px) {
  section.headGrp .wrap01 div.center {
    max-width: 500px;
  }
}

/* 熱中症対策義務化の説明 */
section.headGrp .wrap02 {
  padding: 80px 0;
  margin: 30px 0 80px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  /* 上下 20px ずつを透過させるマスク */
  -webkit-mask-image: linear-gradient(to bottom,
      transparent 0%,
      black 20px,
      black calc(100% - 20px),
      transparent 100%);
  mask-image: linear-gradient(to bottom,
      transparent 0%,
      black 20px,
      black calc(100% - 20px),
      transparent 100%);
}

div.aboutGrp {
  display: grid;
  grid-template-columns: 3.5fr 1fr;
  gap: 30px;
}

div.about-text h2 {
  color: var(--blue01);
  text-align: left;
  font-size: 30px;
  letter-spacing: 0.07em;
  margin-bottom: 0.5em;
}

div.about-text p {
  text-align: left;
  font-size: 17px;
  letter-spacing: 0.1em;
  line-height: 1.75;
}

div.about-text p strong {
  font-weight: 700;
  font-family: 'Noto Sans JP', sans-serif;
}

div.about-text p.come {
  font-size: 14px;
  padding-left: 1em;
  text-indent: -1em;
  letter-spacing: 0em;
  opacity: 0.7;
  margin-top: 0.75em;
}

div.about-label {
  width: 100%;
}

.body div.about-label h3,
.body p.about-label-text {
  font-family: "BIZ UDMincho", serif;
  font-weight: 700;
  font-style: normal;
}
.body p.about-label-text{
  text-align: center;
}
div.about-label h3 {
  color: var(--blue01);
  display: inline-block;
  padding: 0 15px;
  position: relative;
  font-size: 24px;
  line-height: 1;
  margin-bottom: 20px;
}

div.about-label h3::before,
div.about-label h3::after {
  content: "";
  display: block;
  width: 2px;
  height: 22px;
  background: var(--blue01);
  position: absolute;
  bottom: 0;
}

div.about-label h3::before {
  left: 0;
  transform: rotate(-15deg);
}

div.about-label h3::after {
  right: 0;
  transform: rotate(15deg);
}

div.about-label .grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 7px;
}

p.about-label-text {
  display: block;
  width: 100%;
  padding: 0.75em;
  border-radius: 100px;
  background: var(--blue02);
  font-size: 20px;
}


@media screen and (max-width:768px) {
  section.headGrp .wrap02 {
    padding: 60px 0;
    margin-bottom: 60px;
  }

  div.aboutGrp {
    grid-template-columns: 1fr;
  }

  div.about-text h2 {
    font-size: 21px;
  }

  div.about-text p {
    font-size: 15px;
  }

  p.about-label-text {
    font-size: 18px;
  }

  div.about-label .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width:500px) {
  section.headGrp .wrap02 {
    margin-bottom: 30px;
  }

  div.about-text h2,
  div.about-label h3 {
    font-size: 18px;
  }

  div.about-text p,
  p.about-label-text {
    font-size: 14px;
  }
}

/* 具体的な対策・アイテムから見る */
div.illust-menu {
  padding: 10px;
  background: repeating-linear-gradient(-45deg,
      #fff 0 10px,
      var(--yellow01) 10px 20px);
  position: relative;
}

div.illust-menu-inner {
  background: #fff;
  padding: 60px 30px 40px;
}

div.illust-menu h3 {
  display: inline-block;
  width: calc(100% - 50px);
  max-width: 600px;
  background: var(--yellow01);
  border-radius: 100px;
  padding: 0.6em 1.5em;
  font-size: 30px;
  color: var(--blue01);
}

div.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 20px;
  max-width: 1100px;
}

div.menu-item h4 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--blue01);
  font-size: 24px;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

div.menu-item h4 span {
  display: inline-block;
  color: var(--black01);
  font-size: 80%;
  margin-bottom: 5px;
  padding: 0 10px;
  line-height: 1;
  position: relative;
}

div.menu-item h4 span::before,
div.menu-item h4 span::after {
  content: "";
  display: block;
  width: 2px;
  height: 90%;
  background: var(--black01);
  position: absolute;
  bottom: 0;
}

div.menu-item h4 span::before {
  left: 0;
  transform: rotate(-15deg);
}

div.menu-item h4 span::after {
  right: 0;
  transform: rotate(15deg);
}

div.menu-box a {
  display: block;
  position: relative;
  transition: all 0.3s ease 0s;
}

div.menu-box a:hover {
  transform: translateY(5px);
}

div.menu-box a img {
  display: block;
  border: 3px solid var(--blue01);
  border-radius: 12px;
  position: relative;
}

div.menu-box a::after {
  content: "";
  display: block;
  width: 35px;
  height: 35px;
  background: url(https://d11w49g8ylcixs.cloudfront.net/resource/20260427/icon-arrow-bottom.png)no-repeat center / contain;
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
}


@media screen and (min-width:769px) {
  div.illust-menu h3 {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);

  }
}

@media screen and (max-width:768px) {
  div.illust-menu h3 {
    width: 100%;
    font-size: 22px;
    margin-bottom: 22px;
  }

  div.illust-menu-inner {
    padding: 20px;
  }

  div.menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  div.menu-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
  }
}

@media screen and (max-width:500px) {
  div.illust-menu h3 {
    font-size: 4.75vw;
  }

  div.menu-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
  }
}

@media screen and (max-width:400px) {
  div.menu-grid {
    grid-template-columns: 1fr;
  }

}

/*追従グローバルメニュー*/
div.menu_Button {
  position: fixed;
  top: -140px;
  left: 0;
  display: block;
  width: 100%;
  max-width: 100%;
  background: #fff;
  filter: drop-shadow(0 0 8px rgba(136, 136, 136, 0.6));
  z-index: 99;
  transition: all 0.6s ease 0s;
}

div.menu_Button.fixed_menu_Button {
  top: 0px;
}

ul.menu_ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 8px;
  max-width: 900px;
  margin: auto;
}

li.menu_li {
  display: block;
  width: 100%;
}

li.menu_li a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--blue01);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  position: relative;
  padding: 0.85em;
  border-radius: 10px;
}

li.menu_li a:hover {
  background: #cbe8f7;
}

li.menu_li a span {
  display: inline-block;
  color: var(--black01);
  font-size: 70%;
  font-weight: 700;
  padding: 0 0.5em;
  margin-bottom: 7px;
  letter-spacing: 0.3em;
  opacity: 0.5;
}


/*ハンバーガーメニュー-----------------------------*/
/* --- ハンバーガーメニュー全体設定 --- */
#g-nav {
  position: fixed;
  z-index: 999;
  top: 0;
  right: -120%;
  /* 初期位置：右側に隠す */
  width: 100%;
  /* 基本は全画面（スマホ基準） */
  height: 100vh;
  background: var(--blue02);
  transition: all 0.6s;
  overflow-y: auto;
  /* 縦スクロールを有効化 */
  -webkit-overflow-scrolling: touch;
}

/* アクティブ時（メニュー開） */
#g-nav.panelactive {
  right: 0;
}

/* PCサイズ以上の調整 */
@media screen and (min-width: 769px) {
  #g-nav {
    width: 25%;
    max-width: 360px;
    border-left: 3px solid #fff;
  }
}

/* --- ナビゲーションリスト --- */
#g-nav-list {
  width: 100%;
  min-height: 100%;
  /* スクロール領域を確保 */
  padding: 20px 0 100px 0;
  /* 上下に余白（ボタンや末尾の見切れ防止） */
  display: flex;
  justify-content: center;
  align-items: center;
}

#g-nav ul {
  width: calc(100% - 60px);
  max-width: 400px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}


@media screen and (max-width: 768px) {
  #g-nav-list {
    padding: 80px 0;
  }
}

/* リストアイテム */
#g-nav li {
  padding-bottom: 10px;
  filter: drop-shadow(3px 3px 0 var(--orange01));
}

#g-nav li a {
  position: relative;
  display: block;
  padding: 0.5em 2em 0.5em 1.25em;
  text-decoration: none;
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 18px;
  /* デフォルトをスマホ向けに少し大きく */
  line-height: 1.5;
  letter-spacing: 0.1em;
  color: var(--blue01);
  background: #fff;
  border-radius: 10px;
  /* clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%); */
  transition: all 0.3s;
}

#g-nav li a span {
  display: block;
  color: var(--black01);
  opacity: 0.7;
  font-size: 75%;
}

/* リストの矢印アイコン */
#g-nav li a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 5px;
  height: 5px;
  border-bottom: 2px solid var(--blue01);
  border-left: 2px solid var(--blue01);
  transform: translateY(-50%) rotate(-45deg);
}

#g-nav li a:hover {
  background: var(--gray01);
}

/* --- 特殊なリスト（タイトル等） --- */
/* #g-nav li.li_title {
  margin-top: 30px;
}

#g-nav li.li_title a {
  color: var(--green01) !important;
  font-size: 18px;
  padding: 0.35em 0.5em;
} */

/* --- 開閉ボタン --- */
.openbtn {
  position: fixed;
  z-index: 9999;
  right: -4px;
  bottom: 110px;
  width: 60px;
  height: 55px;
  background: var(--blue01) !important;
  border: 3px solid #fff;
  border-radius: 3px 0 0 3px;
  cursor: pointer;
}

.openbtn span {
  position: absolute;
  left: 15px;
  display: inline-block;
  width: 45%;
  height: 3px;
  background-color: #fff;
  border-radius: 2px;
  transition: all .4s;
}

.openbtn span:nth-of-type(1) {
  top: 15px;
}

.openbtn span:nth-of-type(2) {
  top: 25px;
}

.openbtn span:nth-of-type(3) {
  top: 35px;
}

/* ボタン：アクティブ（×印） */
.openbtn.active span:nth-of-type(1) {
  top: 18px;
  left: 17px;
  width: 40%;
  transform: translateY(6px) rotate(-45deg);
}

.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
  top: 30px;
  left: 17px;
  width: 40%;
  transform: translateY(-6px) rotate(45deg);
}

/* PCサイズのボタン調整 */
@media screen and (min-width: 769px) {
  #g-nav li a {
    font-size: 18px;
  }

  .openbtn {
    width: 70px;
    height: 70px;
    bottom: 115px;
  }

  .openbtn span:nth-of-type(1) {
    top: 17px;
  }

  .openbtn span:nth-of-type(2) {
    top: 30px;
  }

  .openbtn span:nth-of-type(3) {
    top: 43px;
  }
}

@media screen and (max-width: 768px) {
  #g-nav li a {
    font-size: 18px;
  }

  #g-nav li a {
    font-size: 18px;
  }
}

/* 小さい画面用のフォント調整 */
@media screen and (max-width: 420px) {
  #g-nav li a {
    font-size: 18px;
  }
}

/*ハンバーガーメニューここまで---------------*/





@media screen and (max-width:1080px) {}

@media screen and (max-width:768px) {}


/*-----------------------------------------
02 ヘッダーの設定　ここまで
-------------------------------------------*/

/*-----------------------------------------
03 コンテンツの設定
-------------------------------------------*/


/*共通部分-----------------------------------------------------*/
/*各コンテンツのカテゴリー：タイトル部分やリスト*/
.mainGrp div.wrap {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 90%),
    url(https://d11w49g8ylcixs.cloudfront.net/resource/20260427/bg_pc.png)no-repeat center top / cover;
  background-attachment: fixed;
  padding-bottom: 60px;
}

div.products-title {
  padding: 10px;
  background: repeating-linear-gradient(90deg,
      #9CE5F1 0 2px,
      var(--blue02) 2px 6px);
  padding: 60px 0;
}

div.products-title-box-h3 {
  background: #fff;
  padding: 30px 20px 0px;
  border-radius: 20px 20px 0 0;
  width: calc(100% - 60px);
  max-width: 410px;
  transform: translateY(5px);
}

div.products-title-box-h3 h3 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--blue01);
  font-size: 28px;
  letter-spacing: 0.1em;
}

div.products-title-box-h3 h3 span {
  display: inline-block;
  color: var(--black01);
  font-size: 80%;
  margin-bottom: 5px;
  padding: 0 10px;
  line-height: 1;
  position: relative;
}

div.products-title-box-h3 h3 span::before,
div.products-title-box-h3 h3 span::after {
  content: "";
  display: block;
  width: 2px;
  height: 90%;
  background: var(--black01);
  position: absolute;
  bottom: 0;
}

div.products-title-box-h3 h3 span::before {
  left: 0;
  transform: rotate(-15deg);
}

div.products-title-box-h3 h3 span::after {
  right: 0;
  transform: rotate(15deg);
}

div.products-title-box-grid-bg {
  background: #fff;
  padding: 50px;
  border-radius: 20px;
}

div.products-title-box-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 30px;
}

div.box-illust img {
  border-radius: 15px;
}

div.box-text {
  margin: 0;
}

div.box-text p {
  text-align: left;
  font-size: 19px;
  font-weight: 500;
}

ul.come {
  display: block;
  padding: 0;
  margin: 15px 0 0;
}

ul.come li {
  text-align: left;
  /* opacity: 0.7; */
  margin-bottom: 0.35em;
  font-size: 15px;
  line-height: 1.35;
}

/* ul.come li::before{
  content: "※";
} */
ul.come li:last-of-type {
  margin-bottom: 0;
}

ul.come li.come {
  opacity: 0.7;
  font-size: 13px;
}

ul.come li.come::before {
  content: "※";
}

div.products-list-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 950px;
  margin-top: 40px;
}

div.products-list-box-item {
  display: flex;
  width: 100%;
  margin: 0;
}

div.products-list-box-item a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 80px;
  background: #fff;
  border-radius: 100px;
  padding: 1em 50px 1em 1.25em;
  font-size: 20px;
  font-weight: 700;
  color: var(--blue01);
  position: relative;
}

div.products-list-box-item.small a {
  font-size: 15px;
}

div.products-list-box-item a::after {
  content: "";
  display: block;
  width: 35px;
  height: 35px;
  background: url(https://d11w49g8ylcixs.cloudfront.net/resource/20260427/icon-arrow-bottom.png)no-repeat center / contain;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

div.products-list-box-item a:hover {
  background: var(--yellow01);
}

@media screen and (max-width:768px) {
  .mainGrp div.wrap {
    background: url(https://d11w49g8ylcixs.cloudfront.net/resource/20260427/bg_sp.png)no-repeat center top / cover;
    background-attachment: fixed;
  }

  div.products-title-box-h3 {
    max-width: 350px;
  }

  div.products-title-box-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  div.products-list-box {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  div.products-list-box-item a {
    font-size: 16px;
  }

  div.products-list-box-item.small a {
    font-size: 14px;
  }
}

@media screen and (max-width:500px) {
  div.products-title-box-h3 {
    max-width: 275px;
    padding-bottom: 15px;
  }

  div.products-title-box-h3 h3 {
    font-size: 24px;
  }

  div.products-title-box-grid-bg {
    padding: 30px;
  }

  div.box-text p {
    font-size: 16px;
  }

  ul.come li {
    font-size: 14px;
  }

  div.products-list-box-item a {
    font-size: 3vw;
    height: 70px;
  }

  div.products-list-box-item.small a {
    font-size: 2.75vw;
  }

  div.products-list-box-item a::after {
    width: 25px;
    height: 25px;
  }
}

@media screen and (max-width:400px) {
  div.products-list-box {
    grid-template-columns: 1fr;
  }

  div.products-list-box-item a {
    font-size: 5vw;
    height: 70px;
  }

  div.products-list-box-item.small a {
    font-size: 4vw;
  }
}

@media screen and (max-width:370px) {
  div.products-title-box-h3 h3 {
    font-size: 20px;
  }
}

/*コンテンツ紹介*/
/* div.products-contents div.center{
  max-width: 1100px;
} */
div.products-contents div.center.white-box {
  border-radius: 10px;
  background: #fff;
  max-width: 1100px;
}

div.products-contents {
  padding: 40px 0 0;
}

div.products-contents-box {
  padding: 30px 30px 20px;
  max-width: 1020px;
}

/* div.products-contents-box{
  border-radius: 10px;
  background: #fff;
  padding: 30px;
} */
div.products-contents-box h4 {
  background: var(--blue01);
  color: #fff;
  font-size: 24px;
  padding: 0.35em;
  margin-bottom: 20px;
}

div.products-contents-box p {
  font-size: 18px;
  font-weight: 700;
}
div.products-contents-box>p{
  text-align: center;
}

div.products-contents-box p.box-label {
  display: block;
  width: 100%;
  background: var(--gray01);
  color: var(--blue01);
  padding: 0.25em;
  margin-bottom: 10px;
  text-align: center;
}

div.products-contents-box p span {
  color: var(--blue01);
  font-weight: 700;
}

div.products-contents-box p.come {
  display: block;
  font-size: 14px;
  font-weight: 400;
  opacity: 0.7;
  margin: 0.35em auto 0;
  padding-left: 1em;
  text-indent: -1em;
}

div.box-img {
  padding: 20px 0;
}

div.box-grid {
  display: grid;
  gap: 20px;
}

div.box-grid-item {
  width: 100%;
}

div.box-grid-item-wrap {
  margin-top: 0;
  margin-bottom: 30px;
}

div.box-grid-item-wrap:last-of-type {
  margin-bottom: 0px;
}

div.box-grid-item-wrap p {
  text-align: left;
  font-size: 20px;
}

div.box-grid-item-wrap p.box-label {
  text-align: center;
}

div.box-grid-item-wrap p.small {
  font-size: 15px;
  font-weight: 500;
}

@media screen and (max-width:768px) {

  div.products-contents div.center,
  div.products-contents div.center.white-box {
    max-width: 500px;
  }

  div.products-contents-box {
    padding: 20px;
  }

  #product01-1,
  #product02-1,
  #product03-1,
  #product04-1 {
    padding-top: 20px;
  }

  div.products-contents-box h4 {
    font-size: 22px;
  }

  div.products-contents-box p {
    font-size: 16px;
    text-align: justify;
  }

  div.box-grid-item-wrap {
    margin-bottom: 20px;
  }

  div.box-grid-item-wrap p.small {
    font-size: 14px;
  }

  div.box-img {
    padding: 10px 0;
  }
}

@media screen and (max-width:500px) {
  div.products-contents-box h4 {
    font-size: 16px;
    margin-bottom: 10px;
  }

  div.products-contents-box p {
    font-size: 14px;
  }
}

@media screen and (max-width:414px) {
  div.products-contents-box {
    padding: 15px;
  }
}

/*タブ切替*/

/* パネルの初期状態：非表示 */
.box-tab-panel .panel {
  display: none;
}

/* activeクラスがついたら表示 */
.box-tab-panel .panel.is-active {
  display: block;
}

/*タブボタンのデザイン*/
ul.box-tab-label {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  padding: 30px 0;
  max-width: 920px;
  margin: auto;
}

ul.box-tab-label li {
  display: block;
  width: 100%;
  padding: 15px;
  background: var(--gray01);
  color: var(--blue01);
  border: 3px solid var(--gray01);
  font-size: 18px;
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease 0s;
}

ul.box-tab-label li:hover {
  background-color: #fff;
  border: 3px solid var(--blue01);
}

/* タブボタンのアクティブ時（例：背景色を変えるなど） */
ul.box-tab-label li.is-active {
  background-color: #fff;
  border: 3px solid var(--blue01);
  font-weight: bold;
  position: relative;
}

ul.box-tab-label li.is-active::after {
  content: "";
  display: block;
  width: 20px;
  height: 10px;
  background: var(--blue01);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  position: absolute;
  left: 50%;
  bottom: -11px;
  transform: translateX(-50%);
}

@media screen and (max-width:768px) {
  ul.box-tab-label {
    grid-template-columns: repeat(2, 1fr);
  }

  ul.box-tab-label li {
    font-size: 14px;
  }
}

@media screen and (max-width:420px) {
  ul.box-tab-label {
    grid-template-columns: 1fr;
  }

  ul.box-tab-label li {
    font-size: 15px;
  }
}

/*パネル内容*/
div.box-tab-panel {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  border: 1px solid #ddd;
  /* filter: drop-shadow(4px 4px 7px rgba(0,0,0,0.1)); */
}

div.panel-img {
  max-width: 800px;
}


/*タブ切替が無しになったので差し替え*/
div.panel-box {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  border: 1px solid #ddd;
  margin-top: 20px;
}
div.panel-box p{
  font-size: 20px;
}
div.panel-box p.box-label{
  font-size: 24px;
  text-align: center;
}


@media screen and (max-width:768px) {
  div.panel-box{
    padding: 15px;
  }
  div.panel-box p{
    font-size: 14px;
  }
  div.panel-box p.box-label{
  font-size: 18px;
}
}

/*商品一覧*/
div.productsGrp {
  padding: 0 30px 30px;
  max-width: 1020px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

div.c-items5Col__item {
  display: flex;
  margin: 0;
  width: 100%;
}

div.c-items5Col__item>a {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 12px;
  border: 1px solid #ddd;
  margin: 0;
  background: #fff;
}

div.c-items5Col__item>a>div {
  line-height: 1.25;
}

div.c-items5Col__item>a:hover {
  opacity: 1;
  background: #e2f2fd;
}

figure.c-items5Col__figure {
  height: auto;
  margin: 0 0 10px;
  border: none;
}

figure.c-items5Col__figure img {
  max-height: 100%;
  max-width: 100%;
  padding: 15px 10px;
  background: #fff;
}

div.c-items5Col__price {
  color: #d67100;
  font-size: 15px;
  margin-bottom: 3px;
}

div.c-items5Col__productCode {
  font-size: 14px;
  color: var(--black01);
  margin-bottom: 3px;
}

div.c-items5Col__priceTax {
  font-size: 14px;
  color: var(--black01);
  margin-bottom: 5px;
}

div.c-items5Col__name {
  margin-top: 3px;
  font-size: 15px;
  font-weight: 700;
  color: var(--main-color01);
}

@media screen and (max-width:768px) {
  div.productsGrp {
    padding: 0 20px 20px;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width:550px) {

  div.c-items5Col__price,
  div.c-items5Col__priceTax div.c-items5Col__productCode,
  div.c-items5Col__name {
    font-size: 13px;
  }

  div.c-items5Col__productCode {
    font-size: 12px;
  }

  div.c-items5Col__item>a>div {
    line-height: 1.1;
  }

}

@media screen and (max-width:414px) {
  div.productsGrp {
    padding: 0 15px 15px;
    gap: 10px;
  }
}

/*共通部分　ここまで-----------------------------------------------------*/


/*キキタイマガジン*/
div.c-items5Col__about {
  display: block;
  padding: 5px;
  border-radius: 5px;
  width: 100%;
  background: #fff;
  border: 1px solid var(--blue01);
  color: var(--blue01);
  line-height: 1;
  font-size: 14px;
  font-weight: 500;
  margin: 10px 0 0;
}



/* -----------------------
作業環境管理：環境を整える
----------------------- */

/*熱中対策ウォッチ*/
#product01-2 div.box-grid {
  grid-template-columns: repeat(2, 1fr);
}

#product01-2 div.products-contents-box {
  padding-bottom: 0;
}

@media screen and (max-width:768px) {
  #product01-2 div.box-grid {
    grid-template-columns: 1fr;
  }
}


/*クーラーテント*/
#product01-4 div.box-grid {
  grid-template-columns: 1fr 1.2fr;
  max-width: 900px;
}

@media screen and (max-width:768px) {
  #product01-4 div.box-grid {
    grid-template-columns: 1fr;
  }

  #product01-4 div.box-grid img {
    max-width: 350px;
  }
}


/*日除け用品*/
#product01-5 div.box-grid {
  grid-template-columns: 1fr 1.2fr;
  max-width: 800px;
}

#product01-5 div.box-img {
  padding-top: 0;
}

@media screen and (max-width:768px) {
  #product01-5 div.box-grid {
    grid-template-columns: 1fr;
  }

  #product01-5 div.box-grid div.box-grid-item:nth-of-type(1) {
    grid-row: 2/3;
  }

  #product01-5 div.box-grid img {
    max-width: 350px;
  }
}


/*冷却マット*/
#product01-6 div.box-grid {
  grid-template-columns: 1fr 1.2fr;
  max-width: 800px;
}

#product01-6 div.box-img {
  padding-top: 0;
}

@media screen and (max-width:768px) {
  #product01-6 div.box-grid {
    grid-template-columns: 1fr;
  }

  #product01-6 div.box-grid div.box-grid-item:nth-of-type(1) {
    grid-row: 2/3;
  }

  #product01-6 div.box-grid img {
    max-width: 350px;
  }
}

/*ミストファン*/
#product01-7 ul.box-tab-label {
  grid-template-columns: repeat(2, 1fr);
  max-width: 620px;
}

#product01-7 div.panel-img {
  max-width: 900px;
}

#product01-7 div.panel-img.grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, 1fr);
}

#product01-7 div.panel-img.half {
  max-width: 500px;
}

@media screen and (max-width:768px) {

  #product01-7 ul.box-tab-label,
  #product01-7 div.panel-img.grid {
    grid-template-columns: 1fr;
  }
}




/* -----------------------
作業管理：身に着ける
----------------------- */
/*ファン付きウェア*/
#product02-1 div.products-contents-box>p {
  text-align: left;
}

#product02-1 div.box-grid {
  grid-template-columns: 1fr 1fr;
}

#product02-1 div.box-img {
  padding-top: 0;
}

#product02-1 div.box-grid-item-wrap p.stylish {
  font-weight: 500;
  font-size: 16px;
}

#product02-1 div.box-grid-item-wrap.mesh {
  display: grid;
  grid-template-columns: 175px 1fr;
  gap: 15px;
}

#product02-1 div.box-grid-item-wrap.mesh p.box-label {
  font-size: 18px;
  text-align: left;
  padding: 18px 20px;
}

#product02-1 div.box-grid-item-wrap.mesh p.box-label span.box-label-text {
  display: block;
  font-size: 14px;
  font-weight: 500;
  text-align: left;
  margin-top: 5px;
}

#product02-1 div.products-contents-box>p span.red,
#product02-1 div.box-grid-item-wrap.mesh p.box-label span.red {
  font-size: 14px;
  font-weight: 500;
  color: red;
}

@media screen and (max-width:768px) {
  #product02-1 div.box-grid {
    grid-template-columns: 1fr;
  }

  #product02-1 div.box-grid img {
    max-width: 400px;
  }
}

@media screen and (max-width:550px) {
  #product02-1 div.box-grid-item-wrap.mesh {
    grid-template-columns: 1fr;
  }

  #product02-1 div.box-grid-item-wrap.mesh img {
    max-width: 350px;
    margin: auto;
  }
}

/*表組*/
div.size_grid {
  margin: 20px 0 0;
  display: grid;
  grid-template-columns: 160px repeat(3, 1fr);
}

div.size_grid_item {
  display: block;
  width: 100%;
  height: 100%;
  padding: 10px;
  border-top: 1px solid #b1b1b1;
  border-left: 1px dotted #b1b1b1;
  background: #fff;
}

div.size_grid_item:nth-of-type(4n+1) {
  border-left: none;
}

div.size_grid_item.come-wrap {
  grid-column: 1 / 5;
  background: none;
}

div.size_grid_item p,
div.size_grid_item_2 p,
div.size_grid_item_3 p {
  color: var(--black01);
  text-align: center;
  font-weight: 500;
}

div.size_grid_item.category,
div.size_grid_item_2.category,
div.size_grid_item_3.category {
  background: #cfecfd !important;
}

div.size_grid_2 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  margin-bottom: 15px;
}

div.size_grid_3 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

div.size_grid_item_2,
div.size_grid_item_3 {
  display: block;
  width: 100%;
  height: 100%;
  padding: 10px;
  border-bottom: 1px solid #b1b1b1;
  border-left: 1px dotted #b1b1b1;
  background: #fff;
}

div.size_grid_item_2:nth-of-type(6n+2) {
  border-left: none;
}

div.size_grid_item_3:nth-of-type(5n+2) {
  border-left: none;
}

div.size_grid_item_2.category,
div.size_grid_item_3.category {
  background: #cfecfd;
}

div.size_grid_item_2:first-of-type {
  grid-column: 1 / 7;
  background: none;
  border-left: none;
}

div.size_grid_item_3:first-of-type {
  grid-column: 1 / 6;
  background: none;
  border-left: none;
}

div.size_grid_item_2:first-of-type p,
div.size_grid_item_3:first-of-type p {
  font-size: 20px;
  font-weight: 700;
  text-align: left;
  color: var(--blue01);
}

div.size_grid_item_2:first-of-type p::before,
div.size_grid_item_3:first-of-type p::before {
  content: "\025a0";
}

div.size_grid_item_2 p div.size_grid_item_3 p {
  color: var(--black01);
}

@media screen and (max-width:768px) {

  div.size_grid,
  div.size_grid_2,
  div.size_grid_3 {
    width: 100%;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-color: var(--blue01) var(--gray01);
    scrollbar-width: thin;
    position: relative;
  }

  div.size_grid_item_2.side,
  div.size_grid_item_3.side {
    position: sticky;
    left: 0;
  }
}

/*スクロールヒント CSS崩れ対策*/
span.scroll-hint-icon {
  background: rgba(0, 0, 0, .7);
  padding: 20px 10px 10px 10px;
}

div.scroll-hint-text {
  color: #fff !important;
}


/*アイスベスト*/
#product02-2 div.products-contents-box>p {
  text-align: left;
}

#product02-2 div.box-grid {
  grid-template-columns: 1fr 1.6fr;
}

#product02-2 div.box-img {
  padding-top: 0;
}

#product02-2 div.box-grid-item-wrap p.stylish {
  font-weight: 500;
  font-size: 16px;
}

@media screen and (max-width:768px) {
  #product02-2 div.box-grid {
    grid-template-columns: 1fr;
  }

  #product02-2 div.box-grid img {
    max-width: 400px;
  }
}


/*冷感ポンチョ*/
#product02-3 div.box-grid {
  grid-template-columns: 1.1fr 1fr;
}

@media screen and (max-width:768px) {
  #product02-3 div.box-grid {
    grid-template-columns: 1fr;
  }

  #product02-3 div.box-grid img {
    max-width: 400px;
  }
}

/* -----------------------
作業管理：身体に取り入れる
----------------------- */
/*熱中対策ウォッチ*/
#product03-3 div.box-grid {
  grid-template-columns: repeat(2, 1fr);
  max-width: 800px;
  gap: 60px;
}

@media screen and (max-width:768px) {
  #product03-3 div.box-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  #product03-3 div.box-grid p.box-label {
    text-align: center;
  }

  #product03-3 div.box-grid img {
    max-width: 400px;
  }
}

/* -----------------------
労働衛生教育：体制を整える
----------------------- */


/*その他のLP紹介*/

/*背景*/
div.other-banner {
  background: #fff;
  padding: 60px 0 80px;
}

/*中央寄せ*/
div.bannerGrp {
  width: calc(100% - 20px);
  max-width: 1000px;
  margin: 20px auto;
  text-align: center;
}

/*タイトル*/
div.bannerGrp h5 {
  display: inline-block;
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.35;
  margin: 0 auto 10px;
  padding: 0 20px 0 30px;
  color: #024fa1;
  position: relative;
      border-bottom: none;
}

@media screen and (max-width:768px) {
  div.bannerGrp h5 {
    font-size: 26px;
  }
}

@media screen and (max-width:500px) {
  div.bannerGrp h5 {
    font-size: 5vw;
  }
}

/*斜め線*/
div.bannerGrp h5::before,
div.bannerGrp h5::after {
  content: "";
  display: block;
  width: 3px;
  height: 60%;
  background: #024fa1;
  position: absolute;
  bottom: 5px;
}

div.bannerGrp h5::before {
  left: 0;
  transform: rotate(-25deg);
}

div.bannerGrp h5::after {
  right: 0;
  transform: rotate(25deg);
}

/*バナーのサイズ調整*/
div.bannerGrp div.banner {
  max-width: 650px;
  margin: auto auto 70px;
}

div.bannerGrp div.banner:last-of-type {
  margin: auto;
}

div.bannerGrp img {
  width: 100%;
  height: auto;
}

@media screen and (max-width:1080px) {}

@media screen and (max-width:768px) {}


/*-----------------------------------------
03 コンテンツの設定ここまで
-------------------------------------------*/

/*-----------------------------------------
04 フッターの設定
-------------------------------------------*/
section.footGrp {
  background: var(--blue01);
  padding: 80px 0;
  margin: 0px 0 0;
}

div.dl_flex {
  display: flex;
  justify-content: center;
  align-items: center;
}

div.dl_flex>div {
  width: calc(50% - 20px);
}

div.dl_item_text p {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.5;
  color: #fff;
  text-align: center;
}

div.dl_item_text a {
  display: inline-block;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
  color: var(--blue01);
  background: #fff;
  border-radius: 100px;
  padding: 0.75em 2em;
  margin-top: 2em;
}

div.dl_item_text a:hover {
  background: #fff8d1;
}


@media screen and (max-width:768px) {

  div.dl_flex {
    flex-direction: column-reverse;
    max-width: 500px;
  }

  div.dl_flex>div {
    width: 90%;
  }

  div.dl_item_text {
    margin-top: 30px;
  }

  div.dl_item_text a {
    display: block;
  }
}

@media screen and (max-width:500px) {

  section.footGrp {
    padding: 50px 0;
  }

  div.dl_item_text p {
    font-size: 5vw;
  }

  div.dl_item_text a {
    font-size: 6vw;
    padding: 1em;
  }
}

@media screen and (max-width:1080px) {}

@media screen and (max-width:768px) {}

/*-----------------------------------------
04 フッターの設定ここまで
-------------------------------------------*/




