@charset "UTF-8";
:root {
  --easing: cubic-bezier(0.2, 1, 0.2, 1);
  --transition: 0.8s var(--easing);
  --color-base: #0c1210;
  --color-gray: #ddd;
  --color-theme: #96756c;
  --color-theme-darken: #6e8f00;
  --color-text: #544542;
  --box-shadow: 0.8rem 0.8rem 1.2rem rgba(0, 0, 0, 0.05),
    -0.8rem -0.8rem 1.2rem #fff;
  --box-shadow-hover: 1rem 1rem 1.5rem rgba(0, 0, 0, 0.08),
    -1rem -1rem 1.5rem #fff;
  --box-shadow-inset: inset 0.8rem 0.8rem 1.2rem rgba(0, 0, 0, 0.05),
    inset -0.8rem -0.8rem 1.2rem #fff;
  --box-shadow-dark: 0.8rem 0.8rem 1.2rem rgba(0, 0, 0, 0.1),
    -0.8rem -0.8rem 1.2rem rgba(#fff, 0.2);
}

/* ==========================================================================

	common style

========================================================================== */
html {
  font-size: 62.5%;
  font-family: "Josefin Sans", "Noto Sans JP", sans-serif;
}

body {
  font-size: 1.2rem;
  background: #ffffff;
  position: relative;
  color: #544542;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

@keyframes gradationAnim {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
body.overflow {
  overflow: hidden;
}

main {
  position: relative;
  overflow: hidden;
}

input:-internal-autofill-selected {
  background-color: #fbfbfd !important;
}

a {
  color: #3c3d3d;
  text-decoration: none;
}

a:hover {
  transition: all 1s;
}

/* ==========================================================================

	loading

========================================================================== */
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    display: none;
    opacity: 0;
    z-index: -1;
  }
}
#loader {
  width: 100%;
  height: 100vh;
  background-color: #f5ce43;
  z-index: 999999;
  position: fixed;
}

#loader.loaded {
  animation: fadeOut 3s forwards;
  display: none;
  z-index: -1;
}

/* ==========================================================================

	splide

========================================================================== */
.slide-media,
.thumb-media {
  position: relative;
  overflow: hidden;
}

.slide-media img,
.thumb-media img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.splide {
  z-index: 0;
}

.splide__pagination {
  font-size: 0;
}

.splide__pagination__page:focus-visible {
  outline: 3px solid rgba(180, 233, 0, 0.8);
  outline-offset: 3px;
  z-index: 1;
  transition: none;
}

.splide__slide:focus-visible {
  outline: 3px solid rgba(180, 233, 0, 0.8);
  outline-offset: 3px;
  z-index: 1;
  transition: none;
}

.splide-wrapper {
  position: relative;
}

.splide__arrow > svg {
  display: none;
}

.splide__pagination--ttb {
  bottom: 0;
  display: flex;
  flex-direction: column;
  left: auto;
  padding: 1em 0;
  right: 0.5em;
  top: 0;
}

/* ==========================================================================

	animation

========================================================================== */
.hover-photo {
  vertical-align: top;
  transition: transform 1s cubic-bezier(0.5, 1, 0.89, 1);
  overflow: hidden;
  border-radius: 16px;
}
.hover-photo img {
  transform: scale(1);
  transition: transform 1s cubic-bezier(0.5, 1, 0.89, 1);
  vertical-align: bottom;
}
.hover-photo:hover img {
  transform: scale(1.08);
  transition: transform 1s cubic-bezier(0.5, 1, 0.89, 1);
}

.fadein {
  opacity: 0;
  transform: translate(0, 15px);
  transition: 0.8s linear;
}

.fadein.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}

.fadein_fade {
  transform: translateY(0px) scale(1);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  opacity: 0;
  filter: blur(10px) brightness(1.5);
}

.fadein_fade.scrollin {
  transform: translate(0, 0);
  transform: translateY(0px) scale(1);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  opacity: 1;
  filter: blur(0px) brightness(1);
  transition: transform 2s cubic-bezier(0.21, 0.75, 0.38, 0.95) 0.01s, opacity 2s ease 0.01s, filter 2s ease 0.01s;
}

.delay-100 {
  transition-delay: 100ms;
}

.delay-200 {
  transition-delay: 200ms;
}

.delay-300 {
  transition-delay: 300ms;
}

.delay-400 {
  transition-delay: 400ms;
}

.display-none {
  display: none;
}

.opacity-0 {
  opacity: 0;
}

.linkanime,
.linkanime::after {
  transition: all 640ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

.slidein {
  opacity: 0;
}

.slidein.is-active {
  opacity: 1;
  animation: slideIn 1.6s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
}

@keyframes slideIn {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
  }
  40%, 100% {
    opacity: 1;
  }
}
.matrix .bg-wrap,
.matrix .bg-wrap .inn {
  display: block;
}

.matrix .bg-wrap {
  overflow: hidden;
  opacity: 0;
}

.matrix .bg-wrap + .bg-wrap {
  margin-top: 10px;
}

.matrix .bg-wrap .inn {
  opacity: 0;
  transform: matrix(1, 0, 0, 1, 0, 100);
  transition: 1.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.matrix.is-active .bg-wrap {
  opacity: 1;
}

.matrix.is-active .bg-wrap .inn {
  opacity: 1;
  transform: matrix(1, 0, 0, 1, 0, 0);
}

.mask-bg {
  color: transparent;
  display: inline-block;
  font-size: 36px;
  font-weight: bold;
  overflow: hidden;
  position: relative;
  transition: color 0ms 450ms;
}

.mask-bg::after {
  background: linear-gradient(to right, #362ae0 0%, #3b79cc 50%, #42d3ed 100%);
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transform: translate(0, 100%);
}

.mask-bg.is-active {
  color: #362ae0;
}

.mask-bg.is-active::after {
  animation: mask-bg 1.2s cubic-bezier(0.8, 0, 0.17, 1);
}

@keyframes mask-bg {
  0% {
    transform: translate(0, 101%);
  }
  40%, 60% {
    transform: translate(0, 0%);
  }
  100% {
    transform: translate(0, -100%);
  }
}
@media only screen and (min-width: 769px) {
  .poyopoyo:hover {
    animation: poyopoyo 2s ease-out infinite;
    opacity: 1;
  }
}

@keyframes poyopoyo {
  0%, 40%, 60%, 80% {
    transform: scale(1);
  }
  50%, 70% {
    transform: scale(0.95);
  }
}
.js-parallax {
  visibility: hidden;
}

.js-parallax.-inview-init {
  visibility: visible;
}

.js-inview.js-inview-fade {
  opacity: 0;
  visibility: hidden;
}

.js-inview.js-inview-fade.is-active {
  opacity: 1;
  visibility: visible;
  transition: all 1.5s ease-out;
}

.js-inview.js-inview-slidein {
  opacity: 0;
  visibility: hidden;
}

@media screen and (max-width: 767px) {
  .js-inview.js-inview-slidein {
    transform: translate3d(0, 13.3333333333vw, 0);
  }
}
@media screen and (min-width: 768px) {
  .js-inview.js-inview-slidein {
    transform: translate3d(0, 100px, 0);
  }
}
.js-inview.js-inview-slidein.is-active {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
  transition: transform 1.5s cubic-bezier(0.19, 1, 0.22, 1), opacity 1s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.js-inview.js-inview-img-clip {
  background-color: transparent;
}

.js-inview.js-inview-img-clip .js-inview-inner {
  position: relative;
  will-change: transform, clip-path;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 767px) {
  .js-inview.js-inview-img-clip .js-inview-inner {
    transform: translate3d(0, 20.6666666667vw, 0);
  }
}
@media screen and (min-width: 768px) {
  .js-inview.js-inview-img-clip .js-inview-inner {
    transform: translate3d(0, 100px, 0);
  }
}
.js-inview.js-inview-img-clip img, .js-inview.js-inview-img-clip video {
  width: 100%;
  height: auto;
  display: block;
  transform: scale(1.1);
  filter: blur(5px) brightness(1.5) opacity(30%);
}

.js-inview.js-inview-img-clip.is-active .js-inview-inner {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
  transition: transform 1.5s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.5s cubic-bezier(0.39, 0.575, 0.565, 1);
  animation: kf-clip-path 1s linear forwards;
}

.js-inview.js-inview-img-clip.is-active img, .js-inview.js-inview-img-clip.is-active video {
  transform: scale(1);
  filter: blur(0px) brightness(1) opacity(100%);
  transition: transform 1.5s cubic-bezier(0.39, 0.575, 0.565, 1), filter 1.25s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
@keyframes kf-clip-path {
  0% {
    animation-timing-function: cubic-bezier(0, 0, 0.25, 1);
    clip-path: inset(100% 0 0 0 round 0 100% 0 0);
  }
  30% {
    animation-timing-function: cubic-bezier(0, 0, 1, 1);
    clip-path: inset(0 0 0 0 round 0 15% 0 0);
  }
  100% {
    clip-path: inset(0 0 0 0 round 0 0 0 0);
  }
}
/* ==========================================================================

	header

========================================================================== */
.header {
  display: flex;
  position: fixed;
  width: 100%;
  height: 90px;
  top: 0;
  z-index: 10;
  margin: 0;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 9999;
  padding: 0 4.8vw;
  background: #ffffff;
}
@media only screen and (max-width: 768px) {
  .header {
    padding: 10px 0px;
    margin: 0;
    width: 100%;
    display: block;
    height: 60px;
    background: rgba(255, 255, 255, 0.8);
    -webkit-backdrop-filter: blur(20px);
            backdrop-filter: blur(20px);
  }
}
.header__logo {
  padding: 0;
  width: 180px;
}
@media only screen and (max-width: 1000px) {
  .header__logo {
    width: 200px;
  }
}
@media only screen and (max-width: 768px) {
  .header__logo {
    margin: 9px 0 0 19px;
    width: 155px;
    z-index: 100000;
  }
  .header__logo .regular {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
  }
  .header__logo .white {
    display: block;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
  }
}
.header__nav {
  list-style: none;
  z-index: 1000;
  margin: 0 0 0 auto;
}
@media only screen and (max-width: 768px) {
  .header__nav {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
    height: 100svh;
    padding: 120px 20px 50px;
    margin: 0;
    background: #ffffff;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .header__nav::after {
    content: "Copyright © LIGHTEDGe";
    position: absolute;
    bottom: 30px;
    right: 20px;
    color: #000000;
    letter-spacing: 1px;
    font-size: 10px;
  }
}
@media only screen and (max-width: 768px) {
  .header__nav .nav {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 100;
  }
}
.header__nav ul {
  margin: 0px;
}
.header__nav ul li {
  font-size: 1.3rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 1px;
  cursor: pointer;
  color: #000000;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .header__nav ul li {
    font-size: 1.7rem;
  }
}
.header__nav ul li .en {
  font-size: max(0.5vw, 12px);
  margin: 0;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .header__nav ul li .en {
    font-size: max(0.6vw, 14px);
  }
}
.header__nav ul li i {
  color: #3e5b43;
  margin: 0 1px 0 0;
  margin: 1.5px 2px 0 0;
  font-size: 14px;
}
.header__nav ul li:not(:last-child) {
  margin: 0 50px 0 0;
  text-transform: none;
}
@media only screen and (max-width: 768px) {
  .header__nav ul li:not(:last-child) {
    margin: 0 0 20px 0;
  }
}
.header .inner {
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.header__burger {
  background-size: 100%;
  width: 3.1rem;
  height: 2.2rem;
  background-repeat: no-repeat;
}

.menu-trigger {
  display: none;
}
@media only screen and (max-width: 768px) {
  .menu-trigger {
    display: block;
    transition: all 0.4s;
    box-sizing: border-box;
    cursor: pointer;
  }
}

.menu-trigger {
  position: absolute;
  top: 50%; /* Safari¨ */
  transform: translate(0, -50%);
  width: 42px;
  height: 37px;
  z-index: 2;
  margin: 0;
  z-index: 9999;
}
@media only screen and (max-width: 768px) {
  .menu-trigger {
    right: 10px;
  }
}

.menu-trigger:after, .menu-trigger:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: -3px;
  margin: auto;
  display: block;
  width: 50%;
  height: 0.1rem;
  content: "";
  background-color: #3c3d3d;
  transition: width 0.2s cubic-bezier(0.19, 1, 0.22, 1), top 0.2s cubic-bezier(0.19, 1, 0.22, 1), bottom 0.2s cubic-bezier(0.19, 1, 0.22, 1), transform 0.2s cubic-bezier(0.19, 1, 0.22, 1);
}

.menu-trigger.active:after, .menu-trigger.active:before {
  background-color: #3e5b43;
}

.menu-trigger:before {
  top: -0.6rem;
}

.menu-trigger:after {
  bottom: -0.6rem;
  opacity: 0.6;
}

.menu-trigger.active:before {
  top: 0;
  width: 50%;
  transform: rotate(45deg);
}

.menu-trigger.active:after {
  bottom: 0;
  width: 50%;
  transform: rotate(-45deg);
}

@media only screen and (max-width: 768px) {
  .head-animation {
    transform: translateY(-100%);
  }
}
@media only screen and (min-width: 769px) {
  header.is-animation .site_inner {
    height: 33px;
  }
}
.overflow .header .header__nav {
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 1 !important;
  visibility: visible;
  display: block !important;
}

/* ==========================================================================

	pagetop

========================================================================== */
.pagetop {
  content: "";
  display: inline-block;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  position: absolute;
  top: -50px;
  right: -5px;
  background: #000000;
  border: 2px solid #000000;
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
.pagetop::after {
  content: "";
  width: 16px;
  height: 16px;
  border: 0;
  border-top: solid 2px #ffffff;
  border-right: solid 2px #ffffff;
  position: absolute;
  top: 50px;
  right: 40px;
  margin-top: -4px;
  transform: rotate(-45deg);
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
@media only screen and (max-width: 768px) {
  .pagetop::after {
    top: 39px;
    right: 30px;
  }
}
@media only screen and (max-width: 768px) {
  .pagetop {
    width: 80px;
    height: 80px;
    top: -43px;
    right: 0px;
  }
}
@media only screen and (min-width: 769px) {
  .pagetop:hover {
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    transform: scale(1.3);
    background: #ffffff;
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  }
  .pagetop:hover::after {
    border-top: solid 2px #000000;
    border-right: solid 2px #000000;
  }
}

/* ==========================================================================

	footer

========================================================================== */
footer {
  width: 100%;
  margin: 0 auto 0;
  position: relative;
  background: #ffffff;
  padding: 120px 0 160px;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  footer {
    margin: 0px auto 0;
    padding: 70px 0 30px;
  }
}
footer .address_box {
  margin: 30px 0 0;
}
@media only screen and (max-width: 768px) {
  footer .address_box {
    border-bottom: 1px solid #000000;
    padding: 0 0 80px;
  }
}
footer .address_box .address_title {
  font-size: 15px;
  font-weight: bold;
  color: #000000;
}
@media only screen and (max-width: 768px) {
  footer .address_box .address_title {
    font-size: 14px;
  }
}
footer .address_box .address_title_sub {
  font-size: 14px;
  margin: 2px 0 4px;
  color: #000000;
}
@media only screen and (max-width: 768px) {
  footer .address_box .address_title_sub {
    font-size: 14px;
  }
}
footer .address_box .address_main {
  font-size: 14px;
  margin: 8px 0 4px;
  color: #000000;
}
@media only screen and (max-width: 768px) {
  footer .address_box .address_main {
    font-size: 14px;
  }
}
footer .address_box .access_link {
  font-size: 14px;
  padding: 0 0 0 16px;
  position: relative;
  border-bottom: 1px solid #000000;
}
footer .address_box .access_link:before {
  content: "";
  background: url(../img/common/map.svg);
  background-size: contain;
  width: 14px;
  height: 14px;
  position: absolute;
  top: -3px;
  left: 0;
}
footer .address_box .address_txt {
  margin: 10px 0 0;
}
footer .inner {
  margin: 0 auto;
  max-width: 1300px;
  width: calc(100% - 17vw);
  padding: 150px 0 60px;
  position: relative;
  border-top: 1px solid #3c3d3d;
}
@media only screen and (max-width: 768px) {
  footer .inner {
    padding: 90px 0 30px;
    width: calc(100% - 40px);
  }
}
footer .logo_bg {
  width: 60%;
  filter: grayscale(100);
  opacity: 0.1;
  position: absolute;
  bottom: 40px;
  left: -10px;
}
@media only screen and (max-width: 768px) {
  footer .logo_bg {
    bottom: 20px;
    left: -2px;
  }
}
footer .logo {
  width: 300px;
}
@media only screen and (max-width: 768px) {
  footer .logo {
    width: 220px;
  }
}
footer .logo img {
  vertical-align: top;
}
footer .ope {
  margin: 50px 0 0;
  font-size: 11px;
  opacity: 0.7;
}
footer .ope_name {
  margin: 10px 0 0;
  font-size: 18px;
}
footer .ope_link {
  margin: 10px 0 0;
  font-size: 12px;
}
footer .address {
  margin: 30px 0 0;
  padding: 30px 0 0;
  position: relative;
}
footer .address:before {
  width: 30px;
  height: 1px;
  background: #3c3d3d;
  content: "";
  display: block;
  position: absolute;
  top: 0px;
  left: 0;
}
footer .mail {
  margin: 10px 0 0;
}
footer .mail .title i {
  font-size: 13px;
  margin: 0 2px 0 0;
}
footer .address .title, footer .mail .title {
  font-size: 14px;
  font-weight: bold;
  margin: 0 0 2px;
}
footer .address .title i, footer .mail .title i {
  font-size: 12px;
}
footer .address .txt, footer .mail .txt {
  font-size: 13px;
}
footer .logo_area {
  width: calc(100% - 300px);
}
@media screen and (max-width: 768px) {
  footer .logo_area {
    width: 100%;
  }
}
footer .logo_area .list {
  margin: 30px 0 0;
}
footer .logo_area .list li:not(:last-child) {
  margin: 0 20px 0 0;
}
@media screen and (max-width: 768px) {
  footer .logo_area .list li:not(:last-child) {
    margin: 0 0 10px;
  }
}
footer .list_sec {
  width: 300px;
  padding-left: 30px;
}
@media screen and (max-width: 1024px) {
  footer .list_sec {
    width: 100%;
    max-width: 700px;
    margin-top: 50px;
    padding-left: 0;
  }
}
@media screen and (max-width: 768px) {
  footer .list_sec {
    width: 100%;
    margin-top: 30px;
  }
}
footer .list_sec .list {
  width: 50%;
}
@media screen and (max-width: 768px) {
  footer .list_sec .list {
    width: 100%;
    padding: 0;
    border-left: 0px rgba(82, 86, 85, 0.1) solid;
  }
}
footer .list_sec .list .list_block {
  margin: 0 0 14px;
}
footer .list_sec .list li {
  padding: 0px;
  font-size: max(0.5vw, 12px);
  text-align: left;
}
@media screen and (max-width: 768px) {
  footer .list_sec .list li {
    padding: 0;
  }
}
footer .copy {
  width: 100%;
  text-align: right;
  font-size: 10px;
  margin: 80px 0 0;
}
@media only screen and (max-width: 768px) {
  footer .copy {
    margin: 40px 0 0;
  }
}

/* ==========================================================================

	breadcrumb

========================================================================== */
.breadcrumb {
  margin: 0 auto;
  position: relative;
  padding: 0px 0px;
}
@media only screen and (max-width: 768px) {
  .breadcrumb {
    display: none;
  }
}
.breadcrumb .list li {
  position: relative;
}
.breadcrumb .list li a {
  font-size: 1.1rem;
  line-height: 1.5;
  display: inline-block;
  letter-spacing: 1px;
}
@media only screen and (max-width: 768px) {
  .breadcrumb .list li a {
    font-size: 11px;
  }
}
.breadcrumb .list li:not(:last-child) {
  margin-right: 20px;
  position: relative;
}
.breadcrumb .list li:not(:last-child)::after {
  content: "";
  display: inline-block;
  position: absolute;
  width: 6px;
  height: 7px;
  margin: 0;
  background: url("../img/common/arrow_r.svg") no-repeat;
  background-size: contain;
  top: 7px;
  right: -13px;
}
.breadcrumb .list li:last-child {
  font-weight: bold;
}

/* ==========================================================================

	modal

========================================================================== */
.modal_area {
  display: block;
  position: fixed;
  z-index: 10; /*サイトによってここの数値は調整 */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modal_bg {
  width: 100%;
  height: 100%;
  background-color: rgba(30, 30, 30, 0.9);
}

.modal_wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 30px);
  max-width: 500px;
  padding: 30px;
  background-color: #ffffff;
  border-radius: 6px;
}
.modal_wrapper .title {
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
}

.btn_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
  position: relative;
  margin: 30px 0 0;
}
.btn_list .link_box {
  padding: 10px 10px;
  font-size: 1.5rem;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .btn_list .link_box {
    font-size: 1.2rem;
  }
}
.btn_list .close_modal {
  cursor: pointer;
}
.btn_list .link_cart {
  background-color: #e76140;
  border: 1px solid #e76140;
}
@media only screen and (min-width: 769px) {
  .btn_list .link_cart:hover {
    background-color: #ffffff;
    border: 1px solid #e76140;
    color: #e76140;
  }
}

/* ==========================================================================

	btn-list

========================================================================== */
.link_box {
  background-color: #000000;
  border: 1px solid #000000;
  align-items: center;
  padding: 20px 10px;
  color: #ffffff;
  font-size: 1.5rem;
  position: relative;
  text-align: center;
  z-index: 10;
  transition: all 0.5s ease;
  border-radius: 6px;
  cursor: pointer;
}
.link_box::after {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  top: 0;
  right: 0;
  z-index: -1;
  background: #ffffff;
  transition: all 0.5s ease;
}
@media only screen and (max-width: 768px) {
  .link_box {
    width: 100%;
  }
}
@media only screen and (min-width: 769px) {
  .link_box:hover {
    background-color: #ffffff;
    border: 1px solid #000000;
    color: #000000;
    border-radius: 6px;
  }
  .link_box:hover::after {
    left: 0;
    width: 100%;
  }
}

.read_more {
  color: #ffffff;
  font-size: 1.5rem;
  margin: 40px 69px 0 0;
  position: relative;
  display: inline-block;
  cursor: pointer;
}
@media only screen and (min-width: 769px) {
  .read_more:hover:before {
    background: #33ecff;
    transform: translateX(100%) scale(1.2);
  }
}
.read_more:before {
  content: "";
  border-radius: 50%;
  width: 50px;
  height: 50px;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  transform: translateX(100%);
  position: absolute;
  top: -13px;
  right: -20px;
}
.read_more:after {
  content: "";
  position: absolute;
  background: url("../img/common/arrow-right.svg");
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  top: 1px;
  right: -54px;
  width: 20px;
  height: 20px;
  z-index: 10;
}

.btn_area {
  width: 100%;
  position: relative;
}
.btn_area .item_btn {
  background: #000000;
  border: 3px solid #000000;
  color: #fff;
  align-items: center;
  padding: 26px 10px 23px;
  width: 100%;
  position: relative;
  text-align: center;
  font-size: 13px;
  letter-spacing: 1px;
  z-index: 10;
  cursor: pointer;
  line-height: 1;
}
@media only screen and (min-width: 769px) {
  .btn_area .item_btn:hover {
    background-color: #ffffff;
    color: #000000;
  }
}
.btn_area .item_btn span {
  position: relative;
}
.btn_area .white {
  background: #ffffff;
  border: 1px solid #ffffff;
  color: #000000;
}
@media only screen and (min-width: 769px) {
  .btn_area .white:hover {
    background: #000000;
    border: 1px solid #ffffff;
    color: #ffffff;
  }
}
.btn_area .green {
  background: #000000;
  border: 1px solid #ffffff;
}
@media only screen and (min-width: 769px) {
  .btn_area .green:hover {
    background-color: color-w;
    border: 1px solid #000000;
    color: #000000;
  }
}

.pager {
  text-align: center;
  margin: 90px auto;
}
@media only screen and (max-width: 768px) {
  .pager {
    margin: 40px auto 0;
  }
}
.pager ul li {
  font-weight: bold;
  color: #3e5b43;
  border-radius: 50%;
  text-align: center;
  width: 30px;
  height: 30px;
  margin: 0 5px;
  background: #fff;
  opacity: 0.6;
  padding: 6px 0 0 0;
  font-size: 1.4rem;
}
.pager ul li.current {
  opacity: 1;
}
@media only screen and (min-width: 769px) {
  .pager ul li:hover {
    opacity: 1;
  }
}

/* ==========================================================================

	index.html

========================================================================== */
section .inner {
  max-width: 1300px;
  width: calc(100% - 17vw);
  margin: 0 auto;
  position: relative;
}
@media only screen and (max-width: 768px) {
  section .inner {
    width: calc(100% - 60px);
  }
}
section .txtbox .subutitle {
  color: #3c3d3d;
  font-size: 14px;
  letter-spacing: 2px;
  position: relative;
  font-weight: 600;
  position: relative;
  padding: 0;
  margin: 0 0 6px;
}
@media only screen and (max-width: 768px) {
  section .txtbox .subutitle {
    font-size: 12px;
    margin: 0 0 6px;
  }
}
section .txtbox .title {
  font-size: 36px;
  letter-spacing: 2px;
  font-weight: 500;
  text-transform: uppercase;
  color: #000;
  margin: 0 0 20px;
}
@media only screen and (max-width: 768px) {
  section .txtbox .title {
    font-size: 26px;
    line-height: 1.4;
    margin: 0 0 12px;
  }
}
section .txtbox .title_ja {
  font-size: 30px;
  letter-spacing: 2px;
  font-weight: 500;
  text-transform: uppercase;
  color: #000;
  margin: 0 0 20px;
  line-height: 1.6;
}
@media only screen and (max-width: 768px) {
  section .txtbox .title_ja {
    font-size: 22px;
    line-height: 1.5;
  }
}
section .txtbox .txt {
  font-size: 1.4rem;
  line-height: 2;
}
@media only screen and (max-width: 768px) {
  section .txtbox .txt {
    font-size: 1.3rem;
    line-height: 2;
  }
}
section .txtbox .txt_small {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0 0 10px;
}
@media only screen and (max-width: 768px) {
  section .txtbox .txt_small {
    font-size: 10px;
  }
}

.top_page main {
  border-radius: 80px;
  overflow: visible;
  margin: 0;
}
@media only screen and (max-width: 768px) {
  .top_page main {
    border-radius: 60px;
    margin: 60px 0 0;
  }
}

.hero_top {
  position: relative;
  width: 100%;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .hero_top {
    height: calc(100svh - 60px);
  }
}
.hero_top .s_txt {
  position: absolute;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  top: 58%;
  left: 4.8vw;
  transform: translate(0%, -50%);
  z-index: 100;
  color: #000000;
  transform: translateY(0px) scale(1);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  opacity: 0;
  filter: blur(5px) brightness(1.7);
}
@media only screen and (max-width: 768px) {
  .hero_top .s_txt {
    top: auto;
    bottom: 110px;
  }
}
.hero_top .hero_title {
  position: absolute;
  font-weight: 500;
  letter-spacing: 2px;
  left: 4.8vw;
  top: 60%;
  transform: translate(0%, -50%);
  z-index: 100;
  color: #000000;
  transform: translateY(0px) scale(1);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  opacity: 0;
  filter: blur(5px) brightness(1.7);
  text-transform: uppercase;
  font-size: 38px;
  line-height: 1.3;
  text-align: left;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .hero_top .hero_title {
    font-size: 23px;
    line-height: 1.5;
    font-weight: bold;
    left: 4.8vw;
    top: auto;
    bottom: 30px;
  }
}
.hero_top .top_slider {
  width: 100%;
  height: 100svh;
  margin: 90px 0 0;
  transform: translateY(0px) scale(1);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  opacity: 0;
  filter: blur(5px) brightness(1.7);
}
@media only screen and (max-width: 768px) {
  .hero_top .top_slider {
    width: 100%;
    height: calc(100svh - 60px);
    overflow: hidden;
    margin: 0px 0 0;
  }
}
.hero_top .top_slider .l-inner {
  padding-bottom: 0;
}
.hero_top .top_slider .splide {
  width: 100%;
  height: 100%;
}
.hero_top .top_slider .splide__track--fade .splide__slide {
  pointer-events: none;
}
.hero_top .top_slider .splide__track--fade .splide__slide.is-active {
  pointer-events: auto;
}
.hero_top .top_slider .splide-wrapper {
  width: 100%;
  height: 100%;
}
.hero_top .top_slider .progressbar {
  position: relative;
  width: 100%;
  height: 4px;
  background-color: var(--color-moji);
  display: none;
}
.hero_top .top_slider .progressbar-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left top;
  background-color: var(--color-orange);
  display: none;
}
.hero_top .top_slider .splide__slide {
  height: auto;
}
.hero_top .top_slider .slide-media {
  height: 100svh;
}
@media only screen and (max-width: 768px) {
  .hero_top .top_slider .slide-media {
    height: calc(100svh - 60px);
  }
}
.hero_top .top_slider .slide-media img {
  transition-delay: 1s;
  transition-timing-function: linear;
  transform: scale(1.05);
}
.hero_top .top_slider .slide-content {
  color: #fff;
  position: absolute;
  bottom: 20px;
  right: 20px;
}
@keyframes top_slider-circle {
  100% {
    stroke-dashoffset: 0;
  }
}

.hero_top .splide-fade .splide__slide {
  pointer-events: none;
}

.hero_top .splide__track--fade .splide__slide.is-active {
  pointer-events: auto;
}

.hero_top .splide__pagination {
  position: absolute;
  z-index: 10;
  top: 0;
  bottom: 0;
  left: 3.2rem;
  height: -moz-max-content;
  height: max-content;
  margin: auto;
  display: flex;
  flex-direction: column;
  display: none;
}

.hero_top .splide__pagination__page {
  display: block;
  width: 3px;
  height: 4rem;
  cursor: pointer;
  transition: var(--transition);
  background-color: rgba(255, 255, 255, 0.4);
}

.hero_top .splide__pagination > li:not(:first-child) {
  margin-top: 0.8rem;
}

.hero_top .splide__pagination__page.is-active {
  background-color: var(--color-theme);
}

.hero_top .slide-media img {
  transition: 7s 1s ease-out;
}

.hero_top .splide__slide[class*=-active] .slide-media img {
  transition-delay: 0s;
  transform: scale(1.05);
}

.hero_top .splide__slide[class*=-active] .slide-title {
  animation: hero_top-fadeIn 2s 0.5s var(--easing) both;
}

@keyframes hero_top-fadeIn {
  0% {
    transform: scale(0.5);
    opacity: 0;
    filter: blur(300px);
  }
  100% {
    transform: scale(1);
    opacity: 1;
    filter: blur(0);
  }
}
.is-load .hero_top {
  width: 100%;
  position: relative;
}
.is-load .hero_top .top_slider {
  transform: scale(1);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  opacity: 1;
  filter: blur(0px) brightness(1);
  transition: transform 3s cubic-bezier(0.21, 0.75, 0.38, 0.95) 0.6s, opacity 2s ease 0.1s, filter 2s ease 0.1s;
}
.is-load .hero_top .s_txt {
  transform: rotate(0deg) scale(1);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  opacity: 1;
  filter: blur(0px) brightness(1);
  transition: transform 1s cubic-bezier(0.21, 0.75, 0.38, 0.95) 2s, opacity 1.5s ease 1.5s, filter 1s ease 2s;
  transition: transform 1s cubic-bezier(0.21, 0.75, 0.38, 0.95) 2s, opacity 1.5s ease 1.5s, filter 1.5s ease 2s;
  mix-blend-mode: exclusion;
  filter: invert(1);
}
@media only screen and (max-width: 768px) {
  .is-load .hero_top .s_txt {
    transition: transform 2s cubic-bezier(0.21, 0.75, 0.38, 0.95) 0.6s, opacity 2s ease 0.1s, filter 2s ease 0.1s;
  }
}
.is-load .hero_top .hero_title {
  transform: rotate(0deg) scale(1);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  opacity: 1;
  filter: blur(0px) brightness(1);
  transition: transform 1s cubic-bezier(0.21, 0.75, 0.38, 0.95) 2s, opacity 1.5s ease 1.5s, filter 1s ease 2s;
  transition: transform 1s cubic-bezier(0.21, 0.75, 0.38, 0.95) 2s, opacity 1.5s ease 1.5s, filter 1.5s ease 2s;
  mix-blend-mode: exclusion;
  filter: invert(1);
}
@media only screen and (max-width: 768px) {
  .is-load .hero_top .hero_title {
    transition: transform 2s cubic-bezier(0.21, 0.75, 0.38, 0.95) 0.6s, opacity 2s ease 0.1s, filter 2s ease 0.1s;
  }
}

.top_txt {
  position: relative;
  background: #ffffff;
  padding: 100px 0 0px;
}
@media only screen and (max-width: 768px) {
  .top_txt {
    padding: 50px 0 0;
  }
}
.top_txt .title {
  margin: 20px 0 0 !important;
  font-size: 29px !important;
}
@media only screen and (max-width: 768px) {
  .top_txt .title {
    font-size: 25px !important;
  }
}
.top_txt .subutitle {
  line-height: 3;
}
.top_txt .inner {
  border-top: 1px solid #3c3d3d;
  padding: 100px 0 0;
}
@media only screen and (max-width: 768px) {
  .top_txt .inner {
    padding: 73px 0 0;
  }
}
.top_txt .photo {
  width: 40%;
  margin: 40px 0 0;
}
@media only screen and (max-width: 768px) {
  .top_txt .photo {
    width: 57%;
  }
}
.top_txt .logo {
  width: 200px;
  margin: 90px 0 0 auto;
}
@media only screen and (max-width: 768px) {
  .top_txt .logo {
    width: 140px;
    margin: 60px 0 0 auto;
  }
}

.about_top {
  position: relative;
  background: #ffffff;
  padding: 10px 0 220px;
}
@media only screen and (max-width: 768px) {
  .about_top {
    padding: 0px 0 100px;
  }
}
.about_top .inner {
  border-top: 1px solid #3c3d3d;
  padding: 100px 0 0;
  margin: 100px auto 0;
}
@media only screen and (max-width: 768px) {
  .about_top .inner {
    padding: 70px 0 0;
    margin: 70px auto 0;
  }
}
.about_top .left {
  width: 50%;
  padding: 0 40px 0 0;
}
@media only screen and (max-width: 768px) {
  .about_top .left {
    width: 100%;
    padding: 0;
    margin: 0 0 50px 0;
  }
}
.about_top .left .img {
  margin: 70px 0 0;
}
@media only screen and (max-width: 768px) {
  .about_top .left .img {
    margin: 30px 0 0;
  }
}
.about_top .right {
  width: 46%;
  margin: 60px 0 0 auto;
}
@media only screen and (max-width: 768px) {
  .about_top .right {
    width: 100%;
    margin: 20px 0 0 auto;
  }
}
.about_top .bg {
  width: 100%;
  max-width: 1300px;
  overflow: hidden;
  z-index: 1000;
  margin: 10svh auto 0;
}
.about_top .btn_area {
  max-width: 300px;
  margin: 60px 0 0;
}
@media only screen and (max-width: 768px) {
  .about_top .btn_area {
    max-width: 100%;
    margin: 20px auto 0;
  }
}

.service_top {
  position: relative;
  background: #000000;
  padding: 200px 0;
}
@media only screen and (max-width: 768px) {
  .service_top {
    padding: 100px 0;
  }
}
.service_top .txtbox * {
  color: #ffffff !important;
}
.service_top .txtbox .txt_small {
  text-align: right;
  margin: 60px 0 0;
  padding: 60px 0 0;
  border-top: 1px solid #ffffff;
}
.service_top .photo_list {
  margin: 20px 0 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}
@media only screen and (max-width: 768px) {
  .service_top .photo_list {
    grid-template-columns: repeat(1, 1fr);
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    margin: 20px 0 0;
  }
}
.service_top .photo_list li {
  position: relative;
}
.service_top .photo_list li button {
  z-index: 100;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  height: 100%;
  transition: transform 640ms cubic-bezier(0.165, 0.84, 0.44, 1);
  outline: 0;
}
.service_top .btn_area {
  max-width: 300px;
  margin: 100px auto 0;
}
@media only screen and (max-width: 768px) {
  .service_top .btn_area {
    max-width: 100%;
    margin: 20px auto 0;
  }
}

.page_works .txt_small {
  text-align: right;
  margin: 60px 0 0;
  padding: 60px 0 0;
  border-top: 1px solid #ffffff;
  color: #ffffff;
}
.page_works .service_top {
  position: relative;
  background: #000000;
  padding: 230px 0;
}
@media only screen and (max-width: 768px) {
  .page_works .service_top {
    padding: 70px 0;
  }
}

.studio_top {
  position: relative;
  background: #ffffff;
  padding: 20px 0 0;
}
@media only screen and (max-width: 768px) {
  .studio_top {
    padding: 0px 0 0px;
  }
}
.studio_top .inner {
  border-top: 1px solid #3c3d3d;
  padding: 100px 0 0;
  margin: 100px auto 0;
}
@media only screen and (max-width: 768px) {
  .studio_top .inner {
    padding: 70px 0 0;
    margin: 70px auto 0;
  }
}
@media only screen and (max-width: 768px) {
  .studio_top .txt {
    margin: 30px 0 30px;
  }
}
.studio_top .txt_small {
  text-align: right;
}
@media only screen and (max-width: 768px) {
  .studio_top .txt_small {
    margin: 0 0 10px;
  }
}
.studio_top .studio_list {
  margin: 40px 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}
@media only screen and (max-width: 768px) {
  .studio_top .studio_list {
    grid-template-columns: repeat(1, 1fr);
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    margin: 20px 0 0;
  }
}
.studio_top .studio_list li {
  padding: 30px;
  background: #ffffff;
}
.studio_top .studio_list .number {
  font-size: 16px;
  margin: 0 0 20px;
  font-weight: bold;
}
.studio_top .studio_list .number span {
  font-size: 12px;
}
.studio_top .studio_list .studio_title {
  font-size: 25px;
  margin: 0 0 10px;
}
.studio_top .studio_photo {
  width: 100%;
  margin: 80px 0 0;
}
@media only screen and (max-width: 768px) {
  .studio_top .studio_photo {
    margin: 0px 0 0;
  }
}
.studio_top .studio_photo .studio_slider {
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 768px) {
  .studio_top .studio_photo .studio_slider {
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
}
.studio_top .studio_photo .studio_slider img {
  position: relative !important;
  top: auto;
  left: auto;
  width: 100%;
  height: auto;
}
.studio_top .studio_photo .studio_slider .l-inner {
  padding-bottom: 0;
}
.studio_top .studio_photo .studio_slider .splide {
  width: 100%;
  height: 100%;
}
.studio_top .studio_photo .studio_slider .splide__track--fade .splide__slide {
  pointer-events: none;
}
.studio_top .studio_photo .studio_slider .splide__track--fade .splide__slide.is-active {
  pointer-events: auto;
}
.studio_top .studio_photo .studio_slider .splide-wrapper {
  width: 100%;
  height: 100%;
}
.studio_top .studio_photo .studio_slider .splide__slide {
  height: auto;
}
.studio_top .studio_photo .studio_slider .slide-media img {
  transition-delay: 1s;
  transition-timing-function: linear;
}
.studio_top .studio_photo .studio_slider .slide-content {
  color: #fff;
  position: absolute;
  bottom: 20px;
  right: 20px;
}
.studio_top .studio_photo .studio_slider .top_slider .splide__slide[class*=-active] .slide-media img {
  transition-delay: 0s;
  transform: scale(1);
}
.studio_top .studio_photo .studio_slider .top_slider .splide__slide[class*=-active] .slide-fraction .circle-02 {
  animation: top_slider-circle linear both;
}
@keyframes top_slider-circle {
  100% {
    stroke-dashoffset: 0;
  }
}

.service_top_second {
  position: relative;
  background: #faf9f9;
  padding: 100px 0 120px;
}
@media only screen and (max-width: 768px) {
  .service_top_second {
    padding: 70px 0 70px;
  }
}
.service_top_second .inner {
  border-top: 1px solid #3c3d3d;
  padding: 90px 0 0;
}
@media only screen and (max-width: 768px) {
  .service_top_second .inner {
    padding: 70px 0 0;
  }
}
.service_top_second .left {
  width: 50%;
  padding: 0 40px 0 0;
}
@media only screen and (max-width: 768px) {
  .service_top_second .left {
    width: 100%;
    padding: 0;
  }
}
.service_top_second .right {
  width: 50%;
  margin: 20px 0 0;
}
@media only screen and (max-width: 768px) {
  .service_top_second .right {
    width: 100%;
  }
}

.price_top {
  position: relative;
  background: #f4f4f4;
  padding: 120px 0;
}
@media only screen and (max-width: 768px) {
  .price_top {
    padding: 70px 0;
  }
}
.price_top .inner {
  border-top: 1px solid #3c3d3d;
  padding: 90px 0 0;
}
@media only screen and (max-width: 768px) {
  .price_top .inner {
    padding: 70px 0 0;
  }
}
.price_top .left {
  width: 60%;
  padding: 0 40px 0 0;
}
@media only screen and (max-width: 768px) {
  .price_top .left {
    width: 100%;
    padding: 0;
  }
}
.price_top .right {
  width: 78%;
  margin: 60px 0 0 auto;
}
@media only screen and (max-width: 768px) {
  .price_top .right {
    width: 100%;
    margin: 20px 0 0;
  }
}
.price_top .right .txt_small {
  text-align: right;
  margin: 0 0 20px;
}
.price_top .right .memo {
  margin: 20px 0 0;
}
.price_top .right .price_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}
@media only screen and (max-width: 768px) {
  .price_top .right .price_list {
    grid-template-columns: repeat(1, 1fr);
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }
}
.price_top .right .price_list li.item {
  padding: 40px;
  background: #ffffff;
  border: 1px solid #3c3d3d;
  transform: scale(1);
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
@media only screen and (min-width: 769px) {
  .price_top .right .price_list li.item:hover {
    transform: scale(1.03);
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  }
}
@media only screen and (max-width: 768px) {
  .price_top .right .price_list li.item {
    padding: 30px;
  }
}
.price_top .right .price_list li.item .title {
  font-size: 20px;
  margin: 0 0 5px;
  color: #3c3d3d;
  font-weight: 500;
}
@media only screen and (max-width: 768px) {
  .price_top .right .price_list li.item .title {
    font-size: 18px;
  }
}
.price_top .right .price_list li.item .subtitle {
  font-size: 12px;
  margin: 0 0 20px;
  color: #848484;
}
@media only screen and (max-width: 768px) {
  .price_top .right .price_list li.item .subtitle {
    margin: 0 0 12px;
    font-size: 11px;
  }
}
.price_top .right .price_list li.item .price {
  font-size: 40px;
  margin: 0 0 5px -10px;
  font-weight: 500;
  color: #3c3d3d;
}
@media only screen and (max-width: 768px) {
  .price_top .right .price_list li.item .price {
    font-size: 33px;
  }
}
.price_top .right .price_list li.item .price_ja {
  font-size: 30px;
  margin: 0 0 5px 0px;
  font-weight: 500;
  color: #3c3d3d;
}
@media only screen and (max-width: 768px) {
  .price_top .right .price_list li.item .price_ja {
    font-size: 25px;
  }
}
.price_top .right .price_list li.item .txt {
  font-size: 12px;
  margin: 0 0 0px;
  color: #3c3d3d;
}
.price_top .right .price_list li.item .btn {
  display: inline-block;
  padding: 8px 13px 7px;
  background: #3c3d3d;
  color: #ffffff;
  margin: 10px 0 0;
}
.price_top .right .price_list li.item .list {
  width: 100%;
  margin: 20px 0 20px;
}
@media only screen and (max-width: 768px) {
  .price_top .right .price_list li.item .list * {
    font-size: 11px;
  }
}
.price_top .right .price_list li.item .list li {
  padding: 0;
  margin: 0 0 5px;
}
.price_top .right .price_list li.item .list li.ok {
  color: #3c3d3d;
}
.price_top .right .price_list li.item .list li.ok i {
  color: #ca2e35;
  margin: 0 3px 0 0;
}
.price_top .right .price_list li.item .list li.ng {
  color: #848484;
}
.price_top .right .price_list li.item .list li.ng i {
  color: #848484;
  margin: 0 3px 0 0;
}
.price_top .qa_inner {
  margin: 100px auto 0;
  padding: 50px 0 0;
}
@media only screen and (max-width: 768px) {
  .price_top .qa_inner {
    margin: 70px auto 0;
    padding: 70px 0 0;
  }
}
.price_top .qa {
  margin: 60px 0 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 40px;
  grid-row-gap: 20px;
}
@media only screen and (max-width: 768px) {
  .price_top .qa {
    grid-template-columns: repeat(1, 1fr);
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    margin: 20px 0 0;
  }
}
.price_top .qa .qa_left, .price_top .qa .qa_right {
  border-top: 1px solid #494949;
  border-bottom: 1px solid #494949;
  padding: 20px 0;
}
@media only screen and (max-width: 768px) {
  .price_top .qa .qa_left, .price_top .qa .qa_right {
    padding: 10px 0 6px;
  }
}
@media only screen and (max-width: 768px) {
  .price_top .qa .qa_right {
    margin: 16px 0 0;
  }
}

.accordion {
  color: #494949;
  cursor: pointer;
  padding: 6px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
}
@media only screen and (max-width: 768px) {
  .accordion {
    font-size: 13px;
  }
}

.symbol {
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.symbol span {
  display: block;
  background-color: #494949;
  width: 100%;
  height: 1px;
  transition: all 0.4s ease;
}

.symbol span:nth-of-type(1) {
  transform: translateX(10px);
}

.symbol span:nth-of-type(2) {
  transform: rotate(-90deg);
}

.accordion.active .symbol span:nth-of-type(2) {
  transform: rotate(0deg);
}

.content {
  list-style-type: none;
  margin: 0px;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  color: #494949;
  transition: max-height 0.2s ease;
  letter-spacing: 0;
}
.content .c_inner {
  padding: 0px 0 10px;
}
.content .c_inner p {
  font-size: 14px;
  padding: 0 0 4px;
  border-bottom: 1px solid #d8d8d8;
}

.bg_section {
  position: relative;
}
.bg_section .bg {
  width: 100%;
  height: 70svh;
  min-height: 600px;
  overflow: hidden;
  z-index: 1000;
  margin: 0;
}
@media only screen and (max-width: 768px) {
  .bg_section .bg {
    height: 40svh;
    min-height: 400px;
  }
}
.bg_section img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 40% 60%;
     object-position: 40% 60%;
}
.bg_section .logo {
  position: absolute;
  width: 50%;
  z-index: 100;
  filter: brightness(100);
  mix-blend-mode: exclusion;
}
@media only screen and (max-width: 768px) {
  .bg_section .logo {
    width: 70%;
  }
}

.contact_top {
  position: relative;
  background: #000000;
  padding: 220px 0;
}
@media only screen and (max-width: 768px) {
  .contact_top {
    padding: 100px 0 80px !important;
  }
}
.contact_top .map {
  width: 100%;
  filter: saturate(0.6);
  position: relative;
  height: 0;
  padding-top: 40%;
  margin: 60px 0 0;
}
@media only screen and (max-width: 768px) {
  .contact_top .map {
    width: 100%;
    margin: 30px 0 0;
    padding-top: 87%;
  }
}
.contact_top .map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.contact_top .txtbox .subtitle, .contact_top .txtbox .title_ja, .contact_top .txtbox .txt {
  color: #ffffff !important;
}
.contact_top .left {
  width: calc(100% - 160px);
  padding: 0 30px 0 0;
}
@media only screen and (max-width: 768px) {
  .contact_top .left {
    width: 100%;
    padding: 0;
  }
}
.contact_top .right {
  width: 160px;
}
@media only screen and (max-width: 768px) {
  .contact_top .right {
    width: 100%;
  }
}
.contact_top .right .line_txt {
  color: #ffffff;
  font-size: 14px;
  margin: 0 0 10px;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .contact_top .right .line_txt {
    font-size: 13px;
  }
}
.contact_top .right .line_link {
  background-color: #00B900;
  align-items: center;
  padding: 26px 10px 23px;
  width: 100%;
  position: relative;
  text-align: center;
  font-size: 13px;
  letter-spacing: 1px;
  z-index: 10;
  cursor: pointer;
  line-height: 1;
  color: #ffffff;
  display: none;
}
@media only screen and (max-width: 768px) {
  .contact_top .right .line_link {
    display: block;
  }
}
.contact_top .right .line_QR {
  margin: 20px 0 0;
  background-color: #ffffff;
  padding: 10px;
}
@media only screen and (max-width: 768px) {
  .contact_top .right .line_QR {
    display: none;
  }
}
.contact_top .btn_area {
  width: 400px !important;
  margin: 20px 0 20px !important;
}
@media only screen and (max-width: 768px) {
  .contact_top .btn_area {
    margin: 40px auto 10px;
    width: 100% !important;
  }
}
.contact_top .tel, .contact_top .mail, .contact_top .memo, .contact_top .attention {
  color: #ffffff !important;
}
.contact_top .tel {
  font-size: 17px;
  font-weight: 500;
  margin: 1px 0 0;
  position: relative;
  padding: 50px 0 0;
}
.contact_top .tel:before {
  content: "";
  width: 20px;
  height: 1px;
  background: #ffffff;
  position: absolute;
  top: 20px;
  left: 0;
}
.contact_top .mail {
  font-size: 17px;
  font-weight: 500;
  margin: 1px 0 0;
}
.contact_top .memo {
  margin: 10px 0 0;
}
@media only screen and (max-width: 768px) {
  .contact_top .memo {
    font-size: 10px;
  }
}
.contact_top .attention {
  opacity: 0.7;
}

.about_page .about_txt_section {
  background: #000000;
  padding: 100px 0;
}
@media only screen and (max-width: 768px) {
  .about_page .about_txt_section {
    padding: 60px 0;
  }
}
.about_page .top_txt {
  padding: 0;
}
.about_page .top_txt .inner {
  border: 0px solid #000000;
}
.about_page .top_txt .txt_small {
  text-align: right;
}
.about_page .top_txt .title {
  border-bottom: 1px solid #000000;
  margin: 0 0 40px;
  padding: 0 0 30px;
}
.about_page .top_txt .subutitle {
  border-bottom: 1px solid #000000;
  margin: 0 0 70px;
  padding: 60px 0 60px;
}
@media only screen and (max-width: 768px) {
  .about_page .top_txt .subutitle {
    padding: 30px 0 30px;
  }
}
.about_page .top_txt .photo {
  width: 45%;
}
@media only screen and (max-width: 768px) {
  .about_page .top_txt .photo {
    width: 100%;
  }
}
.about_page .top_txt .photo2 {
  width: 44%;
  margin: 0 0 0 auto;
}
@media only screen and (max-width: 768px) {
  .about_page .top_txt .photo2 {
    width: 100%;
    margin: 30px 0 0;
  }
}
.about_page .top_txt .photo3 {
  width: 45%;
  margin: -20% 0 0 0;
}
@media only screen and (max-width: 768px) {
  .about_page .top_txt .photo3 {
    width: 100%;
    margin: 30px 0 0;
  }
}
.about_page .bg_section {
  margin: 200px auto 0;
}
@media only screen and (max-width: 768px) {
  .about_page .bg_section {
    margin: 100px auto 0;
  }
}

/* ==========================================================================

	check_zone

========================================================================== */
.check_zone .control {
  display: block;
  position: relative;
  padding: 8px 0 0 30px;
  margin: 0;
  cursor: pointer;
  font-size: 13px;
}
.check_zone .control input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
@media only screen and (max-width: 768px) {
  .check_zone .control {
    height: auto;
    margin: 0;
    padding: 6px 0 0 30px;
    font-size: 1.3rem !important;
  }
}
.check_zone .control__indicator {
  position: absolute;
  top: 8px;
  left: 0;
  height: 20px;
  width: 20px;
  background: #d8d8d8;
}
.check_zone .control--radio .control__indicator {
  border-radius: 50%;
}
.check_zone .control:hover input ~ .control__indicator,
.check_zone .control input:focus ~ .control__indicator {
  background: #ccc;
}
.check_zone .control input:checked ~ .control__indicator {
  background: #000;
}
.check_zone .control:hover input:not([disabled]):checked .control__indicator,
.check_zone .control input:checked:focus .control__indicator {
  background: #0e647d;
}
.check_zone .control input:disabled .control__indicator {
  background: #e6e6e6;
  opacity: 0.6;
  pointer-events: none;
}
.check_zone .control__indicator:after {
  content: "";
  position: absolute;
  display: none;
}
.check_zone .control input:checked ~ .control__indicator:after {
  display: block;
}
.check_zone .control--checkbox .control__indicator:after {
  left: 7px;
  top: 4px;
  width: 6px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.check_zone .control--checkbox input:disabled ~ .control__indicator:after {
  border-color: #fff;
}
.check_zone .control--radio .control__indicator:after {
  left: 7px;
  top: 7px;
  height: 6px;
  width: 6px;
  border-radius: 50%;
  background: #fff;
}
.check_zone .control--radio input:disabled ~ .control__indicator:after {
  background: #7b7b7b;
}

/* ==========================================================================

	modal

========================================================================== */
#modal-content {
  width: 90%;
  margin: 0;
  padding: 0;
  background: #fff;
  position: fixed;
  display: none;
  z-index: 99999;
  max-width: 1600px;
}

#modal-content .modal_inner {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
}

#modal-content .modal_inner #player {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

#modal-overlay {
  z-index: 9999;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  background-color: rgba(0, 0, 0, 0.75);
}

.modal {
  display: none;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 200000;
}
.modal__bg {
  background: rgba(0, 0, 0, 0.8);
  height: 100vh;
  position: absolute;
  width: 100%;
}
.modal__content {
  background: #fff;
  left: 50%;
  padding: 40px;
  border-radius: 6px;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  min-width: 600px;
  overflow: scroll;
}
@media only screen and (max-width: 768px) {
  .modal__content {
    min-width: 100px;
    width: calc(100% - 40px);
    padding: 30px 20px;
  }
}
.modal__content .title {
  font-size: 16px !important;
  font-weight: bold;
  margin: 0 0 2px;
  letter-spacing: 0 !important;
  text-align: left;
}
.modal__content ul {
  margin: 20px auto;
}
.modal__content ul li:not(:last-child) {
  margin: 0 0 12px;
}
.modal__content .subtitle {
  font-size: 13px;
  font-weight: bold;
  margin: 0 0 2px;
  text-align: left;
}
.modal__content .txt {
  font-size: 12px;
  color: #494949;
  text-align: left;
}
.modal .method_body {
  background: #f7f7f7;
  position: relative;
  padding: 20px;
  margin: 30px 0 0;
}
.modal .method_body input {
  background: #fff;
  border: 1px solid #848484;
}
.modal .method_body ::-moz-placeholder {
  color: #848484;
}
.modal .method_body ::placeholder {
  color: #848484;
}
.modal .method_body .number {
  margin: 0 0 20px;
}
.modal .method_body .name {
  margin: 0 0 20px;
}
.modal .card_info {
  background: #f7f7f7;
  position: relative;
  padding: 20px;
  margin: 30px 0 0;
}
.modal .btn_list {
  margin: 30px auto 0;
}
.modal .btn_list li .card_add {
  border: 1px solid #29302a;
  background: #29302a;
  color: #fff;
  border-radius: 4px;
  display: inline-block;
  padding: 6px 20px;
  font-size: 1.1rem;
  cursor: pointer;
}
.modal .btn_list li .modal_close {
  border: 1px solid #d8d8d8;
  color: #474747;
  border-radius: 4px;
  display: inline-block;
  padding: 6px 20px;
  font-size: 1.1rem;
  margin: 0px 0 0 10px;
}

/* ==========================================================================

	共通情報入力部分

========================================================================== */
input[type=text],
input[type=tel],
input[type=email],
input[type=time],
input[type=date],
input[type=password],
select,
textarea {
  box-sizing: border-box;
  font-size: 1.3rem;
  padding: 10px 15px;
  border-radius: 5px;
  border: 1px solid #e5e5e5;
  line-height: 180%;
  background: #f7f7f7;
  color: #494949;
  outline: none;
  transition: 0.2s ease all;
  font-size: 1.5rem;
}
@media only screen and (max-width: 768px) {
  input[type=text],
  input[type=tel],
  input[type=email],
  input[type=time],
  input[type=date],
  input[type=password],
  select,
  textarea {
    padding: 6px 12px;
  }
}

input[type=text]:focus,
input[type=tel]:focus,
input[type=email]:focus,
input[type=time]:focus,
input[type=date]:focus,
input[type=password]:focus,
textarea:focus {
  background: #fff;
  border-color: #3e5b43;
}

input[type=submit] {
  outline: none;
}

::-moz-placeholder {
  color: #d8d8d8;
}

::placeholder {
  color: #d8d8d8;
}

.select_label {
  position: relative;
}
.select_label::after {
  content: "";
  display: inline-block;
  position: absolute;
  width: 11px;
  height: 11px;
  margin: 0px 0px 2px 10px;
  background: url(../img/common/arrow_b.svg) no-repeat;
  background-size: contain;
  vertical-align: sub;
  top: 50%;
  right: 20px;
  margin-top: -3px;
}

.select_half {
  width: calc(50% - 10px);
}
@media only screen and (max-width: 768px) {
  .select_half {
    width: calc(50% - 5px);
  }
}

.select_all {
  width: 100%;
}

.select_birth {
  padding: 10px 45px 10px 15px;
}

.radio_btn input[type=radio] {
  display: none;
}

.radio_btn label {
  position: relative;
  display: block;
  padding: 5px 20px 3px 27px;
  cursor: pointer;
  font-size: 14px;
  line-height: 180%;
}

.radio_btn label::before {
  position: absolute;
  content: "";
  top: 47%;
  left: 0;
  width: 18px;
  height: 18px;
  margin-top: -8px;
  background: #fff;
  border: 1px solid #d8d8d8;
  border-radius: 100%;
  transition: background 0.25s linear;
  -webkit-transition: background 0.25s linear;
}

.radio_btn input[type=radio]:checked + label::after {
  position: absolute;
  content: "";
  top: 47%;
  left: 4px;
  width: 10px;
  height: 10px;
  margin-top: -4px;
  background: #3e5b43;
  border-radius: 100%;
}

input[type=radio]:focus {
  outline: 0;
}

.login_box {
  background: #f7f7f7;
  border-radius: 2px;
  border: 1px solid #e5e5e5;
  width: 100%;
  position: relative;
  padding: 50px;
}
@media only screen and (max-width: 768px) {
  .login_box {
    padding: 20px;
  }
}
.login_box .label {
  width: 130px;
  margin-right: 10px;
}
@media only screen and (max-width: 768px) {
  .login_box .label {
    width: 100%;
    margin: 0 0 10px 0;
  }
}
.login_box .input_box {
  width: calc(100% - 140px);
}
@media only screen and (max-width: 768px) {
  .login_box .input_box {
    width: 100%;
    margin: 0;
  }
}
.login_box .login_mail {
  margin: 0 auto 12px;
}
.login_box input {
  background: #fff;
}
.login_box .btn_area {
  width: 100%;
  max-width: 300px;
  margin: 30px auto 12px;
}
.login_box .btn_area .login {
  font-size: 1.3rem;
  padding: 12px 10px;
}
.login_box .forget_password {
  text-align: center;
}
.login_box .forget_password a {
  display: inline-block;
  font-size: 1.1rem;
}
.login_box .error_box {
  margin: 40px 0 0;
}
.login_box .error_box .error {
  color: #ca2e35 !important;
  text-align: center;
  font-size: 13px;
}

.input_all {
  width: 100%;
}

.input_half {
  width: calc(50% - 10px);
}
@media only screen and (max-width: 768px) {
  .input_half {
    width: calc(50% - 5px);
  }
}

.input_200 {
  width: 200px;
}
@media only screen and (max-width: 768px) {
  .input_200 {
    width: calc(50% - 5px);
    min-height: 51px;
  }
}

.user_area {
  width: 100%;
}
.user_area .subtitle {
  font-size: 1.6rem;
  font-weight: bold;
  margin: 30px 0 0 10px;
}
@media only screen and (max-width: 768px) {
  .user_area .subtitle {
    margin: 30px 0 0 0px;
  }
}
.user_area .user_info .item {
  position: relative;
  margin: 0;
  border-bottom: 1px solid #e5e5e5;
  padding: 26px 0;
}
@media only screen and (max-width: 768px) {
  .user_area .user_info .item {
    padding: 20px 0;
  }
}
.user_area .user_info .item .user_left {
  width: 200px;
  margin: 6px 0 0 0;
  font-size: 1.4rem;
  font-weight: bold;
  color: #494949;
  padding: 0 10px 0 0;
}
@media only screen and (max-width: 768px) {
  .user_area .user_info .item .user_left {
    width: 100%;
    margin: 0 0 11px 0;
    padding: 0;
  }
}
.user_area .user_info .item .user_left .required {
  position: relative;
  display: inline-block;
}
.user_area .user_info .item .user_left .required:after {
  content: "*";
  position: absolute;
  top: 1px;
  right: -10px;
  bottom: 0;
  display: block;
  font-size: 1.2rem;
  line-height: 1;
  color: #ca2e35;
}
.user_area .user_info .item .user_right {
  width: calc(100% - 200px);
}
@media only screen and (max-width: 768px) {
  .user_area .user_info .item .user_right {
    width: 100%;
  }
}
.user_area .user_info .item .user_right .contents .label {
  margin: 0 0 6px;
  color: #494949;
}
.user_area .user_info .item .user_right .mb {
  margin: 0 0 16px;
}
.user_area .user_info .item .user_right .hint {
  color: #848484;
  font-size: 1.1rem;
  margin: 10px 0 0 2px;
}
.user_area .user_info .error_box {
  margin: 10px 0 0;
}
.user_area .user_info .error_txt {
  color: #ca2e35;
  font-size: 1.2rem;
  font-weight: bold;
  padding: 5px 0;
}

/* ==========================================================================

	contact

========================================================================== */
.page_contact .txt {
  font-size: 14px;
}

.step {
  list-style-type: none;
  display: table;
  width: 100%;
  padding: 0;
  margin: 30px auto 0;
  overflow: hidden;
}
.step li {
  display: table-cell;
  position: relative;
  background: #848484;
  padding: 15px 10px 15px 30px;
  color: #fff;
  font-size: 1.4rem;
}
@media only screen and (max-width: 768px) {
  .step li {
    display: none;
    padding: 12px 10px 12px 10px;
    font-size: 1.4rem;
    text-align: center;
  }
}
.step li:last-child {
  padding-right: 25px;
}
.step li:last-child:before, .step li:last-child:after {
  display: none;
}
.step li:before, .step li:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  margin: auto;
}
.step li:before {
  top: -15px;
  right: -1em;
  border-style: solid;
  border-color: transparent transparent transparent #fff;
  border-width: 40px 0 40px 1em;
  z-index: 10;
}
.step li:after {
  top: -15px;
  right: -0.8em;
  border-style: solid;
  border-color: transparent transparent transparent #848484;
  border-width: 40px 0 40px 1em;
  z-index: 10;
}
.step li.is-current {
  background: #000000;
}
.step li.is-current:after {
  border-color: transparent transparent transparent #000000;
}
@media only screen and (max-width: 768px) {
  .step li.is-current {
    display: block;
  }
}

#contact {
  position: relative;
  padding: 120px 0;
}
@media only screen and (max-width: 768px) {
  #contact {
    padding: 40px 0 80px;
    margin: 100px 0 0;
  }
}
#contact .title_area {
  width: auto;
  position: absolute;
  top: -180px;
  left: 0;
}
@media only screen and (max-width: 768px) {
  #contact .title_area {
    top: -170px;
  }
}
#contact:before {
  content: "";
  position: absolute;
  z-index: -1;
  background: #faf9f9;
  top: 0px;
  height: 100%;
  left: 0;
  width: 100%;
  mix-blend-mode: multiply;
}
#contact .btn_area {
  width: 660px;
  margin: 50px auto 50px;
}
@media only screen and (max-width: 768px) {
  #contact .btn_area {
    width: 100%;
    max-width: 680px;
    padding: 0 0px;
  }
}
#contact .btn_area button {
  width: 320px;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  #contact .btn_area button {
    width: 100%;
    margin: 0 0 10px;
  }
}
#contact .contact-inner {
  width: 100%;
  position: relative;
  margin: 40px auto;
  background: rgba(255, 255, 255, 0.6);
  padding: 60px;
}
@media only screen and (max-width: 768px) {
  #contact .contact-inner {
    width: 100%;
    margin: 20px auto 0;
    padding: 0px;
    background: rgba(255, 255, 255, 0);
  }
  #contact .contact-inner input[type=text], #contact .contact-inner input[type=tel], #contact .contact-inner input[type=email], #contact .contact-inner input[type=time], #contact .contact-inner input[type=date], #contact .contact-inner input[type=password], #contact .contact-inner select, #contact .contact-inner textarea {
    background: #fff;
  }
}
#contact .contact-inner select {
  width: 100%;
}
#contact .check_area {
  text-align: center;
  margin: 40px 0 0;
}
#contact .check_area .check_btn {
  width: 200px;
  margin: 10px auto;
}

.contact_thanks .txt {
  text-align: center;
  font-size: 20px;
  margin: 0 0 20px;
}
.contact_thanks .txt_2 {
  text-align: center;
  font-size: 14px;
}
@media only screen and (max-width: 768px) {
  .contact_thanks #contact {
    padding: 0;
    margin: 60px auto 100px;
  }
}

.page_contact .user_area .user_info .item .user_left {
  width: 250px;
  position: relative;
  padding: 0 10px 0 0;
}
@media only screen and (max-width: 768px) {
  .page_contact .user_area .user_info .item .user_left {
    width: 100%;
    padding: 0;
  }
}
.page_contact .user_area .user_info .item .user_left .mark {
  position: absolute;
  right: 20px;
  top: 0;
  border: 2px solid #000;
  font-size: 1rem;
  padding: 4px 8px;
  border-radius: 17px;
}
@media only screen and (max-width: 768px) {
  .page_contact .user_area .user_info .item .user_left .mark {
    right: 0px;
    top: -5px;
  }
}
.page_contact .user_area .user_info .item .user_left .mark_required {
  color: #ca2e35;
  border: 2px solid #ca2e35;
}
.page_contact .user_area .user_info .item .user_left .mark_free {
  color: #494949;
  border: 2px solid #494949;
}
.page_contact .user_area .user_info .item .user_right {
  width: calc(100% - 250px);
  font-size: 1.3rem;
  font-weight: bold;
  color: #494949;
  margin: 6px 0 0 0;
}
@media only screen and (max-width: 768px) {
  .page_contact .user_area .user_info .item .user_right {
    width: 100%;
  }
}
.page_contact .attention {
  margin: 20px 0 0 0;
  font-size: 1.2rem;
  color: #e76140;
}
.page_contact textarea {
  min-height: 200px;
}
.page_contact .check_area {
  margin: 60px auto 0;
  font-size: 1.2rem;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .page_contact .check_area {
    margin: 30px auto 0;
  }
}
.page_contact .check_area .check_btn {
  width: 199px;
  margin: 20px auto 0;
}
.page_contact .check_area .check_zone .control {
  padding: 8px 0 0 30px;
}
/* ================================================================================

 *  contact
　
   ================================================================================ */
#contact {
  position: relative;
  width: 100%;
  padding: 180px 0;
}

@media only screen and (max-width: 768px) {
  #contact {
    min-height: 33vh;
    margin: 0px 0 0;
    padding: 70px 0 120px;
  }
}
.page_txt {
  font-size: 14px;
  letter-spacing: 0.8px;
  margin: 60px auto 0;
  width: 700px;
  line-height: 2;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .page_txt {
    margin: 30px auto 0;
    width: 100%;
    text-align: left;
  }
}
.complete_txt {
  font-size: 20px;
  font-weight: bold;
  margin: 80px auto 30px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .complete_txt {
    font-size: 18px;
    text-align: left;
  }
}
.complete_txt_sub {
  font-size: 14px;
  margin: 30px auto 0px;
  text-align: center;
  line-height: 2;
}

@media screen and (max-width: 768px) {
  .complete_txt_sub {
    font-size: 13px;
    letter-spacing: 1px;
    text-align: left;
  }
}
#contact .contact-list {
  width: 100%;
  max-width: 700px;
  position: relative;
  margin: 20px auto 0;
  padding: 0rem 0 0;
}

@media only screen and (max-width: 768px) {
  #contact .contact-list {
    width: 100%;
    margin: 0;
  }
}
#contact .contact-list li {
  width: 100%;
  margin: 0 0 40px;
}

@media only screen and (max-width: 768px) {
  #contact .contact-list li {
    margin: 0 0 20px;
  }
  #contact .contact-list li:last-child {
    border-bottom: 1px solid #F9F9F9;
  }
}
#contact .contact-list__left {
  width: 100%;
  padding: 0;
  position: relative;
  margin: 0 0 20px;
}

@media only screen and (max-width: 768px) {
  #contact .contact-list__left {
    width: 100%;
    padding: 20px 0 0;
    margin: 0 0 10px;
    border-top: 1px solid #F9F9F9;
  }
}
#contact .contact-list__left .txt {
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
}

@media only screen and (max-width: 768px) {
  #contact .contact-list__left .txt {
    font-size: 15px;
  }
}
#contact .contact-list__right {
  width: 100%;
  padding: 0;
  font-size: 12px;
}

@media only screen and (max-width: 768px) {
  #contact .contact-list__right {
    width: 100%;
    padding: 0;
    font-size: 15px;
  }
}
#contact .contact-list__right * {
  font-size: 13px;
}

@media only screen and (max-width: 768px) {
  #contact .contact-list__right * {
    font-size: 15px;
  }
}
#contact .contact-list .required {
  color: #ca2e35;
  text-align: center;
  border: 1px solid #ca2e35;
  font-size: 10px;
  padding: 5px 5px;
  margin: 0 0 0 5px;
  line-height: 1;
  position: absolute;
  top: -1px;
  right: -49px;
}

@media only screen and (max-width: 768px) {
  #contact .contact-list .required {
    top: 0px;
    right: -39px;
  }
}
#contact .contact-list .confirm_bg {
  background: #F5F6F9;
  border-radius: 6px;
  min-height: 30px;
  padding: 20px;
  font-size: 14px;
}

@media only screen and (max-width: 768px) {
  #contact .contact-list .confirm_bg {
    padding: 15px;
    background: #ffffff;
    font-size: 13px;
  }
}
#contact .contact-list .error_box {
  margin: 1rem 0 0 0;
}

#contact .contact-list .error_box .error_txt {
  color: #ca2e35;
  font-size: 1.2rem;
  font-weight: bold;
}

@media only screen and (max-width: 768px) {
  #contact .contact-list .error_box .error_txt {
    font-size: 1.2rem;
  }
}
.contact_error .linkbox {
  width: 281px;
  margin: 40px 0 0;
}

@media screen and (max-width: 768px) {
  .contact_error .linkbox {
    width: 241px;
  }
}
#contact {
  /* input 系　共通設定  =========================*/
  /* 確認ボタン */
  /* 戻るボタン */
}

#contact input[type=text] {
  border: 1px solid #F9F9F9;
  padding: 23px 15px;
  text-align: left;
  background: #F9F9F9;
  border-radius: 6px;
  height: 35px;
  font-size: 15px;
  width: 100%;
}

@media only screen and (max-width: 768px) {
  #contact input[type=text] {
    font-size: 15px;
    height: 45px;
  }
}
#contact input[type=email] {
  border: 1px solid #F9F9F9;
  padding: 23px 15px;
  text-align: left;
  background: #F9F9F9;
  border-radius: 6px;
  height: 35px;
  font-size: 15px;
  width: 100%;
}

@media only screen and (max-width: 768px) {
  #contact input[type=email] {
    font-size: 15px;
    height: 45px;
  }
}
#contact input[type=text]:focus {
  outline: 0;
  border-color: #e1e0d9;
}

#contact input[type=email]:focus {
  outline: 0;
  border-color: #e1e0d9;
}

#contact textarea {
  border: 1px solid #F9F9F9;
  padding: 23px 15px;
  text-align: left;
  background: #F9F9F9;
  border-radius: 6px;
  height: 300px;
  width: 100%;
  font-size: 15px;
}

@media only screen and (max-width: 768px) {
  #contact textarea {
    padding: 0.55em 1em;
  }
}
#contact textarea:focus {
  outline: 0;
  border-color: #e1e0d9;
}

#contact input::-moz-placeholder {
  color: #CCCCCC;
}

#contact input::placeholder {
  color: #CCCCCC;
}

#contact textarea::-moz-placeholder {
  color: #CCCCCC;
}

#contact textarea::placeholder {
  color: #CCCCCC;
}

#contact textarea:-ms-input-placeholder {
  color: #CCCCCC;
}

#contact textarea::-ms-input-placeholder {
  color: #CCCCCC;
}

#contact .input_name {
  width: calc(50% - 34px) !important;
}

@media only screen and (max-width: 768px) {
  #contact .input_name {
    width: calc(100% - 34px) !important;
    margin: 0 0 10px;
  }
}
#contact .name_span {
  width: 30px;
  display: inline-block;
  text-align: center;
  font-size: 11px !important;
  opacity: 0.6;
}

#contact .submit_list_box {
  width: 93%;
  margin: 0 auto;
}

@media only screen and (max-width: 768px) {
  #contact .submit_list_box {
    width: 100%;
    margin: 40px 0 0;
    padding: 0;
  }
}
@media only screen and (max-width: 768px) {
  #contact .submit_list_box li {
    width: 100%;
    padding: 0;
    margin: 0 0 20px;
  }
}
#contact .submit_btn {
  text-align: center;
  margin: 0 auto;
  width: 280px;
}

@media only screen and (max-width: 768px) {
  #contact .submit_btn {
    width: 100%;
  }
}
#contact .submit {
  margin: 0 auto;
  position: relative;
  width: 280px;
}

@media only screen and (max-width: 768px) {
  #contact .submit {
    width: 100%;
  }
}
#contact .submit {
  width: 280px;
  margin: 3rem 2px 0;
  background: #7b8889;
  padding: 15px 0;
  font-size: 13px;
  border: 2px solid #7b8889 !important;
  color: #fff;
  text-align: center;
  display: block;
  transition: all 1s;
  letter-spacing: 2px;
}

#contact .submit:focus {
  outline: 0;
}

@media only screen and (max-width: 768px) {
  #contact .submit {
    margin: 5rem 2px 0;
  }
}
#contact .submit_grey {
  width: 280px;
  margin: 3rem 2px 0;
  background: #cecece;
  padding: 15px 0;
  font-size: 13px;
  border: 1px solid #cecece !important;
  color: #fff;
  text-align: center;
  display: block;
  letter-spacing: 2px;
}

#contact .submit_grey:focus {
  outline: 0;
}

@media only screen and (max-width: 768px) {
  #contact .submit_grey {
    margin: 5rem 2px 0;
  }
}
@media screen and (min-width: 769px) {
  #contact .submit:hover, #contact .submit_confirm:hover {
    width: 280px;
    margin: 3rem 2px 0;
    background: #fff;
    padding: 15px 0;
    font-size: 13px;
    border: 2px solid #7b8889 !important;
    color: #7b8889;
    text-align: center;
    display: block;
    transition: all 1s;
  }
}
@media screen and (max-width: 768px) {
  #contact .submit, #contact .submit_confirm {
    width: calc(100% - 8px);
    margin: 0rem 2px 0;
    background: #7b8889;
    padding: 15px 0;
    font-size: 15px;
    letter-spacing: 2px;
    border: 2px solid #7b8889 !important;
    color: #fff;
    text-align: center;
    display: block;
    transition: all 1s;
    font-family: a-otf-gothic-bbb-pr6n, sans-serif;
  }
}
#contact .submit_back {
  width: 280px;
  margin: 3rem 2px 0;
  background: #c9c9c9;
  padding: 15px 0;
  font-size: 13px;
  border: 2px solid #c9c9c9 !important;
  color: #fff;
  text-align: center;
  display: block;
  transition: all 1s;
  letter-spacing: 2px;
}

#contact .submit_back:focus {
  outline: 0;
}

@media screen and (min-width: 769px) {
  #contact .submit_back:hover {
    width: 280px;
    margin: 3rem 2px 0;
    background: #fff;
    padding: 15px 0;
    font-size: 13px;
    border: 2px solid #c9c9c9 !important;
    color: #c9c9c9;
    text-align: center;
    display: block;
    transition: all 1s;
  }
}
@media screen and (max-width: 768px) {
  #contact .submit_back {
    width: calc(100% - 8px);
    margin: 0rem 2px 0;
    background: #c9c9c9;
    padding: 15px 0;
    font-size: 15px;
    letter-spacing: 2px;
    border: 2px solid #c9c9c9 !important;
    color: #fff;
    text-align: center;
    display: block;
    transition: all 1s;
    font-family: a-otf-gothic-bbb-pr6n, sans-serif;
  }
}
/* ==========================================================================

	freepage

========================================================================== */
.free_page_inner {
  max-width: 980px;
  margin: 150px auto 90px;
  padding: 0 20px;
}
@media only screen and (max-width: 768px) {
  .free_page_inner {
    margin: 110px auto 90px;
  }
}
.free_page_inner .title {
  font-size: 22px;
  margin: 0 0 16px;
}
.free_page_inner .lead_txt {
  font-size: 14px;
}

.policy * {
  font-size: 14px;
}
.policy .link {
  border: 1px solid #3c3d3d;
  padding: 7px 20px;
  display: inline-block;
  margin: 10px 0 0;
  font-size: 12px;
}
@media only screen and (min-width: 769px) {
  .policy .link:hover {
    background-color: #3c3d3d;
    border: 1px solid #3c3d3d;
    color: #fff;
  }
}
.policy .policy_body table {
  margin: 20px 0;
  border: 0;
  border-top: 1px solid #c1c1c1;
}
.policy .policy_body table th {
  padding-right: 20px;
  min-width: 200px;
}
@media only screen and (max-width: 768px) {
  .policy .policy_body table th {
    width: 100%;
  }
}
.policy .policy_body table td, .policy .policy_body table th {
  border: 0;
  border-bottom: 1px solid #ebebeb;
  padding: 15px 0;
  vertical-align: top;
  line-height: 1.8;
  text-align: left;
}
@media only screen and (max-width: 768px) {
  .policy .policy_body table td, .policy .policy_body table th {
    display: block;
  }
}
.policy .shipping_list {
  border-left: 1px dotted #848484;
  border-top: 1px dotted #848484;
  margin: 0 0 30px;
}
@media only screen and (max-width: 768px) {
  .policy .shipping_list {
    margin: 0 0 20px;
  }
}
.policy .shipping_list .list_head {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
  grid-template-rows: 1fr auto;
  grid-auto-flow: dense;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-auto-rows: auto;
  background: #e5e5e5;
  margin: 0;
}
@media only screen and (max-width: 768px) {
  .policy .shipping_list .list_head {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }
}
.policy .shipping_list .list_head p {
  border-right: 1px dotted #848484;
  text-align: center;
  padding: 15px 0;
}
.policy .shipping_list .list_body {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
  grid-template-rows: 1fr auto;
  grid-auto-flow: dense;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  background: #fff;
  margin: 0;
  border-bottom: 1px dotted #848484;
}
@media only screen and (max-width: 768px) {
  .policy .shipping_list .list_body {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }
}
.policy .shipping_list .list_body p {
  border-right: 1px dotted #848484;
  text-align: center;
  padding: 15px 0;
}
.policy .shipping_list .list_body p.box_size {
  background: #f7f7f7;
}
.policy .privacy_list {
  margin: 30px auto 0;
}
.policy .privacy_list li {
  margin: 0 0 20px;
}
.policy .privacy_list .list_title {
  border-bottom: 1px solid #c1c1c1;
  padding: 15px 0 10px;
  line-height: 1.8;
  text-align: left;
  font-size: 16px;
  font-weight: bold;
  margin: 0 0 10px 0;
}
.policy .privacy_list .list_txt {
  padding: 15px 0;
}
.policy .privacy_list .list dt {
  width: 50px;
}
@media only screen and (max-width: 768px) {
  .policy .privacy_list .list dt {
    width: 42px;
  }
}
.policy .privacy_list .list dd {
  width: calc(100% - 50px);
}
@media only screen and (max-width: 768px) {
  .policy .privacy_list .list dd {
    width: calc(100% - 42px);
    margin: 0 0 3px;
  }
}
.policy .privacy_list .list_2 dt {
  width: 18px;
  margin: 0 0 0 40px;
}
@media only screen and (max-width: 768px) {
  .policy .privacy_list .list_2 dt {
    width: 18px;
  }
}
.policy .privacy_list .list_2 dd {
  width: calc(100% - 58px);
}
@media only screen and (max-width: 768px) {
  .policy .privacy_list .list_2 dd {
    width: calc(100% - 58px);
    margin: 0 0 3px;
  }
}

/* ==========================================================================

	iziModal

========================================================================== */
.iziModal {
  display: none;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background: #FFF;
  transition: margin-top 0.3s ease, height 0.3s ease;
  transform: translateZ(0);
  width: 90% !important;
  max-height: 90svh;
  max-width: 1400px !important;
  z-index: 100001 !important;
  border-bottom: 0px solid #fff;
}

@media only screen and (max-width: 768px) {
  .iziModal {
    width: 92% !important;
    height: auto;
  }
}
.iziModal * {
  -webkit-font-smoothing: antialiased;
}

.iziModal::after {
  content: "";
  width: 100%;
  height: 0px;
  opacity: 0;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  transition: height 0.3s ease-in-out, opacity 0.3s ease-in-out;
  pointer-events: none;
}

.iziModal.hasShadow::after {
  height: 0px;
  opacity: 1;
}

.iziModal .iziModal-progressbar {
  position: absolute;
  left: 0;
  top: 0px;
  width: 100%;
  z-index: 1;
}

.iziModal .iziModal-progressbar > div {
  height: 2px;
  width: 100%;
}

.iziModal .iziModal-header {
  background: rgba(255, 255, 255, 0) !important;
  padding: 0px !important;
  height: 50px;
  width: 50px;
  overflow: hidden;
  position: absolute;
  z-index: 1000000;
  right: -10px;
  top: 10px;
}
@media only screen and (max-width: 768px) {
  .iziModal .iziModal-header {
    height: 30px;
    width: 30px;
    overflow: hidden;
    position: absolute;
    z-index: 1000000;
    right: -30px;
    top: 2px;
    transform: scale(0.7);
  }
}

.iziModal .iziModal-header-icon {
  font-size: 40px;
  color: rgba(255, 255, 255, 0.5);
  padding: 0 15px 0 0;
  margin: 0;
  float: left;
}

.iziModal .iziModal-header-title {
  color: #FFF;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  display: none;
}

.iziModal .iziModal-header-subtitle {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  line-height: 1.45;
  display: none;
}

.iziModal .iziModal-header-title, .iziModal .iziModal-header-subtitle {
  display: none;
  margin: 0;
  padding: 0;
  font-family: "Lato", Arial;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: left;
}

.iziModal .iziModal-header-buttons {
  position: absolute;
  top: 50%;
  right: 10px;
  margin: -17px 0 0 0;
}

@media only screen and (max-width: 768px) {
  .iziModal .iziModal-header-buttons {
    position: absolute;
    top: 50%;
    right: 0px;
    margin: -17px 0 0 0;
  }
}
.iziModal .iziModal-button {
  display: block;
  z-index: 2;
  outline: none;
  height: 34px;
  width: 34px;
  border: 0;
  padding: 0;
  margin: 0;
  opacity: 1;
  border-radius: 50%;
  transition: transform 0.5s cubic-bezier(0.16, 0.81, 0.32, 1), opacity 0.5s ease;
  background-size: 67% !important;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent; /* For some Androids */
}

.iziModal .iziModal-button-close {
  position: relative;
  height: 34px;
  width: 34px;
  z-index: 100;
}

.iziModal .iziModal-button-close::before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #bcbcbc;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  transform: rotate(45deg);
}

.iziModal .iziModal-button-close::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #bcbcbc;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  transform: rotate(-45deg);
}

.iziModal .iziModal-button-close:hover {
  transform: rotate(180deg);
}

.iziModal .iziModal-button:hover {
  opacity: 0.8;
}

.iziModal .iziModal-header.iziModal-noSubtitle {
  height: auto;
  padding: 10px 15px 12px 15px;
}

.iziModal .iziModal-header.iziModal-noSubtitle .iziModal-header-icon {
  font-size: 23px;
  padding-right: 13px;
}

.iziModal .iziModal-header.iziModal-noSubtitle .iziModal-header-title {
  font-size: 15px;
  margin: 3px 0 0 0;
  font-weight: 400;
}

.iziModal .iziModal-header.iziModal-noSubtitle .iziModal-header-buttons {
  right: 6px;
  margin: -16px 0 0 0;
}

.iziModal .iziModal-header.iziModal-noSubtitle .iziModal-button {
  height: 30px;
  width: 30px;
}

/* RTL */
.iziModal-rtl {
  direction: rtl;
}

.iziModal-rtl .iziModal-header {
  padding: 14px 18px 15px 40px;
}

.iziModal-rtl .iziModal-header-icon {
  float: right;
  padding: 0 0 0 15px;
}

.iziModal-rtl .iziModal-header-buttons {
  right: initial;
  left: 10px;
}

.iziModal-rtl .iziModal-button {
  float: left;
}

.iziModal-rtl .iziModal-header-title, .iziModal-rtl .iziModal-header-subtitle {
  text-align: right;
  font-family: Tahoma, "Lato", Arial;
  font-weight: 500;
}

.iziModal-rtl .iziModal-header.iziModal-noSubtitle {
  padding: 10px 15px 12px 40px;
}

.iziModal-rtl .iziModal-header.iziModal-noSubtitle .iziModal-header-icon {
  padding: 0 0 0 13px;
}

/* LIGHT THEME */
.iziModal.iziModal-light .iziModal-header-icon {
  color: rgba(0, 0, 0, 0.5);
}

.iziModal.iziModal-light .iziModal-header-title {
  color: #000;
}

.iziModal.iziModal-light .iziModal-header-subtitle {
  color: rgba(0, 0, 0, 0.6);
}

.iziModal .iziModal-loader {
  background: #FFF url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDQiIGhlaWdodD0iNDQiIHZpZXdCb3g9IjAgMCA0NCA0NCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiBzdHJva2U9IiM5OTkiPiAgICA8ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIHN0cm9rZS13aWR0aD0iMiI+ICAgICAgICA8Y2lyY2xlIGN4PSIyMiIgY3k9IjIyIiByPSIxIj4gICAgICAgICAgICA8YW5pbWF0ZSBhdHRyaWJ1dGVOYW1lPSJyIiAgICAgICAgICAgICAgICBiZWdpbj0iMHMiIGR1cj0iMS40cyIgICAgICAgICAgICAgICAgdmFsdWVzPSIxOyAyMCIgICAgICAgICAgICAgICAgY2FsY01vZGU9InNwbGluZSIgICAgICAgICAgICAgICAga2V5VGltZXM9IjA7IDEiICAgICAgICAgICAgICAgIGtleVNwbGluZXM9IjAuMTY1LCAwLjg0LCAwLjQ0LCAxIiAgICAgICAgICAgICAgICByZXBlYXRDb3VudD0iaW5kZWZpbml0ZSIgLz4gICAgICAgICAgICA8YW5pbWF0ZSBhdHRyaWJ1dGVOYW1lPSJzdHJva2Utb3BhY2l0eSIgICAgICAgICAgICAgICAgYmVnaW49IjBzIiBkdXI9IjEuNHMiICAgICAgICAgICAgICAgIHZhbHVlcz0iMTsgMCIgICAgICAgICAgICAgICAgY2FsY01vZGU9InNwbGluZSIgICAgICAgICAgICAgICAga2V5VGltZXM9IjA7IDEiICAgICAgICAgICAgICAgIGtleVNwbGluZXM9IjAuMywgMC42MSwgMC4zNTUsIDEiICAgICAgICAgICAgICAgIHJlcGVhdENvdW50PSJpbmRlZmluaXRlIiAvPiAgICAgICAgPC9jaXJjbGU+ICAgICAgICA8Y2lyY2xlIGN4PSIyMiIgY3k9IjIyIiByPSIxIj4gICAgICAgICAgICA8YW5pbWF0ZSBhdHRyaWJ1dGVOYW1lPSJyIiAgICAgICAgICAgICAgICBiZWdpbj0iLTAuOXMiIGR1cj0iMS40cyIgICAgICAgICAgICAgICAgdmFsdWVzPSIxOyAyMCIgICAgICAgICAgICAgICAgY2FsY01vZGU9InNwbGluZSIgICAgICAgICAgICAgICAga2V5VGltZXM9IjA7IDEiICAgICAgICAgICAgICAgIGtleVNwbGluZXM9IjAuMTY1LCAwLjg0LCAwLjQ0LCAxIiAgICAgICAgICAgICAgICByZXBlYXRDb3VudD0iaW5kZWZpbml0ZSIgLz4gICAgICAgICAgICA8YW5pbWF0ZSBhdHRyaWJ1dGVOYW1lPSJzdHJva2Utb3BhY2l0eSIgICAgICAgICAgICAgICAgYmVnaW49Ii0wLjlzIiBkdXI9IjEuNHMiICAgICAgICAgICAgICAgIHZhbHVlcz0iMTsgMCIgICAgICAgICAgICAgICAgY2FsY01vZGU9InNwbGluZSIgICAgICAgICAgICAgICAga2V5VGltZXM9IjA7IDEiICAgICAgICAgICAgICAgIGtleVNwbGluZXM9IjAuMywgMC42MSwgMC4zNTUsIDEiICAgICAgICAgICAgICAgIHJlcGVhdENvdW50PSJpbmRlZmluaXRlIiAvPiAgICAgICAgPC9jaXJjbGU+ICAgIDwvZz48L3N2Zz4=) no-repeat 50% 50%;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 9;
}

.iziModal .iziModal-content-loader {
  background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDQiIGhlaWdodD0iNDQiIHZpZXdCb3g9IjAgMCA0NCA0NCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiBzdHJva2U9IiM5OTkiPiAgICA8ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIHN0cm9rZS13aWR0aD0iMiI+ICAgICAgICA8Y2lyY2xlIGN4PSIyMiIgY3k9IjIyIiByPSIxIj4gICAgICAgICAgICA8YW5pbWF0ZSBhdHRyaWJ1dGVOYW1lPSJyIiAgICAgICAgICAgICAgICBiZWdpbj0iMHMiIGR1cj0iMS40cyIgICAgICAgICAgICAgICAgdmFsdWVzPSIxOyAyMCIgICAgICAgICAgICAgICAgY2FsY01vZGU9InNwbGluZSIgICAgICAgICAgICAgICAga2V5VGltZXM9IjA7IDEiICAgICAgICAgICAgICAgIGtleVNwbGluZXM9IjAuMTY1LCAwLjg0LCAwLjQ0LCAxIiAgICAgICAgICAgICAgICByZXBlYXRDb3VudD0iaW5kZWZpbml0ZSIgLz4gICAgICAgICAgICA8YW5pbWF0ZSBhdHRyaWJ1dGVOYW1lPSJzdHJva2Utb3BhY2l0eSIgICAgICAgICAgICAgICAgYmVnaW49IjBzIiBkdXI9IjEuNHMiICAgICAgICAgICAgICAgIHZhbHVlcz0iMTsgMCIgICAgICAgICAgICAgICAgY2FsY01vZGU9InNwbGluZSIgICAgICAgICAgICAgICAga2V5VGltZXM9IjA7IDEiICAgICAgICAgICAgICAgIGtleVNwbGluZXM9IjAuMywgMC42MSwgMC4zNTUsIDEiICAgICAgICAgICAgICAgIHJlcGVhdENvdW50PSJpbmRlZmluaXRlIiAvPiAgICAgICAgPC9jaXJjbGU+ICAgICAgICA8Y2lyY2xlIGN4PSIyMiIgY3k9IjIyIiByPSIxIj4gICAgICAgICAgICA8YW5pbWF0ZSBhdHRyaWJ1dGVOYW1lPSJyIiAgICAgICAgICAgICAgICBiZWdpbj0iLTAuOXMiIGR1cj0iMS40cyIgICAgICAgICAgICAgICAgdmFsdWVzPSIxOyAyMCIgICAgICAgICAgICAgICAgY2FsY01vZGU9InNwbGluZSIgICAgICAgICAgICAgICAga2V5VGltZXM9IjA7IDEiICAgICAgICAgICAgICAgIGtleVNwbGluZXM9IjAuMTY1LCAwLjg0LCAwLjQ0LCAxIiAgICAgICAgICAgICAgICByZXBlYXRDb3VudD0iaW5kZWZpbml0ZSIgLz4gICAgICAgICAgICA8YW5pbWF0ZSBhdHRyaWJ1dGVOYW1lPSJzdHJva2Utb3BhY2l0eSIgICAgICAgICAgICAgICAgYmVnaW49Ii0wLjlzIiBkdXI9IjEuNHMiICAgICAgICAgICAgICAgIHZhbHVlcz0iMTsgMCIgICAgICAgICAgICAgICAgY2FsY01vZGU9InNwbGluZSIgICAgICAgICAgICAgICAga2V5VGltZXM9IjA7IDEiICAgICAgICAgICAgICAgIGtleVNwbGluZXM9IjAuMywgMC42MSwgMC4zNTUsIDEiICAgICAgICAgICAgICAgIHJlcGVhdENvdW50PSJpbmRlZmluaXRlIiAvPiAgICAgICAgPC9jaXJjbGU+ICAgIDwvZz48L3N2Zz4=) no-repeat 50% 50%;
}

.iziModal-content {
  height: 80svh;
}

.iziModal .iziModal-content:before,
.iziModal .iziModal-content:after {
  content: "";
  display: table;
}

.iziModal .iziModal-content:after {
  clear: both;
}

.iziModal .iziModal-content {
  zoom: 1;
  width: 100%;
  position: relative;
  margin: 30px 0 0 0;
  -webkit-overflow-scrolling: touch;
}
@media only screen and (max-width: 768px) {
  .iziModal .iziModal-content {
    height: 100%;
    margin: 0px 0 0 0;
  }
}

.iziModal .iziModal-wrap {
  width: calc(100% - 60px);
  margin: 0 auto;
  position: relative;
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
}

@media only screen and (max-width: 768px) {
  .iziModal .iziModal-wrap {
    width: 100%;
    padding: 0px 30px;
    height: auto !important;
  }
}
.iziModal .iziModal-iframe {
  border: 0;
  margin: 0 0 -6px 0;
  width: 100%;
  transition: height 0.3s ease;
}

.iziModal-overlay {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 10000 !important;
}

.iziModal-navigate {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 100008 !important;
}

.iziModal-navigate-caption {
  position: absolute;
  left: 10px;
  top: 10px;
  color: white;
  line-height: 16px;
  font-size: 9px;
  font-family: "Lato", Arial;
  letter-spacing: 0.1em;
  text-indent: 0;
  text-align: center;
  width: 70px;
  padding: 5px 0;
  text-transform: uppercase;
  display: none;
}

.iziModal-navigate-caption::before, .iziModal-navigate-caption::after {
  position: absolute;
  top: 2px;
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 14px;
  font-size: 12px;
  content: "";
  background-size: 100% !important;
}

.iziModal-navigate-caption:before {
  left: 0;
}

.iziModal-navigate-caption:after {
  right: 0;
}

.iziModal-navigate > button {
  position: fixed;
  bottom: 0;
  top: 0;
  border: 0;
  height: 100%;
  width: 54px;
  background-size: 100% !important;
  cursor: pointer;
  padding: 0;
  opacity: 1;
  transition: opacity 0.3s ease;
  pointer-events: all;
  margin: 0;
  outline: none;
}

.iziModal-navigate > button:hover {
  opacity: 1;
}

.iziModal-navigate-prev {
  left: 52%;
  background: url("../img/top/prev.png") no-repeat 50% 50%;
}

.iziModal-navigate-next {
  right: 52%;
  background: url("../img/top/next.png") no-repeat 50% 50%;
}

@media only screen and (min-width: 2000px) {
  .iziModal-navigate-prev {
    left: 50%;
    background: url("../img/top/prev.png") no-repeat 50% 50%;
  }
  .iziModal-navigate-next {
    right: 50%;
    background: url("../img/top/next.png") no-repeat 50% 50%;
  }
}
@media only screen and (max-width: 768px) {
  .iziModal-navigate > button {
    position: fixed;
    bottom: 0;
    top: 47.5%;
    border: 0;
    height: 50px;
    width: 24px;
    background-size: 100% !important;
    cursor: pointer;
    padding: 0;
    opacity: 1;
    transition: opacity 0.3s ease;
    pointer-events: all;
    margin: 0;
    outline: none;
  }
  .iziModal-navigate-prev {
    left: 72%;
    background: url(../img/top/prev_g.png) no-repeat 50% 40%;
  }
  .iziModal-navigate-next {
    right: 72%;
    background: url("../img/top/next_g.png") no-repeat 50% 40%;
  }
}
.iziModal.isAttachedTop .iziModal-header {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.iziModal.isAttachedTop {
  margin-top: 0 !important;
  margin-bottom: auto !important;
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
}

.iziModal.isAttachedBottom {
  margin-top: auto !important;
  margin-bottom: 0 !important;
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.iziModal.isFullscreen {
  max-width: 100% !important;
  margin: 0 !important;
  height: 100% !important;
  border-radius: 0 !important;
}

.iziModal.isAttached {
  border-radius: 0 !important;
}

.iziModal.hasScroll .iziModal-wrap {
  overflow-y: auto;
  overflow-x: hidden;
}

html.iziModal-isOverflow {
  overflow: hidden;
}

html.iziModal-isOverflow body, html.iziModal-isAttached body {
  overflow-y: scroll;
  position: relative;
}

html.iziModal-isAttached {
  overflow: hidden;
}

/* SCROLL */
.iziModal ::-webkit-scrollbar {
  overflow: visible;
  height: 7px;
  width: 7px;
}

.iziModal ::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.2);
  background-clip: padding-box;
  border: solid transparent;
  border-width: 0px;
  min-height: 28px;
  padding: 100px 0 0;
  box-shadow: inset 1px 1px 0 rgba(0, 0, 0, 0.1), inset 0 -1px 0 rgba(0, 0, 0, 0.07);
}

.iziModal ::-webkit-scrollbar-thumb:active {
  background-color: rgba(0, 0, 0, 0.4);
}

.iziModal ::-webkit-scrollbar-button {
  height: 0;
  width: 0;
}

.iziModal ::-webkit-scrollbar-track {
  background-clip: padding-box;
  border: solid transparent;
  border-width: 0 0 0 2px;
}

/* MODAL ANIMATIONS */
.iziModal.transitionIn .iziModal-header {
  animation: iziM-slideDown 0.7s cubic-bezier(0.7, 0, 0.3, 1);
}

.iziModal.transitionIn .iziModal-header .iziModal-header-icon {
  animation: iziM-revealIn 1s cubic-bezier(0.16, 0.81, 0.32, 1) both;
}

.iziModal.transitionIn .iziModal-header .iziModal-header-title, .iziModal.transitionIn .iziModal-header .iziModal-header-subtitle {
  animation: iziM-slideIn 1s cubic-bezier(0.16, 0.81, 0.32, 1) both;
}

.iziModal.transitionIn .iziModal-header .iziModal-button {
  animation: iziM-revealIn 1.2s cubic-bezier(0.7, 0, 0.3, 1);
}

.iziModal.transitionIn .iziModal-iframe, .iziModal.transitionIn .iziModal-wrap {
  animation: iziM-fadeIn 1.3s;
}

.iziModal.transitionIn .iziModal-header {
  -webkit-animation-delay: 0s;
  -moz-animation: 0s;
  animation-delay: 0s;
}

.iziModal.transitionIn .iziModal-header .iziModal-header-icon,
.iziModal.transitionIn .iziModal-header .iziModal-header-title {
  -webkit-animation-delay: 0.4s;
  -moz-animation: 0.4s;
  animation-delay: 0.4s;
}

.iziModal.transitionIn .iziModal-header .iziModal-header-subtitle {
  -webkit-animation-delay: 0.5s;
  -moz-animation: 0.5s;
  animation-delay: 0.5s;
}

.iziModal.transitionOut .iziModal-header, .iziModal.transitionOut .iziModal-header * {
  transition: none !important;
}

/* ANIMATIONS */
.iziModal.fadeOut, .iziModal-overlay.fadeOut, .iziModal-navigate.fadeOut, .iziModal .fadeOut {
  animation: iziM-fadeOut 0.5s;
  animation-fill-mode: forwards;
}

.iziModal.fadeIn, .iziModal-overlay.fadeIn, .iziModal-navigate.fadeIn, .iziModal .fadeIn {
  animation: iziM-fadeIn 0.5s;
}

.iziModal.comingIn, .iziModal-overlay.comingIn {
  animation: iziM-comingIn 0.5s ease;
}

.iziModal.comingOut, .iziModal-overlay.comingOut {
  animation: iziM-comingOut 0.5s cubic-bezier(0.16, 0.81, 0.32, 1);
  animation-fill-mode: forwards;
}

.iziModal.bounceInDown, .iziModal-overlay.bounceInDown {
  animation: iziM-bounceInDown 0.7s ease;
}

.iziModal.bounceOutDown, .iziModal-overlay.bounceOutDown {
  animation: iziM-bounceOutDown 0.7s ease;
}

.iziModal.bounceInUp, .iziModal-overlay.bounceInUp {
  animation: iziM-bounceInUp 0.7s ease;
}

.iziModal.bounceOutUp, .iziModal-overlay.bounceOutUp {
  animation: iziM-bounceOutUp 0.7s ease;
}

.iziModal.fadeInDown, .iziModal-overlay.fadeInDown {
  animation: iziM-fadeInDown 0.7s cubic-bezier(0.16, 0.81, 0.32, 1);
}

.iziModal.fadeOutDown, .iziModal-overlay.fadeOutDown {
  animation: iziM-fadeOutDown 0.5s ease;
}

.iziModal.fadeInUp, .iziModal-overlay.fadeInUp {
  animation: iziM-fadeInUp 0.7s cubic-bezier(0.16, 0.81, 0.32, 1);
}

.iziModal.fadeOutUp, .iziModal-overlay.fadeOutUp {
  animation: iziM-fadeOutUp 0.5s ease;
}

.iziModal.fadeInLeft, .iziModal-overlay.fadeInLeft {
  animation: iziM-fadeInLeft 0.7s cubic-bezier(0.16, 0.81, 0.32, 1);
}

.iziModal.fadeOutLeft, .iziModal-overlay.fadeOutLeft {
  animation: iziM-fadeOutLeft 0.5s ease;
}

.iziModal.fadeInRight, .iziModal-overlay.fadeInRight {
  animation: iziM-fadeInRight 0.7s cubic-bezier(0.16, 0.81, 0.32, 1);
}

.iziModal.fadeOutRight, .iziModal-overlay.fadeOutRight {
  animation: iziM-fadeOutRight 0.5s ease;
}

.iziModal.flipInX, .iziModal-overlay.flipInX {
  animation: iziM-flipInX 0.7s ease;
}

.iziModal.flipOutX, .iziModal-overlay.flipOutX {
  animation: iziM-flipOutX 0.7s ease;
}
@keyframes iziM-comingIn {
  0% {
    opacity: 0;
    /*transform: translateY(-20px) perspective( 600px ) rotateX( 10deg );*/
    transform: scale(0.9) translateY(-20px) perspective(600px) rotateX(10deg);
  }
  100% {
    opacity: 1;
    /*transform: scale(1) translateY(0) perspective( 600px ) rotateX( 0 ); */
    transform: scale(1) translateY(0) perspective(600px) rotateX(0);
  }
}
@keyframes iziM-comingOut {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(0.9);
  }
}
@keyframes iziM-fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes iziM-fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes iziM-slideIn {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes iziM-slideDown {
  0% {
    opacity: 0;
    transform: scale(1, 0) translateY(-40px);
    transform-origin: center top;
  }
}
@keyframes iziM-revealIn {
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 1);
  }
}
@keyframes iziM-bounceInDown {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -1000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    transform: none;
  }
}
@keyframes iziM-bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 1000px, 0);
  }
}
@keyframes iziM-bounceInUp {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 1000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes iziM-bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -1000px, 0);
  }
}
@keyframes iziM-fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes iziM-fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 100px, 0);
  }
}
@keyframes iziM-fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes iziM-fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -100px, 0);
  }
}
@keyframes iziM-fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-200px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes iziM-fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-200px, 0, 0);
  }
}
@keyframes iziM-fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(200px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes iziM-fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(200px, 0, 0);
  }
}
@keyframes iziM-flipInX {
  0% {
    transform: perspective(400px) rotateX(60deg);
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotateX(-10deg);
  }
  70% {
    transform: perspective(400px) rotateX(10deg);
  }
  100% {
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}
@keyframes iziM-flipOutX {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 40deg);
    opacity: 0;
  }
}
.iziModal .modal_itemlist {
  position: relative;
  height: 100%;
}
.iziModal .modal_itemlist .photo {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .iziModal .modal_itemlist .photo {
    height: auto !important;
  }
}
.iziModal .modal_itemlist .photo img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: 100%;
}
.iziModal .modal_itemlist .txtbox {
  margin: 20px 0;
}
.iziModal .modal_itemlist .txtbox .title {
  font-size: 16px;
  font-weight: bold;
}
.iziModal .modal_itemlist .txtbox .txt {
  font-size: 12px;
}

@media only screen and (max-width: 768px) {
  .iziModal .modal_itemlist {
    position: relative;
    height: 90%;
    margin: 11% 0 0;
  }
  .iziModal .modal_itemlist .photo {
    width: 100%;
    height: 100%;
    position: relative;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
  }
  .iziModal .modal_itemlist .numberbox {
    position: absolute;
    left: 7%;
    bottom: 12%;
  }
  .iziModal .modal_itemlist .numberbox .txt {
    font-size: 13px;
  }
  .iziModal .modal_itemlist .numberbox .number {
    font-size: 11px;
  }
}/*# sourceMappingURL=style.css.map */