@charset "UTF-8";
/* ================================================================ *
* MIXIN
* ================================================================ */
/* ================================================================ *
* parts
* ================================================================ */
a:link,
a:visited {
  color: #21BFD5;
  text-decoration: underline;
  transition: all 0.15s ease-out;
}

a:active,
a:hover {
  color: #ec9800;
  text-decoration: none;
}

a:focus,
*:focus {
  outline: none;
}

img {
  border: none;
  outline: none;
  max-width: 100%;
}

button {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
}

.center {
  text-align: center;
}

.red {
  color: #ff1717;
}

.blue {
  color: #21BFD5;
}

.glay {
  color: #bbb;
}

.btn a {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 330px;
  margin: 0 auto;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border: 1px solid rgba(78, 78, 78, 0.5);
  font-size: 14px;
  text-decoration: none;
  color: #4E4E4E;
  padding: 10px;
  transition: all 0.15s ease-out;
  text-align: center;
}
.btn a:after {
  content: "→";
  display: block;
  position: absolute;
  font-size: 20px;
  color: rgba(78, 78, 78, 0.8);
  top: 50%;
  right: 15px;
  transform: translateY(-52%) rotate(-45deg);
  transition: all 0.15s ease-out;
}
.btn a:before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #21BFD5;
  transform-origin: 100% 0;
  transform: scaleX(0);
  transition: transform 0.15s ease-out;
}
@media (min-width: 800px) {
  .btn a:hover {
    color: #fff;
  }
  .btn a:hover:after {
    color: #fff;
  }
  .btn a:hover:before {
    transform-origin: 0 0;
    transform: scaleX(1);
  }
}

.btn_wrap {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.btn_wrap .btn {
  min-width: 240px;
}

.pp_img_btn,
.pp_ajax_btn {
  position: relative;
  z-index: 1;
  cursor: pointer;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  border: 1px solid #e5e1d9;
}
.pp_img_btn:after,
.pp_ajax_btn:after {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  width: 37px;
  height: 37px;
  bottom: 5px;
  right: 5px;
  border-radius: 20px;
  background: url(../img/popup_icon.png) 50% 50% no-repeat rgba(140, 134, 118, 0.8);
}

table.spec {
  border-top: 1px solid #e5e1d9;
  width: 100%;
  font-size: 15px;
  line-height: 1.8;
  text-align: left;
}
table.spec > tbody > tr {
  border-bottom: 1px solid #e5e1d9;
}
table.spec > tbody > tr > th {
  color: #21BFD5;
  font-weight: 500;
  line-height: 1.5;
  width: 122px;
  padding: 15px 0;
  text-align: left;
  vertical-align: top;
}
table.spec > tbody > tr > td {
  padding: 15px 0;
}
@media (max-width: 800px) {
  table.spec > tbody > tr > th {
    width: 95px;
    padding: 15px 0;
  }
}

ul.attention {
  font-size: 90%;
}
ul.attention li {
  padding-left: 1em;
  text-indent: -1em;
}

.snsbox {
  display: flex;
  justify-content: center;
  gap: 40px;
}
.snsbox > div {
  display: inline-block;
  width: 50px;
  height: 50px;
  border-radius: 25px;
  background: url(../img/snsbtn.png) 0 0 no-repeat;
  background-clip: content-box;
  background-size: auto 100%;
  text-indent: 150%;
  white-space: nowrap;
  overflow: hidden;
  font-size: 1px;
  transition: all 0.3s ease-out;
}
.snsbox a {
  display: block;
  width: 100%;
  height: 100%;
}
.snsbox .fb {
  background-position: -50px 0;
}
.snsbox .line {
  background-position: 100% 0;
}

.prr:not(.nodf) {
  opacity: 0;
  filter: blur(8px);
  transition: all 1s ease-out;
}
.prr:not(.nodf).show {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* ================================================================ *
* BODY
* ================================================================ */
body {
  color: #4E4E4E;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  font-size: 16px;
  line-height: 1.7;
  font-family: "fot-tsukuardgothic-std", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic", "ヒラギノ角ゴ", "游ゴシック体", "Yu Gothic", YuGothic, "メイリオ", "Meiryo", "Lucida Grande", "Lucida Sans Unicode", Helvetica, Arial, Verdana, sans-serif;
  font-weight: 400;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: all 0.3s ease-out;
}
body.popup {
  overflow: hidden;
}

.sp {
  display: none;
}

@media (max-width: 800px) {
  body {
    font-size: 15px;
    line-height: 1.5;
    font-weight: normal;
  }
  .sp {
    display: inline-block;
  }
  .pc {
    display: none !important;
  }
}
/* ================================================================ *
* loading
/* ================================================================ */
#loading {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 100;
  background: #fff;
  font-weight: 600;
  color: #21BFD5;
  letter-spacing: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  transition: all 1.3s ease-out 0.8s;
  font-size: 15px;
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 100%, -50% 100%);
          clip-path: polygon(0% 0%, 100% 0%, 100% 100%, -50% 100%);
  transition: all 0.5s ease-out;
}
#loading.off {
  -webkit-clip-path: polygon(150% 0%, 100% 0%, 100% 100%, 100% 100%);
          clip-path: polygon(150% 0%, 100% 0%, 100% 100%, 100% 100%);
}
@media (max-width: 800px) {
  #loading {
    -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 100%, -100% 100%);
            clip-path: polygon(0% 0%, 100% 0%, 100% 100%, -100% 100%);
  }
  #loading.off {
    -webkit-clip-path: polygon(200% 0%, 100% 0%, 100% 100%, 100% 100%);
            clip-path: polygon(200% 0%, 100% 0%, 100% 100%, 100% 100%);
  }
}

/* ================================================================ *
* bg
/* ================================================================ */
#bg {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}
#bg > div {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  background: url(../img/bg.png) 50% 0 repeat-y;
  background-size: 100% auto;
  opacity: 0;
  transition: all 0.3s ease-out;
}
#bg > div.on {
  opacity: 1;
}
#bg .st {
  background-color: #F8EEB6;
}
#bg .qn {
  background-color: #DDDDDD;
}
#bg .hv {
  background-color: #D4D8E6;
}

/* ================================================================= *
* menu
* ================================================================ */
#menu {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 15;
  background: url(../img/menu_bg.png) 50% 100% no-repeat #fff;
  background-size: 100% auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 12%;
  transform: translateY(-100%);
  overflow: hidden;
  transition: all 0.15s ease-out;
}
#menu nav {
  width: 500px;
  text-align: center;
}
#menu nav ul {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
#menu nav li {
  position: relative;
  z-index: 1;
}
#menu nav li a {
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
#menu nav li a:after {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #e5e1d9;
  transform: scaleX(0);
  transition: all 0.15s ease-out;
}
@media (min-width: 800px) {
  #menu nav li a:hover:after {
    transform: scaleX(1);
  }
}
#menu.show {
  transform: translateY(0);
}
@media (max-width: 800px) {
  #menu {
    background: url(../img/menu_bg_sp.png) 50% 100% no-repeat #fff;
    background-size: 100% auto;
    padding-top: 80px;
    align-items: start;
  }
  #menu nav {
    width: 500px;
    text-align: center;
  }
  #menu nav ul {
    gap: 20px;
  }
}

#menu_icon {
  display: block;
  position: fixed;
  right: 55px;
  top: 50px;
  z-index: 16;
  width: 60px;
  height: 50px;
  cursor: pointer;
  transition: all 0.3s ease-out;
}
@media (max-width: 800px) {
  #menu_icon {
    backface-visibility: hidden;
    will-change: opacity;
    transform: translate3d(0, 0, 0) scale(0.95);
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.01));
  }
}
#menu_icon span {
  position: relative;
  z-index: 10;
  display: block;
  width: 100%;
  height: 2px;
  top: 25px;
  left: 0;
  transition: all 0.15s ease-out;
}
@media (max-width: 800px) {
  #menu_icon span {
    backface-visibility: hidden;
    will-change: opacity;
    transform: translate3d(0, 0, 0) scale(0.95);
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.01));
  }
}
#menu_icon span:before, #menu_icon span:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #4E4E4E;
  transition: all 0.15s ease-out;
}
@media (max-width: 800px) {
  #menu_icon span:before, #menu_icon span:after {
    backface-visibility: hidden;
    will-change: opacity;
    transform: translate3d(0, 0, 0) scale(0.95);
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.01));
  }
}
#menu_icon span:before {
  transform: translateY(-7px);
}
#menu_icon span:after {
  transform: translateY(7px);
}
#menu_icon.on span {
  background: transparent;
}
#menu_icon.on span:before {
  transform: rotate(25deg);
}
#menu_icon.on span:after {
  transform: rotate(-25deg);
}
@media (max-width: 800px) {
  #menu_icon {
    width: 45px;
    top: 10px;
    right: 10px;
  }
  #menu_icon span {
    width: 45px;
  }
  #menu_icon span:before {
    transform: translateY(-6px);
  }
  #menu_icon span:after {
    transform: translateY(6px);
  }
}

#verselect {
  position: fixed;
  height: 100vh;
  left: 3%;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#verselect .ver_txt {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 5px;
}
#verselect .ver_txt svg .d {
  fill: #fff;
  transition: all 0.8s ease-out;
}
#verselect .ver_txt:after {
  content: "";
  display: block;
  margin-top: 10px;
  width: 1px;
  height: 50px;
  background: #fff;
  transition: all 0.8s ease-out;
}
#verselect .icon {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#verselect .icon svg {
  opacity: 0.5;
  transform: scale(0.6);
  vertical-align: middle;
  cursor: pointer;
  transition: all 0.2s ease-out;
}
#verselect .icon svg .cls-1 {
  fill: #fff;
  transition: all 0.8s ease-out;
}
#verselect .icon .on svg {
  opacity: 1;
  transform: scale(1);
}
#verselect.on[data-gr=st] .ver_txt:after {
  background: #a79426;
}
#verselect.on[data-gr=st] svg .cls-1,
#verselect.on[data-gr=st] svg .d {
  fill: #a79426;
}
#verselect.on[data-gr=qn] .ver_txt:after {
  background: #9a9a9a;
}
#verselect.on[data-gr=qn] svg .cls-1,
#verselect.on[data-gr=qn] svg .d {
  fill: #9a9a9a;
}
#verselect.on[data-gr=hv] .ver_txt:after {
  background: #334186;
}
#verselect.on[data-gr=hv] svg .cls-1,
#verselect.on[data-gr=hv] svg .d {
  fill: #334186;
}
@media (max-width: 800px) {
  #verselect {
    display: none;
  }
}

/* ================================================================ *
* common
* ================================================================ */
#container {
  min-width: 1260px;
  z-index: 2;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}
@media (max-width: 800px) {
  #container {
    min-width: 0;
    padding-top: 0;
  }
}

#wrapper {
  position: relative;
}

section.pg {
  position: relative;
  margin-top: 120px;
  padding: 90px 50px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 0 0 0 100px;
  opacity: 0;
  -webkit-clip-path: polygon(0% 0%, 0% 0%, -50% 100%, 0% 100%);
          clip-path: polygon(0% 0%, 0% 0%, -50% 100%, 0% 100%);
  transition: all 0.5s ease-out;
}
section.pg .pg_wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
}
section.pg .pg_wrapper .h01 {
  opacity: 0;
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 0% 0%);
          clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 0% 0%);
  transition: all 0.8s ease-out 0.5s;
}
section.pg .pg_wrapper .pg_content {
  flex: 1;
  padding: 40px 0 60px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out 0.6s;
}
section.pg.show {
  opacity: 1;
  -webkit-clip-path: polygon(0% 0%, 150% 0%, 100% 100%, 0% 100%);
          clip-path: polygon(0% 0%, 150% 0%, 100% 100%, 0% 100%);
}
section.pg.show .h01 {
  opacity: 1;
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
          clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}
section.pg.show .pg_content {
  opacity: 1;
  transform: translateY(0);
}

h1,
h2,
h3,
h4 {
  font-weight: 500;
  position: relative;
  z-index: 2;
}

.h01 {
  position: relative;
}
.h01 img {
  position: absolute;
  opacity: 0;
  left: 0;
  top: 0;
  transition: all 0.3s ease-out;
}
.h01 img.on {
  opacity: 1;
  position: relative;
}

@media (max-width: 800px) {
  #container {
    min-width: 0px;
  }
  section.pg {
    margin-top: 60px;
    padding: 60px 0px;
    border-radius: 0 0 0 60px;
  }
  section.pg .pg_wrapper {
    width: 100%;
    gap: 0px;
  }
  section.pg .pg_wrapper .pg_content {
    padding: 20px 20px 30px 0;
  }
  .h01 {
    width: 60px;
    transform: translateX(-12px);
  }
}
/* ================================================================ *
* top
* ================================================================ */
#top {
  position: relative;
  width: 100%;
  height: 100vh;
  max-height: 1000px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#top .gr_wrap {
  position: absolute;
  width: 100%;
  height: calc(100% - 20px);
  z-index: 1;
  top: 10px;
  left: 0;
  padding: 0 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-clip-path: polygon(0% 0%, 0% 0%, -50% 100%, 0% 100%);
          clip-path: polygon(0% 0%, 0% 0%, -50% 100%, 0% 100%);
  transition: -webkit-clip-path 0.1s ease-out 0.8s;
  transition: clip-path 0.1s ease-out 0.8s;
  transition: clip-path 0.1s ease-out 0.8s, -webkit-clip-path 0.1s ease-out 0.8s;
}
#top .gr_wrap:before {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  width: 100%;
  height: calc(100% + 20px);
  top: -10px;
  left: 0;
}
#top .gr_wrap.on {
  z-index: 2;
  transition: -webkit-clip-path 0.7s ease-out;
  transition: clip-path 0.7s ease-out;
  transition: clip-path 0.7s ease-out, -webkit-clip-path 0.7s ease-out;
  -webkit-clip-path: polygon(0% 0%, 150% 0%, 100% 100%, 0% 100%);
          clip-path: polygon(0% 0%, 150% 0%, 100% 100%, 0% 100%);
}
#top .gr_wrap .gr_bg {
  position: absolute;
  width: calc(100% - (100% - 1200px) / 2);
  height: 100%;
  top: 0;
  right: 0;
  z-index: 1;
  overflow: hidden;
}
#top .gr_wrap .gr_bg:after {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0;
}
#top .gr_wrap .gr_bg .obj {
  position: absolute;
  z-index: 3;
  transform: scale(1.1);
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
#top .gr_wrap .gr_bg .obj.obj_1:before, #top .gr_wrap .gr_bg .obj.obj_1:after, #top .gr_wrap .gr_bg .obj.obj_8:before, #top .gr_wrap .gr_bg .obj.obj_8:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: contain;
}
#top .gr_wrap .gr_bg .obj.obj_1:before, #top .gr_wrap .gr_bg .obj.obj_8:before {
  animation: bg_anm 30s linear 0s infinite;
}
#top .gr_wrap .gr_bg .obj.obj_1:after, #top .gr_wrap .gr_bg .obj.obj_8:after {
  animation: bg_anm 30s linear 0s infinite reverse;
}
@keyframes bg_anm {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
#top .gr_wrap .gr_bg .obj.obj_1 {
  width: 414px;
  height: 414px;
  left: 80px;
  top: -65px;
}
#top .gr_wrap .gr_bg .obj.obj_2 {
  width: 140px;
  height: 108px;
  top: 3%;
  left: 17%;
}
#top .gr_wrap .gr_bg .obj.obj_3 {
  width: 116px;
  height: 116px;
  top: 10%;
  right: 25%;
}
#top .gr_wrap .gr_bg .obj.obj_4 {
  width: 84px;
  height: 93px;
  top: -55px;
  right: 1.5%;
}
#top .gr_wrap .gr_bg .obj.obj_5 {
  width: 84px;
  height: 84px;
  top: 60%;
  left: 10%;
}
#top .gr_wrap .gr_bg .obj.obj_6 {
  width: 130px;
  height: 156px;
  bottom: 4%;
  left: 25%;
}
#top .gr_wrap .gr_bg .obj.obj_7 {
  width: 135px;
  height: 155px;
  bottom: 10%;
  right: 29%;
}
#top .gr_wrap .gr_bg .obj.obj_8 {
  width: 294px;
  height: 294px;
  bottom: -50px;
  right: 12%;
}
#top .gr_wrap .gr_bg .obj.obj_9 {
  width: 116px;
  height: 116px;
  bottom: 34%;
  right: -50px;
}
#top .gr_wrap .gr_bg .obj.obj_10 {
  width: 97px;
  height: 97px;
  bottom: -70px;
  left: 40%;
}
#top .gr_wrap .gr_bg .obj.obj_11 {
  width: 100px;
  height: 100px;
  bottom: 42%;
  right: -7px;
  animation: bg_anm 30s linear 0s infinite;
}
#top .gr_wrap .gr_bg .obj.obj_12 {
  width: 96px;
  height: 96px;
  bottom: 13%;
  left: 22.5%;
  animation: bg_anm 30s linear 0s infinite;
}
#top .gr_wrap .gr_content {
  position: relative;
  height: 100%;
  width: 1200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 2;
}
#top .gr_wrap .gr_content:after {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  width: 1000px;
  left: -860px;
  height: 100%;
}
#top .gr_wrap .gr_content .jk {
  position: relative;
  box-shadow: 0px 0px 50px -10px rgba(81, 90, 95, 0.3);
  margin-right: 30px;
}
#top .gr_wrap .gr_content .jk > div {
  position: absolute;
  top: 0;
  left: 0;
}
#top .gr_wrap .gr_content .ttl svg {
  width: 511px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 30px #fff);
}
#top .bar {
  position: absolute;
  width: 10px;
  height: calc(100vh - 20px);
  top: 10px;
  left: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
}
#top .bar > div {
  flex: 1;
  transition: all 0.5s ease-out;
}
#top .bar > div.on {
  flex: 1.5;
}
#top .scroll {
  position: absolute;
  z-index: 2;
  right: 30px;
  bottom: 10px;
}
#top .scroll a {
  display: block;
  gap: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#top .scroll .img {
  padding-left: 2px;
}
#top .scroll .line {
  position: relative;
  overflow: hidden;
  width: 2px;
  height: 70px;
  background: rgba(78, 78, 78, 0.3);
}
#top .scroll .line:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 30px;
  top: 0;
  left: 0;
  background: rgba(78, 78, 78, 0.7);
  animation: scroll_anm 2.5s ease-out 0s infinite;
}
@keyframes scroll_anm {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(300px);
  }
}
#top .st:before {
  background: #F8EEB6;
}
#top .st .gr_bg:after {
  background: #fdfaf0;
}
#top .st .gr_bg .obj_1:before {
  background-image: url(../img/obj_st_1_a.png);
}
#top .st .gr_bg .obj_1:after {
  background-image: url(../img/obj_st_1_b.png);
}
#top .st .gr_bg .obj_2 {
  background-image: url(../img/obj_st_2.png);
}
#top .st .gr_bg .obj_3 {
  background-image: url(../img/obj_st_3.png);
}
#top .st .gr_bg .obj_4 {
  background-image: url(../img/obj_st_4.png);
}
#top .st .gr_bg .obj_5 {
  background-image: url(../img/obj_st_5.png);
}
#top .st .gr_bg .obj_6 {
  background-image: url(../img/obj_st_6.png);
}
#top .st .gr_bg .obj_7 {
  background-image: url(../img/obj_st_7.png);
}
#top .st .gr_bg .obj_8:before {
  background-image: url(../img/obj_st_8_a.png);
}
#top .st .gr_bg .obj_8:after {
  background-image: url(../img/obj_st_8_b.png);
}
#top .st .gr_bg .obj_9 {
  background-image: url(../img/obj_st_9.png);
}
#top .st .gr_bg .obj_10 {
  background-image: url(../img/obj_st_10.png);
}
#top .st .gr_bg .obj_11 {
  background-image: url(../img/obj_st_11.png);
}
#top .st .gr_bg .obj_12 {
  background-image: url(../img/obj_st_12.png);
}
#top .st .gr_content:after {
  background: #d0b830;
}
@media (min-width: 800px) {
  #top .st .gr_content .ttl svg .d {
    fill: #dac755;
  }
}
#top .bar .st {
  background: #d0b830;
}
#top .qn:before {
  background: #DDDDDD;
}
#top .qn .gr_bg:after {
  background: #f5f5f5;
}
#top .qn .gr_bg .obj_1:before {
  background-image: url(../img/obj_qn_1_a.png);
}
#top .qn .gr_bg .obj_1:after {
  background-image: url(../img/obj_qn_1_b.png);
}
#top .qn .gr_bg .obj_2 {
  background-image: url(../img/obj_qn_2.png);
}
#top .qn .gr_bg .obj_3 {
  background-image: url(../img/obj_qn_3.png);
}
#top .qn .gr_bg .obj_4 {
  background-image: url(../img/obj_qn_4.png);
}
#top .qn .gr_bg .obj_5 {
  background-image: url(../img/obj_qn_5.png);
}
#top .qn .gr_bg .obj_6 {
  background-image: url(../img/obj_qn_6.png);
}
#top .qn .gr_bg .obj_7 {
  background-image: url(../img/obj_qn_7.png);
}
#top .qn .gr_bg .obj_8:before {
  background-image: url(../img/obj_qn_8_a.png);
}
#top .qn .gr_bg .obj_8:after {
  background-image: url(../img/obj_qn_8_b.png);
}
#top .qn .gr_bg .obj_9 {
  background-image: url(../img/obj_qn_9.png);
}
#top .qn .gr_bg .obj_10 {
  background-image: url(../img/obj_qn_10.png);
}
#top .qn .gr_bg .obj_11 {
  background-image: url(../img/obj_qn_11.png);
}
#top .qn .gr_bg .obj_12 {
  background-image: url(../img/obj_qn_12.png);
}
#top .qn .gr_content:after {
  background: #b3b3b3;
}
@media (min-width: 800px) {
  #top .qn .gr_content .ttl svg .d {
    fill: #a7a7a7;
  }
}
#top .bar .qn {
  background: #b3b3b3;
}
#top .hv:before {
  background: #D4D8E6;
}
#top .hv .gr_bg:after {
  background: #f1f5f8;
}
#top .hv .gr_bg .obj_1:before {
  background-image: url(../img/obj_hv_1_a.png);
}
#top .hv .gr_bg .obj_1:after {
  background-image: url(../img/obj_hv_1_b.png);
}
#top .hv .gr_bg .obj_2 {
  background-image: url(../img/obj_hv_2.png);
}
#top .hv .gr_bg .obj_3 {
  background-image: url(../img/obj_hv_3.png);
}
#top .hv .gr_bg .obj_4 {
  background-image: url(../img/obj_hv_4.png);
}
#top .hv .gr_bg .obj_5 {
  background-image: url(../img/obj_hv_5.png);
}
#top .hv .gr_bg .obj_6 {
  background-image: url(../img/obj_hv_6.png);
}
#top .hv .gr_bg .obj_7 {
  background-image: url(../img/obj_hv_7.png);
}
#top .hv .gr_bg .obj_8:before {
  background-image: url(../img/obj_hv_8_a.png);
}
#top .hv .gr_bg .obj_8:after {
  background-image: url(../img/obj_hv_8_b.png);
}
#top .hv .gr_bg .obj_9 {
  background-image: url(../img/obj_hv_9.png);
}
#top .hv .gr_bg .obj_10 {
  background-image: url(../img/obj_hv_10.png);
}
#top .hv .gr_bg .obj_11 {
  background-image: url(../img/obj_hv_11.png);
}
#top .hv .gr_bg .obj_12 {
  background-image: url(../img/obj_hv_12.png);
}
#top .hv .gr_content:after {
  background: #334186;
}
@media (min-width: 800px) {
  #top .hv .gr_content .ttl svg .d {
    fill: #7478b9;
  }
}
#top .bar .hv {
  background: #334186;
}

@media (max-width: 800px) {
  #top {
    min-height: 700px;
    max-height: 750px;
  }
  #top .gr_wrap {
    padding: 0;
    overflow: hidden;
  }
  #top .gr_wrap .gr_bg {
    width: 100%;
  }
  #top .gr_wrap .gr_bg .obj {
    background-size: contain;
    transform: scale(1);
  }
  #top .gr_wrap .gr_bg .obj.obj_1 {
    width: 240px;
    height: 240px;
    left: -70px;
    top: -25px;
  }
  #top .gr_wrap .gr_bg .obj.obj_2 {
    width: 80px;
    height: 80px;
    top: 3%;
    left: 6%;
  }
  #top .gr_wrap .gr_bg .obj.obj_3 {
    width: 70px;
    height: 70px;
    top: 5.5%;
    right: 20%;
  }
  #top .gr_wrap .gr_bg .obj.obj_4 {
    display: none;
  }
  #top .gr_wrap .gr_bg .obj.obj_5 {
    display: none;
  }
  #top .gr_wrap .gr_bg .obj.obj_6 {
    display: none;
  }
  #top .gr_wrap .gr_bg .obj.obj_7 {
    display: none;
  }
  #top .gr_wrap .gr_bg .obj.obj_8 {
    display: none;
  }
  #top .gr_wrap .gr_bg .obj.obj_9 {
    display: none;
  }
  #top .gr_wrap .gr_bg .obj.obj_10 {
    display: none;
  }
  #top .gr_wrap .gr_bg .obj.obj_11 {
    width: 80px;
    height: 80px;
    bottom: auto;
    top: 38%;
    right: -50px;
  }
  #top .gr_wrap .gr_bg .obj.obj_12 {
    display: none;
  }
  #top .gr_wrap .gr_content {
    width: 100%;
    height: auto;
    padding: 20px;
    flex-direction: column;
    align-items: start;
  }
  #top .gr_wrap .gr_content:after {
    content: "";
    display: block;
    position: absolute;
    z-index: -1;
    width: 100%;
    left: 0;
    bottom: -670px;
    height: 1000px;
  }
  #top .gr_wrap .gr_content .jk {
    margin: 0 0 20px 0;
  }
  #top .gr_wrap .gr_content .verselect {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 25px;
  }
  #top .gr_wrap .gr_content .verselect .ver_txt {
    display: flex;
    gap: 10px;
    align-items: center;
  }
  #top .gr_wrap .gr_content .verselect .ver_txt img {
    width: 50px;
  }
  #top .gr_wrap .gr_content .verselect .ver_txt:after {
    content: "";
    display: block;
    width: 50px;
    height: 1px;
    background: #fff;
  }
  #top .gr_wrap .gr_content .verselect .icon {
    display: flex;
    align-items: center;
    gap: 3px;
  }
  #top .gr_wrap .gr_content .verselect .icon svg {
    opacity: 0.5;
    transform: scale(0.6);
    vertical-align: middle;
    transition: all 0.2s ease-out;
  }
  #top .gr_wrap .gr_content .verselect .icon svg .cls-1 {
    fill: #fff;
  }
  #top .gr_wrap .gr_content .verselect .icon .on svg {
    opacity: 1;
    transform: scale(1);
  }
  #top .gr_wrap .gr_content .ttl svg {
    filter: none;
    margin-bottom: 0;
    max-width: 100%;
  }
  #top .gr_wrap .gr_content .ttl svg .d {
    fill: #fff;
  }
  #top .bar {
    width: 100%;
    height: 10px;
    top: auto;
    bottom: 10px;
    flex-direction: row;
  }
}
/* ================================================================ *
* about
* ================================================================ */
#about .pg_content {
  text-align: center;
  font-size: 24px;
  line-height: 2;
}
#about .pg_content > p + p {
  margin-top: 50px;
}

@media (max-width: 800px) {
  #about .pg_content {
    font-size: 16px;
    line-height: 2;
  }
  #about .pg_content > p + p {
    margin-top: 30px;
  }
}
/* ================================================================ *
* detail
* ================================================================ */
#detail .pg_content {
  display: flex;
  gap: 60px;
}
#detail .pg_content .jk_wrap {
  width: 350px;
}
#detail .pg_content .jk_wrap .jk {
  position: relative;
  width: 350px;
  aspect-ratio: 1;
  margin-bottom: 10px;
}
#detail .pg_content .jk_wrap .jk li {
  position: absolute;
  border: 1px solid #E5E1D9;
  opacity: 0;
  transition: all 0.5s ease-out;
}
#detail .pg_content .jk_wrap .jk li.on {
  opacity: 1;
}
#detail .pg_content .jk_wrap .detail_verselect {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 80%;
  margin: 0 auto;
}
#detail .pg_content .jk_wrap .detail_verselect .select {
  cursor: pointer;
}
@media (min-width: 800px) {
  #detail .pg_content .jk_wrap .detail_verselect .select {
    transition: all 0.3s ease-out;
  }
  #detail .pg_content .jk_wrap .detail_verselect .select:hover {
    color: #21BFD5;
  }
}
#detail .pg_content .jk_wrap .detail_verselect .ver {
  position: relative;
  flex: 1;
}
#detail .pg_content .jk_wrap .detail_verselect .ver li {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  text-align: center;
  font-size: 14px;
  opacity: 0;
  transition: all 0.5s ease-out;
}
#detail .pg_content .jk_wrap .detail_verselect .ver li.on {
  position: relative;
  opacity: 1;
}
#detail .pg_content .txt_wrap {
  flex: 1;
}
#detail .pg_content .txt_wrap h3 {
  margin-bottom: 15px;
}
#detail .pg_content .txt_wrap h3 .ttl {
  color: #21BFD5;
  font-size: 24px;
  line-height: 2;
  font-weight: bold;
}
#detail .pg_content .txt_wrap table.hinban th {
  position: relative;
  display: flex;
  justify-content: space-between;
  text-align: left;
  font-weight: 400;
  padding-right: 10px;
}
#detail .pg_content .txt_wrap table.hinban th:after {
  content: ":";
  position: relative;
  margin-left: 10px;
}
#detail .pg_content .txt_wrap table.tokuten {
  width: 100%;
}
#detail .pg_content .txt_wrap table.tokuten > tbody > tr > th {
  width: 122px;
  padding: 0 0 7.5px;
}
#detail .pg_content .txt_wrap table.tokuten > tbody > tr > td .pp_img_btn {
  margin-right: 10px;
}
#detail .pg_content .txt_wrap table.tokuten > tbody > tr > td .pp_img_btn .pp_img {
  width: auto;
  height: 118px;
  -o-object-fit: contain;
     object-fit: contain;
}
#detail .pg_content .txt_wrap table.tokuten > tbody > tr > td .pp_img_btn:after {
  width: 32px;
  height: 32px;
  bottom: 1px;
  right: 1px;
}
#detail .pg_content .txt_wrap table.tokuten > tbody > tr > td:nth-of-type(3) .pp_img_btn {
  margin-right: 0;
}
#detail .pg_content .txt_wrap table.tokuten > tbody > tr:first-of-type {
  border-bottom: none;
}
#detail .pg_content .txt_wrap table.tokuten > tbody > tr:first-of-type > td {
  height: 118px;
  padding: 0;
}
#detail .pg_content .txt_wrap table.tokuten > tbody > tr:nth-of-type(2) {
  border-bottom: 1px solid #e5e1d9;
  text-align: center;
}
#detail .pg_content .txt_wrap table.tokuten > tbody > tr:nth-of-type(2) > td {
  padding: 2.1px 0 15px;
  font-size: 11px;
  line-height: 1.9545454545;
}
#detail .pg_content .txt_wrap .no_border {
  border-bottom: none;
}
#detail .pg_content .txt_wrap .no_border > th, #detail .pg_content .txt_wrap .no_border > td {
  padding: 15px 0;
}

@media (max-width: 800px) {
  #detail .pg_content {
    display: block;
  }
  #detail .pg_content .jk_wrap {
    width: 100%;
    margin-bottom: 30px;
  }
  #detail .pg_content .jk_wrap .jk {
    width: 100%;
  }
  #detail .pg_content .txt_wrap h3 .ttl {
    font-size: 20px;
  }
  #detail .pg_content .txt_wrap table.spec {
    font-size: 90%;
  }
  #detail .pg_content .txt_wrap table.hinban th {
    padding-right: 5px;
  }
  #detail .pg_content .txt_wrap table.hinban th:after {
    margin-left: 5px;
  }
  #detail .pg_content .txt_wrap table.tokuten > tbody > tr > th {
    width: 95px;
  }
  #detail .pg_content .txt_wrap table.tokuten > tbody > tr > td {
    width: 438px;
  }
  #detail .pg_content .txt_wrap table.tokuten > tbody > tr > td .pp_img_btn {
    margin-right: 0;
  }
  #detail .pg_content .txt_wrap table.tokuten > tbody > tr > td .pp_img_btn .pp_img {
    width: 438px;
    height: auto;
    -o-object-fit: unset;
       object-fit: unset;
  }
  #detail .pg_content .txt_wrap table.tokuten > tbody > tr > td:last-of-type {
    width: inherit;
  }
  #detail .pg_content .txt_wrap table.tokuten > tbody > tr > td:last-of-type .pp_img_btn {
    margin-right: 0;
  }
  #detail .pg_content .txt_wrap table.tokuten > tbody > tr > td:last-of-type .pp_img_btn::after {
    width: 37px;
    height: 37px;
    bottom: 5px;
    right: 5px;
  }
  #detail .pg_content .txt_wrap table.tokuten > tbody > tr:nth-of-type(2) {
    border-bottom: none;
  }
  #detail .pg_content .txt_wrap table.tokuten > tbody > tr:nth-of-type(even) td {
    text-align: center;
    padding: 1.1px 0 15px;
    font-size: 90%;
  }
  #detail .pg_content .txt_wrap table.tokuten > tbody > tr:last-of-type {
    border-bottom: 1px solid #e5e1d9;
  }
  #detail .pg_content .txt_wrap .no_border {
    border-bottom: none;
  }
  #detail .pg_content .txt_wrap .no_border > th, #detail .pg_content .txt_wrap .no_border > td {
    padding: 15px 0;
  }
}
/* ================================================================ *
* tracklist
* ================================================================ */
#tracklist .tracklist {
  border-top: 1px solid #e5e1d9;
}
#tracklist .tracklist li {
  border-bottom: 1px solid #e5e1d9;
  display: flex;
  padding: 20px 0 25px;
}
#tracklist .tracklist li .track {
  font-family: "fot-tsukuaoldmin-pr6n", "Hiragino Mincho Pro", "Hiragino Mincho ProN", "Hiragino Mincho", "Noto Serif JP", "游明朝", "游明朝体", "Yu Mincho", "HGS明朝E", "HG明朝E", "HG明朝", "リュウミン", "メイリオ", "Meiryo", serif;
  font-size: 40px;
  line-height: 1;
  color: #FD77B5;
  width: 60px;
  opacity: 0.5;
}
#tracklist .tracklist li .txt {
  flex: 1;
}
#tracklist .tracklist li .txt .ttl {
  font-family: "fot-tsukuaoldmin-pr6n", "Hiragino Mincho Pro", "Hiragino Mincho ProN", "Hiragino Mincho", "Noto Serif JP", "游明朝", "游明朝体", "Yu Mincho", "HGS明朝E", "HG明朝E", "HG明朝", "リュウミン", "メイリオ", "Meiryo", serif;
  font-size: 28px;
  line-height: 1.5;
  color: #FD77B5;
  letter-spacing: 3px;
}
#tracklist .tracklist li .txt .ttl .offvocal {
  font-size: 70%;
  display: inline-block;
  margin-left: 10px;
}
#tracklist .tracklist li .txt .artist {
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.5;
}
#tracklist .tracklist li .txt .artist .singer {
  margin-bottom: 20px;
  display: block;
}
#tracklist .tracklist li .player {
  width: 44px;
  margin-left: 30px;
}
#tracklist .tracklist li .player > div {
  position: relative;
  width: 44px;
  height: 44px;
  overflow: hidden;
  cursor: pointer;
}
#tracklist .tracklist li .player > div:before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
#tracklist .tracklist li .player > div:before {
  z-index: 1;
  background: url(../img/btn_play.png) 0 50% no-repeat;
  background-size: auto 100%;
}
#tracklist .tracklist li .player > div.on:before {
  background-position: 100% 50%;
}

@media (max-width: 800px) {
  #tracklist .tracklist li {
    padding: 20px 0;
  }
  #tracklist .tracklist li .track {
    font-size: 24px;
    line-height: 24px;
    width: 25px;
  }
  #tracklist .tracklist li .txt .ttl {
    font-size: 22px;
    line-height: 24px;
    letter-spacing: 1px;
  }
  #tracklist .tracklist li .txt .ttl .offvocal {
    font-size: 70%;
    line-height: 1;
    display: block;
    margin-left: 0;
    margin-top: 10px;
  }
  #tracklist .tracklist li .txt .artist {
    font-size: 14px;
  }
  #tracklist .tracklist li .player {
    width: 28px;
    margin-left: 0px;
    transform: translateY(-3px);
  }
  #tracklist .tracklist li .player > div {
    width: 28px;
    height: 28px;
  }
}
/* ================================================================ *
* movie
* ================================================================ */
#movie .pg_content {
  text-align: center;
}
#movie .pg_content .cmsn {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
#movie .pg_content .cmsn img {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transition: all 0.3s ease-out;
}
#movie .pg_content .cmsn img.on {
  position: relative;
  opacity: 1;
}
#movie .pg_content .pp_movie_btn {
  position: relative;
  overflow: hidden;
}
#movie .pg_content .pp_movie_btn .movie_thumb {
  transition: all 0.4s ease-out;
}
#movie .pg_content .pp_movie_btn .movie_btn {
  width: 10%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: filter 0.4s ease-out;
}
#movie .pg_content .pp_movie_btn:hover .movie_btn {
  filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(212deg) brightness(103%) contrast(101%);
}
#movie .pg_content .pp_movie_btn:hover .movie_thumb {
  transform: scale(1.1);
}

/* ================================================================ *
* privilege
* ================================================================ */
#privilege .pg_content {
  text-align: center;
}
#privilege .disc {
  margin-bottom: 60px;
}
#privilege .disc p {
  font-size: 20px;
  line-height: 1.8;
  margin-bottom: 45px;
}
#privilege .box_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
#privilege .box_wrap li {
  border: 1px solid rgba(78, 78, 78, 0.5);
  width: calc(33.3333333% - 10px);
  padding: 25px 20px 30px;
  display: flex;
  flex-direction: column;
}
#privilege .box_wrap li h3 {
  color: #21BFD5;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 600;
  height: 50px;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#privilege .box_wrap li h3 span {
  font-size: 70%;
  display: block;
}
#privilege .box_wrap li .pp_img_btn {
  margin-bottom: 20px;
  border: 1px solid #e5e1d9;
}
#privilege .box_wrap li .txt {
  margin-bottom: 30px;
}
#privilege .box_wrap li .txt .item {
  font-weight: bold;
  margin-bottom: 5px;
}
#privilege .box_wrap li .txt .item_disc {
  font-size: 13px;
  line-height: 1.5;
}
#privilege .box_wrap li .btn {
  margin-top: auto;
}
#privilege .box_wrap li .btn_wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
#privilege .box_wrap li .btn_wrap .btn:nth-of-type(2) a {
  text-align: left;
}
#privilege .box_wrap li:nth-of-type(3) .btn_wrap {
  margin-top: auto;
}

@media (max-width: 800px) {
  #privilege .disc {
    margin-bottom: 40px;
  }
  #privilege .disc p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
  }
  #privilege .disc ul {
    font-size: 13px;
  }
  #privilege .box_wrap li {
    width: auto;
  }
  #privilege .box_wrap li .txt .item_disc {
    font-size: 12px;
    line-height: 1.5;
  }
}
/* ================================================================ *
* special
* ================================================================ */
#special .pg_content {
  text-align: center;
}
#special .h03 {
  margin-bottom: 50px;
}
#special .h03 .stxt {
  font-size: 16px;
}
#special .h03 .ltxt {
  display: block;
  font-family: "fot-tsukuaoldmin-pr6n", "Hiragino Mincho Pro", "Hiragino Mincho ProN", "Hiragino Mincho", "Noto Serif JP", "游明朝", "游明朝体", "Yu Mincho", "HGS明朝E", "HG明朝E", "HG明朝", "リュウミン", "メイリオ", "Meiryo", serif;
  color: #21BFD5;
  font-size: 36px;
}
#special .disc {
  margin-bottom: 50px;
}
#special .disc .blue {
  font-weight: 600;
}
#special table.spec {
  font-size: 16px;
  margin-bottom: 70px;
}
#special table.spec tr th {
  width: 200px;
  font-weight: 600;
}
#special .kikan p {
  font-weight: 600;
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: 6px;
}
#special .kikan p span {
  font-size: 70%;
}
#special dl.present {
  margin: 0;
  padding: 0;
}
#special dl.present dt {
  font-weight: 600;
  font-size: 20px;
  line-height: 1.3;
  padding-left: 28px;
  margin-bottom: 5px;
  background: url(../img/dl_icon.png) 0 50% no-repeat;
}
#special dl.present dd {
  padding-bottom: 10px;
}
#special dl.present dd:not(:nth-last-of-type(1)) {
  border-bottom: 2px dotted #e5e1d9;
  padding-bottom: 25px;
  margin-bottom: 20px;
}
#special dl.present dd ul.attention {
  margin: 15px 0 20px;
}
#special dl.present dd .pp_ajax_btn {
  width: 100%;
  max-width: 380px;
}
#special ul.item_list li:not(:nth-of-type(1)) {
  padding-top: 15px;
}
#special ul.item_list li:not(:nth-last-of-type(1)) {
  border-bottom: 2px dotted #e5e1d9;
  padding-bottom: 15px;
}
#special .btn_wrap {
  margin-top: 40px;
  flex-wrap: wrap;
}
#special .btn_wrap .btn {
  width: 330px;
}
#special .btn_wrap .btn a {
  padding: 16px;
  font-size: 16px;
}

@media (max-width: 800px) {
  #special .h03 {
    margin-bottom: 30px;
  }
  #special .h03 .ltxt {
    font-size: 26px;
    line-height: 1.3;
    margin-top: 10px;
  }
  #special .disc {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 35px;
  }
  #special table.spec {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 50px;
  }
  #special table.spec tr th {
    width: 70px;
  }
}
/* ================================================================ *
* footer
* ================================================================ */
#gfooter {
  background: #48423B;
  color: #fff;
  margin-top: 120px;
  padding: 100px 50px 60px;
  text-align: center;
}
#gfooter .sns {
  margin-bottom: 100px;
}
#gfooter .sns .txt {
  margin-bottom: 40px;
}
#gfooter .btn_wrap {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 0 auto 80px;
  width: 100%;
  max-width: 1200px;
  gap: 8px;
}
#gfooter .btn_wrap .btn a {
  border-color: rgba(255, 255, 255, 0.8);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  line-height: 1.3;
}
#gfooter .btn_wrap .btn a:after {
  color: #fff;
  right: 10px;
}
#gfooter .copy_wrap {
  font-size: 13px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
#gfooter .copy_wrap .logo {
  width: 35px;
  margin-right: 20px;
}
@media (max-width: 800px) {
  #gfooter .btn_wrap {
    flex-direction: column;
  }
  #gfooter .btn_wrap .btn {
    width: 100%;
  }
  #gfooter .btn_wrap .btn a {
    height: 45px;
  }
  #gfooter .copy_wrap {
    font-size: 10px;
    line-height: 1.5;
    gap: 5px;
    flex-direction: column;
  }
  #gfooter .copy_wrap .logo {
    margin-bottom: 15px;
  }
}

/* ================================================================ *
* popup
* ================================================================ */
#popup,
#popup_movie {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1010;
  pointer-events: none;
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateY(-100%);
  opacity: 0;
  transition: all 0.2s ease-out;
}
#popup > .bg,
#popup_movie > .bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  background: rgba(255, 255, 255, 0.6);
}
#popup .close,
#popup_movie .close {
  position: absolute;
  right: 20px;
  top: 15px;
  z-index: 16;
  width: 60px;
  height: 50px;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease-out;
}
#popup .close span,
#popup_movie .close span {
  position: relative;
  z-index: 10;
  opacity: 0.8;
  display: block;
  width: 60px;
  height: 2px;
  transition: all 0.15s ease-out;
}
#popup .close span:before, #popup .close span:after,
#popup_movie .close span:before,
#popup_movie .close span:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #4E4E4E;
  transition: all 0.15s ease-out;
}
#popup .close span:before,
#popup_movie .close span:before {
  transform: translateY(-7px);
  transform: rotate(25deg);
}
#popup .close span:after,
#popup_movie .close span:after {
  transform: translateY(7px);
  transform: rotate(-25deg);
}
@media (min-width: 800px) {
  #popup .close:hover span:before,
  #popup_movie .close:hover span:before {
    transform: rotate(-25deg);
  }
  #popup .close:hover span:after,
  #popup_movie .close:hover span:after {
    transform: rotate(25deg);
  }
}
#popup .close.on,
#popup_movie .close.on {
  opacity: 1;
}
#popup .content,
#popup_movie .content {
  position: relative;
  width: 85%;
  height: 95%;
  max-width: 1200px;
  max-height: 800px;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-out;
  opacity: 0;
  transform: scale(1.05);
}
#popup .content.on,
#popup_movie .content.on {
  opacity: 1;
  transform: scale(1);
}
#popup .content .wrapper,
#popup_movie .content .wrapper {
  position: relative;
  z-index: 10;
  padding: 0 40px 0 0;
  width: 100%;
  max-height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  opacity: 0;
  transition: all 0.3s ease-out;
}
#popup .content .wrapper.on,
#popup_movie .content .wrapper.on {
  opacity: 1;
}
#popup .content .loading,
#popup_movie .content .loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  transition: all 0.3s ease-out;
  opacity: 1;
  letter-spacing: 2px;
  text-indent: 2px;
  font-size: 85%;
  color: #4E4E4E;
}
#popup .content .loading.on,
#popup_movie .content .loading.on {
  opacity: 0;
}
#popup.on,
#popup_movie.on {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
@media (max-width: 800px) {
  #popup,
  #popup_movie {
    padding: 10px;
  }
  #popup .close,
  #popup_movie .close {
    width: 50px;
    height: 40px;
    right: 10px;
    top: 5px;
  }
  #popup .content,
  #popup_movie .content {
    width: 100%;
    height: auto;
  }
  #popup .content .wrapper,
  #popup_movie .content .wrapper {
    padding: 0;
  }
}

#popup.special .content {
  background: #fff;
  border: 1px solid #e5e1d9;
  box-shadow: 0 0 50px -10px #e5e1d9;
}
#popup.special .content .wrapper {
  padding: 0 30px;
}
#popup.special #gallery {
  padding: 20px;
  margin: 0 auto;
}
#popup.special #gallery .img {
  margin-bottom: 20px;
  text-align: center;
  transition: all 0.1s ease-out;
}
#popup.special #gallery .img.tp {
  opacity: 0;
}
#popup.special #gallery .thumb {
  display: flex;
  justify-content: center;
  gap: 5px;
  flex-wrap: wrap;
  border-top: 1px solid #e5e1d9;
  padding: 15px 50px;
}
#popup.special #gallery .thumb li {
  position: relative;
  width: 70px;
  padding: 5px;
  aspect-ratio: 1;
  background: #fff;
  border: 1px solid #e5e1d9;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.5;
  cursor: pointer;
}
#popup.special #gallery .thumb li img {
  max-height: 100%;
}
#popup.special #gallery .thumb li:after {
  content: "";
  display: block;
  position: absolute;
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  top: -1px;
  left: -1px;
  border: 5px solid #e8d7bc;
  opacity: 0;
  transition: all 0.3s ease-out;
}
#popup.special #gallery .thumb li.on {
  opacity: 1;
}
#popup.special #gallery .thumb li.on:after {
  opacity: 1;
  border-width: 5px;
}
@media (max-width: 800px) {
  #popup.special .content .wrapper {
    padding: 0 20px;
  }
  #popup.special #gallery {
    padding: 30px 0;
  }
  #popup.special #gallery .img {
    aspect-ratio: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #popup.special #gallery .img img {
    max-height: 350px;
  }
  #popup.special #gallery .thumb {
    flex-wrap: wrap;
    padding: 15px 0 0;
  }
  #popup.special #gallery .thumb li {
    width: 13%;
  }
}

#popup.img .content {
  padding: 60px;
  margin-bottom: 10px;
  height: auto;
  width: -moz-fit-content;
  width: fit-content;
}
#popup.img .content .wrapper {
  padding: 0;
  border: 1px solid #e5e1d9;
}
@media (max-width: 800px) {
  #popup.img .content {
    padding: 40px 0px;
  }
}

#popup_movie {
  padding: 0;
}
#popup_movie .close {
  right: 15px;
  top: 15px;
}
#popup_movie #movie_wrap {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 1200px;
  opacity: 0;
  transform: scale(1.05);
  transition: all 0.4s ease-out 0.5s;
}
#popup_movie #movie_wrap:before {
  content: "";
  display: block;
  padding-top: 56.25%;
}
#popup_movie #movie_wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
}
#popup_movie #movie_wrap iframe.on {
  display: block;
}
@media (min-width: 800px) {
  #popup_movie #movie_wrap iframe {
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 800px) {
  #popup_movie #movie_wrap {
    width: 100%;
    height: auto;
  }
}
#popup_movie.on {
  top: 0;
}
#popup_movie.on #movie_wrap {
  opacity: 1;
  transform: scale(1);
}/*# sourceMappingURL=style.css.map */