@charset "utf-8";

/* CSS Document */

html{}
  body{
    overflow-x: hidden;
    font-size: 16px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: normal;
    color: rgba(51,51,51,1);
    line-height: 1.6;
    -webkit-text-size-adjust: 100%;
    position: relative;
    }
    a{color: rgba(0,0,0,1);}

  @media all and (-ms-high-contrast:none) {
    body {
      font-family: "メイリオ",Meiryo,"游ゴシック",YuGothic,sans-serif;
    }
  }

.-fntmtst{font-family: 'Montserrat', sans-serif;}

.-disabled{
  pointer-events: none;
  opacity: .5;
  } 

.svgblc{display: none;}

/* header */
.pageheader{
  width: 100%;
  height: 80px;
  padding-right: 30px;
  padding-left: 30px;
  box-shadow: 0px 0px 16px -7px rgba(0,0,0,0.6);
  background-color: rgba(255,255,255,.85);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10000;
  }
  .pageheader-inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    }
    .headerlogo{}
      .headerlogo-link{}
        .lwlogo-svg{
          width: 150px; 
          fill: rgba(0,0,0,1);
          transition: .3s;
          }
        .headerlogo-link:hover .lwlogo-svg{fill: rgba(0,0,0,.7);}
  .menubody{height: 100%}
    .menunav{
      display: flex;
      align-items: center;
      width: 100%;
      height: 100%;
      }
      .menuitem{height: 40px;}
      .switch.menuitem{
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: 100%;
        }
      .menuitem:not(:last-of-type){margin-right: 30px;}
      .contactbtn.menuitem{margin-right: 20px;}
        .menuitem-link{
          display: flex;
          height: 100%; 
          align-items: center;
          position: relative;
          }
          .txtlink .menuitem-link::after{
            content: "";
            width: 0%;
            height: 4px;
            background-color: rgba(255,216,19,1);
            position: absolute;
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            transition: .4s
            }
            .txtlink .menuitem-link:hover::after{width: 120%;}
          .menuitem-txt{
            font-size: 14px;
            font-weight: 500;
            }

  .contactbtn{}
    .contactbtn .menuitem-link{
      padding-right: 20px;
      padding-left: 20px;
      color: rgba(183,0,49,1);
      border: 1px solid rgba(183,0,49,1);
      /* border: 1px solid rgba(51,51,51,1); */
      transition: .4s;
      }
      .contactbtn .menuitem-link:hover{
        background-color: rgba(183,0,49,1);
        border-radius: 25px;
        }
      .contactbtn .menuitem-txt{transition: .4s;}
        .contactbtn .menuitem-link:hover .menuitem-txt{color: rgba(255,255,255,1);}
  .switching-item{width: 40px;}
    .switching-link{
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      height: 20px;
      border: 1px solid rgba(51,51,51,1);
      transition: .3s;
      }
      .switching-link:hover,
      .active .switching-link{
        background-color: rgba(255,216,19,.5);
        }
      .switching-item:first-of-type .switching-link{border-bottom: 0;}
      .switching-link-txt{font-size: 12px;}


/* body */
.section-wrap{
  max-width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  }
  .section-inner{
    max-width: 1000px;
    margin: 0 auto;
    }

.section-ttl{margin-bottom: 50px;}
  .section-ttl-en{
    margin-bottom: 15px;
    position: relative;
    }
    .section-ttl-en::before{
      content: "";
      width: 60px;
      height: 3px;
      background-color: rgba(255,216,19,1);
      position: absolute;
      bottom: -5px;
      left: 50%;
      transform: translateX(-50%);
      }
    .section-ttl-en-txt{
      font-size: 38px;
      font-weight: 500;
      text-align: center;
      letter-spacing: 0.1em;
      }
  .section-ttl-jp{}
    .section-ttl-jp-txt{
      font-size: 20px;
      font-weight: 500;
      text-align: center;
      letter-spacing: 0.1em;
      }

.fitbutton{
  width: 100%;
  height: 50px;
  }
  .fitbutton-link{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(50,50,50,1);
    background-color: rgba(50,50,50,1);
    position: relative;
    transition: .4s;
    }
    .fitbutton-link:hover{background-color: rgba(50,50,50,0);}
    .fitbutton-link::before{
      content: "";
      width: 100%;
      height: 100%; 
      border: 1px dashed rgba(50,50,50,1);
      position: absolute;
      top: 4px;
      left: 4px;
      transform: rotate(.8deg);
      transition: .4s;
      }
      .fitbutton-link:hover::before{
        top: -1px;
        left: -1px;
        transform: rotate(0deg);
        }
    .fitbutton-txt{
      font-size: 15px;
      font-weight: 500;
      letter-spacing: .05em;
      color: rgba(255,255,255,1);
      transition: .4s;
      position: relative;
      }
      .fitbutton-link:hover .fitbutton-txt{color: rgba(50,50,50,1);}
      .fitbutton-txt::before{
        content: "";
        width: 7px;
        height: 7px;
        border-top: 2px solid rgba(255,255,255,1);
        border-right: 2px solid rgba(255,255,255,1);
        position: absolute;
        right: -14px;  
        top: 8px;
        transform: rotate(45deg);
        transition: .4s;
        } 
        .fitbutton-link:hover .fitbutton-txt::before{
          border-top: 2px solid rgba(50,50,50,1);
          border-right: 2px solid rgba(50,50,50,1);
          }

.maker{
  font-weight: 500;
  background: linear-gradient(transparent 60%, rgba(255,216,19,.5) 60%);
  }

.cardlist{
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 60px;
  }
  .cardlist-item{
    width: calc((100% - 60px) / 3);
    margin-bottom: 30px;
    }
    .cardlist-item:not(:nth-of-type(3n+3)){margin-right: 30px;}
    .cardlist-link{
      overflow: hidden;
      display: flex; 
      flex-direction: column;
      height: 100%;
      border-radius: 4px;
      background-color: rgba(255,255,255,1);
      box-shadow: 0 1px 3px 0 rgba(0,0,0,.15);
      transition: .4s;
      }
      .cardlist-link:hover{box-shadow: 0 3px 8px 0 rgba(0,0,0,.3);}
      .cardlist-summary{
        order: 1;
        height: 100%;
        padding: 15px 15px 70px;
        position: relative;
        }
        .cardlist-summary::before{
          content: "詳しくはこちら";
          width: calc(100% - 30px);
          padding-top: 15px;
          font-size: 14px;
          font-weight: bold;
          text-align: center;
          background-color: rgba();
          border-top: 1px solid rgba(220,220,220,1);
          position: absolute;
          bottom: 15px;
          left: 50%;
          transform: translateX(-50%);
          }
      .cardlist-ttl{margin-bottom: 15px;}
        .cardlist-ttl-txt{
          font-size: 18px;
          font-weight: 500;
          line-height: 1.4;
          white-space: pre-line;
          }
      .cardlist-name{}
        .cardlist-name-txt{
          font-size: 16px;
          font-weight: 500;
          }
      .cardlist-tag{display: flex;}
        .cardlist-tag-item{
          display: flex;
          align-items: center;
          height: 22px;
          padding-left: 15px;
          padding-right: 15px;
          border-radius: 3px;
          border: 1px solid rgba(100,100,100,1);
          background-color: rgba(255,255,255,1);
          }
          .cardlist-tag-item:not(:last-of-type){margin-right: 5px;}
        .cardlist-tag-txt{
          font-size: 12px;
          line-height: 1;
          text-align: center;
          }
      .cardlist-fig{
        overflow: hidden;
        order: 0;
        padding-top: 70%;
        position: relative;
        }
        .cardlist-fig-inner{
          width: 100%;
          position: absolute;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%) scale(1.005);
          opacity: .6;
          transition: .4s;
          }
          .cardlist-link:hover .cardlist-fig-inner{
            transform: translate(-50%, -50%) scale(1.05);
            opacity: 1;
            }

.movie-item{
  max-width: 800px;
  margin: 0 auto;
  padding-top: 45.25%;
  position: relative;
  }
  .movie-item:not(:last-of-type){margin-bottom: 30px;}
  .movie-frame{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    }

/* footer */
.contact{
  padding-top: 70px;
  padding-bottom: 70px;
  background-image: url(../images/contact-fig-01.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  }
  .contact-ttl{margin-bottom: 30px;}
    .contact-ttl-txt{
      font-size: 26px;
      font-weight: 500;
      color: rgba(255,255,255,1);
      text-align: center;
      text-shadow: 0px 0px 7px rgba(0,0,0,0.7);
      }
  .contact-method{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
    }
    .contact-method-item{width: calc((100% - 30px) / 2);}
      .contact-method-item:first-of-type{margin-right: 30px;}
      .contact-method-ttl{margin-bottom: 5px;}
        .contact-methodttl-txt{
          text-align: center;
          font-size: 18px;
          font-weight: 500;
          color: rgba(255,255,255,1);
          }
          .contact-method-link{
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            height: 50px;  
            border-radius: 25px;  
            background-color: rgba(255,216,19,1);
            position: relative;
            }
            .contact-method-link::before{
              content: "";
              width: 100%;
              height: 100%;
              background-color: rgba(183,0,9,1);
              position: absolute;
              left: -100%;
              top: 0;
              transition: .5s;
              z-index: 100;
              }
              .contact-method-link:hover::before{left: 0;}
            .contact-method-link::after{
              content: "";
              width: calc(100% - 2px);
              height: calc(100% - 2px);
              border: 1px solid rgba(255,216,19,1);
              border-radius: 25px;  
              position: absolute;
              left: 0;
              top: 0;
              z-index: 200;
              transition: .3s;
              }
              .contact-method-link:hover::after{border: 1px solid rgba(183,0,9,1);}
            .contact-method-txt{
              font-size: 18px;
              font-weight: 500;
              color: rgba(50,50,50,1);
              position: relative;
              z-index: 200;
              transition: .3s;
              }
              .contact-method-link:hover .contact-method-txt{color: rgba(255,255,255,1);}
              .phone-txt.contact-method-txt{font-size: 20px;}
              .mail-svg{
                width: 24px;
                margin-right: 5px;
                position: relative;
                top: -2px;
                transition: .3s;
                }
                .contact-method-link:hover .mail-svg{fill: rgba(255,255,255,1);}
              .phone-svg{
                width: 24px;
                margin-right: 5px;
                position: relative;
                top: -2px;
                transition: .3s;
                }
                .contact-method-link:hover .phone-svg{fill: rgba(255,255,255,1);}

.banner{
  padding-top: 50px;
  padding-bottom: 70px;
  border-top: 1px solid rgba(230,230,230,1);
  }
  .banner .section-wrap{
    padding: 0;
    position: relative;
    }
  .swiper-container{
    /* overflow: visible; */
    overflow-x: hidden;
    }
    .swiper-wrapper{}
      .slide-item{
        overflow: hidden;
        color: rgba(255,255,255,1);
        }
        .slide-link{
          overflow: hidden;
          display: block;
          width: 100%;
          height: 100%;
          padding-top: 40%;
          }
        .slide-fig{
          position: absolute;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%) scale(1);
          transition: .3s;
          }
          .slide-link:hover .slide-fig{transform: translate(-50%, -50%) scale(1.1);}

      .swiper-button-next, 
      .swiper-button-prev{
        width: 60px;
        height: 20px;
        padding: 0;
        background-color: rgba(2552,255,255,.9);
        color: rgba(183,0,9,1);
        top: auto;
        bottom: -30px;
        }
        .swiper-button-next{
          border-top-left-radius: 3px;
          border-bottom-left-radius: 3px;
          right: calc((100% - 90px) / 4 / 2 + 15px);
          }
          .swiper-button-next::before{
            content: "";
            width: 60px;
            height: 2px;
            border-radius: 2px;
            background-color: rgba(183,0,9,1);
            position: absolute;
            bottom: 0;
            left: 0;
            transition: .3s;
            }
            .swiper-button-next:hover::before{width: 70px;}
          .swiper-button-next::after{
            content: "";
            width: 15px;
            height: 2px;
            border-radius: 2px;
            background-color: rgba(183,0,9,1);
            position: absolute;
            bottom: 0;
            right: 0;
            transform: rotate(45deg);
            transform-origin: right bottom;
            transition: .3s;
            }
            .swiper-button-next:hover::after{right: -10px;}
        .swiper-button-prev{
          content: "";
          border-top-right-radius: 3px;
          border-bottom-right-radius: 3px;
          left: calc((100% - 90px) / 4 / 2 + 15px);
          }
          .swiper-button-prev::before{
            content: "";
            width: 60px;
            height: 2px;
            border-radius: 2px;
            background-color: rgba(183,0,9,1);
            position: absolute;
            bottom: 0;
            right: 0;
            transition: .3s;
            }
            .swiper-button-prev:hover::before{width: 70px;}
          .swiper-button-prev::after{
            content: "";
            width: 15px;
            height: 2px;
            border-radius: 2px;
            background-color: rgba(183,0,9,1);
            position: absolute;
            bottom: 0;
            left: 0;
            transform: rotate(-45deg);
            transform-origin: left bottom;
            transition: .3s;
            }
            .swiper-button-prev:hover::after{left: -10px;}
            .swiper-wrapper{transition-timing-function:linear;}

/* .pagefooter{padding-top: 100px;} */
  .footer-sitemap{
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 50px;
    }
    .sitemap-column{width: 25%;}
    .sitemap-column.linkwiz-data{
      width: 20%;
      margin-right: 5%;
      padding-top: 10px;
      }
      .sitemap-group{}
        .sitemap-group:not(:last-of-type){margin-bottom: 40px;}
        .sitemap-main{margin-bottom: 10px;}
          .sitemap-main-small{margin-bottom: 5px;}
          .sitemap-sub-item{}
            .sitemap-sub-item:not(:last-of-type){margin-bottom: 10px;}
            .sitemap-link{}
              .sitemap-link-txt{
                color: rgba(80,80,80,1);
                transition: .3s;
                }
                .sitemap-link:hover .sitemap-link-txt{color: rgba(80,80,80,.5);}
                .sitemap-sub-item .sitemap-link-txt{font-size: 12px;}
                .sitemap-main .sitemap-link-txt{
                  font-size: 14px;
                  font-weight: 500;
                  }
                .sitemap-main-small .sitemap-link-txt{
                  font-size: 13px;
                  font-weight: 500;
                  }

.footer-bottom{
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 20px;
  /* border-top: 1px solid rgba(230,230,230,1); */
  }
  .footer-copy{}
    .footer-copy-txt{
      font-size: 12px;
      color: rgba(100,100,100,1);
      text-align: center;
      }
  .footer-submenu{
    display: flex;
    justify-content: flex-end;
    }
    .footer-submenu-item{position: relative;}
      .footer-submenu-item:not(:last-of-type){margin-right: 20px;}
      .footer-submenu-item:not(:last-of-type)::after{
        content: "/";
        font-size: 12px;
        color: rgba(100,100,100,1);
        position: absolute;
        right: -13px;
        top: -1px;
        }
      .footer-submenu-link{}
        .footer-submenu-link-txt{
          font-size: 12px;
          color: rgba(100,100,100,1);
          transition: .3s;
          }
          .footer-submenu-link:hover .footer-submenu-link-txt{color: rgba(100,100,100,.5);}
      
/* parts */
.body-btn{
  width: 300px;
  height: 50px;
  margin: 0 auto;
  }
  .body-btn-link{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(70,70,70,1);
    border-radius: 25px;
    background-color: rgba(255,220,0,1);
    transition: .3s;
    }
    .body-btn-link:hover{
      background-color: rgba(255,255,255,1);
      /* border: 1px solid rgba(255,220,0,1); */
      }
    .body-btn-txt{
      font-size: 16px;
      font-weight: 500;
      color: rgba(70,70,70,1);
      position: relative;
      }
      .body-btn-txt::before{
        content: "";
        width: 8px;
        height: 8px;
        border-top: 2px solid rgba(70,70,70,1);
        border-right: 2px solid rgba(70,70,70,1);
        transform: rotate(45deg);
        position: absolute;
        right: -15px;
        top: 9px;
        transition: .3s;
        }
        .body-btn-link:hover .body-btn-txt::before{right: -20px;}

.subcta{
  margin-top: 70px;
  padding-top: 30px;
  padding-right: 30px;
  padding-bottom: 30px;
  padding-left: 30px;
  border: 1px solid rgba(51,51,51,.3);
  border-radius: 10px;
  background-color: rgba(255,255,255,1);
  position: relative;
  }
  .projectpage .subcta{
    max-width: 850px;
    margin: 0 auto;
    }
  .subcta-ttl{
    margin-bottom: 30px;
    text-align: center;
    background-color: rgba(255,255,255,1);
    }
    .subcta-ttl-txt{
      font-size: 22px;
      font-weight: bold;
      }
  .subcta-list{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    }
    .subcta-item{
      display: flex;
      flex-direction: column;
      align-items: center;
      width: calc((100% - 60px) / 3);
      }
      .subcta-item:not(:last-of-type){margin-right: 30px;}
      .subcta-catch{
        width: 100%;
        margin-bottom: 20px;
        padding-top: 5px;
        padding-right: 10px;
        padding-bottom: 10px;
        padding-left: 10px;
        line-height: 1.2;
        text-align: center;
        border-radius: 5px;
        border: 1px solid rgba(150,150,150,1);
        background-color: rgba(255,255,255,1);
        position: relative;
        }
        .subcta-catch::before,
        .subcta-catch::after{
          content: "";
          width: 0;
          height: 0;
          border-style: solid;
          border-width: 12px 7px 0 7px;
          position: absolute;
          left: 50%;   
          transform: translateX(-50%);
          }
          .subcta-catch::before{
            border-color: rgba(150,150,150,1) transparent transparent transparent;  
            bottom: -12px
            }
          .subcta-catch::after{
            border-color: rgba(255,255,255,1) transparent transparent transparent;  
            bottom: -10px
            }
        .subcta-catch-txt{
          font-size: 13px;
          padding: 0px 50px;
          display: block;
          font-weight: 500;
          white-space: pre-wrap;
          }
      .subcta-button{
        display: block;
        width: 100%;
        border: 1px solid rgba(150,150,150,1);
        box-shadow: 0px 2px 5px -2px rgba(0,0,0,0.6);
        position: relative;
        top: 0;
        transition: .3s;
        }
        .subcta-button:hover{
          top: -2px;
          box-shadow: 0px 2px 10px -2px rgba(0,0,0,0.5);
          }

.youtube-block{
  padding-top: 56.25%;
  position: relative;
  }
  .youtube-inner{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    }
    .youtube-inner iframe{
      display: flex;
      width: 100%;
      height: 100%;
      }


@media screen and (max-width: 1299px) {

.pageheader{
  height: 64px;
  padding-right: 15px;
  padding-left: 15px;
  }
  .pageheader .lwlogo-svg{width: 120px;}
  .menuitem {height: 36px;}
  .menuitem:not(:last-of-type){margin-right: 18px;}
    .txtlink .menuitem-link::after{bottom: -14px;}
    .menuitem-txt{font-size: 12px;}
  .contactbtn .menuitem-link{
    padding-right: 8px;
    padding-left: 8px;
    }
  .switching-link{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 18px;
    border: 1px solid rgba(51,51,51,1);
    transition: .3s;
    }

}/* max-width: 1299px */

@media screen and (max-width: 1199px) {

.swiper-button-next{right: 20px;}
.swiper-button-prev{left: 20px;}

}/* max-width: 1199px */

@media screen and (min-width: 992px) {

.pageheader-menubtn{display: none;}
.menubody{display: flex !important;}

}/* min-width: 992px */

@media screen and (max-width: 991px) {

.pageheader{height: 60px;}
.menubody{
  display: none;
  width: 100%;
  height: auto;
  padding-top: 20px;
  padding-bottom: 40px;
  background-color: rgba(255,255,255,.85);
  position: absolute;
  top: 60px;
  left: 0;
  }
  .menunav{
    flex-direction: column;
    height: auto;
    }
    .menuitem{
      height: 100%;
      width: 100%;
      }
    .menuitem:not(:last-of-type){margin: 0 auto 10px;}
      .menuitem:last-of-type{margin-top: 20px;}
      .menuitem-link{
        justify-content: center;
        width: 100%;
        padding-top: 10px;
        padding-bottom: 10px;
        transition: .3s;
        }
        .txtlink .menuitem-link:hover{opacity: .7;}
        .txtlink .menuitem-link::after{display: none;}
        .menuitem-txt{
          font-size: 14px;
          text-align: center;
          position: relative;
          }
          .txtlink .menuitem-txt::before{
            content: "";
            width: 4px;
            height: 4px;
            border-top: 2px solid rgba(51,51,51,1);
            border-right: 2px solid rgba(51,51,51,1);
            transform: rotate(45deg);
            position: absolute;
            left: -13px;
            top: 9px
            }
.contactbtn.menuitem{
  max-width: 250px;
  margin: 0 auto 25px;
  }
  .contactbtn .menuitem-link{height: 35px;}
.switch.menuitem{
  margin: 0 auto;
  flex-direction: row;
  }
  .switching-item{width: 50px;}
  .switching-link{height: 25px;}
  .switching-item:first-of-type{margin-right: 15px;}
    .switching-item:first-of-type .switching-link{border: 1px solid rgba(51,51,51,1);}
    .switching-link-txt{font-size: 13px;}

  .pageheader-menubtn{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    }
    .hamburger{
      display: flex;
      align-items: center;
      width: 28px;
      height: 24px;
      transition: .3s;
      position: relative;
      }
      .hamburger::before{
        content: "";
        width: 100%;
        height: 3px;
        border-radius: 2px;
        background-color: rgba(51,51,51,1);
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
        transition: .3s;
        } 
        .-open .hamburger::before{opacity: 0;}
      .hamburger-btn{
        width: 100%;
        height: 100%;
        position: relative;
        cursor: pointer;
        }
        .hamburger-btn::before,
        .hamburger-btn::after{
          content: "";
          width: 100%;
          height: 3px;
          border-radius: 2px;
          background-color: rgba(51,51,51,1);
          position: absolute;
          left: 0;
          transition: .3s;
          }
          .hamburger-btn::before{
            top: 0;
            transform-origin: left top;
            }
          .hamburger-btn::after{
            bottom: 0;
            transform-origin: left bottom;
            }
          .-open .hamburger-btn::before,
          .-open .hamburger-btn::after{
            width: 31px;
            left: 6px;
            }
          .-open .hamburger-btn::before{transform: rotate(45deg);}
          .-open .hamburger-btn::after{transform: rotate(-45deg);}
      .screen-reader-text{
        clip: rect(1px, 1px, 1px, 1px);
        position: absolute !important;
        height: 1px;
        width: 1px;
        overflow: hidden;
        }

.fitbutton{
  width: 100%;
  height: 45px;
  }
  .fitbutton-txt{font-size: 14px;}
    .fitbutton-txt::before{
      width: 6px;
      height: 6px;
      } 

.section-ttl{margin-bottom: 40px;}
  .section-ttl-en{margin-bottom: 15px;}
    .section-ttl-en::before{width: 50px;}
    .section-ttl-en-txt{font-size: 32px;}
    .section-ttl-jp-txt{font-size: 18px;}

.cardlist{margin-bottom: 50px;}
  .cardlist-item{
    width: calc((100% - 40px) / 3);
    margin-bottom: 20px;
    }
    .cardlist-item:not(:nth-of-type(3n+3)){margin-right: 20px;}
      .cardlist-ttl-txt{font-size: 16px;}
      .cardlist-name-txt{font-size: 16px;}
      .cardlist-tag-item{
        height: 20px;
        padding-left: 10px;
        padding-right: 10px;
        }
      .cardlist-tag-txt{font-size: 12px;}

.subcta{
  margin-top: 60px;
  padding-top: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
  }
  .subcta-ttl-txt{font-size: 20px;}
  .subcta-item{width: calc((100% - 40px) / 3);}
  .subcta-item:not(:last-of-type){margin-right: 20px;}
  .subcta-catch-txt{font-size: 12px;}

/* footer */
.contact{
  padding-top: 50px;
  padding-bottom: 50px;
  }
  .contact-ttl{margin-bottom: 25px;}
    .contact-ttl-txt{font-size: 22px;}
    .contact-method-item{width: calc((100% - 20px) / 2);}
      .contact-method-item:first-of-type{margin-right: 20px;}
        .contact-methodttl-txt{font-size: 16px;}
        .contact-method-link{height: 45px;}

.pagefooter{padding-top: 80px;}
  .footer-sitemap{padding-bottom: 40px;}
    .sitemap-column{width: calc(100% / 3);}
    .sitemap-column.linkwiz-data{
      width: 100%;
      margin-bottom: 40px;
      padding-top: 0;
      }
      .linkwiz-data .lwlogo-svg{width: 120px;}
      .sitemap-group:not(:last-of-type){margin-bottom: 30px;}
        .sitemap-sub-item:not(:last-of-type){margin-bottom: 5px;}

}/* max-width: 991px */

@media screen and (max-width: 767px) {

body{font-size: 14px;}

/* body */
.section-wrap{
  padding-right: 15px;
  padding-left: 15px;
  }

.cardlist{margin-bottom: 40px;}
  .cardlist-item{width: calc((100% - 15px) / 2);}
    .cardlist-item:not(:nth-of-type(3n+3)){margin-right: 0;}
    .cardlist-item:not(:nth-of-type(2n+2)){margin-right: 15px;}
    .cardlist-summary{padding: 15px 15px 55px;}
      .cardlist-summary::before{
        width: calc(100% - 30px);
        padding-top: 10px;
        font-size: 13px;
        bottom: 10px;
        }
      .cardlist-ttl-txt{
        font-size: 15px;
        white-space: normal;
        }
      .cardlist-name-txt{font-size: 16px;}
      .cardlist-tag-item{
        padding-left: 8px;
        padding-right: 8px;
        }
      .cardlist-tag-txt{font-size: 11px;}

/* parts */
.subcta{margin-top: 50px;}
  .subcta-ttl-txt{font-size: 18px;}
  .subcta-item{width: calc((100% - 20px) / 2);}
  .subcta-item:nth-of-type(3){margin-top: 30px;}
  .subcta-item:not(:last-of-type){margin-right: 0;}
  .subcta-item:first-of-type{margin-right: 20px;}

/* footer */
.banner{
  padding-top: 30px;
  padding-bottom: 50px;
  }
  .swiper-button-next, 
  .swiper-button-prev{
    width: 50px;
    height: 15px;
    bottom: -20px;
    }
    .swiper-button-next{right: 15px;}
    .swiper-button-prev{left: 15px;}
    .swiper-button-next::before,
    .swiper-button-prev::before{
      width: 50px;
      }
      .swiper-button-next:hover::before,
      .swiper-button-prev:hover::before{width: 60px;}

.contact-ttl-txt{
  font-size: 20px;
  line-height: 1.4;
  white-space: pre-line;
  }

.pagefooter{padding-top: 50px;}
  .footer-sitemap{
    flex-direction: column;
    padding: 0;
    }
    .sitemap-column{width: 100%;}
      .sitemap-column.linkwiz-data{display: none;}
      .sitemap-group:not(:last-of-type){margin-bottom: 0;}
      .sitemap-main{margin-bottom: 0;}
      .sitemap-main-small{margin-bottom: 0;}
      .sitemap-sub{display: none;}
        .sitemap-link{
          display: block;
          padding-top: 15px;
          padding-bottom: 15px;
          padding-left: 5px;
          border-bottom: 1px solid #e6e6e5;
          position: relative;
          }
          .sitemap-link::before{
            content: "";
            width: 7px;
            height: 7px;
            border-top: 1px solid rgba(183,0,9,1);
            border-right: 1px solid rgba(183,0,9,1);
            position: absolute;
            top: 22px;
            right: 10px;
            transform: rotate(45deg);
            }
            .sitemap-main-small .sitemap-link-txt{font-size: 14px;}
  .footer-bottom{border: 0;}

}/* max-width: 767px */

@media screen and (max-width: 575px) {

.fitbutton-txt{font-size: 13px;}

.section-ttl{margin-bottom: 30px;}
.section-ttl-en{margin-bottom: 10px;}
  .section-ttl-en::before{width: 40px;}
  .section-ttl-en-txt{font-size: 26px;}
  .section-ttl-jp-txt{font-size: 16px;}

.cardlist{margin-bottom: 40px;}
  .cardlist-ttl-txt{
    font-size: 15px;
    white-space: normal;
    }
  .cardlist-name-txt{font-size: 16px;}
  .cardlist-tag-item{
    padding-left: 8px;
    padding-right: 8px;
    }
  .cardlist-tag-txt{font-size: 11px;}

/* parts */
.subcta{
  max-width: 450px;
  margin: 50px auto;
  }
  .subcta-ttl-txt{font-size: 16px;}
  .subcta-item{width: 100%;}
  .subcta-item:nth-of-type(3){margin-top: 0;}
  .subcta-item:not(:last-of-type){margin-right: 0;}
  .subcta-item:not(:last-of-type){margin-bottom: 25px;}

/* footer */
.contact{
  padding-top: 40px;
  padding-bottom: 40px;
  }
  .contact-ttl-txt{font-size: 16px;}
    .contact-method{max-width: 400px;}
      .contact-methodttl-txt{font-size: 14px;}
      .contact-method-item{width: 100%;}
        .contact-method-item:first-of-type{
          margin-right: 0;
          margin-bottom: 30px;
          }
          .contact-method-link{height: 40px;}
          .contact-method-txt{font-size: 16px;}
          .phone-txt.contact-method-txt{font-size: 18px;}
          .mail-svg{width: 20px;}
          .phone-svg{width: 20px;}

.footer-bottom{
  flex-direction: column;
  align-items: center;
  }
  .footer-copy{order: 1;}
  .footer-submenu{
    order: 0;
    margin-bottom: 20px;
    }
}/* max-width: 575px */


@media screen and (max-width: 475px) {

.cardlist-item{width: 100%;}
  .cardlist-item:not(:last-of-type){
    margin-right: 0;
    margin-bottom: 15px;
    }
  .cardlist-item:not(:nth-of-type(2n+2)){margin-right: 0;}

}/* max-width: 475px */