@charset "UTF-8";
/**
* 40th Anniversary スタイル設定CSS
* Created  on: 2020.9.18
* Modified on: 2020.10.28
**/
/**
 * 40th Anniversary トンマナ用CSS
 * Created on: 2020.9.18
 */
/*--------------------------------------------------------
　BREAK POINT
--------------------------------------------------------*/
/*--------------------------------------------------------
　COLOR
--------------------------------------------------------*/
/*--------------------------------------------------------
　FONT
--------------------------------------------------------*/
/*--------------------------------------------------------
　OTHERS
--------------------------------------------------------*/
/*--------------------------------------------------------
　BASE STYLE
--------------------------------------------------------*/
.allwrap {
  width: 100%;
  background: #FFFFFF;
  overflow: hidden;
  position: relative;
  margin: 0 auto;
}

.br {
  display: inline-block;
}

@media only screen and (min-width: 768px) {
  .sp-visible {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .pc-visible {
    display: none;
  }
}
/*--------------------------------------------------------
　HEADER
--------------------------------------------------------*/
.header__logo {
  width: 89px;
  height: 60px;
  padding: 15px 45px;
  box-sizing: content-box;
}
@media only screen and (max-width: 980px) {
  .header__logo {
    padding-left: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .header__logo {
    width: 44px;
    height: 30px;
    padding: 7px 20px;
  }
}

/*--------------------------------------------------------
　NAV
--------------------------------------------------------*/
.nav__block {
  width: 370px;
  height: 90px;
  position: fixed;
  top: 0;
  right: 45px;
  z-index: 10;
}
.nav__block ul {
  width: 100%;
  height: 90px;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
}
.nav__block ul::before, .nav__block ul::after {
  display: none;
}
.nav__block li {
  font-size: 20px;
}
.nav__block li a {
  font-family: 'DINPro-Bold';
  color: #00002F;
}
@media only screen and (max-width: 980px) {
  .nav__block {
    width: 55%;
    max-width: 420px;
    right: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .nav__btn {
    width: 45px;
    height: 45px;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 9;
    transition: all .3s ease-out;
  }
  .nav__btn::before {
    content: "";
    width: 24px;
    height: 5px;
    background: #00002F;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -7px;
    margin-left: -12px;
    transform: skewX(-30deg);
  }
  .nav__btn::after {
    content: "";
    width: 18px;
    height: 5px;
    background: #00002F;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: 2px;
    margin-left: -16px;
    transform: skewX(-30deg);
    transition: all .3s ease-out;
  }
  .nav__btn.is-open {
    transform: rotate(45deg);
  }
  .nav__btn.is-open::before {
    margin-top: -4px;
    margin-left: -15px;
    transform: skewX(-45deg);
  }
  .nav__btn.is-open::after {
    width: 24px;
    margin-top: -3px;
    transform: skewY(-45deg) rotate(-90deg);
  }
  .nav__block {
    width: 50%;
    max-width: 50%;
    height: auto;
    top: 0;
    right: 0;
    padding-top: 45px;
    z-index: 8;
  }
  .nav__block ul {
    height: auto;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: flex-end;
    align-items: flex-end;
    padding-top: 10px;
  }
  .nav__block ul li {
    width: 50vw;
    text-align: right;
    padding: 10px 20px;
  }
  .nav__block.is-mobile {
    transform: translate(100%, 0);
  }
  .nav__block.is-mobile ul li {
    opacity: 0;
    transform: translate(30px, 0);
  }
  .nav__block.is-mobile.is-open {
    transform: translate(0, 0);
    transition: transform .5s ease-in-out;
  }
  .nav__block.is-mobile.is-open ul li {
    opacity: 1;
    transform: translate(0, 0);
    transition: all .5s ease-in-out;
  }
  .nav__block.is-mobile.is-open ul li:nth-child(2) {
    transition-delay: .2s;
  }
  .nav__block.is-mobile.is-open ul li:nth-child(3) {
    transition-delay: .4s;
  }
  .nav__block.is-mobile.is-open ul li:nth-child(4) {
    transition-delay: .6s;
  }
  .nav__block.is-mobile.is-close {
    transform: translate(100%, 0);
    transition: transform .5s ease-in-out;
  }
  .nav__block.is-mobile.is-close ul li {
    opacity: 0;
    transform: translate(30px, 0);
  }
}

/*--------------------------------------------------------
　COMMON PARTS
--------------------------------------------------------*/
.c-btn-prev {
  width: 110px;
  height: 40px;
  background: none;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  position: absolute;
  top: auto;
  right: 45px;
  bottom: 20px;
  margin: 0;
  font-family: 'DINPro-Bold';
  font-size: 20px;
  color: #00002F;
  cursor: pointer;
  outline: none;
  transition: all .3s ease;
  z-index: 10;
}
.c-btn-prev::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent #00002F transparent transparent;
  border-width: 7px 20px 7px 0;
  margin-right: 10px;
  transition: all .3s ease;
}
.c-btn-prev:hover {
  color: #D91327;
}
.c-btn-prev:hover::before {
  border-right-color: #D91327;
}
@media only screen and (max-width: 980px) {
  .c-btn-prev {
    right: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .c-btn-prev {
    width: 80px;
    font-size: 16px;
  }
  .c-btn-prev::before {
    border-width: 5px 16px 5px 0;
  }
}
.c-btn-next {
  width: 110px;
  height: 40px;
  background: none;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  position: absolute;
  top: auto;
  right: 45px;
  bottom: 20px;
  margin: 0;
  font-family: 'DINPro-Bold';
  font-size: 20px;
  color: #00002F;
  cursor: pointer;
  outline: none;
  transition: all .3s ease;
  z-index: 10;
}
.c-btn-next::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent transparent transparent #00002F;
  border-width: 7px 0 7px 20px;
  margin-left: 10px;
  transition: all .3s ease;
}
.c-btn-next:hover {
  color: #D91327;
}
.c-btn-next:hover::after {
  border-left-color: #D91327;
}
@media only screen and (max-width: 980px) {
  .c-btn-next {
    right: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .c-btn-next {
    width: 80px;
    font-size: 16px;
  }
  .c-btn-next::after {
    border-width: 5px 0 5px 16px;
  }
}
.swiper-container-horizontal > .c-pagination {
  -webkit-writing-mode: vertical-lr;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  height: 100%;
  width: 20px;
  left: auto;
  bottom: auto;
  top: 0;
  right: 45px;
}
.swiper-container-horizontal > .c-pagination .swiper-pagination-bullet {
  margin: 10px 0;
  width: 20px;
  height: 20px;
  border-radius: 0;
  background: transparent;
  opacity: 1;
  font-family: 'DINPro-Bold';
  font-size: 18px;
  line-height: 1.1;
  color: #FFFFFF;
  outline: none;
}
.swiper-container-horizontal > .c-pagination .swiper-pagination-bullet-active {
  color: #F0E900;
}
@media only screen and (max-width: 980px) {
  .swiper-container-horizontal > .c-pagination {
    right: 20px;
  }
}
.c-location {
  width: 52px;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
  position: absolute;
  top: 90px;
  left: 45px;
}
.c-location span {
  display: block;
  font-family: 'DINPro-Bold';
  font-size: 20px;
  color: #00002F;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.c-location::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent transparent transparent #00002F;
  border-width: 7px 0 7px 20px;
}
@media only screen and (max-width: 980px) {
  .c-location {
    left: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .c-location {
    width: 35px;
    top: 45px;
    left: 5px;
  }
  .c-location span {
    font-size: 16px;
  }
  .c-location::after {
    border-width: 5px 0 5px 14px;
  }
}

/*--------------------------------------------------------
　MAIN
--------------------------------------------------------*/
.mv__block {
  position: relative;
  height: calc(100vh - 90px);
}
.mv__box {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.mv__box01 {
  background-image: url("/static/full/hellyhansen/hellytech40th_2020fw/images/main_img01.jpg");
}
.mv__box02 {
  background-image: url("/static/full/hellyhansen/hellytech40th_2020fw/images/main_img02.jpg");
}
.mv__box03 {
  background-image: url("/static/full/hellyhansen/hellytech40th_2020fw/images/main_img03.jpg");
}
.mv__box04 {
  background-image: url("/static/full/hellyhansen/hellytech40th_2020fw/images/main_img04.jpg");
}
.mv__box05 {
  background-image: url("/static/full/hellyhansen/hellytech40th_2020fw/images/main_img05.jpg");
}
.mv__box06 {
  background-image: url("/static/full/hellyhansen/hellytech40th_2020fw/images/main_img06.jpg");
}
.mv__logo {
  width: 300px;
  position: absolute;
  top: 50%;
  left: 45px;
  margin-top: -45px;
  padding: 9px 0;
  z-index: 11;
}
.mv__logo a {
  cursor: pointer;
  opacity: 1;
  transition: opacity .3s ease;
}
.mv__logo a:hover {
  opacity: .8;
}
.mv__logo.is-fixed {
  position: fixed;
  top: 0;
  margin-top: 0;
}
@media only screen and (max-width: 980px) {
  .mv__logo {
    width: 200px;
    padding: 21px 0;
    left: 20px;
  }
  .mv__box01 {
    background-image: url("/static/full/hellyhansen/hellytech40th_2020fw/images/main_img01_sp.jpg");
  }
  .mv__box02 {
    background-image: url("/static/full/hellyhansen/hellytech40th_2020fw/images/main_img02_sp.jpg");
  }
  .mv__box03 {
    background-image: url("/static/full/hellyhansen/hellytech40th_2020fw/images/main_img03_sp.jpg");
  }
  .mv__box04 {
    background-image: url("/static/full/hellyhansen/hellytech40th_2020fw/images/main_img04_sp.jpg");
  }
  .mv__box05 {
    background-image: url("/static/full/hellyhansen/hellytech40th_2020fw/images/main_img05_sp.jpg");
  }
  .mv__box06 {
    background-image: url("/static/full/hellyhansen/hellytech40th_2020fw/images/main_img06_sp.jpg");
  }
}
@media only screen and (max-width: 767px) {
  .mv__block {
    height: calc(100vh - 45px);
  }
  .mv__logo {
    width: 150px;
    padding: 10px 0;
    top: 22vw;
    margin-top: 0;
  }
}

.summary__block {
  padding: 90px 45px;
  overflow: hidden;
}
.summary__movie {
  width: 47%;
  float: right;
}
.summary__movie-inner {
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  position: relative;
  overflow: hidden;
}
.summary__movie-inner iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.summary__ttl {
  width: 50%;
}
.summary__ttl img {
  max-width: 525px;
}
.summary__txt {
  width: 50%;
  font-family: 'ヒラギノ角ゴ Pro', 'Hiragino Kaku Gothic Pro', 'Yu Gothic', 'メイリオ', 'Meiryo', "Avenir Next","Avenir", sans-serif;
  font-size: 18px;
  color: #00002F;
  line-height: 2;
  margin-top: 20px;
}
@media only screen and (max-width: 1280px) {
  .summary__txt {
    font-size: 1.40625vw;
  }
}
@media only screen and (max-width: 980px) {
  .summary__txt {
    font-size: 18px;
  }
}
@media only screen and (max-width: 767px) {
  .summary__txt {
    font-size: 14px;
  }
}
@media only screen and (max-width: 980px) {
  .summary__block {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .summary__ttl, .summary__txt {
    width: 100%;
  }
  .summary__movie {
    order: 1;
    width: 100%;
    float: none;
    margin-top: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .summary__block {
    padding: 45px 20px;
  }
  .summary__ttl {
    width: 80%;
  }
}

.about__block {
  position: relative;
  padding: 90px 0 90px 45px;
}
.about__slider {
  padding-left: 85px;
}
.about__slider .swiper-container {
  padding-bottom: 60px;
}
.about__slider .c-btn-prev, .about__slider .c-btn-next {
  bottom: 0;
}
.about__box {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.about__box-l, .about__box-r {
  width: 50%;
  height: 730px;
  padding: 3vw;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  position: relative;
}
.about__box-l .bg, .about__box-r .bg {
  width: calc(100% + 30px);
  height: 100%;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.about__box-l .cont, .about__box-r .cont {
  width: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
}
.about__box-r {
  margin-top: 30px;
}
.about__box-r .bg {
  background-image: url("/static/full/hellyhansen/hellytech40th_2020fw/images/about_bg.jpg");
}
.about__box-r .cont h3 {
  font-family: 'ヒラギノ明朝 ProN', "Hiragino Mincho ProN", YuMincho, "Yu Mincho", "serif";
  font-size: 28px;
  line-height: 1.7;
  color: #00002F;
  margin-bottom: 30px;
}
@media only screen and (max-width: 1280px) {
  .about__box-r .cont h3 {
    font-size: 2.1875vw;
  }
}
@media only screen and (max-width: 980px) {
  .about__box-r .cont h3 {
    font-size: 28px;
  }
}
@media only screen and (max-width: 767px) {
  .about__box-r .cont h3 {
    font-size: 24px;
  }
}
.about__box-r .cont p {
  font-family: 'ヒラギノ角ゴ Pro', 'Hiragino Kaku Gothic Pro', 'Yu Gothic', 'メイリオ', 'Meiryo', "Avenir Next","Avenir", sans-serif;
  font-size: 18px;
  line-height: 2.1;
  color: #00002F;
}
@media only screen and (max-width: 1280px) {
  .about__box-r .cont p {
    font-size: 1.40625vw;
  }
}
@media only screen and (max-width: 980px) {
  .about__box-r .cont p {
    font-size: 18px;
  }
}
@media only screen and (max-width: 767px) {
  .about__box-r .cont p {
    font-size: 14px;
  }
}
.about__box-r .cont dl {
  margin-top: 30px;
}
.about__box-r .cont dl dt {
  font-family: 'ヒラギノ角ゴ Pro', 'Hiragino Kaku Gothic Pro', 'Yu Gothic', 'メイリオ', 'Meiryo', "Avenir Next","Avenir", sans-serif;
  font-size: 11px;
  color: #00002F;
}
@media only screen and (max-width: 1280px) {
  .about__box-r .cont dl dt {
    font-size: 0.85938vw;
  }
}
@media only screen and (max-width: 980px) {
  .about__box-r .cont dl dt {
    font-size: 11px;
  }
}
@media only screen and (max-width: 767px) {
  .about__box-r .cont dl dt {
    font-size: 7px;
  }
}
.about__box-r .cont dl dt img {
  width: 142px;
  margin-right: 6px;
}
.about__box-r .cont dl dd {
  font-family: 'ヒラギノ角ゴ Pro', 'Hiragino Kaku Gothic Pro', 'Yu Gothic', 'メイリオ', 'Meiryo', "Avenir Next","Avenir", sans-serif;
  font-size: 11px;
  line-height: 1.7;
  color: #00002F;
  margin: 1em 0;
}
@media only screen and (max-width: 1280px) {
  .about__box-r .cont dl dd {
    font-size: 0.85938vw;
  }
}
@media only screen and (max-width: 980px) {
  .about__box-r .cont dl dd {
    font-size: 11px;
  }
}
@media only screen and (max-width: 767px) {
  .about__box-r .cont dl dd {
    font-size: 7px;
  }
}
.about__box01 .about__box-l .bg {
  background-image: url("/static/full/hellyhansen/hellytech40th_2020fw/images/about_img1.jpg");
}
.about__box02 .about__box-l .bg {
  background-image: url("/static/full/hellyhansen/hellytech40th_2020fw/images/about_img2.jpg");
}
.about__box03 .about__box-l {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.about__box03 .about__box-l .bg {
  background-image: url("/static/full/hellyhansen/hellytech40th_2020fw/images/about_img3.jpg");
}
.about__box03 .about__box-l .cont {
  width: 100%;
  max-width: 420px;
}
.about__box03 .about__box-l .cont dl dt:nth-of-type(4), .about__box03 .about__box-l .cont dl dt:nth-of-type(5) {
  margin-top: 20px;
}
@media only screen and (max-width: 980px) {
  .about__slider {
    padding-left: 45px;
  }
  .about__slider .swiper-container {
    padding-bottom: 0;
  }
  .about__slider .c-pagination {
    height: 730px;
  }
  .about__slider .c-btn-prev, .about__slider .c-btn-next {
    bottom: auto;
    top: 740px;
  }
  .about__box {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .about__box-l, .about__box-r {
    width: 100%;
  }
  .about__box-r {
    height: auto;
    margin-top: 60px;
    padding: 0 45px 30px 0;
  }
  .about__box-r .bg {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .about__block {
    padding: 45px 0 45px 20px;
  }
  .about__slider {
    padding-left: 25px;
  }
  .about__slider .c-pagination {
    height: 110vw;
  }
  .about__slider .c-btn-prev, .about__slider .c-btn-next {
    bottom: auto;
    top: 110vw;
  }
  .about__box-l {
    height: 110vw;
  }
  .about__box-r {
    margin-top: 40px;
    padding-right: 20px;
  }
  .about__box-r .cont h3 {
    font-size: 20px;
    margin-bottom: 15px;
  }
  .about__box-r .cont dl dt img {
    width: 110px;
  }
  .about__box-r .cont dl dt, .about__box-r .cont dl dd {
    font-size: 9px;
  }
  .about__box03 .about__box-l {
    padding: 20px 40px;
  }
}

.texture__box {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  padding-right: 45px;
  padding-top: 30px;
}
.texture__img {
  width: 311px;
  margin-right: 40px;
}
.texture__ttl {
  max-width: 380px;
  margin-bottom: 15px;
}
.texture__txt {
  font-family: 'ヒラギノ角ゴ Pro', 'Hiragino Kaku Gothic Pro', 'Yu Gothic', 'メイリオ', 'Meiryo', "Avenir Next","Avenir", sans-serif;
  font-size: 18px;
  line-height: 2.1;
  color: #00002F;
}
@media only screen and (max-width: 1280px) {
  .texture__txt {
    font-size: 1.40625vw;
  }
}
@media only screen and (max-width: 980px) {
  .texture__txt {
    font-size: 18px;
  }
}
@media only screen and (max-width: 767px) {
  .texture__txt {
    font-size: 14px;
  }
}
@media only screen and (max-width: 767px) {
  .texture__box {
    -webkit-flex-direction: column;
    flex-direction: column;
    padding-right: 20px;
  }
  .texture__img {
    width: 50%;
    margin: 0 auto 15px;
  }
  .texture__ttl {
    width: 80%;
  }
}

.history__block {
  position: relative;
  padding: 90px 0 90px 130px;
}
.history__slider .swiper-container {
  padding-bottom: 60px;
}
.history__slider .c-btn-prev, .history__slider .c-btn-next {
  bottom: 0;
}
.history__box {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.history__box-l, .history__box-r {
  width: 50%;
  height: 730px;
  padding: 3vw;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  position: relative;
}
.history__box-l .bg, .history__box-r .bg {
  width: calc(100% + 30px);
  height: 100%;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.history__box-l .cont, .history__box-r .cont {
  width: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
}
.history__box-r {
  margin-top: 30px;
}
.history__box-r .bg {
  background-image: url("/static/full/hellyhansen/hellytech40th_2020fw/images/history_bg.jpg");
}
.history__box-r .cont h3 {
  font-family: 'ヒラギノ明朝 ProN', "Hiragino Mincho ProN", YuMincho, "Yu Mincho", "serif";
  font-size: 28px;
  line-height: 1.7;
  color: #00002F;
  margin-top: 30px;
}
@media only screen and (max-width: 1280px) {
  .history__box-r .cont h3 {
    font-size: 2.1875vw;
  }
}
@media only screen and (max-width: 980px) {
  .history__box-r .cont h3 {
    font-size: 28px;
  }
}
@media only screen and (max-width: 767px) {
  .history__box-r .cont h3 {
    font-size: 24px;
  }
}
.history__box-r .cont h3:first-child {
  margin-top: 0;
}
.history__box-r .cont p {
  font-family: 'ヒラギノ角ゴ Pro', 'Hiragino Kaku Gothic Pro', 'Yu Gothic', 'メイリオ', 'Meiryo', "Avenir Next","Avenir", sans-serif;
  font-size: 18px;
  line-height: 2.1;
  color: #00002F;
}
@media only screen and (max-width: 1280px) {
  .history__box-r .cont p {
    font-size: 1.40625vw;
  }
}
@media only screen and (max-width: 980px) {
  .history__box-r .cont p {
    font-size: 18px;
  }
}
@media only screen and (max-width: 767px) {
  .history__box-r .cont p {
    font-size: 14px;
  }
}
.history__box01 .history__box-l .bg {
  background-image: url("/static/full/hellyhansen/hellytech40th_2020fw/images/history_img1.jpg");
}
.history__box02 .history__box-l .bg {
  background-image: url("/static/full/hellyhansen/hellytech40th_2020fw/images/history_img2.jpg");
}
.history__box03 .history__box-l .bg {
  background-image: url("/static/full/hellyhansen/hellytech40th_2020fw/images/history_img3.jpg");
}
.history__box04 .history__box-l .bg {
  background-image: url("/static/full/hellyhansen/hellytech40th_2020fw/images/history_img4.jpg");
}
.history__box05 .history__box-l .bg {
  background-image: url("/static/full/hellyhansen/hellytech40th_2020fw/images/history_img5.jpg");
}
.history__box06 .history__box-l .bg {
  background-image: url("/static/full/hellyhansen/hellytech40th_2020fw/images/history_img6.jpg");
}
.history__box07 .history__box-l .bg {
  background-image: url("/static/full/hellyhansen/hellytech40th_2020fw/images/history_img7.jpg");
}
.history__box08 .history__box-l .bg {
  background-image: url("/static/full/hellyhansen/hellytech40th_2020fw/images/history_img8.jpg");
}
.history__box09 .history__box-l .bg {
  background-image: url("/static/full/hellyhansen/hellytech40th_2020fw/images/history_img9.jpg");
}
@media only screen and (max-width: 980px) {
  .history__block {
    padding-left: 90px;
    padding-bottom: 0;
  }
  .history__slider .swiper-container {
    padding-bottom: 0;
  }
  .history__slider .c-pagination {
    height: 730px;
  }
  .history__slider .c-btn-prev, .history__slider .c-btn-next {
    bottom: auto;
    top: 740px;
  }
  .history__box {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .history__box-l, .history__box-r {
    width: 100%;
  }
  .history__box-r {
    height: auto;
    margin-top: 60px;
    padding: 0 45px 30px 0;
  }
  .history__box-r .bg {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .history__block {
    padding: 45px 0 0 45px;
  }
  .history__slider .c-pagination {
    height: 110vw;
  }
  .history__slider .c-btn-prev, .history__slider .c-btn-next {
    bottom: auto;
    top: 110vw;
  }
  .history__box-l {
    height: 110vw;
  }
  .history__box-r {
    margin-top: 40px;
    padding-right: 20px;
  }
  .history__box-r .cont h3 {
    font-size: 20px;
  }
}

.campaign__block {
  position: relative;
  padding: 90px 0 90px 130px;
  overflow: hidden;
}
.campaign__ttl {
  margin-right: 460px;
}
.campaign__ttl img {
  max-width: 622px;
}
.campaign__txt {
  font-family: 'ヒラギノ角ゴ Pro', 'Hiragino Kaku Gothic Pro', 'Yu Gothic', 'メイリオ', 'Meiryo', "Avenir Next","Avenir", sans-serif;
  font-size: 18px;
  line-height: 2.1;
  color: #00002F;
  margin: 20px 460px 20px 0;
}
@media only screen and (max-width: 1280px) {
  .campaign__txt {
    font-size: 1.40625vw;
  }
}
@media only screen and (max-width: 980px) {
  .campaign__txt {
    font-size: 18px;
  }
}
@media only screen and (max-width: 767px) {
  .campaign__txt {
    font-size: 14px;
  }
}
.campaign__img1 {
  width: 359px;
}
.campaign__img1 .note {
  font-family: 'ヒラギノ角ゴ Pro', 'Hiragino Kaku Gothic Pro', 'Yu Gothic', 'メイリオ', 'Meiryo', "Avenir Next","Avenir", sans-serif;
  font-size: 12px;
  color: #00002F;
  margin-top: 10px;
  text-align: center;
}
@media only screen and (max-width: 1280px) {
  .campaign__img1 .note {
    font-size: 0.9375vw;
  }
}
@media only screen and (max-width: 980px) {
  .campaign__img1 .note {
    font-size: 12px;
  }
}
@media only screen and (max-width: 767px) {
  .campaign__img1 .note {
    font-size: 8px;
  }
}
.campaign__img2 {
  width: 416px;
  float: right;
}
.campaign__img2 img {
  width: 530px;
}
@media only screen and (max-width: 980px) {
  .campaign__block {
    padding-left: 90px;
    padding-right: 45px;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  .campaign__ttl {
    width: 100%;
    margin-right: 0;
  }
  .campaign__txt {
    margin-right: 0;
  }
  .campaign__img1 {
    order: 2;
    width: 50%;
    margin-top: 20px;
  }
  .campaign__img2 {
    order: 1;
    width: 50%;
  }
  .campaign__img2 img {
    width: 140%;
  }
}
@media only screen and (max-width: 767px) {
  .campaign__block {
    padding: 45px 20px 0 45px;
  }
}

.products__block {
  position: relative;
  padding: 90px 0 90px 130px;
}
.products__block a {
  cursor: pointer;
  opacity: 1;
  transition: opacity .3s ease;
}
.products__block a:hover {
  opacity: .8;
}
.products__slider .swiper-button-next, .products__slider .swiper-button-prev {
  width: 44px;
  height: 100%;
  top: 0;
  margin-top: 0;
  background: none;
  outline: none;
}
.products__slider .swiper-button-next {
  right: 0;
}
.products__slider .swiper-button-next::before {
  content: "";
  width: 30px;
  height: 30px;
  border-top: 3px solid #F0E800;
  border-right: 3px solid #F0E800;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-80%, -50%) rotate(45deg);
}
.products__slider .swiper-button-prev {
  left: 0;
}
.products__slider .swiper-button-prev::before {
  content: "";
  width: 30px;
  height: 30px;
  border-bottom: 3px solid #F0E800;
  border-left: 3px solid #F0E800;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-20%, -50%) rotate(45deg);
}
.products__box {
  width: 344px;
}
.products__txtbox {
  margin: 10px 10px 0;
  position: relative;
}
.products__txtbox span {
  display: block;
  font-size: 20px;
  line-height: 1.2;
  color: #00002F;
}
.products__txtbox .name {
  font-family: 'DINPro-Bold';
}
.products__txtbox .number, .products__txtbox .price {
  font-family: 'DINPro-Light';
}
.products__txtbox .genre {
  font-family: 'DINPro-Bold';
  font-size: 20px;
  line-height: 1.2;
  color: #FFFFFF;
  background: #00002F;
  padding: 0 20px;
  position: absolute;
  bottom: 0;
  right: 0;
}
@media only screen and (max-width: 980px) {
  .products__block {
    padding-left: 90px;
  }
}
@media only screen and (max-width: 767px) {
  .products__block {
    padding: 45px 0 90px 45px;
  }
  .products__box {
    width: 54vw;
  }
  .products__txtbox span {
    font-size: 14px;
  }
  .products__txtbox .genre {
    position: static;
    display: inline-block;
    font-size: 14px;
    text-align: center;
    margin-top: 5px;
  }
}

/*--------------------------------------------------------
　FOOTER
--------------------------------------------------------*/
.footer__block {
  background: url("/static/full/hellyhansen/hellytech40th_2020fw/images/footer_bg.jpg") no-repeat center center/cover;
}
.footer__logo {
  width: 97px;
  margin: 0 auto;
  padding: 140px 0;
}
@media only screen and (max-width: 980px) {
  .footer__logo {
    padding: 70px 0;
  }
}
@media only screen and (max-width: 767px) {
  .footer__logo {
    width: 62px;
    padding: 35px 0;
  }
}

/*--------------------------------------------------------
　SCROLL ANIMATION
--------------------------------------------------------*/
.is-anm {
  opacity: 0;
  transition: opacity 0.8s ease-in-out, all 0.8s ease;
}
.is-anm.is-done {
  opacity: 1;
  transform: translate(0, 0);
}

.fade-up {
  transform: translate(0, 30px);
}

.fade-down {
  transform: translate(0, -30px);
}

.fade-left {
  transform: translate(-20px, 0);
}

.fade-right {
  transform: translate(20px, 0);
}

.fade-scale {
  transform: scale(0.5);
  transition: all 0.8s cubic-bezier(0.65, -0.55, 0.265, 1.55);
}
.fade-scale.is-done {
  transform: scale(1);
}
