/* CSS Document */
* {
  box-sizing: border-box;
}
*::after, *::before {
  box-sizing: border-box;
}

body {
  margin: 0;
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol {
  margin: 0;
  padding: 0;
}

img {
  height: auto;
  max-width: 100%;
  vertical-align: bottom;
}

button {
  background-color: inherit;
  border: none;
  padding: 0;
}

iframe {
  border: none;
  width: 100%;
}

figure {
  margin: 0;
}

* {
  word-wrap: break-word;
}

input {
  -webkit-appearance: none;
}
input[type=submit], input[type=button] {
  -webkit-appearance: button;
  appearance: button;
  border: none;
  border-radius: 0;
  -webkit-box-sizing: content-box;
  box-sizing: border-box;
  cursor: pointer;
}
input[type=submit]::-webkit-search-decoration, input[type=button]::-webkit-search-decoration {
  display: none;
}
input[type=submit]:focus, input[type=button]:focus {
  outline-offset: -2px;
}

select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  outline: none;
}

button {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  outline: none;
  padding: 0;
}

input[type=submit] {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  outline: none;
  padding: 0;
}
input[type=radio] {
  display: none;
}
input[type=radio]:checked + label {
  background: #ff0000;
}

/* CSS Document */
html {
  color: #444;
}

body {
  overflow-x: hidden;
}

@media screen and (min-width: 768px) {
  .wrapper {
    margin: 0 auto;
    max-width: 1120px;
  }
}

.timerHidden {
  display: none !important;
}

.timerVisible {
  display: block !important;
}

/* header */
.header {
  align-items: center;
  background: #fff;
  border-bottom: solid 1px #ccc;
  display: flex;
  height: 50px;
  justify-content: space-between;
  line-height: 1;
  padding: 10px 12px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 11;
}
@media screen and (min-width: 769px) {
  .header {
    height: 70px;
    padding: 10px 30px;
    top: 0;
    transition: top 0.3s ease;
  }
}
.header .logo {
  max-width: 90px;
}
@media screen and (min-width: 769px) {
  .header .logo {
    max-width: 150px;
  }
}
@media screen and (min-width: 769px) {
  .header svg {
    cursor: pointer;
    height: 40px;
    transition: all 0.3s ease;
    width: 40px;
  }
  .header svg:hover {
    background: #e5e5e5;
    border-radius: 50%;
    fill: #444;
  }
}

.header_right {
  align-items: center;
  display: flex;
}
@media screen and (min-width: 769px) {
  .header_right {
    order: 3;
  }
  .header_right .js-nav-open {
    display: none;
  }
}
.header_right form {
  position: relative;
}
.header_right form svg {
  display: none;
  fill: #ccc;
  height: 20px;
  margin-top: -10px;
  position: absolute;
  right: 0;
  top: 50%;
  width: 20px;
}
@media screen and (min-width: 769px) {
  .header_right form svg {
    height: 24px;
    margin-top: -12px;
    width: 24px;
  }
}
.header_right form input {
  border: solid 0 #ccc;
  border-radius: 3px;
  font-size: 16px;
  outline: none;
  padding: 5px 2em 5px 5px;
  transition: padding 0.5s ease, width 0.5s ease, border-width 0.3s ease;
  visibility: hidden;
  width: 0;
}
.header_right form input:focus {
  border-color: #f39800;
}
@media screen and (min-width: 769px) {
  .header_right form input {
    padding: 10px 2em 10px 10px;
  }
}
.header_right form.open svg {
  display: block;
}
.header_right form.open input {
  border-width: 1px;
  visibility: visible;
  width: 140px;
}
@media screen and (min-width: 769px) {
  .header_right form.open input {
    width: 300px;
  }
}
.header_right svg {
  margin: 0 4px;
}

.fixed_adjust {
  padding-top: 50px;
}
body.home .fixed_adjust {
  padding-top: 0;
}
@media screen and (min-width: 769px) {
  .fixed_adjust {
    padding-top: 70px;
  }
}

@media screen and (min-width: 768px) {
  .cat_index_wrapper {
    margin: 0 auto;
    max-width: 910px;
  }
}

@media screen and (min-width: 768px) {
  .mv {
    margin: 0 auto;
    text-align: center;
  }
}
.mv video {
  height: auto;
  max-width: 100%;
}

.responsive_frame_wrapper {
  height: 0;
  padding-top: 56.25%;
  position: relative;
  top: 0;
  width: 100%;
}
.responsive_frame_wrapper video,
.responsive_frame_wrapper iframe {
  bottom: 0;
  height: 100%;
  position: absolute;
  right: 0;
  width: 100%;
}

.mainvisual {
  position: relative;
}
.mainvisual .responsive_frame_wrapper {
  background-image: url(/images/movie_sp_thumb.jpg);
  background-size: cover;
  padding-top: 150%;
  position: absolute;
}
@media screen and (min-width: 768px) {
  .mainvisual .responsive_frame_wrapper {
    background-image: url(/images/movie_pc_thumb.jpg);
    padding-top: 56.25%;
    position: sticky;
  }
}
.mainvisual::after {
  background: url("/images/movie_bottom_gd.png");
  background-size: auto 150px;
  bottom: 0;
  content: "";
  height: 150px;
  position: absolute;
  width: 100%;
  z-index: 2;
}

.header_nav {
  background: #fff;
  height: 100vh;
  position: fixed;
  right: -100%;
  top: 0;
  transition: all 0.5s ease;
  width: 80%;
  z-index: 600;
}
@media screen and (min-width: 769px) {
  .header_nav {
    display: flex;
    height: auto;
    position: static;
    width: auto;
  }
  .header_nav > ul {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
  }
}
.header_nav.open {
  right: 0;
}
.header_nav .nav_acd_btn {
  height: 36px;
  padding: 8px;
  position: absolute;
  right: 10px;
  top: 10px;
  width: 36px;
  z-index: 3;
}
@media screen and (min-width: 768px) {
  .header_nav .nav_acd_btn {
    display: none;
  }
}
.header_nav .nav_acd_btn.active {
  background: #eee;
  border-radius: 50%;
}
.header_nav li {
  position: relative;
}
@media screen and (min-width: 768px) {
  .header_nav li:hover .child_list {
    display: block;
    padding: 15px 15px;
    position: absolute;
    top: 54px;
    z-index: 600;
  }
}
.header_nav li a {
  border-bottom: solid 1px #ccc;
  color: #444;
  display: flex;
  font-size: 14px;
  height: auto;
  padding: 20px;
  white-space: nowrap;
}
@media screen and (min-width: 769px) {
  .header_nav li a {
    border: none;
    display: inline-block;
    position: relative;
    transition: color 0.3s;
  }
  .header_nav li a:hover {
    color: #f39800;
  }
  .header_nav li a::after {
    background-color: #f39800;
    bottom: 0;
    content: "";
    height: 2px;
    left: 50%;
    position: absolute;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    transition: 0.3s;
    width: 0;
  }
}
@media screen and (min-width: 769px) and (min-width: 1024px) {
  .header_nav li a {
    padding: 20px 10px;
  }
}
@media screen and (min-width: 769px) {
  .header_nav li a:hover::after {
    width: 100%;
  }
}
.header_nav li .child_list {
  background: #f5f5f5;
  display: none;
}
.header_nav li .child_list.open {
  display: block;
}

/* header END */
.vp {
  margin-bottom: 20px;
  margin-top: 20px;
}

.ub {
  border-bottom: solid 1px #ccc;
}
.ub > :last-child {
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .ub > :last-child {
    margin-bottom: 40px;
  }
}

.wrapper {
  padding: 0 24px;
}

.overlay {
  background: rgba(0, 0, 0, 0);
  display: none;
  height: 100%;
  left: 0;
  -webkit-overflow-scrolling: touch;
  overflow-y: scroll;
  position: fixed;
  top: 0;
  transition: background-color 0.225s;
  width: 100%;
  z-index: 200;
}
.overlay.open {
  background: rgba(0, 0, 0, 0.5);
  display: block;
}

.bg_grey {
  background: #e6ebee;
  padding: 20px 0;
}

.bg_light_orange {
  background: #fff6e9;
  padding: 20px 0;
}

.js-modal {
  background: #fff;
  display: none;
  height: 90%;
  left: 5%;
  overflow: auto;
  padding: 20px;
  position: fixed;
  top: 5%;
  width: 90%;
  z-index: 800;
}
.js-modal.open {
  display: block;
}

.fixed_top {
  background: #fff;
  font-size: 10px;
  height: 50px;
  left: 0;
  position: fixed;
  top: -50px;
  transition: top 0.3s ease;
  width: 100%;
  z-index: 8;
}
@media screen and (min-width: 768px) {
  .fixed_top {
    font-size: 15px;
    height: 70px;
    top: -70px;
  }
}
.fixed_top.open {
  top: 0;
}
.fixed_top .row {
  justify-content: space-between;
}
.fixed_top .ft_item_price {
  padding: 10px 6px;
}
@media screen and (min-width: 768px) {
  .fixed_top .ft_item_price {
    padding: 12px;
  }
}
.fixed_top .ft_item_price span {
  display: block;
  margin-bottom: 8px;
}
@media screen and (min-width: 768px) {
  .fixed_top .ft_item_price span {
    margin-bottom: 8px;
    transform: scale(1);
  }
}
.fixed_top a {
  align-items: center;
  background: #000;
  color: #fff;
  display: flex;
  height: 30px;
  margin: 10px 7px 0 auto;
  padding: 0 10px;
  text-align: center;
  width: 146px;
}
@media screen and (min-width: 768px) {
  .fixed_top a {
    height: 50px;
    margin: 10px 10px 0 auto;
    padding: 0 28px;
    width: auto;
  }
}

.fixed_bottom {
  background-color: #f39800;
  bottom: -40px;
  font-size: 10px;
  height: 40px;
  left: 0;
  position: fixed;
  transition: bottom 0.3s ease;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .fixed_bottom {
    bottom: -70px;
    height: 70px;
  }
}
.fixed_bottom.open {
  bottom: 0;
}
.fixed_bottom .col {
  flex-basis: 50%;
}
.fixed_bottom .col a {
  align-items: center;
  border-top: solid 2px #fff;
  color: #444;
  display: flex;
  height: 40px;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .fixed_bottom .col a {
    font-size: 15px;
    height: 70px;
  }
}
.fixed_bottom .col a.current {
  border-color: #444;
}

.row {
  display: flex;
}

/* FOOTER */
.footer_nav {
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .footer_nav {
    display: flex;
    justify-content: space-between;
    padding: 60px 0;
  }
}

@media screen and (min-width: 768px) {
  .footer_nav_col {
    flex-basis: 15%;
  }
  .footer_nav_col:nth-child(1) {
    flex-basis: 10%;
  }
  .footer_nav_col:nth-child(2) {
    flex-basis: 20%;
  }
}
.footer_nav_col h3 {
  border-bottom: solid 1px #f39800;
  color: #f39800;
  font-size: 15px;
  margin-bottom: 0.8em;
  padding: 1em 0;
}
.footer_nav_col ul li a {
  color: #444;
  display: block;
  font-size: 14px;
  padding: 8px 0;
}

footer {
  padding-bottom: 70px;
}

.footer_logo {
  margin-bottom: 20px;
  max-width: 140px;
}

@media screen and (min-width: 768px) {
  .footer_bottom {
    align-items: flex-end;
    display: flex;
    justify-content: space-between;
  }
}
.copyright {
  color: #aaa;
  display: block;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .copyright {
    margin-bottom: 20px;
  }
}

.footer_company_info {
  font-size: 12px;
  line-height: 1.6;
  margin-bottom: 30px;
}
.footer_company_info span {
  display: block;
  font-size: 17px;
  margin-bottom: 1em;
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-30px, 0, 0);
    transform: translate3d(-30px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-30px, 0, 0);
    transform: translate3d(-30px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  opacity: 0;
}
.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.animated.delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}
.animated.delay-2s {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}
.animated.delay-3s {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}
.animated.delay-4s {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}
.animated.delay-5s {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
}
.animated.delay-03s {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}
.animated.delay-06s {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}
.animated.delay-09s {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
}
.animated.delay-012s {
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
}
.animated.fast {
  -webkit-animation-duration: 800ms;
  animation-duration: 800ms;
}
.animated.faster {
  -webkit-animation-duration: 500ms;
  animation-duration: 500ms;
}
.animated.slow {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}
.animated.slower {
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
}

/*
@media (print), (prefers-reduced-motion: reduce) {
  .animated {
    -webkit-animation-duration: 1ms !important;
    animation-duration: 1ms !important;
    -webkit-transition-duration: 1ms !important;
    transition-duration: 1ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
  }
}
*/
/* CSS Document */
html {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
}

.txt_center {
  text-align: center;
}

.txt_left {
  text-align: left;
}

.base_txt {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.9;
  text-align: justify;
}
@media screen and (min-width: 768px) {
  .base_txt {
    font-size: 18px;
  }
}

.small_txt {
  font-size: 12px;
  line-height: 1.75;
}

.lead {
  color: #f39800;
  font-size: 18px;
  line-height: 1.55;
  padding: 20px 0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .lead {
    font-size: 30px;
    padding: 40px 0;
  }
}

.fig {
  text-align: center;
}

.color_txt {
  color: #f39800;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.9;
  text-align: justify;
}
@media screen and (min-width: 768px) {
  .color_txt {
    font-size: 18px;
  }
}

.ul_a {
  color: #444;
  text-decoration: underline;
}
@media screen and (min-width: 768px) {
  .ul_a {
    cursor: pointer;
  }
}

/* title */
.mid_title {
  font-size: 19px;
  line-height: 1.4;
  margin: 0.8em 0 0.6em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .mid_title {
    font-size: 35px;
    line-height: 1.75;
    margin: 1.2em 0 1em;
  }
}

.lt_title {
  background-color: #fff;
  border: solid 1px #ccc;
  border-radius: 6px;
  font-size: 18px;
  margin-bottom: 10px;
  padding: 10px 0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .lt_title {
    font-size: 30px;
    margin-bottom: 30px;
    padding: 20px 0;
  }
}

.color_title {
  color: #f39800;
  font-size: 18px;
  margin-bottom: 1em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .color_title {
    font-size: 32px;
  }
}

.bg_title {
  background: #000;
  color: #f39800;
  font-size: 18px;
  margin-top: 20px;
  padding: 10px 0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .bg_title {
    flex-basis: 100%;
    font-size: 24px;
    margin-bottom: 20px;
    padding: 15px 0;
  }
}
.bg_title.nt {
  margin-top: 0;
}

.wbox_title {
  background: #fff;
  font-size: 18px;
  margin-bottom: 1em;
  padding: 9px 0;
  text-align: center;
}

.mb_1em {
  margin-bottom: 1em;
}

.lead_title {
  font-size: 24px;
  line-height: 1.4;
  margin-bottom: 0.7em;
}
@media screen and (min-width: 768px) {
  .lead_title {
    font-size: 50px;
  }
}

.cap_title {
  font-size: 20px;
  margin-bottom: 1em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .cap_title {
    font-size: 40px;
  }
}
.cap_title span {
  display: block;
  font-size: 12px;
  margin: 6px 0 0;
}
@media screen and (min-width: 768px) {
  .cap_title span {
    font-size: 16px;
    margin: 10px 0 0;
  }
}

.news_title {
  font-size: 20px;
  margin-bottom: 17px;
}
@media screen and (min-width: 768px) {
  .news_title {
    font-size: 30px;
    margin-bottom: 10px;
  }
}
.news_title span {
  color: #f39800;
  display: block;
  font-size: 12px;
  margin-bottom: 12px;
}
@media screen and (min-width: 768px) {
  .news_title span {
    font-size: 18px;
    margin-bottom: 2em;
  }
}

.white_title {
  color: #fff;
  font-size: 20px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .white_title {
    font-size: 30px;
  }
}

/* button */
.btn.glistening-btn {
  background: url(/images/btn_bg.png) top center no-repeat;
  background-size: 327px;
  color: #fff;
  display: inline-block;
  font-size: 18px;
  height: 44px;
  line-height: 1;
  padding: 11px 0;
  text-align: center;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .btn.glistening-btn {
    background-size: 600px;
    font-size: 28px;
    height: 81px;
    padding: 23px 0 0;
    width: 600px;
  }
}
.btn.glistening-btn-grey {
  background: url(/images/btn_bg_grey.png) top center no-repeat;
  background-size: 327px;
}
.btn.base_btn {
  background: #f39800;
  border-radius: 200px;
  color: #fff;
  display: inline-block;
  font-size: 12px;
  padding: 6px 20px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .btn.base_btn {
    font-size: 18px;
    padding: 16px 50px;
    transition: all 0.3s ease;
  }
  .btn.base_btn:hover {
    background: #fc8f0c;
    padding: 16px 52px;
  }
}

.header_s_btn {
  background: #f39800;
  border-radius: 100px;
  color: #fff;
  font-size: 14px;
  margin-right: 4px;
  padding: 6px 12px;
}
@media screen and (min-width: 768px) {
  .header_s_btn {
    font-size: 15px;
    padding: 8px 20px;
    transition: all 0.3s ease;
  }
  .header_s_btn:hover {
    background: #fc8f0c;
    color: #fff;
  }
}

.btnArea {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .btnArea {
    padding: 40px 0;
  }
}

/* list */
.bnr_list {
  margin: 30px 0;
}
@media screen and (min-width: 768px) {
  .bnr_list {
    display: flex;
    flex-wrap: wrap;
  }
}
.bnr_list li {
  margin-bottom: 8px;
}
@media screen and (min-width: 768px) {
  .bnr_list li {
    flex-basis: 48%;
  }
  .bnr_list li a {
    background-size: 100% !important;
    font-size: 28px !important;
    height: 64px !important;
    padding: 14px 0 0 !important;
    width: 450px !important;
  }
}

.box_list {
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .box_list {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-wrap: wrap;
  }
}
.box_list li {
  border: solid 2px #fff;
  padding: 10px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .box_list li {
    flex-basis: 50%;
    font-size: 20px;
  }
}
.box_list li:nth-child(odd) {
  background: #e6ebee;
}
.box_list li:nth-child(even) {
  background: #d3dee5;
}

.cat_nav ul {
  display: flex;
  justify-content: space-around;
  padding: 10px 0;
}
@media screen and (min-width: 768px) {
  .cat_nav ul {
    justify-content: center;
    padding: 23px 0;
  }
}
.cat_nav ul li {
  flex-basis: 23%;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .cat_nav ul li {
    flex-basis: 150px;
    margin: 0 20px;
  }
}
.cat_nav ul li img {
  width: 80%;
}
@media screen and (min-width: 768px) {
  .cat_nav ul li img {
    border: solid 5px #fff;
    border-radius: 50%;
    transition: box-shadow 0.3s ease;
  }
}
.cat_nav ul li a {
  color: #444;
}
@media screen and (min-width: 768px) {
  .cat_nav ul li a img:hover {
    box-shadow: 0 0 1px 5px #fcc229;
  }
}
.cat_nav ul li span {
  display: block;
  font-size: 10px;
}
@media screen and (min-width: 768px) {
  .cat_nav ul li span {
    font-size: 14px;
    margin: 10px 0 0;
  }
}

.news_panels .news_panel {
  display: none;
}
.news_panels .news_panel.active {
  display: block;
}
.news_panels li {
  border-bottom: solid 1px #ccc;
  display: flex;
  flex-wrap: wrap;
  line-height: 1.4;
  padding: 10px 0;
}
@media screen and (min-width: 768px) {
  .news_panels li {
    padding: 24px 10px;
  }
}
.news_panels li:first-child {
  border-top: solid 1px #ccc;
}
.news_panels time {
  color: #999999;
  font-size: 12px;
  min-width: 100px;
}
@media screen and (min-width: 768px) {
  .news_panels time {
    font-size: 16px;
    min-width: 140px;
  }
}
.news_panels .cat_label {
  color: #f39800;
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .news_panels .cat_label {
    font-size: 16px;
    min-width: 140px;
  }
}
.news_panels h3 {
  flex-basis: 100%;
  font-size: 14px;
  padding: 10px 0 0;
}
@media screen and (min-width: 768px) {
  .news_panels h3 {
    flex-basis: calc(100% - 280px);
    font-size: 16px;
    padding: 0;
  }
}
.news_panels h3 a {
  color: #444;
}
.news_panels h3 a:hover {
  text-decoration: underline;
}

.sns_list {
  display: flex;
  justify-content: center;
  padding-top: 30px;
}
.sns_list li {
  margin: 0 10px;
}
.sns_list li svg {
  height: 40px;
  width: 40px;
}
@media screen and (min-width: 768px) {
  .sns_list li svg {
    transition: all 0.3s ease;
  }
  .sns_list li svg:hover {
    transform: scale(1.2);
  }
}

.news_nav {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .news_nav {
    margin-left: 80px;
  }
}
.news_nav li {
  margin: 10px 2px;
}
@media screen and (min-width: 768px) {
  .news_nav li {
    margin: 16px 10px;
  }
}
.news_nav li a {
  border-radius: 100px;
  color: #444;
  font-size: 11px;
  padding: 4px 10px;
}
@media screen and (min-width: 768px) {
  .news_nav li a {
    cursor: pointer;
    font-size: 15px;
    padding: 10px 20px;
  }
}
.news_nav li a.current {
  background: #f39800;
  color: #fff;
}

.cat_anc_list {
  display: none;
  margin-bottom: 1em;
}
@media screen and (min-width: 768px) {
  .cat_anc_list {
    display: none;
  }
}
.cat_anc_list svg {
  height: 15px;
  width: 15px;
}
.cat_anc_list a {
  border: solid 1px #ccc;
  border-radius: 6px;
  color: #444;
  display: block;
  margin-bottom: 5px;
  padding: 6px 7px;
}
@media screen and (min-width: 768px) {
  .cat_anc_list a {
    border: none;
    margin-bottom: 0;
    padding: 2px 0;
  }
  .cat_anc_list a:hover {
    text-decoration: underline;
  }
}

.cat_item_title {
  background: #000;
  border-radius: 6px;
  color: #f39800;
  font-size: 18px;
  margin: 0 0 10px;
  padding: 11px 0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .cat_item_title {
    font-size: 25px;
    margin: 0 0 20px;
    padding: 20px 0;
  }
}

.cat_item_list {
  margin-bottom: 20px;
}
.cat_item_list img {
  transition: opacity 0.3s ease;
}
.cat_item_list a:hover img {
  opacity: 0.75;
}

.cat_item_list_title {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 10px;
}
.cat_item_list_title span {
  color: #9fa0a0;
  display: block;
  font-size: 12px;
  margin-bottom: 4px;
}
@media screen and (min-width: 768px) {
  .cat_item_list_title span {
    font-size: 16px;
  }
}

@media screen and (min-width: 768px) {
  .sec-top-search {
    padding: 60px 0;
  }
}
.top_search_nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.top_search_nav ul li {
  flex-basis: 40%;
  font-size: 13px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .top_search_nav ul li {
    flex-basis: 23%;
    font-size: 18px;
  }
}
.top_search_nav ul li .inner {
  margin: 2px;
  padding: 0 0 20px;
}
.top_search_nav ul li:nth-child(1), .top_search_nav ul li:nth-child(3) {
  border-right: solid 1px #ccc;
}
@media screen and (min-width: 768px) {
  .top_search_nav ul li:nth-child(1) .inner, .top_search_nav ul li:nth-child(3) .inner {
    border-bottom: none;
  }
}
.top_search_nav ul li .figure {
  align-items: center;
  display: flex;
  height: 60px;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .top_search_nav ul li .figure {
    height: 160px;
  }
}
.top_search_nav ul li img {
  transform: scale(0.5);
}
@media screen and (min-width: 768px) {
  .top_search_nav ul li img {
    transform: scale(1);
  }
}
.top_search_nav ul li span {
  display: block;
  text-align: center;
}
.top_search_nav ul li a {
  color: #444;
}
@media screen and (min-width: 768px) {
  .top_search_nav ul li a {
    transition: color 0.3s ease;
  }
  .top_search_nav ul li a:hover {
    color: #f39800;
  }
}

/* ill */
.sec-iso,
.sec-design {
  padding: 20px 0 30px;
}

.sec-iso {
  padding: 20px 0;
}
@media screen and (min-width: 768px) {
  .sec-iso .inner {
    margin: 40px auto;
    max-width: 400px;
    text-align: center;
  }
}
.sec-iso .color_title {
  background: #f39800;
  color: #fff;
  margin-top: 1em;
  padding: 6px 0;
}
@media screen and (min-width: 768px) {
  .sec-iso .color_title {
    font-size: 22px;
    padding: 10px 0;
  }
}

.mainvisual {
  background: #000;
  color: #fff;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .mainvisual {
    margin-bottom: 60px;
  }
}
.mainvisual .mv_logo {
  display: none;
  left: 20px;
  position: absolute;
  top: 20px;
  z-index: 3;
}
@media screen and (min-width: 768px) {
  .mainvisual .mv_logo {
    display: block;
  }
}
.mainvisual .mv_logo img {
  max-width: 150px;
}
.mainvisual h2 {
  font-family: serif;
  font-size: 24px;
  line-height: 1.3;
  margin-bottom: 1em;
  text-align: center;
  text-shadow: -2px -2px 13px rgba(0, 0, 0, 0.9), 2px 2px 13px rgba(0, 0, 0, 0.9);
}
@media screen and (min-width: 768px) {
  .mainvisual h2 {
    font-size: 60px;
  }
}
.mainvisual h2 span {
  color: #f39800;
  display: block;
  font-size: 14px;
  margin-bottom: 1em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .mainvisual h2 span {
    font-size: 30px;
  }
}
.mainvisual .mv_info {
  align-items: center;
  display: flex;
  font-family: serif;
  height: 150vw;
  justify-content: center;
  padding: 20px 0;
  position: relative;
  z-index: 3;
}
@media screen and (min-width: 768px) {
  .mainvisual .mv_info {
    display: block;
    height: auto;
  }
}
.mainvisual .mv_info .base_txt {
  letter-spacing: -0.07em;
  text-shadow: -2px 2px 5px rgba(0, 0, 0, 0.9), 2px 2px 5px rgba(0, 0, 0, 0.9);
}
@media screen and (min-width: 768px) {
  .mainvisual .mv_info .base_txt {
    letter-spacing: inherit;
    margin: 0 auto 75vh;
    max-width: 510px;
  }
}

.sec-second-lead {
  position: relative;
}
.sec-second-lead .fig {
  position: sticky;
  top: 0;
}
@media screen and (min-width: 768px) {
  .sec-second-lead .fig {
    top: 100px;
    width: 70%;
  }
}
.sec-second-lead .info {
  background: #fff;
  margin: 0 auto 60px;
  max-width: 80%;
  padding: 20px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .sec-second-lead .info {
    margin: 0 30px 10% auto;
    max-width: 65%;
    padding: 50px;
  }
}

.sec-top-content .item {
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .sec-top-content .item {
    display: flex;
    margin-bottom: 0;
  }
  .sec-top-content .item:nth-child(even) {
    flex-direction: row-reverse;
  }
  .sec-top-content .item a img {
    transition: opacity 0.3s ease;
  }
  .sec-top-content .item a:hover img {
    opacity: 0.75;
  }
}
@media screen and (min-width: 768px) {
  .sec-top-content .fig {
    flex-basis: 50%;
    margin-bottom: 0;
  }
}
.sec-top-content .info {
  display: flex;
  flex-direction: column;
  height: 110px;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .sec-top-content .info {
    flex-basis: 50%;
    height: auto;
  }
}

.sec-topic {
  background: #e1edf5;
  padding: 30px 0;
}
@media screen and (min-width: 768px) {
  .sec-topic {
    margin: 0 0 60px;
    padding: 60px 0;
  }
}
.sec-topic .topics_slider li a {
  display: block;
  padding: 20px;
}

@media screen and (min-width: 768px) {
  .sec-top-search,
.sec-second-lead,
.sec-top-content {
    margin-left: auto;
    margin-right: auto;
    max-width: 1400px;
  }
}
.sec-news {
  background: url("/images/news_bg.jpg") no-repeat fixed top center;
  background-size: auto 100%;
  padding: 10vh 0 0;
}
@media screen and (min-width: 768px) {
  .sec-news {
    background-size: cover;
    padding: 200px 0 0;
  }
}
body.iPhone .sec-news {
  background-attachment: scroll;
  background-size: cover;
}
.sec-news .wrapper {
  background: #fff;
  margin: 0 auto;
  padding: 0 18px;
  width: 94%;
}
@media screen and (min-width: 768px) {
  .sec-news .wrapper {
    margin: 0 auto;
    max-width: 1120px;
    padding: 0 24px;
  }
}
.sec-news .inner {
  padding: 20px 0;
}
@media screen and (min-width: 768px) {
  .sec-news .inner {
    padding: 60px;
  }
}
.sec-news .news_header {
  display: block;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .sec-news .news_header {
    align-items: flex-end;
    display: flex;
    margin-bottom: 40px;
  }
}
.sec-news .btnArea {
  margin-bottom: 40px;
  padding: 60px 0 0;
}

.sec-sns {
  background: #ff9326;
  background: -webkit-linear-gradient(135deg, #ff9326 0%, #fcc229 100%);
  background: -o-linear-gradient(135deg, #ff9326 0%, #fcc229 100%);
  background: linear-gradient(135deg, #ff9326 0%, #fcc229 100%);
  line-height: 1;
  padding: 30px 0;
}
@media screen and (min-width: 768px) {
  .sec-sns {
    padding: 50px;
  }
}

/* cat index title */
.cat_title {
  color: #fff;
  margin-bottom: 12px;
  padding: 10px 0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .cat_title {
    font-size: 48px;
    margin-bottom: 40px;
    padding: 50px 0;
  }
}
body.seatcover .cat_title {
  background: url("/images/seatcover/index/cat_title_bg.jpg") no-repeat top center;
  background-size: cover;
}
body.floormat .cat_title {
  background: url("/images/floormat/index/cat_title_bg.jpg") no-repeat top center;
  background-size: cover;
}
body.accessory .cat_title {
  background: url("/images/accessory/index/cat_title_bg.jpg") no-repeat top center;
  background-size: cover;
}
body.product_support .cat_title {
  background: url("/images/product_support/index/cat_title_bg.jpg") no-repeat top center;
  background-size: cover;
}

@media screen and (min-width: 768px) {
  .detail_block {
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
    max-width: 1120px;
  }
  .detail_block .fig,
.detail_block .wrapper {
    flex-basis: 50%;
  }
}
@media screen and (min-width: 768px) {
  .sec-design .inner {
    margin: 0 auto;
    max-width: 900px;
  }
}

.sec-awaji .inner {
  margin: 0 auto;
  max-width: 650px;
}
@media screen and (min-width: 768px) {
  .sec-awaji .inner {
    padding-bottom: 60px;
  }
}

@media screen and (min-width: 768px) {
  .sec-hoshou .wrapper {
    height: 100%;
  }
  .sec-hoshou .wrapper .inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
  }
}

@media screen and (min-width: 768px) {
  .sec-sidebag .inner {
    margin: 0 auto;
    max-width: 650px;
  }
}

.work_label {
  border-radius: 6px;
  color: #fff;
  display: block;
  font-size: 18px;
  padding: 9px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .work_label {
    font-size: 30px;
    padding: 12px 0;
  }
}
.work_label.wl_sl {
  background-color: #72bb2b;
}
.work_label.wl_sq {
  background-color: #00b2ed;
}
.work_label.wl_hc {
  background-color: #f39800;
}
.work_label a {
  color: #fff;
  display: block;
}

.work_list {
  padding: 30px 0 0;
}
@media screen and (min-width: 768px) {
  .work_list {
    margin: 0 auto;
    max-width: 600px;
  }
}
.work_list li {
  margin-bottom: 10px;
}

.work_detail_link {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .work_detail_link {
    margin: 20px 0;
  }
}
.work_detail_link a {
  background-color: #fff;
  border: solid 1px;
  border-radius: 100px;
  color: #444;
  display: inline-block;
  font-size: 16px;
  padding: 10px 25px;
}
@media screen and (min-width: 768px) {
  .work_detail_link a {
    font-size: 26px;
    padding: 16px 30px;
  }
}

.work_item {
  background: #fff6e9;
  margin-bottom: 20px;
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .work_item {
    margin-left: auto;
    margin-right: auto;
    max-width: 1120px;
  }
}
.work_item .work_item_title {
  margin-bottom: 20px;
  margin-top: -20px;
  position: relative;
  z-index: 3;
}
.work_item .lt_title {
  background-color: #fff;
}

.wp_fig {
  margin: 20px 0;
}
@media screen and (min-width: 768px) {
  .wp_fig {
    text-align: center;
  }
}

.support_link {
  margin: 20px 0 0;
}
@media screen and (min-width: 768px) {
  .support_link {
    margin-left: auto;
    margin-right: auto;
    max-width: 600px;
  }
}
.support_link li {
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .support_link li {
    font-size: 20px;
  }
}
.support_link li a {
  background: #fff;
  border: solid 1px;
  border-radius: 6px;
  color: #444;
  display: block;
  padding: 9px 0;
  text-align: center;
}

.wi_fig {
  margin-bottom: 30px;
  padding: 0 30px;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .wi_hc_list {
    margin-left: auto;
    margin-right: auto;
    max-width: 600px;
  }
}

.sec-mat_function {
  background: #fff6e9;
}
.sec-mat_function .inner {
  background: #fff;
  /* margin-top: -30px; */
  padding: 20px 20px;
}
.sec-mat_function .func_box {
  margin-bottom: 0;
}

.w_fig {
  margin-left: -24px;
  width: calc(100% + 48px);
}

.mat_option_block {
  padding-bottom: 20px;
}
.mat_option_block .inner {
  background: #fff;
  padding: 20px 20px;
}

.mat_3d_title {
  background: #f39800;
  color: #fff;
  font-size: 21px;
  padding: 10px 0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .mat_3d_title {
    font-size: 28px;
    padding: 20px 0;
  }
}
.mat_3d_title.standard {
  background-color: #00a0e9;
}
.mat_3d_title.newrubber {
  background-color: #e84660;
}

.mat_3d_type_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .mat_3d_type_list {
    margin-left: auto;
    margin-right: auto;
    max-width: 1120px;
  }
}
.mat_3d_type_list li {
  flex-basis: 50%;
}

.sec-mat_3d_type .type_label {
  border-radius: 6px;
  color: #fff;
  display: block;
  font-size: 14px;
  margin: -11px auto 10px;
  max-width: 85%;
  padding: 8px 10px;
  position: relative;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .sec-mat_3d_type .type_label {
    border-radius: 12px;
    font-size: 22px;
    padding: 20px 0;
  }
}
.sec-mat_3d_type .type_label.standard {
  background-color: #00a0e9;
}
.sec-mat_3d_type .type_label.newrubber {
  background-color: #e84660;
}

.v_price_list {
  margin-bottom: 20px;
}
.v_price_list li {
  align-items: flex-end;
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
}
.v_price_list li:not(:last-child) {
  border-bottom: solid 1px #ccc;
}
.v_price_list li .p_col {
  flex-basis: 57%;
}
.v_price_list li .btn_col {
  flex-basis: 37%;
}
.v_price_list li a {
  border: solid 1px;
  border-radius: 100px;
  color: #444;
  display: block;
  padding: 10px 3px;
  text-align: center;
}

.blue_txt {
  color: #00a0e9;
}

.rose_txt {
  color: #e84660;
}

@media screen and (min-width: 768px) {
  .mw_600 {
    margin-left: auto;
    margin-right: auto;
    max-width: 600px;
  }
}

@media screen and (min-width: 768px) {
  .md_row {
    background: #fff;
    display: flex;
    padding: 30px 0;
  }
  .md_row .inner {
    flex-basis: 50%;
  }
}

@media screen and (min-width: 768px) {
  .mat_3d_b_title {
    position: relative;
    text-align: center;
    z-index: 1;
  }
}

.sec-mat_3d_type_function {
  padding: 20px 0 0;
}
.sec-mat_3d_type_function .inner {
  margin-top: -30px;
}
@media screen and (min-width: 768px) {
  .sec-mat_3d_type_function .inner {
    margin-left: auto;
    margin-right: auto;
    margin-top: -50px;
    max-width: 924px;
  }
}

.sec-mat_3d_design .fig {
  margin-left: auto;
  margin-right: auto;
  max-width: 924px;
}

.ion_scene_title {
  background: #f39800;
  color: #fff;
  padding: 12px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .ion_scene_title {
    font-size: 28px;
    margin: 0 0 30px;
    padding: 20px;
  }
}

.ion_feature_list {
  padding: 20px 0;
}

.sec-ion_feature {
  margin-bottom: 30px;
}

.sec-scene ul {
  margin-bottom: 10px;
}

.sec-ion-notice .inner {
  background: #fff;
  padding: 20px;
}

.sec-ion-howto {
  margin-bottom: 30px;
}
.sec-ion-howto .fig {
  margin: 20px 20px;
}

.sec-ion-caution {
  margin-bottom: 30px;
}
.sec-ion-caution .inner {
  padding: 20px 10px;
}

.slide_btn_list {
  display: flex;
  justify-content: space-between;
  padding: 10px 0 0;
}
.slide_btn_list li {
  border: solid 1px #ccc;
  border-radius: 6px;
  flex-basis: 32%;
  font-size: 10px;
  text-align: center;
  overflow: hidden;
}
.slide_btn_list li a {
  color: #444;
  background-color: white;
  display: block;
  padding: 10px 0;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .slide_btn_list li a {
    cursor: pointer;
    font-size: 14px;
    line-height: 1.3;
  }
}
.slide_btn_list li a.active {
  background: #8fc31f;
}

.handle_suits_title {
  background: #f39800;
  color: #fff;
  font-size: 20px;
  padding: 24px 24px;
}
@media screen and (min-width: 768px) {
  .handle_suits_title {
    font-size: 28px;
    text-align: center;
  }
}
.handle_suits_title span {
  color: #444;
  display: block;
  font-size: 13px;
  font-weight: normal;
  line-height: 1.4;
  margin: 10px 0 0;
}
@media screen and (min-width: 768px) {
  .handle_suits_title span {
    font-size: 20px;
  }
}

.handle-size-fig {
  margin: 20px 30px;
}

.handle_caution_title {
  background: #000;
  color: #f39800;
  padding: 12px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .handle_caution_title {
    font-size: 28px;
    margin: 0 0 30px;
    padding: 20px;
  }
}

.sec-handle-caution .inner {
  padding: 20px 10px;
}

.sec-handle-list table {
  border-collapse: collapse;
  margin-bottom: 20px;
}
.sec-handle-list td {
  border-bottom: solid 1px #000;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .sec-handle-list td {
    font-size: 14px;
    line-height: 1.5;
  }
}
.sec-handle-list th {
  border-bottom: solid 1px #000;
  line-height: 1.4;
}
.sec-handle-list th[scope=row] {
  background: #000;
  color: #fff;
  font-size: 13px;
  padding: 10px 25px;
  vertical-align: top;
}
.sec-handle-list td {
  border-bottom: solid 1px #000;
  border-left: solid 1px #000;
  font-size: 13px;
  padding: 10px 25px;
  width: 70%;
}
@media screen and (min-width: 768px) {
  .sec-handle-list .m_row {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: center;
    margin: 0 auto;
    max-width: 1120px;
  }
  .sec-handle-list .m_row > div {
    flex-basis: 493px;
    margin: 0 20px 20px;
  }
}

.sec-handle-measure {
  margin-bottom: 30px;
}
.sec-handle-measure .txt_center {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .sec-handle-measure .measure_row {
    display: flex;
    justify-content: center;
  }
  .sec-handle-measure .measure_row .l_col {
    flex-basis: 620px;
  }
  .sec-handle-measure .measure_row .l_col .fig {
    text-align: left;
  }
  .sec-handle-measure .measure_row .m_col {
    margin-left: 20px;
  }
  .sec-handle-measure .measure_row .m_col img {
    max-width: 200px;
  }
}

.sec-handle-howto {
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .sec-handle-howto .h_row {
    display: flex;
    justify-content: space-between;
  }
  .sec-handle-howto .h_row .col {
    flex-basis: 31%;
    font-size: 14px;
  }
}

.dl_block {
  border-top: solid 1px #ccc;
  margin: 22px 0;
}

.dl_item {
  border-bottom: solid 1px #ccc;
  font-size: 12px;
  padding: 20px 0 20px 25%;
  position: relative;
}
.dl_item .icon {
  left: 0;
  position: absolute;
  top: 21px;
  width: 35px;
}
.dl_item .top {
  display: block;
  margin-bottom: 10px;
}
.dl_item .dl_button {
  background-color: #87c318;
  border-radius: 15px;
  color: #fff;
  float: right;
  font-size: 10px;
  line-height: 20px;
  padding: 0 20px;
}

p.border {
  border: solid 1px #ccc;
  border-radius: 6px;
  margin-bottom: 30px;
  padding: 13px 0;
  text-align: center;
}

.kit_feature_title {
  background: #f39800;
  color: #fff;
  font-size: 20px;
  line-height: 1.5;
  padding: 13px 0;
  text-align: center;
}

.sec-kit_feature .wrapper {
  padding-bottom: 20px;
  padding-top: 20px;
}

.ph_manual {
  align-items: center;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 30px 0;
}
@media screen and (min-width: 768px) {
  .ph_manual {
    margin: 20px 0;
  }
}
.ph_manual .icon {
  margin-bottom: 20px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .ph_manual .icon {
    margin-bottom: 0;
    width: 20%;
  }
}
.ph_manual .icon img {
  display: block;
  margin: 0 auto;
  width: 60px;
}
@media screen and (min-width: 768px) {
  .ph_manual .icon img {
    width: 40%;
  }
}
.ph_manual .manual_item {
  box-sizing: border-box;
  padding: 0 3px;
  position: relative;
  width: 33%;
}
@media screen and (min-width: 768px) {
  .ph_manual .manual_item {
    padding: 0 10px;
    width: 20%;
  }
}
.ph_manual .manual_item span {
  color: #333;
  font-size: 10px;
  left: 50%;
  position: absolute;
  top: 70%;
  transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .ph_manual .manual_item span {
    font-size: 1em;
    line-height: 1;
  }
}
.ph_manual .adobe_reader {
  margin: 20px 0;
  text-align: center;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .ph_manual .adobe_reader {
    margin: 0;
    width: 20%;
  }
}

.sec-ph_feature .wrapper {
  padding-bottom: 20px;
  padding-top: 20px;
}
@media screen and (min-width: 768px) {
  .sec-ph_feature .detail_block {
    margin-bottom: 30px;
  }
}

.sec-ph_scene .base_txt {
  padding: 10px;
}

.sec-ph_notice {
  margin-bottom: 30px;
}
.sec-ph_notice .base_txt {
  padding: 10px;
}

/* CSS Document */
.cat_item_list .fig,
.wi_hc_list .fig,
.ion_feature_list .fig {
  margin-bottom: 15px;
}

.p_list.col_2 .fig {
  margin-bottom: 15px;
}
.p_list.col_4::after {
  clear: both;
  content: "";
  display: block;
}
.p_list.col_4 li {
  float: left;
  margin-bottom: 5px;
  margin-right: 5px;
  width: calc((100% - 15px) / 4);
}
@media screen and (min-width: 768px) {
  .p_list.col_4 li {
    width: calc((100% - 40px) / 9);
  }
}
.p_list.col_4 li:nth-child(4n) {
  margin-right: 0;
}
@media screen and (min-width: 768px) {
  .p_list.col_4 li:nth-child(4n) {
    margin-right: 5px;
  }
}
@media screen and (min-width: 768px) {
  .p_list.col_4 li:nth-child(9n) {
    margin-right: 0;
  }
}
.p_list.col_4_f {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.p_list.col_4_f li {
  flex-basis: 24%;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .p_list.col_4_f li {
    text-align: center;
  }
}
.p_list.col_4_g {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
.p_list.col_4_g li {
  margin: 0 2px 3px;
}
@media screen and (min-width: 768px) {
  .p_list.col_4_g li {
    margin: 0 6px 6px;
  }
}
.p_list.col_3::after {
  clear: both;
  content: "";
  display: block;
}
.p_list.col_3 li {
  float: left;
  margin-bottom: 10px;
  margin-right: 5px;
  text-align: center;
  width: calc((100% - 10px) / 3);
}
.p_list.col_3 li:nth-child(3n) {
  margin-right: 0;
}
.p_list.col_3 li .fig {
  margin-bottom: 2px;
}
.p_list.col_3 li p {
  font-size: 12px;
  line-height: 1.55;
}
@media screen and (min-width: 768px) {
  .p_list.col_3 li p {
    font-size: 15px;
  }
}

.cat_item_list,
.wi_hc_list,
.ion_feature_list,
.p_list.col_2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.cat_item_list li,
.wi_hc_list li,
.ion_feature_list li,
.p_list.col_2 li {
  flex-basis: 49%;
  margin-bottom: 6px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .cat_item_list li,
.wi_hc_list li,
.ion_feature_list li,
.p_list.col_2 li {
    margin-bottom: 20px;
  }
}
.cat_item_list li .fig,
.wi_hc_list li .fig,
.ion_feature_list li .fig,
.p_list.col_2 li .fig {
  margin-bottom: 4px;
}
.cat_item_list li p,
.wi_hc_list li p,
.ion_feature_list li p,
.p_list.col_2 li p {
  font-size: 12px;
  line-height: 1.55;
}
@media screen and (min-width: 768px) {
  .cat_item_list li p,
.wi_hc_list li p,
.ion_feature_list li p,
.p_list.col_2 li p {
    font-size: 16px;
  }
}

@media screen and (min-width: 768px) {
  .md_col_auto li {
    width: auto !important;
  }
}

.cat_item_list {
  margin-bottom: 16px;
}
@media screen and (min-width: 768px) {
  .cat_item_list {
    margin-bottom: 20px;
  }
}
.cat_item_list li {
  margin-bottom: 20px;
}

.header_c_btn {
  background: #f39800;
  border-radius: 100px;
  color: #fff;
  margin-left: 4px;
  margin-right: 7px;
  padding: 4px 10px 4px 7px;
}
@media screen and (min-width: 768px) {
  .header_c_btn {
    padding: 8px 13px 6px 10px;
  }
}/*# sourceMappingURL=style.css.map */