@charset "UTF-8";
/*--------------------------
Tag Default
---------------------------*/
* {
  box-sizing: border-box;
  -webkit-appearance: none;
}

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

.page-header {
  display: none !important;
}

#content {
  padding: 0 !important;
}

main {
  font-size: 16px;
  font-family: "Noto Sans Japanese";
  font-weight: 400;
  color: #fff;
  line-height: 1;
  padding: 85px 0 0 !important;
  margin: 0 !important;
  -webkit-text-size-adjust: 100%;
}
@media only screen and (max-width: 768px) {
  main {
    font-size: 14px;
    padding: 0 !important;
  }
}
main .bg_wrap {
  position: relative;
  background-color: #0a1441 !important;
}
main .bg_wrap::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: -15%;
  left: 0;
  background-image: url("../images/bg_item.png");
  background-repeat: no-repeat;
  background-size: 100% auto;
}
@media only screen and (max-width: 768px) {
  main .bg_wrap::before {
    content: none;
  }
}
main .bg_wrap::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  bottom: -15%;
  background-image: url("../images/bg_item.png");
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: 100% auto;
}
@media only screen and (max-width: 768px) {
  main .bg_wrap::after {
    content: none;
  }
}
main section {
  width: 100% !important;
  padding: 0 !important;
  margin: 0 auto !important;
}
main section p {
  font-size: 16px !important;
  color: #fff;
  line-height: 1.85;
}
@media only screen and (max-width: 768px) {
  main section p {
    font-size: 14px !important;
    line-height: 1.75;
  }
}
main section p.dotted {
  position: relative;
  padding: 0 0 0 16px;
}
@media only screen and (max-width: 768px) {
  main section p.dotted {
    padding: 0 0 0 14px;
  }
}
main section p.dotted::before {
  position: absolute;
  content: "・";
  left: 0;
}

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

.sp_none {
  display: block;
}
@media only screen and (max-width: 768px) {
  .sp_none {
    display: none !important;
  }
}

.pc_none {
  display: none;
}
@media only screen and (max-width: 768px) {
  .pc_none {
    display: block !important;
  }
}

.tab_none {
  display: block;
}
@media only screen and (max-width: 1280px) {
  .tab_none {
    display: none !important;
  }
}

.container {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
}
@media only screen and (max-width: 1280px) {
  .container {
    min-width: 1024px;
  }
}
@media only screen and (max-width: 768px) {
  .container {
    min-width: 100%;
    padding: 0 12px;
  }
}

.animation {
  opacity: 0;
}

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

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

@keyframes fade {
  0% {
    opacity: 1;
  }
  to {
    opacity: 1;
  }
}
.fade {
  -webkit-animation-name: fade;
  animation-name: fade;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: scale(1) !important;
  }
  to {
    opacity: 1;
    transform: scale(1) !important;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  transform: scale(1) !important;
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -5%, 0);
    transform: translate3d(0, -5%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2.5%, 0, 0);
    transform: translate3d(-2.5%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2.5%, 0, 0);
    transform: translate3d(2.5%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 5%, 0);
    transform: translate3d(0, 5%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@keyframes bounceInUp {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@keyframes bounceInDown {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

/*--------------------------
FontSet Default
---------------------------*/
@font-face {
  font-family: "Noto Serif JP", serif;
  font-style: normal;
  font-weight: 700;
  src: url("../font/NotoSerifJP-Regular.otf") format("truetype"), url("../font/NotoSerifJP-Regular.woff") format("woff"), url("../font/NotoSerifJP-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "Noto Sans Japanese";
  font-style: normal;
  font-weight: 400;
  src: url("../font/NotoSansJP-Regular.ttf") format("truetype"), url("../font/NotoSansJP-Regular.woff") format("woff"), url("../font/NotoSansJP-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "Noto Sans Japanese";
  font-style: normal;
  font-weight: 500;
  src: url("../font/NotoSansJP-Medium.ttf") format("truetype"), url("../font/NotoSansJP-Medium.woff") format("woff"), url("../font/NotoSansJP-Medium.woff2") format("woff2");
}
@font-face {
  font-family: "Noto Sans Japanese";
  font-style: normal;
  font-weight: 700;
  src: url("../font/NotoSansJP-Bold.ttf") format("truetype"), url("../font/NotoSansJP-Bold.woff") format("woff"), url("../font/NotoSansJP-Bold.woff2") format("woff2");
}
@font-face {
  font-family: "EB Garamond", serif;
  font-style: normal;
  font-weight: 300;
  src: url("../font/EBGaramond-Medium.ttf") format("truetype"), url("../font/EBGaramond-Medium.woff") format("woff"), url("../font/EBGaramond-Medium.woff2") format("woff2");
}
@font-face {
  font-family: "fontello";
  src: url("../font/fontello.eot?31887383");
  src: url("../font/fontello.eot?31887383#iefix") format("embedded-opentype"), url("../font/fontello.woff2?31887383") format("woff2"), url("../font/fontello.woff?31887383") format("woff"), url("../font/fontello.ttf?31887383") format("truetype"), url("../font/fontello.svg?31887383#fontello") format("svg");
  font-weight: normal;
  font-style: normal;
}
[class^=icon-]:before,
[class*=" icon-"]:before {
  font-family: "fontello";
  font-style: normal;
  font-weight: normal;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: 0.2em;
  text-align: center;
  font-variant: normal;
  text-transform: none;
  line-height: 1em;
  margin-left: 0.2em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-right-bold:before {
  content: "\e800";
}

.icon-down-dir:before {
  content: "\e801";
}

.icon-button_arrow:before {
  content: "\e806";
}

.icon-right-open:before {
  content: "\f006";
}

.icon-left-open:before {
  content: "\f007";
}

/*--------------------------
main_visual
---------------------------*/
#main_visual {
  position: relative;
}
#main_visual .mv_wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: calc(100vh - 85px);
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  #main_visual .mv_wrap {
    height: 100vh;
    background-image: url("../images/bg_item.png");
    background-repeat: no-repeat;
    background-size: cover;
  }
}
#main_visual .mv_wrap .mv_item {
  position: absolute;
}
@media only screen and (max-width: 768px) {
  #main_visual .mv_wrap .mv_item {
    padding: 0 10%;
  }
}
#main_visual .scrolldown1 {
  position: absolute;
  height: 50px;
  left: 50%;
  bottom: 16px;
}
#main_visual .scrolldown1::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 30px;
  top: 0;
  background: #fff;
  animation: pathmove 1.4s ease-in-out infinite;
  opacity: 0;
}
#main_visual .scrolldown1 span {
  position: absolute;
  left: -15px;
  top: -15px;
  font-size: 12px;
  color: #fff;
}
@keyframes pathmove {
  0% {
    height: 0;
    top: 0;
    opacity: 0;
  }
  30% {
    height: 30px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 50px;
    opacity: 0;
  }
}

/*--------------------------
section01
---------------------------*/
#section01 {
  position: relative;
  z-index: 1;
}
#section01 .container {
  position: relative;
  padding: 60px 0 150px;
}
@media only screen and (max-width: 768px) {
  #section01 .container {
    padding: 40px 12px 80px;
  }
}
#section01 .container::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  top: 0;
  left: 0;
  background: #fff;
}
@media only screen and (max-width: 768px) {
  #section01 .container::before {
    width: calc(100% - 24px);
    left: 50%;
    transform: translateX(-50%);
  }
}
#section01 .container .flex_box {
  display: flex;
}
@media only screen and (max-width: 768px) {
  #section01 .container .flex_box {
    display: block;
  }
}
#section01 .container .flex_box .left_box {
  width: 270px;
  min-width: 270px;
  margin: 0 60px 0 0;
}
@media only screen and (max-width: 768px) {
  #section01 .container .flex_box .left_box {
    width: 100%;
    min-width: 100%;
    margin: 0 0 20px;
  }
}
#section01 .container .flex_box .left_box h2 {
  font-size: 36px;
  font-family: "din-2014-narrow", sans-serif;
  font-weight: 500;
  text-align: left;
  margin: 0 0 40px;
}
@media only screen and (max-width: 768px) {
  #section01 .container .flex_box .left_box h2 {
    font-size: 28px;
    margin: 0 0 20px;
  }
}
#section01 .container .flex_box .left_box p {
  font-size: 20px;
  font-weight: 700;
}
@media only screen and (max-width: 768px) {
  #section01 .container .flex_box .left_box p {
    font-size: 18px;
  }
}
#section01 .container .flex_box .right_box p:not(:last-child) {
  margin: 0 0 20px;
}

/*--------------------------
section02
---------------------------*/
#section02 {
  position: relative;
  padding: 110px 0 !important;
  background-image: url("../images/bg_item02.jpg");
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: cover;
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  #section02 {
    padding: 60px 0 !important;
  }
}
#section02 .container {
  position: relative;
  padding: 80px 0 0;
}
@media only screen and (max-width: 768px) {
  #section02 .container {
    padding: 40px 12px 0;
  }
}
#section02 .container::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  top: 0;
  left: 0;
  background: #000;
}
@media only screen and (max-width: 768px) {
  #section02 .container::before {
    width: calc(100% - 24px);
    left: 50%;
    transform: translateX(-50%);
  }
}
#section02 .container .flex_box {
  display: flex;
}
@media only screen and (max-width: 768px) {
  #section02 .container .flex_box {
    display: block;
  }
}
#section02 .container .flex_box .left_box {
  width: 270px;
  min-width: 270px;
  margin: 0 60px 0 0;
}
@media only screen and (max-width: 768px) {
  #section02 .container .flex_box .left_box {
    width: 100%;
    min-width: 100%;
    margin: 0 0 20px;
  }
}
#section02 .container .flex_box .left_box h2 {
  font-size: 36px;
  font-family: "din-2014-narrow", sans-serif;
  font-weight: 500;
  color: #000;
  text-align: left;
}
@media only screen and (max-width: 768px) {
  #section02 .container .flex_box .left_box h2 {
    font-size: 28px;
    margin: 0 0 20px;
  }
}
#section02 .container .flex_box .right_box figure a {
  position: relative;
}
#section02 .container .flex_box .right_box figure a img {
  -webkit-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
#section02 .container .flex_box .right_box figure a:hover img {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.5);
}

/*--------------------------
section03
---------------------------*/
#section03 {
  position: relative;
  padding: 140px 0 160px !important;
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  #section03 {
    padding: 60px 0 80px !important;
    background-image: url("../images/bg_item.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }
}
#section03 .container strong {
  display: block;
  font-size: 42px;
  font-weight: 500;
  line-height: 1.68;
  margin: 0 0 60px;
}
@media only screen and (max-width: 768px) {
  #section03 .container strong {
    font-size: 20px;
    margin: 0 0 40px;
  }
}
#section03 .container .flex_box {
  position: relative;
  display: flex;
  padding: 60px 0 0;
}
@media only screen and (max-width: 768px) {
  #section03 .container .flex_box {
    display: block;
    padding: 40px 0 0;
  }
}
#section03 .container .flex_box::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  top: 0;
  left: 0;
  background: #fff;
}
@media only screen and (max-width: 768px) {
  #section03 .container .flex_box::before {
    width: 100%;
    left: 0;
  }
}
#section03 .container .flex_box .left_box {
  width: 270px;
  min-width: 270px;
  margin: 0 60px 0 0;
}
@media only screen and (max-width: 768px) {
  #section03 .container .flex_box .left_box {
    width: 100%;
    min-width: 100%;
    margin: 0 0 20px;
  }
}
#section03 .container .flex_box .left_box h2 {
  font-size: 36px;
  font-family: "din-2014-narrow", sans-serif;
  font-weight: 500;
  text-align: left;
}
@media only screen and (max-width: 768px) {
  #section03 .container .flex_box .left_box h2 {
    font-size: 28px;
    margin: 0 0 20px;
  }
}
#section03 .container .flex_box .right_box {
  width: 100%;
}
#section03 .container .flex_box .right_box ul li {
  position: relative;
  width: 100%;
  max-width: 650px;
  line-height: 1.93;
}
#section03 .container .flex_box .right_box ul li:not(:last-child) {
  margin: 0 0 15px;
}
#section03 .container .flex_box .right_box ul li a {
  position: relative;
  display: block;
  font-size: 20px;
  font-weight: 400;
  color: #fff;
  padding: 8px 30px;
  border-left: 2px solid rgba(255, 255, 255, 0.75);
  border-bottom: 2px solid rgba(255, 255, 255, 0.75);
  -webkit-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
@media only screen and (max-width: 768px) {
  #section03 .container .flex_box .right_box ul li a {
    font-size: 16px;
    padding: 8px 16px;
  }
}
#section03 .container .flex_box .right_box ul li a::before {
  position: absolute;
  content: "";
  left: -3px;
  bottom: -10px;
  border-top: 15px solid transparent;
  border-right: 15px solid #fff;
  border-bottom: 15px solid transparent;
  transform: rotate(-45deg);
  -webkit-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
@media only screen and (max-width: 768px) {
  #section03 .container .flex_box .right_box ul li a::before {
    left: -2px;
    bottom: -7px;
    border-top: 10px solid transparent;
    border-right: 10px solid #fff;
    border-bottom: 10px solid transparent;
  }
}
#section03 .container .flex_box .right_box ul li a::after {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  top: 0;
  left: 0;
  background: #fff;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  z-index: -1;
}
#section03 .container .flex_box .right_box ul li a:hover {
  color: #000;
}
#section03 .container .flex_box .right_box ul li a:hover::before {
  border-top: 15px solid transparent;
  border-right: 15px solid #000;
  border-bottom: 15px solid transparent;
}
@media only screen and (max-width: 768px) {
  #section03 .container .flex_box .right_box ul li a:hover::before {
    border-top: 10px solid transparent;
    border-right: 10px solid #000;
    border-bottom: 10px solid transparent;
  }
}
#section03 .container .flex_box .right_box ul li a:hover::after {
  width: 100%;
}
#section03 .container .flex_box .right_box ul li a small {
  font-size: 14px;
}
@media only screen and (max-width: 768px) {
  #section03 .container .flex_box .right_box ul li a small {
    font-size: 12px;
  }
}