@charset "UTF-8";
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}

q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
  display: block;
}

input[type="submit"],
input[type="button"],
input[type="reset"] {
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration,
input[type="reset"]::-webkit-search-decoration {
  display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus,
input[type="reset"]::focus {
  outline-offset: -2px;
}

body {
  font-family: "Microsoft JhengHei","Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", YuGothic, "游ゴシック",  Meiryo, sans-serif;
  -webkit-text-size-adjust: 100%;
  color: #222;
  overflow-x: hidden;
  overflow-y: scroll;
  font-size: 16px;
  line-height: 1.8;
  text-align: center;
  letter-spacing: 0.15vw;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  body {
    min-width: auto;
    width: 100%;
  }
}

img {
  vertical-align: top;
}

body * {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
  /* box-sizingの値は継承されないので明示的に設定 */
}

.loading {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0px;
  left: 0px;
  background: #F6F6F6;
  z-index: 9999;
}

.animation {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: #bbb;
  -webkit-animation: lodanimetion 1500ms ease-out forwards infinite;
  animation: lodanimetion 1500ms ease-out forwards infinite;
}

@-webkit-keyframes lodanimetion {
  from,to {
    opacity: 0;
  }
  50% {
    opacity: .5;
  }
}

@keyframes lodanimetion {
  from,to {
    opacity: 0;
  }
  50% {
    opacity: .5;
  }
}
.loader,
.loader:before,
.loader:after {
  background: #bbb;
  -webkit-animation: load1 1s infinite ease-in-out;
  animation: load1 1s infinite ease-in-out;
  width: 1em;
  height: 3em;
}

.loader {
  color: #bbb;
  text-indent: -9999em;
  margin: 88px auto;
  position: relative;
  font-size: 11px;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

.loader:before,
.loader:after {
  position: absolute;
  top: 0;
  content: '';
}

.loader:before {
  left: -1.5em;
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.loader:after {
  left: 1.5em;
}

@-webkit-keyframes load1 {
  0%,
  80%,
  100% {
    -webkit-box-shadow: 0 0;
            box-shadow: 0 0;
    height: 3em;
  }
  40% {
    -webkit-box-shadow: 0 -2em;
            box-shadow: 0 -2em;
    height: 4em;
  }
}
@keyframes load1 {
  0%,
  80%,
  100% {
    -webkit-box-shadow: 0 0;
            box-shadow: 0 0;
    height: 3em;
  }
  40% {
    -webkit-box-shadow: 0 -2em;
            box-shadow: 0 -2em;
    height: 4em;
  }
}
/********************************************************
*  ハンバーガーメニュー
********************************************************/
@media screen and (max-width: 768px) {
  .spnav_area {
    display: block;
  }
}
@media screen and (min-width: 769px) {
  .spnav_area {
    display: none;
  }
}

.c-hamburger {
  display: inline-block;
  text-decoration: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  cursor: pointer;
  position: fixed;
  z-index: 5;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border: 1px solid #222;
  background-color: #222;
}

.c-hamburger__line {
  width: 22px;
  height: 2px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: all .3s;
  transition: all .3s;
}
.c-hamburger__line::before, .c-hamburger__line::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: inherit;
  position: absolute;
  -webkit-transition: all .3s;
  transition: all .3s;
}
.c-hamburger__line::before {
  top: -6px;
}
.c-hamburger__line::after {
  top: 6px;
}

.c-drawer {
  position: fixed;
  z-index: 3;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background-color: #F6F6F6;
  visibility: hidden;
}

.c-drawer li {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  text-align: left;
  font-weight: 500;
  letter-spacing: 4px;
  margin-bottom: 10px;
}
.c-drawer li a {
  text-decoration: none;
  color: #222;
}

.logo_sp {
  width: 112px;
  mix-blend-mode: multiply;
  text-align: left;
  /* margin-bottom: 100px; */
  position: absolute;
  left: 20px;
  top: 30px;
}
@media screen and (max-width: 768px) {
  .logo_sp {
    display: block;
  }
}
@media screen and (min-width: 769px) {
  .logo_sp {
    display: none;
  }
}

.nav_sp {
  text-align: left;
  padding: 20px;
  margin-top: 120px;
}

.is-drawer-active .c-hamburger__line {
  background-color: transparent;
}
.is-drawer-active .c-hamburger__line::before, .is-drawer-active .c-hamburger__line::after {
  top: 0;
  background-color: #fff;
}
.is-drawer-active .c-hamburger__line::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.is-drawer-active .c-hamburger__line::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.is-drawer-active .c-drawer {
  visibility: visible;
}

::-moz-selection {
  background-color: #eee;
}

::selection {
  background-color: #eee;
}

.spbr {
  display: none;
}
@media screen and (max-width: 768px) {
  .spbr {
    display: block;
  }
}

.wrap {
  display: grid;
  grid-template-columns: 1fr 4fr;
}
@media screen and (max-width: 768px) {
  .wrap {
    display: block;
  }
}

.main_content {
  background: #F6F6F6;
}

.side {
  background: #ffffff;
  padding: 0 60px;
}
@media screen and (max-width: 768px) {
  .side {
    display: none;
  }
}

.side_content {
  position: -webkit-sticky;
  position: sticky;
  top: 50px;
  background: #ffffff;
  font-family: 'Oswald', sans-serif;
}

.side_content li {
  text-align: left;
  margin-bottom: 10px;
}

.side_content li a {
  font-size: 14px;
  text-align: left;
  font-weight: bold;
  text-decoration: none;
  color: #333;
}

.logo {
  margin: 0 auto 84px;
  display: block;
  width: 100%;
  max-width: 184px;
}

.kv_sec {
  position: relative;
  min-height: 100vh;
  margin-bottom: 240px;
  position: relative;
}

.kv_sec h1 {
  max-width: 100%;
  height: auto;
  position: absolute;
  right: 50%;
  bottom: 50%;
  -webkit-transform: translate(50%, 50%);
          transform: translate(50%, 50%);
  font-size: 36px;
  font-weight: bold;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 14px;
}
@media screen and (max-width: 768px) {
  .kv_sec h1 {
    font-size: 25px;
    letter-spacing: 10px;
  }
}

.kv_sec p.scroll {
  position: absolute;
  bottom: 82px;
  right: -3px;
  font-family: 'Oswald', sans-serif;
  -webkit-transform: rotate(-90deg);
  transform: rotate(90deg);
  color: #AFAFAF;
  font-size: 12px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .kv_sec p.scroll {
    left: 0;
    right: 0;
    letter-spacing: 3px;
    font-size: 11px;
  }
}

.kv_sec::after {
  display: block;
  height: 33px;
  width: 1px;
  background: "ddd";
  content: "";
  background-color: #AFAFAF;
  position: absolute;
  bottom: 23px;
  right: 22px;
  font-size: 12px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .kv_sec::after {
    right: 0;
    left: 0;
    margin: auto;
  }
}

.art_sec {
  margin-bottom: 240px;
}
@media screen and (max-width: 768px) {
  .art_sec {
    margin-bottom: 140px;
  }
}

.contect_sec .contect_btn a {
  background: #333;
  color: #ffffff;
  font-family: 'Oswald', sans-serif;
  display: inline-block;
  padding: 20px 50px;
  border-radius: 40px;
  text-decoration: none;
  -webkit-transition: 0.2s background-color ease-out;
  transition: 0.2s background-color ease-out;
  min-width: 400px;
}
@media screen and (max-width: 768px) {
  .contect_sec .contect_btn a {
    min-width: 90%;
    padding: 15px 50px;
  }
}

.contect_sec .contect_btn a:hover {
  background-color: #000;
}

.contect_sec {
  margin-bottom: 240px;
}
@media screen and (max-width: 768px) {
  .contect_sec {
    margin-bottom: 120px;
  }
}

.footer_sec {
  text-align: right;
  color: #AFAFAF;
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  font-weight: bold;
  padding: 10px;
}
@media screen and (max-width: 768px) {
  .footer_sec {
    text-align: center;
  }
}

small {
  text-align: right;
}

.popup-container {
  width: 80%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 auto;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.popup-container a {
  display: block;
  width: 48%;
  height: 0;
  margin: 1%;
  padding-top: 48%;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .popup-container a {
    width: 100%;
    padding-top: 100%;
    margin: 0 0 50px 0;
  }
}

.popup-container a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.mfp-image-holder .mfp-content {
  max-width: 900px !important;
}
@media screen and (max-width: 768px) {
  .mfp-image-holder .mfp-content {
    width: 76%;
  }
}

.mfp-counter {
  display: none;
}

.mfp-figure:after {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.mfp-title {
  padding-top: 10px;
  margin-top: -20px;
  font-size: 12px;
  letter-spacing: 0;
  padding-right: 0 !important;
}

img.mfp-img {
  padding: 60px 0 60px !important;
}

.mfp-figure:after {
  top: 60px !important;
  bottom: 60px !important;
}

.mfp-close {
  top: 20px !important;
}

.mfp-arrow-left:before {
  border-right: 0 !important;
}

.mfp-arrow-right:before {
  border-left: 0 !important;
}

/* mfp-bg（overlay） */
.mfp-fade01.mfp-bg {
  opacity: 0;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}

.mfp-fade01.mfp-bg.mfp-ready {
  opacity: 0.8;
}

.mfp-fade01.mfp-bg.mfp-removing {
  opacity: 0;
}

/* mfp-content */
.mfp-fade01.mfp-wrap .mfp-content {
  opacity: 0;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}

.mfp-fade01.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}

.mfp-fade01.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}

/*# sourceMappingURL=style.css.map */