/* ---------------------------------------------------------
    font
--------------------------------------------------------- */
@font-face {
  font-family: "line-rg";
  src: url("../font/LINESeedJP_A_OTF_Rg.woff") format("woff");
}
@font-face {
  font-family: "line-bd";
  src: url("../font/LINESeedJP_A_OTF_Bd.woff") format("woff");
}
@font-face {
  font-family: "line-eb";
  src: url("../font/LINESeedJP_A_OTF_Eb.woff") format("woff");
}
@font-face {
  font-family: "line-th";
  src: url("../font/LINESeedJP_A_OTF_Th.woff") format("woff");
}
/* ---------------------------------------------------------
    fade
--------------------------------------------------------- */
.fadeIn_up {
  opacity: 0;
  transform: translate(0, 50%);
  transition: 2s;
}
.fadeIn_up.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

.fadeIn_up.delay {
  transition-delay: 0.5s;
}

.fadeIn {
  opacity: 0;
  transition: 2s;
}
.fadeIn.is-show {
  opacity: 1;
}

.fadeIn.delay {
  transition-delay: 0.5s;
}

.oneTxt {
  visibility: hidden;
}
.oneTxt.is-ready {
  visibility: visible;
}
.oneTxt span {
  opacity: 0;
  transition: 0.6s ease-in-out;
}

/* ---------------------------------------------------------
    variable
--------------------------------------------------------- */
html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  font-family: "line-bd";
  overflow-x: hidden;
  background: #fff;
}

img {
  width: 100%;
  vertical-align: top;
}

.inner {
  max-width: 1000px;
  margin: auto;
  padding: 0 15px;
}

/* ---------------------------------------------------------
    header
--------------------------------------------------------- */
.header {
  width: calc(100% - 90px);
  padding: 0 45px;
  box-sizing: content-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  top: 40px;
  left: 0;
  z-index: 999;
}
.header .logo {
  width: 190px;
}
.header .mail_icon {
  width: 200px;
  height: 50px;
  border-radius: 50px;
  background: #707070;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
}
.header .mail_icon .link {
  position: absolute;
  inset: 0;
}
.header .mail_icon .text {
  font-size: 18px;
  color: #fff;
}
.header .mail_icon .icon {
  width: 30px;
}

@media (max-width: 767px) {
  .header {
    width: calc(100% - 40px);
    padding: 0 20px;
    top: 30px;
  }
  .header .logo {
    width: 190px;
  }
  .header .mail_icon {
    display: none;
  }
}
/* ---------------------------------------------------------
    side
--------------------------------------------------------- */
.side {
  width: 65px;
  height: 280px;
  border-radius: 10px 0 0 10px;
  background: #ff9300;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 99;
}
.side .link {
  position: absolute;
  inset: 0;
}
.side .text {
  font-size: 18px;
  color: #fff;
  letter-spacing: -8px;
  writing-mode: vertical-lr;
  font-feature-settings: initial;
}
.side .icon {
  width: 30px;
}

@media (max-width: 767px) {
  .side {
    width: 100%;
    height: auto;
    padding: 1.5em 0;
    border-radius: 0;
    flex-direction: row;
    gap: 10px;
    right: auto;
    left: 0;
    top: auto;
    bottom: 0;
    transform: none;
  }
  .side .link {
    position: absolute;
    inset: 0;
  }
  .side .text {
    font-size: 18px;
    letter-spacing: 0.01rem;
    writing-mode: horizontal-tb;
    font-feature-settings: initial;
  }
  .side .icon {
    width: 30px;
  }
}
/* ---------------------------------------------------------
    footer
--------------------------------------------------------- */
.footer {
  padding: 30px 0;
}
.footer .logo {
  width: 200px;
  margin: auto;
}
.footer .copy {
  font-size: 14px;
  text-align: center;
  margin-top: 35px;
  font-family: "line-rg";
}

@media (max-width: 767px) {
  .footer .copy {
    font-size: 12px;
  }
}/*# sourceMappingURL=common.css.map */