@charset "UTF-8";
@import url(https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200;400;600&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600&display=swap);
html, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
  font-size: 100%;
}

img {
  border: none;
}

ol, ul {
  list-style: none;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

figure {
  margin: 0;
}

cite {
  font-style: normal;
}

hr {
  border: none;
  width: 0;
}

img {
  max-width: 100%;
  height: auto;
}

@font-face {
  font-family: "icomoon";
  src: url("../fonts/icomoon/icomoon.eot?uorq9j");
  src: url("../fonts/icomoon/icomoon.eot?uorq9j#iefix") format("embedded-opentype"), url("../fonts/icomoon/icomoon.ttf?uorq9j") format("truetype"), url("../fonts/icomoon/icomoon.woff?uorq9j") format("woff"), url("../fonts/icomoon/icomoon.svg?uorq9j#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
[class^=icon-], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icomoon" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-circle:before {
  content: "\e900";
}

.icon-facebook:before {
  content: "\ea90";
}

.icon-instagram:before {
  content: "\ea92";
}

.icon-twitter:before {
  content: "\ea96";
}

.base-color {
  color: #3d3d3d;
}

.main-color {
  color: #6d2e90;
}

.accent-color {
  color: #a17dbc;
}

body {
  position: relative;
  font-family: "Noto Serif JP", serif;
  font-size: 1vw;
  font-weight: 200;
  line-height: 1.4;
  color: #3d3d3d;
  width: 100%;
}
@media only screen and (max-width:767px) {
  body {
    font-size: 2.5vw;
    font-weight: 400;
  }
}

a {
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
a:link {
  color: #3d3d3d;
  text-decoration: none;
}
a:hover {
  color: #a17dbc;
  text-decoration: none;
}
a:visited {
  color: #3d3d3d;
  text-decoration: none;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* Chromeの青枠対策 */
*:focus {
  outline: none;
}

/* Chromeの画像ボケ対策 */
img {
  image-rendering: -webkit-optimize-contrast;
}

/* Safariの角丸対策 */
input, select, textarea {
  -webkit-appearance: none;
  border-radius: 0;
}

/* M+フォントを使用した場合、brタグが視覚化されてしまうバグの対策 */
br {
  color: rgba(0, 0, 0, 0);
}

.br--pc {
  display: inline;
}
@media only screen and (max-width:767px) {
  .br--pc {
    display: none;
  }
}

.br--sp {
  display: inline;
}
@media only screen and (min-width:1280px) {
  .br--sp {
    display: none;
  }
}
@media only screen and (min-width:768px) and (max-width:1280px) {
  .br--sp {
    display: none;
  }
}

#stalker {
  pointer-events: none;
  position: fixed;
  top: -10px;
  left: -10px;
  width: 20px;
  height: 20px;
  background: rgba(109, 46, 144, 0.25);
  border-radius: 50%;
  transition: transform 0.2s, top, 0.5s, left 0.5s, width 0.5s, height 0.5s, background-color 0.5s;
  transition-timing-function: ease-out;
  z-index: 9999;
}
@media only screen and (min-width:768px) and (max-width:1280px) {
  #stalker {
    display: none;
  }
}
@media only screen and (max-width:767px) {
  #stalker {
    display: none;
  }
}
#stalker.hov_ {
  top: -18px;
  left: -18px;
  width: 36px;
  height: 36px;
  transition: 0.5s;
  background: rgba(161, 125, 188, 0.5);
}

#loading {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(#341943, #6d2e90);
  z-index: 9999;
  -webkit-transition: all 0.35s ease-in 0s;
  -moz-transition: all 0.35s ease-in 0s;
  -ms-transition: all 0.35s ease-in 0s;
  -o-transition: all 0.35s ease-in 0s;
  transition: all 0.35s ease-in 0s;
}

#loading.loaded {
  margin-top: -100vh;
  visibility: hidden;
}

.loading__logo {
  width: 150px;
  height: 150px;
  mask-image: url("../img/common/logo_hanashyo_shiro.svg");
  mask-repeat: no-repeat;
  mask-position: 50% 50%;
  mask-size: 150px;
  -webkit-mask-image: url("../img/common/logo_hanashyo_mask.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 50% 50%;
  -webkit-mask-size: 150px;
  background: linear-gradient(90deg, #a17dbc, #6d2e90 50%, #a17dbc);
  animation: sk-wipeout 1s infinite linear;
}
@media only screen and (max-width:767px) {
  .loading__logo {
    margin-bottom: 100px;
    mask-position: 50% 50%;
    -webkit-mask-position: 50% 50%;
  }
}

@keyframes sk-wipeout {
  0% {
    background-position-x: 0px;
  }
  100% {
    background-position-x: 150px;
  }
}
#header {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 100vw;
  margin: 0;
  z-index: 1000;
  background: linear-gradient(rgba(52, 25, 67, 0.95), rgba(109, 46, 144, 0.85));
  opacity: 0;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
#header .header__container {
  display: flex;
  position: relative;
  width: 100vw;
  margin: 35vh auto 0;
  justify-content: center;
}
@media only screen and (max-width:767px) {
  #header .header__container {
    display: block;
    width: 100vw;
    height: 100%;
    margin: 0 auto;
    overflow-y: scroll;
  }
}

#header.open {
  opacity: 1;
  left: 0;
}
#header.open .header__container {
  position: absolute;
}

.header__logo {
  position: absolute;
  width: 20vh;
  margin: -30vh 0 0 0;
  font-size: 1vh;
  line-height: 1.6;
  text-align: center;
  color: #ffffff;
  mix-blend-mode: normal;
}
@media only screen and (max-width:767px) {
  .header__logo {
    display: block;
    position: relative;
    width: 40vw;
    margin: 10vw auto 5vw;
    font-size: 2.5vw;
  }
}
.header__logo img {
  width: 100%;
  padding: 0.5vw 0;
}

.header__column {
  display: inline-block;
  vertical-align: top;
  width: 15%;
  margin-right: 2.5%;
  z-index: 1;
  font-size: 0.85vw;
}
@media only screen and (max-width:767px) {
  .header__column {
    display: block;
    width: 70vw;
    margin: 0 15vw 0 15vw;
    font-size: 3.5vw;
  }
}
.header__column div {
  border-bottom: 1px solid #a17dbc;
  margin: 0 0 1vh 0;
  padding: 0.5vw 0;
}
@media only screen and (max-width:767px) {
  .header__column div {
    padding: 5vw 0 0.5vw;
  }
}
.header__column .inner_link {
  margin-bottom: 1.5vw;
  font-size: 0.75vw;
}
@media only screen and (max-width:767px) {
  .header__column .inner_link {
    font-size: 3vw;
  }
}
.header__column .inner_link li {
  margin-bottom: 0.5vw;
}
.header__column span {
  display: block;
  font-family: "Cinzel", serif;
  font-size: 0.5vw;
  color: #a17dbc;
}
@media only screen and (max-width:767px) {
  .header__column span {
    font-size: 2.5vw;
  }
}
.header__column a {
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
.header__column a:link {
  color: #ffffff;
  text-decoration: none;
}
.header__column a:hover {
  color: #a17dbc !important;
  text-decoration: none;
}
.header__column a:visited {
  color: #ffffff;
  text-decoration: none;
}
.header__column .other__link {
  font-size: 0.75vw;
  line-height: 2.4;
}
@media only screen and (max-width:767px) {
  .header__column .other__link {
    font-size: 3vw;
    line-height: 1.8;
  }
}

@media only screen and (max-width:767px) {
  .header__column:last-child {
    padding: 5vh 0 20vh;
  }
}

#nav-toggle {
  display: block;
  position: fixed;
  line-height: 0;
  color: #ffffff;
  cursor: pointer;
  width: 6.5vw;
  max-width: 115px;
  top: 1.5vw;
  right: 0;
  padding: 0.5vh 1.5vw;
  z-index: 1001;
  -webkit-transition: all 1s ease-in-out 0s;
  -moz-transition: all 1s ease-in-out 0s;
  -ms-transition: all 1s ease-in-out 0s;
  -o-transition: all 1s ease-in-out 0s;
  transition: all 1s ease-in-out 0s;
}
@media only screen and (max-width:767px) {
  #nav-toggle {
    width: 15vw;
    top: 1vw;
    padding: 1vh 3vw;
  }
}
#nav-toggle .nav-toggle__line {
  display: block;
  position: relative;
  height: 1px;
  width: 100%;
  background: #ffffff;
  -webkit-transition: all 0.25s ease 0s;
  -moz-transition: all 0.25s ease 0s;
  -ms-transition: all 0.25s ease 0s;
  -o-transition: all 0.25s ease 0s;
  transition: all 0.25s ease 0s;
}
#nav-toggle .nav-toggle__line:nth-child(2) {
  margin: 1vw 0;
}
@media only screen and (max-width:767px) {
  #nav-toggle .nav-toggle__line:nth-child(2) {
    margin: 2vw 0;
  }
}
#nav-toggle {
  /* OPEN時の動き */
}
#nav-toggle .nav-toggle__line.open:nth-child(1) {
  top: 1vw;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
@media only screen and (max-width:767px) {
  #nav-toggle .nav-toggle__line.open:nth-child(1) {
    top: 2vw;
  }
}
#nav-toggle .nav-toggle__line.open:nth-child(2) {
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 0;
}
#nav-toggle .nav-toggle__line.open:nth-child(3) {
  top: -1vw;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
@media only screen and (max-width:767px) {
  #nav-toggle .nav-toggle__line.open:nth-child(3) {
    top: -2vw;
  }
}
#nav-toggle .nav-toggle__name {
  position: relative;
  display: block;
  font-family: "Cinzel", serif;
  font-size: 0.75vw;
  top: 20px;
  width: 100%;
  text-align: center;
}
@media only screen and (max-width:767px) {
  #nav-toggle .nav-toggle__name {
    top: 15px;
    font-size: 2.5vw;
  }
}

#title-header {
  position: fixed;
  width: 100vw;
  height: 6.5vw;
  top: -6.5vw;
  left: 0;
  margin: 0;
  z-index: 999;
  opacity: 0;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
@media only screen and (max-width:767px) {
  #title-header {
    height: 15vw;
  }
}
#title-header .title-header__container {
  position: relative;
  width: 100vw;
  height: 6.5vw;
  margin: 0;
  background-color: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid #6d2e90;
  z-index: 1000;
}
@media only screen and (max-width:767px) {
  #title-header .title-header__container {
    height: 15vw;
    border-bottom: 0.5px solid #6d2e90;
  }
}
#title-header .title-header__breadcrumb {
  position: relative;
  width: 100vw;
  height: 3vw;
  margin-top: -1px;
  padding: 0.75vw;
  background-color: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid #6d2e90;
  font-size: 1vw;
  white-space: nowrap;
  overflow-x: none;
  overflow-y: auto;
}
@media only screen and (max-width:767px) {
  #title-header .title-header__breadcrumb {
    height: 8vw;
    font-size: 2.5vw;
    padding: 2vw;
    border-bottom: 0.75px solid #6d2e90;
  }
}
#title-header .title-header__breadcrumb a {
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
#title-header .title-header__breadcrumb a:link {
  color: #6d2e90;
  text-decoration: none;
}
#title-header .title-header__breadcrumb a:hover {
  color: #a17dbc;
  text-decoration: none;
}
#title-header .title-header__breadcrumb a:visited {
  color: #6d2e90;
  text-decoration: none;
}

#title-header.disp {
  top: 0;
  opacity: 1;
}

.title-header__logo {
  position: absolute;
  top: 0;
  left: 0;
  width: 4vw;
  margin: 1vw 0 0 1vw;
  height: auto;
}
@media only screen and (max-width:767px) {
  .title-header__logo {
    width: 10vw;
    margin: 2vw 0 0 2vw;
  }
}

.title-header__title {
  width: 100%;
  padding-top: 1.5vw;
  font-size: 1.5vw;
  text-align: center;
}
@media only screen and (max-width:767px) {
  .title-header__title {
    padding-top: 4.5vw;
    font-size: 2.5vw;
    font-weight: 600;
  }
}
.title-header__title span {
  display: block;
  font-family: "Cinzel", serif;
  font-size: 1vw;
  color: #6d2e90;
}
@media only screen and (max-width:767px) {
  .title-header__title span {
    font-size: 2.5vw;
    font-weight: 400;
  }
}

.title-header__menu {
  position: absolute;
  width: 6.5vw;
  max-width: 125px;
  height: 100%;
  top: 0;
  right: 0;
  background: linear-gradient(#341943, #6d2e90);
  opacity: 0.95;
  mix-blend-mode: multiply;
  z-index: 1000;
}
@media only screen and (max-width:767px) {
  .title-header__menu {
    width: 15vw;
  }
}

#keyvisual {
  width: 100vw;
  height: 62.5vw;
  max-height: 100vh;
  margin: 0;
}
@media only screen and (max-width:767px) {
  #keyvisual {
    height: 85vh;
  }
}
#keyvisual .keyvisual__container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.keyvisual__logo {
  position: absolute;
  width: 12.5vw;
  height: auto;
  margin: 0 5vw 0 0;
  top: 32.5%;
  left: 5%;
  font-size: 0.85vw;
  line-height: 1.6;
  text-align: center;
  color: #6d2e90;
}
@media only screen and (max-width:767px) {
  .keyvisual__logo {
    width: 32.5vw;
    top: 35%;
    font-size: 10px;
    line-height: 1.4;
  }
}
.keyvisual__logo img {
  width: 100%;
  padding: 0.5vw 0;
}
.keyvisual__logo a {
  color: #6d2e90;
}
.keyvisual__logo a:hover {
  text-decoration: underline;
}

.keyvisual__news {
  position: absolute;
  background-color: #ffffff;
  opacity: 0.85;
  left: 5vw;
  top: 70%;
  width: 40%;
  height: 15%;
  border-radius: 10px;
  padding: 15px 5px 15px 15px;
}
@media only screen and (max-width:767px) {
  .keyvisual__news {
    width: 75vw;
    top: 72.5%;
  }
}
.keyvisual__news .keyvisual__news__list {
  font-size: 1vw;
  line-height: 1.8;
  color: #6d2e90;
  height: 100%;
  overflow-x: none;
  overflow-y: scroll;
}
@media only screen and (max-width:767px) {
  .keyvisual__news .keyvisual__news__list {
    font-size: 2.5vw;
    font-weight: 600;
  }
}
.keyvisual__news .keyvisual__news__list a {
  color: #6d2e90;
}

.keyvisual__banner {
  position: absolute;
  left: 5vw;
  top: 70%;
  width: 30%;
  height: auto;
  border-radius: 10px;
  padding: 15px 5px 15px 15px;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
.keyvisual__banner:hover {
  filter: saturate(175%);
}
.keyvisual__banner img {
  border-radius: 10px;
}
@media only screen and (max-width:767px) {
  .keyvisual__banner {
    width: 75vw;
    top: 72.5%;
  }
}

.keyvisual__slider {
  position: relative;
}
.keyvisual__slider li {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  opacity: 0;
  -webkit-transition: all 2s ease 0s;
  -moz-transition: all 2s ease 0s;
  -ms-transition: all 2s ease 0s;
  -o-transition: all 2s ease 0s;
  transition: all 2s ease 0s;
}
.keyvisual__slider li.disp {
  opacity: 1;
  transform: scale(1.025, 1.025);
}

.keyvisual__pagination {
  position: absolute;
  left: 5vw;
  bottom: 5%;
  display: flex;
}
.keyvisual__pagination li {
  margin: 0 5px;
  color: #aaaaaa;
  cursor: pointer;
}
.keyvisual__pagination li.disp {
  color: #6d2e90;
}

.keyvisual__side-bar {
  position: absolute;
  width: 6.5vw;
  max-width: 115px;
  height: 100%;
  max-height: 100vh;
  top: 0;
  right: 0;
  background: linear-gradient(#341943, #6d2e90);
  opacity: 0.95;
  mix-blend-mode: multiply;
  -webkit-transition: all 2s ease 0s;
  -moz-transition: all 2s ease 0s;
  -ms-transition: all 2s ease 0s;
  -o-transition: all 2s ease 0s;
  transition: all 2s ease 0s;
}
@media only screen and (max-width:767px) {
  .keyvisual__side-bar {
    width: 15vw;
  }
}

.keyvisual__side-bar.none {
  opacity: 0;
}

.scroll-notice {
  position: absolute;
  width: 6.5vw;
  max-width: 115px;
  height: 15vh;
  font-family: "Cinzel", serif;
  font-size: 0.75vw;
  right: 0;
  bottom: 0;
  color: #ffffff;
  text-align: center;
}
@media only screen and (max-width:767px) {
  .scroll-notice {
    width: 15vw;
    font-size: 10px;
  }
}
.scroll-notice .scroll-notice__line {
  display: block;
  height: 0;
  width: 1px;
  margin: 1vh auto 0;
  background: #ffffff;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
.scroll-notice .scroll-notice__line.extend {
  height: 14vh;
}
.scroll-notice .scroll-notice__line.shrink {
  height: 0;
  margin: 15vh auto 0;
}

#news {
  display: block;
  padding: 15px 5px 0;
  width: 100%;
}
#news .news__title {
  width: 75vw;
  margin: 0 auto;
  padding: 1vw 0 0.5vw;
  font-family: "Cinzel", serif;
  font-size: 3.5vw;
  color: #6d2e90;
  text-align: center;
}
@media only screen and (max-width:767px) {
  #news .news__title {
    font-size: 5.5vw;
    font-weight: 400;
  }
}
#news .news__sub-title {
  width: 75vw;
  margin: 0 auto;
  padding: 0 0 1.5vw;
  font-size: 1.5vw;
  color: #3d3d3d;
  text-align: center;
}
@media only screen and (max-width:767px) {
  #news .news__sub-title {
    padding: 0 0 5vw;
    font-size: 3vw;
    font-weight: 600;
  }
}
#news .keyvisual__news__list {
  font-size: 1vw;
  line-height: 1.8;
  color: #6d2e90;
  width: 65vw;
  height: 250px;
  padding: 10px 25px;
  border-radius: 10px;
  margin: 0 auto;
  overflow-x: none;
  overflow-y: scroll;
  background-color: #fafafa;
}
@media only screen and (max-width:767px) {
  #news .keyvisual__news__list {
    padding: 10px;
    border-radius: 5px;
    width: 85vw;
    height: 150px;
    font-size: 2.5vw;
    font-weight: 600;
  }
}
#news .keyvisual__news__list li {
  white-space: nowrap;
  overflow: hidden;
}
#news .keyvisual__news__list a {
  color: #6d2e90;
}

#premium {
  width: 100vw;
  height: auto;
  margin: 0 0 2.5vw 0;
}
#premium .premium__container {
  width: 100%;
  height: auto;
  overflow: hidden;
}

.premium__title {
  width: 75vw;
  margin: 0 auto;
  padding: 12.5vw 0 2vw;
  font-family: "Cinzel", serif;
  font-size: 3.5vw;
  color: #6d2e90;
  text-align: center;
}
@media only screen and (max-width:767px) {
  .premium__title {
    padding: 17.5vw 0 2vw;
    font-size: 5.5vw;
    font-weight: 400;
  }
}

.premium__sub-title {
  width: 75vw;
  margin: 0 auto;
  padding: 0 0 12.5vw;
  font-size: 1.5vw;
  color: #3d3d3d;
  text-align: center;
}
@media only screen and (max-width:767px) {
  .premium__sub-title {
    font-size: 3vw;
    font-weight: 600;
  }
}

.premium__profile--ryuichi {
  position: relative;
  width: 100%;
  background: url(../img/index/bcg_premium-profile_ryuichi_pc.jpg) no-repeat;
  background-position: center top;
  background-size: 100%;
}
@media only screen and (max-width:767px) {
  .premium__profile--ryuichi {
    height: 165vw;
    background: url(../img/index/bcg_premium-profile_ryuichi_sp.jpg) no-repeat;
    background-position: center top;
    background-size: 100%;
  }
}
.premium__profile--ryuichi .profile__portrait {
  width: 35vw;
  height: auto;
  padding-bottom: 5vw;
}
@media only screen and (max-width:767px) {
  .premium__profile--ryuichi .profile__portrait {
    width: 50vw;
  }
}
.premium__profile--ryuichi .profile__main {
  position: absolute;
  top: 53vw;
  left: 40vw;
  width: 60vw;
}
@media only screen and (max-width:767px) {
  .premium__profile--ryuichi .profile__main {
    top: 91vw;
    left: 0;
    width: 100vw;
  }
}

.profile__title {
  font-size: 1vw;
  color: #6d2e90;
}
@media only screen and (max-width:767px) {
  .profile__title {
    font-size: 3.5vw;
    padding-left: 55vw;
  }
}

.profile__name--jp {
  padding: 0.5vw 0;
  font-size: 2vw;
}
@media only screen and (max-width:767px) {
  .profile__name--jp {
    font-size: 4.5vw;
    padding-left: 55vw;
    font-weight: 600;
  }
}

.profile__name--en {
  font-family: "Cinzel", serif;
  font-size: 1vw;
  color: #6d2e90;
}
@media only screen and (max-width:767px) {
  .profile__name--en {
    font-size: 3.5vw;
    padding-left: 55vw;
  }
}

.profile__text {
  padding: 1vw 0 0.5vw;
  font-size: 1vw;
  line-height: 1.6;
}
@media only screen and (max-width:767px) {
  .profile__text {
    width: 100vw;
    padding: 7.5vw 5vw 5vw;
    font-size: 2.75vw;
  }
}

.profile__button {
  border: 1px solid #6d2e90;
  width: 35vw;
  height: auto;
  margin: 2vw 0;
  padding: 1.5vw 0;
  font-size: 1.25vw;
  text-align: center;
  cursor: pointer;
}
@media only screen and (max-width:767px) {
  .profile__button {
    width: 75vw;
    margin: 1vw auto;
    padding: 3.5vw 0;
    font-size: 3vw;
    font-weight: 600;
  }
}
.profile__button {
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
.profile__button:hover {
  background-color: #d0bddf;
}
.profile__button span {
  display: block;
  font-family: "Cinzel", serif;
  font-size: 1.5vw;
  color: #6d2e90;
}
@media only screen and (max-width:767px) {
  .profile__button span {
    font-size: 3.5vw;
    font-weight: 400;
  }
}

.premium__profile--takayuki {
  position: relative;
  width: 100%;
  height: 50vw;
  background: url(../img/index/bcg_premium-profile_takayuki_pc.jpg) no-repeat;
  background-position: center top;
  background-size: 100%;
}
@media only screen and (max-width:767px) {
  .premium__profile--takayuki {
    height: 135vw;
    background: url(../img/index/bcg_premium-profile_takayuki_sp.jpg) no-repeat;
    background-position: center top;
    background-size: 100%;
  }
}
.premium__profile--takayuki .profile__portrait {
  position: absolute;
  right: 0;
  width: 35vw;
  height: auto;
  padding-bottom: 5vw;
}
@media only screen and (max-width:767px) {
  .premium__profile--takayuki .profile__portrait {
    top: 20vw;
    width: 50vw;
  }
}
.premium__profile--takayuki .profile__main {
  position: absolute;
  top: 18.5vw;
  right: 40vw;
  width: 60vw;
  text-align: right;
}
@media only screen and (max-width:767px) {
  .premium__profile--takayuki .profile__main {
    top: 65vw;
    right: 0;
    width: 100vw;
    text-align: left;
  }
}
@media only screen and (max-width:767px) {
  .premium__profile--takayuki .profile__main .profile__title {
    font-size: 3.5vw;
    padding-left: 0;
    padding-right: 55vw;
    text-align: right;
  }
}
@media only screen and (max-width:767px) {
  .premium__profile--takayuki .profile__main .profile__name--jp {
    font-size: 4.5vw;
    padding-left: 0;
    padding-right: 55vw;
    text-align: right;
  }
}
@media only screen and (max-width:767px) {
  .premium__profile--takayuki .profile__main .profile__name--en {
    font-size: 3.5vw;
    padding-left: 0;
    padding-right: 55vw;
    text-align: right;
  }
}
.premium__profile--takayuki .profile__main .profile__button {
  position: absolute;
  right: 0;
}
@media only screen and (max-width:767px) {
  .premium__profile--takayuki .profile__main .profile__button {
    position: relative;
  }
}

.premium__profile--hanagumi {
  position: relative;
  width: 100%;
  height: 45vw;
  background: url(../img/index/bcg_premium-profile_hanagumi_pc.jpg) no-repeat;
  background-position: center top;
  background-size: 100%;
}
@media only screen and (max-width:767px) {
  .premium__profile--hanagumi {
    height: 125vw;
    background: url(../img/index/bcg_premium-profile_hanagumi_sp.jpg) no-repeat;
    background-position: center top;
    background-size: 100%;
  }
}
.premium__profile--hanagumi .profile__portrait {
  position: absolute;
  right: 0;
  width: 35vw;
  height: auto;
  padding-bottom: 5vw;
}
@media only screen and (max-width:767px) {
  .premium__profile--hanagumi .profile__portrait {
    top: 20vw;
    width: 50vw;
  }
}
.premium__profile--hanagumi .profile__main {
  position: absolute;
  top: 18.5vw;
  right: 40vw;
  width: 60vw;
  text-align: right;
}
@media only screen and (max-width:767px) {
  .premium__profile--hanagumi .profile__main {
    top: 65vw;
    right: 0;
    width: 100vw;
    text-align: left;
  }
}
@media only screen and (max-width:767px) {
  .premium__profile--hanagumi .profile__main .profile__title {
    font-size: 3.5vw;
    padding-left: 0;
    padding-right: 55vw;
    text-align: right;
  }
}
@media only screen and (max-width:767px) {
  .premium__profile--hanagumi .profile__main .profile__name--jp {
    font-size: 4.5vw;
    padding-left: 0;
    padding-right: 55vw;
    text-align: right;
  }
}
.premium__profile--hanagumi .profile__main .profile__name--jp span {
  font-size: 1.25vw;
}
@media only screen and (max-width:767px) {
  .premium__profile--hanagumi .profile__main .profile__name--jp span {
    display: block;
    font-size: 2.5vw;
    line-height: 0.5;
    padding-bottom: 10px;
  }
}
@media only screen and (max-width:767px) {
  .premium__profile--hanagumi .profile__main .profile__name--en {
    font-size: 3.5vw;
    padding-left: 0;
    padding-right: 55vw;
    text-align: right;
  }
}
.premium__profile--hanagumi .profile__main .profile__button {
  position: absolute;
  right: 0;
}
@media only screen and (max-width:767px) {
  .premium__profile--hanagumi .profile__main .profile__button {
    position: relative;
  }
}

#kometsunagi {
  width: 100vw;
  height: auto;
  margin: 0;
}
#kometsunagi .kometsunagi__container {
  width: 100%;
  height: auto;
  overflow: hidden;
}

.kometsunagi__title {
  width: 75vw;
  margin: 0 auto;
  padding: 5vw 0 2vw;
  font-family: "Cinzel", serif;
  font-size: 3.5vw;
  color: #6d2e90;
  text-align: center;
}
@media only screen and (max-width:767px) {
  .kometsunagi__title {
    padding: 15vw 0 2vw;
    font-size: 5.5vw;
    font-weight: 400;
  }
}

.kometsunagi__sub-title {
  width: 75vw;
  margin: 0 auto;
  padding: 0 0 2.5vw;
  font-size: 1.5vw;
  color: #3d3d3d;
  text-align: center;
}
@media only screen and (max-width:767px) {
  .kometsunagi__sub-title {
    font-size: 3vw;
    font-weight: 600;
  }
}

.kometsunagi__text {
  width: 75vw;
  margin: 0 auto;
  padding-bottom: 5vw;
  font-size: 1vw;
  line-height: 1.8;
  color: #3d3d3d;
  text-align: center;
}
@media only screen and (max-width:767px) {
  .kometsunagi__text {
    font-size: 2.5vw;
    text-align: left;
  }
}

.kometsunagi__introduction {
  position: relative;
  width: 100%;
  background: url(../img/index/bcg_kometsunagi_pc.jpg) no-repeat;
  background-position: center top;
  background-size: 100%;
}
@media only screen and (max-width:767px) {
  .kometsunagi__introduction {
    background: url(../img/index/bcg_kometsunagi_sp.jpg) no-repeat;
    background-position: center top;
    background-size: 100%;
  }
}

#regular {
  width: 100vw;
  height: auto;
  margin: 0;
}
#regular .regular__container {
  width: 100%;
  height: auto;
  overflow: hidden;
}

.regular__title {
  width: 75vw;
  margin: 0 auto;
  padding: 15.5vw 0 2vw;
  font-family: "Cinzel", serif;
  font-size: 3.5vw;
  color: #6d2e90;
  text-align: center;
}
@media only screen and (max-width:767px) {
  .regular__title {
    padding: 15vw 0 2vw;
    font-size: 5.5vw;
    font-weight: 400;
  }
}

.regular__sub-title {
  width: 75vw;
  margin: 0 auto;
  padding: 0 0 12.5vw;
  font-size: 1.5vw;
  color: #3d3d3d;
  text-align: center;
}
@media only screen and (max-width:767px) {
  .regular__sub-title {
    font-size: 3vw;
    font-weight: 600;
  }
}

.regular__introduction {
  position: relative;
  width: 100%;
  background: url(../img/index/bcg_regular_pc.jpg?) no-repeat;
  background-position: center top;
  background-size: 100%;
}
@media only screen and (max-width:767px) {
  .regular__introduction {
    background: url(../img/index/bcg_regular_sp.jpg?) no-repeat;
    background-position: center top;
    background-size: 100%;
  }
}

.category-list__slider {
  overflow: hidden;
  white-space: nowrap;
  margin-bottom: 5vw;
  margin-left: 22.5vw;
  font-size: 0;
}
@media only screen and (max-width:767px) {
  .category-list__slider {
    margin-left: 0;
    padding: 0 5vw 5vw;
    overflow-x: scroll;
  }
}
.category-list__slider {
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
.category-list__slider li {
  display: inline-block;
  position: relative;
  width: 20vw;
  margin: 0 2.5vw 0 0;
  font-size: 0.9vw;
  text-align: center;
}
@media only screen and (max-width:767px) {
  .category-list__slider li {
    width: 40vw;
    font-size: 2.5vw;
    white-space: normal;
  }
}
.category-list__slider li figure {
  width: 20vw;
}
@media only screen and (max-width:767px) {
  .category-list__slider li figure {
    width: 40vw;
  }
}
.category-list__slider li figure {
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
.category-list__slider li figure:hover {
  filter: saturate(175%);
  transform: scale(1.05);
}
.category-list__slider li .category-info {
  position: absolute;
  top: 20vw;
  left: 0;
  width: 100%;
  padding: 0 2vw;
}
@media only screen and (max-width:767px) {
  .category-list__slider li .category-info {
    top: 37.5vw;
  }
}
.category-list__slider li .category-info .category-info__name--en {
  font-family: "Cinzel", serif;
  font-size: 1.5vw;
  color: #6d2e90;
}
@media only screen and (max-width:767px) {
  .category-list__slider li .category-info .category-info__name--en {
    font-size: 3.5vw;
    font-weight: 400;
  }
}
.category-list__slider li .category-info .category-info__name--jp {
  font-size: 1vw;
}
@media only screen and (max-width:767px) {
  .category-list__slider li .category-info .category-info__name--jp {
    font-size: 2.5vw;
    font-weight: 600;
  }
}
.category-list__slider li .category-info .category-info__text {
  white-space: normal;
  padding-top: 1vw;
  width: 100%;
  height: auto;
  font-size: 1vw;
  line-height: 1.4;
  text-align: left;
}
@media only screen and (max-width:767px) {
  .category-list__slider li .category-info .category-info__text {
    padding-top: 2vw;
    font-size: 2.25vw;
  }
}

.category-list__slider.item2 {
  margin-left: 30vw;
}
@media only screen and (max-width:767px) {
  .category-list__slider.item2 {
    margin-left: 0;
    padding: 0 10vw 5vw;
    overflow-x: auto;
  }
}

.category-list__slider.item1 {
  margin-left: 40vw;
}
@media only screen and (max-width:767px) {
  .category-list__slider.item1 {
    margin-left: 0;
    padding: 0 auto 5vw;
    overflow-x: auto;
  }
}

.category-list__btn, .category-list__btn-right, .category-list__btn-left {
  position: absolute;
  top: 52.5vw;
  width: 5vw;
  opacity: 0.8;
  filter: saturate(75%);
  cursor: pointer;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
@media only screen and (max-width:767px) {
  .category-list__btn, .category-list__btn-right, .category-list__btn-left {
    display: none;
  }
}
.category-list__btn:hover, .category-list__btn-right:hover, .category-list__btn-left:hover {
  filter: saturate(200%);
}

.category-list__btn-left {
  left: 6.5vw;
}

.category-list__btn-left.invalid {
  opacity: 0.25 !important;
}

.category-list__btn-right {
  right: 6.5vw;
}

.category-list__btn-right.invalid {
  opacity: 0.25 !important;
}

.banner, .banner--half {
  width: 100vw;
  height: auto;
  margin: 0;
  margin: 5vw 0 15vw;
}
.banner .banner__container, .banner--half .banner__container {
  display: flex;
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}
@media only screen and (max-width:767px) {
  .banner .banner__container, .banner--half .banner__container {
    display: block;
  }
}

.banner--half {
  width: 50vw;
  margin: 5vw auto 15vw;
}
@media only screen and (max-width:767px) {
  .banner--half {
    width: 100vw;
    margin: 5vw 0 15vw;
  }
}

.banner__contents {
  overflow: hidden;
  margin-bottom: -10px;
}
.banner__contents img {
  width: 100%;
  height: auto;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
.banner__contents img:hover {
  z-index: -1;
  filter: saturate(150%);
  transform: scale(1.05);
}

#project {
  width: 100vw;
  height: auto;
  margin: 0;
  background-color: #f7f7f7;
}
#project .project__container {
  position: relative;
  width: 100%;
  height: 40%;
  overflow: hidden;
}
@media only screen and (max-width:767px) {
  #project .project__container {
    height: 30%;
  }
}

.project__title {
  position: absolute;
  top: 5vw;
  left: 5vw;
  font-family: "Cinzel", serif;
  font-size: 3.5vw;
  color: #6d2e90;
}
@media only screen and (max-width:767px) {
  .project__title {
    width: 100%;
    top: 10vw;
    left: 0;
    font-size: 5.5vw;
    text-align: center;
    font-weight: 400;
  }
}

.project__sub-title {
  position: absolute;
  top: 7.5vw;
  right: 5vw;
  font-size: 1vw;
  text-align: right;
}
@media only screen and (max-width:767px) {
  .project__sub-title {
    top: 17.5vw;
    right: 0;
    width: 100%;
    font-size: 3vw;
    font-weight: 600;
    text-align: center;
  }
}

.project__introduction {
  position: relative;
  width: 100%;
}

.project-list__slider {
  overflow: hidden;
  white-space: nowrap;
  padding-top: 15vw;
  margin-bottom: 5vw;
  margin-left: 22.5vw;
  font-size: 0;
}
@media only screen and (max-width:767px) {
  .project-list__slider {
    margin-left: 0;
    padding: 30vw 5vw 5vw;
    overflow-x: scroll;
  }
}
.project-list__slider {
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
.project-list__slider li {
  display: inline-block;
  position: relative;
  white-space: normal;
  width: 20vw;
  margin: 0 2.5vw 0 0;
  font-size: 0.9vw;
  vertical-align: top;
}
@media only screen and (max-width:767px) {
  .project-list__slider li {
    width: 40vw;
    font-size: 2.5vw;
    white-space: normal;
  }
}
.project-list__slider li figure {
  position: relative;
  width: 20vw;
  height: 11vw;
  overflow: hidden;
}
@media only screen and (max-width:767px) {
  .project-list__slider li figure {
    width: 40vw;
    height: 22vw;
  }
}
.project-list__slider li figure {
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
.project-list__slider li figure:hover {
  filter: saturate(175%);
  transform: scale(1.05);
}
.project-list__slider li figure img {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
.project-list__slider li .project-article {
  width: 100%;
  padding: 2vw 0;
}
.project-list__slider li .project-article .project-article__category {
  font-size: 1vw;
  font-weight: 600;
}
@media only screen and (max-width:767px) {
  .project-list__slider li .project-article .project-article__category {
    font-size: 2.5vw;
  }
}
.project-list__slider li .project-article .project-article__date {
  display: block;
  font-family: "Cinzel", serif;
  color: #6d2e90;
  font-size: 0.8vw;
}
@media only screen and (max-width:767px) {
  .project-list__slider li .project-article .project-article__date {
    font-size: 2vw;
  }
}
.project-list__slider li .project-article .project-article__title {
  white-space: normal;
  padding-top: 0.5vw;
  width: 100%;
  height: auto;
  font-size: 1vw;
  line-height: 1.4;
  text-align: left;
}
@media only screen and (max-width:767px) {
  .project-list__slider li .project-article .project-article__title {
    font-size: 2.5vw;
  }
}

.project-list__slider.item2 {
  margin-left: 30vw;
}
@media only screen and (max-width:767px) {
  .project-list__slider.item2 {
    margin-left: 0;
    padding: 0 10vw 5vw;
    overflow-x: auto;
  }
}

.project-list__slider.item1 {
  margin-left: 40vw;
}
@media only screen and (max-width:767px) {
  .project-list__slider.item1 {
    margin-left: 0;
    padding: 0 auto 5vw;
    overflow-x: auto;
  }
}

.project-list__btn, .project-list__btn-right, .project-list__btn-left {
  position: absolute;
  top: 18vw;
  width: 5vw;
  opacity: 0.8;
  filter: saturate(75%);
  cursor: pointer;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
@media only screen and (max-width:767px) {
  .project-list__btn, .project-list__btn-right, .project-list__btn-left {
    display: none;
  }
}
.project-list__btn:hover, .project-list__btn-right:hover, .project-list__btn-left:hover {
  filter: saturate(200%);
}

.project-list__btn-left {
  left: 6.5vw;
}

.project-list__btn-left.invalid {
  opacity: 0.25 !important;
}

.project-list__btn-right {
  right: 6.5vw;
}

.project-list__btn-right.invalid {
  opacity: 0.25 !important;
}

.items-list {
  width: 100vw;
  height: auto;
  margin: 0;
}

.items-list__container, .items-list__container--button {
  width: 100%;
  height: auto;
  overflow: hidden;
}

.items-list__container--button {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width:767px) {
  .items-list__container--button {
    display: block;
  }
}

.items-list__title {
  width: 75vw;
  margin: 0 auto;
  padding: 5vw 0 1vw;
  font-family: "Cinzel", serif;
  font-size: 1vw;
  color: #6d2e90;
  text-align: center;
}
@media only screen and (max-width:767px) {
  .items-list__title {
    font-size: 2.5vw;
  }
}

.items-list__sub-title {
  width: 75vw;
  margin: 0 auto;
  padding: 0 0 2.5vw;
  font-size: 2vw;
  color: #3d3d3d;
  text-align: center;
}
@media only screen and (max-width:767px) {
  .items-list__sub-title {
    font-size: 3.5vw;
  }
}

.items-list__info {
  width: 75vw;
  margin: 0 auto;
  padding: 0 0 2.5vw;
  font-size: 1vw;
  color: #3d3d3d;
  text-align: center;
}
@media only screen and (max-width:767px) {
  .items-list__info {
    font-size: 2.5vw;
    text-align: left;
  }
}

.items-list__button {
  border: 1px solid #6d2e90;
  width: 25vw;
  height: auto;
  margin: 2vw 2.5vw;
  padding: 1vw 0;
  font-family: "Cinzel", serif;
  font-size: 1.5vw;
  text-align: center;
  color: #6d2e90;
  cursor: pointer;
}
@media only screen and (max-width:767px) {
  .items-list__button {
    width: 50vw;
    margin: 5vw auto;
    padding: 2.5vw 0;
    font-size: 3.5vw;
    font-weight: 400;
  }
}
.items-list__button {
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
.items-list__button:hover {
  background-color: #d0bddf;
}

.items-list__onlineshop-banner {
  width: 30vw;
  height: auto;
  margin: 2.5vw auto;
  border: 1px solid #6d2e90;
  cursor: pointer;
}
@media only screen and (max-width:767px) {
  .items-list__onlineshop-banner {
    width: 75vw;
    margin: 1vw 12.5vw;
  }
}
.items-list__onlineshop-banner {
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
.items-list__onlineshop-banner:hover {
  filter: saturate(200%);
}

.items-list__slider {
  overflow: hidden;
  white-space: nowrap;
  margin-bottom: 5vw;
  margin-left: 20vw;
  font-size: 0;
}
@media only screen and (max-width:767px) {
  .items-list__slider {
    margin-left: 0;
    padding: 0 30vw 5vw;
    overflow-x: scroll;
  }
}
.items-list__slider {
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
.items-list__slider li {
  display: inline-block;
  width: 20vw;
  margin: 0;
  white-space: normal;
  font-size: 1vw;
  font-weight: 400;
  text-align: center;
  vertical-align: top;
}
@media only screen and (max-width:767px) {
  .items-list__slider li {
    width: 40vw;
    font-size: 2.5vw;
    white-space: normal;
  }
}
.items-list__slider li figure {
  width: 20vw;
}
@media only screen and (max-width:767px) {
  .items-list__slider li figure {
    width: 40vw;
  }
}
.items-list__slider li figure {
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
.items-list__slider li figure:hover {
  filter: saturate(175%);
  transform: scale(1.05);
}
.items-list__slider li .item-num, .items-list__slider li .item-num--new {
  display: block;
  font-family: "Cinzel", serif;
  font-size: 1vw;
  color: #6d2e90;
}
@media only screen and (max-width:767px) {
  .items-list__slider li .item-num, .items-list__slider li .item-num--new {
    font-size: 2.5vw;
  }
}
.items-list__slider li .item-num--new::after {
  content: "New";
  background-color: #b68e15;
  border-radius: 2px;
  padding: 0 2px;
  font-size: 0.5vw;
  color: #ffffff;
  margin-left: 5px;
  vertical-align: middle;
}
@media only screen and (max-width:767px) {
  .items-list__slider li .item-num--new::after {
    font-size: 1.5vw;
  }
}
.items-list__slider li .item-name,
.items-list__slider li .item-price {
  display: block;
  padding: 0 2vw;
}
.items-list__slider li .item-status {
  display: block;
  font-size: 0.85vw;
  color: #6d2e90;
}
@media only screen and (max-width:767px) {
  .items-list__slider li .item-status {
    font-size: 2vw;
  }
}

.items-list__slider.item2 {
  margin-left: 30vw;
}
@media only screen and (max-width:767px) {
  .items-list__slider.item2 {
    margin-left: 0;
    padding: 0 10vw 5vw;
    overflow-x: auto;
  }
}

.items-list__slider.item1 {
  margin-left: 40vw;
}
@media only screen and (max-width:767px) {
  .items-list__slider.item1 {
    margin-left: 0;
    padding: 0 auto 5vw;
    overflow-x: auto;
  }
}

.items-list__btn, .items-list__btn-right, .items-list__btn-left {
  position: absolute;
  bottom: 35%;
  width: 5vw;
  max-width: 100px;
  opacity: 0.8;
  filter: saturate(75%);
  cursor: pointer;
}
@media only screen and (max-width:767px) {
  .items-list__btn, .items-list__btn-right, .items-list__btn-left {
    display: none;
  }
}
.items-list__btn, .items-list__btn-right, .items-list__btn-left {
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
.items-list__btn:hover, .items-list__btn-right:hover, .items-list__btn-left:hover {
  filter: saturate(200%);
}

.items-list__btn-left {
  left: 6.5vw;
}

.items-list__btn-left.invalid {
  opacity: 0.25 !important;
}

.items-list__btn-right {
  right: 6.5vw;
}

.items-list__btn-right.invalid {
  opacity: 0.25 !important;
}

.items-list__banner {
  display: block;
  width: 50vw;
  margin: 2.5vw auto;
}
@media only screen and (max-width:767px) {
  .items-list__banner {
    width: 90vw;
    margin: 5vw auto;
  }
}

#sitemap {
  position: relative;
  width: 100vw;
  height: 60vw;
  margin: 0;
  background: linear-gradient(#6d2e90, #341943);
}
@media only screen and (max-width:767px) {
  #sitemap {
    height: 60vh;
  }
}
#sitemap .sitemap__container {
  display: flex;
  position: relative;
  width: 75vw;
  margin: 0 auto;
  justify-content: center;
}
@media only screen and (max-width:767px) {
  #sitemap .sitemap__container {
    display: block;
    width: 100vw;
  }
}

.sitemap__column {
  display: inline-block;
  vertical-align: top;
  width: 15%;
  margin-right: 5%;
  z-index: 1;
  font-size: 0.85vw;
}
@media only screen and (max-width:767px) {
  .sitemap__column {
    display: none;
  }
}
.sitemap__column div {
  border-bottom: 1px solid #a17dbc;
  margin: 0 0 1vh 0;
  padding: 0.5vw 0;
}
.sitemap__column .inner_link {
  margin-bottom: 1.5vw;
  font-size: 0.75vw;
}
@media only screen and (max-width:767px) {
  .sitemap__column .inner_link {
    font-size: 3vw;
  }
}
.sitemap__column .inner_link li {
  margin-bottom: 0.5vw;
}
.sitemap__column span {
  display: block;
  font-family: "Cinzel", serif;
  font-size: 0.5vw;
  color: #a17dbc;
}
.sitemap__column a {
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
.sitemap__column a:link {
  color: #ffffff;
  text-decoration: none;
}
.sitemap__column a:hover {
  color: #a17dbc !important;
  text-decoration: none;
}
.sitemap__column a:visited {
  color: #ffffff;
  text-decoration: none;
}

.sitemap__copy {
  margin-top: 10vw;
  font-size: 1vw;
  line-height: 1.8;
  text-align: center;
  color: #ffffff;
}
@media only screen and (max-width:767px) {
  .sitemap__copy {
    margin-top: 0;
    padding-top: 5vh;
    font-size: 3.5vw;
  }
}

.sitemap__logo {
  width: 12.5vw;
  height: auto;
  margin: 5vw auto;
  top: 30%;
  left: 5%;
  font-size: 1vw;
  line-height: 1.6;
  text-align: center;
  color: #ffffff;
  mix-blend-mode: normal;
}
@media only screen and (max-width:767px) {
  .sitemap__logo {
    width: 35vw;
    margin: 2.5vh auto;
    top: 0;
    left: 0;
  }
}
.sitemap__logo img {
  width: 100%;
  padding: 15px 0;
}

.sitemap__address {
  margin-top: 10vw;
  font-size: 0.75vw;
  line-height: 1.8;
  color: #ffffff;
}
@media only screen and (max-width:767px) {
  .sitemap__address {
    width: 70vw;
    margin: 5vw auto 0;
    font-size: 2.5vw;
  }
}
.sitemap__address span {
  display: block;
}

.sns__link {
  position: absolute;
  bottom: 2.5vh;
  right: 2.5vw;
}
@media only screen and (max-width:767px) {
  .sns__link {
    width: 100%;
    text-align: center;
  }
}
.sns__link li {
  display: inline;
  font-size: 0.85vw;
  color: #ffffff;
  vertical-align: middle;
  padding: 5px;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
@media only screen and (max-width:767px) {
  .sns__link li {
    font-size: 3.5vw;
  }
}
.sns__link li:hover {
  color: #a17dbc !important;
  text-decoration: none;
}
.sns__link li::before {
  padding-right: 5px;
}
.sns__link a {
  font-family: "Cinzel", serif;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
.sns__link a:link {
  color: #ffffff;
  text-decoration: none;
}
.sns__link a:hover {
  color: #a17dbc !important;
  text-decoration: none;
}
.sns__link a:visited {
  color: #ffffff;
  text-decoration: none;
}

#footer {
  width: 100vw;
  height: auto;
  margin: 0;
  background-color: #f7f7f7;
}
#footer .footer__container {
  position: relative;
  width: 90vw;
  margin: 0 auto;
  padding-top: 2.5vh;
}
@media only screen and (max-width:767px) {
  #footer .footer__container {
    width: 90vw;
  }
}

.footer__link {
  width: 100%;
  font-size: 0.75vw;
  line-height: 1.8;
  text-align: center;
}
@media only screen and (max-width:767px) {
  .footer__link {
    font-size: 2.5vw;
  }
}
.footer__link li {
  display: inline-block;
  padding: 0 5px;
}
.footer__link:first-child {
  margin-top: 3.5vw;
}
@media only screen and (max-width:767px) {
  .footer__link:first-child {
    margin-top: 10vw;
  }
}

.site-seal {
  position: absolute;
  top: 15px;
  left: 15px;
}
@media only screen and (max-width:767px) {
  .site-seal input {
    width: 15vw;
  }
}

.footer__copyright {
  width: 100%;
  padding: 25px 0;
  font-size: 0.75vw;
  line-height: 1.8;
  text-align: center;
}
@media only screen and (max-width:767px) {
  .footer__copyright {
    font-size: 2.5vw;
  }
}