@charset "UTF-8";
body {
  background-color: #F1EDE5;
  min-height: 1000vh;
  font-family: "IBM Plex Sans JP", sans-serif;
  overflow-x: hidden;
  color: #38080C;
}

img {
  display: block;
  max-width: 100%;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

a {
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.7;
}

.btn_top, .btn_campaign {
  position: fixed;
  z-index: 100;
  right: 32px;
  display: none;
}

.btn_top {
  bottom: 70px;
  width: 72px;
}

.btn_campaign {
  right: 30px;
  bottom: 165px;
  width: 240px;
}

.biz {
  font-family: "BIZ UDPMincho", serif;
}

.noto {
  font-family: "Noto Sans JP", sans-serif;
}

header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  height: 94px;
  padding: 20px 40px 0;
  transform: translateY(-100%);
  transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  background-color: rgba(252, 252, 248, 0.8);
}
header.is-active {
  transform: translateY(0);
}
header .header_container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .header_container h1 {
  flex: none;
  width: 328px;
}
header .header_container nav ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
header .header_container nav li {
  padding: 0 16px;
}
header .header_container nav .corporatesite {
  position: relative;
  margin-left: 16px;
  padding-right: 0;
  padding-left: 32px;
  border-left: 1px solid #fff;
}
header .header_container nav .corporatesite a {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
header .header_container nav .corporatesite a:after {
  display: block;
  width: 21px;
  height: 21px;
  margin-left: 10px;
  background-image: url(../img/icon_link.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  content: "";
}
header .header_container nav a {
  display: inline-block;
  position: relative;
  font-weight: 600;
  font-size: 16px;
  color: #38080C;
  text-align: center;
  line-height: 1.6;
}

footer .bg_footer_wrapper {
  position: relative;
}
footer .bg_footer_wrapper .bg_footer {
  position: relative;
  z-index: 10;
  width: 100%;
}
footer .bg_footer_wrapper .icon_footer {
  position: absolute;
  bottom: calc(100% - 110px);
  left: 100px;
  z-index: 0;
  width: 159px;
  animation: yurayura 3s ease-in-out infinite;
  transform-origin: center bottom;
}
footer .footer_contaienr {
  padding-bottom: 40px;
  background-color: #F1EDE5;
}
footer .footer_contaienr ul {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
footer .footer_contaienr li {
  display: inline-block;
}
footer .footer_contaienr li a {
  display: inline-block;
  font-weight: 700;
  font-size: 16px;
}
footer .footer_contaienr li + li {
  margin-left: 40px;
}
footer .footer_logo img {
  width: 400px;
  margin: 0 auto;
}
footer .footer_bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  max-width: 1120px;
  margin: 80px auto 0;
}
footer .footer_bottom .footer_btn {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
footer .footer_bottom .footer_btn a {
  display: inline-block;
}
footer .footer_bottom .footer_btn a + a {
  margin-left: 40px;
}
footer .footer_bottom .footer_btn img {
  width: 288px;
}
footer .footer_bottom .copy {
  font-weight: 500;
  font-size: 14px;
  font-family: inherit;
}

@keyframes yurayura {
  0%, 100% {
    transform: rotate(-5deg); /* 左にちょっと傾く */
  }
  50% {
    transform: rotate(5deg); /* 右にちょっと傾く */
  }
}
@media only screen and (max-width: 768px) {
  .header_container nav {
    display: none;
  }
  header .header_container h1 {
    width: 39.7333vw;
    padding: 0;
  }
  header {
    height: unset;
    padding: 4.2666vw 0 4.2666vw 4.2666vw;
  }
  footer .bg_footer_wrapper .icon_footer {
    bottom: calc(100% - 8vw);
    left: 3vw;
    z-index: 0;
    width: 24vw;
  }
  footer {
    position: relative;
    z-index: 50;
  }
  footer .footer_contaienr {
    padding-top: 18.6666vw;
    padding-bottom: 6.4vw;
  }
  footer .footer_logo img {
    width: 66.1333vw;
  }
  footer .footer_contaienr ul {
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 10.6666vw;
  }
  footer .footer_contaienr ul li {
    width: 50%;
    text-align: center;
  }
  footer .footer_contaienr ul li:nth-child(n+3) {
    margin-top: 6.4vw;
  }
  footer .footer_contaienr ul li a {
    line-height: 1.6;
  }
  footer .footer_contaienr li + li {
    margin-left: 0;
  }
  footer .footer_bottom {
    display: block;
    max-width: 87.2vw;
    margin: 12.8vw auto 0;
  }
  footer .footer_bottom .footer_btn {
    display: block;
  }
  footer .footer_bottom .footer_btn a {
    display: block;
    width: 100%;
  }
  footer .footer_bottom .footer_btn a img {
    width: 100%;
  }
  footer .footer_bottom .footer_btn a + a {
    margin-left: 0;
    margin-top: 6.4vw;
  }
  footer .footer_bottom .copy {
    margin-top: 17.0666vw;
    font-size: 2.6666vw;
    text-align: center;
  }
  .btn_campaign {
    right: 2.6666vw;
    bottom: 26.6666vw;
    width: 38.4vw;
  }
  .btn_top {
    right: 1.6vw;
    bottom: 10vw;
    width: 12.8vw;
  }
}
@media only screen and (min-width: 769px) {
  .for_sp {
    display: none !important;
  }
}
.header_btn {
  display: none;
  position: fixed;
  top: 2.1333vw;
  right: 4.2666vw;
  z-index: 1000;
  width: 10.6666vw;
  height: 10.6666vw;
  border-radius: 100%;
  background-color: #FCFCF8;
  cursor: pointer;
  box-shadow: 0 0 3.2vw rgba(56, 8, 12, 0.1);
}
.header_btn span {
  display: block;
  position: absolute;
  left: 3.2vw;
  width: 4.2666vw;
  height: 2px;
  border-radius: 5px;
  background-color: #38080C;
  transition: 0.2s;
}
.header_btn span:nth-child(1) {
  top: 4.2666vw;
}
.header_btn span:nth-child(2) {
  top: 5.0666vw;
}
.header_btn span:nth-child(3) {
  top: 5.8666vw;
}
.header_btn.active span:nth-child(1) {
  width: 5.0666vw;
  transform: rotate(30deg);
}
.header_btn.active span:nth-child(2) {
  opacity: 0;
}
.header_btn.active span:nth-child(3) {
  width: 5.0666vw;
  transform: rotate(-30deg);
}
.header_btn.active span:nth-child(1), .header_btn.active span:nth-child(3) {
  top: 5.2vw;
  left: 2.9333vw;
}

.header_nav {
  position: fixed;
  top: 0;
  right: -100vw;
  bottom: 0;
  z-index: 500;
  width: 100%;
  height: 100svh;
  background-color: #F1EDE5;
  transition: 0.2s;
}
.header_nav.active {
  right: 0;
}
.header_nav .header_nav_container {
  width: 100%;
  height: 100%;
  overflow-x: scroll;
}
.header_nav .header_nav_inner {
  background-color: #F1EDE5;
  background-image: url(../img/bg_menu.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center top 2.6666vw;
  content: "";
}
.header_nav .btn_wrapper {
  width: 87.2vw;
  padding-top: 12.8vw;
  margin: 12.8vw auto 0;
  border-top: 2px solid #D8D8D8;
}
.header_nav .btn_wrapper a {
  display: block;
  width: 100%;
}
.header_nav .btn_wrapper a img {
  width: 100%;
}
.header_nav .btn_wrapper a + a {
  margin-top: 6.4vw;
}
.header_nav .copy {
  margin-top: 20.5333vw;
  padding-bottom: 13.3333vw;
  font-weight: 600;
  font-size: 2.6666vw;
  text-align: center;
  color: #38080C;
}
.header_nav ul {
  padding-top: 46vw;
}
.header_nav ul a {
  display: inline-block;
  font-weight: 600;
  font-size: 3.7333vw;
}
.header_nav li {
  text-align: center;
}
.header_nav li + li {
  margin-top: 6.4vw;
}/*# sourceMappingURL=common.css.map */