@charset "UTF-8";@import url("https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@400;700&display=swap");@import url("https://fonts.googleapis.com/css2?family=EB+Garamond&display=swap");@-webkit-keyframes isl {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }

    to {
        -webkit-transform: translate3d(-100vw, 0, 0);
        transform: translate3d(-100vw, 0, 0)
    }
}

@keyframes isl {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }

    to {
        -webkit-transform: translate3d(-100vw, 0, 0);
        transform: translate3d(-100vw, 0, 0)
    }
}

@-webkit-keyframes isr {
    0% {
        -webkit-transform: translate3d(-100vw, 0, 0);
        transform: translate3d(-100vw, 0, 0)
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes isr {
    0% {
        -webkit-transform: translate3d(-100vw, 0, 0);
        transform: translate3d(-100vw, 0, 0)
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@-webkit-keyframes ist {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }

    to {
        -webkit-transform: translate3d(0, -10000px, 0);
        transform: translate3d(0, -10000px, 0)
    }
}

@keyframes ist {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }

    to {
        -webkit-transform: translate3d(0, -10000px, 0);
        transform: translate3d(0, -10000px, 0)
    }
}

* {
    position: relative;
    margin: 0;
    padding: 0;
    border: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    list-style: none;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

#sp {
    display: none;
}

ol {
    display: block;
    list-style-type: decimal;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 40px;
    unicode-bidi: isolate;
}

::-moz-selection {
    background-color: #888;
    color: #111
}

::selection {
    background-color: #888;
    color: #111
}

html {
    width: 100%;
    height: 100%;
    font-size: 62.5%
}

body {
    width: 100%;
    height: 100%;
    color: #444;
    font-family: serif;
    font-weight: 700;
    line-height: 1.5
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
    background-image: url("../img/baba.jpg");
    background-size: cover;
  background-position: center;
  background-attachment: scroll; /* iOSでは fixed を使わない */
  z-index: -1;
  pointer-events: none;
}

img,svg {
    max-width: 100%;
    height: auto;
    vertical-align: top
}

a {
    text-decoration: none;
}

.pc {
    width: 100%;
    margin: 0;
    padding: 0
}

@media (max-width: 1020px) {
    .pc {
        display:none;
    }
}

.sp {
    width: 100%;
    margin: 0;
    padding: 0
}

@media (min-width: 1020px) {
    .sp {
        display:none;
    }
}

/* Loading背景画面設定　*/
#splash {
    /*fixedで全面に固定*/
      position: fixed;
      width: 100%;
      height: 100%;
      z-index: 999;
      background:#333;
      text-align:center;
      color:#fff;
    }
    
    /* Loading画像中央配置　*/
    #splash_logo {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
    }
    
    /* Loading アイコンの大きさ設定　*/
    #splash_logo img {
      width:260px;
    }
    
    /* fadeUpをするアイコンの動き */
    .fadeUp{
    animation-name: fadeUpAnime;
    animation-duration:0.5s;
    animation-fill-mode:forwards;
    opacity: 0;
    }
    
    @keyframes fadeUpAnime{
      from {
        opacity: 0;
      transform: translateY(100px);
      }
    
      to {
        opacity: 1;
      transform: translateY(0);
      }
    }

.fadeRight{
	animation-name:fadeRightAnime;
	animation-duration:1s;
	animation-fill-mode:forwards;
	opacity:0;
	}
	
	@keyframes fadeRightAnime{
	  from {
		opacity: 0;
	  transform: translateX(100px);
	  }
	
	  to {
		opacity: 1;
	  transform: translateX(0);
	  }
	}


/* 左から */

.fadeLeft{
	animation-name:fadeLeftAnime;
	animation-duration:0.5s;
	animation-fill-mode:forwards;
	opacity:0;
	}
	
	@keyframes fadeLeftAnime{
	  from {
		opacity: 0;
	  transform: translateX(-100px);
	  }
	
	  to {
		opacity: 1;
	  transform: translateX(0);
	  }
	}


.fadeUp{
	animation-name:fadeUpAnime;
	animation-duration:1s;
	animation-delay: 0.3s;
	animation-fill-mode:forwards;
	opacity:0;
	}
	
	@keyframes fadeUpAnime{
	  from {
		opacity: 0;
	  transform: translateY(100px);
	  }
	
	  to {
		opacity: 1;
	  transform: translateY(0);
	  }
	}

	.fadeInTrigger,
	.fadeUpTrigger,
	.fadeDownTrigger,
	.fadeLeftTrigger,
	.fadeRightTrigger{
		opacity: 0;
	}

	.blur{
		animation-name:blurAnime;
		animation-duration:1s;
		animation-fill-mode:forwards;
	  }
	  
	  @keyframes blurAnime{
		from {
		filter: blur(10px);
		transform: scale(1.02);
		opacity: 0;
		}
	  
		to {
		filter: blur(0);
		transform: scale(1);
		opacity: 1;
		}
	  }
	  
	  /* スクロールをしたら出現する要素にはじめに透過0を指定　*/
	   
	  .blurTrigger{
		  opacity: 0;
	  }

	  .flipLeft{
		animation-name:flipLeftAnime;
		animation-duration:1s;
		animation-fill-mode:forwards;
		perspective-origin:left center;
		opacity:0;
		}
		
		@keyframes flipLeftAnime{
		  from {
		   transform: perspective(600px) translate3d(0, 0, 0) rotateY(30deg);
		  opacity: 0;
		  }
		
		  to {
		  transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
		  opacity: 1;
		  }
		}

	.flipDownTrigger,
	.flipLeftTrigger,
	.flipLeftTopTrigger,
	.flipRightTrigger,
	.flipRightTopTrigger{
		  opacity: 0;
}

.page-wrapper {
    padding: 50px 8%;
    overflow: hidden;
}

.page-wrapper2 {
    padding: 5px 8%;
    overflow: hidden;
    background-color: #5050508f;
}

.cast-page .header {
    background-image: url("../img/AdobeStock_379355893.jpeg");
    background-size: cover;
}

.recruit-page {
    background-color: #000000;
}

.recruit-page .header {
    width: 100%;
}

.title-recruit {
    font-size:48px;
    text-align: center;
    color:#ec008a;
    line-height:3;
}

@media (max-width: 1020px) {
    .title-recruit {
        font-size:18px;
        text-align: left;
        color:#ff7ac8;
        line-height:3;
        text-shadow: 2px 2px 3px #000000;
    }
}

.title-produce {
    font-family: serif;
    font-weight: bold;
    font-size:48px;
    text-align: center;
    color:#ff0000;
    text-shadow:
    1px 1px 0 #ffe600,
    -1px 1px 0 #ffe600,
    -1px -1px 0 #ffe600,
    1px -1px 0 #ffe600;
    line-height:3;
}

@media (max-width: 1020px) {
    .title-produce {
        font-family: serif;
        font-weight: bold;
        font-size:20px;
        text-align: center;
        color:#ff0000;
        text-shadow:
        1px 1px 0 #ffe600,
        -1px 1px 0 #ffe600,
        -1px -1px 0 #ffe600,
        1px -1px 0 #ffe600;
        line-height:3;
    }
}

.traffic {
    font-family: serif;
    color: #ffffff;
    font-size:20px;
}

@media (max-width: 1020px) {
    .traffic {
        font-family: serif;
        text-align: left;
        color: #ffffff;
        font-size:14px;
    }
}

@media (min-width: 1020px) {
    .page-wrapper {
        margin:0 auto;
        padding: 100px calc(50% - 480px)
    }
}

@media (min-width: 1020px) {
    .page-wrapper2 {
        margin:0 auto;
        padding: 100px calc(50% - 480px)
    }
}

@media (min-width: 1020px) {
    .header {
        padding: 50px 0;
    }
}

.cmn-section-header {
    margin-bottom: 25px
}

@media (min-width: 1020px) {
    .cmn-section-header {
        margin-bottom:50px
    }
}

.cmn-section-header:before {
    content: '';
    display: block;
    position: absolute;
    bottom: 16px;
    left: -100vw;
    z-index: 0;
    width: 300vw;
    height: 20px;
    background-size: 10px auto;
    opacity: .1;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

@media (min-width: 1020px) {
    .cmn-section-header:before {
        bottom:20px;
        height: 30px;
        background-size: 15px auto
    }
}

.cmn-section-header-link {
    color: #f3f3f3;
    text-decoration: none
}

.cmn-section-header-title {
    font-family: "Fredericka the Great", serif;
    font-size: 40px;
    font-weight: 300;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom
}

.cast-section-header-title {
    font-family: "Fredericka the Great", serif;
    font-size: 50px;
    font-weight: 300;
    margin-top: 150px;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom
}

.system-section-header-title {
    font-family: "Fredericka the Great", serif;
    font-size: 50px;
    font-weight: 300;
    margin-top: 0;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom
}

.access-section-header-title {
    font-family: "Fredericka the Great", serif;
    font-size: 50px;
    font-weight: 300;
    margin-top: 0;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom
}

@media (min-width: 1020px) {
    .cmn-section-header-title {
        font-size:50px
    }
}

.cmn-section-header-title span {
    background: #ffffff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}

.system-section-header-title span {
    background: #1f1f1f;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}

.access-section-header-title span {
    background: #1f1f1f;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}

.access-section-header-title span {
    background: #1f1f1f;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}

.cmn-section-header-lead {
    margin-top: .25em;
    color: #ffffff;
    font-size: 13px;
    font-weight: 400;
    line-height: 1;
    text-align: center
}

.system-section-header-lead {
    margin-top: .25em;
    color: #1f1f1f;
    font-size: 13px;
    font-weight: 400;
    line-height: 1;
    text-align: center
}

@media (min-width: 1020px) {
    .cmn-section-header-lead {
        font-size:15px
    }
}

.cmn-link {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 7px;
    color: #111;
    font-family: "EB Garamond", sans-serif;
    font-size: 15px;
    font-weight: 400;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase
}

@media (min-width: 1020px) {
    .cmn-link {
        -webkit-transition:color .5s;
        -o-transition: color .5s;
        transition: color .5s
    }

    .cmn-link:hover {
        color: #e9b66c
    }
}

.cmn-link-icon {
    width: 6px;
    height: 10px
}

.cmn-link-icon svg {
    width: 6px;
    height: 10px
}

.cmn-link-prev {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    vertical-align: top
}

.cmn-link-prev .cmn-link-label {
    padding-left: 7px
}

.cmn-link-next {
    vertical-align: top
}

.cmn-link-next .cmn-link-label {
    padding-right: 7px
}

.cmn-btn {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    min-width: 200px;
    border: 1px solid #e9b66c;
    border-radius: 0;
    background-color: rgba(233, 182, 108, 0.2);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    line-height: 38px;
    text-align: center;
    text-decoration: none
}

@media (min-width: 1020px) {
    .cmn-btn {
        min-width:320px;
        font-size: 15px;
        line-height: 58px
    }
}

.cmn-btn-label {
    width: 100%;
    white-space: nowrap
}

.cmn-btn-label b {
    font-family: "EB Garamond", sans-serif;
    font-size: 15px;
    font-weight: 400;
    text-transform: uppercase
}

@media (min-width: 1020px) {
    .cmn-btn-label b {
        font-size:18px
    }
}

.cmn-btn-icon {
    position: absolute;
    top: calc(50% - 5px);
    right: 10px
}

@media (min-width: 1020px) {
    .cmn-btn-icon {
        right:15px
    }
}

.cmn-btn-icon svg {
    width: 6px;
    height: 10px
}

.cmn-share {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 50px;
    padding: 15px;
    text-align: center
}

@media (min-width: 1020px) {
    .cmn-share {
        margin-top:50px
    }
}

.cmn-share-title {
    padding: 0 1.5em 0 0;
    color: #e96cc4;
    font-family: "EB Garamond", sans-serif;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase
}

.cmn-share-title:after {
    content: '';
    display: inline-block;
    width: 20px;
    height: 1px;
    background-color: #e9b66c
}

.cmn-share-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.cmn-share-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    background-color: #e96cc4;
    cursor: pointer
}

@media (min-width: 1020px) {
    .cmn-share-item {
        -webkit-transition:-webkit-transform .5s;
        transition: -webkit-transform .5s;
        -o-transition: transform .5s;
        transition: transform .5s;
        transition: transform .5s, -webkit-transform .5s
    }

    .cmn-share-item:hover {
        -webkit-transform: scale(1.2);
        -ms-transform: scale(1.2);
        transform: scale(1.2)
    }
}

.cmn-share-item+.cmn-share-item {
    margin-left: 10px
}

.cmn-share-item-link {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    color: #fff;
    text-decoration: none
}

.cmn-share-item-link svg {
    display: inline-block;
    margin-top: 1px;
    margin-left: 1px;
    width: 14px;
    height: auto
}

.cmn-share-item-twitter .cmn-share-item-link svg {
    width: 16px
}

.cmn-share-item-instagram .cmn-share-item-link svg {
    width: 14px
}

.cmn-share-item-line .cmn-share-item-link svg {
    width: 16px;
    margin-top: 0;
    margin-left: 0
}

.cmn-share-item-tiktok .cmn-share-item-link svg {
    width: 13px
}

.cmn-share-item-pokepara .cmn-share-item-link svg {
    width: 18px;
    margin-top: -1px
}

.cmn-share-item-tripadviser .cmn-share-item-link svg {
    width: 20px
}

.sns-back {
    background: url(../img/AdobeStock_379355893.jpeg);
    background-size: cover;
}

.hr {
    width: 100%;
    height: 30px;
    background-image: url("../img/AdobeStock_653147306.png");
    background-repeat: repeat-x;
    background-position: center top;
    background-size: auto 50px;
}

@media (min-width: 1020px) {
    .hr {
        height:45px;
        background-size: auto 45px
    }
}

.header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 30px 0;
}

@media (min-width: 1020px) {
    .header {
        padding:50px 0
    }
}

.header-logo-link {
    display: block;
}

@media (min-width: 1020px) {
    .header-logo-link {
        -webkit-transition:-webkit-transform .5s;
        transition: -webkit-transform .5s;
        -o-transition: transform .5s;
        transition: transform .5s;
        transition: transform .5s, -webkit-transform .5s
    }

    .header-logo-link:hover {
        -webkit-transform: scale(1.2);
        -ms-transform: scale(1.2);
        transform: scale(1.2)
    }
}

.header-logo-link img {
    width: 300px;
    height: auto;
}

@media (max-width: 1020px) {
    .header-logo-link img {
        width:150px;
        height: auto;
    }
}

.gnavi {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: fixed;
    z-index: 998;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 25px;
    background-color: #181818;
    background-size: 256px;
    opacity: 0;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transition: opacity .5s;
    -o-transition: opacity .5s;
    transition: opacity .5s
}

.gnavi-logo-link {
    color: #e9b66c
}

.gnavi-logo-link img,.gnavi-logo-link svg {
    width: 300px;
    height: auto
}

@media (min-width: 1020px) {
    .gnavi-logo-link img,.gnavi-logo-link svg {
        width:auto;
        height: 250px
    }
}

.gnavi-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 50px
}

@media (min-width: 1020px) {
    .gnavi-list {
        -webkit-box-orient:horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row
    }
}

.gnavi-item {
    margin: 1em 0
}

@media (min-width: 1020px) {
    .gnavi-item {
        margin:0 2em
    }
}

.gnavi-item-link {
    display: inline-block;
    color: #fffd73;
    font-family: serif;
    text-shadow: 2px 2px 3px #9c9c9c;
    font-size: 20px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
    -webkit-transition: -webkit-transform .5s;
    transition: -webkit-transform .5s;
    -o-transition: transform .5s;
    transition: transform .5s;
    transition: transform .5s, -webkit-transform .5s
}

@media (min-width: 1020px) {
    .gnavi-item-link {
        font-size:25px
    }

    .gnavi-item-link:hover {
        -webkit-transform: scale(1.2);
        -ms-transform: scale(1.2);
        transform: scale(1.2)
    }
}

.gnavi-sns-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 50px
}

.gnavi-sns-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 8px;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 100%;
    background-color: transparent;
    cursor: pointer
}

@media (min-width: 1020px) {
    .gnavi-sns-item {
        margin:0 5px;
        -webkit-transition: -webkit-transform .5s;
        transition: -webkit-transform .5s;
        -o-transition: transform .5s;
        transition: transform .5s;
        transition: transform .5s, -webkit-transform .5s
    }

    .gnavi-sns-item:hover {
        -webkit-transform: scale(1.2);
        -ms-transform: scale(1.2);
        transform: scale(1.2)
    }
}

.gnavi-sns-item-link {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    color: #ffffff;
    text-decoration: none
}

.gnavi-sns-item-link svg {
    display: inline-block;
    margin-top: 1px;
    margin-left: 1px;
    width: 16px;
    height: auto
}

.gnavi-sns-item-twitter .gnavi-sns-item-link svg {
    width: 20px
}

.gnavi-sns-item-instagram .gnavi-sns-item-link svg {
    width: 18px
}

.gnavi-sns-item-pokepara .gnavi-sns-item-link svg {
    width: 18px;
    margin-top: -1px
}

.gnavi-sns-item-tripadviser .gnavi-sns-item-link svg {
    width: 22px
}

.gnavi-active {
    opacity: 1;
    pointer-events: auto;
    -webkit-user-select: auto;
    -moz-user-select: auto;
    -ms-user-select: auto;
    user-select: auto
}

.btn-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: fixed;
    z-index: 999;
    top: 30px;
    left: 4%;
    cursor: pointer
}

@media (min-width: 1020px) {
    .btn-menu {
        top:50px;
        left: 50px
    }
}

.btn-menu-line {
    display: block;
    width: 36px;
    height: 1px;
    background-color: #ffffff;
    -webkit-transition: opacity .3s, -webkit-transform .3s;
    transition: opacity .3s, -webkit-transform .3s;
    -o-transition: opacity .3s, transform .3s;
    transition: opacity .3s, transform .3s;
    transition: opacity .3s, transform .3s, -webkit-transform .3s
}

@media (min-width: 1020px) {
    .btn-menu-line {
        width:75px;
        height: 1px
    }
}

.btn-menu-line:nth-of-type(2) {
    margin-top: 8px
}

@media (min-width: 1020px) {
    .btn-menu-line:nth-of-type(2) {
        margin-top:12px
    }
}

.btn-menu-line:nth-of-type(3) {
    margin-top: 8px
}

@media (min-width: 1020px) {
    .btn-menu-line:nth-of-type(3) {
        margin-top:12px
    }
}

.btn-menu-line:nth-of-type(4) {
    position: absolute;
    top: 9px
}

@media (min-width: 1020px) {
    .btn-menu-line:nth-of-type(4) {
        top:13px
    }
}

.btn-menu-line:nth-of-type(5) {
    position: absolute;
    top: 9px
}

@media (min-width: 1020px) {
    .btn-menu-line:nth-of-type(5) {
        top:13px
    }
}

.btn-menu-label,.btn-menu-label-active {
    margin-top: 8px;
    color: #ffffff;
    font-family: "EB Garamond", sans-serif;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: .1em;
    line-height: 1;
    text-decoration: none
}

@media (min-width: 1020px) {
    .btn-menu-label,.btn-menu-label-active {
        margin-top:12px;
        font-size: 13px
    }
}

.btn-menu-label-active {
    display: none
}

.btn-menu-active .btn-menu-line:first-of-type {
    opacity: 0;
    -webkit-transform: scaleX(0.5);
    -ms-transform: scaleX(0.5);
    transform: scaleX(0.5)
}

.btn-menu-active .btn-menu-line:nth-of-type(2) {
    opacity: 0;
    -webkit-transform: scaleX(0.5);
    -ms-transform: scaleX(0.5);
    transform: scaleX(0.5)
}

.btn-menu-active .btn-menu-line:nth-of-type(3) {
    opacity: 0;
    -webkit-transform: scaleX(0.5);
    -ms-transform: scaleX(0.5);
    transform: scaleX(0.5)
}

.btn-menu-active .btn-menu-line:nth-of-type(4) {
    top: 6px;
    -webkit-transform: rotate(28deg) scaleX(1);
    -ms-transform: rotate(28deg) scaleX(1);
    transform: rotate(28deg) scaleX(1)
}

.btn-menu-active .btn-menu-line:nth-of-type(5) {
    top: 6px;
    -webkit-transform: rotate(-28deg) scaleX(1);
    -ms-transform: rotate(-28deg) scaleX(1);
    transform: rotate(-28deg) scaleX(1)
}

.btn-menu-active .btn-menu-label {
    display: none
}

.btn-menu-active .btn-menu-label-active {
    display: block
}

.footer {
    padding: 10px 8%;
    padding-bottom: 60px;
}

@media (min-width: 1020px) {
    .footer {
        padding:100px calc(50% - 480px) 50px
    }
}

.footer-logo {
    width: 100%;
    text-align: center
}

.footer-logo img,.footer-logo svg {
    width: 150px;
    height: auto
}

@media (min-width: 1020px) {
    .footer-logo img,.footer-logo svg {
        width:auto;
        height: 250px
    }
}

.footer-sns {
    margin-top: 25px
}

@media (min-width: 1020px) {
    .footer-sns {
        margin-top:50px
    }
}

.footer-sns .cmn-share-item {
    background-color: #e9b66c;
    background-color: #444
}

.copyright {
    margin-top: 0;
    margin-bottom: 90px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 300;
    line-height: 1;
    letter-spacing: -.01em
}

@media (min-width: 1020px) {
    .copyright {
        text-align:center;
        color: #ffffff;
        font-size: 21px;
        margin-bottom: 250px;
    }
}

.scrolltop {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    position: fixed;
    bottom: 35px;
    right: 4%;
    padding: 2px;
    opacity: 0;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer;
    -webkit-transition: color .5s, opacity .5s;
    -o-transition: color .5s, opacity .5s;
    transition: color .5s, opacity .5s
}

@media (min-width: 1020px) {
    .scrolltop {
        bottom:35px;
        -webkit-transition: color .5s, opacity .5s, -webkit-transform .5s;
        transition: color .5s, opacity .5s, -webkit-transform .5s;
        -o-transition: color .5s, opacity .5s, transform .5s;
        transition: color .5s, opacity .5s, transform .5s;
        transition: color .5s, opacity .5s, transform .5s, -webkit-transform .5s
    }

    .scrolltop:hover {
        -webkit-transform: scale(1.2);
        -ms-transform: scale(1.2);
        transform: scale(1.2)
    }
}

.scrolltop svg {
    width: 35px;
    height: auto
}

.scrolltop-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    width: 100px;
    height: auto;
    overflow: hidden
}

.scrolltop-active {
    opacity: 1;
    pointer-events: auto;
    -webkit-user-select: auto;
    -moz-user-select: auto;
    -ms-user-select: auto;
    user-select: auto
}

.sidetitle {
    position: fixed;
    top: 50%;
    z-index: 0;
    width: 100vh;
    color: #e9b66c;
    font-family: 'Cormorant', serif;
    font-size: 20vh;
    font-weight: 300;
    line-height: 1;
    letter-spacing: -0.05em;
    text-align: center;
    text-transform: uppercase;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    opacity: .1
}

.sidetitle-yumebako {
    left: -45vh;
    color: #fff;
    -webkit-transform: translateY(-50%) rotate(90deg);
    -ms-transform: translateY(-50%) rotate(90deg);
    transform: translateY(-50%) rotate(90deg)
}

.sidetitle-prible {
    right: -45vh;
    color: #000;
    -webkit-transform: translateY(-50%) rotate(-90deg);
    -ms-transform: translateY(-50%) rotate(-90deg);
    transform: translateY(-50%) rotate(-90deg)
}

.cover-slider-wrapper {
    width: 100%;
    text-align: center;
}

.cover-slider {
    background-image: url(../img/AdobeStock_535671839.jpeg);
    background-size: contain;
}

.cover-slider .img {
    width: 640px;
    height: auto;
}


@media (min-width: 1020px) {
    .cover-slider .slick-slide img {
        width:auto;
        height: 640px
    }
}

.cast-slider-wrapper {
    width: 100%
}

.cast-slider-wrapper .slick-slide {
    margin: 0 5px
}

@media (min-width: 1020px) {
    .cast-slider-wrapper .slick-slide {
        margin:0 10px
    }
}

.cast-slider-wrapper .slick-slide a {
    display: block
}

.cast-slider-wrapper .slick-slide img {
    width: 76vw;
    height: 114vw;
    -o-object-fit: cover;
    object-fit: cover
}

@media (min-width: 1020px) {
    .cast-slider-wrapper .slick-slide img {
        width:320px;
        height: 480px
    }
}

.system-slider-wrapper {
    width: 100%
}

@media (min-width: 1020px) {
    .system-slider .slick-slide {
        margin:0 10px
    }
}

.system-slider .slick-slide img {
    width: 84vw;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover
}

@media (min-width: 1020px) {
    .system-slider .slick-slide img {
        width:auto;
        height: 640px
    }
}

.system-slider ul.slick-dots {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    bottom: auto;
    overflow-x: auto
}

.system-slider ul.slick-dots li {
    width: 40px;
    height: 40px;
    margin: 10px 5px 0;
    -webkit-filter: grayscale(100);
    filter: grayscale(100);
    cursor: pointer;
    -webkit-transition: -webkit-filter .5s;
    transition: -webkit-filter .5s;
    -o-transition: filter .5s;
    transition: filter .5s;
    transition: filter .5s, -webkit-filter .5s;
    overflow: hidden
}

@media (min-width: 1020px) {
    .system-slider ul.slick-dots li {
        width:75px;
        height: 75px
    }
}

.system-slider ul.slick-dots li:hover {
    -webkit-filter: grayscale(0);
    filter: grayscale(0)
}

.system-slider ul.slick-dots li img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f8f8f8;
    -o-object-fit: contain;
    object-fit: contain
}

.system-slider ul.slick-dots li.slick-active {
    -webkit-filter: grayscale(0);
    filter: grayscale(0)
}

ul.slider>li:not(:first-child) {
    display: none
}

.slick-dotted.slick-slider {
    margin-bottom: 0
}

.wp-pagenavi {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row
}

.wp-pagenavi .pages {
    display: none
}

.wp-pagenavi .first {
    display: none
}

.wp-pagenavi .last {
    display: none
}

.home-page .header {
    display: none
}

.home-sns-wrapper {
    padding-top: 50px
}

@media (min-width: 1020px) {
    .home-sns-wrapper {
        padding-top:100px
    }
}

.home-sns-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    margin: auto
}

@media (min-width: 1020px) {
    .home-sns-list {
        -webkit-box-orient:horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        width: 100%
    }
}

.home-sns-item {
    width: 100%;
    height: 470px;
    border: 2px solid #e9b66c;
    background-color: #fff
}

@media (min-width: 1020px) {
    .home-sns-item {
        width:310px
    }
}

.home-sns-item+.home-sns-item {
    margin-top: 75px
}

@media (min-width: 1020px) {
    .home-sns-item+.home-sns-item {
        margin-top:0;
        margin-left: 20px
    }
}

.home-sns-item:first-of-type {
    height: auto;
    background-color: #fff
}

.home-sns-item:nth-of-type(2) {
    height: 416px;
    background-color: #fff
}

.home-sns-item:nth-of-type(3) {
    height: 416px;
    background-color: #fff
}

.home-sns-item:before {
    content: '';
    display: block;
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 20px;
    background-image: url("../img/dd.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain
}

@media (min-width: 1020px) {
    .home-sns-item:before {
        top:-25px;
        height: 25px
    }
}

.home-sns-item:after {
    content: '';
    display: block;
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%;
    height: 20px;
    background-image: url("../img/dd2.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain
}

@media (min-width: 1020px) {
    .home-sns-item:after {
        bottom:-25px;
        height: 25px
    }
}

.home-sns-item-wrapper {
    height: 100%
}

.home-sns-item-wrapper #pokeparaBlogWidget {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: none
}

.home-sns-item-wrapper #pokeparaBlogWidget iframe {
    width: 100%!important
}

.tiktok-embed {
    margin: 0!important
}

.home-bg-wrapper {
    padding: 0
}

.home-bg-wrapper .page-wrapper {
    padding: 0
}

.home-section-concept {
    padding: 150px 8%;
    overflow: hidden
}

.home-section-concept:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../img/AdobeStock_420801640.jpeg");
    background-position: center;
    background-size: cover
}

.cmn-section-system {
    padding: 150px 8%;
    overflow: hidden
}

.cmn-section-system:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #e0e0e0;
}

.cmn-section-access {
    padding: 30px 8%;
    overflow: hidden
}

.cmn-section-access:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media (min-width: 1020px) {
    .home-section-concept {
        padding:85px 0 195px
    }
}

.home-section-concept .hr {
    position: absolute;
    top: -2px;
    left: 0;
    background-image: url("/w/wp-content/themes/rnow/assets/img/d4.png")
}

@media (min-width: 1020px) {
    .home-section-concept .cmn-section-header {
        width:100%;
        margin-left: auto;
        margin-right: auto
    }
}

.home-section-concept .cmn-section-header-lead {
    color: #fff
}

.cmn-section-body p {
    text-align: center;
}

@media (max-width: 1020px) {
    .cmn-section-body p {
        text-align: left;
    }
}

@media (min-width: 1020px) {
    .home-section-concept .cmn-section-body {
        width:85%;
        margin-left: auto;
        margin-right: auto
    }
}

div.cmn-section-body p.shosaiC {
	justify-content: center;
	align-items: center;
	width: 30%;
	margin: 100px auto 20px auto;
	padding: 0.8em 0.8em;
	border: 2px solid #000000;
	background-color: #6e0000;
	background-size: 200% auto;
	box-sizing: border-box;
	color: #ffffff;
    font-family: 'M PLUS Rounded 1c', sans-serif;
	font-size: 24px;
	text-decoration: none;
	text-align: center;
	transition: .3s;
	position: relative;
  }

  div.cmn-section-body p.shosaiC:after {
	content: "";
	position: absolute;
	right: -5px;
	bottom: -5px;
	width: 101%;
	height: 107%;
	border-right: 2px solid #000000;
	border-bottom: 2px solid #000000;
  }

  div.cmn-section-body p.shosaiC:hover {
    transform: scale(1.1);
    transition: .2s;
  }

.home-concept-text {
    text-align: center;
}

@media (max-width: 1020px) {
    .home-concept-text {
        text-align: left;
    }
}

.slider-container {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 50px auto 0 auto;
  overflow: hidden;
}

.slider {
  display: flex;
  transition: transform 0.5s ease;
  width: 100%;
}

.slider img {
  width: 100%;
  flex-shrink: 0;
}

button.prev,
button.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  background: rgba(0,0,0,0.5);
  color: white;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 10;
}

button.prev {
  left: 10px;
}

button.next {
  right: 10px;
}

#cast-area {
    clear:both;
    width:100%;
    margin: 0;
    text-align:center;
    padding-top:15px;
}

/* ぼかしから出現 */
.blur{
    animation-name:blurAnime;
    animation-duration:1s;
    animation-fill-mode:forwards;
  }
  
  @keyframes blurAnime{
    from {
    filter: blur(10px);
    transform: scale(1.02);
    opacity: 0;
    }
  
    to {
    filter: blur(0);
    transform: scale(1);
    opacity: 1;
    }
  }
  
  /* スクロールをしたら出現する要素にはじめに透過0を指定　*/
   
  .blurTrigger{
      opacity: 0;
  }

  .cast-list {
    display: flex;
    width:85%;
    justify-content: center;
    z-index: 3;
    bottom: 10px;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
  
  .cast-list ul {
    display: flex;
    flex-wrap: wrap; /* 要素を折り返す */
    justify-content: center; /* 中央揃え */
    text-align: center; /* テキストも中央揃え */
}

.cast-list li {
    display: flex;
    flex-direction: column;
    margin: 0 30px 150px 30px;
    align-items: center;
    position: relative; /* 親要素の位置を基準にするために相対位置を設定 */
    text-align: center;
}

.cast-list li::before {
    content: "";
    background-image: url("../img/frame.png");
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2; /* 背景画像を前面に表示 */
}

.cast-list li img {
    color: transparent;
    outline: none;
    width: 200px;
    height: auto;
    display: block;
    background: #ccc;
    z-index: 1; /* 背景の前に表示 */
}

.cast-list span {
    font-family: 'M PLUS Rounded 1c', sans-serif;
    color: #ffffff;
    text-shadow: 2px 2px 5px #f68fff;
    font-size: 25px; /* 名前のフォントサイズ */
    padding: 10px 0;
    margin-top: 0; /* 調整して画像の下に配置 */
    display: block;
    position: absolute; /* 絶対位置で配置 */
    bottom: 0; /* 下部に固定 */
    left: 50%; /* 中央に揃える */
    transform: translateX(-50%);
    z-index: 2; /* 背景の前に表示 */
    background-image: url("../img/Antique_telop3_red.png");
    background-size: 100% 100%; /* 背景画像を要素全体にフィットさせる */
    width: 100%; /* 必要に応じて幅を100%に指定 */
}

  .sns-icons {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: flex;
    color: #ffffff;
    text-decoration: none;
    position: absolute;
    bottom: -108px;
    left: 50%;
    transform: translateX(-50%);
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 150px;
  }

  .sns-icons svg {
    display: inline-block;
    color: #ffffff;
    background-color: #000000;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 100%;
    width: 40px;
    height: auto;
    padding: 8px; /* アイコンの背景の余白 */
}

.last-row {
    bottom: -50px; /* 例として、最後の行に異なるマージンを適用 */
    /* 他のスタイルもここに記述 */
}

@media (min-width: 1020px) {
    .sns-icons svg {
        -webkit-transition: -webkit-transform .5s;
        transition: -webkit-transform .5s;
        -o-transition: transform .5s;
        transition: transform .5s;
        transition: transform .5s, -webkit-transform .5s
    }

    .sns-icons svg:hover {
        -webkit-transform: scale(1.2);
        -ms-transform: scale(1.2);
        transform: scale(1.2)
    }
}

  .sns-icons a {
    display: inline-block;
    padding: 0;
    margin: 0 5px; /* SNSアイコン間の間隔 */
  }

@media (min-width: 1020px) {
    .home-concept-text {
        margin-top:50px;
        font-size: 13px
    }
}

.home-concept-text b {
    color: #e9b66c;
    font-size: 15px;
    font-weight: 700
}

@media (min-width: 1020px) {
    .home-concept-text b {
        font-size:24px
    }
}

.home-concept-text-yumebako,.home-concept-text-prible {
    margin: 25px 4% 0;
    padding: 25px 15px
}

@media (min-width: 1020px) {
    .home-concept-text-yumebako,.home-concept-text-prible {
        margin:50px 120px 0;
        padding: 50px
    }
}

.home-concept-text-yumebako {
    border: 2px solid #6e0000;
    background-color: rgba(255, 255, 255, 0.637);
    color: #0f0f0f
}

.home-concept-text-prible {
    border: 2px solid #fff;
    background-color: rgba(255, 255, 255, 0.85);
    color: #000
}

.home-concept-image {
    width: 50%;
    margin: 0 auto;
}

@media (max-width: 1020px) {
    .home-concept-image {
        width: 90%;
        margin: 0 auto;
    }
}

.home-concept-image img {
    -o-object-fit: contain;
    object-fit: contain
}

.home-concept-link {
    margin-top: 25px;
    text-align: center
}

@media (min-width: 1020px) {
    .home-concept-link {
        margin-top:50px
    }
}

.home-concept-link .cmn-btn {
    color: #00a6c7
}

@media (min-width: 1020px) {
    .home-concept-link .cmn-btn {
        -webkit-transition:color .5s;
        -o-transition: color .5s;
        transition: color .5s
    }

    .home-concept-link .cmn-btn:hover {
        color: #e9b66c
    }
}

.home-section-cast {
    padding: 50px 0
}

@media (min-width: 1020px) {
    .home-section-cast {
        padding:100px 0
    }
}

.home-section-cast .home-bg {
    background-position: top center;
    opacity: .15
}

.home-section-cast .cmn-section-header {
    padding: 0 8%
}

@media (min-width: 1020px) {
    .home-section-cast .cmn-section-header {
        width:960px;
        padding: 0;
        margin-left: auto;
        margin-right: auto
    }
}

.home-section-cast .cmn-section-header:before {
    display: none
}

.home-section-cast .cmn-section-header-title {
    color: #888
}

.home-section-cast .cmn-section-header-lead {
    color: #fff
}

.home-section-cast .home-cast-navi-index {
    width: 100%;
    margin-top: 25px;
    text-align: center
}

@media (min-width: 1020px) {
    .home-section-cast .home-cast-navi-index {
        margin-top:50px
    }
}

.home-section-cast .home-cast-navi-index .cmn-btn {
    color: #00a6c7
}

@media (min-width: 1020px) {
    .home-section-cast .home-cast-navi-index .cmn-btn {
        -webkit-transition:color .5s;
        -o-transition: color .5s;
        transition: color .5s
    }

    .home-section-cast .home-cast-navi-index .cmn-btn:hover {
        color: #e9b66c
    }
}

.home-section-system .cmn-section-header-title {
    color: #888
}

.home-section-system .cmn-section-header-lead {
    color: #fff
}

.home-section-booth-wrapper {
    padding: 10px 4%;
    overflow: hidden
}

@media (min-width: 1020px) {
    .home-section-booth-wrapper {
        margin:0 auto;
        padding: 0
    }
}

@media (min-width: 1020px) {
    .home-section-booth-wrapper-yumebako:before {
        background-size:25px
    }
}

.home-section-booth-wrapper-prible {
    background-color: #ffe7fb
}

.home-section-booth-wrapper-prible:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 30000px;
    background-image: url("/w/wp-content/themes/rnow/assets/img/d1.png");
    background-size: 20px;
    opacity: .3;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-animation: ist 1000s linear infinite;
    animation: ist 1000s linear infinite
}

@media (min-width: 1020px) {
    .home-section-booth-wrapper-prible:before {
        background-size:25px
    }
}

.home-section-booth-content {
    -webkit-transition: opacity .5s;
    -o-transition: opacity .5s;
    transition: opacity .5s
}

@media (min-width: 1020px) {
    .home-section-booth-content {
        width:100%;
        margin: 0 auto
    }
}

.home-section-booth-content-active {
    display: block;
    opacity: 1;
    pointer-events: all;
    -webkit-user-select: auto;
    -moz-user-select: auto;
    -ms-user-select: auto;
    user-select: auto
}

.home-concept-logo {
    text-align: center
}

@media (min-width: 1020px) {
    .home-concept-logo img {
        height:180px
    }
}

.home-concept-image-d {
    position: absolute;
    width: 20px;
    height: 20px;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

@media (min-width: 1020px) {
    .home-concept-image-d {
        width:48px;
        height: 48px
    }
}

.home-concept-image-b {
    position: absolute;
    top: 5px;
    left: 5px;
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

@media (min-width: 1020px) {
    .home-concept-image-b {
        top:10px;
        left: 10px;
        width: calc(100% - 20px);
        height: calc(100% - 20px)
    }
}

.home-concept-image-yumebako img {
    border: 2px solid #83004c
}

.home-concept-image-yumebako .home-concept-image-d {
    background-color: #111111
}

.home-concept-image-yumebako .home-concept-image-d:first-of-type {
    top: 0;
    left: 0;
    border-bottom: solid 2px #83004c;
    border-right: solid 2px #83004c;
    border-bottom-right-radius: 100%
}

.home-concept-image-yumebako .home-concept-image-d:nth-of-type(2) {
    top: 0;
    right: 0;
    border-bottom: solid 2px #83004c;
    border-left: solid 2px #83004c;
    border-bottom-left-radius: 100%
}

.home-concept-image-yumebako .home-concept-image-d:nth-of-type(3) {
    bottom: 0;
    right: 0;
    border-top: solid 2px #83004c;
    border-left: solid 2px #83004c;
    border-top-left-radius: 100%
}

.home-concept-image-yumebako .home-concept-image-d:nth-of-type(4) {
    bottom: 0;
    left: 0;
    border-top: solid 2px #83004c;
    border-right: solid 2px #83004c;
    border-top-right-radius: 100%
}

.home-concept-image-yumebako .home-concept-image-b {
    border: solid 2px #83004c
}

.home-concept-image-prible img {
    border: 2px solid #ffaef4
}

.home-concept-image-prible .home-concept-image-d {
    background-color: #ffe7fb
}

.home-concept-image-prible .home-concept-image-d:first-of-type {
    top: 0;
    left: 0;
    border-bottom: solid 2px #ffaef4;
    border-right: solid 2px #ffaef4;
    border-bottom-right-radius: 100%
}

.home-concept-image-prible .home-concept-image-d:nth-of-type(2) {
    top: 0;
    right: 0;
    border-bottom: solid 2px #ffaef4;
    border-left: solid 2px #ffaef4;
    border-bottom-left-radius: 100%
}

.home-concept-image-prible .home-concept-image-d:nth-of-type(3) {
    bottom: 0;
    right: 0;
    border-top: solid 2px #ffaef4;
    border-left: solid 2px #ffaef4;
    border-top-left-radius: 100%
}

.home-concept-image-prible .home-concept-image-d:nth-of-type(4) {
    bottom: 0;
    left: 0;
    border-top: solid 2px #ffaef4;
    border-right: solid 2px #ffaef4;
    border-top-right-radius: 100%
}

.home-concept-image-prible .home-concept-image-b {
    border: solid 2px #ffaef4
}

.home-movie-wrapper {
    padding-top: 50px
}

@media (min-width: 1020px) {
    .home-movie-wrapper {
        padding-top:100px
    }
}

.home-section-movie {
    width: 84%;
    margin: 0 auto;
    padding: 2px;
    background: #e9b66c
}

@media (min-width: 1020px) {
    .home-section-movie {
        width:960px
    }
}

.home-section-movie-inner {
    width: 100%;
    padding-top: 178%;
    margin: 0 auto
}

@media (min-width: 1020px) {
    .home-section-movie-inner {
        padding-top:50%
    }
}

.miryoku {
    width: 40%;
    margin: 50px auto;
}

@media (max-width: 1020px) {
    .miryoku {
        width: 90%;
        margin: 30px auto 0 auto;
    }
}

.miryoku img {
    width: 100%;
    padding:0;
}

.beauty-box1 {
    width:100%;
    margin: 0;
    padding: 10px 0 1px 0;
    background-color: #7a0000a4;
}

.beauty-box2 {
    width:100%;
    margin: 0;
    padding: 10px 0 1px 0;
    background-color: #000000a4;
}

.three_title {
    width: 100%;
    margin-top: 50px;
    text-align: center;
}

@media (min-width: 1020px) {
    .support_title {
        width: 50%;
        text-align: center;
        margin-top: 50px;
    }
}

.support_title {
    width: 100%;
    margin-top: 40px;
}

.hukuri_title {
  position: relative;
  display: inline-block;
  padding: 0 40px 0 30px; /* 画像分の余白を作る */
  font-size: 24px;
  color: #ffffff;
  font-weight: bold;
}

.hukuri_title::before,
.hukuri_title::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 35px;
  height: 35px;
  background-size: contain;
  background-repeat: no-repeat;
  transform: translateY(-50%);
}

.hukuri_title::before {
  left: 0;
  background-image: url('../img/bara_left.png');
}

.hukuri_title::after {
  right: 0;
  background-image: url('../img/bara_right.png');
}

.hukuri_sub {
    margin-left: 18px;
    font-size:16px;
    color: #ffffff;
}

@media (min-width: 1020px) {
    .naiyou {
    margin: -50px auto 30px auto;
    width:85%;
    padding: 10px 20px;
    font-size: 16px;
    color: #ffffff;
    background-color: #000000b8;
}
}

@media (max-width: 1020px) {
.naiyou {
    margin: -50px auto 30px auto;
    width:80%;
    padding: 20px 30px;
    font-size: 12px;
    color: #ffffff;
    background-color: #000000b8;
}
}

.jouken {
    margin:20px 0;
    width: 100%;
    text-align: center;
}

.jouken img {
    width: 50%;
}

@media (max-width: 1020px) {
    .jouken img {
    width: 90%;
}
}

/* 共通：アニメ定義はメディア外に置く */
.anim-box.poyopoyo {
  animation: poyopoyo 2s ease-out infinite;
  opacity: 1;
}

/* PC専用スタイル */
@media (min-width: 1021px) {
  .lineBtn {
    position: fixed;
    bottom: 15px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    z-index: 4;
  }

  .lineBtn img {
    width: 90%;
    display: block;
    margin: 0 auto;
    transition: transform 0.5s, opacity 0.5s;
  }

  .lineBtn img:hover {
    transform: scale(1.2);
  }

  /* PC用：位置は flexで制御、アニメは scale のみ */
  @keyframes poyopoyo {
    0%, 40%, 60%, 80% {
      transform: scale(1.0);
    }
    50%, 70% {
      transform: scale(0.95);
    }
  }
}

/* スマホ専用スタイル */
@media (max-width: 1020px) {
  .lineBtn {
    position: fixed;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  .lineBtn a {
    display: block;
  }

  .lineBtn img {
    width: 90vw;
    max-width: 400px;
    display: block;
    margin: 0 auto;
  }

  /* スマホ用：translateX＋scaleで位置＋アニメ共存 */
  @keyframes poyopoyo {
    0%, 40%, 60%, 80% {
      transform: translateX(-50%) scale(1.0);
    }
    50%, 70% {
      transform: translateX(-50%) scale(0.95);
    }
  }

  body {
    overflow-x: hidden;
  }
}

@media (min-width: 1020px) {
    .system-tab {
        margin:50px 0
    }
}

.newshop {
    width: 80%;
    margin: 0 auto;
}

@media (max-width: 1020px) {
    .newshop {
        width: 100%;
        margin: 0 auto;
    }
}

.warning {
    margin: 0 auto;
    width: 80%;
}

@media (max-width: 1020px) {
    .warning {
        margin: 0 auto;
        width: 100%;
    }
}

.warning img {
    box-shadow: 5px 5px 8px hsla(0, 0%, 29%, 0.466); /* 影（[右][下][ぼかし][影の色]）を指定する */
}

.boshuuyoukou {
    margin: 80px auto;
    padding: 40px;
    text-align: center;
    background-image: url("../img/2031024.png");
    background-size: 100% 100%; /* 背景画像を要素全体にフィットさせる */
    width: 60%; /* 必要に応じて幅を100%に指定 */
    height: auto;
}

@media (max-width: 1020px) {
    .boshuuyoukou {
        width: 90%;
        margin: 30px auto;
        padding: 30px;
        text-align: center;
        background-image: url("../img/2031024.png");
        background-size: 100% 100%; /* 背景画像を要素全体にフィットさせる */
        height: auto;
    }
}

.boshuuyoukou img {
    width: 40%;
}

.boshuuyoukou p {
    font-family: serif;
    font-weight: bold;
    color: #ffffff;
    font-size: 36px;
    line-height: 2;
}

@media (max-width: 1020px) {
    .boshuuyoukou p {
        font-family: serif;
        font-weight: 300;
        color: #ffffff;
        font-size: 10px;
        line-height: 2;
    }
}

.system-tab-list {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex
}

.system-tab-item {
    margin: 0 10px
}

.system-tab-item-active .system-tab-item-link {
    background-color: rgba(233, 182, 108, 0.3);
    font-weight: 800
}

.system-tab-item-link {
    display: block;
    padding: .75em 2em;
    border: 2px solid #e9b66c;
    color: #111;
    font-size: 15px;
    font-weight: 400;
    line-height: 1;
    text-decoration: none;
    -webkit-transition: background .5s;
    -o-transition: background .5s;
    transition: background .5s
}

.system-tab-item-link:hover {
    background-color: rgba(233, 182, 108, 0.3)
}

#concept {
    clear:both;
    width:100%;
    background-color:#ff6cff46;
    background-size:cover;
    margin: 4% 0 0 0;
    text-align:center;
    padding-top:15px;
    padding-bottom: 3%;
}

#concept img {
    margin:20px 0 0 0;
}

#concept p {
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-size:18px;
    line-height:1.5;
}

.title {
    font-size:48px;
    color:#fff89b;
    line-height:3;
    text-shadow:5px 5px 8px rgb(230, 0, 199);
}

#system {
    clear:both;
    width:100%;
    background-color:#ffffff46;
    background-size:cover;
    margin: 0;
    text-align:center;
    padding-top:15px;
    padding-bottom: 50px;
}

#system p{
    display:inline-flex;
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-size:1.2em;
    color:#ff4343;
    margin-top: 0;
    margin-right: 20px;
    margin-bottom: 50px;
}

#systemmenu {
    clear:both;
    width:100%;
    background-color:#ffffff46;
    background-size:cover;
    margin: 0;
    text-align:center;
    padding-top:15px;
    padding-bottom: 50px;
}

.system_item_table {
    width: 80%;
    max-width: 800px;
    font-family: 'M PLUS Rounded 1c', sans-serif;
    margin: 0 auto 10px auto;
}

.system_item_table_champagne {
    width: 80%;
    max-width: 800px;
    font-family: 'M PLUS Rounded 1c', sans-serif;
    margin: 0 auto 10px auto;
}

.system_item_table_solo {
    width: 80%;
    max-width: 800px;
    font-family: 'M PLUS Rounded 1c', sans-serif;
    margin: 0 auto 60px auto;
}

.system_item_table_shokai {
    width: 80%;
    max-width: 800px;
    font-family: 'M PLUS Rounded 1c', sans-serif;
    margin: 0 auto 60px auto;
}

.system_cast_table {
    width: 80%;
    max-width: 800px;
    font-family: 'M PLUS Rounded 1c', sans-serif;
    margin: 0 auto 60px auto;
}

.system_item_table th {
    padding: 10px 0;
    border-bottom-width: 1px;
    border-bottom-style: dotted;
    border-bottom-color: #242424;
    vertical-align: middle;
}

.system_item_table_solo th {
    padding: 10px 0;
    border-bottom-width: 1px;
    border-bottom-style: dotted;
    border-bottom-color: #242424;
    vertical-align: middle;
}

.system_item_table_shokai th {
    padding: 10px 0;
    border-bottom-width: 1px;
    border-bottom-style: dotted;
    border-bottom-color: #242424;
    vertical-align: middle;
}

.system_item_table_champagne th {
    padding: 10px 0;
    border-bottom-width: 1px;
    border-bottom-style: dotted;
    border-bottom-color: #242424;
    vertical-align: middle;
}

.system_cast_table th {
    padding: 20px 0;
    border-bottom-width: 1px;
    border-bottom-style: dotted;
    border-bottom-color: #242424;
    vertical-align: middle;
}

.system_item_table td {
    padding: 10px 0 10px 200px;
    border-bottom-width: 1px;
    border-bottom-style: dotted;
    border-bottom-color: #242424;
    vertical-align: middle;
}

.system_item_table_solo td {
    padding: 10px 0 10px 200px;
    border-bottom-width: 1px;
    border-bottom-style: dotted;
    border-bottom-color: #242424;
    vertical-align: middle;
}

.system_item_table_shokai td {
    padding: 10px 0 10px 180px;
    border-bottom-width: 1px;
    border-bottom-style: dotted;
    border-bottom-color: #242424;
    vertical-align: middle;
}

.system_item_table_champagne td {
    padding: 10px 0 10px 200px;
    border-bottom-width: 1px;
    border-bottom-style: dotted;
    border-bottom-color: #242424;
    vertical-align: middle;
}

.system_cast_table td {
    padding: 20px 0 20px 20px;
    border-bottom-width: 1px;
    border-bottom-style: dotted;
    border-bottom-color: #242424;
    vertical-align: middle;
}

tbody {
    display: table-row-group;
    vertical-align: middle;
    border-color: inherit;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

.system_item_title {
    text-align: center;
    font-size: 1.4rem;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 8px;
}

.system_item_title_shokai {
    text-align: center;
    font-size: 1.5rem;
    color:#ff4343;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 8px;
}

.shokai {
    text-align: center;
    font-size:0.5em;
}

.set {
    text-align: center;
    font-size:0.5em;
    line-height: 1;
}

.system_item_time {
    width: 240px;
    font-size:1.5em;
}

.system_item_time_solo {
    width: 240px;
    font-size:1.5em;
}

.system_item_time_shokai {
    width: 340px;
    font-size:1.5em;
    line-height: 1.0;
}

.shokai {
    text-align: center;
    font-size:0.5em;
}

.system_item_mens {
    color: #55acee;
    padding-right: 8px;
}

.system_cast_small {
    color: #55acee;
    padding-right: 8px;
}

.system_cast_large {
    color: #ee55a9;
    padding-right: 8px;
}

.system_cast_bomb {
    color: #dd3434;
    padding-right: 8px;
}

.system_item_price {
    font-size: 1.8rem;
    font-weight: 700;
}

.system_item_tax {
    font-size: 1.4rem;
    line-height: 1.2;
}

.system_item_shampagne {
    font-size: 1.8rem;
    line-height: 1.2;
}

.system_item_small {
    font-size: 1.0rem;
}

.system_item_women {
    color: #fb7fb6;
    padding-right: 8px;
}

.system_icon {
    margin-top:20px;
    margin-bottom:-30px;
}

.wrapper{
    width:100%;
    margin:0 auto;
  }

  ul {
    display: block;
    list-style-type: disc;
    margin-block-start: 0;
    margin-block-end: 0;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 0;
}

/*tabの形状*/
.tab{
    display: flex;
    width:60%;
    flex-wrap: nowrap;
    list-style-type: none;
    margin:0 auto;
  }
  .tab li{
    display: block;
    width:50%;
    font-size:18px;
    color:#000;
    margin:0;
    padding:0;
    list-style-type: none;
  }

  .tab li a{
    display: block;
    background:#ffffff46;
    color:#000;
    margin:0;
    padding:20px 20px;
    list-style-type: none;
    border-width: 1px 1px 1px 1px;    /* 下以外の枠線を引く */
    border-style: solid;              /* 枠線の種類：実線 */
    border-color: rgba(27, 27, 27, 0.623);              /* 枠線の色：黒色 */
  }
  /*liにactiveクラスがついた時の形状*/
  .tab li.active a{
    background:#ffae0034;
    color:#020000;
    list-style-type: none;
    font-weight: bold;
  }
  
  
  /*エリアの表示非表示と形状*/
  .area {
    width:100%;
    display: none;/*はじめは非表示*/
    opacity: 0;/*透過0*/
  }
  
  /*areaにis-activeというクラスがついた時の形状*/
  .area.is-active {
      display: block;/*表示*/
      animation-name: displayAnime;/*ふわっと表示させるためのアニメーション*/
      animation-duration: 1s;
      animation-fill-mode: forwards;
      padding-bottom:50px;
  }
  
  @keyframes displayAnime{
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }

#alchorl {
    padding-bottom:20px;
}

.system_alchorl_title {
    text-align: center;
    font-size: 1.4rem;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 50px;
}

  #softdrink p {
    font-family: 'M PLUS Rounded 1c', sans-serif;
    text-align: center;
    font-size: 1.4rem;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 8px;
}

#softdrink ul {
    width: 80%;
    max-width: 800px;
    font-family: 'M PLUS Rounded 1c', sans-serif;
    margin: 60px auto 60px auto;
}

#softdrink ul li {
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-size:1.4rem;
    padding: 10px auto;
}

#shotdrink p {
    font-family: 'M PLUS Rounded 1c', sans-serif;
    text-align: center;
    font-size: 1.4rem;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 8px;
}

#shotdrink ul {
    width: 80%;
    max-width: 800px;
    font-family: 'M PLUS Rounded 1c', sans-serif;
    margin: 60px auto 60px auto;
}

#shotdrink ul li {
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-size:1.4rem;
    padding: 10px auto;
}

.system_champagne_time {
    width: 400px;
    font-size:1.0em;
}

.system_cast_drink {
    width: 250px;
    font-size:1.5em;
}

.system_cast_omocha {
    width: 250px;
    font-size:1.8em;
    color: #ff47ff;
    line-height:1;
}

.system_cast_omocha span {
    color: #000000;
    line-height:1;
}

.cast-image img{
    text-align: center;
    margin: 0 auto;
}

.access-container {
    width: 100%
}

.access-map {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 25px 0;
    padding: 8px;
    border: 2px solid rgba(255, 255, 255, 0.5)
}

@media (min-width: 1020px) {
    .access-map {
        margin:50px 0;
        padding: 10px
    }
}

.access-map iframe {
    width: 100%;
    height: 300px;
}

.map-access {
    width: 75%;
    margin: 0 auto 100px auto;
    text-align: center;
    padding: 8px;
    border: 2px solid rgba(20, 20, 20, 0.5);
}

.map-access iframe {
    width: 100%;
    height: 600px;
    padding: 8px;
    border: 2px solid rgba(20, 20, 20, 0.5);
}

@media (min-width: 1020px) {
    .access-map iframe {
        height:480px
    }
}

.access-map:after {
    content: '';
    display: block;
    position: absolute;
    top: 10px;
    left: 10px;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    border: 0;
    background-color: #777777;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    mix-blend-mode: overlay
}

.access-body {
    color: #fff;
    margin-top: 25px;
    font-size: 12px;
    font-weight: 400;
    line-height: 2;
    text-align: center
}

@media (min-width: 1020px) {
    .access-body {
        margin-top:50px;
        font-size: 15px
    }
}

.access-body b {
    color: #ffffff;
    font-size: 15px;
    font-weight: 700
}

@media (min-width: 1020px) {
    .access-body b {
        font-size:20px
    }
}

.access-body a {
    color: #e9b66c
}

.access-page {
    color: #1b1b1b;
    margin-top: 25px;
    font-size: 12px;
    font-weight: 400;
    line-height: 2;
    text-align: center
}

.access-page b {
    color: #1b1b1b;
    margin-top: 50px;
    font-size: 24px;
    font-weight: 700
}

@media (min-width: 1020px) {
    .access-body a {
        -webkit-transition:color .5s;
        -o-transition: color .5s;
        transition: color .5s
    }

    .access-body a:hover {
        color: #00a6c7
    }
}
