@charset "UTF-8";
/**
* Helly Hansen × Atlantic Pacific Japan スタイル設定CSS
* Created  on: 2021.3.4
* Modified on: 2021.3.4
**/
/**
 * Helly Hansen × Atlantic Pacific Japan トンマナ用CSS
 * Created on: 2021.3.4
 */
/*--------------------------------------------------------
　BREAK POINT
--------------------------------------------------------*/
/*--------------------------------------------------------
　COLOR
--------------------------------------------------------*/
/*--------------------------------------------------------
　FONT
--------------------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@300;700&display=swap");
/*--------------------------------------------------------
　OTHERS
--------------------------------------------------------*/
/*--------------------------------------------------------
　BASE STYLE
--------------------------------------------------------*/
.allwrap {
  width: 100%;
  background: #FFFFFF;
  overflow: hidden;
  position: relative;
  margin: 0 auto;
  font-family: 'Noto Serif JP', serif;
  font-weight: 300;
  color: #484848;
}

.br {
  display: inline-block;
}

@media only screen and (min-width: 769px) {
  .sp-visible {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  .pc-visible {
    display: none;
  }
}
/*--------------------------------------------------------
　HEADER
--------------------------------------------------------*/
.header__block {
  width: 100%;
  height: 130px;
  padding: 0 40px;
  box-sizing: border-box;
  background: #FFFFFF;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
}
.header__ttl {
  font-size: 22px;
}
.header__ttl .subttl {
  font-size: 15px;
}
.header__menu {
  display: none;
}
.header__nav {
  width: 50%;
}
.header__nav ul {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
}
.header__nav ul::before, .header__nav ul::after {
  display: none;
}
.header__nav ul li a {
  font-family: 'DINPro-Medium';
  font-size: 17px;
}
.header__nav ul li a:link, .header__nav ul li a:visited {
  color: #484848;
}
.header__nav ul img {
  width: 50px;
}
@media only screen and (min-width: 769px) {
  .header__block {
    transform: translateY(-130px);
    transition: transform .4s ease;
  }
  .header__block.is-show {
    transform: translateY(0);
  }
}
@media only screen and (max-width: 768px) {
  .header__block {
    background: transparent;
    height: auto;
    padding: 20px;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
  }
  .header__ttl {
    display: none;
  }
  .header__menu {
    display: block;
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.7);
    position: relative;
  }
  @keyframes btn-bar01 {
    0% {
      transform: translateY(7px) rotate(45deg);
    }
    50% {
      transform: translateY(7px) rotate(0);
    }
    100% {
      transform: translateY(0) rotate(0);
    }
  }
  @keyframes btn-bar01-open {
    0% {
      transform: translateY(0) rotate(0);
    }
    50% {
      transform: translateY(7px) rotate(0);
    }
    100% {
      transform: translateY(7px) rotate(45deg);
    }
  }
  @keyframes btn-bar02 {
    0% {
      transform: translateY(-7px) rotate(-45deg);
    }
    50% {
      transform: translateY(-7px) rotate(0);
    }
    100% {
      transform: translateY(0) rotate(0);
    }
  }
  @keyframes btn-bar02-open {
    0% {
      transform: translateY(0) rotate(0);
    }
    50% {
      transform: translateY(-7px) rotate(0);
    }
    100% {
      transform: translateY(-7px) rotate(-45deg);
    }
  }
  .header__menu span {
    display: block;
    width: 18px;
    height: 2px;
    background: #5473A7;
    position: absolute;
    top: 50%;
    left: 6px;
    margin-top: -1px;
    transition: opacity ease .25s .25s;
  }
  .header__menu::before, .header__menu::after {
    content: "";
    display: block;
    width: 18px;
    height: 2px;
    background: #5473A7;
    position: absolute;
    left: 6px;
  }
  .header__menu::before {
    top: 7px;
    animation: btn-bar01 .75s forwards;
  }
  .header__menu::after {
    bottom: 7px;
    animation: btn-bar02 .75s forwards;
  }
  .header__menu.is-open span {
    opacity: 0;
  }
  .header__menu.is-open::before {
    animation: btn-bar01-open .75s forwards;
  }
  .header__menu.is-open::after {
    animation: btn-bar02-open .75s forwards;
  }
  .header__nav {
    width: 120px;
    padding: 10px;
    position: absolute;
    top: 70px;
    right: 20px;
    background: rgba(255, 255, 255, 0.5);
    visibility: hidden;
    opacity: 0;
    transition: opacity ease .1s;
  }
  .header__nav ul {
    display: block;
  }
  .header__nav ul li a {
    font-size: 13px;
    text-align: right;
    padding: 10px 0;
  }
  .header__nav ul img {
    width: 28px;
  }
  .header__nav.is-open {
    visibility: visible;
    opacity: 1;
    transition: opacity ease .4s;
  }
}

/*--------------------------------------------------------
　MAIN
--------------------------------------------------------*/
.first__eyecatch {
  width: 100%;
  height: 43.8vw;
  max-height: 100vh;
  background: url(/static/full/hellyhansen/workwear_atlanticpacific/images/main_img.jpg) no-repeat center center/cover;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: center;
  align-items: center;
}
.first__ttl {
  padding-left: 100px;
  font-size: 34px;
  color: #FFFFFF;
}
.first__ttl .subttl {
  font-size: 20px;
}
.first__summary {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 20px;
  font-size: 17px;
  line-height: 1.9;
}
@media only screen and (max-width: 768px) {
  .first__eyecatch {
    height: 170vw;
    background: url(/static/full/hellyhansen/workwear_atlanticpacific/images/main_img_sp.jpg) no-repeat center center/cover;
  }
  .first__ttl {
    font-size: 22px;
    padding-left: 20px;
    margin-top: -46vh;
  }
  .first__ttl .subttl {
    font-size: 13px;
  }
  .first__summary {
    padding: 40px;
    font-size: 15px;
    line-height: 2.1;
  }
}

.profile__block {
  padding: 0 20px;
  margin-bottom: 200px;
}
.profile__block-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 0 40px 40px;
  border-left: 3px solid #484848;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: stretch;
  align-items: stretch;
  position: relative;
}
.profile__block-inner::before {
  content: "";
  width: 100vw;
  height: 3px;
  background: #484848;
  position: absolute;
  top: 0;
  left: 0;
}
.profile__block-inner::after {
  content: "";
  width: 100vw;
  height: 3px;
  background: #484848;
  position: absolute;
  bottom: 0;
  left: 0;
}
.profile__ttl {
  width: 100%;
  font-family: 'DINPro-Medium';
  font-size: 19px;
}
.profile__name {
  width: 100%;
  font-family: 'DINPro-Medium';
  font-size: 24px;
  margin-top: 10px;
  padding-top: 5px;
  padding-bottom: 20px;
  position: relative;
}
.profile__name::before {
  content: "";
  width: 14px;
  height: 1px;
  background: #484848;
  position: absolute;
  top: 0;
  left: 0;
}
.profile__img01 {
  width: 57.4%;
}
.profile__txtbox {
  width: 37.8%;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.profile__txtbox p {
  font-size: 17px;
  line-height: 1.9;
}
.profile__txtbox a {
  font-family: inherit;
  display: inline-block;
  text-decoration: underline;
}
.profile__img02 {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.profile__img02 figure {
  width: 54.4%;
}
.profile__img02 p {
  width: 37.7%;
}
@media only screen and (max-width: 768px) {
  .profile__block {
    margin-bottom: 100px;
  }
  .profile__block-inner {
    display: block;
    padding-bottom: 80px;
  }
  .profile__ttl {
    font-size: 15px;
  }
  .profile__name {
    font-size: 20px;
  }
  .profile__img01 {
    width: 100%;
  }
  .profile__txtbox {
    display: block;
    width: 100%;
    padding-right: 20px;
    box-sizing: border-box;
  }
  .profile__txtbox p {
    font-size: 15px;
    line-height: 2.1;
    margin: 1.5em 0;
  }
  .profile__img02 {
    display: block;
  }
  .profile__img02 figure {
    width: 100%;
  }
  .profile__img02 p {
    width: 100%;
    margin-bottom: 0;
  }
}

.project__block {
  padding: 130px 20px 0;
  margin-top: -130px;
  margin-bottom: 100px;
}
.project__ttl {
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  font-size: 26px;
  padding-top: 50px;
  margin-bottom: 65px;
}
.project__txtbox p {
  font-size: 17px;
  line-height: 1.9;
  margin-top: 1.5em;
}
.project__box {
  max-width: 1280px;
  margin: 0 auto;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.project__box img {
  vertical-align: bottom;
}
.project__box.project01 .box-L {
  width: 44%;
  position: relative;
}
.project__box.project01 .box-L::before {
  content: "";
  width: 3px;
  height: 50px;
  background: #484848;
  position: absolute;
  top: 0;
  right: 0;
}
.project__box.project01 .box-L::after {
  content: "";
  width: 50vw;
  height: 3px;
  background: #484848;
  position: absolute;
  top: 0;
  right: 0;
}
.project__box.project01 .box-R {
  width: 52%;
}
.project__box.project01 .project__txtbox {
  width: 75%;
}
.project__box.project01 .img01 {
  margin-bottom: 20px;
}
.project__box.project02 {
  margin-top: 200px;
  position: relative;
}
.project__box.project02::before {
  content: "";
  width: 3px;
  height: 50px;
  background: #484848;
  position: absolute;
  top: 0;
  right: 0;
}
.project__box.project02::after {
  content: "";
  width: 100vw;
  height: 3px;
  background: #484848;
  position: absolute;
  top: 0;
  right: 0;
}
.project__box.project02 .box-L {
  width: 44%;
}
.project__box.project02 .box-R {
  width: 52%;
}
.project__box.project02 .project__ttl {
  width: 100%;
  text-align: right;
}
.project__box.project02 .project__txtbox p:first-child {
  margin-top: 0;
}
.project__box.project03 {
  margin-top: 200px;
}
.project__box.project03 .box-L {
  width: 44%;
}
.project__box.project03 .box-L:first-of-type {
  position: relative;
}
.project__box.project03 .box-L:first-of-type::before {
  content: "";
  width: 3px;
  height: 50px;
  background: #484848;
  position: absolute;
  top: 0;
  right: 0;
}
.project__box.project03 .box-L:first-of-type::after {
  content: "";
  width: 50vw;
  height: 3px;
  background: #484848;
  position: absolute;
  top: 0;
  right: 0;
}
.project__box.project03 .box-L:nth-child(3) {
  -webkit-align-self: flex-end;
  align-self: flex-end;
}
.project__box.project03 .box-L .project__txtbox {
  width: 75%;
}
.project__box.project03 .box-R {
  width: 52%;
}
.project__box.project03 .img02 {
  margin-bottom: 70px;
}
.project__box.project03 .img03, .project__box.project03 .img04, .project__box.project03 .img05, .project__box.project03 .img06 {
  width: 75%;
}
.project__box.project03 .img03 {
  margin-top: 100px;
}
.project__box.project03 .img07 {
  margin-top: 70px;
}
.project__box.project03 .img08 {
  margin-top: 70px;
}
@media only screen and (max-width: 768px) {
  .project__block {
    margin: 0 0 180px;
    padding: 0;
  }
  .project__ttl {
    font-size: 20px;
    padding: 50px 40px 0;
  }
  .project__txtbox p {
    font-size: 15px;
    line-height: 2.1;
    margin-right: 40px;
    margin-left: 40px;
  }
  .project__box.project01 .box-L, .project__box.project01 .box-R {
    width: 100%;
  }
  .project__box.project01 .box-L::before {
    right: 40px;
  }
  .project__box.project01 .box-L::after {
    width: 100vw;
    right: 40px;
  }
  .project__box.project01 .project__txtbox {
    width: 100%;
  }
  .project__box.project01 .img01 {
    margin-bottom: 90px;
  }
  .project__box.project01 .img02 {
    margin-top: 60px;
    margin-bottom: 60px;
  }
  .project__box.project02 {
    margin-top: 90px;
  }
  .project__box.project02::before, .project__box.project02::after {
    right: 40px;
  }
  .project__box.project02 .box-L, .project__box.project02 .box-R {
    width: 100%;
  }
  .project__box.project02 .project__ttl {
    text-align: left;
  }
  .project__box.project02 .img01, .project__box.project02 .img02 {
    margin-top: 60px;
    margin-bottom: 60px;
  }
  .project__box.project03 {
    margin-top: 90px;
  }
  .project__box.project03 .box-L, .project__box.project03 .box-R {
    width: 100%;
  }
  .project__box.project03 .box-L:first-of-type::before {
    right: 40px;
  }
  .project__box.project03 .box-L:first-of-type::after {
    width: 100vw;
    right: 40px;
  }
  .project__box.project03 .box-L .project__txtbox {
    width: 100%;
  }
  .project__box.project03 .img01 {
    margin-bottom: 60px;
  }
  .project__box.project03 .img03, .project__box.project03 .img04, .project__box.project03 .img05, .project__box.project03 .img06 {
    width: 100%;
    margin: 0;
  }
  .project__box.project03 .img02 {
    margin-bottom: 0;
    margin-top: 60px;
  }
  .project__box.project03 .img04 {
    margin-bottom: 40px;
  }
  .project__box.project03 .img05 {
    margin-top: 60px;
  }
  .project__box.project03 .img06 {
    margin-bottom: 40px;
  }
  .project__box.project03 .img07 {
    margin-top: 60px;
    margin-bottom: 40px;
  }
  .project__box.project03 .img08 {
    margin-top: 60px;
  }
}

.wear__block {
  padding: 130px 20px 0;
  margin-top: -130px;
  margin-bottom: 100px;
}
.wear__block-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.wear__ttl {
  width: 100%;
  font-family: 'DINPro-Medium';
  font-size: 19px;
}
.wear__box {
  width: 42%;
}
.wear__box .swiper-container {
  width: 64%;
  max-width: 400px;
  margin: 0 auto;
  padding-bottom: 60px;
}
.wear__box .swiper-container > .swiper-pagination-bullets {
  bottom: 20px;
}
.wear__box .swiper-container > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 8px;
}
.wear__box .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border: 1px solid #707070;
  outline: none;
  background: #FFFFFF;
  opacity: 1;
}
.wear__box .swiper-pagination-bullet-active {
  background: #707070;
}
.wear__name {
  width: 100%;
  font-family: 'DINPro-Medium';
  font-size: 24px;
  margin-top: 10px;
  padding-top: 5px;
  padding-bottom: 20px;
  position: relative;
}
.wear__name::before {
  content: "";
  width: 14px;
  height: 1px;
  background: #484848;
  position: absolute;
  top: 0;
  left: 0;
}
.wear__txt {
  font-size: 17px;
  line-height: 1.9;
}
@media only screen and (max-width: 768px) {
  .wear__block {
    margin: 0;
    padding: 0;
  }
  .wear__block-inner {
    display: block;
    padding: 0 60px;
  }
  .wear__ttl {
    font-size: 15px;
  }
  .wear__box {
    width: 100%;
    margin-bottom: 90px;
  }
  .wear__box .swiper-container {
    width: 100%;
  }
  .wear__name {
    font-size: 20px;
  }
  .wear__txt {
    font-size: 15px;
    line-height: 2.1;
  }
}

.programs__block {
  padding: 130px 0 0;
  margin-top: -130px;
}
.programs__block-inner {
  padding: 50px 20px;
  background: #D5DDE2;
  position: relative;
  text-align: center;
}
.programs__ttl {
  text-align: center;
}
.programs__ttl span {
  font-family: 'DINPro-Medium';
  font-size: 32px;
  line-height: 1;
  color: #FFFFFF;
  display: inline-block;
  position: relative;
  z-index: 1;
}
.programs__ttl span::before {
  content: "";
  width: 100%;
  height: 8px;
  background: #9CA8AF;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.programs__summary {
  font-size: 15px;
  color: #FFFFFF;
  background: #9CA8AF;
  display: inline-block;
  margin: 30px 0 80px;
  padding: 2px 4px 3px;
}
.programs__lists {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.programs__lists::before, .programs__lists::after {
  display: none;
}
.programs__box {
  width: 30%;
  padding: 20px 2% 0 5%;
  box-sizing: border-box;
  text-align: left;
  position: relative;
}
.programs__box::before {
  content: "";
  width: 3px;
  height: 50px;
  background: #FFFFFF;
  position: absolute;
  top: 0;
  right: 0;
}
.programs__box::after {
  content: "";
  width: 100%;
  height: 3px;
  background: #FFFFFF;
  position: absolute;
  top: 0;
  right: 0;
}
.programs__date, .programs__name, .programs__txt {
  font-family: 'Noto Serif JP', serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 2.1;
  color: #FFFFFF;
  background: #9CA8AF;
  margin-bottom: 1em;
  padding: 0 4px;
}
.programs__date, .programs__name {
  display: inline-block;
}
@media only screen and (min-width: 769px) {
  .programs__box:nth-child(2) {
    transition-delay: .2s;
  }
  .programs__box:nth-child(3) {
    transition-delay: .4s;
  }
}
@media only screen and (max-width: 768px) {
  .programs__block {
    margin: 0;
    padding: 0;
  }
  .programs__block-inner {
    padding: 50px 60px;
  }
  .programs__summary {
    display: block;
    font-size: 15px;
    line-height: 2.1;
    text-align: left;
    padding: 0 4px 1px;
    margin-bottom: 0;
  }
  .programs__lists {
    display: block;
  }
  .programs__box {
    width: 100%;
    margin-top: 60px;
    padding: 20px 0 0;
  }
  .programs__box::before {
    right: -20px;
  }
  .programs__box::after {
    width: 100vw;
    right: -20px;
  }
  .programs__date, .programs__name, .programs__txt {
    font-size: 15px;
    line-height: 2.1;
  }
  .programs__name {
    display: block;
  }
}

/*--------------------------------------------------------
　FOOTER
--------------------------------------------------------*/
.footer__block {
  text-align: center;
  padding: 100px 0;
}
.footer__logo {
  width: 185px;
  margin: 0 auto;
}
.footer__logo a {
  cursor: pointer;
  opacity: 1;
  transition: opacity .3s ease;
}
.footer__logo a:hover {
  opacity: .7;
}
@media only screen and (max-width: 768px) {
  .footer__block {
    padding: 40px 0;
  }
  .footer__logo {
    width: 100px;
  }
}

/*--------------------------------------------------------
　SCROLL ANIMATION
--------------------------------------------------------*/
.fade-up {
  opacity: 0;
  transform: translate(0, 50px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.fade-up.is-done {
  opacity: 1;
  transform: translate(0, 0);
}

.fade-down {
  opacity: 0;
  transform: translate(0, -50px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.fade-down.is-done {
  opacity: 1;
  transform: translate(0, 0);
}

.fade-left {
  opacity: 0;
  transform: translate(-30px, 0);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.fade-left.is-done {
  opacity: 1;
  transform: translate(0, 0);
}

.fade-right {
  opacity: 0;
  transform: translate(30px, 0);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.fade-right.first__ttl {
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.fade-right.is-done {
  opacity: 1;
  transform: translate(0, 0);
}

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

.fade-img {
  overflow: hidden;
}
.fade-img img, .fade-img sourse {
  will-change: transform;
  opacity: 0;
  transform: scale(1.1);
  transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.fade-img.is-done img, .fade-img.is-done sourse {
  opacity: 1;
  transform: scale(1);
}

.fade-line::before {
  transform: scale(1, 0);
  transition: all 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform-origin: right bottom;
  transition-delay: .3s;
}
.fade-line::after {
  transform: scale(0, 1);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform-origin: right top;
  transition-delay: .4s;
}
.fade-line.is-done::before, .fade-line.is-done::after {
  transform: scale(1, 1);
}
