@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Cossette+Titre:wght@400;700&family=Oswald:wght@200..700&family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap");
body {
  background-image: url("../images/hiroto-ogiwara/bg.jpg");
  background-repeat: repeat;
  color: #fff;
  overflow: unset;
}

/*=============================================
 * .clearfix
 *=============================================*/
.clearfix {
  zoom: 1 !important;
}

.clearfix:after {
  content: "." !important;
  clear: both !important;
  display: block !important;
  height: 0 !important;
  visibility: hidden !important;
}

/* REMODAL */
html.remodal-is-locked {
  overflow: hidden;
  touch-action: none;
}

.remodal,
[data-remodal-id] {
  display: none;
}

.remodal-overlay {
  position: fixed;
  z-index: 9999;
  top: -5000px;
  right: -5000px;
  bottom: -5000px;
  left: -5000px;
  display: none;
}

.remodal-wrapper {
  position: fixed;
  z-index: 10000;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.remodal-wrapper:after {
  display: inline-block;
  height: 100%;
  margin-left: -0.05em;
  content: "";
}

.remodal-overlay,
.remodal-wrapper {
  backface-visibility: hidden;
}

.remodal-is-initialized {
  /* Disable Anti-FOUC */
  display: inline-block;
}

.remodal-bg.remodal-is-opening,
.remodal-bg.remodal-is-opened {
  filter: blur(3px);
}

.remodal-overlay {
  background: url("../images/hiroto-ogiwara/bg.jpg");
}

.remodal-overlay.remodal-is-opening,
.remodal-overlay.remodal-is-closing {
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
}

.remodal-overlay.remodal-is-opening {
  animation-name: remodal-overlay-opening-keyframes;
}

.remodal-overlay.remodal-is-closing {
  animation-name: remodal-overlay-closing-keyframes;
}

.remodal.remodal-is-opening,
.remodal.remodal-is-closing {
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
}

.remodal.remodal-is-opening {
  animation-name: remodal-opening-keyframes;
}

.remodal.remodal-is-closing {
  animation-name: remodal-closing-keyframes;
}

.remodal,
.remodal-wrapper:after {
  vertical-align: middle;
}

.remodal-close:hover,
.remodal-close:focus {
  color: #2b2e38;
}

.remodal-confirm,
.remodal-cancel {
  font: inherit;
  display: inline-block;
  overflow: visible;
  min-width: 110px;
  margin: 0;
  padding: 12px 0;
  cursor: pointer;
  transition: background 0.2s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  border: 0;
  outline: 0;
}

.remodal-confirm {
  color: #fff;
  background: #81c784;
}

.remodal-confirm:hover,
.remodal-confirm:focus {
  background: #66bb6a;
}

.remodal-cancel {
  color: #fff;
  background: #e57373;
}

.remodal-cancel:hover,
.remodal-cancel:focus {
  background: #ef5350;
}

.remodal-confirm::-moz-focus-inner,
.remodal-cancel::-moz-focus-inner,
.remodal-close::-moz-focus-inner {
  padding: 0;
  border: 0;
}

@keyframes remodal-opening-keyframes {
  from {
    transform: scale(1.05);
    opacity: 0;
  }
  to {
    transform: none;
    opacity: 1;
    filter: blur(0);
  }
}

@keyframes remodal-closing-keyframes {
  from {
    transform: scale(1);
    opacity: 1;
  }
  to {
    transform: scale(0.95);
    opacity: 0;
    filter: blur(0);
  }
}

@keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

.remodal-wrapper {
  padding: 0;
  text-align: center;
}

.remodal {
  position: relative;
  outline: none;
  text-size-adjust: 100%;
  width: 100%;
  padding: 0;
  transform: translate3d(0, 0, 0);
  color: #000;
  background: #fff;
}

.remodal-close {
  appearance: auto;
  display: block;
  overflow: visible;
  width: 8.5vw;
  height: 13vw;
  margin: 0;
  padding: 0;
  cursor: pointer;
  transition: 0.2s all ease-in-out;
  text-decoration: none;
  border: 0;
  outline: 0;
  background: transparent;
  background-image: url("../images/hiroto-ogiwara/close2.png");
  background-repeat: no-repeat;
  background-size: 100%;
  top: 0;
  right: 0;
  position: sticky;
  margin: 0 6vw -10vw auto;
  text-align: right;
  z-index: 9999;
}

@media screen and (min-width: 768px) {
  .remodal-close {
    width: 4.5vw;
    height: 6.3vw;
    margin: 0 4.9vw -2.4vw auto;
  }
}

@media screen and (min-width: 1440px) {
  .remodal-close {
    width: 65px;
    height: 90px;
    margin: 0 71px -34px auto;
  }
}

/*WOW*/
.animated {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  0% {
    transform: translateY(-20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}

@keyframes fadeInDown {
  0% {
    transform: translateY(-20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInUp {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}

@keyframes fadeInUp {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInLeft {
  0% {
    transform: translateX(-20px);
    opacity: 0;
  }
  100% {
    transform: translateX(0px);
    opacity: 1;
  }
}

@keyframes fadeInLeft {
  0% {
    transform: translateX(-20px);
    opacity: 0;
  }
  100% {
    transform: translateX(0px);
    opacity: 1;
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInRight {
  0% {
    transform: translateX(20px);
    opacity: 0;
  }
  100% {
    transform: translateX(0px);
    opacity: 1;
  }
}

@keyframes fadeInRight {
  0% {
    transform: translateX(20px);
    opacity: 0;
  }
  100% {
    transform: translateX(0px);
    opacity: 1;
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

/*FONT*/
.cossette-titre {
  font-family: "Cossette Titre", sans-serif;
  font-style: normal;
}

.zen-kaku-gothic-new {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-style: normal;
}

.bebas-neue {
  font-family: "Bebas Neue", sans-serif;
  font-style: normal;
}

.oswald {
  font-family: "Oswald", sans-serif;
  font-style: normal;
}

.cl-blue {
  color: #3d5ddb;
}

.l-main {
  position: relative;
}

.wrapper {
  width: 100%;
}

.wrap {
  width: 100%;
  margin: 0 auto;
  padding: 0 4.2vw;
}

.bg-para {
  width: 100%;
  position: relative;
  z-index: 1;
}

.bg-para .img-parallax {
  clip: rect(0, auto, auto, 0);
  margin-bottom: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: -1;
}

.bg-para .img-parallax img {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  padding: 0;
  margin: 0;
  object-fit: cover;
  z-index: 0;
  transform: translateZ(0);
}

.pc {
  display: none;
}

@media screen and (min-width: 768px) {
  .sp {
    display: none;
  }
  .pc {
    display: block;
  }
  .wrap {
    max-width: calc(1000px + 4.2vw);
    padding: 0 2.1vw;
  }
}

@media screen and (min-width: 1440px) {
  .wrap {
    max-width: 1000px;
    padding: 0;
  }
}

.content img {
  width: 100%;
  height: auto;
}

.kv__wrap {
  padding-bottom: 6.5vw;
  overflow: hidden;
}

.kv__wrap .kv-top {
  background: #000;
  padding: 1.6vw 3.1vw;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 9;
}

.kv__wrap .kv-top .kv__logo {
  width: 25.9vw;
}

.kv__wrap .kv-main {
  height: 164.063vw;
  position: relative;
}

.kv__wrap .kv-main:before {
  content: '';
  width: 10.5vw;
  height: 1px;
  background: #fff;
  position: absolute;
  left: 0;
  top: 45vw;
}

.kv__wrap .kv-main:after {
  content: '';
  width: 10.5vw;
  height: 1px;
  background: #fff;
  position: absolute;
  right: 0;
  bottom: 1vw;
}

.kv__wrap .kv-main .moon {
  width: 96.7vw;
  margin: 0 auto;
}

.kv__wrap .kv-main .kv-h2 {
  width: 86vw;
  margin: 28.9vw 0 0 7vw;
  position: relative;
  z-index: 1;
}

.kv__wrap .kv-main .ttl1 {
  font-size: 2.6vw;
  line-height: 3vw;
  letter-spacing: 0;
  position: absolute;
  left: 13.5vw;
  top: 44vw;
  text-transform: uppercase;
}

.kv__wrap .kv-main .img1 {
  width: 33.9vw;
  position: absolute;
  left: -4vw;
  top: 51vw;
  z-index: 0;
}

.kv__wrap .kv-main .img2 {
  width: 53vw;
  position: absolute;
  left: 17.2vw;
  bottom: 10vw;
  z-index: 2;
}

.kv__wrap .kv-main .img3 {
  width: 32.6vw;
  position: absolute;
  right: 0;
  bottom: 28vw;
  z-index: 0;
}

.kv__wrap .kv-main .ttl2 {
  font-size: 2.6vw;
  line-height: 3vw;
  letter-spacing: 0;
  position: absolute;
  right: 13vw;
  bottom: -0.5vw;
  text-transform: uppercase;
}

.kv__wrap .kv-main .img4 {
  width: 35.4vw;
  position: absolute;
  right: -1vw;
  top: 36vw;
  z-index: 2;
}

.kv__wrap .kv-main .deco1 {
  width: 20.4vw;
  position: absolute;
  left: 3.6vw;
  top: 25.3vw;
  z-index: 3;
}

.kv__wrap .kv-main .deco2 {
  width: 21.4vw;
  position: absolute;
  left: 0;
  top: 112.4vw;
  z-index: 3;
}

.kv__wrap .kv-main .deco3 {
  width: 10.3vw;
  right: 17.4vw;
  bottom: 19.5vw;
  position: absolute;
  z-index: 3;
}

.kv__wrap .kv-main .deco4 {
  width: 9.0vw;
  left: 46.4vw;
  top: 49.9vw;
  position: absolute;
  z-index: 3;
}

@media screen and (min-width: 768px) {
  .kv__wrap {
    padding-bottom: 3.8vw;
    position: relative;
    z-index: 1;
  }
  .kv__wrap .kv-top {
    padding: 0.8vw 1.7vw;
  }
  .kv__wrap .kv-top .kv__logo {
    width: 13.8vw;
  }
  .kv__wrap .kv-main {
    max-width: 1440px;
    width: 100%;
    height: 68.75vw;
    margin: 0 auto;
    position: relative;
  }
  .kv__wrap .kv-main .moon {
    width: 69.4vw;
    position: absolute;
    left: 15.4vw !important;
    top: 0 !important;
    margin: 0;
  }
  .kv__wrap .kv-main .kv-h2 {
    width: 58.1vw;
    position: absolute;
    top: 19.26vw !important;
    left: 21vw !important;
    margin: 0;
  }
  .kv__wrap .kv-main .ttl1 {
    font-size: 1.1vw;
    line-height: 1.4vw;
    left: 18.1vw !important;
    top: 26.3vw !important;
  }
  .kv__wrap .kv-main .img1 {
    width: 18.5vw;
    left: 6.0vw !important;
    top: 34.0vw !important;
  }
  .kv__wrap .kv-main .img2 {
    width: 30.5vw;
    left: 39.9vw !important;
    bottom: 0 !important;
    top: auto !important;
  }
  .kv__wrap .kv-main .img3 {
    width: 18.2vw;
    right: 4.7vw !important;
    left: auto !important;
    top: auto !important;
    bottom: 9.2vw !important;
  }
  .kv__wrap .kv-main .ttl2 {
    font-size: 1.1vw;
    line-height: 1.4vw;
    left: auto !important;
    top: auto !important;
    right: 9.4vw !important;
    bottom: 3.9vw !important;
  }
  .kv__wrap .kv-main .img4 {
    width: 18.2vw;
    right: 10.6vw !important;
    top: 22.7vw !important;
    left: auto !important;
  }
  .kv__wrap .kv-main .deco1 {
    width: 14.7vw;
    left: 7.8vw !important;
    top: 12.4vw !important;
  }
  .kv__wrap .kv-main .deco2 {
    width: 15.4vw;
    left: 19.4vw !important;
    bottom: 1.2vw !important;
    top: auto !important;
  }
  .kv__wrap .kv-main .deco3 {
    width: 8.4vw;
    right: 1.3vw !important;
    left: auto !important;
    bottom: 21.1vw !important;
    top: auto !important;
  }
  .kv__wrap .kv-main .deco4 {
    width: 6.5vw;
    right: 7.2vw !important;
    left: auto !important;
    top: 14.4vw !important;
  }
  .kv__wrap .kv-main:before {
    width: 16%;
    top: 40.2%;
  }
  .kv__wrap .kv-main:after {
    width: 8%;
    bottom: 7.8%;
  }
}

@media screen and (min-width: 1440px) {
  .kv__wrap {
    padding-bottom: 54px;
  }
  .kv__wrap .kv-top {
    padding: 12px 24px;
  }
  .kv__wrap .kv-top .kv__logo {
    width: 199px;
  }
  .kv__wrap .kv-main {
    height: 990px;
  }
  .kv__wrap .kv-main .moon {
    width: 1000px;
    left: calc(50% - 500px) !important;
  }
  .kv__wrap .kv-main .kv-h2 {
    top: 280px !important;
    left: calc(50% - 419px) !important;
    width: 836px;
  }
  .kv__wrap .kv-main .ttl1 {
    font-size: 16px;
    line-height: 20px;
    left: calc(50% - 457px) !important;
    top: 378px !important;
  }
  .kv__wrap .kv-main .img1 {
    width: 267px;
    left: calc(50% - 636px) !important;
    top: 490px !important;
  }
  .kv__wrap .kv-main .img2 {
    width: 439px;
    left: calc(50% - 145px) !important;
    bottom: 0 !important;
  }
  .kv__wrap .kv-main .img3 {
    width: 262px;
    right: calc(50% - 652px) !important;
    bottom: 133px !important;
  }
  .kv__wrap .kv-main .ttl2 {
    font-size: 16px;
    line-height: 20px;
    right: calc(50% - 580px) !important;
    bottom: 56px !important;
  }
  .kv__wrap .kv-main .img4 {
    width: 262px;
    right: calc(50% - 568px) !important;
    top: 327px !important;
  }
  .kv__wrap .kv-main .deco1 {
    width: 212px;
    left: calc(50% - 606px) !important;
    top: 179px;
  }
  .kv__wrap .kv-main .deco2 {
    width: 222px;
    left: calc(50% - 440px) !important;
    bottom: 17px !important;
  }
  .kv__wrap .kv-main .deco3 {
    width: 121px;
    right: calc(50% - 701px) !important;
    bottom: 304px !important;
  }
  .kv__wrap .kv-main .deco4 {
    width: 94px;
    right: calc(50% - 615px) !important;
    top: 207px !important;
  }
  .kv__wrap .kv-main:before {
    width: auto;
    left: -20vw;
    right: calc(50% + 488px);
    top: 397px;
  }
  .kv__wrap .kv-main:after {
    width: auto;
    right: -20vw;
    left: calc(50% + 610px);
    bottom: 75px;
  }
}

.navi__wrap {
  height: 22.1vw;
  font-size: 4.2vw;
  letter-spacing: 0.07em;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: sticky;
  top: 0;
  z-index: 9;
  transition: 0.3s all ease;
}

.navi__wrap ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.navi__wrap ul li {
  margin: 1vw 5.6vw;
  position: relative;
}

.navi__wrap ul li + li:before {
  content: '';
  width: 1px;
  height: 3.4vw;
  background: #fff;
  position: absolute;
  left: -5.6vw;
  top: 1.3vw;
}

@media screen and (max-width: 767px) {
  .navi__wrap ul li:nth-child(5):before {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .navi__wrap {
    height: 75px;
    font-size: 1.4vw;
  }
  .navi__wrap ul {
    flex-wrap: nowrap;
  }
  .navi__wrap ul li {
    margin: 0 1.6vw;
  }
  .navi__wrap ul li + li:before {
    height: 1.4vw;
    left: -1.6vw;
    top: 0.3vw;
  }
}

@media screen and (min-width: 1440px) {
  .navi__wrap {
    font-size: 20px;
  }
  .navi__wrap ul li {
    margin: 0 23px;
  }
  .navi__wrap ul li + li:before {
    height: 18px;
    left: -20px;
    top: 5px;
  }
}

.navi__wrap.is-fixed {
  background-image: url("../images/hiroto-ogiwara/bg.jpg");
  background-repeat: repeat;
}

.section-ovh {
  overflow: hidden;
}

.ttl-common {
  font-family: "Oswald", sans-serif;
  font-size: 2.6vw;
  line-height: 1.2;
  letter-spacing: 0.025em;
  font-weight: 300;
  text-transform: uppercase;
  padding-left: 9.1vw;
  position: relative;
}

.ttl-common:before {
  content: '';
  width: 10.4vw;
  height: 1px;
  background: #fff;
  position: absolute;
  left: -4.2vw;
  top: 49%;
}

@media screen and (min-width: 768px) {
  .ttl-common {
    font-size: 1.4vw;
    padding-left: 3.8vw;
  }
  .ttl-common:before {
    width: 4vw;
    left: -2.1vw;
  }
}

@media screen and (min-width: 1000px) {
  .ttl-common {
    font-size: 1.4vw;
    padding-left: 3.8vw;
  }
  .ttl-common:before {
    width: calc((100vw - 1000px) / 2 + 120px);
    left: calc((100vw - 790px) / -2);
  }
}

@media screen and (min-width: 1440px) {
  .ttl-common {
    font-size: 20px;
    padding-left: 55px;
  }
}

#sec2 {
  position: relative;
  z-index: 0;
  padding: 15vw 0 13vw;
}

#sec2:before {
  content: '';
  height: 30vw;
  background-image: url("../images/hiroto-ogiwara/sec2_bg_top.png");
  background-repeat: no-repeat;
  background-size: 280%;
  background-position: center top;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: -2;
}

#sec2:after {
  content: '';
  background-image: url("../images/hiroto-ogiwara/sec2_bg_center.jpg");
  background-repeat: repeat;
  background-size: 100%;
  background-position: center;
  position: absolute;
  left: 0;
  right: 0;
  top: 20vw;
  bottom: 20vw;
  z-index: -2;
}

#sec2 .wrap:before {
  content: '';
  height: 30vw;
  background-image: url("../images/hiroto-ogiwara/sec2_bg_bottom.png");
  background-repeat: no-repeat;
  background-size: 280%;
  background-position: center bottom;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -2;
}

#sec2 .wrap:after {
  content: '';
  width: 91.1vw;
  height: 70vw;
  background-image: url("../images/hiroto-ogiwara/sec2_bg_deco.png");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center bottom;
  position: absolute;
  bottom: 20vw;
  left: 4.8vw;
  z-index: -1;
}

#sec2 h2 {
  margin-bottom: 9.5vw;
}

#sec2 .blk {
  position: relative;
}

#sec2 .blk .img1 {
  width: 50.1vw;
  margin-left: 3.1vw;
  position: relative;
}

#sec2 .blk .img1:before {
  content: '';
  width: 17.1vw;
  height: 17vw;
  background-image: url("../images/hiroto-ogiwara/sec2_deco1.png");
  background-repeat: no-repeat;
  background-size: 100%;
  position: absolute;
  left: -1.6vw;
  top: -4.8vw;
  z-index: 1;
}

#sec2 .blk .img1:after {
  content: '';
  width: 16.0vw;
  height: 16vw;
  background-image: url("../images/hiroto-ogiwara/sec2_deco2.png");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center bottom;
  position: absolute;
  right: -3.5vw;
  bottom: -4.0vw;
  z-index: 1;
}

#sec2 .blk .img2 {
  width: 28.8vw;
  position: absolute;
  top: -13.4vw;
  right: 6.5vw;
}

#sec2 .blk .img2:before {
  content: '';
  width: 9.1vw;
  height: 9vw;
  background-image: url("../images/hiroto-ogiwara/sec2_deco3.png");
  background-repeat: no-repeat;
  background-size: 100%;
  position: absolute;
  top: -4.3vw;
  left: 9.9vw;
  z-index: 1;
}

#sec2 .blk .img3 {
  width: 29.0vw;
  margin: -29.6vw -1.0vw 6vw auto;
  position: relative;
}

#sec2 .blk .img3:before {
  content: '';
  width: 9.1vw;
  height: 9vw;
  background-image: url("../images/hiroto-ogiwara/sec2_deco4.png");
  background-repeat: no-repeat;
  background-size: 100%;
  position: absolute;
  top: -3.3vw;
  left: 9.9vw;
  z-index: 1;
}

#sec2 .blk .eng-txt {
  font-size: 7.7vw;
  line-height: 7.0vw;
  letter-spacing: 0;
  font-weight: 700;
  position: absolute;
  top: 24.7vw;
  right: 2.5vw;
  z-index: 1;
}

#sec2 .blk .name-img {
  width: 36.8vw;
  margin: 0 auto 7vw;
}

#sec2 .blk .info-img {
  width: 73.2vw;
  margin: 0 auto;
}

#sec2 .blk .info-img li {
  width: 50%;
}

#sec2 .blk .info-img li:nth-child(odd) {
  float: left;
}

#sec2 .blk .info-img li:nth-child(even) {
  float: right;
}

#sec2 .blk .info-img li.full {
  width: 100%;
  float: none;
}

#sec2 .blk .info-img li.insta {
  width: 7.3vw;
  float: none;
  margin: 7.0vw auto 0;
}

@media screen and (min-width: 768px) {
  #sec2 {
    padding: 8.8vw 0 8.4vw;
  }
  #sec2:before {
    height: 13.9vw;
    background-size: cover;
  }
  #sec2:after {
    top: 6.9vw;
    bottom: 6.9vw;
  }
  #sec2 .wrap:before {
    height: 13.9vw;
    background-size: cover;
  }
  #sec2 .wrap:after {
    width: 52.9vw;
    height: 29.7vw;
    bottom: 11.1vw;
    left: calc(50% - 10.8vw);
  }
  #sec2 h2 {
    margin-bottom: -2.0vw;
  }
  #sec2 .blk {
    display: flex;
    justify-content: center;
    align-items: flex-start;
  }
  #sec2 .blk .img1 {
    width: 26.9vw;
    margin: 9.9vw 0 0 0.8vw;
  }
  #sec2 .blk .img1:before {
    width: 9.1vw;
    height: 4.8vw;
    left: -0.8vw;
    top: -2.6vw;
  }
  #sec2 .blk .img1:after {
    width: 8.5vw;
    height: 6.4vw;
    right: -1.8vw;
    bottom: -2.2vw;
  }
  #sec2 .blk .col-right {
    width: 38.3vw;
    position: relative;
    margin-left: 3.4vw;
  }
  #sec2 .blk .img2 {
    width: 15.3vw;
    position: relative;
    top: auto;
    right: auto;
    margin-bottom: 3.7vw;
  }
  #sec2 .blk .img2:before {
    width: 4.9vw;
    height: 2.7vw;
    top: -2.3vw;
    left: 5.2vw;
  }
  #sec2 .blk .img3 {
    width: 15.5vw;
    margin: 0;
    position: absolute;
    top: 11.6vw;
    left: 18.3vw;
  }
  #sec2 .blk .img3:before {
    width: 4.9vw;
    height: 2.6vw;
    top: -1.5vw;
    left: 5.1vw;
  }
  #sec2 .blk .eng-txt {
    font-size: 4.1vw;
    line-height: 3.8vw;
    top: -1px;
    left: 18.8vw;
    right: auto;
  }
  #sec2 .blk .name-img {
    width: 12.3vw;
    margin: 0 0 3.5vw 1.1vw;
  }
  #sec2 .blk .info-img {
    width: 27.0vw;
    margin-left: 3.3vw;
  }
  #sec2 .blk .info-img li.insta {
    width: 2.1vw;
    margin: 2.8vw 0 0;
  }
  #sec2 .blk .info-img li.insta img {
    transition: 0.3s all ease;
  }
  #sec2 .blk .info-img li.insta a:hover img {
    opacity: 0.8;
  }
}

@media screen and (min-width: 1440px) {
  #sec2 {
    padding: 126px 0 121px;
  }
  #sec2:before {
    height: 200px;
  }
  #sec2:after {
    top: 100px;
    bottom: 100px;
  }
  #sec2 .wrap:before {
    height: 200px;
  }
  #sec2 .wrap:after {
    width: 762px;
    height: 428px;
    bottom: 160px;
    left: calc(50% - 155px);
  }
  #sec2 h2 {
    margin-bottom: -29px;
  }
  #sec2 .blk .img1 {
    width: 387px;
    margin: 143px 0 0 12px;
  }
  #sec2 .blk .img1:before {
    width: 131px;
    height: 69px;
    left: -12px;
    top: -37px;
  }
  #sec2 .blk .img1:after {
    width: 123px;
    height: 92px;
    right: -26px;
    bottom: -31px;
  }
  #sec2 .blk .col-right {
    width: 552px;
    margin-left: 49px;
  }
  #sec2 .blk .img2 {
    width: 221px;
    margin-bottom: 55px;
  }
  #sec2 .blk .img2:before {
    width: 70px;
    height: 39px;
    top: -33px;
    left: 75px;
  }
  #sec2 .blk .img3 {
    width: 223px;
    top: 167px;
    left: 264px;
  }
  #sec2 .blk .img3:before {
    width: 71px;
    height: 38px;
    top: -21px;
    left: 73px;
  }
  #sec2 .blk .eng-txt {
    font-size: 59px;
    line-height: 54px;
    left: 271px;
  }
  #sec2 .blk .name-img {
    width: 177px;
    margin: 0 0 55px 17px;
  }
  #sec2 .blk .info-img {
    width: 389px;
    margin-left: 46px;
  }
  #sec2 .blk .info-img li.insta {
    width: 30px;
    margin: 40px 0 0;
  }
}

#sec3 {
  padding: 8vw 0 0;
}

#sec3 h2 {
  margin-bottom: 6vw;
}

#sec3 .modal__open a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 0;
  height: 100vw;
  text-align: center;
}

#sec3 .modal__open .ttl {
  font-size: 8.7vw;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.3;
}

#sec3 .modal__open .icon {
  width: 16.4vw;
  margin: 0 auto 3vw;
  position: relative;
}

#sec3 .modal__open .icon img {
  transition: 0.3s all ease;
}

#sec3 .modal__open .icon .on {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 1;
  opacity: 0;
}

#sec3 .modal__open .img {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
}

#sec3 .modal__open .img img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  object-position: 50%;
}

@media screen and (min-width: 768px) {
  #sec3 {
    padding: 5.7vw 0 0;
  }
  #sec3 h2 {
    margin-bottom: 4.2vw;
  }
  #sec3 .modal__open a {
    height: 56.3vw;
    padding-top: 3.1vw;
  }
  #sec3 .modal__open .ttl {
    font-size: 4.9vw;
  }
  #sec3 .modal__open .icon {
    width: 8.7vw;
    margin: 0 auto 1.9vw;
  }
  #sec3 .modal__open a:hover .icon .on {
    opacity: 1;
  }
  #sec3 .modal__open a:hover .icon .off {
    opacity: 0;
  }
}

@media screen and (min-width: 1440px) {
  #sec3 {
    padding: 82px 0 0;
  }
  #sec3 h2 {
    margin-bottom: 61px;
  }
  #sec3 .modal__open a {
    height: 811px;
    padding-top: 44px;
  }
  #sec3 .modal__open .ttl {
    font-size: 70px;
  }
  #sec3 .modal__open .icon {
    width: 125px;
    margin: 0 auto 28px;
  }
}

.modal {
  display: none;
  z-index: 20;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
}

.modal .modal__btn {
  width: 12vw;
  margin: 0 0 3vw auto;
}

.modal .youtube-modal {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 3vw;
}

.modal .youtube-modal .modal__inner {
  width: 100%;
}

.modal .youtube-modal iframe {
  width: 100%;
  height: 63vw;
}

@media screen and (min-width: 768px) {
  .modal .modal__btn {
    width: 4.4vw;
    margin: 0 0 2.2vw auto;
  }
  .modal .modal__btn:hover {
    opacity: 0.8;
  }
  .modal .youtube-modal {
    width: 69.4vw;
    margin: 0 auto;
    padding: 0;
  }
  .modal .youtube-modal .modal__inner {
    width: 100%;
  }
  .modal .youtube-modal iframe {
    width: 100%;
    height: 39.0vw;
  }
}

@media screen and (min-width: 1440px) {
  .modal .modal__btn {
    width: 64px;
    margin: 0 0 32px auto;
  }
  .modal .youtube-modal {
    padding: 30px;
    max-width: calc(1000px + 60px);
  }
  .modal .youtube-modal iframe {
    height: 562px;
  }
}

.js-textrowmotion-row {
  display: block;
  overflow: hidden;
}

.js-textrowmotion-wrapper {
  display: inline-block;
}

.js-textrowmotion-single {
  display: inline-block;
  will-change: transform;
}

.js-textrowmotion-txt {
  display: inline-block;
}

#sec4 {
  padding: 18vw 0 11vw;
  position: relative;
  z-index: 0;
}

#sec4:before {
  content: '';
  height: 20vw;
  background-image: url("../images/hiroto-ogiwara/sec4_bg_top.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center bottom;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 1;
}

#sec4:after {
  content: '';
  height: 15vw;
  background-image: url("../images/hiroto-ogiwara/sec4_bg_bottom.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: 1;
}

#sec4 h2 {
  margin-bottom: 4vw;
}

#sec4 .ttl-group {
  position: relative;
  z-index: 0;
  margin: 0 -2vw 6vw;
}

#sec4 .ttl-group h3 {
  font-size: 4.6vw;
  line-height: 6.1vw;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-align: right;
  position: relative;
  right: -3vw;
}

#sec4 .ttl-group h3 span {
  font-weight: 700;
}

#sec4 .ttl-group .ttl-deco1 {
  width: 25.6vw;
  height: 2.9vw;
  background: #0830a9;
  position: absolute;
  right: 52.5vw;
  bottom: 1.7vw;
  z-index: -1;
  clip-path: polygon(6% 0%, 100% 0%, 94% 100%, 0% 100%);
}

#sec4 .ttl-group .ttl-deco2 {
  width: 29vw;
  height: 2.9vw;
  background: #0830a9;
  position: absolute;
  right: 4vw;
  bottom: 1.7vw;
  z-index: -1;
  clip-path: polygon(6% 0%, 100% 0%, 94% 100%, 0% 100%);
}

#sec4 .blk .item {
  margin-bottom: 6.3vw;
}

#sec4 .blk .item .df {
  display: flex;
  position: relative;
}

#sec4 .blk .item .img {
  width: 43vw;
}

#sec4 .blk .item .col-right {
  width: calc(100% - 43vw);
  padding: 5vw 0 0 6vw;
}

#sec4 .blk .item .col-right .num {
  font-size: 12vw;
  line-height: 10vw;
  letter-spacing: 0.01em;
  font-style: italic;
  margin-bottom: 2vw;
  color: #0830a9;
}

#sec4 .blk .item .col-right .ttl {
  font-size: 4.6vw;
  line-height: 5.9vw;
  letter-spacing: 0.1em;
  font-weight: 500;
}

#sec4 .blk .item .col-right .arrow {
  width: 9.1vw;
  position: absolute;
  right: 0;
  bottom: 0;
}

@media screen and (min-width: 768px) {
  #sec4 {
    padding: 18.7vw 0 16.9vw;
  }
  #sec4:before {
    height: 15vw;
  }
  #sec4:after {
    height: 11.4vw;
  }
  #sec4 h2 {
    margin-bottom: 1.7vw;
  }
  #sec4 .ttl-group {
    width: 69.4vw;
    margin: 0 auto 4.4vw;
    text-align: right;
  }
  #sec4 .ttl-group h3 {
    font-size: 2.5vw;
    line-height: 3.8vw;
    letter-spacing: 0.1em;
    right: -1.8vw;
    margin: 0 0 0 auto;
  }
  #sec4 .ttl-group .ttl-deco1 {
    width: 13.9vw;
    height: 1.5vw;
    right: 26.5vw;
    bottom: 0.8vw;
    clip-path: polygon(6% 0%, 100% 0%, 94% 100%, 0% 100%);
  }
  #sec4 .ttl-group .ttl-deco2 {
    width: 15.3vw;
    height: 1.5vw;
    right: 0.8vw;
    bottom: 0.8vw;
    clip-path: polygon(6% 0%, 100% 0%, 94% 100%, 0% 100%);
  }
  #sec4 .blk {
    width: 69.4vw;
    margin: 0 auto;
    position: relative;
  }
  #sec4 .blk .item {
    width: 38.1vw;
    margin: 0 0 1.1vw auto;
  }
  #sec4 .blk .item .df {
    display: flex;
    position: static;
  }
  #sec4 .blk .item .img {
    width: 29.2vw;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0.4vw;
    z-index: 0;
    transition: 0.3s all ease;
    opacity: 0;
    pointer-events: none;
  }
  #sec4 .blk .item .img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    object-position: 50%;
  }
  #sec4 .blk .item .col-right {
    width: 100%;
    height: 6.8vw;
    padding: 0 0 0.4vw 9.0vw;
    margin-left: auto;
    background-image: url("../images/hiroto-ogiwara/pattern.jpg");
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid #7e7e7e;
  }
  #sec4 .blk .item .col-right .num {
    font-size: 7.6vw;
    line-height: 7.6vw;
    margin-bottom: 0;
    opacity: 0.4;
    position: absolute;
    left: 0.1vw;
    top: -0.9vw;
  }
  #sec4 .blk .item .col-right .ttl {
    font-size: 1.7vw;
    line-height: 2.8vw;
  }
  #sec4 .blk .item .col-right .ttl span {
    margin: 0 -1.0vw;
  }
  #sec4 .blk .item .col-right .arrow {
    width: 1.1vw;
    right: 0.5vw;
    bottom: auto;
    top: 0.5vw;
  }
  #sec4 .blk .item .col-right .arrow img {
    vertical-align: top;
  }
  #sec4 .blk .item .col-right * {
    transition: 0.3s all ease;
  }
  #sec4 .blk .item .delay-1 {
    animation-delay: 0.3s;
  }
  #sec4 .blk .item .delay-2 {
    animation-delay: 0.8s;
  }
  #sec4 .blk .item .delay-3 {
    animation-delay: 1.3s;
  }
  #sec4 .blk .item.active .img {
    opacity: 1;
    z-index: 1;
  }
  #sec4 .blk .item.active .col-right {
    cursor: pointer;
  }
  #sec4 .blk .item.active .col-right .num {
    font-size: 6.4vw;
    opacity: 1;
    left: 0.8vw;
    top: -0.1vw;
  }
  #sec4 .blk .item.active .col-right .ttl {
    letter-spacing: 0.18em;
  }
  #sec4 .blk .item.active .col-right .arrow {
    right: 1.0vw;
    top: 1.0vw;
  }
  #sec4 .blk .auth {
    color: #7d7d7d;
    font-size: 1.4vw;
    letter-spacing: 0.04em;
    font-weight: 300;
    text-align: right;
    margin-top: 1.3vw;
  }
}

@media screen and (min-width: 1440px) {
  #sec4 {
    padding: 269px 0 243px;
  }
  #sec4:before {
    height: 216px;
  }
  #sec4:after {
    height: 164px;
  }
  #sec4 h2 {
    margin-bottom: 25px;
  }
  #sec4 .ttl-group {
    width: 100%;
    margin: 0 0 63px;
  }
  #sec4 .ttl-group h3 {
    font-size: 36px;
    line-height: 55px;
    right: -26px;
  }
  #sec4 .ttl-group .ttl-deco1 {
    width: 200px;
    height: 22px;
    right: 381px;
    bottom: 12px;
  }
  #sec4 .ttl-group .ttl-deco2 {
    width: 221px;
    height: 22px;
    right: 11px;
    bottom: 12px;
  }
  #sec4 .blk {
    width: 100%;
  }
  #sec4 .blk .item {
    width: 549px;
    margin: 0 0 16px auto;
  }
  #sec4 .blk .item .img {
    width: 420px;
    bottom: 6px;
  }
  #sec4 .blk .item .col-right {
    height: 98px;
    padding: 0 0 6px 130px;
  }
  #sec4 .blk .item .col-right .num {
    font-size: 110px;
    line-height: 110px;
    left: 2px;
    top: -13px;
  }
  #sec4 .blk .item .col-right .ttl {
    font-size: 24px;
    line-height: 40px;
  }
  #sec4 .blk .item .col-right .ttl span {
    margin: 0 -15px;
  }
  #sec4 .blk .item .col-right .arrow {
    width: 16px;
    right: 7px;
    top: 7px;
  }
  #sec4 .blk .item.active .col-right .num {
    font-size: 92px;
    left: 11px;
    top: -2px;
  }
  #sec4 .blk .item.active .col-right .arrow {
    right: 15px;
    top: 15px;
  }
  #sec4 .blk .auth {
    font-size: 20px;
    margin-top: 18px;
  }
}

.slider-remodal {
  background: transparent;
  padding: 8.2vw 4vw;
}

.slider-remodal .popup-box {
  padding: 0 5vw;
}

.slider-remodal .popup-box h2 {
  margin-bottom: 4vw;
  color: #fff;
  text-align: left;
}

.slider-remodal .popup-box h2 .num {
  display: block;
  font-size: 18.2vw;
  line-height: 15vw;
  letter-spacing: 0;
  margin-bottom: 2vw;
}

.slider-remodal .popup-box h2 .ttl {
  font-size: 5.2vw;
  line-height: 7.2vw;
  letter-spacing: 0.18em;
  font-weight: 700;
}

.slider-remodal .popup-box .img {
  margin-bottom: 5vw;
}

.slider-remodal .popup-box .img img {
  width: 100%;
  height: auto;
}

.slider-remodal .popup-box .col-text {
  margin-bottom: 7vw;
}

.slider-remodal .popup-box .col-text .txt {
  text-align: justify;
  font-size: 3.4vw;
  line-height: 5.2vw;
  letter-spacing: 0.075em;
  font-weight: 500;
  margin-bottom: 4vw;
  color: #fff;
}

.slider-remodal .popup-box .col-text .auth {
  text-align: right;
  color: #8ba0e9;
  font-size: 3.3vw;
  line-height: 3.9vw;
  letter-spacing: 0.04em;
}

.slider-remodal .popup-box .slide-pager {
  display: flex;
  justify-content: space-between;
  color: #fff;
  margin: 0 -5vw;
}

.slider-remodal .popup-box .slide-pager li {
  display: flex;
  align-items: center;
  border-bottom: 1px solid;
  text-align: left;
  padding-bottom: 1.5vw;
  position: relative;
}

.slider-remodal .popup-box .slide-pager li:before {
  content: '';
  width: 4vw;
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  position: absolute;
  top: 0;
  bottom: 1vw;
}

.slider-remodal .popup-box .slide-pager li .num {
  font-size: 9.1vw;
  line-height: 8vw;
  letter-spacing: 0.01em;
  font-weight: 500;
  margin-right: 2vw;
}

.slider-remodal .popup-box .slide-pager li .ttl {
  font-size: 2.9vw;
  line-height: 3.9vw;
  letter-spacing: 0;
  font-weight: 500;
}

.slider-remodal .popup-box .slide-pager li.prev {
  justify-content: flex-end;
}

.slider-remodal .popup-box .slide-pager li.prev:before {
  background-image: url("../images/hiroto-ogiwara/icon_next.png");
  left: 0;
}

.slider-remodal .popup-box .slide-pager li.next {
  justify-content: flex-start;
}

.slider-remodal .popup-box .slide-pager li.next:before {
  background-image: url("../images/hiroto-ogiwara/icon_prev.png");
  right: 0;
}

.slider-remodal .popup-box .slide-pager .thumb1 {
  width: 36vw;
}

.slider-remodal .popup-box .slide-pager .thumb2 {
  width: 44vw;
}

.slider-remodal .popup-box .slide-pager .thumb3 {
  width: 40vw;
}

.slider-remodal .popup-box .slide-pager .thumb4 {
  width: 36vw;
}

@media screen and (min-width: 768px) {
  .slider-remodal {
    padding: 3.3vw 3.5vw;
  }
  .slider-remodal .story-slide {
    max-width: 85.6vw;
    width: 100%;
    margin: 0 auto;
  }
  .slider-remodal .popup-box {
    padding: 1vw 0 0;
  }
  .slider-remodal .popup-box .clearfix {
    width: 69.4vw;
    margin: 0 auto;
  }
  .slider-remodal .popup-box h2 {
    width: 36.5vw;
    float: right;
    margin-bottom: 2.2vw;
  }
  .slider-remodal .popup-box h2 .num {
    font-size: 13.2vw;
    line-height: 9.4vw;
    margin-bottom: 1.9vw;
  }
  .slider-remodal .popup-box h2 .ttl {
    font-size: 2.6vw;
    line-height: 3.8vw;
    letter-spacing: 0.12em;
  }
  .slider-remodal .popup-box h2 .ttl .m {
    margin: 0 -1.4vw;
  }
  .slider-remodal .popup-box .img {
    width: 26.9vw;
    float: left;
    margin: -1vw 0 0;
  }
  .slider-remodal .popup-box .col-text {
    width: 36.5vw;
    float: right;
    margin-bottom: 0;
  }
  .slider-remodal .popup-box .col-text .txt {
    font-size: 1.3vw;
    line-height: 2.0vw;
    letter-spacing: 0;
    margin-bottom: 1.9vw;
  }
  .slider-remodal .popup-box .col-text .auth {
    font-size: 1.4vw;
    line-height: 1.7vw;
  }
  .slider-remodal .popup-box .slide-pager {
    margin: 5vw 0 0;
  }
  .slider-remodal .popup-box .slide-pager li {
    padding-bottom: 0.4vw;
    cursor: pointer;
  }
  .slider-remodal .popup-box .slide-pager li:before {
    width: 1.5vw;
    bottom: 0.5vw;
  }
  .slider-remodal .popup-box .slide-pager li .num {
    font-size: 4.9vw;
    line-height: 4.2vw;
    margin-right: 0.8vw;
  }
  .slider-remodal .popup-box .slide-pager li .ttl {
    font-size: 1.7vw;
    line-height: 3.8vw;
    letter-spacing: 0.1em;
    white-space: nowrap;
  }
  .slider-remodal .popup-box .slide-pager li .ttl .m {
    margin: 0 -0.7vw;
  }
  .slider-remodal .popup-box .slide-pager li.prev {
    padding-left: 4.2vw;
    justify-content: flex-start;
  }
  .slider-remodal .popup-box .slide-pager li.prev:before {
    left: 0.6vw;
  }
  .slider-remodal .popup-box .slide-pager li.next {
    padding-left: 0.6vw;
  }
  .slider-remodal .popup-box .slide-pager li.next:before {
    right: 0.6vw;
  }
  .slider-remodal .popup-box .slide-pager .thumb1 {
    width: 34.7vw;
  }
  .slider-remodal .popup-box .slide-pager .thumb2 {
    width: 36vw;
  }
  .slider-remodal .popup-box .slide-pager .thumb3 {
    width: 34.7vw;
  }
  .slider-remodal .popup-box .slide-pager .thumb4 {
    width: 32vw;
  }
}

@media screen and (min-width: 1440px) {
  .slider-remodal {
    padding: 48px 50px;
  }
  .slider-remodal .story-slide {
    max-width: 1232px;
  }
  .slider-remodal .popup-box {
    padding: 10px 0 0;
  }
  .slider-remodal .popup-box .clearfix {
    width: 1000px;
  }
  .slider-remodal .popup-box h2 {
    width: 525px;
    margin-bottom: 31px;
  }
  .slider-remodal .popup-box h2 .num {
    font-size: 190px;
    line-height: 135px;
    margin-bottom: 27px;
  }
  .slider-remodal .popup-box h2 .ttl {
    font-size: 38px;
    line-height: 55px;
  }
  .slider-remodal .popup-box h2 .ttl .m {
    margin: 0 -20px;
  }
  .slider-remodal .popup-box .img {
    width: 388px;
    margin: -10px 0 0;
  }
  .slider-remodal .popup-box .col-text {
    width: 525px;
  }
  .slider-remodal .popup-box .col-text .txt {
    font-size: 18px;
    line-height: 29px;
    margin-bottom: 27px;
  }
  .slider-remodal .popup-box .col-text .auth {
    font-size: 20px;
    line-height: 24px;
  }
  .slider-remodal .popup-box .slide-pager {
    margin: 72px 0 0;
  }
  .slider-remodal .popup-box .slide-pager li {
    padding-bottom: 6px;
  }
  .slider-remodal .popup-box .slide-pager li:before {
    width: 22px;
    bottom: 7px;
  }
  .slider-remodal .popup-box .slide-pager li .num {
    font-size: 70px;
    line-height: 60px;
    margin-right: 11px;
  }
  .slider-remodal .popup-box .slide-pager li .ttl {
    font-size: 24px;
    line-height: 55px;
  }
  .slider-remodal .popup-box .slide-pager li .ttl .m {
    margin: 0 -10px;
  }
  .slider-remodal .popup-box .slide-pager li.prev {
    padding-left: 61px;
  }
  .slider-remodal .popup-box .slide-pager li.prev:before {
    left: 8px;
  }
  .slider-remodal .popup-box .slide-pager li.next {
    padding-left: 8px;
  }
  .slider-remodal .popup-box .slide-pager li.next:before {
    right: 8px;
  }
  .slider-remodal .popup-box .slide-pager .thumb1 {
    width: 500px;
  }
  .slider-remodal .popup-box .slide-pager .thumb2 {
    width: 495px;
  }
  .slider-remodal .popup-box .slide-pager .thumb3 {
    width: 500px;
  }
  .slider-remodal .popup-box .slide-pager .thumb4 {
    width: 450px;
  }
}

#sec5 {
  background: #fff;
  padding: 5vw 0 1vw;
}

#sec5 h2 {
  color: #000;
  margin-bottom: 6vw;
}

#sec5 h2:before {
  background: #000;
}

#sec5 .s5-slider .slick-slide:nth-child(2) .item {
  animation-delay: 0.5s;
}

#sec5 .s5-slider a {
  display: block;
}

#sec5 .s5-slider .img {
  margin-bottom: 2vw;
}

#sec5 .s5-slider dl dt {
  color: #acacac;
  font-size: 3.1vw;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 4vw;
  margin-bottom: 1vw;
}

#sec5 .s5-slider dl dd {
  color: #000;
  font-size: 3.4vw;
  line-height: 4.4vw;
  letter-spacing: 0.02em;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  #sec5 .s5-slider {
    margin: 0 -4.2vw 0 6.1vw;
  }
  #sec5 .s5-slider .slick-arrow {
    display: none;
  }
  #sec5 .s5-slider .slick-slide {
    width: 46.9vw !important;
    margin-right: 7.8vw;
  }
}

@media screen and (min-width: 768px) {
  #sec5 {
    padding: 4.1vw 0 3.5vw;
  }
  #sec5 h2 {
    margin-bottom: 5.3vw;
  }
  #sec5 .s5-slider {
    width: 69.4vw;
    margin: 0 auto;
    position: relative;
  }
  #sec5 .s5-slider .slick-list {
    padding: 0 !important;
  }
  #sec5 .s5-slider .slick-arrow {
    display: block;
    width: 4.2vw;
    height: 3.9vw;
    border: none;
    background-color: transparent;
    background-repeat: no-repeat;
    background-size: 100%;
    font-size: 0;
    cursor: pointer;
    position: absolute;
    top: 6.9vw;
    z-index: 1;
    transition: 0.3s all ease;
  }
  #sec5 .s5-slider .slick-arrow:hover {
    opacity: 0.5;
  }
  #sec5 .s5-slider .slick-arrow.slick-disabled {
    opacity: 0.1;
    cursor: default;
  }
  #sec5 .s5-slider .slick-prev {
    background-image: url("../images/hiroto-ogiwara/prev.png");
    left: -9.0vw;
  }
  #sec5 .s5-slider .slick-next {
    background-image: url("../images/hiroto-ogiwara/next.png");
    right: -9.0vw;
  }
  #sec5 .s5-slider .slick-slide {
    width: 20.8vw !important;
    margin: 0 1.7vw;
  }
  #sec5 .s5-slider .slick-slide:nth-child(3) .item {
    animation-delay: 1s;
  }
  #sec5 .s5-slider .img {
    margin-bottom: 1.2vw;
    transition: 0.3s all ease;
  }
  #sec5 .s5-slider .img img {
    width: 100%;
    height: auto;
  }
  #sec5 .s5-slider dl dt {
    font-size: 1.1vw;
    line-height: 1.7vw;
    margin-bottom: 0.6vw;
  }
  #sec5 .s5-slider dl dd {
    font-size: 1.2vw;
    line-height: 1.7vw;
  }
  #sec5 .s5-slider a:hover .img {
    opacity: 0.8;
  }
}

@media screen and (min-width: 1440px) {
  #sec5 {
    padding: 59px 0 50px;
  }
  #sec5 h2 {
    margin-bottom: 77px;
  }
  #sec5 .s5-slider {
    width: 100%;
  }
  #sec5 .s5-slider .slick-arrow {
    width: 60px;
    height: 55px;
    top: 99px;
  }
  #sec5 .s5-slider .slick-prev {
    left: -130px;
  }
  #sec5 .s5-slider .slick-next {
    right: -130px;
  }
  #sec5 .s5-slider .slick-slide {
    width: 300px !important;
    margin: 0 25px;
  }
  #sec5 .s5-slider .img {
    margin-bottom: 17px;
  }
  #sec5 .s5-slider dl dt {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 8px;
  }
  #sec5 .s5-slider dl dd {
    font-size: 17px;
    line-height: 24px;
  }
}

#sec6 {
  padding: 20vw 0 10vw;
  position: relative;
}

#sec6:before {
  content: '';
  height: 15vw;
  background-image: url("../images/hiroto-ogiwara/sec6_bg_top.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center bottom;
  position: absolute;
  left: 0;
  right: 0;
  top: -1px;
  z-index: 1;
}

#sec6 h2 {
  margin-bottom: -3vw;
}

#sec6 .blk {
  display: flex;
  justify-content: center;
}

#sec6 .blk .col-left {
  width: 50%;
  margin-top: 27.3vw;
}

#sec6 .blk .col-left .img {
  width: 41.5vw;
  margin-bottom: 20.4vw;
}

#sec6 .blk .col-left .note {
  width: 41.5vw;
  text-align: right;
  margin-top: -10vw;
  color: #8da5f3;
  font-size: 2.9vw;
  letter-spacing: 0.1em;
  line-height: 1.2;
}

#sec6 .blk .col-right {
  width: 50%;
  padding-left: 4.7vw;
  position: relative;
}

#sec6 .blk .col-right:before {
  content: '';
  width: 1px;
  background: linear-gradient(to bottom, white 0%, white 90%, rgba(255, 255, 255, 0) 100%);
  position: absolute;
  left: 0;
  top: 3vw;
  bottom: 0;
}

#sec6 .blk .col-right dl {
  margin: 0 -2vw 4vw 0;
}

#sec6 .blk .col-right dl dt {
  font-size: 9.1vw;
  letter-spacing: 0.025em;
  font-weight: 300;
  line-height: 1.4;
  margin-bottom: 2vw;
}

#sec6 .blk .col-right dl dd span {
  display: block;
  font-size: 4.6vw;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.1;
  position: relative;
}

#sec6 .blk .col-right dl dd span:before {
  content: '';
  width: 1.4vw;
  height: 1.4vw;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  left: -5.2vw;
  top: 2vw;
}

#sec6 .blk .col-right dl dd span + span {
  margin-top: 4vw;
}

#sec6 .blk .col-right dl dd small {
  display: block;
  color: #8da5f3;
  font-size: 3.1vw;
  letter-spacing: 0.1em;
  line-height: 1.1;
  margin: 1vw 0 0 2vw;
}

@media screen and (min-width: 768px) {
  #sec6 {
    padding: 16.9vw 0 11.4vw;
  }
  #sec6:before {
    height: 160px;
  }
  #sec6 h2 {
    margin-bottom: 0.5vw;
  }
  #sec6 .blk .col-left {
    margin: 4.4vw 5vw 0 0;
    width: 29.7vw;
  }
  #sec6 .blk .col-left .img {
    width: 100%;
    margin-bottom: 4.2vw;
  }
  #sec6 .blk .col-left .note {
    width: 100%;
    margin-top: -1.5vw;
    font-size: 1.1vw;
  }
  #sec6 .blk .col-right {
    width: 34.7vw;
    padding-left: 4.4vw;
  }
  #sec6 .blk .col-right:before {
    top: 0.1vw;
  }
  #sec6 .blk .col-right dl {
    margin: 0 0 3.8vw 0;
  }
  #sec6 .blk .col-right dl dt {
    font-size: 4.9vw;
    margin-bottom: 1.4vw;
  }
  #sec6 .blk .col-right dl dd {
    padding-left: 0.1vw;
  }
  #sec6 .blk .col-right dl dd span {
    font-size: 1.8vw;
  }
  #sec6 .blk .col-right dl dd span:before {
    width: 0.8vw;
    height: 0.8vw;
    left: -4.84vw;
    top: 0.9vw;
  }
  #sec6 .blk .col-right dl dd span + span {
    margin-top: 2.6vw;
  }
  #sec6 .blk .col-right dl dd small {
    font-size: 1.4vw;
    margin: 0.7vw 0 0 1.0vw;
  }
}

@media screen and (min-width: 1440px) {
  #sec6 {
    padding: 243px 0 164px;
  }
  #sec6:before {
    height: 160px;
  }
  #sec6 h2 {
    margin-bottom: 7px;
  }
  #sec6 .blk .col-left {
    margin: 63px 72px 0 0;
    width: 428px;
  }
  #sec6 .blk .col-left .img {
    margin-bottom: 60px;
  }
  #sec6 .blk .col-left .note {
    margin-top: -21px;
    font-size: 16px;
  }
  #sec6 .blk .col-right {
    width: 50%;
    padding-left: 65px;
  }
  #sec6 .blk .col-right:before {
    top: 2px;
  }
  #sec6 .blk .col-right dl {
    margin: 0 0 55px 0;
  }
  #sec6 .blk .col-right dl dt {
    font-size: 70px;
    margin-bottom: 20px;
  }
  #sec6 .blk .col-right dl dd {
    padding-left: 2px;
  }
  #sec6 .blk .col-right dl dd span {
    font-size: 26px;
  }
  #sec6 .blk .col-right dl dd span:before {
    width: 11px;
    height: 11px;
    left: -72px;
    top: 13px;
  }
  #sec6 .blk .col-right dl dd span + span {
    margin-top: 38px;
  }
  #sec6 .blk .col-right dl dd small {
    font-size: 20px;
    margin: 10px 0 0 15px;
  }
}

#sec7 h2 {
  margin-bottom: 5vw;
}

#sec7 .blk {
  padding: 0 4.2vw;
}

#sec7 .blk .img {
  height: 61.7vw;
  margin-bottom: 4.2vw;
}

#sec7 .blk .img img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  object-position: 50%;
}

#sec7 .blk .col-text {
  margin: 0 -4.2vw;
  background: #000;
  padding: 10vw 9.9vw;
}

#sec7 .blk .col-text h3 {
  font-size: 4.7vw;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 4vw;
}

#sec7 .blk .col-text .txt {
  font-size: 3.4vw;
  line-height: 5.2vw;
  letter-spacing: 0.025em;
  font-weight: 500;
}

@media screen and (min-width: 768px) {
  #sec7 {
    position: relative;
    padding: 0;
  }
  #sec7 h2 {
    position: relative;
    z-index: 2;
    margin-bottom: -7.4vw;
    text-shadow: 0 0 5px #000;
  }
  #sec7 .blk {
    display: flex;
    padding: 0;
  }
  #sec7 .blk .img {
    width: 50%;
    height: 47.2vw;
    margin-bottom: 0;
    position: relative;
  }
  #sec7 .blk .img img {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    object-position: 0%;
  }
  #sec7 .blk .col-text {
    width: 50%;
    margin: 0;
    padding: 5.8vw 2.1vw 2.1vw;
  }
  #sec7 .blk .col-text .inner {
    max-width: 37.3vw;
    width: 100%;
    margin: 0 auto;
  }
  #sec7 .blk .col-text h3 {
    font-size: 2.4vw;
    letter-spacing: 0;
    margin-bottom: 3.2vw;
  }
  #sec7 .blk .col-text .txt {
    font-size: 1.3vw;
    line-height: 2.2vw;
  }
}

@media screen and (min-width: 1440px) {
  #sec7 h2 {
    margin-bottom: -107px;
  }
  #sec7 .blk .img {
    height: 679px;
  }
  #sec7 .blk .col-text {
    padding: 83px 30px 65px;
  }
  #sec7 .blk .col-text .inner {
    max-width: 537px;
  }
  #sec7 .blk .col-text h3 {
    font-size: 34px;
    margin-bottom: 46px;
  }
  #sec7 .blk .col-text .txt {
    font-size: 19px;
    line-height: 31px;
  }
}

@media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1025px) {
  .footer {
    width: 100%;
  }
}
