@charset "UTF-8";
.otherPageTtl1 {
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 Pro W3", HiraMinPro-W3, "HG明朝B", "ＭＳ 明朝", "MS Mincho", serif !important;
  font-weight: bold;
  font-size: 28px;
  margin: 0 0 30px;
}
.sbuTitle {
	font-size: 18px;
	text-align: center !important;
	margin-bottom: 10px;
}
.tipsBox {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.tipsBox > * {
	width: 48.4375%;
	text-align: left;
}
.tipsBox + .tipsBox {
	margin-top: 50px;
}
.tipsBox:nth-child(odd) > .tipsBoxImg {
	order: 1;
}
.tipsBox:nth-child(odd) > .tipsBoxMain {
	order: 2;
}
.tipsBox:nth-child(even) > .tipsBoxImg {
	order: 2;
}
.tipsBox:nth-child(even) > .tipsBoxMain {
	order: 1;
}
.tipsBox > .tipsBoxMain .item-detail-intro__hdg {
	line-height: 1.1;
}
.text-align1 { text-align: center; }
.mt01 { margin-top: 0px; }
.mt02 { margin-top: 20px; }
.ml15 { margin-left: 15px !important; }

@media screen and (min-width: 768px) and (max-width: 1024px) {
.text-align1 { text-align: center; }
.mt01 { margin-top: 0px; }
.mt02 { margin-top: 20px; }
.ml15 { margin-left: 0px !important; }
}

@media screen and (max-width: 767px) {
.otherPageTtl1 {
    font-family: "游明朝", YuMincho, "ヒラギノ明朝 Pro W3", HiraMinPro-W3, "HG明朝B", "ＭＳ 明朝", "MS Mincho", serif!important;
    font-weight: bold;
    font-size: 20px;
    margin: 0 0 20px;
}
.otherPageBoxOtl2.column-module-5_6 .otherPageTtl2 {
    font-family: "游明朝", YuMincho, "ヒラギノ明朝 Pro W3", HiraMinPro-W3, "HG明朝B", "ＭＳ 明朝", "MS Mincho", serif !important;
    font-weight: bold;
    font-size: 18px!important;
    border-bottom: 1px solid #333;
    padding-bottom: 7px;
}
.tipsBox {
	flex-direction: column;
}
.tipsBox:nth-child(odd) > .tipsBoxImg,
.tipsBox:nth-child(even) > .tipsBoxImg {
	order: 1;
	width: 100%;
}
.tipsBox:nth-child(odd) > .tipsBoxMain,
.tipsBox:nth-child(even) > .tipsBoxMain {
	order: 2;
	width: 100%;
}
.tipsBox > .tipsBoxMain .item-detail-intro__hdg {
	text-align: center;
 }
.text-align1 { text-align: left; }
.mt01 {margin-top: -40px; }
.mt02 { margin-top: 0px; }
.ml15 { margin-left: 0px !important; }
}


/*---------------------------------------
　「安全上のご注意」アコーディオン 
---------------------------------------*/
.accordion {
  width: 960px;
  background: #f2f2f2;
  margin: 10px auto;
}
.accordion-header {
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  cursor: pointer;
  font-size: 20px;
  font-weight: 300;
  color: #333;
  background-color: #f2f2f2;
  text-align: center;
}
.accordion-icon {
  position: absolute;
  right: 20px;
  font-size: 32px;
  color: #d6001c;
  transition: transform 0.5s;
}
.accordion-content {
  display: none;
  padding: 30px;
  background-color: #f2f2f2;
  animation: fadeIn 0.5s ease-in-out;
}
.accordion-content ul {
  padding-left: 20px;
}
.accordion p {
  text-indent: -1em;
  padding-left: 1em;
}
.image-wrap {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}
.text-list {
  flex: 1;
  list-style: disc inside;
  padding: 0;
  margin: 0;
}
.text-list li {
  margin-bottom: 0.5em;
}
.image-box {
  flex-shrink: 0; 
}
.image-box img {
  width: 200px; 
  height: auto;
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .accordion {
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
  }
  .accordion-header {
    height: 80px;
    font-size: 18px;
  }
  .accordion-icon {
    font-size: 28px;
    right: 15px;
  }
  .accordion-content {
    padding: 20px;
  }
	.accordion p {
  text-indent: -1em;
  padding-left: 1em;
  }
  .image-wrap {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
  }
  .text-list {
    flex: 1 1 60%;
  }
  .image-box {
    flex: 1 1 200px;
    max-width: 200px;
  }
  .image-box img {
    width: 100%;
    height: auto;
  }
}

@media screen and (max-width: 767px) {
  .accordion {
    width: 100%;
    padding: 0 16px;
    box-sizing: border-box;
  }
  .accordion-header {
    height: 70px;
    font-size: 16px;
  }
  .accordion-icon {
    font-size: 24px;
    right: 16px;
  }
  .accordion-content {
    padding: 16px 16px 30px 16px;
  }
	.accordion p {
  text-indent: -1em;
  padding-left: 1em;
  }
  .image-wrap {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .image-box img {
    width: 100%;
    max-width: 300px;
    height: auto;
    display: block;
    margin: 0 auto;
  }
  .text-list {
    width: 100%;
  }
  .text-list li {
    margin-bottom: 0.8em;
    line-height: 1.6;
  }
  .accordion p {
    text-indent: 0;
    padding-left: 0;
    line-height: 1.6;
  }
}

/*--画像の「※ イメージ」テキスト--*/
.box-image-txt {
  margin: 15px auto 0;
  padding: 0 25px;
  max-width: 720px;
  -webkit-transition: opacity .2s linear;
  transition: opacity .2s linear;
  font-size: 0;
  line-height: 1;
}
.box-image-txt:after {
  content: "※イメージ";
  margin-top: 8px;
  display: block;
  text-align: right;
  font-size: 12px;
}

@media all and (min-width: 767px), print {
.box-image-txt {
  margin: 15px auto 0;
  padding: 0 25px;
  max-width: 720px;
  -webkit-transition: opacity .2s linear;
  transition: opacity .2s linear;
  font-size: 0;
  line-height: 1;
}
.box-image-txt:after {
  content: "※イメージ";
  margin-top: 8px;
  display: block;
  text-align: right;
  font-size: 12px;
}
	
/* スマホ用<br> */
@media screen and (max-width:414px) {
	.br-sp { display: block; }
	.br-tb { display: none; }
	.br-pc { display: none; }
}
/* tablet用<br> */
@media only screen and (min-width:415px) and (max-width:834px) {
	.br-sp { display: none; }
	.br-tb { display: block; }
	.br-pc { display: none; }
}
/* pc用<br> */
@media screen and (min-width:835px) {
	.br-sp { display: none; }
	.br-tb { display: none; }
	.br-pc { display: block; }
}