@charset "UTF-8";
/* COMPASS
 * ----------------------------------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}
q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

/* BASE
 * ----------------------------------------------- */
/* MEDIA QUERIES
 * ----------------------------------------------- */
/* ADDITIONAL RESET
 * ----------------------------------------------- */
*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body * {
  max-height: 99999em;
}

body img {
  max-height: none;
}

input,
label,
select,
button,
textarea {
  margin: 0;
  border: 0;
  padding: 0;
  display: inline-block;
  vertical-align: middle;
  white-space: normal;
  background: none;
  font: inherit;
  line-height: 1;
}

input:focus,
button:focus,
select:focus {
  outline: 0;
}

/* Make webkit render the search input like a normal text field */
input[type=search] {
  -webkit-appearance: textfield;
}

/* Turn off the recent search for webkit. It adds about 15px padding on the left */
::-webkit-search-decoration {
  display: none;
}

/* Turn off scroll bars in IE unless needed */
textarea {
  overflow: auto;
  white-space: pre-line;
}

/* PRINTING
 * ----------------------------------------------- */
@media print {
  body {
    -webkit-print-color-adjust: exact;
  }

  html,
  body {
    margin: 0;
  }

  @page {
    margin: 0;
  }
  @page :left {
    margin: 0;
  }
  @page :right {
    margin: 0;
  }
  @page :first {
    margin-top: 0;
  }
}
/* GENERAL
 * ----------------------------------------------- */
body {
  color: #282828;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS PGothic", "Osaka", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.4;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: none;
  background-color: #f1f1f5;
}

.ft-serif {
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS PGothic", "Osaka", sans-serif;
}

/* HELPERS
 * ----------------------------------------------- */
a {
  color: #565656;
  text-decoration: none;
}

.hidden {
  display: none;
}

.invisible {
  visibility: hidden;
}

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

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

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

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

.text-nowrap {
  white-space: nowrap;
}

.text-lowercase {
  text-transform: lowercase;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-capitalize {
  text-transform: capitalize;
}

.container {
  min-width: 1200px;
  overflow: hidden;
}

.wrapper {
  width: 1120px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

button {
  display: block;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

img {
  display: inline-block;
  vertical-align: middle;
}

.d-flex {
  display: flex;
}

.tel {
  cursor: default;
}

.mt0 {
  margin-top: 0 !important;
}

/* RESPONSIVE
 * ----------------------------------------------- */
@media print, (min-width: 768px) {
  .sm {
    display: none !important;
  }

  .trans {
    filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
    opacity: 1;
    -moz-transition: opacity 0.26s ease;
    -o-transition: opacity 0.26s ease;
    -webkit-transition: opacity 0.26s ease;
    transition: opacity 0.26s ease;
  }
  .trans:hover {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
    opacity: 0.8;
  }

  .trans-high {
    filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
    opacity: 1;
    -moz-transition: opacity 0.26s ease;
    -o-transition: opacity 0.26s ease;
    -webkit-transition: opacity 0.26s ease;
    transition: opacity 0.26s ease;
  }
  .trans-high:hover {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
    opacity: 0.5;
  }
}
@media only screen and (max-width: 767px) {
  .d-flex {
    display: block;
  }

  .md {
    display: none !important;
  }

  img {
    width: 100%;
  }

  .container {
    width: auto;
    min-width: 320px;
  }

  .wrapper {
    width: auto;
    margin: 0;
    padding-left: 15px;
    padding-right: 15px;
  }
}
/* PARTS
 * ----------------------------------------------- */
/* COMMON HEADER
 * ----------------------------------------------- */
main {
  padding-top: 170px;
}

header {
  height: auto;
  padding: 18px 0 15px;
  background-color: #ffffff;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9999;
}
header .row-logo-search {
  justify-content: space-between;
}
header .head-search {
  margin-left: -8px;
}
header .head-search .text-logo {
  font-size: 12px;
  color: #666666;
  letter-spacing: -0.1em;
  top: -1px;
  position: relative;
}
header .box-search {
  width: 466px;
  display: flex;
  border-radius: 5px;
  overflow: hidden;
  margin-top: 20px;
}
header .box-search input {
  width: 368px;
  max-width: 368px;
  min-width: 368px;
  padding: 0 10px;
  border: 2px solid #ff6a00;
}
header .row-main-menu {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  letter-spacing: -0.03em;
}
header .head-contact {
  margin-top: -5px;
}
header .main-menu {
  padding-left: 10px;
}
@media print, (min-width: 768px) {
  header .main-menu {
    margin-top: -6px;
  }
}
header .main-menu ul {
  display: flex;
  font-size: 14px;
  line-height: 20px;
  align-items: flex-end;
}
header .main-menu ul li {
  margin: 6px 10px 0 10px;
}
header .main-menu ul li a {
  padding: 10px;
  color: #282828;
  display: block;
  position: relative;
}
header .main-menu ul li a:before {
  position: absolute;
  bottom: -2px;
  left: 0;
  content: "";
  width: 0;
  height: 2px;
  background-color: #ff6a00;
  -webkit-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
}
header .main-menu ul li a.active {
  border-bottom: 2px solid #ff6a00;
  position: relative;
}
header .main-menu ul li a.active:before {
  width: 100%;
}
header .main-menu ul li a:hover:before {
  width: 100%;
}
header .btn-inquiry {
  display: block;
  width: 290px;
  background-color: #e20707;
  border-radius: 5px;
  padding: 0 0;
  border-bottom: 1px solid #b82420;
  overflow: hidden;
  margin-top: 3px;
}
header .btn-inquiry:hover {
  background-color: #fb120c;
}
header .btn-inquiry:hover span {
  border-bottom: 1px solid #e2211c;
}
header .btn-inquiry span {
  display: block;
  padding: 8px 5px 8px 35px;
  color: #ffffff;
  font-size: 16px;
  position: relative;
  border-bottom: 1px solid #c91816;
  width: 100%;
}
header .btn-inquiry span:before {
  position: absolute;
  content: " ";
  left: 15px;
  top: 0;
  bottom: 0;
  margin: auto;
  border-left: 9px solid #ffffff;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  height: 0;
}

@media only screen and (max-width: 767px) {
  main {
    padding-top: 0;
  }

  header {
    position: static;
  }
  header .wrapper {
    position: relative;
  }
  header .menu-click {
    width: 40px;
    height: 40px;
    border: 1px solid #565656;
    position: absolute;
    right: 15px;
    top: 0;
    border-radius: 5px;
  }
  header .menu-click.active span:nth-child(1) {
    transform: rotate(-50deg);
    top: 18px;
  }
  header .menu-click.active span:nth-child(2) {
    opacity: 0;
  }
  header .menu-click.active span:nth-child(3) {
    transform: rotate(50deg);
    top: 18px;
  }
  header .menu-click span {
    transition: all 0.4s;
    display: block;
    width: 20px;
    height: 2px;
    left: 0;
    right: 0;
    margin: 0 auto;
    background-color: #565656;
    position: absolute;
  }
  header .menu-click span:nth-child(1) {
    top: 9px;
  }
  header .menu-click span:nth-child(2) {
    top: 18px;
  }
  header .menu-click span:nth-child(3) {
    top: 27px;
  }
  header .logo {
    width: 138px;
  }
  header .head-search {
    margin: 20px 0 0;
  }
  header .head-search .text-logo {
    text-align: center;
  }
  header .head-search .box-search {
    margin-top: 10px;
    width: 100%;
    justify-content: center;
  }
  header .head-search .box-search input {
    max-width: 100%;
    min-width: 0;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    border-radius: 0;
  }
  header .head-search .box-search button {
    display: flex;
    height: 100%;
  }
  header .head-contact {
    width: 250px;
    display: block;
    margin: 10px auto 0;
  }
  header .main-menu {
    display: none;
    position: absolute;
    background: #ffffff;
    color: #ffffff;
    width: 100%;
    left: 0;
    top: 43px;
    padding: 15px;
    z-index: 99;
  }
  header .main-menu ul {
    display: block;
  }
  header .main-menu ul li {
    margin: 0;
  }
  header .main-menu ul li a {
    padding-left: 0;
    padding-right: 0;
    display: inline-block;
  }
  header .main-menu ul li a.active {
    top: 0;
  }
  header .btn-inquiry {
    margin: 10px auto;
  }
}
/* COMMON FOOTER
 * ----------------------------------------------- */
footer {
  padding: 25px 0 40px;
  width: auto;
  height: auto;
  background-color: #292828;
  border-top: 2px solid #ff6a00;
  font-size: 14px;
  color: #ffffff;
  margin-top: 183px;
}
footer .wrapper {
  padding: 0;
}
footer .list-menu-foo {
  display: flex;
  padding-left: 72px;
}
footer .menu-foo-col {
  padding-right: 62px;
  margin-top: -5px;
}
footer .menu-foo-col a {
  color: #ffffff;
}
footer .menu-foo-col > li {
  padding: 14px 0;
}
footer .menu-foo-col > li .sub-menu {
  margin-top: 12px;
  padding-left: 20px;
}
footer .menu-foo-col > li .sub-menu li {
  padding: 2px 0;
}
footer .menu-foo-col > li .sub-menu li a {
  padding-left: 8px;
  background-image: url(../img/common/icon_arrow.png);
  background-repeat: no-repeat;
  background-position: left center;
}
footer .copy-right-text {
  text-align: center;
  margin-top: 69px;
  letter-spacing: 0.05em;
}
footer .wrapper {
  position: relative;
}
footer .wrapper .back-top {
  position: fixed;
  right: 30px;
  bottom: 25px;
  display: block;
  left: 50%;
  margin-left: 480px;
}

@media only screen and (max-width: 767px) {
  footer .left-logo {
    width: 126px;
    margin: 0 auto;
  }
  footer .wrapper {
    padding: 0 15px;
  }
  footer .wrapper .back-top {
    bottom: 31px;
    margin-left: 0;
    width: 62px;
    left: auto;
    right: 30px !important;
  }
  footer .list-menu-foo {
    display: block;
    padding: 0;
    margin-top: 20px;
    text-align: center;
  }
  footer .list-menu-foo .menu-foo-col {
    padding: 0 0;
  }
  footer .list-menu-foo .menu-foo-col li .sub-menu {
    padding: 0;
  }
  footer .copy-right-text {
    margin-top: 40px;
  }
}
/* PAGES
 * ----------------------------------------------- */
.aside-bar .img-aside {
  margin-top: 4px;
  display: block;
}
.aside-bar .title {
  font-size: 14px;
  color: #ffffff;
  background-color: #12225b;
  padding: 4.5px 13px;
}
.aside-bar .menu-bar li {
  border-bottom: 1px solid #12225b;
  position: relative;
  background-color: #fff;
}
.aside-bar .menu-bar li .open-sub-menu {
  position: absolute;
  width: 40px;
  height: 40px;
  right: 0;
  bottom: 0;
  top: 0;
  margin: 0;
  z-index: 9;
}
.aside-bar .menu-bar li .open-sub-menu:before, .aside-bar .menu-bar li .open-sub-menu:after {
  content: " ";
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  position: absolute;
  background-color: #3d4c82;
}
.aside-bar .menu-bar li .open-sub-menu:before {
  width: 15px;
  height: 2px;
}
.aside-bar .menu-bar li .open-sub-menu:after {
  width: 2px;
  height: 15px;
}
.aside-bar .menu-bar li .open-sub-menu.active:after {
  display: none;
}
@media print, (min-width: 768px) {
  .aside-bar .menu-bar li:hover .sub-menu {
    display: block;
  }
}
.aside-bar .menu-bar li > a {
  padding: 10.5px 0 10.5px 35px;
  color: #3d4c82;
  font-size: 14px;
  display: block;
  font-weight: 500;
  background-repeat: no-repeat;
  background-position: 3px center;
}
.aside-bar .menu-bar li > a.icon-tshirt {
  background-image: url(../img/top/icon_tshirt.png);
}
.aside-bar .menu-bar li > a.icon-bag {
  background-image: url(../img/top/icon_bag.png);
}
.aside-bar .menu-bar li > a.icon-towel {
  background-image: url(../img/top/icon_towel.png);
}
.aside-bar .menu-bar li > a.icon-other {
  background-image: url(../img/top/icon_other.png);
}
.aside-bar .menu-bar li .sub-menu {
  position: absolute;
  left: 100%;
  width: 210px;
  background-color: #f1f1f5;
  z-index: 99;
  top: 0;
  display: none;
}
.aside-bar .menu-bar li .sub-menu li {
  background-color: #f1f1f5;
}
.aside-bar .menu-bar li .sub-menu li a {
  padding-left: 22px;
  padding-right: 22px;
}

.section-banner {
  margin-top: 24px;
}
.section-banner .right-banner {
  padding-left: 1px;
}
.section-banner .right-banner a {
  display: block;
  border-bottom: 1px solid #ffffff;
}
.section-banner .right-banner a:last-child {
  border-bottom: none;
}
.section-banner .wrapper {
  background-color: #fff;
  padding: 20px 20px 26px;
}
.section-banner .slider {
  width: 690px;
  max-width: 690px;
  min-width: 690px;
  padding-left: 20px;
}

.section-category {
  margin-top: 22px;
}
.section-category .wrapper {
  background-image: url(../img/top/bg_category.png);
  background-size: auto 100%;
  padding-top: 12px;
  padding-bottom: 12px;
}
.section-category .title {
  color: #ffffff;
  width: 236px;
  padding-left: 4px;
}
.section-category .title .jp {
  font-size: 20px;
}
.section-category .title .en {
  font-size: 24px;
}
.section-category .list-cat li {
  width: 178px;
  min-width: 178px;
  max-width: 178px;
  margin: 0 16px;
}
.section-category .list-cat li a {
  background-color: #ffffff;
  border-radius: 30px;
  padding: 4px 10px;
  display: flex;
  height: 100%;
  align-items: center;
}
.section-category .list-cat li a .icon {
  display: inline-block;
  vertical-align: middle;
}
.section-category .list-cat li a .text {
  font-size: 14px;
  color: #313131;
  padding-left: 10px;
}

.box-slider .slick-dots {
  text-align: center;
  position: absolute;
  bottom: -20px;
  width: 100%;
}
.box-slider .slick-dots li {
  display: inline-block;
  background-color: #dcdcdc;
  width: 12px;
  height: 12px;
  border-radius: 100%;
  margin: 0 4px;
}
.box-slider .slick-dots li button {
  display: none;
}
.box-slider .slick-dots li.slick-active {
  background-color: #ffa666;
}
.box-slider .slick-arrow {
  position: absolute;
  width: 28px;
  height: 62px;
  text-indent: -99999px;
  top: -24px;
  bottom: 0;
  margin: auto 0;
  z-index: 9;
}
.box-slider .slick-arrow.slick-prev {
  background-image: url(../img/common/arrow_left.png);
  left: 0;
}
.box-slider .slick-arrow.slick-next {
  background-image: url(../img/common/arrow_right.png);
  right: 0;
}
.box-slider .item {
  display: block;
}

.section-feature {
  margin-top: 22px;
}
.section-feature .wrapper {
  background-color: #ffffff;
  padding-top: 20px;
  padding-bottom: 14px;
}
.section-feature .title {
	color: #ff6a00;
	text-align: center;
	font-size: 30px;
}
.section-feature .list-features {
  margin-top: 32px;
}
.section-feature .list-features .item {
  border-left: 2px solid #ff6a00;
  padding: 8px 30px 34px;
  width: 359px;
  min-width: 359px;
}
.section-feature .list-features .item:first-child {
  border: none;
}
.section-feature .list-features .item .thumb {
  width: 106px;
  margin: 0 auto;
}
.section-feature .list-features .item .tit {
  font-size: 24px;
  color: #ff6a00;
  text-align: center;
  margin-top: 27px;
  letter-spacing: -0.1em;
  white-space: nowrap;
}
.section-feature .list-features .item .desc {
  font-size: 14px;
  margin-top: 20px;
}
.section-feature .btn-feature {
  background-image: url(../img/top/btn_feature.png);
  background-position: left top;
  background-repeat: no-repeat;
  overflow: hidden;
  display: inline-block;
  margin-top: 24px;
}
.section-feature .btn-feature:hover {
  background-position: left bottom;
}

.input,
.textarea {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background-color: #eaebf0;
  border: none;
  border-radius: 0;
  height: 37px;
  resize: none;
  width: 563px;
  padding: 0 10px;
}

.textarea {
  height: 178px;
  padding: 10px;
  line-height: 1.5;
}
.textarea:focus {
  outline: none;
}

.box-contact-form {
  width: 815px;
}
.box-contact-form .table-contact-form {
  width: 100%;
  font-size: 14px;
  font-weight: 500;
}
.box-contact-form .table-contact-form td, .box-contact-form .table-contact-form th {
  padding: 16.5px 0;
}
.box-contact-form .table-contact-form th {
  width: 252px;
  vertical-align: top;
  padding-top: 20px;
}
.box-contact-form .table-contact-form th .tit {
  vertical-align: middle;
  padding-right: 15px;
}
.box-contact-form .table-contact-form th .text-required {
  vertical-align: middle;
  display: inline-block;
}
.box-contact-form .table-contact-form th.vertical-center {
  padding-bottom: 70px;
  vertical-align: middle;
}
.box-contact-form .btn-submit {
  background-image: url(../img/common/btn_submit.png);
  background-position: left top;
  width: 286px;
  margin: 42px 310px 0;
}
.box-contact-form .btn-submit:hover {
  background-position: left bottom;
}

.box-border {
  border: 1px solid #12225b;
  padding: 20px 60px 51px 60px;
}

.section-contact-from {
  margin-top: 68px;
}
.section-contact-from .wrapper {
  background-color: #ffffff;
  padding: 40px 40px 74px;
}
.section-contact-from .box-contact-form {
  margin-left: 5px;
  margin-top: 27px;
}
.section-contact-from .title-contact {
  color: #12225b;
  border-bottom: 1px solid #12225b;
  padding: 0 0 6px;
}
.section-contact-from .title-contact .jp {
  font-size: 24px;
  display: block;
}
.section-contact-from .title-contact .en {
  font-size: 18px;
  display: block;
  margin-top: 3px;
}
.section-contact-from .desc-large {
  font-size: 18px;
  color: #12225b;
  margin-top: 18px;
  line-height: 1.75em;
}
.section-contact-from .desc-form {
  font-size: 14px;
  color: #313131;
  margin-top: 11px;
  font-weight: medium;
  font-weight: 500;
}

.section-photo {
  margin-top: 46px;
}
.section-photo .list-photo {
  margin-top: 24px;
}

.title-section {
  margin: 0 -20px;
  font-size: 24px;
  color: #ff6a00;
  padding: 0 0 0 60px;
  position: relative;
  letter-spacing: -0.05em;
}
.title-section:before {
  position: absolute;
  left: 0;
  top: 12px;
  width: 40px;
  height: 7px;
  border-radius: 3.5px;
  content: " ";
  background-color: #ff6a00;
}

.list-photo {
  justify-content: space-between;
}
.list-photo li a {
  display: block;
  border: 1px solid #cccccc;
}

.box-white-product {
  background-color: #ffffff;
  margin: 0 -20px;
  padding: 43px 20px 0;
}

.section-product {
  margin-top: 53px;
}
.section-product .box-white-product {
  margin-top: 24px;
}

.list-products {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-left: -20px;
}
.list-products li {
  width: 255px;
  max-width: 255px;
  min-width: 255px;
  margin-bottom: 52px;
  margin-left: 20px;
}
.list-products li a {
  display: flex;
  height: 100%;
  padding-bottom: 12px;
  border: 1px solid #dedede;
  flex-wrap: wrap;
}
.list-products li a .thumb {
  width: 100%;
}
.list-products li a:hover {
  border: 1px solid #ff6a00;
  -webkit-box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.32);
  -moz-box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.32);
  box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.32);
}
.list-products li .desc-small {
  line-height: 14px;
  margin-top: 9px;
  padding: 5px 13px;
  letter-spacing: -0.1em;
  width: 100%;
}
.list-products li .title {
  font-size: 18px;
  font-weight: 500;
  margin-top: 0;
  padding: 0 13px;
  line-height: 1.1;
  width: 100%;
}

@media only screen and (max-width: 767px) {
  .aside-bar .img-aside {
    max-width: 210px;
    margin: 4px auto 0;
  }
  .aside-bar .menu-bar li .sub-menu {
    position: static;
    display: none;
    width: 100%;
    top: auto;
  }
  .aside-bar .menu-bar li .sub-menu li {
    border-top: 1px solid #12225b;
    border-bottom: none;
  }

  .section-banner .right-banner {
    display: flex;
    margin-top: 40px;
  }
  .section-banner .right-banner a {
    width: 50%;
  }
  .section-banner .slider {
    margin: 20px auto 0;
    padding: 0;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .box-slider .slick-arrow {
    top: 0;
    width: 14px;
    height: 31px;
    background-size: 100% 100%;
  }

  .section-category .wrapper .title {
    width: auto;
  }
  .section-category .wrapper .title .jp {
    display: block;
  }
  .section-category .wrapper .title .en {
    display: block;
  }
  .section-category .wrapper .list-cat {
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
    justify-content: space-between;
  }
  .section-category .wrapper .list-cat li {
    width: 48%;
    min-width: 48%;
    max-width: 48%;
    margin: 5px 0;
  }

  .section-feature .btn-feature {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 286px;
  }
  .section-feature .title {
    text-align: left;
    font-size: 30px;
  }
  .section-feature .list-features .item {
    width: 359px;
    min-width: 0;
    max-width: 100%;
    margin: 0 auto;
    border-left: none;
    border-bottom: 2px solid #ff6a00 !important;
    padding: 34px 0;
  }
  .section-feature .list-features .item .tit {
    white-space: normal;
    font-size: 20px;
  }

  .box-white-product {
    padding: 20px;
  }

  .title-section {
    margin: 0 0;
    font-size: 22px;
    padding-left: 40px;
  }
  .title-section:before {
    width: 30px;
  }

  .list-products {
    margin: 0 -7px;
    justify-content: flex-start;
  }
  .list-products li {
    width: 33.3333%;
    min-width: 33.3333%;
    max-width: 33.3333%;
    padding: 0 7px;
    margin: 7px 0;
  }

  .section-photo .list-photo {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-left: -7px;
    margin-right: -7px;
  }
  .section-photo .list-photo li {
    width: 33.3333%;
    min-width: 33.3333%;
    max-width: 33.3333%;
    padding: 0 7px;
    margin: 7px 0;
  }
}
@media only screen and (max-width: 580px) {
  .list-products li {
    width: 50%;
    min-width: 50%;
    max-width: 50%;
  }

  .section-photo .list-photo li {
    width: 50%;
    min-width: 50%;
    max-width: 50%;
  }
}
@media only screen and (max-width: 767px) {
  .box-border {
    padding: 20px 20px;
  }

  .section-contact-from .wrapper {
    padding: 15px;
  }
  .section-contact-from .desc-large {
    text-align: left;
  }
  .section-contact-from .box-contact-form {
    margin: 27px 0 0;
  }

  .box-contact-form {
    width: 100%;
    margin: 0;
  }
  .box-contact-form .btn-submit {
    margin: 20px auto;
    max-width: 100%;
  }
  .box-contact-form .table-contact-form {
    display: block;
    width: auto;
  }
  .box-contact-form .table-contact-form th, .box-contact-form .table-contact-form td {
    padding: 5px 0;
  }
  .box-contact-form .table-contact-form th.vertical-center {
    padding: 5px 0;
  }
  .box-contact-form .table-contact-form th, .box-contact-form .table-contact-form tr, .box-contact-form .table-contact-form tbody, .box-contact-form .table-contact-form thead, .box-contact-form .table-contact-form td {
    display: block;
    width: auto;
  }

  .input,
  .textarea {
    width: 100%;
  }
}
@media print, (min-width: 768px) {
  .list-photo li a {
    filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
    opacity: 1;
    -moz-transition: opacity 0.26s ease;
    -o-transition: opacity 0.26s ease;
    -webkit-transition: opacity 0.26s ease;
    transition: opacity 0.26s ease;
  }
  .list-photo li a:hover {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=65);
    opacity: 0.65;
  }

  .aside-bar a {
    filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
    opacity: 1;
    -moz-transition: opacity 0.26s ease;
    -o-transition: opacity 0.26s ease;
    -webkit-transition: opacity 0.26s ease;
    transition: opacity 0.26s ease;
  }
  .aside-bar a:hover {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=65);
    opacity: 0.65;
  }
}
@media only screen and (max-width: 374px) {
  .list-products li {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
  }

  .section-photo .list-photo li {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
  }
}
.section-keyvisual {
  background-image: url(../img/product/bg_keyvisual.png);
  background-repeat: repeat-x;
  background-size: auto 100%;
}
.section-keyvisual .wrapper {
  position: relative;
}
.section-keyvisual .title-keyvisual {
  color: #ffffff;
  position: absolute;
  left: 0;
  top: 37px;
}
.section-keyvisual .title-keyvisual .jp {
  font-size: 36px;
  display: block;
}
.section-keyvisual .title-keyvisual .en {
  font-size: 30px;
  display: block;
  margin-top: -5px;
  letter-spacing: 0.03em;
}

.tabs {
  margin: 0 0 18px;
  padding: 0;
  display: flex;
}
.tabs li {
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  border-right: 1px solid #565656;
  padding: 6px 24px 6px 80px;
  background-position: 36px center;
  background-repeat: no-repeat;
}
.tabs li:first-child {
  padding-left: 48px;
  background-position: 10px center;
}
.tabs li.icon-tab-01 {
  background-image: url(../img/product/icon_list01.png);
}
.tabs li.icon-tab-02 {
  background-image: url(../img/product/icon_list02.png);
}
.tabs li.icon-tab-03 {
  background-image: url(../img/product/icon_list03.png);
}
.tabs li.icon-tab-04 {
  background-image: url(../img/product/icon_list04.png);
}

.tab-content {
  display: none;
}
.tab-content.current {
  display: inherit;
}

.section-main {
  margin-bottom: -94px;
}
.section-main .wrapper {
  padding-left: 0;
  padding-right: 0;
}

.sidebar {
  width: 230px;
  max-width: 230px;
  min-width: 230px;
}

.content-page {
  width: 890px;
  max-width: 890px;
  min-width: 890px;
  padding-left: 20px;
  padding-top: 17px;
}
.content-page .section-photo {
  margin-top: 35px;
  margin-bottom: 70px;
}
.content-page .title-section {
  margin-left: 0;
}
.content-page .list-photo {
  max-width: 100%;
}
.content-page .section-product {
  margin-top: -2px;
}
@media print, (min-width: 768px) {
  .content-page .section-product .list-products {
    margin-left: -32.5px;
  }
  .content-page .section-product .list-products li {
    margin-left: 32.5px;
  }
}
.content-page .section-product .box-white-product {
  margin-left: 0;
  margin-right: 0;
  padding-top: 24px;
  padding-bottom: 15px;
}

.breadcrumb li {
  display: inline;
  padding-right: 5px;
}
.breadcrumb li a {
  padding-right: 12px;
  background-image: url(../img/common/icon_arrow_black.png);
  background-repeat: no-repeat;
  background-position: right center;
  letter-spacing: -0.2em;
}

@media only screen and (max-width: 767px) {
  .breadcrumb {
    padding: 0 15px;
  }
}
.sidebar {
  margin-top: -63px;
}
.sidebar .img-sidebar-01 {
  margin-top: 18px;
  display: block;
}
.sidebar .img-sidebar-02 {
  margin-top: 28px;
  display: block;
}
.sidebar .title-menu-bar {
  color: #ff6a00;
  background-color: #ffffff;
  font-size: 16px;
  padding: 14px 0 14px 47px;
  background-image: url(../img/product/icon_menu.png);
  background-repeat: no-repeat;
  background-position: 20px center;
  border-bottom: 1px solid #ff6a00;
}

@media print, (min-width: 768px) {
  .sidebar-menu a {
    filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
    opacity: 1;
    -moz-transition: opacity 0.26s ease;
    -o-transition: opacity 0.26s ease;
    -webkit-transition: opacity 0.26s ease;
    transition: opacity 0.26s ease;
  }
  .sidebar-menu a:hover {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=65);
    opacity: 0.65;
  }
}
.sidebar-menu {
  background-color: #ffffff;
}
.sidebar-menu li:hover .sub-menu {
  height: auto;
}
.sidebar-menu li:hover .sub-menu.hide {
  height: auto;
}
.sidebar-menu li a {
  font-size: 14px;
  font-weight: 500;
  display: block;
  color: #ff6a00;
  border-bottom: 1px solid #ff6a00;
  padding: 15px 12px 15px 52px;
  background-position: 5px center;
  background-repeat: no-repeat;
}
.sidebar-menu li a.icon-01 {
  background-image: url(../img/product/icon_01.png);
}
.sidebar-menu li a.icon-02 {
  background-image: url(../img/product/icon_02.png);
}
.sidebar-menu li a.icon-03 {
  background-image: url(../img/product/icon_03.png);
}
.sidebar-menu li a.icon-04 {
  background-image: url(../img/product/icon_04.png);
}
.sidebar-menu li a.icon-05 {
  background-image: url(../img/product/icon_05.png);
}
.sidebar-menu li a.icon-06 {
  background-image: url(../img/product/icon_06.png);
}
.sidebar-menu li a.icon-07 {
  background-image: url(../img/product/icon_07.png);
}
.sidebar-menu li a.icon-08 {
  background-image: url(../img/product/icon_08.png);
}
.sidebar-menu li a.icon-09 {
  background-image: url(../img/product/icon_09.png);
}
.sidebar-menu li a.icon-10 {
  background-image: url(../img/product/icon_10.png);
}
.sidebar-menu li a.icon-11 {
  background-image: url(../img/product/icon_11.png);
}
.sidebar-menu li a.icon-12 {
  background-image: url(../img/product/icon_12.png);
}
.sidebar-menu li a.icon-13 {
  background-image: url(../img/product/icon_13.png);
}
.sidebar-menu li a.icon-14 {
  background-image: url(../img/product/icon_14.png);
}
.sidebar-menu li a.icon-15 {
  background-image: url(../img/product/icon_15.png);
}
.sidebar-menu li a.icon-16 {
  background-image: url(../img/product/icon_16.png);
}
.sidebar-menu li a.icon-17 {
  background-image: url(../img/product/icon_17.png);
}
.sidebar-menu li a.icon-18 {
  background-image: url(../img/product/icon_18.png);
}
.sidebar-menu li a.icon-19 {
  background-image: url(../img/product/icon_19.png);
}
.sidebar-menu li a.icon-noimage {
  background-image: url(../img/product/icon_noimage.png);
}
.sidebar-menu li .sub-menu {
  overflow: hidden;
}
@media print, (min-width: 768px) {
  .sidebar-menu li .sub-menu.hide {
    height: 0;
  }
}
.sidebar-menu li .sub-menu li a {
  color: #313131;
  padding-left: 76px;
  background-position: 24px center;
}

.section-main .wrapper {
  align-items: flex-start;
  justify-content: space-between;
  padding-left: 0;
  padding-right: 0;
}

.section-category.has-keyword {
  max-width: 870px;
  margin-top: 50px;
}
.section-category.has-keyword .list-cat {
  width: 100%;
  min-width: 100%;
}
.section-category.has-keyword .list-cat li a {
  text-align: center;
}
.section-category.has-keyword .list-cat li a .text {
  display: block;
  min-width: 100%;
  padding-left: 0;
}
.section-category.has-keyword .title {
  width: 240px;
  min-width: 240px;
  padding: 0 20px;
}
.section-category.has-keyword .title .jp {
  font-size: 16px;
  display: block;
}
.section-category.has-keyword .title .en {
  font-size: 14px;
  display: block;
}
.section-category.has-keyword .list-cat li {
  width: 130px;
  min-width: 130px;
  max-width: 130px;
  margin: 0 10px;
  text-align: center;
}
.section-category.has-keyword .wrapper {
  max-width: 870px;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
}

@media only screen and (max-width: 767px) {
  .section-keyvisual .wrapper {
    padding-left: 0;
    padding-right: 0;
  }
  .section-keyvisual .title-keyvisual .jp {
    font-size: 20px;
  }
  .section-keyvisual .title-keyvisual .en {
    font-size: 18px;
  }

  .sidebar-menu li {
    position: relative;
  }
  .sidebar-menu li .sub-menu {
    display: none;
  }
  .sidebar-menu li .open-sub-menu {
    position: absolute;
    width: 40px;
    height: 49px;
    right: 0;
    bottom: 0;
    top: 0;
    margin: 0;
    z-index: 9;
  }
  .sidebar-menu li .open-sub-menu.active:after {
    display: none;
  }
  .sidebar-menu li .open-sub-menu:before, .sidebar-menu li .open-sub-menu:after {
    content: " ";
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    position: absolute;
    background-color: #ff6a00;
  }
  .sidebar-menu li .open-sub-menu:before {
    width: 15px;
    height: 2px;
  }
  .sidebar-menu li .open-sub-menu:after {
    width: 2px;
    height: 15px;
  }

  .sidebar {
    margin-top: 0;
    width: 100%;
    max-width: 100%;
    min-width: 100%;
    padding-bottom: 30px;
  }
  .sidebar .group-banner {
    display: flex;
    align-items: flex-end;
    margin-top: 30px;
  }
  .sidebar .img-sidebar-01,
  .sidebar .img-sidebar-02 {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 50%;
    width: 50%;
    margin-top: 0;
  }

  .section-keyvisual .wrapper .title-keyvisual {
    top: 0;
    bottom: 0;
    height: 100%;
    padding: 15px 15px;
  }

  .content-page {
    width: 100%;
    max-width: 100%;
    min-width: 100%;
    padding: 15px 0;
  }

  .tabs {
    flex-wrap: wrap;
  }
  .tabs li {
    width: 100%;
    min-width: 100%;
    padding-left: 48px;
    border: none;
    background-position: 10px center;
    border-bottom: 1px solid #ff6a00;
  }
  .tabs li:first-child {
    border-top: 1px solid #ff6a00;
  }

  .section-category.has-keyword .wrapper {
    padding-left: 15px;
    padding-right: 15px;
  }
  .section-category.has-keyword .title {
    padding-left: 1%;
    padding-right: 1%;
  }
  .section-category.has-keyword .list-cat {
    margin-top: 10px;
  }
  .section-category.has-keyword .list-cat li {
    width: 48%;
    min-width: 48%;
    max-width: 48%;
    margin: 5px 0;
  }
}
.product-clothes .section-main {
  margin-bottom: -122px;
}
.product-clothes .content-page .section-product .box-white-product {
  padding-top: 21px;
  padding-bottom: 0;
}

@media only screen and (max-width: 767px) {
  .content-page .section-photo {
    padding: 0 15px;
  }
  .content-page .section-photo .list-photo {
    margin-top: 5px;
  }

  .product-clothes .content-page .section-product .box-white-product {
    padding-bottom: 20px;
  }
}
.product-uniform .section-main {
  margin-top: 25px;
}
.product-uniform .content-page {
  padding-top: 0;
}

.detail-product {
  background-color: #ffffff;
  padding: 20px;
  margin-top: 22px;
}
.detail-product .top-info .left {
  width: 412px;
  min-width: 412px;
  max-width: 412px;
  display: flex;
}
.detail-product .top-info .right {
  width: 417px;
  min-width: 417px;
  max-width: 417px;
  padding: 19px 32px 10px 38px;
}
.detail-product .top-info .title-product {
  font-size: 18px;
}
.detail-product .top-info .desc {
  margin-top: 16px;
}
.detail-product .top-info .btn-to-inquiry {
  margin-top: 124px;
}
.detail-product .top-info .box-thumbnails {
  width: 86px;
  min-width: 86px;
  padding-right: 18px;
}
.detail-product .top-info .slider-main {
  width: 328px;
}
.detail-product .top-info .slick-vertical .slick-slide {
  outline: none;
  margin-bottom: 14px;
}
.detail-product .top-info .slick-vertical .slick-slide:focus {
  outline: none;
}
.detail-product .top-info .slider-nav .item img {
  border: 1px solid #d2d2d2;
  display: inline-block;
  vertical-align: middle;
}
.detail-product .top-info .slider-nav .item:hover img {
  border: 1px solid #ff6b00;
  webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
}
.detail-product .detail {
  border-top: 1px solid #d2d2d2;
  margin-top: 69px;
  padding: 40px 20px 73px;
}
.detail-product .detail .cap {
  margin: 20px 0;  
  font-size: 16px;
}
.detail-product .price {
  margin: 20px 0;  
  font-size: 16px;
  color: #F00;
  font-weight: bold;
}


@media only screen and (max-width: 767px) {
  .detail-product {
    padding: 20px 15px;
  }
  .detail-product .detail {
    padding-left: 0;
    padding-right: 0;
  }
  .detail-product .top-info .slider-main {
    width: calc(100% - 70px);
    max-width: 328px;
  }
  .detail-product .top-info .box-thumbnails {
    width: 70px;
    min-width: 70px;
  }
  .detail-product .top-info .left {
    width: 100%;
    min-width: 100%;
  }
  .detail-product .top-info .right {
    padding-left: 0;
    padding-right: 0;
    width: 100%;
    min-width: 100%;
  }
  .detail-product .top-info .right .btn-to-inquiry {
    margin: 50px auto 0;
    max-width: 100%;
    background-size: 100% 152px;
  }
}
.section-keyvisual.inquiry {
  background-image: url(../img/info/bg_inquiry.png);
}

.single-breadcrumb {
  margin-top: 24px;
  padding-left: 0;
  padding-right: 0;
}

.info-inquiry .section-contact-from {
  margin-top: 22px;
}
.info-inquiry .section-contact-from .wrapper {
  padding: 36px 50px;
}

.section-contact-from .box-contact-form.form-inquiry {
  margin: 22px 0 0;
  padding: 20px 53px 20px;
  width: 921px;
}
.section-contact-from .box-contact-form.form-inquiry .table-contact-form {
  margin-left: 17px;
  margin-top: 50px;
}
.section-contact-from .box-contact-form.form-inquiry .table-contact-form .box-info {
  margin-top: 20px;
}
.section-contact-from .btn-send {
  margin: 40px 312px;
}
.section-contact-from .btn-faq {
  margin-top: 35px;
  margin-left: auto;
  margin-right: auto;
}
.section-contact-from .title-inquiry {
  font-size: 28px;
  color: #ff6a00;
  font-weight: 500;
}
.section-contact-from .desc-inquiry {
  font-size: 18px;
  font-weight: 500;
  color: #313131;
  margin-top: 16px;
}
.section-contact-from .box-contact-info {
  border-top: 1px solid #ff6a00;
  border-bottom: 1px solid #ff6a00;
  padding: 50px 52px;
  margin-top: 44px;
}
.section-contact-from .box-info {
  background-position: left top;
  background-repeat: no-repeat;
  min-height: 70px;
}
.section-contact-from .box-info.icon-call {
  padding-left: 120px;
  padding-right: 54px;
  background-image: url(../img/info/icon_call.png);
}
.section-contact-from .box-info.icon-mobile {
  padding-left: 80px;
  background-image: url(../img/info/icon_mobile.png);
}
.section-contact-from .box-info.icon-monitor {
  padding-left: 120px;
  background-position: left 5px;
  background-image: url(../img/info/icon_monitor.png);
  padding-bottom: 15px;
}
.section-contact-from .box-info.icon-monitor .desc-info {
  margin-top: 15px;
}
.section-contact-from .box-info .tit {
  font-size: 18px;
  font-weight: 500;
  color: #ff6a00;
}
.section-contact-from .box-info .phone-number {
  font-size: 28px;
  font-weight: 500;
  color: #323232;
  margin-top: 10px;
  display: block;
  letter-spacing: 0.2em;
}
.section-contact-from .box-info .desc-info {
  font-size: 14px;
  margin-top: 6px;
}

.btn-common {
  display: block;
  width: 288px;
  background-repeat: no-repeat;
  background-image: url(../img/info/btn_faq.png);
  background-size: 100% auto;
  height: 63px;
  background-position: left top;
}
.btn-common.type-02 {
  background-image: url(../img/info/btn_faq_02.png);
  height: 76px;
  width: 349px;
  text-align: center;
}
.btn-common.type-02 img {
  width: auto;
}
.btn-common:hover {
  background-position: left bottom;
}

@media only screen and (max-width: 767px) {
  .single-breadcrumb {
    padding-left: 15px;
    padding-right: 15px;
  }

  .info-inquiry .section-contact-from .phone-number {
    font-size: 22px;
  }
  .info-inquiry .section-contact-from .box-info.icon-call,
  .info-inquiry .section-contact-from .icon-mobile {
    padding-left: 90px;
    padding-bottom: 20px;
    padding-right: 0;
  }
  .info-inquiry .section-contact-from .icon-monitor {
    padding-left: 90px;
  }
  .info-inquiry .section-contact-from .wrapper {
    padding-left: 15px;
    padding-right: 15px;
  }

  .section-contact-from .box-contact-info {
    padding: 50px 0;
  }
  .section-contact-from .box-contact-form.form-inquiry {
    padding: 20px 0;
    width: auto;
  }
  .section-contact-from .box-contact-form.form-inquiry .table-contact-form {
    margin-left: 0;
    margin-top: 10px;
  }
  .section-contact-from .btn-send {
    margin: 40px auto;
  }
}
.faq .section-main {
  margin-top: 25px;
}
.faq .content-page {
  padding-top: 0;
}
.faq footer {
  margin-top: 149px;
}

.title-faq {
  font-size: 18px;
  font-weight: 500;
  position: relative;
  padding: 3px 0;
}
.title-faq:before {
  position: absolute;
  left: -20px;
  top: 0;
  width: 9px;
  height: 32px;
  background-color: #ff6a00;
  content: " ";
}

.desc-faq {
  font-size: 14px;
  font-weight: 500;
}

.lead-text {
  border-bottom: 1px solid #d2d2d2;
  padding: 26px 0 36px;
}

.section-faq {
  padding: 18px 0 25px;
}
.section-faq .title-section-faq {
  font-size: 18px;
  color: #ff6a00;
}

.block-faq {
  font-size: 14px;
  font-weight: 500;
  margin-top: 28px;
}
.block-faq .link {
  text-decoration: underline;
  color: #0067da;
}
.block-faq .title-question,
.block-faq .answer {
  background-repeat: no-repeat;
  background-position: left top;
  padding: 10px 0 10px 50px;
}
.block-faq .title-question {
  background-image: url(../img/faq/text_question.png);
  margin-top: 20px;
}
.block-faq .answer {
  background-image: url(../img/faq/text_answer.png);
  margin-top: 20px;
}

.foo-faq-contact {
  padding: 36px 44px 66px;
  border-top: 1px solid #d2d2d2;
  margin-top: 59px;
}
.foo-faq-contact .btn-common {
  margin: 35px auto 0;
}

@media only screen and (max-width: 767px) {
  .foo-faq-contact {
    padding-left: 0;
    padding-right: 0;
  }
  .foo-faq-contact .btn-common {
    max-width: 100%;
    background-size: 100% 152px;
  }
}
@media print, (min-width: 768px) {
  .strength .sidebar {
    margin-top: -26px;
  }
}
.strength .desc-large {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
}

.lead-strength {
  padding: 47px 0;
}
.lead-strength .left-logo {
  padding-right: 24px;
}
.lead-strength .text-logo {
  align-items: flex-end;
  justify-content: center;
  padding-right: 40px;
}
.lead-strength .text-logo .right-text {
  font-size: 48px;
  font-weight: 500;
}
.lead-strength .img-text-01 {
  margin-top: 33px;
}
.lead-strength .desc-large {
  margin-top: 32px;
  font-size: 16px;
  line-height: 1.5;
}

.section-strength {
  margin-top: -3px;
}
.section-strength .title {
  font-size: 24px;
  font-weight: 500;
  border-bottom: 2px solid #ff6b00;
  color: #ff6b00;
  padding: 12px 15px;
}
.section-strength .title .text {
  padding-bottom: 8px;
  position: relative;
  top: -2px;
}
.section-strength .title .number {
  font-size: 48px;
  padding-right: 20px;
  line-height: 1;
}
.section-strength .content {
  padding: 43px 20px;
}
.section-strength .content .item {
  align-items: center;
}
.section-strength .content .item .desc-large {
  padding-left: 10px;
}
.section-strength .content .img-text-01 {
  margin-top: 38px;
  margin-bottom: 80px;
}
.section-strength .content .img-text-03 {
  margin-top: 57px;
  margin-bottom: 8px;
}
.section-strength .btn-common {
  margin: 97px 0 60px 237px;
}

@media only screen and (max-width: 767px) {
  .lead-strength .left-logo {
    padding-right: 0;
    width: 278px;
    margin: 0 auto;
  }
  .lead-strength .text-logo {
    padding: 0;
  }
  .lead-strength .text-logo .right-text {
    font-size: 35px;
    text-align: center;
  }

  .section-strength .title {
    padding-left: 0;
    padding-right: 0;
  }
  .section-strength .content {
    padding: 30px 0;
  }
  .section-strength .content .item .left {
    width: 125px;
    margin: 0 auto;
  }
  .section-strength .content .item .right {
    margin-top: 30px;
  }
  .section-strength .content .img-text-03 {
    margin-top: 30px;
  }
  .section-strength .content .img-text-01 {
    margin-top: 20px;
    margin-bottom: 30px;
  }
  .section-strength .btn-common {
    margin: 30px auto;
    max-width: 100%;
    background-size: 100% 152px;
  }
}
.info-flow footer {
  margin-top: 129px;
}

.section-flow {
  margin-top: 22px;
}
.section-flow .wrapper {
  padding: 36px 50px 20px;
}
.section-flow .title-flow {
  color: #ff6a00;
  font-weight: 500;
  font-size: 28px;
}
.section-flow .desc-large {
  font-size: 18px;
  color: #313131;
  margin-top: 14px;
}
.section-flow .list-flow {
  justify-content: center;
  margin: 59px -18px 0;
}
.section-flow .list-flow li {
  border-radius: 5px;
  background-color: #ffd2b1;
  text-align: center;
  width: 114px;
  min-width: 114px;
  max-width: 114px;
  margin: 0 18px;
  padding: 10px 10px 18px;
  position: relative;
}
.section-flow .list-flow li:last-child:before {
  display: none;
}
@media print, (min-width: 768px) {
  .section-flow .list-flow li:before {
    content: " ";
    position: absolute;
    right: -27px;
    top: 0;
    bottom: 0;
    width: 0;
    height: 0;
    border-left: 18px solid #ff6a00;
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
    margin: auto 0;
  }
}
.section-flow .list-flow li .text-step {
  margin-top: -25px;
  display: inline-block;
  position: relative;
  top: -20px;
}
.section-flow .list-flow li .wrap-text {
  min-height: 115px;
}
.section-flow .list-flow li .text {
  color: #313131;
  margin-top: 6px;
  font-size: 20px;
  line-height: 1;
  writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  margin: 0 auto;
  display: inline-block;
  width: 18px;
}
.section-flow .list-flow li .icon {
  margin-top: 28px;
}

.list-step {
  margin-top: 44px;
  padding: 0 46px;
  border-top: 1px solid #ff6a00;
}
.list-step .btn-common {
  margin: 38px auto;
  display: block;
}
.list-step .item {
  padding: 20px 0;
  margin-top: 23px;
  position: relative;
  margin-bottom: 59px;
}
.list-step .item:first-child {
  margin-bottom: -11px;
}
.list-step .item:first-child:before {
  bottom: 1px;
}
.list-step .item:last-child:before {
  display: none;
}
.list-step .item:before {
  position: absolute;
  content: " ";
  left: 0;
  right: 0;
  bottom: -32px;
  width: 64px;
  height: 17px;
  background-image: url(../img/flow/icon_three_triangle.png);
  margin: 0 auto;
}
.list-step .row .left {
  padding-right: 48px;
  padding-top: 4px;
}
.list-step .title-step {
  font-size: 18px;
  color: #ff6a00;
  font-weight: 500;
}
.list-step .desc {
  font-size: 14px;
  font-weight: 500;
  margin-top: 13px;
}
.list-step .list-img {
  margin-top: 34px;
}
.list-step .list-img li {
  margin-right: 45px;
}

@media only screen and (max-width: 767px) {
  .section-flow .wrapper {
    padding-left: 15px;
    padding-right: 15px;
  }
  .section-flow .list-flow {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 30px;
  }
  .section-flow .list-flow li {
    margin: 30px 9px;
  }
  .section-flow .list-flow li .icon {
    max-width: 78px;
    display: inline-block;
  }

  .list-step {
    padding: 0 0;
  }
  .list-step .btn-common {
    margin: 30px auto;
    max-width: 100%;
    background-size: 100% 152px;
  }
  .list-step .row .left {
    max-width: 78px;
    margin: 0 auto;
    padding: 0;
  }
  .list-step .row .right {
    margin-top: 20px;
  }
  .list-step .list-img {
    display: flex;
    flex-wrap: wrap;
    margin-left: -10px;
    margin-right: -10px;
  }
  .list-step .list-img li {
    min-width: 156px;
    margin: 10px;
  }
}

/*# sourceMappingURL=style.css.map */
