/* reset
--------------------------------------*/
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  -webkit-text-size-adjust: 100%;
}

html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
}

article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, video {
  display: block;
}

li {
  list-style: none;
}

html {
  overflow-y: scroll;
}

img {
  border: 0;
  vertical-align: bottom;
}

/* structure
--------------------------------------*/
html {
  font-size: 62.5%;
}

body {
  font-family: "Yu Gothic", YuGothic, sans-serif;
  background-color: #fff;
  font-size: 1.6em;
  font-size: 1.6rem;
  font-feature-settings: "palt";
  line-height: 1.5;
  color: #333;
}

#wrapper {
  margin: 0 auto;
  width: 100%;
  overflow: hidden;
}

/* style
--------------------------------------*/
a {
  text-decoration: none;
  color: inherit;
  outline: none;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0.01);
}

sub {
  position: relative;
  bottom: -.5em;
  display: inline-block;
  font-size: 1rem;
}

.mover {
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
}

.mover:hover {
  opacity: .5;
}

.txt_c {
  text-align: center !important;
}

.txt_r {
  text-align: right !important;
}

img {
  width: 100%;
  max-width: 100%;
  height: auto;
}

/* header
--------------------------------------*/
#header {
  width: 100%;
  min-width: 980px;
  height: calc(100vh + 76px);
}
#header .main_visual {
  position: relative;
  min-height: 300px;
  height: 100vh;
  overflow: hidden;
}
#header .main_visual .main_visual_bg {
  opacity: 0;
  position: absolute;
  top: 135px;
  left: 0;
  width: 100%;
  height: calc(100% - 135px);
  background: url(../img/img_mv_02_pc.jpg) 0 0 repeat-x;
  background-size: cover;
  transition: 1s;
}
#header .main_visual .main_visual_bg.is-visible {
  opacity: 1;
}
#header .main_visual_h1 {
  position: absolute;
  top: 55px;
  left: 50%;
  margin-left: -130px;
  width: 260px;
  line-height: 0;
  z-index: 50;
}
#header .main_visual_h1 + p {
  position: absolute;
  top: 70px;
  left: 50%;
  margin-left: 245px;
  width: 138px;
  opacity: 0;
  animation: fadein .4s ease-in 1s forwards;
}
#header .arrow {
  display: none;
  position: absolute;
  bottom: 20px;
  left: 50%;
  margin-left: -30px;
  width: 60px;
  height: 60px;
  background: url(../img/ic_arrow.svg) center bottom no-repeat;
  background-size: contain;
  cursor: pointer;
  transition: .3s;
  z-index: 50;
}
#header .arrow:hover {
  opacity: .5;
}
#header .is-visible ~ .arrow {
  display: block;
}

.header_inner_wrap {
  background-color: white;
}
#header.fixed .header_inner_wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}

.header_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  min-width: 980px;
  padding: 0 55px;
  height: 76px;
  opacity: 1;
  transition: .3s;
}
.header_inner .logo {
  margin: 10px 0 0 30px;
  width: 120px;
}
.header_inner .logo a {
  display: block;
  line-height: 0;
}
body.fixed .header_inner {
  opacity: 0;
}

@-webkit-keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes bubble {
  0% {
    transform: scale(1, 1) translate(0%, 0%);
    opacity: 0;
  }
  4% {
    transform: scale(1, 1) translate(0%, 0%);
    opacity: 1;
  }
  15% {
    transform: scale(0.9, 0.9) translate(0%, 1%);
    opacity: 1;
  }
  30% {
    transform: scale(1.3, 0.8) translate(0%, 3%);
    opacity: 1;
  }
  50% {
    transform: scale(0.8, 1.3) translate(0%, -3%);
    opacity: 1;
  }
  70% {
    transform: scale(1.1, 0.9) translate(0%, 1%);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1) translate(0%, 0%);
    opacity: 1;
  }
}
@keyframes bubble {
  0% {
    transform: scale(1, 1) translate(0%, 0%);
    opacity: 0;
  }
  4% {
    transform: scale(1, 1) translate(0%, 0%);
    opacity: 1;
  }
  15% {
    transform: scale(0.9, 0.9) translate(0%, 1%);
    opacity: 1;
  }
  30% {
    transform: scale(1.3, 0.8) translate(0%, 3%);
    opacity: 1;
  }
  50% {
    transform: scale(0.8, 1.3) translate(0%, -3%);
    opacity: 1;
  }
  70% {
    transform: scale(1.1, 0.9) translate(0%, 1%);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1) translate(0%, 0%);
    opacity: 1;
  }
}
  .shine {
    position: relative;
    overflow: hidden;
  }

  .menu_btn a:hover .shine:nth-child(1) {
    animation: shine01 0.2s cubic-bezier(0.39, 0.575, 0.565, 1) 0s forwards alternate, shine02 0.2s cubic-bezier(0.39, 0.575, 0.565, 1) 0.2s forwards alternate;
  }
  .menu_btn a:hover .shine:nth-child(2) {
    animation: shine01 0.2s cubic-bezier(0.39, 0.575, 0.565, 1) 0.1s forwards alternate, shine02 0.2s cubic-bezier(0.39, 0.575, 0.565, 1) 0.3s forwards alternate;
  }
  .menu_btn a:hover .shine:nth-child(3) {
    animation: shine01 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0.1s forwards alternate, shine02 0.2s cubic-bezier(0.39, 0.575, 0.565, 1) 0.4s forwards alternate;
  }

@-webkit-keyframes shine01 {
  0% {
    transform-origin: top right;
    transform: scaleX(1);
  }
  100% {
    transform-origin: top right;
    transform: scaleX(0);
  }
}
@keyframes shine01 {
  0% {
    transform-origin: top right;
    transform: scaleX(1);
  }
  100% {
    transform-origin: top right;
    transform: scaleX(0);
  }
}
@-webkit-keyframes shine02 {
  0% {
    transform-origin: top left;
    transform: scaleX(0);
  }
  100% {
    transform-origin: top left;
    transform: scaleX(1);
  }
}
@keyframes shine02 {
  0% {
    transform-origin: top left;
    transform: scaleX(0);
  }
  100% {
    transform-origin: top left;
    transform: scaleX(1);
  }
}
.gnav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  padding: 40px;
  min-height: 600px;
  height: 100vh;
  max-height: 1200px;
  background-color: #fff;
  overflow: hidden;
  opacity: 0;
  transition: .3s ease-out;
  animation: close_nav 0.4s cubic-bezier(0.39, 0.575, 0.565, 1);
  z-index: -1;
}
.gnav.open {
  opacity: 1;
  animation: open_nav 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) forwards;
  z-index: 100;
}

@-webkit-keyframes close_nav {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.01);
    transform: scale(1.01);
  }
}
@keyframes close_nav {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.01);
    transform: scale(1.01);
  }
}
@-webkit-keyframes open_nav {
  0% {
    -webkit-transform: scale(1.01);
    transform: scale(1.01);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes open_nav {
  0% {
    -webkit-transform: scale(1.01);
    transform: scale(1.01);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.gnav_close {
  position: absolute;
  top: 26px;
  right: 55px;
}
.gnav_close .btn_gnav_close {
  display: block;
  width: 100px;
  height: 30px;
  background: url(../img/btn_close.svg) left center no-repeat;
  background-size: auto 20px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
.gnav_close .btn_gnav_close span {
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -1px;
  width: 29px;
  height: 2px;
  transform: rotate(45deg);
  transition: .3s;
}
.gnav_close .btn_gnav_close span:nth-child(2) {
  transform: rotate(-45deg);
}
.gnav_close .btn_gnav_close span::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #333;
}

  .gnav_close .btn_gnav_close:hover .shine:nth-child(1)::after {
    animation: shine01 0.2s cubic-bezier(0.39, 0.575, 0.565, 1) 0s forwards alternate, shine02 0.2s cubic-bezier(0.39, 0.575, 0.565, 1) 0.2s forwards alternate;
  }
  .gnav_close .btn_gnav_close:hover .shine:nth-child(2)::after {
    animation: shine01 0.2s cubic-bezier(0.39, 0.575, 0.565, 1) 0.1s forwards alternate, shine02 0.2s cubic-bezier(0.39, 0.575, 0.565, 1) 0.3s forwards alternate;
  }

.nav_logo {
  position: absolute;
  right: 45px;
  bottom: 30px;
  width: 52px;
}

.gnav_left {
  position: relative;
  width: 50%;
  background-color: #fff;
  overflow: hidden;
}
.gnav_left .gnav_bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}
.gnav_left .gnav_bg.is_active {
  z-index: 10;
  -webkit-animation: change_img 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) alternate forwards;
  animation: change_img 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) alternate forwards;
}

@-webkit-keyframes change_img {
  0% {
    opacity: .7;
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes change_img {
  0% {
    opacity: .7;
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.gnav_right {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 70px 0 0 40px;
  width: 50%;
  text-align: center;
  -webkit-overflow-scrolling: touch;
  overflow: auto;
}
.gnav_right ul:not(.sns_link) {
  width: 380px;
}
.gnav_right ul:not(.sns_link) li {
  margin-left: -50px;
  opacity: 0;
}
.gnav_right ul:not(.sns_link) a {
  display: block;
  background-position: center center;
  background-repeat: no-repeat;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  opacity: .5;
  transition: opacity .3s;
}
.gnav_right ul:not(.sns_link) a:hover {
  opacity: 1;
}
.gnav_right .nav_menu li:first-child a {
  opacity: 1;
}
.gnav_right .nav_menu li + li {
  margin-top: 5px;
}
.gnav_right .nav_menu li:last-child {
  margin-top: 30px;
}
.gnav_right .nav_menu a {
  height: 45px;
  background-size: auto 15px;
}
.gnav_right .nav_menu a.nav_home {
  background-image: url(../img/nav_home.svg);
}
.gnav_right .nav_menu a.nav_features {
  background-image: url(../img/nav_features.svg);
}
.gnav_right .nav_menu a.nav_review {
  background-image: url(../img/nav_review.svg);
}
.gnav_right .nav_menu a.nav_product {
  background-image: url(../img/nav_product.svg);
}
.gnav_right .nav_menu a.nav_catalog {
  background-image: url(../img/nav_catalog.svg);
}
.gnav_right .nav_menu a.nav_contact {
  height: 95px;
  border-top: 1px solid #cbcbcb;
  border-bottom: 1px solid #cbcbcb;
  background-image: url(../img/nav_contact.svg);
  background-size: auto 18px;
}
.gnav_right .nav_others {
  margin-top: 25px;
}
.gnav_right .nav_others a {
  height: 36px;
  background-size: auto 13px;
}
.gnav_right .nav_others a.nav_company {
  background-image: url(../img/nav_company.svg);
}
.gnav_right .nav_others a.nav_agency {
  background-image: url(../img/nav_agency.svg);
}
.gnav_right .nav_others a.nav_questions {
  background-image: url(../img/nav_questions.svg);
}

.sns_link {
  display: flex;
  justify-content: center;
  margin-top: 25px;
}
.sns_link li {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  overflow: hidden;
}
.sns_link li + li {
  margin-left: 10px;
}
.sns_link a {
  position: relative;
  display: block;
  width: 25px;
  height: 25px;
  background-color: #333;
  border-radius: 50%;
  overflow: hidden;
  transition: background-color .3s;
}
.sns_link img, .sns_link svg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto !important;
  transform: translate(-50%, -50%);
}
.sns_link .nav_fb:hover {
  background-color: #3b5998;
}
.sns_link .nav_fb img, .sns_link .nav_fb svg {
  height: 14px;
}
.sns_link .nav_tw:hover {
  background-color: #1da1f2;
}
.sns_link .nav_tw img, .sns_link .nav_tw svg {
  margin-left: 1px;
  height: 11px;
}
.sns_link .nav_insta {
  background: linear-gradient(to bottom, #333 0%, #333 100%);
}
footer .sns_link .nav_insta {
  background: linear-gradient(to bottom, #fff 0%, #fff 100%);
}
.sns_link .nav_insta:hover {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}
.sns_link .nav_insta img, .sns_link .nav_insta svg {
  height: 13px;
}
.gnav .sns_link {
  margin-left: -50px;
  opacity: 0;
}

/* pagetop / bottom_link
--------------------------------------*/
.pagetop {
  margin: 100px auto 0;
  min-width: 980px;
  max-width: 1000px;
  border-bottom: 1px solid #e5e5e5;
}

.pagetop a {
  position: relative;
  display: block;
  margin: 0 auto;
  width: 80px;
  height: 65px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
.pagetop a::after {
  content: "";
  position: absolute;
  top: 7px;
  left: 50%;
  margin-left: -13px;
  width: 26px;
  height: 26px;
  border-top: 1px solid #333;
  border-left: 1px solid #333;
  transform: rotate(45deg);
}

.contents_btm_link {
  margin-top: 60px;
  display: flex;
  justify-content: center;
}
.contents_btm_link li {
  width: 350px;
}
.contents_btm_link li + li {
  margin-left: 60px;
}

/* footer
--------------------------------------*/
footer {
  padding: 90px 0 40px;
  width: 100%;
  min-width: 980px;
  background-color: #5aa5cc;
  color: #fff;
}

.fnav {
  display: flex;
  color: #fff;
}
.fnav .f_logo_ifory {
  width: 200px;
}
.fnav .f_logo_ifory svg {
  width: 154px;
}
.fnav .f_logo_ifory svg .st0 {
  fill: #fff;
}
.fnav .fnav_menu {
  margin-top: 15px;
  width: 360px;
  display: flex;
  flex-wrap: wrap;
  align-content: space-between;
  height: 40px;
}
.fnav .fnav_menu li {
  width: calc(100% / 3);
}
.fnav .fnav_menu a {
  display: block;
  height: 12px;
  line-height: 0;
  background-position: 0 0;
  background-size: auto 12px;
  background-repeat: no-repeat;
}
.fnav .fnav_menu a svg {
  width: auto !important;
  height: 12px;
}
.fnav .fnav_menu a.fnav_catalog svg {
  height: 13px;
}
.fnav .fnav_menu a.fnav_contact svg {
  height: 14px;
}
footer .sns_link {
  margin-top: 10px;
  margin-left: auto;
  display: flex;
  justify-content: flex-end;
}
footer .sns_link a {
  background-color: #fff;
}
footer .sns_link a svg path {
  fill: #5aa5cc !important;
}
footer .sns_link a:hover svg path {
  fill: #fff !important;
}

.f_btm {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  padding-top: 145px;
  font-size: 1.1rem;
}
.f_btm .f_logo_selery {
  margin-right: auto;
  line-height: 0;
  width: 50px;
}
.f_btm .f_logo_selery svg {
  width: 50px;
  height: auto;
}
.f_btm .nav_others {
  margin-right: 25px;
  text-align: right;
  letter-spacing: -.04em;
}
.f_btm .nav_others li {
  display: inline-block;
  margin-left: 25px;
  letter-spacing: normal;
  vertical-align: middle;
}
.f_btm .nav_others li a {
  letter-spacing: normal;
  line-height: 1;
  color: #fff;
  transition: .3s;
}
.f_btm .nav_others li a:hover {
  opacity: .5;
}
.f_btm small {
  margin-left: 20px;
  font-size: 1rem;
  letter-spacing: normal;
  color: #fff;
}

/* contents
--------------------------------------*/
#contents {
  padding-top: 50px;
}

.inner {
  margin: auto;
  max-width: 1000px;
  min-width: 980px;
}

@media all and (-ms-high-contrast: none) {
  *::-ms-backdrop, .header_inner .logo a img {
    height: auto;
  }

  *::-ms-backdrop, .hnav .nav_pc li a {
    background-size: 100% auto !important;
  }

  *::-ms-backdrop, .gnav_right .nav_menu a {
    background-size: auto 20px;
  }

  *::-ms-backdrop, .gnav_right .nav_menu a.nav_catalog {
    background-size: auto 21px;
  }

  *::-ms-backdrop, .gnav_right .nav_menu a.nav_contact {
    background-size: auto 23px;
  }

  *::-ms-backdrop, .f_btm {
    position: relative;
  }

  *::-ms-backdrop, .f_btm .f_logo_selery {
    position: absolute;
    bottom: -5px;
    left: 0;
    height: 30px;
  }
}
