@charset "UTF-8";
/* CSS Document */
/* ////////////////////////////////////////////
   ////////////////////////////////////////////
 .less基本関数
   ////////////////////////////////////////////
  ////////////////////////////////////////////
*/
/*$includeVal:($innerWidth - 550) / $innerWidth * 100 * 0.5 * 1%;*/
/* ////////////////////////////////////////////
   ////////////////////////////////////////////
   ブレイクポイント設定
   ////////////////////////////////////////////
  ////////////////////////////////////////////
*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap");
@import url("https://fonts.googleapis.com/css?family=Product+Sans");
.breakpoint {
  opacity: 0;
  width: 0px;
  height: 0px;
  position: fixed;
  bottom: 0px;
  left: 0px;
}

/* ////////////////////////////////////////////
   ////////////////////////////////////////////
   スクロールライン設定
   ////////////////////////////////////////////
  ////////////////////////////////////////////
*/
.topLine {
  position: fixed;
  top: 0%;
  right: 0px;
  height: 1px;
  background-color: #000;
  width: 100px;
  opacity: 0;
  z-index: 100;
}

.halfLine {
  position: fixed;
  top: 50%;
  right: 0px;
  height: 1px;
  background-color: #000;
  width: 100px;
  opacity: 0;
  z-index: 100;
}

.endLine {
  position: fixed;
  bottom: 0px;
  right: 0px;
  height: 1px;
  background-color: #000;
  width: 100px;
  opacity: 0;
  z-index: 100;
}

/*IE用にobject-fitのフォロー*/
.object-fit {
  object-fit: cover;
  font-family: "object-fit: cover;"; /*IE対策*/
}

/*ブロック要素の天地中央*/
/*ブロック要素の天地中央のクリア*/
/*ボックスシャドウ*/
/*ブラー*/
/*角丸*/
/*cssアニメーション効果*/
/*cssアニメーション解除*/
/*cssアニメーション効果(ease)*/
/*cssアニメーション効果(fast)*/
/*inline-blockのリスト*/
/*aタグタグ詳細設定関数　
.linkConfig(通常時文字色;ホーバー時文字色;false;true);
*/
/*/////////////////
フォームのパーツ関連
/////////////////*/
/*ドロップダウンメニュー*/
/*ラジオボタン&チェックボックス*/
/*フォーカスした際のミックスイン*/
/*ボタン作成
$color
文字色、矢印色
$arrowRotate
45deg→右向き
135deg→下向き
false→矢印なし
$bgColor
背景色
$borderWidth
*/
/*
$flipSpan:item内にまとめる個数、
$liMargin:li同士のマージン,
$horigen:横一列の個数、
$pointer:ポインターの有無(bool);

*/
/* ////////////////////////////////////////////
   ////////////////////////////////////////////
   オリジナル
   ////////////////////////////////////////////
  ////////////////////////////////////////////
*/
/* //////////////// アニメーション //////////////// */
/* ======================================== */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
/* ======================================== */
@keyframes navFadeIn {
  0% {
    visibility: visible;
    opacity: 0;
  }
  100% {
    visibility: visible;
    opacity: 1;
  }
}
@keyframes navFadeOut {
  0% {
    visibility: visible;
    opacity: 1;
  }
  99% {
    opacity: 0;
  }
  100% {
    visibility: hidden;
  }
}
/* ======================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 30%, 0);
    transform: translate3d(0, 30%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
    visibility: visible;
  }
  to {
    opacity: 0;
    visibility: hidden;
  }
}
@keyframes bgiLoop {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 1033px 0px;
  }
}
@keyframes scroll {
  0% {
    opacity: 0;
  }
  10% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(40px);
    opacity: 0;
  }
}
@keyframes introduction {
  from {
    opacity: 1;
    visibility: visible;
  }
  to {
    opacity: 0;
    visibility: hidden;
  }
}
@keyframes zoomOut {
  from {
    opacity: 0;
    transform: scale(1.2);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes scrollCtr {
  from {
    overflow: hidden;
  }
  to {
    overflow: scroll;
  }
}
@keyframes hideContent {
  from {
    opacity: 0;
    max-height: 0em;
  }
  to {
    opacity: 1;
    max-height: 1000em;
  }
}
@keyframes fluffy1 {
  0% {
    transform: translateY(0);
  }
  5% {
    transform: translateY(0);
  }
  10% {
    transform: translateY(0);
  }
  20% {
    transform: translateY(-10px);
  }
  30% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes rotateIn {
  from {
    opacity: 0;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    transform-origin: bottom left;
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    transform-origin: bottom left;
  }
}
@keyframes rotateOut {
  from {
    opacity: 1;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    transform-origin: bottom left;
  }
  to {
    opacity: 0;
    -webkit-transform: none;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    transform-origin: bottom left;
  }
}
/*アプリ*/
/*PR*/
/* 星回転ループ */
@keyframes rotate_loop {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes stepin {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes logotailshake {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  2% {
    -webkit-transform: rotate(8deg);
    transform: rotate(8deg);
  }
  4% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  6% {
    -webkit-transform: rotate(8deg);
    transform: rotate(8deg);
  }
  8% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: none;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
/* ////////////////////////////////////////////
   ////////////////////////////////////////////
   webフォント関数
   ////////////////////////////////////////////
  ////////////////////////////////////////////
*/
@-webkit-keyframes passing-bar {
  0% {
    left: 0;
    right: auto;
    width: 0;
  }
  50% {
    left: 0;
    right: auto;
    width: 100%;
  }
  51% {
    left: auto;
    right: 0;
    width: 100%;
  }
  100% {
    left: auto;
    right: 0;
    width: 0;
  }
}
@keyframes passing-bar {
  0% {
    left: 0;
    width: 0;
  }
  50% {
    left: 0;
    width: 100%;
  }
  51% {
    left: 0;
    width: 100%;
  }
  100% {
    left: 100%;
    width: 0;
  }
}
@-webkit-keyframes passing-txt {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes passing-txt {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fluidrotate {
  0%, 100% {
    border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
    background: #F8E54E;
  }
  14% {
    border-radius: 40% 60% 54% 46%/49% 60% 40% 51%;
    background: #F83EBF;
  }
  28% {
    border-radius: 54% 46% 38% 62%/49% 70% 30% 51%;
    background: #fdcbc1;
  }
  42% {
    border-radius: 61% 39% 55% 45%/61% 38% 62% 39%;
    background: #ffff8c;
  }
  56% {
    border-radius: 61% 39% 67% 33%/70% 50% 50% 30%;
    background: #b2dffb;
  }
  70% {
    border-radius: 50% 50% 34% 66%/56% 68% 32% 44%;
    background: #C89AF7;
  }
  84% {
    border-radius: 46% 54% 50% 50%/35% 61% 39% 65%;
    background: #85CAF1;
  }
}
/* 円を描くアニメーション */
@keyframes text_anime_on {
  0% {
    opacity: 0;
    -webkit-transform: translate(0px, 20px);
    transform: translate(0px, 20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
  }
}
/* 円を描くアニメーション */
@keyframes draw {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(180deg);
  }
}
/* 塗りのアニメーション */
@keyframes filling {
  0% {
    box-shadow: inset 0 0 0 9px #FF1D5E;
  }
  100% {
    box-shadow: inset 0 0 0 50px #FF1D5E;
  }
}
/* チェックマークのアニメーション */
@keyframes check {
  0% {
    transform: scale(0.5) rotate(30deg);
    opacity: 0;
  }
  90% {
    transform: scale(1.3) rotate(-15deg);
    opacity: 1;
  }
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
}
/* キーヴィジュアルループ */
@keyframes loop {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(50%);
  }
}
/* マスク出現 */
@keyframes openmask {
  0% {
    transform: translate(calc(100vw - 817px), calc(50vh - 2px)) scale(0);
  }
  99% {
    transform: translate(calc(100vw - 817px), calc(50vh - 2px)) scale(20);
  }
  100% {
    display: none;
  }
}
@keyframes bound-anim {
  0%, 100% {
    top: 50%;
    transform: scale(1) translateY(-50%);
  }
  30% {
    top: calc(50% - 40px);
    transform: scale(0.96, 1.04) translateY(-50%);
  }
  60% {
    transform: scale(1) translateY(-50%);
  }
  90% {
    top: 50%;
    transform: scale(1.1, 0.9) translateY(-50%);
  }
}
@keyframes bound-anim2 {
  0%, 100% {
    transform: scale(1) translateY(0);
  }
  30% {
    transform: scale(0.96, 1.04) translateY(-40px);
  }
  60% {
    transform: scale(1) translateY(0);
  }
  90% {
    top: 50%;
    transform: scale(1.1, 0.9) translateY(0);
  }
}
@keyframes shadow-anim {
  0%, 100% {
    transform: scale(1);
    filter: blur(4px);
  }
  30% {
    transform: scale(1.6, 1);
    filter: blur(8px);
  }
}
/* ===================================================================
CSS information
 style info :リセット及びbody初期設定 (このCSSは通常変更しない)
=================================================================== */
/* reset */
html {
  font-size: 62.5%; /* フォントの基準値を10pxに指定*/
}

* {
  line-height: 1;
}

body, div, dl, dt, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td {
  margin: 0;
  padding: 0;
}

address, caption, cite, code, dfn, em, strong, th, var {
  font-style: normal;
}

q:before, q:after {
  content: "";
}

object, embed {
  vertical-align: top;
}

legend {
  display: none;
}

input, button, select, textarea {
  font-size: 1.4rem;
  color: inherit;
  margin: 0;
}
input:focus, button:focus, select:focus, textarea:focus {
  outline: 0;
  border: 2px solid #000;
}

input, button {
  line-height: normal;
  vertical-align: inherit;
  *vertical-align: middle;
}

input::-moz-focus-inner, button::-moz-focus-inner, textarea::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input[type=search] {
  -webkit-appearance: textfield;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

input[type=search]:focus {
  outline-offset: -2px;
}

input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

input[type=checkbox], input[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

input[type=submit], input[type=reset], input[type=button], input[type=password], button {
  cursor: pointer;
  -webkit-appearance: button;
}

input[type=text], input[type=password] {
  -webkit-appearance: none;
  display: inline-block;
  border: 1px solid #000;
  border-radius: 0;
  -webkit-border-radius: 0px;
  padding: 5px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

textarea {
  border-radius: 0;
  -webkit-border-radius: 0px;
  border: 1px solid #000;
}

#access_article_S span {
  font-size: 100%;
}

section {
  border: 0;
}

a {
  outline: none;
}

.right {
  list-style-type: none;
}

/* HTML5要素ブロック化 */
header, nav, section, article, aside, footer, address, strong, b, p {
  display: block;
}

p {
  word-wrap: break-word;
}

/* default */
/*body {
	background: #fff;
	color: #333333;
	font-family: "メイリオ", "Meiryo", verdana, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Osaka", "ＭＳ Ｐゴシック", "MS PGothic", Sans-Serif;
	line-height: 1.4;
}*/
body {
  background: #FFF;
  color: #000;
  font-family: "メイリオ", "Meiryo", verdana, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Osaka", "ＭＳ Ｐゴシック", "MS PGothic", Sans-Serif;
  line-height: 1.8;
}

html, body {
  height: 100%;
}

/* IE6 base font */
* html body {
  font-family: "ＭＳ Ｐゴシック", "MS PGothic", Sans-Serif;
}

#customPage img {
  border-style: none;
  width: 100%;
}

#fb-root {
  display: none;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

/* CSS Document */
/* ////////////////////////////////////////////
   ////////////////////////////////////////////

全サイト共通部分

  ////////////////////////////////////////////
  ////////////////////////////////////////////
*/
/*
一般設定
----------------------------------------
*/
ul {
  list-style-type: none;
}

/*
@font-face {
  font-family: 'HelveticaNeue';
  src: url('../font/HelveticaNeueLTStd-Md.otf') format('opentype');
}
@font-face {
  font-family: 'HelveticaNeue';
  font-weight: bold;
  src: url('../font/HelveticaNeueLTStd-BdCn.otf') format('opentype');
}
*/
/*
背景設定
----------------------------------------
*/
html.noscroll {
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
}

/*
テキスト&埋め込みテキスト設定
----------------------------------------
*/
body {
  font-size: 1.3em; /* 13px */
}

body {
  /*-webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;*/
}

input[type=submit] {
  -webkit-appearance: none;
  border-radius: 0;
  border: none;
}

svg {
  width: 100%;
  height: 100%;
}

img {
  width: 100%;
  vertical-align: bottom;
  -webkit-backface-visibility: hidden;
}

/*
loadingオーバーレイ
----------------------------------------
*/
#loading_overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  right: 0px;
  z-index: 100;
  background: #FFC9C9;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  opacity: 1;
}
#loading_overlay > .icon {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  margin: auto;
  left: 0px;
  right: 0px;
  width: 80px !important;
  animation: bound-anim 1s infinite;
}
#loading_overlay > .icon svg * {
  fill: #522e15 !important;
}
#loading_overlay > span {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: -125px; /*対象のheightと微調節*/
  margin: auto;
  width: 60px;
  height: 10px;
  border-radius: 50%;
  background: #333;
  filter: blur(6px);
  opacity: 0.9;
  animation: shadow-anim 1s infinite;
}
#loading_overlay.loadingFinish {
  z-index: -10;
  opacity: 0;
}

@keyframes loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes loading {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
.preview {
  margin: 60px 0px 0px 30px;
}
.preview ul {
  list-style-type: disc;
}
.preview ul > h4 {
  margin-bottom: 30px;
  font-size: 2rem;
}
.preview ul li {
  margin-bottom: 20px;
  font-size: 1.6rem;
  margin-left: 20px;
}
.preview ul li a:link {
  text-decoration: underline;
}
.preview ul li a:hover {
  text-decoration: none;
}

.logo-plus-button {
  height: 18px;
  background-color: #fff;
  padding-right: 2px;
}

.logo-plus-button, .logo-plus-button > div {
  display: inline-block;
}

.logo-plus-button-plus-icon {
  font-family: Arial;
  background-color: #4285f4;
  background-image: url("https://calendar.google.com/googlecalendar/images/logo-plus.png");
  background-position: center center;
  width: 18px;
  height: 18px;
}

.logo-plus-button-lockup {
  padding-left: 46px;
  background-image: url("https://www.gstatic.com/images/branding/googlelogo/1x/googlelogo_color_46x16dp.png");
  background-size: 46px 16px;
  background-repeat: no-repeat;
  background-position-y: 1px;
  position: relative;
  top: -4px;
  margin-left: 2px;
  margin-right: 1px;
}

.logo-plus-button-lockup-text {
  font-family: "Product Sans", Arial, Helvetica, sans-serif;
  font-size: 13px;
  opacity: 0.54;
}

br.point2 {
  display: none;
}

br.point1 {
  display: none;
}

br.basic {
  display: inline-block;
}

@keyframes poyon {
  0% {
    transform: scale(1, 1) translate(0%, 0%);
  }
  7% {
    transform: scale(0.9, 0.9) translate(0%, 5%);
  }
  10% {
    transform: scale(1.3, 0.8) translate(0%, 10%);
  }
  15% {
    transform: scale(0.8, 1.3) translate(0%, -10%);
  }
  20% {
    transform: scale(1.1, 0.9) translate(0%, 5%);
  }
  22% {
    transform: scale(1, 1) translate(0%, 0%);
  }
  100% {
    transform: scale(1, 1) translate(0%, 0%);
  }
}
/*//////////////////////////////////////////
////////////////////////////////////////////
point1////////////////////////////////
////////////////////////////////////////////
//////////////////////////////////////////*/
/*//////////////////////////////////////////
////////////////////////////////////////////
point2////////////////////////////////
////////////////////////////////////////////
//////////////////////////////////////////*/
/* CSS Document */
/* ////////////////////////////////////////////
   ////////////////////////////////////////////
   ブレイクポイント変数
   ////////////////////////////////////////////
  ////////////////////////////////////////////
*/
/* ////////////////////////////////////////////
   ////////////////////////////////////////////

オリジナル要素

  ////////////////////////////////////////////
  ////////////////////////////////////////////
*/
/*
コンテナ設定
----------------------------------------
*/
html {
  height: 100%;
}

.preview a:link, .preview a:visited, .preview a:hover {
  color: #000;
}

body {
  font-family: a-otf-ud-shin-go-pr6n, sans-serif;
  font-style: normal;
  font-weight: 300;
  position: relative;
  width: 100%;
  font-size: 1.3rem;
  color: #522E15;
  /*　上に上がる動き　*/
  /*　下に下がる動き　*/
}
body a:link, body a:visited {
  color: #522E15;
}
body a:link {
  text-decoration: none;
}
body a:visited {
  text-decoration: none;
}
body a:hover {
  color: #522E15;
}
body a:hover {
  text-decoration: none;
}
body .swiper-button-prev,
body .swiper-button-next {
  background-image: none;
}
body .swiper-button:after {
  display: none;
}
body .fadeInUp {
  opacity: 0;
  -webkit-transform: translate3d(0, 30%, 0);
  transform: translate3d(0, 30%, 0);
}
body .fadeInUp.active {
  animation-duration: 1s;
  animation-fill-mode: both;
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}
body .totop {
  position: fixed;
  background-color: #333;
  width: 30px;
  height: 30px;
  right: 0px;
  z-index: 2;
  /*はじめは非表示*/
  opacity: 0;
  transform: translateY(100px);
  border-radius: 15px 0% 0% 0%;
}
body .totop a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
body .totop a i {
  color: #FFF;
}
body .totop.UpMove {
  animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
body .totop.DownMove {
  animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(100px);
  }
}
body .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 200px;
  margin-left: auto;
  margin-right: auto;
  left: 0px;
  right: 0px;
  border: 1px solid #666;
  background-color: #666;
  position: relative;
  color: #FFF;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
body .btn:hover {
  background-color: #FFF;
  color: #666;
}
body .btn:hover span {
  color: #666;
}
body .btn:hover span:after {
  background-color: #666;
  right: -16px;
}
body .btn:hover span:before {
  background-color: #666;
  right: -23px;
}
body .btn button {
  display: block;
  width: 100%;
}
body .btn span {
  display: block;
  font-family: nimbus-sans, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-weight: bold;
  padding: 15px 0px;
  letter-spacing: 0.2rem;
  color: #FFF;
}
body .btn span:after {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background-color: #FFF;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  margin: auto;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  right: -16px;
}
body .btn span:before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  background-color: #FFF;
  right: 23.5px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  margin: auto;
  top: calc(50% + 1px);
}
body .fadeIn {
  opacity: 0;
}
body .fadeIn.visible {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
  animation-fill-mode: forwards;
  /*animation-timing-function: ease-in;*/
  animation-duration: 0.5s;
  animation-delay: 0.1s;
}
body.naivy header > div > .logos > a > .pon svg *, body.naivy header > div > .logos > a > .typo svg * {
  fill: #522E15 !important;
}
body.naivy .toggle > .toggle_in > div {
  background-color: #522E15;
}
body.naivy .headSns > li > a {
  border: 1px solid #2f2121;
  color: #2f2121;
}
body header {
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 3;
}
body header > div {
  width: calc(100% - 20px);
  margin-left: auto;
  margin-right: auto;
  left: 0px;
  right: 0px;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
body header > div > .logos {
  position: relative;
  width: 160px;
}
body header > div > .logos:hover {
  opacity: 0.6;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
body header > div > .logos > a {
  width: 150px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
body header > div > .logos > a > .pon {
  width: 35px;
}
body header > div > .logos > a > .pon svg * {
  fill: #FFF !important;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
body header > div > .logos > a > .typo {
  width: 100px;
}
body header > div > .logos > a > .typo svg * {
  fill: #FFF !important;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
body header > div > .logos > div {
  width: 105px;
  margin-left: auto;
  margin-right: auto;
  left: 0px;
  right: 0px;
}
body header > div > ul.lang {
  margin-right: 30px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  display: none;
}
body header > div > ul.lang li {
  font-size: 2.6rem;
  margin-left: 5px;
}
body header #baseMenu {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  margin: auto;
  left: auto;
  right: 50px;
  width: auto;
}
body header #baseMenu > ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
body header #baseMenu > ul > li {
  margin-right: 10px;
}
body header #baseMenu > ul > li:last-of-type {
  margin-right: 0px;
}
body header #baseMenu > ul > li a {
  display: block;
  padding: 5px 5px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  background-color: #FFF;
}
body header #baseMenu > ul > li a img {
  width: 20px;
  height: auto !important;
}
body .headSns {
  position: fixed;
  top: 15px;
  right: 50px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  z-index: 12;
}
body .headSns > li {
  margin-right: 10px;
}
body .headSns > li:last-of-type {
  margin-right: 0px;
}
body .headSns > li > a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  border-radius: 50%;
  border: 1px solid #FFF;
  color: #FFF;
  width: 30px;
  height: 30px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
body .headSns > li > a:hover {
  opacity: 0.6;
}
body .headSns > li > a i {
  font-size: 1.8rem;
}
body .toggle {
  position: fixed;
  top: 20px;
  right: 0px;
  z-index: 12;
  cursor: pointer;
  width: 35px;
  height: 22px;
}
body .toggle > .toggle_in > div {
  position: absolute;
  height: 3px;
  width: 35px;
  overflow: visible;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  background: #FFF;
  clip-path: polygon(10% 100%, 0% 0%, 100% 0%, 100% 100%);
}
body .toggle > .toggle_in > div:nth-of-type(1) {
  top: 0px;
  right: 0px;
}
body .toggle > .toggle_in > div:nth-of-type(2) {
  width: 28px;
  top: 8px;
  right: 0px;
}
body .toggle > .toggle_in > div:last-of-type {
  width: 21px;
  top: 16px;
  right: 0px;
}
body.navopend nav {
  bottom: 0%;
}
body.navopend > .toggle > .toggle_in > div {
  clip-path: polygon(0% 100%, 10% 0%, 100% 0%, 100% 100%);
}
body.navopend > .toggle > .toggle_in > div:nth-of-type(1) {
  width: 21px;
}
body.navopend > .toggle > .toggle_in > div:last-of-type {
  width: 35px;
}
body > nav {
  width: 100%;
  height: 70vh;
  bottom: -100%;
  position: fixed;
  left: 0px;
  background: #FFEBC7;
  z-index: 11;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
body > nav > .wave {
  position: absolute;
  top: -69px;
  left: 0px;
  width: 100%;
}
body > nav > div.nav {
  padding: 40px 0px 0px 0px;
}
body > nav > div.nav > div.navs {
  margin-bottom: 20px;
}
body > nav > div.nav > div.navs > ul {
  margin-left: auto;
  margin-right: auto;
  left: 0px;
  right: 0px;
  margin-bottom: 40px;
}
body > nav > div.nav > div.navs > ul > li {
  position: relative;
  margin-bottom: 20px;
}
body > nav > div.nav > div.navs > ul > li a {
  text-align: center;
  display: block;
  color: #522E15;
}
body > nav > div.nav > div.navs > ul > li a p {
  font-size: 1.8rem;
  font-family: "futura-pt", sans-serif;
  margin-bottom: 5px;
  letter-spacing: 0.2rem;
  font-weight: bold;
}
body > nav > div.nav > div.navs > ul > li:last-of-type {
  margin-bottom: 0px;
}
body .bg_logo {
  /* ミックスブレンドモード 乗算 */
  mix-blend-mode: color-burn;
  position: fixed;
  top: 540px;
  left: -10px;
  z-index: 2;
  transform: rotate(-90deg);
  width: 500px;
  transform-origin: top left;
  opacity: 0.2;
}
body .bg_logo svg * {
  fill: #e51a46 !important;
}
body.index .bg_logo {
  display: none;
}
body.index.teather #wrapper {
  padding-bottom: 0px;
}
body.index.teather .toggle, body.index.teather nav, body.index.teather .totop {
  display: none;
}
body.index.teather footer {
  display: none;
}
body.index.teather footer .officialSNS {
  display: none;
}
body.index.teather footer > .logo > .typo {
  display: none;
}
body.index #wrapper section main {
  padding-top: 0px;
}
body:not(.index) #wrapper section .infiniteslide_wrap {
  width: 100%;
  position: absolute;
  top: -30px;
}
body .wave {
  position: relative;
  height: 70px;
  overflow: hidden;
}
body .wave svg {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
}
body .typeCap .eachTextAnime span {
  opacity: 0;
  display: inline-block;
}
body .typeCap .eachTextAnime.appeartext span {
  animation: text_anime_on 1s ease-out forwards;
}
body #teather {
  background: #FFC9C9;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
body #teather > div {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 250px;
}
body #teather > div > div {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100px;
  margin-bottom: 30px;
}
body #teather > div > div > .icon {
  width: 80px !important;
  animation: bound-anim2 1s infinite;
}
body #teather > div > div > .icon svg * {
  fill: #522e15 !important;
}
body #teather > div > div > span {
  margin: auto;
  width: 60px;
  height: 10px;
  border-radius: 50%;
  background: #333;
  filter: blur(6px);
  opacity: 0.9;
  animation: shadow-anim 1s infinite;
}
body #teather > div > p {
  font-family: baskerville-display-pt, serif;
  font-weight: 400;
  font-style: normal;
  font-size: 2.6rem;
}
body #wrapper {
  position: relative;
  padding-bottom: 80px;
  background-color: #fbf8f8;
}
body #wrapper .mainVis {
  width: 100%;
  padding-top: 160%;
  position: relative;
  overflow: hidden;
  z-index: 2;
}
body #wrapper .mainVis > div.step {
  width: 40%;
  position: absolute;
  top: 0px;
  right: 0px;
  margin-right: 0px;
  margin-left: 0px;
  left: auto;
  z-index: 2;
}
body #wrapper .mainVis > div.step.active svg * {
  fill: #FFF !important;
}
body #wrapper .mainVis > div.step.active svg g {
  animation: stepin 0.05s linear;
  animation-fill-mode: both;
}
body #wrapper .mainVis > div.step.active svg g:nth-of-type(1) {
  animation-delay: 0.5s;
}
body #wrapper .mainVis > div.step.active svg g:nth-of-type(2) {
  animation-delay: 0.7s;
}
body #wrapper .mainVis > div.step.active svg g:nth-of-type(3) {
  animation-delay: 0.9s;
}
body #wrapper .mainVis > div.step.active svg g:nth-of-type(4) {
  animation-delay: 1.2s;
}
body #wrapper .mainVis > div.step.active svg g:nth-of-type(5) {
  animation-delay: 1.3s;
}
body #wrapper .mainVis > div.step.active svg g:nth-of-type(6) {
  animation-delay: 1.5s;
}
body #wrapper .mainVis > div.step svg g {
  opacity: 0;
}
body #wrapper .mainVis > div.stars {
  position: absolute;
  top: 50px;
  z-index: 2;
  width: 50%;
}
body #wrapper .mainVis > div.stars > div {
  position: absolute;
  width: 40px;
}
body #wrapper .mainVis > div.stars div:nth-of-type(1) {
  top: 10px;
  left: 15%;
  animation: rotate_loop 3s linear infinite;
}
body #wrapper .mainVis > div.stars div:nth-of-type(2) {
  top: 100px;
  left: 25%;
  animation: rotate_loop 12s linear infinite;
}
body #wrapper .mainVis > div.stars div:nth-of-type(3) {
  top: 60px;
  left: 65%;
  animation: rotate_loop 6s linear infinite;
}
body #wrapper .mainVis > div.title {
  position: absolute;
  top: 13%;
  left: 10px;
  z-index: 5;
  font-size: clamp(1.3rem, 4.7vw, 2rem);
  font-family: "futura-pt", sans-serif;
}
body #wrapper .mainVis > div.title p:nth-of-type(1) {
  margin-bottom: 8px;
}
body #wrapper .mainVis .vis_bg {
  background: url("../images/vis_bg.png");
  width: 100%;
  height: 35%;
  background-size: 150% 150%;
  animation-name: gradation;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-timing-function: ease-in-out;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 1;
}
body #wrapper .mainVis #clip01 path {
  transform: translate(0px, 0px);
}
body #wrapper .mainVis #vis {
  top: 25%;
  position: absolute;
  z-index: 3;
  clip-path: url(#visShapeBasic);
  width: 100%;
  padding-top: 180%;
}
body #wrapper .mainVis #vis img {
  position: absolute;
  left: 0px;
  top: -8%;
}
@keyframes gradation {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 100% 100%;
  }
}
body #wrapper .mainVis .wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  z-index: 4;
  width: 100%;
}
body #wrapper .mainVis > .info {
  position: absolute;
  top: 12%;
  width: 48%;
  z-index: 5;
  right: 10px;
}
body #wrapper .mainVis > .info > p {
  display: inline-block;
  position: absolute;
  z-index: 2;
  top: -8px;
  right: 0px;
}
body #wrapper .mainVis > .info > p > span {
  color: #522E15;
  font-family: "futura-pt", sans-serif;
  font-size: 1.6rem;
}
body #wrapper .mainVis > .info > ul {
  background-color: rgba(255, 255, 255, 0.6);
  filter: drop-shadow(3px 3px 3px #999);
  padding: 15px 10px;
}
body #wrapper .mainVis > .info > ul > li {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
body #wrapper .mainVis > .info > ul > li:last-of-type {
  margin-bottom: 0px;
}
body #wrapper .mainVis > .info > ul > li > a {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
body #wrapper .mainVis > .info > ul > li > a:hover {
  opacity: 0.5;
  text-decoration: none;
}
body #wrapper .mainVis > .info > ul > li > a:hover * {
  text-decoration: none;
}
body #wrapper .mainVis > .info > ul > li span {
  width: 65px;
  font-size: 1rem;
}
body #wrapper .mainVis > .info > ul > li p {
  width: calc(100% - 65px);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 1rem;
}
body #wrapper .mainVis > .info > ul > a {
  background-color: #522E15;
  display: inline-block;
  border-radius: 12px 6px 12px 6px;
  -webkit-border-radius: 12px 6px 12px 6px;
  -moz-border-radius: 12px 6px 12px 6px;
  padding: 5px 10px 5px 10px;
  position: absolute;
  z-index: 2;
  bottom: -15px;
  right: 0px;
  text-align: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
body #wrapper .mainVis > .info > ul > a:hover {
  border-radius: 0px 0px 0px 0px;
  -webkit-border-radius: 0px 0px 0px 0px;
  -moz-border-radius: 0px 0px 0px 0px;
}
body #wrapper .mainVis > .info > ul > a span {
  color: #FFF;
  font-family: "futura-pt", sans-serif;
  font-size: 1.3rem;
  font-weight: bold;
}
body #wrapper > .head {
  height: 120px;
  position: relative;
  z-index: 1;
}
body #wrapper > .head:before {
  content: "";
  display: block;
  background: url("../images/vis_bg.png");
  width: 100%;
  height: 120px;
  background-size: 150% 150%;
  animation-name: gradation;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-timing-function: ease-in-out;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 1;
}
body #wrapper > .head .wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  z-index: 4;
  width: 100%;
}
body #wrapper section {
  margin-bottom: 100px;
  position: relative;
  z-index: 2;
}
body #wrapper section:last-of-type {
  margin-bottom: 0px;
}
body #wrapper section strong.cap {
  display: block;
  text-align: left;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}
body #wrapper section strong.cap.pink > div > div svg * {
  fill: #ff92d3 !important;
}
body #wrapper section strong.cap.blue > div > div svg * {
  fill: #94e6ff !important;
}
body #wrapper section strong.cap.purple > div > div svg * {
  fill: #fcc454 !important;
}
body #wrapper section strong.cap > div {
  flex-wrap: wrap;
  position: relative;
  padding-right: 10px;
  padding-left: 30px;
}
body #wrapper section strong.cap > div > div {
  width: 20px;
  transform-origin: 50% 50%;
  animation: rotate_loop 3s linear infinite;
  position: absolute;
  top: 0px;
  left: 0px;
}
body #wrapper section strong.cap > div > div svg * {
  fill: #fcc454 !important;
}
body #wrapper section strong.cap > div p {
  font-size: 2.8rem;
  font-family: "futura-pt", sans-serif;
  letter-spacing: 0.1rem;
  color: #522E15;
  position: relative;
  z-index: 2;
}
body #wrapper section strong.cap > div p span {
  color: #522E15 !important;
  font-size: 1.6rem;
  line-height: 1.6;
  filter: drop-shadow(2px 2px 2px #FFF);
}
body #wrapper section:not(.top_member) > div.step {
  width: 35%;
  position: absolute;
  z-index: 1;
  top: -120px;
  right: 0px;
  margin-right: 0px;
  margin-left: 0px;
  left: auto;
  opacity: 0.2;
}
body #wrapper section:not(.top_member) > div.step.active svg g {
  animation: stepin 0.05s linear;
  animation-fill-mode: both;
}
body #wrapper section:not(.top_member) > div.step.active svg g:nth-of-type(1) {
  animation-delay: 0.2s;
}
body #wrapper section:not(.top_member) > div.step.active svg g:nth-of-type(2) {
  animation-delay: 0.4s;
}
body #wrapper section:not(.top_member) > div.step.active svg g:nth-of-type(3) {
  animation-delay: 0.6s;
}
body #wrapper section:not(.top_member) > div.step.active svg g:nth-of-type(4) {
  animation-delay: 0.8s;
}
body #wrapper section:not(.top_member) > div.step.active svg g:nth-of-type(5) {
  animation-delay: 1s;
}
body #wrapper section:not(.top_member) > div.step.active svg g:nth-of-type(6) {
  animation-delay: 1.2s;
}
body #wrapper section:not(.top_member) > div.step svg g {
  opacity: 0;
}
body #wrapper section main {
  padding-top: 30px;
}
body #wrapper section.top_about {
  padding-top: 50px;
}
body #wrapper section.top_about .swiper-pagination {
  width: 100%;
  text-align: center;
  position: relative;
}
body #wrapper section.top_about .swiper-pagination .swiper-pagination-bullet {
  margin-right: 5px;
  opacity: 1;
  width: 10px;
  height: 10px;
  border: 2px solid #333;
  background-color: rgba(0, 0, 0, 0);
  display: none;
}
body #wrapper section.top_about .swiper-pagination .swiper-pagination-bullet:last-of-type {
  margin-right: 0px;
}
body #wrapper section.top_about .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  border: none;
  width: 14px;
  height: 14px;
  background-color: rgba(0, 0, 0, 0);
  background-size: cover;
  opacity: 1;
  border-radius: 0px;
}
body #wrapper section.top_about .prev, body #wrapper section.top_about .next {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  z-index: 2;
}
body #wrapper section.top_about .prev:focus, body #wrapper section.top_about .next:focus {
  outline: none;
}
body #wrapper section.top_about .prev .fa, body #wrapper section.top_about .prev .fas, body #wrapper section.top_about .next .fa, body #wrapper section.top_about .next .fas {
  font-weight: 200;
}
body #wrapper section.top_about .prev {
  left: 10px;
}
body #wrapper section.top_about .next {
  right: 10px;
}
body #wrapper section.top_about .carousel {
  width: calc(100% - 0px);
  margin-left: auto;
  margin-right: auto;
  left: 0px;
  right: 0px;
  overflow: hidden;
  padding: 30px 0px 90px 0px;
}
body #wrapper section.top_about .carousel .swiper-container {
  margin-left: auto;
  margin-right: auto;
  left: 0px;
  right: 0px;
}
body #wrapper section.top_about .carousel .swiper-container .swiper-slide {
  max-width: 100%;
  position: relative;
}
body #wrapper section.top_about .carousel .swiper-container .swiper-slide.swiper-slide-active.update a:after, body #wrapper section.top_about .carousel .swiper-container .swiper-slide.swiper-slide-active.update a:before {
  display: flex;
}
body #wrapper section.top_about .carousel .swiper-container .swiper-slide > a:hover > div > div.image {
  overflow: hidden;
}
body #wrapper section.top_about .carousel .swiper-container .swiper-slide > a:hover > div > div.image img {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  transform: scale(1.1);
}
body #wrapper section.top_about .theme {
  z-index: 5;
  position: absolute;
  top: -30px;
  right: 10px;
  width: 200px;
}
body #wrapper section.top_about .logo {
  clip-path: url(#clipshape);
  background: linear-gradient(90deg, #3fb6ff 0%, #e0bfff 56%, #ffbfe2 100%);
  width: 250px;
  margin-left: auto;
  margin-right: auto;
  left: 0px;
  right: 0px;
  height: 53.75px;
  background-size: 150% 150%;
  animation-name: gradation;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-timing-function: ease-in-out;
  z-index: 1;
  margin-bottom: 20px;
}
body #wrapper section.top_about > p {
  width: calc(100% - 20px);
  margin-left: auto;
  margin-right: auto;
  left: 0px;
  right: 0px;
  line-height: 1.6;
  font-size: 1.2rem;
}
body #wrapper section.top_member {
  position: relative;
}
body #wrapper section.top_member > main > ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  width: calc(100% - 20px);
  margin-left: auto;
  margin-right: auto;
  left: 0px;
  right: 0px;
}
body #wrapper section.top_member > main > ul > li {
  width: calc((100% - 20px) / 2);
  margin-bottom: 60px;
}
body #wrapper section.top_member > main > ul > li:nth-of-type(odd) {
  margin-right: 20px;
}
body #wrapper section.top_member > main > ul > li > a {
  margin-bottom: 10px;
  display: block;
}
body #wrapper section.top_member > main > ul > li > a:hover > p {
  border-radius: 0px 0px 0px 0px;
  -webkit-border-radius: 0px 0px 0px 0px;
  -moz-border-radius: 0px 0px 0px 0px;
}
body #wrapper section.top_member > main > ul > li > a > p {
  overflow: hidden;
  width: 100%;
  padding-top: 135.6%;
  border-radius: 40px 12px 40px 12px;
  -webkit-border-radius: 40px 12px 40px 12px;
  -moz-border-radius: 40px 12px 40px 14px;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
body #wrapper section.top_member > main > ul > li > a > p img {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover; /* この一行を追加するだけ！ */
}
body #wrapper section.top_member > main > ul > li > div {
  text-align: left;
}
body #wrapper section.top_member > main > ul > li > div > a {
  display: block;
  position: relative;
  height: 25px;
}
body #wrapper section.top_member > main > ul > li > div > a:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #522E15;
  position: absolute;
  bottom: 1px;
  left: 0px;
}
body #wrapper section.top_member > main > ul > li > div > a:after {
  content: "";
  display: block;
  height: 15px;
  width: 1px;
  background-color: #522E15;
  position: absolute;
  bottom: 1px;
  right: 0px;
}
body #wrapper section.top_member > main > ul > li > div > a b {
  font-size: 1.4rem;
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
body #wrapper section.top_member > main > ul > li > div > a b .viewmore {
  display: none;
  font-family: "futura-pt", sans-serif;
}
body #wrapper section.top_member > main > ul > li > div > a b i {
  position: absolute;
  top: 3px;
  font-size: 1rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  right: 10px;
}
body #wrapper section.top_member > main > ul > li > div > a:hover b i {
  right: 10px;
}
body #wrapper section.top_movie {
  position: relative;
}
body #wrapper section.top_movie main > ul {
  width: calc(100% - 20px);
  margin-left: auto;
  margin-right: auto;
  left: 0px;
  right: 0px;
}
body #wrapper section.top_movie main > ul > li {
  margin-bottom: 80px;
}
body #wrapper section.top_movie main > ul > li:last-of-type {
  margin-bottom: 0px;
}
body #wrapper section.top_movie main > ul > li > div {
  position: relative;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  left: 0px;
  right: 0px;
  padding-top: 56.25%;
  margin-bottom: 10px;
}
body #wrapper section.top_movie main > ul > li > div iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}
body #wrapper section.top_movie main > ul > li > p {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 1.6rem;
  text-align: left;
  line-height: 1.6;
}
body #wrapper section.top_music {
  position: relative;
}
body #wrapper section.top_music main > ul {
  width: calc(100% - 20px);
  margin-left: auto;
  margin-right: auto;
  left: 0px;
  right: 0px;
  display: flex;
  flex-wrap: wrap;
  padding-top: 30px;
}
body #wrapper section.top_music main > ul > li {
  width: calc((100% - 20px) / 2);
  margin-right: 20px;
  margin-bottom: 40px;
}
body #wrapper section.top_music main > ul > li:nth-of-type(even) {
  margin-right: 0px;
}
body #wrapper section.top_music main > ul > li a {
  display: block;
}
body #wrapper section.top_music main > ul > li a:hover > p:after {
  bottom: 0px;
}
body #wrapper section.top_music main > ul > li a > p {
  position: relative;
  overflow: hidden;
  margin-bottom: 6px;
}
body #wrapper section.top_music main > ul > li a > p:after {
  content: "";
  display: block;
  position: absolute;
  bottom: -200%;
  left: 0px;
  width: 100%;
  height: 200%;
  background-color: rgba(0, 0, 0, 0.2);
  clip-path: polygon(0% 50%, 100% 0%, 100% 100%, 0% 100%);
  z-index: 2;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
body #wrapper section.top_music main > ul > li a > div > span {
  line-height: 1.6;
  font-size: 1.1rem;
  display: block;
  margin-bottom: 3px;
}
body #wrapper section.top_music main > ul > li a > div > p {
  line-height: 1.6;
  font-weight: bold;
}
body #wrapper section.top_schedule {
  position: relative;
}
body #wrapper section.top_schedule > div:not(.infiniteslide_wrap) {
  width: calc(100% - 20px);
  margin-left: auto;
  margin-right: auto;
  left: 0px;
  right: 0px;
  position: relative;
  padding-bottom: 20px;
}
body #wrapper section.top_schedule main {
  margin-bottom: 10px;
}
body #wrapper section.top_schedule main#calendar .fc-header-toolbar h2 {
  font-size: 1.4rem;
  font-weight: bold;
}
body #wrapper section.top_schedule main#calendar .fc-view-harness {
  height: 300px !important;
}
body #wrapper section.top_schedule main#calendar .fc-button-primary {
  background-color: #522E15;
}
body #wrapper section.top_schedule main#calendar .fc-list-sticky .fc-list-day > * {
  background-color: #FAEAEF;
}
body #wrapper section.top_schedule main#calendar .fc-list {
  border: none;
}
body #wrapper section.top_schedule main#calendar .fc-list-event-dot {
  border-color: #C45060;
}
body #wrapper section.top_schedule main#calendar .fc-list-event-title {
  line-height: 1.6;
}
body #wrapper section.top_schedule main + a {
  position: absolute;
  bottom: 0px;
  right: 0px;
}
body #wrapper section.top_schedule .logo-plus-button .logo-plus-button-plus-icon {
  background-image: none;
  position: relative;
  background-color: #522E15;
}
body #wrapper section.top_schedule .logo-plus-button .logo-plus-button-plus-icon:after {
  content: "+";
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  margin: auto;
  left: 0;
  right: 0;
  text-align: center;
  color: #FFF;
}
body #wrapper section.member_profile {
  position: relative;
}
body #wrapper section.member_profile > main > div.name {
  width: calc(100% - 40px);
  margin-left: auto;
  margin-right: auto;
  left: 0px;
  right: 0px;
  margin-bottom: 20px;
}
body #wrapper section.member_profile > main > div.name h1 {
  font-size: 2.6rem;
  margin-bottom: 7px;
}
body #wrapper section.member_profile > main > div.name span {
  font-size: 1.4rem;
  font-family: "futura-pt", sans-serif;
}
body #wrapper section.member_profile > main > div.imageSwiper > div {
  position: relative;
  margin-bottom: 15px;
  overflow: hidden;
}
body #wrapper section.member_profile > main > div.imageSwiper > div .swiper-button {
  background-color: #db435d;
  color: #FFF;
  width: 30px;
  height: 60px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  margin: auto;
  font-size: 2.2rem;
}
body #wrapper section.member_profile > main > div.imageSwiper > div .swiper-button.swiper-button-prev {
  left: 0px;
}
body #wrapper section.member_profile > main > div.imageSwiper > div .swiper-button.swiper-button-next {
  right: 0px;
}
body #wrapper section.member_profile > main > div.imageSwiper > div .swiper-button.swiper-button-disabled {
  opacity: 0;
}
body #wrapper section.member_profile > main > div.imageSwiper > div .swiper-container {
  width: calc(100% - 40px);
  margin-left: auto;
  margin-right: auto;
  left: 0px;
  right: 0px;
}
body #wrapper section.member_profile > main > div.imageSwiper > div .swiper-container .swiper-slide {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 149%;
  margin-bottom: 10px;
}
body #wrapper section.member_profile > main > div.imageSwiper > div .swiper-container .swiper-slide img {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover; /* この一行を追加するだけ！ */
}
body #wrapper section.member_profile > main > div.imageSwiper .swiper-pagination {
  position: relative;
  bottom: 0px;
}
body #wrapper section.member_profile > main > div.imageSwiper .swiper-pagination .swiper-pagination-bullet {
  background-color: transparent;
  border: 1px solid #522e15;
  opacity: 1;
}
body #wrapper section.member_profile > main > div.imageSwiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #522e15;
  border: 1px solid #522e15;
}
body #wrapper section.member_profile > main > div.spec {
  width: calc(100% - 40px);
  margin-left: auto;
  margin-right: auto;
  left: 0px;
  right: 0px;
}
body #wrapper section.member_profile > main > div.spec > ul.snsList {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
body #wrapper section.member_profile > main > div.spec > ul.snsList > li {
  margin-right: 5px;
}
body #wrapper section.member_profile > main > div.spec > ul.snsList > li.showroom > a svg * {
  fill: #522E15 !important;
}
body #wrapper section.member_profile > main > div.spec > ul.snsList > li:last-of-type {
  margin-right: 0px;
}
body #wrapper section.member_profile > main > div.spec > ul.snsList > li > a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  border-radius: 15%;
  width: 30px;
  height: 30px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
body #wrapper section.member_profile > main > div.spec > ul.snsList > li > a:hover {
  opacity: 0.6;
}
body #wrapper section.member_profile > main > div.spec > ul.snsList > li > a i {
  font-size: 2.2rem;
}
body #wrapper section.member_profile > main > div.spec > ol {
  list-style-type: none;
}
body #wrapper section.member_profile > main > div.spec > ol > li {
  margin-bottom: 20px;
}
body #wrapper section.member_profile > main > div.spec > ol > li span {
  display: inline-block;
  font-weight: bold;
  margin-bottom: 5px;
  font-size: 1.2rem;
  margin-bottom: 2px;
}
body #wrapper section.member_profile > main > div.spec > ol > li p {
  line-height: 1.6;
  font-size: 1.5rem;
}
body #wrapper section.general_wrap main {
  width: calc(100% - 40px);
  margin-left: auto;
  margin-right: auto;
  left: 0px;
  right: 0px;
}
body #wrapper section.general_wrap main .general_head {
  text-align: left;
  margin-bottom: 20px;
}
body #wrapper section.general_wrap main .general_head > p {
  margin-bottom: 8px;
}
body #wrapper section.general_wrap main .general_head > h2 {
  line-height: 1.8;
  font-size: 2rem;
}
body #wrapper section.general_wrap main .general_head > div {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
body #wrapper section.general_wrap main .general_head > div > span {
  margin-right: 15px;
}
body #wrapper section.general_wrap main .general_head > div > p {
  font-family: "futura-pt", sans-serif;
  padding: 3px 10px;
  color: #FFF;
  font-size: 1.2rem;
}
body #wrapper section.general_wrap main .general_head > div > p.news {
  background-color: #94e6ff;
}
body #wrapper section.general_wrap main .general_head > div > p.live {
  background-color: #fcc454;
}
body #wrapper section.general_wrap main .general_head > div > p.others {
  background-color: #ff92d3;
}
body #wrapper section.general_wrap main .contents {
  text-align: left;
}
body #wrapper section.general_wrap main .contents .wp-block-image {
  margin: 20px !important;
  text-align: center;
}
body #wrapper section.general_wrap main .contents .wp-block-image > img {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  left: 0px;
  right: 0px;
}
body #wrapper section.general_wrap main .contents a:link {
  text-decoration: underline;
}
body #wrapper section.general_wrap main .contents a:hover {
  text-decoration: none;
}
body #wrapper section.general_wrap main .contents * {
  font-size: 1.4rem;
  line-height: 1.8;
}
body #wrapper section.general_wrap main .contents h2 {
  font-size: 1.8rem;
  font-weight: bold;
  display: block;
  margin-bottom: 15px;
}
body #wrapper section.general_wrap main .contents strong {
  display: block;
}
body #wrapper section.general_wrap main .contents img {
  width: 100% !important;
  height: auto !important;
  margin-bottom: 15px;
}
body #wrapper section.general_wrap main .contents p {
  font-size: 1.4rem;
  line-height: 1.8;
  margin-bottom: 20px;
}
body #wrapper section.general_wrap main .contents ul > li {
  margin-bottom: 10px;
  line-height: 1.6;
  list-style-type: disc;
  margin-left: 15px;
}
body #wrapper section.general_wrap main .contents ul > li:last-of-type {
  margin-bottom: 0px;
}
body #wrapper section.general_wrap main .contents ul > li.king:before {
  content: "\f521";
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  color: #E2CA40;
  font-size: 1.8rem;
  margin-right: 8px;
}
body #wrapper section.general_wrap main .contents ul > li.milestone {
  font-weight: bold;
  font-size: 1.6rem;
  background-color: #FFF;
  padding: 2px 5px;
}
body #wrapper section.general_wrap main .contents div.youtube {
  position: relative;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  left: 0px;
  right: 0px;
  padding-top: 56.25%;
}
body #wrapper section.general_wrap main .contents div.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}
body #wrapper section.general_wrap main .contents figure {
  margin: 0;
}
body #wrapper section.general_wrap main .contents figure.is-type-video {
  position: relative;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  left: 0px;
  right: 0px;
  padding-top: 56.25%;
}
body #wrapper section.general_wrap main .contents figure.is-type-video iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}
body #wrapper section.general_wrap main .contents .audition {
  margin-bottom: 60px;
}
body #wrapper section.general_wrap main .contents .audition h5 {
  text-align: center;
  margin-bottom: 20px;
}
body #wrapper section.general_wrap main .contents .audition h5 > p {
  font-size: 2.6rem;
  font-family: "futura-pt", sans-serif;
}
body #wrapper section.general_wrap main .contents .audition h5 > p span {
  font-size: 1.6rem;
  display: block;
}
body #wrapper section.general_wrap main .contents .audition ul li span {
  font-size: 1.2rem;
  display: block;
}
body #wrapper section.general_wrap main .contents .audition div {
  margin-bottom: 30px;
}
body #wrapper section.general_wrap main .contents .audition div strong {
  display: block;
  position: relative;
  text-align: center;
  margin-bottom: 15px;
}
body #wrapper section.general_wrap main .contents .audition div strong:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  margin: auto;
  width: 100%;
  height: 1px;
  background-color: #666;
  z-index: 1;
}
body #wrapper section.general_wrap main .contents .audition div strong span {
  display: inline-block;
  background-color: #FFF;
  padding: 3px 3px;
  margin-left: auto;
  margin-right: auto;
  left: 0px;
  right: 0px;
  position: relative;
  z-index: 2;
  font-size: 1.6rem;
}
body #wrapper section.general_wrap main .masonry > div.item {
  width: calc((100% - 20px) / 2);
  margin-bottom: 20px;
  cursor: pointer;
}
body #wrapper section.archive_wrap main {
  width: calc(100% - 40px);
  margin-left: auto;
  margin-right: auto;
  left: 0px;
  right: 0px;
}
body #wrapper section.archive_wrap main > ol.category {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  list-style-type: none;
  margin-bottom: 40px;
}
body #wrapper section.archive_wrap main > ol.category > li {
  margin-right: 10px;
}
body #wrapper section.archive_wrap main > ol.category > li.all a {
  background-color: #a660a3;
}
body #wrapper section.archive_wrap main > ol.category > li.news a {
  background-color: #94e6ff;
}
body #wrapper section.archive_wrap main > ol.category > li.live a {
  background-color: #fcc454;
}
body #wrapper section.archive_wrap main > ol.category > li.others a {
  background-color: #ff92d3;
}
body #wrapper section.archive_wrap main > ol.category > li a {
  color: #FFF;
  font-family: "futura-pt", sans-serif;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  font-weight: bold;
  padding: 3px 10px;
  border-radius: 10px 0px 10px 0px;
  -webkit-border-radius: 10px 0px 10px 0px;
  -moz-border-radius: 10px 0px 10px 0px;
}
body #wrapper section.archive_wrap main > ol.category > li a:hover {
  border-radius: 0px 0px 0px 0px;
  -webkit-border-radius: 0px 0px 0px 0px;
  -moz-border-radius: 0px 0px 0px 0px;
}
body #wrapper section.archive_wrap main > ul {
  margin-bottom: 80px;
}
body #wrapper section.archive_wrap main > ul > li {
  margin-bottom: 40px;
}
body #wrapper section.archive_wrap main > ul > li a {
  display: block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
body #wrapper section.archive_wrap main > ul > li a:hover {
  transform: translate(-4px, -4px);
}
body #wrapper section.archive_wrap main > ul > li a > div {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
body #wrapper section.archive_wrap main > ul > li a > div > span {
  margin-right: 15px;
}
body #wrapper section.archive_wrap main > ul > li a > div > p {
  font-family: "futura-pt", sans-serif;
  padding: 3px 10px;
  font-size: 1.2rem;
  color: #FFF;
}
body #wrapper section.archive_wrap main > ul > li a > div > p.news {
  background-color: #94e6ff;
}
body #wrapper section.archive_wrap main > ul > li a > div > p.live {
  background-color: #fcc454;
}
body #wrapper section.archive_wrap main > ul > li a > div > p.others {
  background-color: #ff92d3;
}
body #wrapper section.archive_wrap main > ul > li a > h5 {
  font-size: 1.4rem;
  line-height: 1.6;
  text-align: left;
}
body #wrapper section.archive_wrap main > ul .noPost {
  padding-top: 60px;
  text-align: center;
}
body #wrapper section.archive_wrap main > ul .noPost b {
  font-family: baskerville-display-pt, serif;
  font-weight: 400;
  font-style: normal;
  font-size: 2rem;
  margin-bottom: 40px;
}
body #wrapper section.archive_wrap main > ul .noPost strong {
  font-family: baskerville-display-pt, serif;
  font-weight: 400;
  font-style: normal;
  font-size: 3.5rem;
  margin-bottom: 40px;
}
body #wrapper section.archive_wrap main .paging .wp-pagenavi {
  position: relative;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
body #wrapper section.archive_wrap main .paging .wp-pagenavi > * {
  width: 25px;
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
}
body #wrapper section.archive_wrap main .paging .wp-pagenavi > .page, body #wrapper section.archive_wrap main .paging .wp-pagenavi > .extend {
  border: none;
}
body #wrapper section.archive_wrap main .paging .wp-pagenavi span.current {
  background-color: #522E15;
  border: none;
  color: #FFF;
  position: relative;
}
body #wrapper section.archive_wrap main .paging .wp-pagenavi span.current:after {
  content: "";
  position: absolute;
  bottom: -10px;
  width: 10px;
  height: 2px;
  background-color: #333;
  left: 0px;
  right: 0px;
  margin: auto;
}
body #wrapper section.shop_index main {
  margin-bottom: 60px;
}
body #wrapper section.shop_index .itemList {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  width: calc(100% - 40px);
  margin-bottom: 60px;
  margin-left: auto;
  margin-right: auto;
  left: 0px;
  right: 0px;
}
body #wrapper section.shop_index .itemList > .item {
  width: calc((100% - 20px) / 2);
  text-align: left;
  margin-right: 20px;
  margin-bottom: 50px;
}
body #wrapper section.shop_index .itemList > .item:nth-of-type(even) {
  margin-right: 0px;
}
body #wrapper section.shop_index .itemList > .item .itemImg {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 100%;
  margin-bottom: 10px;
}
body #wrapper section.shop_index .itemList > .item .itemImg img:not(.label_image) {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover; /* この一行を追加するだけ！ */
}
body #wrapper section.shop_index .itemList > .item .itemTitle h2 {
  word-break: break-all;
  font-size: 1.4rem;
  line-height: 1.6;
  margin-bottom: 5px;
}
body #wrapper section.shop_index .itemList > .item .itemDetail .itemPrice {
  font-weight: bold;
}
body #wrapper section.shop_index .itemList > .item .itemDetail .discountPrice__ratio {
  opacity: 0.9;
  color: #DB435D;
  font-size: 1.1rem;
}
body #wrapper section.shop_index .itemList > .item .itemDetail .discountPrice__calcPrice {
  font-weight: bold;
  color: #DB435D;
}
body #wrapper section.shop_index .itemList > .item .soldout {
  font-size: 1.6rem;
  font-weight: bold;
  color: #DB435D;
  margin-top: 10px;
}
body #wrapper section.shop_index .pointAttention {
  width: calc(100% - 40px);
  margin-left: auto;
  margin-right: auto;
  left: 0px;
  right: 0px;
}
body #wrapper section.shop_index .pointAttention h5 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
}
body #wrapper section.shop_index .pointAttention ul {
  list-style-type: disc;
}
body #wrapper section.shop_index .pointAttention ul li {
  margin-bottom: 10px;
  line-height: 1.6;
  margin-left: 15px;
}
body #wrapper section.shop_index .pointAttention ul li a {
  text-decoration: underline;
}
body #wrapper section.shop_index .imageSwiper > div {
  position: relative;
  margin-bottom: 15px;
  overflow: hidden;
}
body #wrapper section.shop_index .imageSwiper > div .swiper-button {
  background-color: #db435d;
  color: #FFF;
  width: 30px;
  height: 60px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  margin: auto;
  font-size: 2.2rem;
}
body #wrapper section.shop_index .imageSwiper > div .swiper-button.swiper-button-prev {
  left: 0px;
}
body #wrapper section.shop_index .imageSwiper > div .swiper-button.swiper-button-next {
  right: 0px;
}
body #wrapper section.shop_index .imageSwiper > div .swiper-container {
  width: calc(100% - 40px);
  margin-left: auto;
  margin-right: auto;
  left: 0px;
  right: 0px;
  overflow: hidden;
}
body #wrapper section.shop_index .imageSwiper > div .swiper-container .swiper-slide {
  overflow: hidden;
  width: 100%;
  position: relative;
  padding-top: 100%;
}
body #wrapper section.shop_index .imageSwiper > div .swiper-container .swiper-slide img {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover; /* この一行を追加するだけ！ */
}
body #wrapper section.shop_index .imageSwiper .swiper-pagination {
  position: relative;
  bottom: 0px;
}
body #wrapper section.shop_index .imageSwiper .swiper-pagination .swiper-pagination-bullet {
  background-color: transparent;
  border: 1px solid #522e15;
  opacity: 1;
}
body #wrapper section.shop_index .imageSwiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #522e15;
  border: 1px solid #522e15;
}
body #wrapper section.shop_index .purchase {
  width: calc(100% - 40px);
  margin-left: auto;
  margin-right: auto;
  left: 0px;
  right: 0px;
  text-align: left;
}
body #wrapper section.shop_index .purchase h4 {
  font-size: 1.6rem;
  line-height: 1.6;
  margin-bottom: 10px;
}
body #wrapper section.shop_index .purchase .itemDescription {
  margin-bottom: 15px;
}
body #wrapper section.shop_index .purchase .itemDescription p {
  font-size: 1.3rem;
  line-height: 1.6;
}
body #wrapper section.shop_index .purchase .itemPrice {
  margin-bottom: 20px;
}
body #wrapper section.shop_index .purchase .itemPrice font {
  font-size: 1.1rem;
  opacity: 0.7;
}
body #wrapper section.shop_index .purchase .itemPrice .discountPrice span.discountPrice__default {
  text-decoration: line-through;
  margin-right: 10px;
}
body #wrapper section.shop_index .purchase .itemPrice .discountPrice span.discountPrice__ratio {
  font-size: 1.3rem;
}
body #wrapper section.shop_index .purchase .itemPrice .discountPrice span.discountPrice__calcPrice {
  display: block;
  margin-top: 5px;
}
body #wrapper section.shop_index .purchase .itemPrice > span {
  display: block;
  margin-top: 10px;
  color: #DB435D;
  font-weight: bold;
  font-size: 1.4rem;
}
body #wrapper section.shop_index .purchase .itemPrice .comingSoon {
  display: block;
  margin-top: 10px;
  font-weight: bold;
  font-size: 1.4rem;
}
body #wrapper section.shop_index .purchase #itemAttention {
  margin-bottom: 30px;
}
body #wrapper section.shop_index .purchase #itemAttention .salesPeriod {
  padding: 10px 10px;
  text-align: left;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.6;
  background-color: #FAEAEF;
  color: #522e15;
  margin-bottom: 10px;
}
body #wrapper section.shop_index .purchase #itemAttention .salesPeriod.salesPeriod--finish {
  background-color: #EEE;
  color: #999;
}
body #wrapper section.shop_index .purchase #itemAttention p.attention {
  margin-bottom: 10px;
  line-height: 1.6;
}
body #wrapper section.shop_index .purchase .purchaseButton .purchaseButton__btn {
  padding: 20px 10px;
  display: block;
  width: 100%;
  text-align: center;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.6;
  margin-bottom: 10px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
}
body #wrapper section.shop_index .purchase .purchaseButton .purchaseButton__btn--noItem,
body #wrapper section.shop_index .purchase .purchaseButton .purchaseButton__btn--disabled,
body #wrapper section.shop_index .purchase .purchaseButton .purchaseButton__btn--endOfSale {
  background-color: #EEE;
  color: #999;
  width: calc(100% - 20px);
}
body #wrapper section.shop_index .purchase .purchaseButton .purchaseButton__btn--comingSoonStay {
  background-color: #FAEAEF;
  color: #522e15;
}
body #wrapper section.shop_index .purchase .purchaseButton .purchaseButton__btn--addToCart {
  background-color: #000;
  color: #FFF;
}
body #wrapper section.shop_index .purchase #itemSelect {
  margin-bottom: 20px;
}
body #wrapper section.shop_index .purchase #itemSelect select {
  outline: none !important;
}
body #wrapper section.shop_index .purchase #itemSelect select:focus {
  outline: none !important;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
body #wrapper section.shop_index .purchase #itemSelect .purchaseElement {
  margin-bottom: 20px;
}
body #wrapper section.shop_index .purchase #itemSelect .purchaseElement select {
  margin-bottom: 0px;
}
body #wrapper section.shop_index .purchase #itemSelect .itemOptionElement {
  margin-bottom: 40px;
}
body #wrapper section.shop_index .purchase #itemSelect .itemOptionElement .itemOption__name {
  margin-bottom: 5px;
}
body #wrapper section.shop_index .purchase #itemSelect .itemOption__caption {
  line-height: 1.6;
  margin-bottom: 10px;
}
body #wrapper section.shop_index .purchase #reportBtn #openIllegalReport {
  display: block;
  text-align: right;
}
body #wrapper section.shop_index #law {
  width: calc(100% - 40px);
  margin-left: auto;
  margin-right: auto;
  left: 0px;
  right: 0px;
  text-align: left;
}
body #wrapper section.shop_index #law h2 {
  margin-bottom: 40px;
}
body #wrapper section.shop_index #law h3 {
  margin-bottom: 5px;
}
body #wrapper section.shop_index #law p {
  line-height: 1.6;
  margin-bottom: 30px;
}
body #wrapper section.shop_index #privacy {
  text-align: left;
  width: calc(100% - 40px);
  margin-left: auto;
  margin-right: auto;
  left: 0px;
  right: 0px;
}
body #wrapper section.shop_index #privacy h2 {
  font-size: 2rem;
  margin-bottom: 40px;
}
body #wrapper section.shop_index #privacy .privacy_intro {
  line-height: 1.6;
  margin-bottom: 20px;
}
body #wrapper section.shop_index #privacy dl dt {
  font-weight: bold;
  font-size: 1.4rem;
  margin-bottom: 5px;
}
body #wrapper section.shop_index #privacy dl dd {
  line-height: 1.6;
  margin-bottom: 30px;
  margin-left: 15px;
}
body #wrapper section.shop_index #privacy dl dd ul li {
  line-height: 1.6;
  margin-bottom: 10px;
}
body #wrapper section.shop_index .inquirySection {
  text-align: left;
  width: calc(100% - 40px);
  margin-left: auto;
  margin-right: auto;
  left: 0px;
  right: 0px;
}
body #wrapper section.shop_index .inquirySection h1 {
  font-size: 2rem;
  margin-bottom: 40px;
}
body #wrapper section.shop_index .inquirySection p {
  line-height: 1.6;
  margin-bottom: 20px;
}
body #wrapper section.shop_index .inquirySection form dl dt {
  font-weight: bold;
  font-size: 1.4rem;
  margin-bottom: 5px;
}
body #wrapper section.shop_index .inquirySection form dl dd {
  margin-left: 0px;
  margin-bottom: 30px;
}
body #wrapper section.shop_index .inquirySection form dl dd input[type=text] {
  width: calc(100% - 10px);
  border: 1px solid #ddd;
}
body #wrapper section.shop_index .inquirySection form dl dd textarea {
  width: calc(100% - 10px);
  border: 1px solid #ddd;
  height: 350px;
  padding: 5px;
}
body #wrapper section.shop_index .inquirySection form .control-panel input[type=submit] {
  display: block;
  padding: 20px 0px;
  width: 100%;
  background-color: #000;
  color: #FFF;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  font-weight: bold;
  line-height: 1.4;
}
body #wrapper section.shop_index div.backshop {
  text-align: center;
}
body #wrapper section.shop_index div.backshop a {
  margin-left: auto;
  margin-right: auto;
  left: 0px;
  right: 0px;
  background-color: #522E15;
  color: #FFF;
  font-family: a-otf-ud-shin-go-pr6n, sans-serif;
  font-style: normal;
  font-weight: 300;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 15px 0px 15px 0px;
  -webkit-border-radius: 15px 0px 15px 0px;
  -moz-border-radius: 15px 0px 15px 0px;
  font-size: 1.4rem;
  letter-spacing: 0.3rem;
}
body #wrapper section.shop_index div.backshop a:hover {
  border-radius: 0px 0px 0px 0px;
  -webkit-border-radius: 0px 0px 0px 0px;
  -moz-border-radius: 0px 0px 0px 0px;
  font-weight: bold;
}
body #wrapper section.card {
  margin-left: auto;
  margin-right: auto;
  left: 0px;
  right: 0px;
}
body #wrapper section.card main {
  text-align: center;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  left: 0px;
  right: 0px;
}
body #wrapper section.card main > .logo {
  width: 60px;
  margin-left: auto;
  margin-right: auto;
  left: 0px;
  right: 0px;
  margin-bottom: 10px;
}
body #wrapper section.card main > .logo svg {
  fill: #333;
}
body #wrapper section.card main > p.name {
  font-size: 2rem;
  margin-bottom: 20px;
  font-family: "futura-pt", sans-serif;
}
body #wrapper section.card main > ul {
  width: 220px;
  margin-left: auto;
  margin-right: auto;
  left: 0px;
  right: 0px;
}
body #wrapper section.card main > ul > li {
  margin-bottom: 15px;
}
body #wrapper section.card main > ul > li a {
  background: radial-gradient(#333, #666);
  color: #FFF;
  height: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-family: "futura-pt", sans-serif;
}
body #wrapper section.card main > ul > li a:before {
  margin-right: 8px;
  -webkit-transform: rotate(-10deg);
  -moz-transform: rotate(-10deg);
  -ms-transform: rotate(-10deg);
  -o-transform: rotate(-10deg);
  transform: rotate(-10deg);
}
body #wrapper section.card main > ul > li.E-Mail > a:before {
  content: "\f0e0";
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  color: #FFF;
  font-size: 1.8rem;
}
body #wrapper section.card main > ul > li.X > a:before {
  content: "\f099";
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
  color: #FFF;
  font-size: 2.2rem;
}
body #wrapper section.card main > ul > li.Instagram > a {
  background: linear-gradient(45deg, #fed475 0%, #e53d5d 50%, #c23186 70%, #9c38bb 100%);
  color: #FFF;
}
body #wrapper section.card main > ul > li.Instagram > a:before {
  content: "\f16d";
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
  color: #FFF;
  font-size: 2.2rem;
}
body #wrapper section.card main > ul > li.Tiktok > a {
  color: #FFF;
}
body #wrapper section.card main > ul > li.Tiktok > a:before {
  content: "\e07b";
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
  color: #FFF;
  font-size: 2.2rem;
}
body #wrapper section.card main > ul > li.LINE > a {
  background: linear-gradient(#65bc58, #13bf00);
  color: #FFF;
}
body #wrapper section.card main > ul > li.LINE > a:before {
  content: "\f3c0";
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
  color: #FFF;
  font-size: 2.2rem;
}
body #wrapper section.teather main {
  padding-top: 60px;
  height: calc(100vh - 60px);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
body #wrapper section.teather main > div {
  text-align: center;
}
body #wrapper section.teather main > div b {
  font-family: baskerville-display-pt, serif;
  font-weight: 400;
  font-style: normal;
  font-size: 2rem;
  margin-bottom: 40px;
}
body #wrapper section.teather main > div strong {
  font-family: baskerville-display-pt, serif;
  font-weight: 400;
  font-style: normal;
  font-size: 3.5rem;
  margin-bottom: 40px;
}
body #wrapper section.invitation main {
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  left: 0px;
  right: 0px;
}
body #wrapper section.invitation main > h2 {
  line-height: 1.8;
  margin-bottom: 70px;
}
body #wrapper section.invitation main > .contents > ul form > li {
  text-align: left;
  margin-bottom: 50px;
}
body #wrapper section.invitation main > .contents > ul form > li:last-of-type {
  margin-bottom: 0px;
}
body #wrapper section.invitation main > .contents > ul form > li > h4 {
  margin-bottom: 10px;
}
body #wrapper section.invitation main > .contents > ul form > li > div {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
body #wrapper section.invitation main > .contents > ul form > li input[type=text] {
  padding: 3px;
}
body #wrapper section.form main {
  width: calc(100% - 40px);
  margin-left: auto;
  margin-right: auto;
  left: 0px;
  right: 0px;
}
body #wrapper section.form main > p {
  line-height: 1.6;
  text-align: center;
  font-size: 1.6rem;
}
body #wrapper section.form main > div.inputform > h4 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
body #wrapper section.form main > div.inputform > h4:before, body #wrapper section.form main > div.inputform > h4:after {
  content: "";
  display: block;
  height: 30px;
  width: 8px;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}
body #wrapper section.form main > div.inputform > h4:before {
  border-left: 1px solid #000;
}
body #wrapper section.form main > div.inputform > h4:after {
  border-right: 1px solid #000;
}
body #wrapper section.form main > div.inputform > h4 > span {
  color: #000;
  font-size: 1.4rem;
  letter-spacing: 0.2rem;
  font-weight: 400;
  display: inline-block;
  position: relative;
  margin: 4px 10px 0px 10px;
  line-height: 2;
}
body #wrapper section.form main > div.inputform > form > ul {
  width: calc(100% - 40px);
  margin-left: auto;
  margin-right: auto;
  left: 0px;
  right: 0px;
}
body #wrapper section.form main > div.inputform > form > ul > li {
  margin-bottom: 30px;
  text-align: left;
}
body #wrapper section.form main > div.inputform > form > ul > li:last-of-type {
  margin-bottom: 0px;
}
body #wrapper section.form main > div.inputform > form > ul > li > p.must {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
body #wrapper section.form main > div.inputform > form > ul > li > p.must > span {
  font-size: 1.4rem;
}
body #wrapper section.form main > div.inputform > form > ul > li > p.must:after {
  content: "必須";
  font-size: 1.1rem;
  background-color: #62BFB3;
  padding: 5px 10px;
  color: #FFF;
}
body #wrapper section.form main > div.inputform > form > ul > li > div input[type=text] {
  width: calc(100% - 2px);
  margin-bottom: 3px;
  border: 1px solid #bbb;
}
body #wrapper section.form main > div.inputform > form > ul > li > div span {
  font-size: 1.1rem;
  color: #808080;
}
body #wrapper section.form main > div.inputform > form > ul > li > div textarea {
  width: calc(100% - 2px);
  height: 300px;
  border: 1px solid #bbb;
}
body #wrapper section.form main > div.inputform > form > ul > li > div label {
  position: relative;
  display: block;
}
body #wrapper section.form main > div.inputform > form > ul > li > div label select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  padding: 0.75em 0.85em;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0px;
  outline: none;
  background-clip: border-box;
  background-color: #FFF;
}
body #wrapper section.form main > div.inputform > form > ul > li > div label select:focus {
  border: 1px solid #0075ff;
}
body #wrapper section.form main > div.inputform > form > ul > li > div label:after {
  content: "\f078";
  font-family: "Font Awesome 5 Pro";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  margin: auto;
  font-weight: 900;
  right: 10px;
  color: #666;
}
body #wrapper section.form main > div.confirm {
  margin-bottom: 30px;
}
body #wrapper section.form main > div.confirm > form > ul {
  background-color: #FFF;
  padding: 0px 10px;
  width: calc(100% - 40px - 20px);
  margin-left: auto;
  margin-right: auto;
  left: 0px;
  right: 0px;
  margin-bottom: 30px;
}
body #wrapper section.form main > div.confirm > form > ul > li {
  text-align: left;
  padding: 30px 0px;
  border-bottom: 1px solid #BFBFBF;
}
body #wrapper section.form main > div.confirm > form > ul > li:last-of-type {
  border: none;
}
body #wrapper section.form main > div.confirm > form > ul > li > p {
  display: block;
  margin-bottom: 10px;
}
body #wrapper section.form main > div.confirm > form > ul > li > p > span {
  color: #4D4D4D;
  font-size: 1.1rem;
}
body #wrapper section.form main > div.confirm > form > ul > li > div > p {
  line-height: 1.6;
}
body #wrapper section.message main p {
  line-height: 1.6;
  text-align: center;
  font-size: 1.6rem;
}
body > div.line {
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 5;
}
body > div.line a {
  background: linear-gradient(#FF6A6E, #FF151B);
  filter: drop-shadow(3px 3px 5px rgba(0, 0, 0, 0.6));
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  padding: 10px 15px;
  display: block;
  text-align: center;
}
body > div.line a p {
  color: #FFF;
  font-size: 1.2rem;
  display: block;
  margin-bottom: 8px;
}
body > div.line a span {
  font-weight: bold;
  display: block;
  margin-bottom: 8px;
  color: #FFF;
}
body > div.line a > div {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFF;
}
body > div.line a > div i {
  font-size: 2em;
}
body > div.line a > div p {
  font-size: 1.6rem;
  margin-left: 10px;
}
body .galleryWrapper .swiper-container {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  position: fixed;
  top: 0px;
  left: 0px;
  height: 100vh;
  width: 100%;
  transform: scale(0);
  z-index: 100;
}
body .galleryWrapper .swiper-container > .swiper-wrapper > .swiper-slide {
  position: relative;
}
body .galleryWrapper .swiper-container > .swiper-wrapper > .swiper-slide > div {
  width: calc(100% - 40px);
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  left: 0px;
  right: 0px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  margin: auto;
}
body .galleryWrapper .swiper-container > .swiper-wrapper > .swiper-slide > div img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}
body .galleryWrapper .swiper-container:after {
  content: "";
  height: 100%;
  width: 100%;
  top: 0px;
  left: 0px;
  position: absolute;
  display: block;
  background-color: rgba(0, 0, 0, 0.6);
}
body .galleryWrapper .swiper-container .next, body .galleryWrapper .swiper-container .prev {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  margin: auto;
  font-size: 3.8rem;
  color: #FFF;
  cursor: pointer;
  z-index: 2;
  text-shadow: #999 0 0 3px;
}
body .galleryWrapper .swiper-container .next {
  right: 10px;
}
body .galleryWrapper .swiper-container .prev {
  left: 10px;
}
body .galleryWrapper .swiper-container .swiper-button-disabled {
  display: none;
}
body .galleryWrapper .swiper-container .btnClose {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 3.8rem;
  z-index: 2;
  line-height: 1;
  color: #FFF;
  cursor: pointer;
}
body footer {
  background-color: #fddddd;
  background-size: 5px 5px;
  z-index: 2;
  position: relative;
  padding: 10px 0px 15px 0px;
  text-align: center;
}
body footer .wave {
  position: absolute;
  top: -69px;
  left: 0px;
  width: 100%;
}
body footer > .officialSNS {
  margin-bottom: 30px;
}
body footer > .officialSNS > ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
body footer > .officialSNS > ul > li {
  margin-right: 10px;
}
body footer > .officialSNS > ul > li:last-of-type {
  margin-right: 0px;
}
body footer > .officialSNS > ul > li > a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  border-radius: 50%;
  border: 1px solid #2f2121;
  color: #2f2121;
  width: 30px;
  height: 30px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
body footer > .officialSNS > ul > li > a:hover {
  opacity: 0.6;
}
body footer > .officialSNS > ul > li > a i {
  font-size: 1.8rem;
}
body footer > .logo {
  margin-bottom: 40px;
}
body footer > .logo > .logo {
  width: 50px;
  margin-left: auto;
  margin-right: auto;
  left: 0px;
  right: 0px;
  margin-bottom: 20px;
}
body footer > .logo > .logo svg * {
  fill: #2f2121 !important;
}
body footer > .logo > .typo {
  width: 180px;
  margin-left: auto;
  margin-right: auto;
  left: 0px;
  right: 0px;
}
body footer > .logo > .typo svg * {
  fill: #2f2121 !important;
}
body footer > .copy {
  color: #2f2121;
  font-size: 1rem;
}
@media screen and (min-width: 0px) {
  body .breakpoint {
    font-family: basic;
  }
}
@media screen and (min-width: 768px) {
  body .breakpoint {
    font-family: point1;
  }
  body br.point2 {
    display: none;
  }
  body br.basic {
    display: none;
  }
  body br.point1 {
    display: inline-block;
  }
  body .bg_logo {
    top: 800px;
    width: 900px;
  }
  body .wave {
    height: 130px;
  }
  body header {
    height: 80px;
    display: flex;
  }
  body header > div > .logos > a {
    width: 180px;
  }
  body header > div > .logos > a > .pon {
    width: 45px;
  }
  body header > div > .logos > a > .typo {
    width: 120px;
  }
  body header > div > .logos > div {
    width: 180px;
  }
  body header #baseMenu {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    margin: auto;
    width: auto;
  }
  body header #baseMenu > ul {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
  }
  body header #baseMenu > ul > li {
    margin-right: 10px;
  }
  body header #baseMenu > ul > li:last-of-type {
    margin-right: 0px;
  }
  body header #baseMenu > ul > li a {
    display: block;
    padding: 5px 5px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    background-color: #FFF;
  }
  body header #baseMenu > ul > li a img {
    width: 20px;
    height: auto !important;
  }
  body .headSns {
    top: 25px;
  }
  body .toggle {
    top: 30px;
  }
  body #wrapper .mainVis {
    height: auto;
    padding-top: 50%;
  }
  body #wrapper .mainVis > div.step {
    width: 20%;
    position: absolute;
    top: 8%;
  }
  body #wrapper .mainVis > div.stars {
    top: 50%;
    right: 28%;
    width: 15%;
    height: 40%;
  }
  body #wrapper .mainVis > div.stars > div {
    position: absolute;
    width: 25%;
  }
  body #wrapper .mainVis > div.stars div:nth-of-type(1) {
    top: 2%;
    left: 15%;
  }
  body #wrapper .mainVis > div.stars div:nth-of-type(2) {
    top: 76%;
    left: 25%;
  }
  body #wrapper .mainVis > div.stars div:nth-of-type(3) {
    top: 25%;
    left: 85%;
  }
  body #wrapper .mainVis > div.title {
    position: absolute;
    text-align: center;
    top: 43%;
    left: auto;
    right: 7%;
    font-size: clamp(3rem, 4.7vw, 6rem);
  }
  body #wrapper .mainVis > div.title p:nth-of-type(1) {
    margin-bottom: 20px;
  }
  body #wrapper .mainVis .vis_bg {
    width: 52%;
    height: 100%;
    position: absolute;
    right: 0px;
    left: auto;
  }
  body #wrapper .mainVis #vis {
    margin-top: 0px;
    position: absolute;
    top: 0px;
    left: 0;
    z-index: 3;
    width: 53%;
    clip-path: url(#visShapePoint1);
  }
  body #wrapper .mainVis #vis img {
    top: -6.5%;
  }
  body #wrapper .mainVis > .info {
    max-width: 480px;
  }
  body #wrapper .mainVis > .info > p {
    top: -10px;
    right: 10px;
  }
  body #wrapper .mainVis > .info > p > span {
    font-size: 2rem;
  }
  body #wrapper .mainVis > .info > ul {
    padding: 15px 20px;
  }
  body #wrapper .mainVis > .info > ul > li {
    margin-bottom: 12px;
  }
  body #wrapper .mainVis > .info > ul > li span {
    width: 85px;
    font-size: 1.2rem;
  }
  body #wrapper .mainVis > .info > ul > li p {
    width: calc(100% - 85px);
    font-size: 1.2rem;
  }
  body #wrapper .mainVis > .info > ul > a {
    background-color: #522E15;
    display: inline-block;
    border-radius: 12px 6px 12px 6px;
    -webkit-border-radius: 12px 6px 12px 6px;
    -moz-border-radius: 12px 6px 12px 6px;
    padding: 5px 10px 5px 10px;
    position: absolute;
    z-index: 2;
    bottom: -15px;
    right: 0px;
    text-align: center;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transition: all 0.3s;
    transition: all 0.3s;
  }
  body #wrapper .mainVis > .info > ul > a:hover {
    border-radius: 0px 0px 0px 0px;
    -webkit-border-radius: 0px 0px 0px 0px;
    -moz-border-radius: 0px 0px 0px 0px;
  }
  body #wrapper .mainVis > .info > ul > a span {
    color: #FFF;
    font-family: "futura-pt", sans-serif;
    font-size: 1.3rem;
    font-weight: bold;
  }
  body #wrapper section {
    margin-bottom: 100px;
    text-align: center;
  }
  body #wrapper section strong.cap > div p {
    font-size: 3.2rem;
    font-family: "futura-pt", sans-serif;
    letter-spacing: 0.1rem;
    color: #522E15;
    position: relative;
    z-index: 2;
  }
  body #wrapper section strong.cap > div p span {
    color: #522E15 !important;
    font-size: 1.6rem;
    line-height: 1.6;
    filter: drop-shadow(2px 2px 2px #FFF);
  }
  body #wrapper section:not(.top_member) > div.step {
    width: 250px;
    position: absolute;
    top: -100px;
    z-index: 10;
  }
  body #wrapper section main {
    padding-top: 60px;
  }
  body #wrapper section.top_about {
    padding-top: 60px;
  }
  body #wrapper section.top_about .carousel {
    padding-bottom: 100px;
  }
  body #wrapper section.top_about .theme {
    top: -50px;
    right: 12%;
    width: 24%;
  }
  body #wrapper section.top_about .logo {
    width: 350px;
    height: 75.25px;
    margin-bottom: 40px;
  }
  body #wrapper section.top_about > p {
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    left: 0px;
    right: 0px;
    font-size: 1.4rem;
  }
  body #wrapper section.top_member > main > ul {
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    left: 0px;
    right: 0px;
    padding-top: 30px;
  }
  body #wrapper section.top_member > main > ul > li {
    width: calc((100% - 40px) / 3);
    margin-bottom: 60px;
    margin-right: 20px;
  }
  body #wrapper section.top_member > main > ul > li:nth-of-type(odd) {
    margin-right: 20px;
  }
  body #wrapper section.top_member > main > ul > li:nth-of-type(3n) {
    margin-right: 0px;
  }
  body #wrapper section.top_member > main > ul > li > div a b {
    font-size: 1.6rem;
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }
  body #wrapper section.top_member > main > ul > li > div a b .viewmore {
    display: none;
    font-family: "futura-pt", sans-serif;
  }
  body #wrapper section.top_movie main > ul {
    width: 850px;
    margin-left: auto;
    margin-right: auto;
    left: 0px;
    right: 0px;
    display: flex;
    flex-wrap: wrap;
  }
  body #wrapper section.top_movie main > ul > li {
    width: calc((100% - 20px) / 2);
    margin-bottom: 80px;
  }
  body #wrapper section.top_movie main > ul > li:nth-of-type(odd) {
    margin-right: 20px;
  }
  body #wrapper section.top_movie main > ul > li > p {
    overflow: visible;
    white-space: normal;
  }
  body #wrapper section.top_movie main > ul.only {
    width: 450px;
  }
  body #wrapper section.top_movie main > ul.only > li {
    width: 100%;
  }
  body #wrapper section.top_music main > ul {
    max-width: 800px;
  }
  body #wrapper section.top_music main > ul > li {
    width: calc((100% - 40px) / 3);
  }
  body #wrapper section.top_music main > ul > li:nth-of-type(even) {
    margin-right: 20px;
  }
  body #wrapper section.top_music main > ul > li:nth-of-type(3n) {
    margin-right: 0px;
  }
  body #wrapper section.top_music main > ul > li a > div > span {
    font-size: 1.2rem;
    display: block;
    margin-bottom: 3px;
  }
  body #wrapper section.top_schedule > div:not(.infiniteslide_wrap) {
    width: 850px;
    margin-left: auto;
    margin-right: auto;
    left: 0px;
    right: 0px;
  }
  body #wrapper section.top_schedule main {
    width: 850px;
    margin-left: auto;
    margin-right: auto;
    left: 0px;
    right: 0px;
  }
  body #wrapper section.top_schedule main#calendar .fc-view-harness {
    height: 480px !important;
  }
  body #wrapper section.member_profile > main {
    width: calc(100% - 40px);
    margin-left: auto;
    margin-right: auto;
    left: 0px;
    right: 0px;
    max-width: 1080px;
    text-align: left;
  }
  body #wrapper section.member_profile > main:after {
    content: "";
    clear: both;
    height: 0px;
    visibility: hidden;
    display: block;
  }
  body #wrapper section.member_profile > main > div.name {
    float: right;
    width: calc((100% - 50px) / 2);
  }
  body #wrapper section.member_profile > main > div.imageSwiper {
    float: left;
    width: calc((100% - 50px) / 2);
    margin-bottom: 0px;
  }
  body #wrapper section.member_profile > main > div.imageSwiper > div {
    margin-bottom: 20px;
  }
  body #wrapper section.member_profile > main > div.imageSwiper > div .swiper-container {
    width: 100%;
  }
  body #wrapper section.member_profile > main > div.spec {
    float: right;
    width: calc((100% - 50px) / 2);
  }
  body #wrapper section.member_profile > main > div.spec > ul.snsList {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 40px;
  }
  body #wrapper section.member_profile > main > div.spec > ul.snsList > li {
    margin-right: 5px;
  }
  body #wrapper section.member_profile > main > div.spec > ul.snsList > li:last-of-type {
    margin-right: 0px;
  }
  body #wrapper section.member_profile > main > div.spec > ul.snsList > li > a {
    width: 33px;
    height: 33px;
  }
  body #wrapper section.member_profile > main > div.spec > ul.snsList > li > a i {
    font-size: 2rem;
  }
  body #wrapper section.member_profile > main > div.spec > ol > li {
    margin-bottom: 20px;
  }
  body #wrapper section.general_wrap main {
    max-width: 800px;
  }
  body #wrapper section.general_wrap main .general_head {
    margin-bottom: 20px;
  }
  body #wrapper section.general_wrap main .general_head h2 {
    font-size: 2rem;
  }
  body #wrapper section.archive_wrap main {
    max-width: 650px;
  }
  body #wrapper section.archive_wrap main .paging .wp-pagenavi .previouspostslink {
    position: absolute;
    left: 0px;
  }
  body #wrapper section.archive_wrap main .paging .wp-pagenavi .nextpostslink {
    position: absolute;
    right: 0px;
  }
  body #wrapper section.shop_index .itemList {
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    left: 0px;
    right: 0px;
  }
  body #wrapper section.shop_index .itemList > .item {
    width: calc((100% - 60px) / 3);
    margin-right: 30px;
  }
  body #wrapper section.shop_index .itemList > .item:nth-of-type(even) {
    margin-right: 30px;
  }
  body #wrapper section.shop_index .itemList > .item:nth-of-type(3n) {
    margin-right: 0px;
  }
  body #wrapper section.shop_index .pointAttention {
    width: 450px;
  }
  body #wrapper section.shop_index .pointAttention h5 {
    text-align: center;
  }
  body #wrapper section.shop_index .pointAttention ul li {
    text-align: left;
  }
  body #wrapper section.shop_index main.itemdetailWrap {
    max-width: 1080px;
    margin-left: auto;
    margin-right: auto;
    left: 0px;
    right: 0px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  body #wrapper section.shop_index main.itemdetailWrap .imageSwiper {
    width: 45%;
  }
  body #wrapper section.shop_index main.itemdetailWrap .imageSwiper > div .swiper-container {
    width: 100%;
  }
  body #wrapper section.shop_index main.itemdetailWrap .purchase {
    width: 45%;
  }
  body #wrapper section.shop_index main.itemdetailWrap .purchase h4 {
    font-size: 1.8rem;
    line-height: 1.6;
    margin-bottom: 5px;
  }
  body #wrapper section.shop_index main.itemdetailWrap .purchase .itemDescription {
    margin-bottom: 30px;
  }
  body #wrapper section.shop_index main.itemdetailWrap .purchase .itemPrice {
    margin-bottom: 30px;
  }
  body #wrapper section.shop_index main.itemdetailWrap .purchase .purchaseButton .purchaseButton__btn {
    width: 300px;
  }
  body #wrapper section.shop_index main.itemdetailWrap .purchase #reportBtn #openIllegalReport {
    text-align: left;
  }
  body #wrapper section.shop_index #law {
    max-width: 650px;
  }
  body #wrapper section.shop_index #privacy {
    max-width: 650px;
  }
  body #wrapper section.shop_index .inquirySection {
    max-width: 550px;
  }
}
@media screen and (min-width: 1060px) {
  body .breakpoint {
    font-family: point2;
  }
  body br.basic {
    display: none;
  }
  body br.point1 {
    display: none;
  }
  body br.point2 {
    display: inline-block;
  }
  body.shop > nav > div.nav > div.navs > ul {
    width: 520px;
  }
  body #wrapper section.top_about .carousel .swiper-container {
    max-width: 900px;
    overflow: visible;
  }
  body #wrapper section.top_about .carousel .swiper-container .prev {
    left: -100px;
  }
  body #wrapper section.top_about .carousel .swiper-container .next {
    right: -100px;
  }
  body #wrapper section.member_profile > div.step {
    top: -100px;
  }
  body #wrapper section.member_profile > main > div.name {
    width: calc(100% - 450px - 60px);
  }
  body #wrapper section.member_profile > main > div.imageSwiper {
    width: 450px;
  }
  body #wrapper section.member_profile > main > div.spec {
    width: calc(100% - 450px - 60px);
  }
  body #wrapper section.shop_index .itemList {
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
    left: 0px;
    right: 0px;
  }
  body #wrapper section.shop_index .itemList > .item {
    width: calc((100% - 120px) / 4);
    margin-right: 40px;
  }
  body #wrapper section.shop_index .itemList > .item:nth-of-type(even) {
    margin-right: 40px;
  }
  body #wrapper section.shop_index .itemList > .item:nth-of-type(3n) {
    margin-right: 40px;
  }
  body #wrapper section.shop_index .itemList > .item:nth-of-type(4n) {
    margin-right: 0px;
  }
  body #wrapper section.general_wrap main {
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
    left: 0px;
    right: 0px;
  }
  body #wrapper section.general_wrap main .masonry > div.item {
    width: calc((100% - 40px) / 3);
  }
}
body.noscroll {
  position: fixed;
  overflow-y: scroll;
}

.breakpoint {
  opacity: 0;
  width: 0px;
  height: 0px;
  position: fixed;
  bottom: 0px;
  left: 0px;
}