@charset "UTF-8";

html {
  font-size: 62.5% !important;
}

body {
  width: 100%;
  margin: 0 auto;
  font: 0.625rem -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
  letter-spacing: 0;
  color: #111;
  font-size: 1.4rem;
  word-break: break-all;
  overflow: hidden;
}

.fixed {
  width: 100%;
  position: fixed;
  overflow: hidden;
  top: 0;
}

/* for IE 6 */
* html body {
  font-size: 75%;
}

/* for IE 7 */
*:first-child+html body {
  font-size: 75%;
}

/* リンク */
a {
  color: #111;
  text-decoration: none;
  -webkit-transition: background-color 0.5s ease-out;
  -o-transition: background-color 0.5s ease-out;
  transition: background-color 0.5s ease-out;
}

a.imgLink {
  display: block;
  width: 100%;
  height: 100%;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  -webkit-transition: opacity 0.5s ease-out;
  -o-transition: opacity 0.5s ease-out;
  transition: opacity 0.5s ease-out;
}

a:hover {
  cursor: pointer;
}

a img {
  -webkit-transition: opacity 0.5s ease-out;
  -o-transition: opacity 0.5s ease-out;
  transition: opacity 0.5s ease-out;
}

a:hover img {
  opacity: 0.75;
}

a.box_link {
  -webkit-transition: opacity 0.5s ease-out;
  -o-transition: opacity 0.5s ease-out;
  transition: opacity 0.5s ease-out;
}

a.box_link:hover {
  opacity: 0.75;
}

a.box_link:hover img {
  opacity: 1;
}

a.block_link {
  display: block;
}

.link-underline {
  text-decoration: underline;
}

.link-red {
  color: #c66060;
}

/* 画像 */
img {
  max-width: 100%;
  vertical-align: bottom;
}

img.fit {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

/* テキスト */
p {
  line-height: 1.7;
}

p:not(:last-child) {
  margin-bottom: 1em;
}

p.note:before {
  content: "※";
  font-weight: 300;
}

p.note.type01 {
  text-align: center;
  color: #686b67;
  font-size: 1.4rem;
}

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

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

.text-bold {
  font-weight: bold;
}

.text-serif {
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "Noto Serif JP", serif;
}

.text-sub {
  font-size: 1.2rem;
}

.text-sub.bottom {
  margin-top: .8em;
}

.marker {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(0%, #f3eb08));
  background: -webkit-linear-gradient(transparent 70%, #f3eb08 0%);
  background: -o-linear-gradient(transparent 70%, #f3eb08 0%);
  background: linear-gradient(transparent 70%, #f3eb08 0%);
}

/* 区切りライン */
.partition {
  border-top: 1px solid #DDD;
  border-right: 0;
  border-bottom: 0;
  border-left: 0;
}

/* slick */
.slick-slider {
  opacity: 0;
  -webkit-transition: opacity .3s linear;
  -o-transition: opacity .3s linear;
  transition: opacity .3s linear;
}

.slick-slider.slick-initialized {
  opacity: 1;
}

/* メディアクエリで表示・非表示切り替え */
.pc_only {
  display: inherit;
}

@media screen and (max-width: 478px) {
  .pc_only {
    display: none;
  }
}

.tab_only {
  display: none;
}

@media screen and (max-width: 834px) {
  .tab_only {
    display: inherit;
  }
}

.sp_only {
  display: none;
}

@media screen and (max-width: 478px) {
  .sp_only {
    display: inherit;
  }
}

.arrow_icon {
  position: relative;
  display: inline-block;
  padding-left: 24px;
}

.arrow_icon:before {
  content: '';
  width: 18px;
  height: 18px;
  background: #0068B7;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -9px;
}

.arrow_icon:after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 0 4px 6px;
  border-color: transparent transparent transparent #fff;
  position: absolute;
  top: 50%;
  left: 7px;
  margin-top: -4px;
}

@media screen and (max-width: 478px) {
  .arrow_icon {
    padding-left: 18px;
  }

  .arrow_icon:before {
    width: 14px;
    height: 14px;
    margin-top: -8px;
  }

  .arrow_icon:after {
    border-width: 3px 0 3px 5px;
    left: 5px;
    margin-top: -4px;
  }
}

.l-content.type01 .l-inner:not(:last-child) {
  margin-bottom: 40px;
}

/* Flexbox レイアウト */
.flex_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flex_wrap.v_center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.flex_wrap.vh_center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.flex_wrap.space_between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.flex_wrap.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.flex_wrap.column-reverse {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}

.flex_wrap.wrap {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.video_wrap {
  position: relative;
  width: 100%;
  height: 100%;
  padding-top: 56.25%;
}

.video_wrap iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

/* ヘッダー */
.l-header {
  width: 100%;
  background-color: #FFF;
  -webkit-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.18);
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.18);
  z-index: 999;
}

@media screen and (max-width: 478px) {
  .l-header {
    /*position: relative;*/
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
  }
}

.header_inner {
  width: 1040px;
  max-width: 100%;
  height: 90px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap:10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
  padding: 0 20px;
}

.header_title .title {
  width: 255px;
  height: 30px;
}

.header_title a {
  width: 100%;
  height: 100%;
  display: block;
  background: url(images/logo.png) no-repeat center center/contain;
}

.header_title .sub {
  margin-bottom: 5px;
  font-size: 1.0rem;
}

.global-nav {
  display: none;
  width: 100%;
  padding: 40px 20px 104px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #FFF;
  overflow-y: auto;
  z-index: 999;
}

.global-nav .menu {
  margin: 0 -20px;
  font-size: 1.6rem;
}

.global-nav li {
  margin-bottom: 0 !important;
  padding: 15px 20px;
  border-bottom: 1px solid #DDD;
}

.global-nav li:first-child {
  border-top: 1px solid #DDD;
}

.global-nav .group_company dt {
  margin-bottom: 20px;
  font-size: 2.0rem;
}

.global-nav .group_company dd {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.global-nav .group_company a:not(:last-child) {
  margin-bottom: 14px;
}

.global-nav .banner_area a {
  display: block;
}

.global-nav .sns_navi {
  width: 100%;
  margin-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.global-nav .sns_navi li {
  width: 35px;
  margin: 0 24px;
  padding: 0;
  border: none;
}

.page_navi a {
  display: block;
}

.category_navi {
  transition:0.1s;
}

.category_navi.is_fixed {
  position: fixed;
  top: 50px;
  width: 100%;
  z-index: 100;
  background: rgba(255,255,255,0.8);
}

.category_navi h2 {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  font-size: 1.4rem;
  position: relative;
}

.category_navi h3 {
  width: 100%;
  text-align: center;
  font-size: 1.2rem;
  position: relative;
}

.category_navi h3.top_cate01 {
  margin: -10px auto 10px;
}

.category_navi h3.top_cate02 {
  margin: 20px auto 0;
}

.category_navi h2:after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 4px 0 4px;
  border-color: #111 transparent transparent transparent;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 13em;
  margin: auto;
  margin-top: 7px;
}

.category_navi h2.active:after {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.category_navi .inner {
  width: 1000px;
  margin: 0 auto;
  padding-top: 15px;
  position: relative;
  display: none;
}

.category_navi .inner ul {
  width: 100%;
  font-size: 1.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.category_navi .inner li {
  width: 20%;
}

.category_navi .more {
  width: 150px;
  margin: 5px auto 0;
  padding: 7px;
  background-color: #6ECC82;
  color: #FFF;
  font-size: 1.0rem;
  text-align: center;
  border-radius: 5px;
  display: block;
  position: relative;
}

.category_navi .more .arrow {
  width: 14px;
  height: 14px;
  margin-right: 5px;
  background: #FFF;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  top: -1px;
}

.category_navi .more .arrow:before {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 3px 0 3px;
  border-color: #6ECC82 transparent transparent transparent;
  display: inline-block;
}

/* 新カテゴリ追加 */
.category_navi .inner li.cate-ttl {
  width: 100%;
  font-weight: bold;
  font-size: 1.2em;
}

.header_search_area {
  background-color: #0068B7;
  width: 100%;
  max-width: 100%;
}

.header_search_area.is_fixed {
  z-index: 100;
  position: fixed;
  top: 0;
}

.header_search_area.is_fixed .search_wrap {
  padding: 10px 20px;
}

.header_search_area.is_fixed .submit {
  top: 16px;
}

.header_search_area .search_wrap {
  /* width: 1040px;
  max-width: 100%;
  margin: 0 auto; */
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

/* .to_b .header_search_area .search_wrap {
  max-width: 1040px;
  margin: auto;
} */

.header_search_area input[type="text"] {
  width: 260px;
  margin-left: auto;
  padding: 6px 10px 6px 32px;
  background-color: #FFF;
  border-radius: 30px;
  color: #000;
  border: none;
}

.header_search_area .submit {
  width: 18px;
  position: absolute;
  top: 26px;
  right: 254px;
}


/* tuika */
.head-menu {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  text-align: center;
  justify-content: center;
}

.head-menu .menu__mega {
  width: calc(100% / 4);
  margin-bottom: 0;
  padding: 0;
}

.head-menu>li a {
  display: block;
  color: #000;
  padding: 20px 0;
  box-sizing: border-box;
  font-weight: bold;
}

.head-menu>li a.init-bottom {
  font-size: 20px;
  transition:0.5s;
}

.category_navi.is_fixed .head-menu>li a.init-bottom {
  font-size:18px;
  padding:10px 0;
}

ul.menu__second-level {
  visibility: hidden;
  opacity: 0;
  z-index: 1000;
}

.head-menu>li:hover {
  background: #fefbe0;
  -webkit-transition: all .5s;
  transition: all .5s;
}

.menu__second-level li {
  border-top: 1px solid #fefbe0;
}

.menu__second-level li a:hover {
  background: #999;
  color: #fff;
}

li.menu__mega ul.menu__second-level {
  position: absolute;
  top: 40px;
  left: 0;
  box-sizing: border-box;
  width: 100%;
  padding: 10px;
  background: #fefbe0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}

li.menu__mega:hover ul.menu__second-level {
  top: 60px;
  visibility: visible;
  opacity: 1;
}
.category_navi.is_fixed li.menu__mega ul.menu__second-level {
  top:20px;
}
.category_navi.is_fixed li.menu__mega:hover ul.menu__second-level {
  top: 45px;
}

li.menu__mega ul.menu__second-level>li {
  width: calc((100% - 20px) / 4);
  line-height: 1.4;
  text-align: left;
  border: none;
  margin: 5px 0;
}

li.menu__mega ul.menu__second-level>li a {
  padding: 10px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

/* 下矢印 */
.init-bottom:after {
  content: '';
  display: inline-block;
  width: 30px;
  height: 30px;
  vertical-align: middle;
  margin-left: 5px;
  margin-top: -5px;
}

.menu__mega:nth-child(1) .init-bottom:after {
  background: url(images/to_c/icon/menu01.png) no-repeat center/contain;
}

.menu__mega:nth-child(2) .init-bottom:after {
  background: url(images/to_c/icon/menu02.png) no-repeat center/contain;
}

.menu__mega:nth-child(3) .init-bottom:after {
  background: url(images/to_c/icon/menu03.png) no-repeat center/contain;
}

/* アイコン */
.gg-chevron-right-o {
  box-sizing: border-box;
  position: relative;
  display: block;
  transform: scale(var(--ggs, 1));
  width: 16px;
  height: 16px;
  border: 2px solid;
  border-radius: 100px;
  margin-right: 5px;
}

.gg-chevron-right-o::after {
  content: "";
  display: block;
  box-sizing: border-box;
  position: absolute;
  width: 6px;
  height: 6px;
  border-bottom: 2px solid;
  border-right: 2px solid;
  transform: rotate(-45deg);
  left: 2px;
  top: 3px;
}


/* ハンバーガーボタン */
.hamburger_icon {
  display: none;
  z-index: 999;
  position: absolute;
  bottom: 10px;
  right: 10px;
}

.hamburger_icon.under {
  z-index: 1;
}

.hamburger_icon .inner {
  margin: 0;
  display: block;
  width: 32px;
  height: 32px;
  text-align: center;
  cursor: pointer;
  background-color: #333;
  border-radius: 3px;
  -webkit-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.18);
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.18);
}

.hamburger_icon .hamburger_wrap {
  position: relative;
}

.hamburger_icon span {
  display: block;
  position: absolute;
  width: 16px;
  height: 2px;
  background: #FFF;
  left: 8px;
  -webkit-transition: .35s ease-in-out;
  -o-transition: .35s ease-in-out;
  transition: .35s ease-in-out;
}

.hamburger_icon span:nth-child(1) {
  top: 0;
}

.hamburger_icon span:nth-child(2) {
  top: 5px;
}

.hamburger_icon span:nth-child(3) {
  top: 10px;
}

.hamburger_icon .text {
  margin: 0 -10px;
  padding-top: 4px;
  font-size: 1.0rem;
  color: #FFF;
  line-height: 1;
  -webkit-transform: scale(0.6);
  -ms-transform: scale(0.6);
  transform: scale(0.6);
}

.hamburger_icon.open span:nth-child(1) {
  top: 5px;
  -webkit-transform: rotate(315deg);
  -ms-transform: rotate(315deg);
  transform: rotate(315deg);
}

.hamburger_icon.open span:nth-child(2) {
  width: 0;
  left: 50%;
}

.hamburger_icon.open span:nth-child(3) {
  top: 5px;
  -webkit-transform: rotate(-315deg);
  -ms-transform: rotate(-315deg);
  transform: rotate(-315deg);
}

.sp_menu_bg {
  display: none;
  width: 100%;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9;
  background-color: rgba(0, 0, 0, 0.75);
}

.pc_fixed_navi {
  position: fixed;
  right: 0;
  bottom: 20px;
  z-index: 999;
  text-align:right;
}

.pc_fixed_navi>div {
  margin-bottom:8px;
  display: flex;
  justify-content: right;
}

.pc_fixed_navi a {
  width: 80px;
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  color: #FFF;
  font-weight: bold;
  border-radius: 5px 0px 0px 5px;
}

.pc_fixed_navi a:not(:last-child) {
  margin-bottom: 6px;
}

.pc_fixed_navi .cart {
  background-color: #E83820;
}

.pc_fixed_navi .user {
  background-color: #0068B7;
}

.pc_fixed_navi .couponcode {
  width: 160px;
  background-color: #ff9600;
  display: flex;
  flex-wrap: wrap;
  height: auto;
}
.pc_fixed_navi .couponcode p {
  font-size: 14px;
  margin: 0;
  padding: 10px;
  line-height: 1.4;
}

.pc_fixed_navi .line {
  width: 80px;
  height: 80px;
  background-color: #00B900;
  display: flex;
  flex-wrap: wrap;
}
.pc_fixed_navi .line p {
  font-size: 14px;
  margin: 0;
  padding: 10px;
  line-height: 1.4;
}
.pc_fixed_navi .line p span {
  font-size: 18px;
}


.to_c .header_top_obi {
  background-color: #E83820;
}
._tickerWrapper_pkpx0_189 {
  align-items: center;
  background-color: inherit;
  display: flex;
  font-size: 1.2rem;
  letter-spacing: .06em;
  line-height: var(--ticker-height, 3rem);
  position: relative;
  text-transform: uppercase;
  white-space: nowrap;
  color: #fff;
  --ticker-height: 4rem;
}
._tickerContainer_pkpx0_224 {
  --ticker-animation-play-state: running;
  height: var(--ticker-height, 3rem);
  overflow: hidden;
  position: relative;
  width: 100%;
}
._ticker_pkpx0_189 {
  animation: _ticker_pkpx0_189 var(--ticker-animation-duration) linear infinite;
  animation-fill-mode: forwards;
  animation-play-state: var(--ticker-animation-play-state);
  display: inline-block;
  will-change: transform;
}
@keyframes _ticker_pkpx0_189 {
  0% {
      transform: translate(0)
  }

  to {
      transform: translate(-100%)
  }
}
._tickerItem_pkpx0_261 {
  display: inline-block;
  padding-left: 1.5rem;
}
.to_c .header_search_area {
  background-color: #e4e4e4;
}

.to_c .header_search_area .header_search_area_wrap,.to_b .header_search_area .header_search_area_wrap {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  align-items: center;
}

.to_c .search_area_text {
  color: #606060;
  margin-bottom: 0;
  padding: 0 0 0 10px;
  box-sizing: border-box;
}
.to_b .search_area_text {
  color: #fff;
  margin-bottom: 0;
  padding: 0 0 0 10px;
  box-sizing: border-box;
}

.sp_fixed_navi {
  display: none;
}

@media screen and (max-width: 478px) {
  .header_inner {
    width: 100%;
    height: 70px;
    padding: 10px 10px;
  }

  .header_title .title {
    width: 255px;
    height: 30px;
  }

  .hamburger_icon {
    display: block;
    position: absolute;
    bottom: 10px;
    right: 10px;
  }

  .page_navi {
    display: none;
  }

  .category_navi {
    display: none;
    padding: 60px 20px 104px;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 99;
    overflow-y: auto;
    background-color: #FFF !important;
  }

  .category_navi .inner_wrap:not(:last-child) {
    margin-bottom: 20px;
  }

  .category_navi .checkbox_wrap {
    margin: 0 -20px;
    padding: 0 20px;
    font-size: 1.2rem;
  }

  .category_navi .inner {
    width: 50%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: block;
  }

  .category_navi .more {
    margin-top: 20px;
    position: relative;
    top: auto;
    right: auto;
  }

  .category_navi .headline-type02 {
    width: 100%;
    margin-bottom: 10px;
    padding-bottom: 0;
    border-bottom: none;
    text-align: left;
  }

  .category_navi input[type="text"] {
    width: 100%;
    padding: 20px 20px 20px 60px;
    border: 1px solid #DDD;
    border-radius: 60px;
    background: url(./images/icon/search.png) no-repeat left 18px center/30px;
  }

  .category_navi.is_fixed {
    top:0;
  }

  .pc_fixed_navi {
    display: none;
  }

  .sp_fixed_navi {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-color: #231815;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 999;
  }

  .sp_fixed_navi .col_inner {
    width: 100%;
    padding: 12px 0;
    display: block;
    text-align: center;
    color: #FFF;
    font-size: 1.2rem;
    font-weight: bold;
  }

  .sp_fixed_navi .icon {
    width: 30px;
  }

  .sp_fixed_navi span {
    display: block;
  }

  .hamburger2 {
    width: 30px;
    height: 30px;
    margin: 0 auto;
    display: block;
    position: relative;
  }

  .hamburger2 span {
    display: block;
    position: absolute;
    width: 20px;
    height: 3px;
    background: #FFF;
    left: 5px;
    -webkit-transition: .35s ease-in-out;
    -o-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
  }

  .hamburger2 span:nth-child(1) {
    top: 7px;
  }

  .hamburger2 span:nth-child(2) {
    top: 14px;
  }

  .hamburger2 span:nth-child(3) {
    top: 21px;
  }

  .hamburger2.open span:nth-child(1) {
    top: 14px;
    -webkit-transform: rotate(315deg);
    -ms-transform: rotate(315deg);
    transform: rotate(315deg);
  }

  .hamburger2.open span:nth-child(2) {
    width: 0;
    left: 50%;
  }

  .hamburger2.open span:nth-child(3) {
    top: 14px;
    -webkit-transform: rotate(-315deg);
    -ms-transform: rotate(-315deg);
    transform: rotate(-315deg);
  }

  /* BtoC */
  .to_c .header_title {
    margin: 0 auto;
    text-align: center;
  }

  .to_c .header_title .title {
    width: 230px;
    height: 27px;
  }

  .to_c .checkbox_wrap {
    border-top: 1px solid #E1E1E1;
  }

  .to_c .checkbox_wrap .inner:nth-child(2n+1):after {
    background-color: #E1E1E1;
  }

  .to_c .category_navi input[type="text"] {
    background-image: url(./images/icon/search2.png);
  }

  /* tocスマホカテゴリ追加 */
  .category_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    border-top: 1px solid #E1E1E1;
    margin: 0 -20px 20px;
  }

  .category_wrap li {
    width: 50%;
    padding: 10px 20px;
    font-size: 13px;
    margin: 0;
    box-sizing: border-box;
    border-bottom: 1px solid #E1E1E1;
  }

  .category_wrap li.cate-ttl {
    width: 100%;
    font-weight: bold;
    font-size: 1.2em;
  }

  .category_wrap li:not(:last-child) {
    margin-bottom: 0;
  }

}

/* ページャー */
.pager_number {
  margin: 40px auto 0;
  padding-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: 1px solid #DDDDDD;
}

.pager_number .page-numbers {
  width: 40px;
  height: 40px;
  margin: 0 5px;
  font-weight: 400;
  font-size: 1.2rem;
  letter-spacing: 0;
  border-radius: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #FFF;
  border: 1px solid #DDDDDD;
  color: #111111;
}

.pager_number .page-numbers.current {
  background-color: #0068B7;
  border: 1px solid #0068B7;
  color: #FFF;
}

.pager_number .page-numbers.dots {
  width: auto;
  border: none;
}

.pager_number .page-numbers.prev,
.pager_number .page-numbers.next {
  width: 80px;
  border: 1px solid #d6d6d6;
  color: #111111;
}

.pager_number .page-numbers.prev:before {
  content: '＜';
  margin-right: 5px;
}

.pager_number .page-numbers.next:after {
  content: '＞';
  margin-left: 5px;
}

@media screen and (max-width: 478px) {
  .pager_number {
    margin: 30px auto 0;
    padding-top: 30px;
  }

  .pager_number .page-numbers {
    width: 40px;
    height: 40px;
    margin: 0 5px;
    font-size: 1.2rem;
  }

  .pager_number .page-numbers.dots {
    display: none;
  }
}

/* サイト共通 */
.section_wrap {
  width: 100%;
  padding: 40px 0;
  position: relative;
}

.section_wrap.wide_full {
  padding: 0;
}

.section_wrap.wide_full .content {
  width: 100%;
  max-width: 100%;
  padding: 0;
}

.section_wrap.pd_none {
  padding: 0;
}

.section_wrap.pd_top_none {
  padding-top: 0;
}

.section_wrap.pd_bottom_none {
  padding-bottom: 0;
}

.section_wrap.pd_bottom_large {
  padding-bottom: 90px;
}

.section_wrap.pd_side_none .content {
  padding-right: 0;
  padding-left: 0;
}

.section_wrap .content:not(:last-child) {
  margin-bottom: 60px;
}

.section_banner {
  width: 100%;
  max-width: 750px;
  margin: auto;
}

#news {
  padding-bottom: 90px;
}

.bg_color {
  background-color: #F3F5F7;
}

.bg_color2 {
  background-color: #FEFBE0;
}

.bg_color3 {
  background-color: #FFE7CA;
}

.bg_color4 {
  background-color: #DEEAE0;
}

.bg_color5 {
  background-color: #E1ffff;
}

.bg_stripe1 {
  background: -webkit-repeating-linear-gradient(135deg, #fef8d8 0, #fef8d8 18px, #fdfceb 18px, #fdfceb 36px);
  background: -o-repeating-linear-gradient(135deg, #fef8d8 0, #fef8d8 18px, #fdfceb 18px, #fdfceb 36px);
  background: repeating-linear-gradient(-45deg, #fef8d8 0, #fef8d8 18px, #fdfceb 18px, #fdfceb 36px);
}

.bg-yellow {
  background-color: #EBB700;
}

.bg-green {
  background-color: #6ECC82;
}

.bg-orange {
  background-color: #EB6100;
}

.border_bottom {
  border-bottom: 1px solid #DDDDDD;
}

.content {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 20px;
}

.content.small {
  width: 890px;
  max-width: 100%;
}

.content.wide {
  width: 1280px;
  max-width: 100%;
}

.no_content {
  width: 100%;
  text-align: center;
}

.btn_top {
  width: 40px;
  height: 40px;
  border-radius: 40px;
  display: block;
  background: #000000;
  position: fixed;
  right: 120px;
  bottom: 20px;
  z-index: 999;
}

.btn_top:before {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 8px 13.9px 8px;
  border-color: transparent transparent #FFF transparent;
  position: absolute;
  top: 11px;
  left: 12px;
}

.fas_false {
  opacity: 0;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: -999;
}

/* 緊急のお知らせ */
.section_notice {
  padding: 10px 0;
  border-bottom: 1px solid #DDD;
  background: #fefbe0;
}

.section_notice .news_list li {
  text-align: center;
  font-weight: bold;
  font-size: 1.2em;
}

.section_notice .news_list a {
  color: #e93820;
}

/* メインスライダー */
#main_visual {
  width: 100%;
  max-width: 1040px;
  margin-right: auto;
  margin-left: auto;
}

#main_visual .main_slider {
  margin: 0 auto;
  opacity: 0;
  -webkit-transition: opacity .3s linear;
  -o-transition: opacity .3s linear;
  transition: opacity .3s linear;
}

#main_visual .main_slider.slick-initialized {
  opacity: 1;
}

#main_visual .slide {
  height: 100%;
}

#main_visual .slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

#main_visual .slide a {
  width: 100%;
  height: 100%;
  display: block;
}

#main_visual .slick-slider .slick-track,
#main_visual .slick-slider .slick-list {
  height: 100%;
}

#main_visual .slick-slider:hover .slick-arrow {
  opacity: 1;
}

#main_visual .slick-arrow {
  opacity: 0;
  -webkit-transition: opacity 0.5s;
  -o-transition: opacity 0.5s;
  transition: opacity 0.5s;
}

#main_visual .slick-prev,
#main_visual .slick-next {
  width: 50px;
  height: 50px;
  margin-top: -13px;
  display: block;
  z-index: 99;
}

#main_visual .slick-prev:before,
#main_visual .slick-next:before {
  width: 100%;
  height: 100%;
  display: block;
  opacity: 1;
  background-color: rgba(0, 0, 0, 0.75);
  background-position: center;
  background-size: 12px auto;
  background-repeat: no-repeat;
}

#main_visual .slick-prev {
  left: 20px;
}

#main_visual .slick-prev:before {
  content: '';
  background-image: url(./images/arrow/arrow_prev.png);
}

#main_visual .slick-next {
  right: 20px;
}

#main_visual .slick-next:before {
  content: '';
  background-image: url(./images/arrow/arrow_next.png);
}

#main_visual .slick-dots {
  position: relative;
  bottom: auto;
}

#main_visual .slick-dots {
  margin-top: 10px;
}

#main_visual .slick-dots li {
  margin: 0 4px;
}

#main_visual .slick-dots li button:before {
  font-size: 12px;
}

/* タブ切り替え */
.tab-contents {
  display: none;
}

.tab-contents.current {
  display: block;
}

.tab-group.type01 .tab_navi {
  width: 100%;
  padding-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.tab-group.type01 .tab-button {
  min-width: 132px;
  padding: 10px 0;
  display: block;
  color: #FFF;
  text-align: center;
  font-weight: bold;
  border-radius: 5px;
}

.tab-group.type01 .tab-button:not(:last-child) {
  margin-right: 10px;
  margin-bottom: 0;
}

.tab-group.type01 .frame {
  padding: 10px;
  background-color: #FFF;
  border-radius: 5px;
  -webkit-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.18);
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.18);
}

.tab-group.type01 .caption {
  margin-top: 1em;
  font-size: 1.2rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  max-height: 3.4em;
  overflow: hidden;
}

.tab-group.howto img {
  width: 100%;
  max-height: 158px;
  -o-object-fit: cover;
  object-fit: cover;
}

.tab-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.section_diy .frame {
  height: 100%;
}

/* 下層共通 */
.headline_area {
  max-width: 1040px;
  margin: 0 auto;
  padding: 35px 20px;
}

.headline_area .title {
  font-size: 2.0rem;
  text-align: center;
}

.headline_area .sub {
  margin-top: .5em;
  display: block;
  font-size: 1.4rem;
}

.description_area {
  max-width: 1040px;
  margin: 0 auto;
  padding: 32px 20px;
  background-color: #F3F5F7;
  text-align: left;
  font-weight: bold;
}

.description_area+.section_search_category {
  margin-top: 40px;
}

.breadcrumbs {
  width: 1000px;
  margin: 0 auto;
  padding: 20px 25px;
  font-size: 1.0rem;
  line-height: 10px;
}

.breadcrumbs br {
  content: ' ';
  margin-left: 0.5em;
}

/* 商品一覧 */
.products_list {
  margin-bottom: -40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.products_list .product_box {
  width: 46.5%;
  margin-bottom: 60px;
}

.products_list .product_info {
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.products_list .product_image {
  width: 150px;
  height: 150px;
  margin-right: 27px;
  -o-object-fit: cover;
  object-fit: cover;
  border: 1px solid #E5E5E5;
  border-radius: 5px;
}

.products_list dl {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.products_list dt {
  margin-bottom: 8px;
  font-size: 1.6rem;
  font-weight: bold;
  color: #0068B7;
}

.products_list .cart_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.products_list select {
  width: 100%;
  padding: 10px 15px;
  background-color: #FFF;
  border: 1px solid #E0E0E5;
  font-size: 1.2rem;
  background: #FFF url(./images/icon/arrow_select.png) no-repeat right 15px center/10px;
  border-radius: 3px;
}

.products_list .capacity {
  width: 48.5%;
  margin-bottom: 10px;
}

.products_list .color {
  width: 48.5%;
  margin-bottom: 10px;
}

.products_list .quantity {
  width: 25%;
}

.products_list .btn-cart {
  width: 72%;
  padding: 10px 0;
  background-color: #0068B7;
  color: #FFF;
  font-size: 1.2rem;
  font-weight: bold;
  border-radius: 5px;
}

/* よくある質問 */
.faq_navi {
  padding: 15px 0;
}

.faq_navi .inner {
  width: 1040px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  font-weight: bold;
}

.faq_navi li {
  padding-left: 20px;
  position: relative;
}

.faq_navi li:before {
  content: '';
  width: 14px;
  height: 14px;
  background: #0068B7;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -8px;
}

.faq_navi li:after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 3px 0 3px;
  border-color: #fff transparent transparent transparent;
  position: absolute;
  top: 50%;
  left: 4px;
  margin-top: -3px;
}

.faq_list_wrap {
  margin-bottom: 60px;
}

.faq_group:not(:last-child) {
  margin-bottom: 40px;
}

.faq_content {
  background: #FFFFFF;
  border: 1px solid #DDDDDD;
}

.faq_content:not(:last-child) {
  margin-bottom: 20px;
}

.faq_content.open {
  margin-bottom: 40px;
  -webkit-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.06);
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.06);
}

.faq_content.open .question:after {
  -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
  margin-top: -5px;
}

.faq_content .question {
  padding: 20px 40px 20px 20px;
  background: #F2F5F7;
  font-weight: bold;
  position: relative;
}

.faq_content .question:before {
  content: '';
  width: 14px;
  height: 14px;
  background: #0068B7;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 16px;
  margin-top: -9px;
}

.faq_content .question:after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 3px 0 3px;
  border-color: #fff transparent transparent transparent;
  position: absolute;
  top: 50%;
  right: 20px;
  margin-top: -4px;
}

.faq_content .question span {
  margin-left: 1.4em;
  text-indent: -1.4em;
  display: block;
}

.faq_content .question span:before {
  content: 'Q.';
  margin-right: 5px;
  color: #0068B7;
}

.faq_content .answer {
  display: none;
  padding: 20px 20px;
  font-size: 1.2rem;
  border-top: 1px solid #DDDDDD;
}

.faq_content .answer .inner {
  padding-left: 20px;
  position: relative;
}

.faq_content .answer .inner:before {
  content: 'A.';
  color: #E83820;
  position: absolute;
  top: 2px;
  left: 0;
}

/* ソリューション - 一覧 */
.catch_area.type01 {
  width: 828px;
  max-width: 100%;
  margin: 0 auto;
}

.catch_area.type01 .image_area {
  margin-bottom: 30px;
  text-align: center;
}

.catch_area.type01 .text_area {
  font-size: 1.6rem;
}

.catch_area.pd_bottom_large {
  padding-bottom: 60px;
}

.solution-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.solution-list .inner {
  width: 33.33%;
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.solution-list .inner:nth-child(odd) {
  background-color: #FEFBE0;
}

.solution-list .image_area {
  margin-bottom: 15px;
  /* padding: 20px;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.18);
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.18);
  border-radius: 5px; */
}

.solution-list .image_area img {
  height: 190px;
}

.solution-list dt {
  margin-bottom: 5px;
  text-align: center;
  color: #E83820;
  font-size: 1.8rem;
  font-weight: bold;
}

.solution-list dd {
  font-size: 1.6rem;
  margin-bottom: 15px;
}

.related_article_wrap:not(:last-child) {
  margin-bottom: 60px;
}

.related_article .thumb {
  width: 100%;
  height: 200px;
  border: 4px solid #E83820;
  border-radius: 5px;
  overflow: hidden;
}

.related_article .thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.related_article p {
  margin-top: 8px;
  font-size: 1.6rem;
  font-weight: bold;
}

.related_article.type01 .thumb {
  border-color: #E83820;
}

.related_article.type02 .thumb {
  border-color: #6ECC82;
}

.related_article.type03 .thumb {
  border-color: #EBB700;
}

/* ソリューション - 詳細 */
.profile_area {
  margin-bottom: 30px;
  padding: 30px;
  background-color: #FFF;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.profile_area .profile {
  width: 40%;
  text-align: center;
}

.profile_area .profile img {
  width: 100px;
  height: 100px;
  margin-bottom: 5px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 100px;
}

.profile_area .point {
  width: 60%;
  font-size: 1.6rem;
}

.toc_area {
  padding: 30px 40px;
  background-color: #FFF;
  border-radius: 5px;
  font-size: 1.6rem;
}

.toc_area ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.toc_area li {
  width: 50%;
}

.toc_area li::before {
  color: #E83820;
}

.solution-detail {
  margin-bottom: 50px;
}

.solution-detail .solution_box {
  padding: 40px 0;
  border-bottom: 1px solid #DDDDDD;
}

.solution-detail .inner {
  width: 808px;
  max-width: 100%;
  margin: 0 auto;
}

.solution-detail .headline {
  margin-bottom: 20px;
  text-align: center;
  font-weight: bold;
}

.solution-detail .headline dt {
  margin-bottom: 10px;
  color: #E83820;
}

.solution-detail .headline dd {
  font-size: 1.8rem;
}

.solution-detail .headline dd span {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(85%, transparent), color-stop(85%, #FDE375));
  background: -webkit-linear-gradient(transparent 85%, #FDE375 85%);
  background: -o-linear-gradient(transparent 85%, #FDE375 85%);
  background: linear-gradient(transparent 85%, #FDE375 85%);
}

.solution-detail .image_area {
  margin-bottom: 20px;
  /* padding: 20px;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.18);
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.18);
  border-radius: 5px; */
  display: inline-block;
  width: 100%;
  text-align: center;
}

.solution-detail .col3 {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.solution-detail .col3 .image_area {
  padding: 15px;
}

.solution-detail .item_area {
  margin-top: 40px;
}

.solution-detail .item_area .title {
  margin-bottom: 15px;
  font-size: 1.8rem;
}

.solution-detail .item_box {
  width: 32%;
  margin: 0 auto;
  padding: 12px 20px;
  border: 1px solid #DDDDDD;
  -webkit-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.06);
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.06);
  border-radius: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.solution-detail .item_box img {
  width: 70px;
  margin-right: 15px;
}

.solution-detail .item_box p {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-align: left;
  color: #0068B7;
  font-weight: bold;
}

/* DIY事例 */
.diy_wrap {
  margin-bottom: -30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.diy_wrap .inner {
  width: 30%;
  margin: 0 50px 50px 0;
  padding: 16px;
  background-color: #FFF;
  border-radius: 5px;
  -webkit-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.18);
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.18);
}

.diy_wrap .inner:nth-child(3n) {
  margin-right: 0;
}

.diy_wrap .inner p {
  margin-top: 15px;
  font-weight: bold;
  text-align: center;
}

/* HowTo */
.howto_wrap {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.howto_wrap .inner {
  margin: 0 10px;
}

.howto_wrap .inner p {
  margin-top: 15px;
  font-weight: bold;
  text-align: center;
}

.howto_wrap .frame {
  padding: 20px;
  background-color: #FFF;
  border-radius: 5px;
  -webkit-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.18);
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.18);
}

.howto_wrap img {
  width: 100%;
  max-height: 154px;
  -o-object-fit: cover;
  object-fit: cover;
}

.howto_wrap .text_area {
  margin-top: 10px;
  text-align: center;
}

.howto_wrap .text_area dt {
  font-weight: bold;
}

.howto_wrap .text_area dd {
  margin-top: 5px;
  font-size: 1.2rem;
}

.howto_wrap .slick-prev,
.howto_wrap .slick-next {
  background: #E83820;
  border-radius: 50%;
  top: 98px;
  -webkit-transition: opacity .5s;
  -o-transition: opacity .5s;
  transition: opacity .5s;
}

.howto_wrap .slick-prev:hover,
.howto_wrap .slick-prev:focus,
.howto_wrap .slick-next:hover,
.howto_wrap .slick-next:focus {
  background: #E83820;
}

.howto_wrap .slick-prev:before,
.howto_wrap .slick-next:before {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  position: absolute;
  top: 50%;
  margin-top: -4px;
  opacity: 1;
}

.howto_wrap .slick-prev:before {
  border-width: 4px 6px 4px 0;
  border-color: transparent #fff transparent transparent;
  left: 6px;
}

.howto_wrap .slick-next:before {
  border-width: 4px 0 4px 6px;
  border-color: transparent transparent transparent #fff;
  left: 8px;
}

/* お知らせ - 一覧 */
/* お知らせ - 詳細 */
.post_detail {
  padding: 20px;
  background: #FFFFFF;
  border: 1px solid #DDDDDD;
}

.post_detail img {
  height: auto;
}

/* お問い合わせ */
.message_area {
  padding: 15px 0;
}

.message_area .inner {
  width: 1040px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.message_area .inner.small {
  width: 890px;
  max-width: 100%;
}

.form_wrap dl:not(:last-child) {
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.form_wrap dt {
  margin-bottom: 14px;
  font-weight: bold;
}

.form_wrap dd .inner {
  display: block;
}

.form_wrap dd .inner:not(:last-child) {
  margin-bottom: 15px;
}

.form_wrap .required {
  margin-left: 14px;
  padding: 2px 5px;
  background-color: #cd201f;
  font-size: 1.1rem;
  font-weight: normal;
  color: #FFF;
  border-radius: 3px;
}

.form_wrap .required:before {
  content: '※';
  font-family: serif;
}

.form_wrap select {
  width: 100%;
  padding: 20px 20px;
  background-color: #FFF;
  border: 1px solid #DDD;
  border-radius: 5px;
}

.form_wrap input[type="text"] {
  width: 100%;
  padding: 20px 20px;
  background-color: #FFF;
  border: 1px solid #DDD;
  border-radius: 5px;
}

.form_wrap input[type="email"] {
  width: 100%;
  padding: 20px 20px;
  background-color: #FFF;
  border: 1px solid #DDD;
  border-radius: 5px;
}

.form_wrap textarea {
  width: 100%;
  height: 240px;
  padding: 20px 20px;
  background-color: #FFF;
  border: 1px solid #DDD;
  border-radius: 5px;
}

.form_wrap .error {
  margin-top: 1em;
  color: #cd201f;
  font-size: 1.1rem;
}

.section_contact.confirm .form_wrap dl {
  border-bottom: 1px solid #DDD;
}

.section_contact.confirm .form_wrap dl:first-child {
  padding-top: 20px;
  border-top: 1px solid #DDD;
}

.section_contact.confirm .form_wrap .required {
  display: none;
}

.section_contact.confirm .input_only {
  display: none;
}

/* 法人のお客様へ */
.page_for_corporation .message {
  margin-bottom: 30px;
  font-size: 1.6rem;
}

.page_for_corporation .inner:not(:last-child) {
  margin-bottom: 60px;
}

.page_for_corporation .detail {
  padding-left: 106px;
  background-position: left top;
  background-repeat: no-repeat;
  background-size: 84px;
}

.page_for_corporation .detail:not(:last-child) {
  margin-bottom: 40px;
}

.page_for_corporation .detail dt {
  margin-bottom: 10px;
  color: #0068B7;
  font-weight: 600;
  font-size: 1.8rem;
}

.page_for_corporation .detail dd {
  font-size: 1.6rem;
}

.page_for_corporation .d1_1 {
  background-image: url(./images/corporation/icon1_1.png);
}

.page_for_corporation .d1_2 {
  background-image: url(./images/corporation/icon1_2.png);
}

.page_for_corporation .d1_3 {
  background-image: url(./images/corporation/icon1_3.png);
}

.page_for_corporation .d2_1 {
  background-image: url(./images/corporation/icon2_1.png);
}

.page_for_corporation .d2_2 {
  background-image: url(./images/corporation/icon2_2.png);
}

.page_for_corporation .d2_3 {
  background-image: url(./images/corporation/icon2_3.png);
}

.page_for_corporation table {
  min-width: 88%;
  margin-top: 60px;
  border-collapse: collapse;
}

.page_for_corporation table th,
.page_for_corporation table td {
  padding: 1em;
  border: 1px solid #DDDDDD;
}

.page_for_corporation table th {
  width: 28%;
  background-color: #F2F5F7;
}

.page_for_corporation .caution_area {
  margin-top: 1em;
  font-size: 1.4rem;
}

.l-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.l-column.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.l-column.col_half .col_inner {
  width: 50%;
}

.l-column.col2 {
  margin-bottom: -2%;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.l-column.col2 .col_inner {
  width: 49%;
  margin-bottom: 2%;
}

.l-column.col3 {
  margin-bottom: -2%;
}

.l-column.col3 .col_inner {
  width: 32%;
  margin: 0 2% 2% 0;
}

.l-column.col3 .col_inner:nth-child(3n) {
  margin: 0 0 2% 0;
}

.l-column.col4 {
  margin-bottom: -2%;
}

.l-column.col4 .col_inner {
  width: 23.5%;
  margin: 0 2% 2% 0;
}

.l-column.col4 .col_inner:nth-child(4n) {
  margin: 0 0 2% 0;
}

@media screen and (max-width: 478px) {
  .l-column.col4.sp_col2 {
    margin-bottom: -4%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .l-column.col4.sp_col2 .col_inner {
    width: 48%;
    margin: 0 0 4%;
  }

  .l-column.col4.sp_col2 .col_inner:nth-child(4n) {
    margin: 0 0 4%;
  }

  .l-column.col3.sp_col2 {
    margin-bottom: -4%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .l-column.col3.sp_col2 .col_inner {
    width: 48%;
    margin: 0 0 4%;
  }

  .l-column.col3.sp_col2 .col_inner:nth-child(3n) {
    margin: 0 0 4%;
  }

  .l-column.col3.sp_col1 {
    margin-bottom: -4%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .l-column.col3.sp_col1 .col_inner {
    width: 100%;
    margin: 0 0 4%;
  }

  .l-column.col3.sp_col1 .col_inner:nth-child(3n) {
    margin: 0 0 4%;
  }

  .l-column.col2.sp_col1 {
    margin-bottom: -4%;
  }

  .l-column.col2.sp_col1 .col_inner {
    width: 100%;
    margin: 0 0 4%;
  }

  .l-column.col_half.sp_col1 {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .l-column.col_half.sp_col1 .col_inner {
    width: 100%;
  }
}

/* フッター */
.l-footer {
  margin-top: 3px;
}

.footer_area {
  padding: 0 0 30px;
}

.footer_area .banner_area {
  margin-bottom: 30px;
}

.footer_area .banner_area .banner {
  width: 375px;
  margin: 0 auto;
  display: block;
}

.footer_area .sns_navi {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.footer_area .sns_navi li {
  width: 28px;
  margin: 0 20px;
}

.footer_area .copyright {
  margin-top: 20px;
  font-size: 1.0rem;
  text-align: center;
}

.footer_navi {
  padding: 20px 0;
}

.footer_navi ul {
  max-width: 1000px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  font-size: 1.2rem;
}

.footer_navi li {
  width: 25%;
}

.external_link {
  margin: 34px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.external_link a {
  display: block;
}

.external_link a:not(:last-child) {
  margin-right: 30px;
}

.group_company {
  max-width: 1000px;
  margin: 34px auto;
  text-align: center;
}

.group_company dt {
  margin-bottom: 10px;
  font-size: 2.0rem;
  font-weight: bold;
}

.group_company dd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.group_company a {
  margin: 0 30px;
}

@media screen and (max-width: 478px) {
  .l-footer {
    margin-top: 0;
    padding-bottom: 74px;
    border-top: 1px solid #DDDDDD;
  }

  .footer_area {
    width: 100%;
    padding: 20px 20px 30px;
  }

  .footer_area .banner_area .banner {
    width: 100%;
  }

  .footer_area .sns_navi li {
    width: 35px;
    margin: 0 24px;
  }

  .footer_navi {
    display: none;
  }

  .group_company {
    margin: 30px auto;
  }

  .group_company dt {
    font-size: 1.4rem;
  }

  .group_company a {
    margin: 0 10px;
  }

  .external_link {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .external_link a {
    display: block;
  }

  .external_link a:not(:last-child) {
    margin-right: 0;
    margin-bottom: 25px;
  }
}

.headline-type01 {
  margin-bottom: 20px;
  text-align: center;
  font-weight: 600;
  font-size: 2.0rem;
}

.headline-type01 .sub {
  display: block;
  font-size: 1.2rem;
}

.headline-type02 {
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 1.6rem;
  text-align: center;
}

.headline-type02.h2_type {
  margin-top: 10px;
}

.h3_type {
  width: 100%;
  margin-top: 30px;
}

.h3_type:first-child {
  margin-top: 0;
}

.headline-type02:before {
  content: '';
  width: 13px;
  height: 13px;
  margin-right: 7px;
  background-color: #0068B7;
  display: inline-block;
  position: relative;
  top: 1px;
}

.headline-type03 {
  margin-bottom: 20px;
  padding-bottom: 3px;
  font-weight: 600;
  font-size: 1.8rem;
  border-bottom: 1px solid #0068B7;
}

.headline-type04 {
  width: 100%;
  margin-bottom: 20px;
  padding: 10px;
  border-radius: 50px;
  text-align: center;
  color: #FFF;
  font-size: 2.0rem;
  background-color: #777;
  -webkit-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.18);
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.18);
}

.headline-type04.yellow {
  background-color: #EBB700;
}

.headline-type04.green {
  background-color: #6ECC82;
}

.headline-type04.orange {
  background-color: #EB6100;
}

.headline-type04 .sub {
  display: block;
  font-size: 1.4rem;
}

.headline-type05 {
  margin-bottom: 20px;
  padding: 6px 15px;
  font-weight: 600;
  font-size: 1.8rem;
  color: #FFF;
  background-color: #0068B7;
}

.headline-type_image {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}

@media screen and (max-width: 478px) {
  .headline-type01 {
    margin-bottom: 20px;
  }

  .headline-type04 {
    margin-bottom: 12px;
    padding: 3px;
    font-size: 1.6rem;
  }
}

/* ボタン関連 */
.btn {
  display: inline-block;
  text-align: center;
}

.btn-center {
  margin-right: auto;
  margin-left: auto;
}

.btn.type01 {
  width: 380px;
  max-width: 100%;
  margin: auto auto 0;
  padding: 18px 0;
  display: block;
  font-size: 1.8rem;
  background-color: #0068B7;
  color: #FFF;
  font-weight: bold;
  text-align: center;
  border-radius: 5px;
  -webkit-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.18);
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.18);
}

.btn.type02 {
  width: 380px;
  height: 60px;
  max-width: 100%;
  margin: auto auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
  background-color: #FFF;
  border: 1px solid #DDDDDD;
  border-radius: 5px;
  -webkit-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.06);
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.06);
}

.btn.type02 img {
  margin-right: 10px;
}

.btn-more {
  width: 190px;
  margin: 20px auto 0;
  padding: 17px 0;
  display: block;
  text-align: center;
  border: 1px solid #DDD;
  border-radius: 4px;
  line-height: 1;
  font-weight: bold;
  background-color: #FFF;
  -webkit-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.06);
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.06);
}

.btn-more span {
  padding-right: 24px;
  position: relative;
}

.btn-more span:before {
  content: '';
  width: 14px;
  height: 14px;
  background: #0068B7;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -7px;
}

.btn-more span:after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 3px 0 3px 5px;
  border-color: transparent transparent transparent #fff;
  position: absolute;
  top: 50%;
  right: 4px;
  margin-top: -3px;
}

.btn-back {
  width: 190px;
  margin: 20px auto 0;
  padding: 17px 0;
  display: block;
  text-align: center;
  border: 1px solid #DDD;
  border-radius: 4px;
  line-height: 1;
  font-weight: bold;
  background-color: #FFF;
  -webkit-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.06);
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.06);
}

.btn-back span {
  padding-left: 24px;
  position: relative;
}

.btn-back span:before {
  content: '';
  width: 14px;
  height: 14px;
  background: #0068B7;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -7px;
}

.btn-back span:after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 3px 5px 3px 0;
  border-color: transparent #fff transparent transparent;
  position: absolute;
  top: 50%;
  left: 4px;
  margin-top: -3px;
}

.btn_s {
  -webkit-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.06);
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.06);
  border-radius: 4px;
}

@media screen and (max-width: 478px) {
  .btn.type01 {
    margin-top: 20px;
    padding: 16px 0;
  }

  .btn-more {
    margin: 20px 0 0 auto;
  }
}

/* フォーム関連 */
*:focus {
  outline: none;
}

input::-webkit-input-placeholder {
  color: #cdd1d2;
}

input:-ms-input-placeholder {
  color: #cdd1d2;
}

input::-moz-placeholder {
  color: #cdd1d2;
}

textarea::-webkit-input-placeholder {
  color: #cdd1d2;
}

textarea:-ms-input-placeholder {
  color: #cdd1d2;
}

textarea::-moz-placeholder {
  color: #cdd1d2;
}

input[type="radio"] {
  margin-right: 10px;
  position: relative;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 20px;
  height: 20px;
  padding: 0;
  min-height: auto;
  content: "";
  background-color: #FFFFFF;
  border: 1px solid #666;
  border-radius: 20px;
  vertical-align: middle;
  cursor: pointer;
  top: -2px;
}

input[type="radio"]:checked:after {
  display: block;
  position: absolute;
  top: 2px;
  left: 2px;
  content: "";
  width: 14px;
  height: 14px;
  background: #0068B7;
  border-radius: 14px;
}

input[type="checkbox"] {
  margin-right: 10px;
  position: relative;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 30px;
  height: 30px;
  padding: 0;
  min-height: auto;
  content: "";
  background-color: #FFFFFF;
  border: 1px solid #E0E0E5;
  border-radius: 5px;
  vertical-align: middle;
  cursor: pointer;
  top: -2px;
}

input[type="checkbox"]:checked:after {
  display: block;
  position: absolute;
  top: 2px;
  left: 2px;
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  content: "\f00c";
  color: #0068B7;
  font-size: 24px;
}

@media screen and (max-width: 834px) {
  input[type="checkbox"] {
    font-size: 1.4rem;
  }
}

/* リスト */
ul {
  list-style-type: none;
}

ul li:not(:last-child) {
  margin-bottom: .5em;
}

ul.dot {
  list-style-type: none;
}

ul.dot li {
  text-indent: -1em;
  padding-left: 1em;
}

ul.dot li:before {
  content: '・';
  font-family: cursive;
}

ul.dot li:not(:last-child) {
  margin-bottom: .3em;
}

ul.square {
  list-style-type: none;
}

ul.square li {
  text-indent: -1em;
  padding-left: 1em;
}

ul.square li:before {
  content: '■';
  font-family: cursive;
}

ul.square li:not(:last-child) {
  margin-bottom: .3em;
}

ul.note {
  list-style-type: none;
}

ul.note li {
  text-indent: -1em;
  padding-left: 1em;
}

ul.note li:before {
  content: '※';
  font-family: cursive;
}

ul.note li:not(:last-child) {
  margin-bottom: .3em;
}

ol {
  margin-left: 1.5em;
}

ol li:not(:last-child) {
  margin-bottom: .5em;
}

/* cssバナー用 */
.cssbanner {
  text-align:center;
}
.btn,
a.btn,
button.btn {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 2rem 10rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
}
a.btn-pc-sp--tel {
    color: #fff;
    background: #094
}
a.btn-pc-sp .number, {
  font-size: 1.3rem;
  letter-spacing: .05em;
}

@-moz-document url-prefix() {}

@media screen and (max-width: 478px) {
  body {
    font-size: 1.4rem;
  }

  /* テキスト */
  p.note.type01 {
    font-size: 1.0rem;
  }

  .text-sub {
    font-size: 1.0rem;
  }

  .sp_hide {
    display: none;
  }

  /* ヘッダー */
  .is-animation .header_inner {
    background-color: white;
  }

  .open #nav-toggle span {
    background: #FFF;
  }

  .site-content {
    padding-top: 70px;
    margin-top: 0!important;
  }

  /* サイト共通 */
  .section_wrap {
    padding: 40px 0;
  }

  .section_wrap.wide_full .content {
    padding: 0;
  }

  .section_wrap .content:not(:last-child) {
    margin-bottom: 30px;
  }

  .section_wrap .content.pd_w50 {
    padding: 0 15px;
  }

  .section_wrap.pd_bottom_large {
    padding-bottom: 80px;
  }

  .content {
    width: 100%;
    padding: 0 15px;
  }

  .btn_top {
    display: none;
  }

  /* 緊急のお知らせ */
  .section_notice {
    padding: 10px 0;
  }

  /* メインスライダー */
  #main_visual .main_slider {
    padding: 0;
  }

  /* タブ切り替え */
  .tab-group.type01 .tab_navi {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .tab-group.howto img {
    max-height: 40vw;
  }

  /* 下層共通 */
  .headline_area {
    padding: 28px 0;
  }

  .description_area {
    padding: 25px 15px;
  }

  .description_area+.section_search_category {
    margin-top: 0;
  }

  /* 商品一覧 */
  .products_list {
    margin-bottom: -30px;
  }

  .products_list .product_box {
    width: 100%;
    margin-bottom: 30px;
  }

  .products_list .product_info {
    margin-bottom: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .products_list .product_image {
    width: 150px;
    height: 150px;
    margin-right: 27px;
    -o-object-fit: cover;
    object-fit: cover;
    border: 1px solid #E5E5E5;
    border-radius: 5px;
  }

  .products_list dl {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }

  .products_list dt {
    margin-bottom: 8px;
    font-size: 1.6rem;
    font-weight: bold;
    color: #0068B7;
  }

  .products_list .cart_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .products_list select {
    width: 100%;
    padding: 10px 15px;
    background-color: #FFF;
    border: 1px solid #E0E0E5;
    font-size: 1.2rem;
    background: #FFF url(./images/icon/arrow_select.png) no-repeat right 15px center/10px;
    border-radius: 3px;
  }

  .products_list .capacity {
    width: 48.5%;
    margin-bottom: 10px;
  }

  .products_list .color {
    width: 48.5%;
    margin-bottom: 10px;
  }

  .products_list .quantity {
    width: 25%;
  }

  .products_list .btn-cart {
    width: 72%;
    padding: 10px 0;
    background-color: #0068B7;
    color: #FFF;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 5px;
  }

  /* よくある質問 */
  .faq_content .question {
    padding: 20px 36px 20px 18px;
  }

  .faq_content .question:before {
    right: 14px;
  }

  .faq_content .question:after {
    right: 18px;
  }

  /* ソリューション - 一覧 */
  .catch_area.type01 .image_area {
    margin-bottom: 20px;
  }

  .catch_area.type01 .text_area {
    padding: 0 20px;
    font-size: 1.4rem;
    text-align: left;
  }

  .catch_area.pd_bottom_large {
    padding-bottom: 60px;
  }

  .solution-list {
    margin: 0 -15px;
  }

  .solution-list .inner {
    width: 100%;
  }

  .solution-list .image_area img {
    height: 46vw;
  }

  .solution-list dd {
    font-size: 1.4rem;
  }

  .related_article {
    margin-right: -20px;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: unset;
    -ms-flex-pack: unset;
    justify-content: unset;
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
  }

  .related_article .col_inner {
    min-width: 42%;
    margin: 0 5% 0 0 !important;
  }

  .related_article p {
    margin-top: 8px;
    font-size: 1.4rem;
  }

  /* ソリューション - 詳細 */
  .profile_area {
    margin-bottom: 30px;
    padding: 30px 0;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .profile_area .profile {
    width: 100%;
  }

  .profile_area .point {
    width: 100%;
    margin-top: 15px;
    padding: 0 20px;
    font-size: 1.4rem;
  }

  .toc_area {
    padding: 20px 20px;
    font-size: 1.4rem;
  }

  .toc_area li {
    width: 100%;
  }

  .solution-detail {
    margin-bottom: 50px;
  }

  .solution-detail .solution_box {
    padding: 30px 20px;
  }

  .solution-detail .headline {
    margin-bottom: 20px;
    text-align: center;
  }

  .solution-detail .headline dt {
    color: #E83820;
    font-weight: bold;
  }

  .solution-detail .headline dd {
    font-size: 1.8rem;
  }

  .solution-detail .headline dd span {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(85%, transparent), color-stop(85%, #FDE375));
    background: -webkit-linear-gradient(transparent 85%, #FDE375 85%);
    background: -o-linear-gradient(transparent 85%, #FDE375 85%);
    background: linear-gradient(transparent 85%, #FDE375 85%);
  }

  .solution-detail .image_area {
    margin-bottom: 20px;
    /* padding: 20px;
    background: #FFFFFF;
    -webkit-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.18);
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.18);
    border-radius: 5px; */
  }

  .solution-detail .col3 .image_area {
    padding: 10px;
  }

  .solution-detail .col3 .col_inner {
    width: 47% !important;
    margin-right: 3%;
  }

  .solution-detail .col3 .col_inner:nth-child(2n) {
    margin-right: 0;
  }

  .solution-detail .item_area {
    margin-top: 20px;
  }

  .solution-detail .item_area .title {
    margin-bottom: 10px;
  }

  .solution-detail .item_box {
    width: 100%;
  }

  /* DIY事例 */
  .diy_wrap {
    margin-bottom: -20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .diy_wrap .inner {
    width: 47%;
    margin: 0 6% 20px 0;
    padding: 10px;
  }

  .diy_wrap .inner:nth-child(3n) {
    margin-right: 6%;
  }

  .diy_wrap .inner:nth-child(2n) {
    margin-right: 0;
  }

  .diy_wrap .inner p {
    margin-top: 10px;
    font-size: 1.2rem;
  }

  /* HowTo */
  .howto_wrap {
    padding: 0 15px;
  }

  .howto_wrap img {
    max-height: 40vw;
  }

  .howto_wrap .slick-prev:hover,
  .howto_wrap .slick-next:hover {
    opacity: 1;
  }

  .howto_wrap .slick-prev {
    left: -5px;
  }

  .howto_wrap .slick-next {
    right: -5px;
  }

  .modaal-video-wrap {
    margin: 0 !important;
  }

  /* 法人のお客様へ */
  .page_for_corporation .message {
    font-size: 1.4rem;
  }

  .page_for_corporation .inner:not(:last-child) {
    margin-bottom: 60px;
  }

  .page_for_corporation .detail {
    padding-top: 18px;
    padding-left: 82px;
    background-size: 70px;
  }

  .page_for_corporation .detail dt {
    margin-bottom: 10px;
    font-size: 1.6rem;
  }

  .page_for_corporation .detail dd {
    font-size: 1.2rem;
  }

  .page_for_corporation .detail .sp_full {
    margin-left: -82px;
  }

  .page_for_corporation table {
    width: 100%;
    margin-top: 40px;
    font-size: 1.6rem;
    border-bottom: 1px solid #DDDDDD;
    display: block;
  }

  .page_for_corporation table tbody,
  .page_for_corporation table tr,
  .page_for_corporation table th,
  .page_for_corporation table td {
    width: 100%;
    display: block;
  }

  .page_for_corporation table th,
  .page_for_corporation table td {
    padding: 1em;
    border: 1px solid #DDDDDD;
    border-bottom: none;
  }

  .page_for_corporation .caution_area {
    margin-top: 1em;
    font-size: 1.4rem;
  }
}