@charset "UTF-8";
.pc {
  display: block !important;
}

.sp {
  display: none !important;
}

.tc {
  display: block !important;
}

.tb {
  display: none !important;
}

@media print, screen and (max-width: 991px) {
  .tc {
    display: none !important;
  }
  .tb {
    display: block !important;
  }
}

@media only screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
}

@media print, screen and (min-width: 769px) {
  .pc-hide {
    display: none !important;
  }
}

@media only screen and (max-width: 768px) {
  .sp-hide {
    display: none !important;
  }
}

.wrapper {
  position: relative;
  max-width: 125.0rem;
  width: 100%;
  padding-left: 6.0rem;
  padding-right: 6.0rem;
  margin-left: auto;
  margin-right: auto;
}

@media print, screen and (max-width: 1200px) {
  .wrapper {
    padding-left: 3.0rem;
    padding-right: 3.0rem;
  }
}

@media print, screen and (max-width: 991px) {
  .wrapper {
    padding-left: 2.0rem;
    padding-right: 2.0rem;
  }
}

@media only screen and (max-width: 768px) {
  .wrapper {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

main {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media only screen and (max-width: 768px) {
  main {
    display: block;
  }
}

/* input */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="password"],
select,
textarea {
  position: relative;
  background-color: #FFFFFF;
  border: 1px solid #CECECE;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 2.4rem;
  text-align: left;
  color: #000000;
  outline: none !important;
  padding: 1.2rem 1.5rem;
  width: 100%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="password"],
select {
  height: 4.8rem;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
input[type="password"]:focus,
select:focus,
textarea:focus {
  border-color: #275BC8;
}

picture,
figure,
.image_wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
}

picture img,
figure img,
.image_wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.scroll {
  position: relative;
  max-width: 100%;
  width: 100%;
  overflow: auto;
}

.m-text {
  position: relative;
  font-weight: 300;
  font-size: 1.4rem;
  line-height: 2.4rem;
  letter-spacing: 0.1em;
}

.mx-txt {
  position: relative;
  font-weight: normal;
  font-size: 1.8rem;
}

@media only screen and (max-width: 768px) {
  .mx-txt {
    font-size: 1.6rem;
  }
}

.m-title {
  position: relative;
  font-weight: 300;
  font-size: 2.0rem;
  line-height: 3.2rem;
  letter-spacing: 0.1em;
}

.text_list {
  position: relative;
  list-style-type: "・";
  padding-left: 1.8rem;
}

.underline_bg {
  display: inline;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(68%, transparent), color-stop(0%, #FBB03B));
  background: linear-gradient(transparent 68%, #FBB03B 0%);
}

/* btn */
.btn_wrap {
  position: relative;
}

.btn {
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 8px 20px;
  max-width: 240px;
  width: 100%;
  height: 50px;
  background: #F2F2F2;
  border: 1px solid #858585;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  line-height: 24px;
  font-weight: 300;
  color: #1A1A1A;
  text-align: center;
  text-decoration: none;
  outline: none;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  cursor: pointer;
}

@media only screen and (max-width: 768px) {
  .btn {
    height: 45px;
    max-width: 200px;
  }
}

.btn span {
  position: relative;
  color: inherit;
  text-decoration: none;
  z-index: 3;
}

.btn:hover {
  background: #A10707;
  border-color: #A10707;
  color: #FFFFFF;
}

.viewmore_link_wrap {
  position: relative;
}

.viewmore_link_wrap .viewmore_link {
  position: relative;
  display: inline-block;
  font-weight: bold;
  font-style: italic;
  font-size: 16px;
  line-height: 26px;
  color: #FF931E;
  text-decoration: none;
}

.viewmore_link_wrap .viewmore_link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #FF931E;
}

.viewmore_link_wrap .viewmore_link::after {
  content: ">";
  display: inline-block;
  line-height: 1;
  margin-left: 6px;
  vertical-align: text-bottom;
}

.viewmore_link_wrap .viewmore_link:hover::before {
  width: 100%;
  animation: link-lineloop 0.6s ease-out;
  -webkit-animation: link-lineloop 0.6s ease-out;
}

.view-more {
  position: relative;
}

.link-btn {
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 1.2rem 3.0rem;
  max-width: 100%;
  width: 27.7rem;
  height: 7.0rem;
  background: #000000;
  border: 0.3rem solid #000000;
  font-family: "Hiragino Mincho ProN", serif;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 300;
  letter-spacing: 0.1em;
  white-space: nowrap;
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  outline: none;
  border-radius: 3.5rem;
  -webkit-transition: background 0.6s cubic-bezier(0.8, 0, 0.2, 1);
  transition: background 0.6s cubic-bezier(0.8, 0, 0.2, 1);
  cursor: pointer;
  z-index: 1;
}

.link-btn span {
  position: relative;
  color: inherit;
  text-decoration: none;
  -webkit-transition: color 0.6s cubic-bezier(0.8, 0, 0.2, 1);
  transition: color 0.6s cubic-bezier(0.8, 0, 0.2, 1);
  z-index: 3;
}

.link-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  background: #FFFFFF;
  width: 100%;
  height: 100%;
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1);
  transition: -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1);
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1);
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1), -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1);
  -webkit-transform-origin: right top;
          transform-origin: right top;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  z-index: 1;
}

.link-btn:hover {
  color: #000000;
}

.link-btn:hover::before {
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}


.modal .close {
  position: absolute;
  top: -1.0rem;
  right: -1.0rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0.2rem 0.6rem;
  width: 3.0rem;
  height: 3.0rem;
  background-color: #FCD004;
  border-radius: 50%;
  font-size: 1.6rem;
  line-height: 1;
  z-index: 3;
}

.modal-open {
  overflow: hidden;
}

#header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  padding: 2.0rem 6.0rem 1.9rem 5.0rem;
  background: transparent;
  -webkit-backdrop-filter: blur(30px);
          backdrop-filter: blur(30px);
  --webkit-backdrop-filter: blur(30px);
  background-color: rgba(255, 255, 255, 0.15);
  z-index: 996;
}

@media print, screen and (max-width: 1200px) {
  #header {
    padding-left: 3.0rem;
    padding-right: 3.0rem;
  }
}

@media print, screen and (max-width: 991px) {
  #header {
    padding-left: 2.0rem;
    padding-right: 2.0rem;
  }
}

@media only screen and (max-width: 768px) {
  #header {
    padding: 1.9rem 2.0rem 1.8rem;
    height: 9.0rem;
  }
}

#header.header-scrolled {
  -webkit-box-shadow: 0 3px 60px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 60px rgba(0, 0, 0, 0.16);
}

#header .header-wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0;
}

#header .header-wrapper .logo {
  position: relative;
  margin-right: 3rem;
}


@media only screen and (max-width: 768px) {
  #header .header-wrapper .logo {
    position: relative;
    top: 1.5rem;
  }
}

#header .header-wrapper .logo .image {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: space-between;
  width: 8.4rem;
  text-decoration: none;
  outline: none;
  padding: 0;
  margin: 0;
}

@media only screen and (max-width: 768px) {
  #header .header-wrapper .logo .image {
    width: 5.5rem;
  }
}

#header .header-wrapper .logo .image img {
  width: 100%;
}

#header .header-wrapper .nav {
  position: relative;
  padding: 0;
}

@media print, screen and (max-width: 991px) {
  #header .header-wrapper .nav {
    display: none;
  }
}

#header .header-wrapper .nav-menu {
  position: relative;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1;
  padding: 0;
}

#header .header-wrapper .nav-menu > li {
  position: relative;
  padding: 0;
}

#header .header-wrapper .nav-menu > li:not(:first-child) {
  margin-left: 7.5rem;
}

.card-wrapper{
  margin-left: 48rem !important;
}

#header .header-wrapper .nav-menu .menu-link {
  position: relative;
  display: inline-block;
  font-family: "Hiragino Mincho ProN", serif;
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 2.4rem;
  color: #000000;
  text-align: center;
  padding: 0;
  margin: 0;
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  z-index: 1;
}

#header .header-wrapper .nav-menu .menu-link span {
  color: inherit;
  text-decoration: none;
}

#header .header-wrapper .nav-menu .menu-link:hover {
  opacity: 0.7;
}

#header .header-wrapper .nav-menu .cart-link-btn {
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 1.2rem 3.0rem;
  max-width: 100%;
  width: 15.6rem;
  height: 5.0rem;
  background: #000000;
  border: 2px solid #000000;
  font-family: "Hiragino Mincho ProN", serif;
  font-size: 1.4rem;
  line-height: 2.4rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  white-space: nowrap;
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  outline: none;
  border-radius: 2.5rem;
  -webkit-transition: background 0.6s cubic-bezier(0.8, 0, 0.2, 1);
  transition: background 0.6s cubic-bezier(0.8, 0, 0.2, 1);
  cursor: pointer;
  -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  z-index: 1;
}

#header .header-wrapper .nav-menu .cart-link-btn span {
  position: relative;
  color: inherit;
  text-decoration: none;
  -webkit-transition: color 0.6s cubic-bezier(0.8, 0, 0.2, 1);
  transition: color 0.6s cubic-bezier(0.8, 0, 0.2, 1);
  z-index: 3;
}

#header .header-wrapper .nav-menu .cart-link-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  background: #FFFFFF;
  width: 100%;
  height: 100%;
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1);
  transition: -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1);
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1);
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1), -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1);
  -webkit-transform-origin: right top;
          transform-origin: right top;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  z-index: 1;
}

#header .header-wrapper .nav-menu .cart-link-btn:hover {
  color: #000000;
}

#header .header-wrapper .nav-menu .cart-link-btn:hover::before {
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

body.bg-black #header {
  background: #FFFFFF;
}

@media print, screen and (max-width: 991px) {
  body.bg-black #header {
    background: #131313;
  }
}

#main-nav {
  position: relative;
  width: 100%;
  background: #FCD004;
  padding: 1.0rem 1.5rem;
  z-index: 9;
}

@media print, screen and (max-width: 991px) {
  #main-nav {
    display: none;
  }
}

#main-nav .nav-menu {
  position: relative;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1;
}

#main-nav .nav-menu > li {
  position: relative;
  padding: 0 2.0rem;
}

#main-nav .nav-menu > li > a {
  position: relative;
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.5;
  color: #000000;
  padding: 0;
  margin: 0;
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
  z-index: 0;
}

#main-nav .nav-menu > li > a:hover {
  text-decoration: underline;
}

#main-nav .nav-menu .drop_down ul {
  display: block;
  list-style: none;
  position: absolute;
  left: 0;
  top: calc(100% + 20px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 0;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

#main-nav .nav-menu .drop_down ul li {
  position: relative;
  min-width: 200px;
  padding: 0;
}

#main-nav .nav-menu .drop_down ul li:not(:last-child) {
  border-bottom: 1px solid #808080;
}

#main-nav .nav-menu .drop_down ul a {
  position: relative;
  display: block;
  font-size: 14px;
  font-weight: normal;
  line-height: 22px;
  color: #FFFFFF;
  padding: 12px 3.57rem;
  margin: 0;
  background: rgba(26, 26, 26, 0.8);
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: all 0.3 ease-in-out;
  transition: all 0.3 ease-in-out;
  z-index: 0;
}

#main-nav .nav-menu .drop_down ul a:hover {
  background: #1A1A1A;
  color: #FFFFFF;
}

#main-nav .nav-menu .drop_down ul .drop_down ul {
  top: 0;
  left: calc(100% - 30px);
}

#main-nav .nav-menu .drop_down ul .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

#main-nav .nav-menu .drop_down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.mobile-nav-toggle {
  position: fixed;
  right: 2.0rem;
  top: 2.5rem;
  width: 5.0rem;
  height: 5.0rem;
  padding: 0;
  background: transparent;
  display: none;
  border: none;
  outline: none;
  cursor: pointer;
  z-index: 999;
  margin: 0;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

@media print, screen and (max-width: 991px) {
  .mobile-nav-toggle {
    display: inline-block;
  }
}

@media only screen and (max-width: 768px) {
  .mobile-nav-toggle {
    top: 2.0rem;
  }
}

.mobile-nav-toggle .toggle-icon {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
}

.mobile-nav-toggle .toggle-icon span {
  display: inline-block;
  position: absolute;
  right: 0;
  width: 100%;
  height: 1px;
  background: #000000;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  -webkit-transform-origin: center center;
          transform-origin: center center;
}

.mobile-nav-toggle .toggle-icon span:nth-child(1) {
  top: calc(50% - 6px);
}

.mobile-nav-toggle .toggle-icon span:nth-child(2) {
  top: calc(50% + 6px);
  width: 80%;
}

.mobile-nav-toggle .toggle-icon span:nth-child(3) {
  bottom: 0;
}

.mobile-nav-toggle.toggle-active .toggle-icon span {
  background: #000000;
}

.mobile-nav-toggle.toggle-active .toggle-icon span:nth-child(1) {
  -webkit-transform: translateY(7px) rotate(-225deg);
          transform: translateY(7px) rotate(-225deg);
  width: 100%;
}

.mobile-nav-toggle.toggle-active .toggle-icon span:nth-child(2) {
  -webkit-transform: translateY(-6px) rotate(-135deg);
          transform: translateY(-6px) rotate(-135deg);
  width: 100%;
}

.mobile-nav-toggle.toggle-active .toggle-icon span:nth-child(3) {
  opacity: 0;
  visibility: hidden;
}

body.bg-black .mobile-nav-toggle .toggle-icon span {
  background: #FFFFFF;
}

#mobile-nav {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 998;
  right: -100%;
  width: 100%;
  overflow-y: auto;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  background: transparent;
  -webkit-backdrop-filter: blur(50px);
          backdrop-filter: blur(50px);
  --webkit-backdrop-filter: blur(50px);
  background-color: #ffffff;
}

#mobile-nav .nav-body {
  position: relative;
  padding: 18.0rem 3.0rem 6.0rem;
}

@media only screen and (max-width: 768px) {
  #mobile-nav .nav-body {
    padding: 15.0rem 1.5rem 6.0rem;
    padding: clamp(12rem, 24vh, 18rem) 4.15rem 6rem;
  }
}

#mobile-nav .mobile-nav-menu {
  position: relative;
  list-style: none;
  display: block;
  text-align: left;
  padding: 0;
}

#mobile-nav .mobile-nav-menu > li {
  position: relative;
  border-bottom: 1px solid #000000;
  padding-bottom: 1.2rem;
}

#mobile-nav .mobile-nav-menu > li:not(:last-child) {
  margin-bottom: 3.0rem;
  border-bottom: 1px solid #000000;
  padding-bottom: 1.2rem;
}

#mobile-nav .mobile-nav-menu .menu-link {
  position: relative;
  display: inline-block;
  font-family: "Hiragino Mincho ProN", serif;
  font-weight: 300;
  font-size: 2.0rem;
  line-height: 3.2rem;
  text-align: center;
  color: #000000;
  padding: 0;
  text-decoration: none;
  outline: none;
}

@media only screen and (max-width: 768px) {
  #mobile-nav .mobile-nav-menu .menu-link {
    font-size: 1.8rem;
    line-height: 3.0rem;
  }
}

#mobile-nav .mobile-nav-menu .cart-link-btn {
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 1.2rem 3.0rem;
  max-width: 100%;
  width: 15.6rem;
  height: 5.0rem;
  background: #510D28;
  border: 2px solid #510D28;
  font-family: "Hiragino Mincho ProN", serif;
  font-size: 1.4rem;
  line-height: 2.4rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  white-space: nowrap;
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  outline: none;
  border-radius: 2.5rem;
  -webkit-transition: background 0.6s cubic-bezier(0.8, 0, 0.2, 1);
  transition: background 0.6s cubic-bezier(0.8, 0, 0.2, 1);
  cursor: pointer;
  -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  z-index: 1;
  margin-left: auto;
  margin-right: auto;
}

#mobile-nav .mobile-nav-menu .cart-link-btn span {
  position: relative;
  color: inherit;
  text-decoration: none;
  -webkit-transition: color 0.6s cubic-bezier(0.8, 0, 0.2, 1);
  transition: color 0.6s cubic-bezier(0.8, 0, 0.2, 1);
  z-index: 3;
}

#mobile-nav .mobile-nav-menu .cart-link-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  background: #FFFFFF;
  width: 100%;
  height: 100%;
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1);
  transition: -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1);
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1);
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1), -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1);
  -webkit-transform-origin: right top;
          transform-origin: right top;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  z-index: 1;
}

#mobile-nav .mobile-nav-menu .cart-link-btn:hover {
  color: #000000;
}

#mobile-nav .mobile-nav-menu .cart-link-btn:hover::before {
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

.mobile-nav-overly {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 997;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  overflow: hidden;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

/* Mobile Nav body classes */
@media only screen and (max-width: 768px) {
  body.mobile-nav-active {
    overflow: hidden;
  }
}

body.mobile-nav-active #mobile-nav {
  right: 0;
}

.modal-close{
  position: absolute;
  top: 5.0rem;
  right: 5.0rem;
  display: block;
  width: 5.0rem;
  height: 5.0rem;
  cursor: pointer;
  text-decoration: none;
  z-index: 9;
}

@media only screen and (max-width: 768px) {
  .modal-close{
    position: absolute;
    top: 2rem;
    right: 2rem;
    z-index: 9999;
  }
}


.modal-close::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 100%;
  height: 1px;
  background: #000000;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transform-origin: center center;
          transform-origin: center center;
  -webkit-filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
          filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
}


.modal-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 100%;
  height: 1px;
  background: #000000;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transform-origin: center center;
          transform-origin: center center;
  -webkit-filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
          filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
}

.bg-black .product-section .section-slide{
  position: relative;
  top: 15rem;
  right: 15rem;
}

@media print, screen and (max-width: 991px) {
  .bg-black .product-section .section-slide{
    position: relative;
    top: 0;
    right: 0;
    z-index: 1000;
  }
}

.bg-black .product-section .section-slide .slides{
  width: 55rem;
  height: 55rem;
  overflow: hidden;
  position: relative;
  border: none !important;
  /* box-shadow: rgba(0, 0, 0, 0.2) 0px 8px 24px; */
}

@media print, screen and (max-width: 991px) {
  .bg-black .product-section .section-slide .slides{
    width: 100%;
    height: 56.5vh;
    border: none;
  }
}

.bg-black .product-section .section-slide .slides .slide{
  position: absolute;
  height: 100%;
}

@media print, screen and (max-width: 991px) {
  .bg-black .product-section .section-slide .slides .slide{
    position: absolute;
    top: 0;
    right: 0;
  }
}

.bg-black .product-section .section-slide .slides img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  flex: 0 0 100%;
}

.bg-black .product-section .section-slide .slides .slick-list {
  position: relative;
  margin-right: -2px;
}

.bg-black .product-section .section-slide .slides .slick-track {
  position: relative;
}

.bg-black .product-section .section-slide .slides .slick-slide {
  position: relative;
  margin-right: 2px;
}

.bg-black .product-section .section-slide .slides .slick-dots {
  bottom: 3.0rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 5;
}


@media only screen and (max-width: 768px) {
  .bg-black .product-section .section-slide .slides .slick-dots{
    bottom: 15px;
  }
}

.bg-black .product-section .section-slide .slides .slick-dots li {
  margin: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: auto;
  padding: 0 5px;
}

@media only screen and (max-width: 768px) {
  .bg-black .product-section .section-slide .slides .slick-dots li {
    padding: 0 4px;
  }
}

.bg-black .product-section .section-slide .slides .slick-dots li button {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  padding: 0;
}


@media only screen and (max-width: 768px) {
  .bg-black .product-section .section-slide .slides .slick-dots li button {
    width: 0.8rem;
    height: 0.8rem;
  }
}

.bg-black .product-section .section-slide .slides .slick-dots li button::before {
  display: none !important;
}

.bg-black .product-section .section-slide .slides .slick-dots li.slick-active button {
  background: #FFFFFF;
}


/* 
.modal .modal-content .section-slide.slide-img-pc{
  display: block;
}

@media print, screen and (max-width: 768px) {
  .modal .modal-content .section-slide.slide-img-pc{
    display: none;
  }
}

.modal .modal-content .section-slide.slide-img-sp{
  display: none;
}


@media print, screen and (max-width: 768px) {
  .modal .modal-content .section-slide.slide-img-sp{
    display: block;
  }
} */


.bg-black .product-info{
  position: relative;
  top: 15rem;
}

@media only screen and (max-width: 768px) {
  .bg-black .product-info{
    display: block;
    padding-right: 3rem;
    padding-left: 3rem;
    padding-bottom: 8rem;
    margin-top: -11rem;
    margin-left: auto;
    margin-right: auto;
  }
}

.bg-black .product-info .branding{
  position: relative;
  border-bottom: 1px solid #626262;
  padding-bottom: 2.5rem;
}

.bg-black .product-info .branding h3{
  font-size: 1.2;
  font-family: 'Hiragino Mincho ProN';
}

.bg-black .product-info .branding p{
  font-size: 2.4rem;
  font-family: 'Hiragino Mincho ProN';
  padding-top: 1.2rem;
}

.bg-black .product-info .branding h2{
  font-size: 1.8rem;
  padding-top: 1.83rem;
  letter-spacing: 0.1rem;
}

.bg-black .product-info .values{
  position: relative;
  margin-top: 3rem;
}

.bg-black .product-info .values .material{
  font-size: 1.2rem;
  letter-spacing: 0.1rem;
}

.bg-black .product-info .values .stone{
  font-size: 1.2rem;
  letter-spacing: 0.1rem;
  padding-top: 1rem;
}

.bg-black .product-info .values .sorts{
  position: relative;
  display: flex;
  /* justify-content: space-between; */
  align-items: center;
  gap: 2rem;
}

.bg-black .product-info .values .mark{
  width: 12rem;
  font-size: 1.2rem;
  padding: 0.6rem 2rem;
  border: 0.5px solid #000000;
  background: #F7F7F7;
  margin-top: 1.5rem;
}
.bg-black .product-info .values .size{
  font-size: 1.2rem;
  padding-top: 1.5rem;
}

.bg-black .product-info .values .products-btns{
  position: relative;
  padding-top: 1.5rem;
}

.bg-black .product-info .values .products-btns .size_buttons{
  display: flex;
  flex-direction: row;
  align-items: center;
}

.bg-black .product-info .values .products-btns .size_buttons button{
  width: 3rem;
  height: 3rem;
  font-size: 1.2rem;
  margin-right: 1.5rem;
  padding: 0;
  background: gray;
}

.bg-black .product-info .values .products-btns li{
  position: relative;
  margin-top: 4.6rem;
}

.bg-black .product-info .values .products-btns .add-cart-btn {
  position: relative;
  background: #FFE138;
  overflow: hidden;
  -webkit-transition: background 0.6s cubic-bezier(0.8, 0, 0.2, 1);
  transition: background 0.6s cubic-bezier(0.8, 0, 0.2, 1);
  z-index: 1;
  width: 35.9rem;
  height: 5.6rem;
  display: block;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Hiragino Mincho ProN", serif;
  font-weight: 300;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  line-height: 2.4rem;
  text-align: center;
  color: #FFFFFF;
  white-space: nowrap;
  text-decoration: none;
  background: #000000;
  padding: 1.0rem 1.0rem;
  border: none;
  outline: none;
  cursor: pointer;
  -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}


@media only screen and (max-width: 768px) {
  .bg-black .product-info .values .products-btns .add-cart-btn{
    width: 34rem;
  }
}

.bg-black .product-info .values .products-btns .add-cart-btn span {
  position: relative;
  color: inherit;
  text-decoration: none;
  -webkit-transition: color 0.6s cubic-bezier(0.8, 0, 0.2, 1);
  transition: color 0.6s cubic-bezier(0.8, 0, 0.2, 1);
  z-index: 3;
}

.bg-black .product-info .values .products-btns .add-cart-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  background: #ffffff;
  width: 100%;
  height: 100%;
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1);
  transition: -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1);
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1);
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1), -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1);
  -webkit-transform-origin: right top;
          transform-origin: right top;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  z-index: 1;
}

.bg-black .product-info .values .products-btns .add-cart-btn:hover {
  color: #000000;
}

.bg-black .product-info .values .products-btns .add-cart-btn:hover::before {
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}



.mainvisual {
  position: relative;
  padding: 0;
  width: 100%;
  margin-top: 4.3rem;
}

@media print, screen and (max-width: 991px) {
  .mainvisual {
    margin-top: 0;
  }
}

.mainvisual .main-picture {
  position: relative;
  max-width: 113.0rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  z-index: 0;
}

@media print, screen and (max-width: 991px) {
  .mainvisual .main-picture {
    max-width: 40.0rem;
  }
}

@media only screen and (max-width: 768px) {
  .mainvisual .main-picture {
    max-width: 40.0rem;
  }
}

.mainvisual .main-picture img {
  position: relative;
  width: auto;
  max-width: 100%;
  height: clamp(40rem, calc( ( var(--vh, 1vh) * 100 ) - 39.4rem), 90rem);
  -o-object-position: top center;
     object-position: top center;
}

@media print, screen and (max-width: 991px) {
  .mainvisual .main-picture img {
    height: clamp(41.2rem, calc( ( var(--vh, 1vh) * 100 ) - 43.2rem), 72rem);
  }
}

@media only screen and (max-width: 768px) {
  .mainvisual .main-picture img {
    width: 100%;
    height: auto;
  }
}

.section-intro {
  position: relative;
  padding: 5.0rem 0 5.0rem;
  z-index: 3;
}

@media print, screen and (max-width: 991px) {
  .section-intro {
    padding: 4.0rem 0 5.0rem;
  }
}

.section-intro .intro-card {
  position: relative;
}

.section-intro .intro-card .icon {
  position: relative;
  width: 9.7rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 4.0rem;
}

@media only screen and (max-width: 768px) {
  .section-intro .intro-card .icon {
    margin-bottom: 3.6rem;
  }
}

.section-intro .intro-card .title {
  position: relative;
  font-weight: 300;
  font-size: 2.0rem;
  letter-spacing: 0.1em;
  line-height: 3.2rem;
  text-align: center;
  color: #000;
  margin-bottom: 3.0rem;
}

@media only screen and (max-width: 768px) {
  .section-intro .intro-card .title {
    margin-bottom: 2.4rem;
  }
}

.section-intro .intro-card .text {
  position: relative;
  font-weight: 300;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  line-height: 2.4rem;
  text-align: center;
  color: #000;
}

@media print, screen and (max-width: 991px) {
  .section-intro .intro-card .text {
    font-size: 1.2rem;
    line-height: 2.0rem;
    padding-left: 7rem;
    padding-right: 7rem;
  }
}

@media print, screen and (max-width: 991px) {
  .section-intro .intro-card .text span {
    width: 60%;
    margin: 0 auto;
  }
}


.section-intro .intro-card .link-btn {
  position: relative;
  margin-top: 5.0rem;
  margin-left: auto;
  margin-right: auto;
}

.page-action-btn {
  position: sticky;
  top: calc( 100vh - 12.0rem);
  left: calc(50% - 13.6rem);
  -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  margin: 0;
  z-index: 99;
}

@media only screen and (max-width: 768px) {
  .page-action-btn {
    top: calc( 100vh - 12.0rem);
  }
}



#price {
  padding: 10.0rem 0 8.0rem;
}

@media print, screen and (max-width: 991px) {
  #price {
    padding: 8.0rem 0 7.0rem;
  }
}

@media only screen and (max-width: 768px) {
  #price {
    padding: 7.0rem 0 6.0rem;
  }
}

.gallery-section{
  position: relative; 
  margin-top: 18.7rem;
}

@media only screen and (max-width: 768px) {
  .gallery-section{
    margin-top: 2rem;
  }
}

.gallery-section .inner{
  position: relative;
  max-width: 120rem;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 9.2rem;
  padding-bottom: 17rem;
}


@media only screen and (max-width: 768px) {
  .gallery-section .inner{
    display: block;
    padding-left: 3.5rem;
    padding-right: 3.5rem;
  }
}

.gallery-section .inner .left-photos{
  position: relative;
}

.gallery-section .inner .left-photos img:nth-child(1){
  display: block;
  width: 100%;
  height: auto;
}

.gallery-section .inner .left-photos img:nth-child(2){
  display: block;
  width: 100%;
  height: auto;
  margin-top: 5.7rem  ;
}

.gallery-section .inner .right-photos{
  position: relative;
  top: 8.3rem;
  display: flex;
  flex-direction: column;
}

.gallery-section .inner .right-photos img:nth-child(1){
  display: block;
  width: 100%;
  height: auto;
}

.gallery-section .inner .right-photos img:nth-child(2){
  display: block;
  width: 100%;
  height: auto;
  margin-top: 6.4rem ;
}

.gallery-section .silver-img{
  position: relative;
}
.gallery-section .silver-img .silver-pc{
  display:block;
  width: 100%;
  height: auto;
}

@media only screen and (max-width: 768px) {
  .gallery-section .silver-img .silver-pc{
    display: none;
  }
}

.gallery-section .silver-img .silver-sp{
  display:none;
}

@media only screen and (max-width: 768px) {
  .gallery-section .silver-img .silver-sp{
    display: block;
    width: 100%;
    height: auto;
  }
}

.section-design-info{
  position: relative;
  top: 5rem;
}

.section-design-info .product-img{
  position: relative;
  margin: 0;
  padding: 0;
}
.section-design-info .product-img figure{
  position: relative;
  margin: 0 auto;
  object-fit: cover;
}

.section-design-info .product-img figure img:nth-child(1){
  display: block;
  width: 100%;
  height: auto;
}

@media only screen and (max-width: 768px) {
  .section-design-info .product-img figure img:nth-child(1) {
    display: none;
  }
}

.section-design-info .product-img figure img:nth-child(2){
  display: none;
}

@media only screen and (max-width: 768px) {
  .section-design-info .product-img figure img:nth-child(2) {
    display: block;
    width: 100%;
    height: auto;
  }
}


.section-design-info .product-info{
  position: relative;
  padding-top: 4.52rem;
  padding-bottom: 20rem;
}

.section-design-info .product-info .wrapper{
  position: relative;
  max-width: 117rem !important;
  width: 100%;
  margin: 0 auto;
}

@media only screen and (max-width: 768px) {
  .section-design-info .product-info .wrapper {
    position: relative;
    padding-left: 4.5rem !important;
    padding-right: 4.5rem !important;
  }
}

.section-design-info .product-info .text{
  position: relative;
  
}

.section-design-info .product-info .text h2{
  position: relative;
  font-size: 1.6rem;
  letter-spacing: 0.2rem;
}

.section-design-info .product-info .text h3{
  font-size: 2.4rem;
  padding-top: 2.2rem;
  letter-spacing: 0.1rem;
}

.section-design-info .product-info .text h4{
  font-size: 1.2rem;
  padding-top: 2.7rem;
  line-height: 2.1;
  letter-spacing: 0.2rem;
}

.section-design-info .product-info .values{
  position: relative;
  margin-top: 4.64rem;
}

.section-design-info .product-info .values p{
  width: 36.2rem;
  padding: 2.35rem 5rem 2.35rem 0 ;
  line-height: 2.1;
  letter-spacing: 0.2rem;
  font-size: 1.1rem;
  border-top: 1px solid #000000;
  border-bottom: 1px solid #000000;
}


@media print, screen and (max-width: 991px) {
  .section-design-info .product-info .values p{
    width: auto;
    padding: 2.35rem 1rem 2.35rem 0;
  }
}


.section-slide{
  position: relative;
}

.section-slide .slides{
  width: 100%;
  height: 50vh;
  overflow: hidden;
  position: relative;
}

@media print, screen and (max-width: 991px) {
  .section-slide .slides{
    width: 100%;
    height: 70vh;
    border: none;
  }
}

.section-slide .slides .slide {
  position: absolute;
  height: 100%;
  inset: 0;
}

.section-slide .slides img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.section-slide .slide-img-pc{
  display: block;
}


@media print, screen and (max-width: 768px) {
  .section-slide .slide-img-pc{
    display: none;
  }
}

.section-slide .slide-img-sp{
  display: none;
}


@media print, screen and (max-width: 768px) {
  .section-slide .slide-img-sp{
    display: block;
  }
}

.section-slide .product-info{
  position: relative;
  padding-top: 4.52rem;
  padding-bottom: 20rem;
}
@media print, screen and (max-width: 768px) {
  .section-slide .product-info{
    position: relative;
    padding-top: 4.52rem;
    padding-bottom: 16rem;
  }
}

.section-slide .product-info .wrapper{
  position: relative;
  max-width: 117rem !important;
  padding-left: 3.5rem !important;
  padding-right: 3.5rem !important;
}

@media only screen and (max-width: 768px) {
  .section-design-info .product-info .wrapper {
    position: relative;
    padding-left: 4.5rem !important;
    padding-right: 4.5rem !important;
  }
}

.section-slide .product-info .text{
  position: relative;
  
}

.section-slide .product-info .text h2{
  position: relative;
  font-size: 1.6rem;
}

.section-slide .product-info .text h3{
  font-size: 2.4rem;
  padding-top: 2.2rem;
  letter-spacing: 0.1rem;
}

.section-slide .product-info .text h4{
  font-size: 1.2rem;
  padding-top: 2.7rem;
  line-height: 2.1;
  letter-spacing: 0.2rem;
}

.section-slide .product-info .values{
  position: relative;
  margin-top: 4.64rem;
}

.section-slide .product-info .values p{
  width: 36.2rem;
  padding: 2.35rem 5rem 2.35rem 0 ;
  line-height: 2.1;
  letter-spacing: 0.2rem;
  font-size: 1.1rem;
  border-top: 1px solid #000000;
  border-bottom: 1px solid #000000;
}


@media print, screen and (max-width: 991px) {
  .section-slide .product-info .values p{
    width: auto;
    padding: 2.35rem 1rem 2.35rem 0;
  }
}


.section-operation {
  position: relative;
  padding: 8.0rem 0;
  background: #F7F7F7;
}

@media print, screen and (max-width: 991px) {
  .section-operation {
    padding: 7.0rem 0 7.0rem;
  }
}

@media only screen and (max-width: 768px) {
  .section-operation {
    padding: 6.0rem 0 6.0rem;
  }
}

.section-operation .operation-box {
  position: relative;
  max-width: 86.8rem;
  width: 100%;
  background: #FFFFFF;
  padding: 6.0rem 5.0rem;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  margin-left: auto;
  margin-right: auto;
}

@media print, screen and (max-width: 991px) {
  .section-operation .operation-box {
    max-width: 40.0rem;
    padding: 4.0rem;
    margin-left: auto;
    margin-right: auto;
  }
}

@media only screen and (max-width: 768px) {
  .section-operation .operation-box {
    padding: 4.0rem 3.0rem;
  }
}

.section-operation .operation-box .box-title {
  position: relative;
  font-size: 2.0rem;
  letter-spacing: 0.1em;
  line-height: 3.2rem;
  text-align: center;
  margin-bottom: 3.0rem;
}

.section-operation .operation-box .operations {
  position: relative;
  list-style: none;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  padding: 0;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 6.0rem;
}

@media print, screen and (max-width: 991px) {
  .section-operation .operation-box .operations {
    margin-bottom: 4.5rem;
  }
}

.section-operation .operation-box .operations .item {
  position: relative;
}

.section-operation .operation-box .operations .item:not(:last-child) {
  margin-bottom: 4.5rem;
}

.section-operation .operation-box .operations .item .label {
  position: relative;
  font-size: 1.4rem;
  line-height: 2.4rem;
  letter-spacing: 0.1em;
  margin-bottom: 1.2rem;
}

.section-operation .operation-box .operations .item .text {
  position: relative;
  font-size: 1.4rem;
  line-height: 2.4rem;
  letter-spacing: 0.1em;
  padding-left: 1.6rem;
}

.section-operation .operation-box .price-item {
  position: relative;
}

.section-operation .operation-box .price-item .price {
  position: relative;
  font-size: 1.4rem;
  line-height: 2.4rem;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 1.2rem;
}

.section-operation .operation-box .price-item .text {
  position: relative;
  font-size: 1.2rem;
  line-height: 2.0rem;
  letter-spacing: 0.1em;
  text-align: center;
}

.section-operation .operation-box .box-help {
  position: relative;
  list-style-type: "※";
  font-size: 1.2rem;
  line-height: 2.0rem;
  letter-spacing: 0.1em;
  padding-left: 1.4rem;
  margin-top: 6.0rem;
}

@media only screen and (max-width: 768px) {
  .section-operation .operation-box .box-help {
    margin-top: 4.5rem;
  }
}

.section-term {
  position: relative;
  padding: 8.0rem 0 2.0rem;
}

@media print, screen and (max-width: 991px) {
  .section-term {
    padding: 6.0rem 0 4.0rem;
  }
}

@media print, screen and (max-width: 991px) {
  .section-term {
    padding: 5.0rem 0 3.0rem;
  }
}

.section-term .term-list {
  position: relative;
  list-style: none;
  width: 100%;
  padding: 0;
}

.section-term .term-list .term-item {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  min-width: 45.0rem;
  padding: 0;
  margin-left: auto;
  margin-right: auto;
}

@media only screen and (max-width: 768px) {
  .section-term .term-list .term-item {
    min-width: auto;
    max-width: 40.0rem;
  }
}

.section-term .term-list .term-item:not(:last-child) {
  margin-bottom: 8.0rem;
}

@media only screen and (max-width: 768px) {
  .section-term .term-list .term-item:not(:last-child) {
    margin-bottom: 6.0rem;
  }
}

.section-term .term-list .term-item .title {
  position: relative;
  font-size: 2.8rem;
  letter-spacing: 0.1em;
  line-height: 4.2rem;
  text-align: center;
  margin-bottom: 5.0rem;
}

@media print, screen and (max-width: 991px) {
  .section-term .term-list .term-item .title {
    font-size: 2.0rem;
    line-height: 3.2rem;
    margin-bottom: 3.0rem;
  }
}

@media print, screen and (max-width: 991px) {
  .section-term .term-list .term-item .title {
    margin-bottom: 2.4rem;
  }
}

.section-term .term-list .term-item ul.text {
  position: relative;
  list-style-type: "・";
  padding-left: 1.4rem;
  font-size: 1.2rem;
  line-height: 2.0rem;
  letter-spacing: 0.1em;
}

.section-term .term-list .term-item .help {
  font-size: 1.2rem;
  line-height: 2.0rem;
  letter-spacing: 0.1em;
  padding-left: 1.4rem;
}

.section-contact {
  position: relative;
  padding: 8.0rem 0 0.0rem;
}

@media print, screen and (max-width: 991px) {
  .section-contact {
    padding: 6.0rem 0 0.0rem;
  }
}

@media only screen and (max-width: 768px) {
  .section-contact {
    padding: 5.0rem 0 0.0rem;
  }
}

.section-contact .contact-index {
  position: relative;
}

.section-contact .contact-index .help {
  position: relative;
  font-size: 1.2rem;
  line-height: 2.0rem;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 6.0rem;
}

@media only screen and (max-width: 768px) {
  .section-contact .contact-index .help {
    margin-bottom: 5.0rem;
  }
}

.section-contact .contact-index .lead {
  position: relative;
  font-size: 1.8rem;
  line-height: 3.0rem;
  letter-spacing: 0.1em;
  text-align: center;
}

@media only screen and (max-width: 768px) {
  .section-contact .contact-index .lead {
    font-size: 1.4rem;
    line-height: 2.4rem;
  }
}

.section-contact .contact-index .lead a {
  color: inherit;
  text-decoration: underline;
}



#footer {
  position: relative;
  padding: 6.0rem 0 17.0rem;
  margin: 0;
}

@media only screen and (max-width: 768px) {
  #footer {
    padding: 5.0rem 0 15.0rem;
  }
}

#footer .footer-nav {
  position: relative;
  margin-bottom: 6.0rem;
}

@media only screen and (max-width: 768px) {
  #footer .footer-nav {
    margin-bottom: 5.0rem;
  }
}

#footer .footer-nav .nav-menu {
  position: relative;
  display: block;
  list-style: none;
  text-align: center;
  padding: 0;
}

#footer .footer-nav .nav-menu > li {
  position: relative;
}

#footer .footer-nav .nav-menu > li:not(:last-child) {
  margin-bottom: 1.2rem;
}

@media only screen and (max-width: 768px) {
  #footer .footer-nav .nav-menu > li:not(:last-child) {
    margin-bottom: 1.0rem;
  }
}

#footer .footer-nav .nav-menu > li > a {
  position: relative;
  font-family: "Hiragino Mincho ProN", serif;
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 2.0rem;
  text-decoration: underline;
  outline: none;
  color: #000000;
}

#footer .footer-text {
  position: relative;
  font-size: 1.2rem;
  line-height: 2.4rem;
  text-align: center;
}

#footer .copyright {
  margin-top: 3.0rem;
  font-size: 1.2rem;
  line-height: 2.0rem;
  text-align: center;
}

.back_to_top {
  position: fixed;
  bottom: 30px;
  right: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 50px;
  text-decoration: none;
  outline: none;
  cursor: pointer;
  z-index: 996;
}

@media only screen and (max-width: 768px) {
  .back_to_top {
    width: 45px;
    right: 16px;
    bottom: 16px;
  }
}

.back_to_top img {
  width: 100%;
}

@media print, screen and (min-width: 769px) {
  .back_to_top img {
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }
}

@media print, screen and (min-width: 769px) {
  .back_to_top:hover {
    text-decoration: none;
  }
  .back_to_top:hover img {
    filter: drop-shadow(0 0 12px #fff);
    -webkit-filter: drop-shadow(0 0 12px #fff);
  }
}

/*# sourceMappingURL=style.css.map */
