@charset "utf-8";

/* Reset box-model and set borders */
/* ============================================ */

*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

/* Document */
/* ============================================ */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -webkit-tap-highlight-color: transparent; /* 3*/
  scroll-behavior: smooth;
}

/* Sections */
/* ============================================ */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */

main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */

p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
/* ============================================ */

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */

dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */

/**
 * Remove the gray background on active links in IE 10.
 */

a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */

abbr[title] {
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content */
/* ============================================ */

/**
 * Prevent vertical alignment issues.
 */

img,
embed,
object,
iframe {
  vertical-align: bottom;
}



/* CSS Document */

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
html { font-size: 62.5%; }

body {
  font-size: 1.6rem;
  font-family: 'Noto Sans JP', Meiryo, sans-serif;
  color: #031B57;
  background-color: #fff;
}

html, body {
  height: 100%;
}

li {
  list-style: none;
}

fieldset, img {
  border: 0;
}

img {
  vertical-align: middle;
  max-width: 100%;
}

a {
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
a:hover {
  opacity: 0.7;
  -moz-opacity: 0.7;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
a:hover img {
  opacity: 0.7;
  -moz-opacity: 0.7;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.clearfix:before, .clearfix:after {
  content: " ";
  display: block;
}

.clearfix:after {
  clear: both;
}

@media (max-width: 768px) {
   body {
    font-size: 1.6rem;
  } 
}

/* anime */
.inview,
.inv,
.fadein{
  opacity: 0;
}
.inv{
  animation-delay: 0;
  animation-duration: .6s;
  animation-timing-function: ease;
}

.fadein{
  /*animation-delay: 1.2s;*/
  animation-timing-function: ease;
}



/*****************
common
*****************/
.l_container {
  width: min(98%,1000px);
  margin: auto;
  box-sizing: border-box;
}
.dp_sp{
  display: none;
}
.dp_pc{
  display: block;
}

@media (max-width: 768px) {
  .l_container {
    width: 100%;
  }
  .dp_sp{
    display: block;
  }
  .dp_pc{
    display: none;
  }
  
   .wrapper img{
    width: 100%;
  }
}


/*****************
header
*****************/
.header {
  background: #000;
  position: relative;
  z-index: 10;
}
.header_inner{
  max-width: 1200px;
  width: 100%;
  margin: auto;
  padding: 18px 25px 18px;
}
.logo > li:first-child{
  width: 100%;
  max-width: 238px;
}

@media (max-width: 768px) {
  .header_inner{
    max-width: 100%;
    padding: 1.06vw 0 2.666vw 2.666vw;
  }
  .logo{
    padding-left: 0;
  }
  .logo > li:first-child{
    width: 42.6vw;
    max-width: auto;
  }
}

/*****************
main
*****************/
.main{
  width: min(100%,1440px);
  height: min(55vw,800px);
  margin-inline: auto;
  margin-bottom: 72px;
  overflow: hidden;
}
@media (max-width: 768px) {
.main{
    width: 100%;
    height: 161.6vw;
    margin-bottom: 40px;
  }
}

/*****************
main_animation
*****************/
.main_ani {
  position: relative;
}

/* 配置と重なり順は既存のまま維持 */
.main_ani h1,
.main_ani li {
  display: inline-block;
  position: absolute;
  width: 100%;
  top: 0;
}

.main_ani h1 { z-index: 7; }
.main_ani li:nth-child(1) { z-index: 6; }
.main_ani li:nth-child(2) { z-index: 5; }
.main_ani li:nth-child(3) { z-index: 4; }
.main_ani li:nth-child(4) { z-index: 3; }
.main_ani li:nth-child(5) { z-index: 2; }
.main_ani li:nth-child(6) { z-index: 1; }

/* 配置要素ではなく内側だけを動かす */
.main_ani h1 img,
.main_ani li span {
  display: block;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform-origin: center center;
  transform-origin: center center;
  will-change: transform;
}

/* タイトル：前回より遅く、移動量と拡大率を小さく調整 */
.main_ani h1 img {
  -webkit-animation: themeParkTitleFloat 5.8s ease-in-out infinite;
  animation: themeParkTitleFloat 5.8s ease-in-out infinite;
}

/* 周辺6レイヤー：ゆっくり、控えめに別方向へ動かす */
.main_ani li span {
  text-align: center;
  -webkit-animation-name: themeParkLayerFloat;
  animation-name: themeParkLayerFloat;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;

  --float-x-a: 3px;
  --float-y-a: -5px;
  --float-rotate-a: .18deg;
  --float-scale-a: 1.006;
  --float-x-b: -1px;
  --float-y-b: 2px;
  --float-rotate-b: -.08deg;
  --float-scale-b: .999;
}

.main_ani li:nth-child(1) span {
  -webkit-animation-duration: 5.8s;
  animation-duration: 5.8s;
  -webkit-animation-delay: -1.7s;
  animation-delay: -1.7s;
}

.main_ani li:nth-child(2) span {
  --float-x-a: -4px;
  --float-y-a: -3px;
  --float-rotate-a: -.22deg;
  --float-scale-a: 1.007;
  --float-x-b: 2px;
  --float-y-b: 2px;
  --float-rotate-b: .1deg;
  --float-scale-b: 1.001;
  -webkit-animation-duration: 6.8s;
  animation-duration: 6.8s;
  -webkit-animation-delay: -4.1s;
  animation-delay: -4.1s;
}

.main_ani li:nth-child(3) span {
  --float-x-a: 2px;
  --float-y-a: 4px;
  --float-rotate-a: .14deg;
  --float-scale-a: .997;
  --float-x-b: -2px;
  --float-y-b: -3px;
  --float-rotate-b: -.12deg;
  --float-scale-b: 1.006;
  -webkit-animation-duration: 6.2s;
  animation-duration: 6.2s;
  -webkit-animation-delay: -.9s;
  animation-delay: -.9s;
}

.main_ani li:nth-child(4) span {
  --float-x-a: -3px;
  --float-y-a: 4px;
  --float-rotate-a: -.16deg;
  --float-scale-a: 1.004;
  --float-x-b: 2px;
  --float-y-b: -3px;
  --float-rotate-b: .12deg;
  --float-scale-b: .999;
  -webkit-animation-duration: 7.2s;
  animation-duration: 7.2s;
  -webkit-animation-delay: -4.8s;
  animation-delay: -4.8s;
}

.main_ani li:nth-child(5) span {
  --float-x-a: 4px;
  --float-y-a: -3px;
  --float-rotate-a: .2deg;
  --float-scale-a: 1.006;
  --float-x-b: -2px;
  --float-y-b: 3px;
  --float-rotate-b: -.1deg;
  --float-scale-b: 1.001;
  -webkit-animation-duration: 6.5s;
  animation-duration: 6.5s;
  -webkit-animation-delay: -2.8s;
  animation-delay: -2.8s;
}

.main_ani li:nth-child(6) span {
  --float-x-a: -3px;
  --float-y-a: -5px;
  --float-rotate-a: -.14deg;
  --float-scale-a: 1.007;
  --float-x-b: 1px;
  --float-y-b: 2px;
  --float-rotate-b: .08deg;
  --float-scale-b: .998;
  -webkit-animation-duration: 7.6s;
  animation-duration: 7.6s;
  -webkit-animation-delay: -5.7s;
  animation-delay: -5.7s;
}

@-webkit-keyframes themeParkTitleFloat {
  0%, 100% {
    -webkit-transform: translate3d(0, 0, 0) scale(1);
    transform: translate3d(0, 0, 0) scale(1);
  }
  30% {
    -webkit-transform: translate3d(2px, -4px, 0) scale(1.006);
    transform: translate3d(2px, -4px, 0) scale(1.006);
  }
  62% {
    -webkit-transform: translate3d(-1px, 1px, 0) scale(.999);
    transform: translate3d(-1px, 1px, 0) scale(.999);
  }
  84% {
    -webkit-transform: translate3d(1px, -2px, 0) scale(1.003);
    transform: translate3d(1px, -2px, 0) scale(1.003);
  }
}

@keyframes themeParkTitleFloat {
  0%, 100% {
    -webkit-transform: translate3d(0, 0, 0) scale(1);
    transform: translate3d(0, 0, 0) scale(1);
  }
  30% {
    -webkit-transform: translate3d(2px, -4px, 0) scale(1.006);
    transform: translate3d(2px, -4px, 0) scale(1.006);
  }
  62% {
    -webkit-transform: translate3d(-1px, 1px, 0) scale(.999);
    transform: translate3d(-1px, 1px, 0) scale(.999);
  }
  84% {
    -webkit-transform: translate3d(1px, -2px, 0) scale(1.003);
    transform: translate3d(1px, -2px, 0) scale(1.003);
  }
}

@-webkit-keyframes themeParkLayerFloat {
  0%, 100% {
    -webkit-transform: translate3d(0, 0, 0) rotate(0) scale(1);
    transform: translate3d(0, 0, 0) rotate(0) scale(1);
  }
  38% {
    -webkit-transform: translate3d(var(--float-x-a), var(--float-y-a), 0) rotate(var(--float-rotate-a)) scale(var(--float-scale-a));
    transform: translate3d(var(--float-x-a), var(--float-y-a), 0) rotate(var(--float-rotate-a)) scale(var(--float-scale-a));
  }
  74% {
    -webkit-transform: translate3d(var(--float-x-b), var(--float-y-b), 0) rotate(var(--float-rotate-b)) scale(var(--float-scale-b));
    transform: translate3d(var(--float-x-b), var(--float-y-b), 0) rotate(var(--float-rotate-b)) scale(var(--float-scale-b));
  }
}

@keyframes themeParkLayerFloat {
  0%, 100% {
    -webkit-transform: translate3d(0, 0, 0) rotate(0) scale(1);
    transform: translate3d(0, 0, 0) rotate(0) scale(1);
  }
  38% {
    -webkit-transform: translate3d(var(--float-x-a), var(--float-y-a), 0) rotate(var(--float-rotate-a)) scale(var(--float-scale-a));
    transform: translate3d(var(--float-x-a), var(--float-y-a), 0) rotate(var(--float-rotate-a)) scale(var(--float-scale-a));
  }
  74% {
    -webkit-transform: translate3d(var(--float-x-b), var(--float-y-b), 0) rotate(var(--float-rotate-b)) scale(var(--float-scale-b));
    transform: translate3d(var(--float-x-b), var(--float-y-b), 0) rotate(var(--float-rotate-b)) scale(var(--float-scale-b));
  }
}

/* SPではさらに移動量を抑える */
@media (max-width: 768px) {
  .main_ani h1 img {
    -webkit-animation-name: themeParkTitleFloatSp;
    animation-name: themeParkTitleFloatSp;
  }

  .main_ani li span {
    --float-x-a: 2px;
    --float-y-a: -3px;
    --float-x-b: -1px;
    --float-y-b: 1px;
  }
}

@-webkit-keyframes themeParkTitleFloatSp {
  0%, 100% {
    -webkit-transform: translate3d(0, 0, 0) scale(1);
    transform: translate3d(0, 0, 0) scale(1);
  }
  30% {
    -webkit-transform: translate3d(1px, -3px, 0) scale(1.004);
    transform: translate3d(1px, -3px, 0) scale(1.004);
  }
  62% {
    -webkit-transform: translate3d(-1px, 1px, 0) scale(.999);
    transform: translate3d(-1px, 1px, 0) scale(.999);
  }
  84% {
    -webkit-transform: translate3d(0, -1px, 0) scale(1.002);
    transform: translate3d(0, -1px, 0) scale(1.002);
  }
}

@keyframes themeParkTitleFloatSp {
  0%, 100% {
    -webkit-transform: translate3d(0, 0, 0) scale(1);
    transform: translate3d(0, 0, 0) scale(1);
  }
  30% {
    -webkit-transform: translate3d(1px, -3px, 0) scale(1.004);
    transform: translate3d(1px, -3px, 0) scale(1.004);
  }
  62% {
    -webkit-transform: translate3d(-1px, 1px, 0) scale(.999);
    transform: translate3d(-1px, 1px, 0) scale(.999);
  }
  84% {
    -webkit-transform: translate3d(0, -1px, 0) scale(1.002);
    transform: translate3d(0, -1px, 0) scale(1.002);
  }
}

/* OS側で「視差効果を減らす」が有効な場合 */
@media (prefers-reduced-motion: reduce) {
  .main_ani h1 img,
  .main_ani li span {
    -webkit-animation: none;
    animation: none;
  }
}

/*****************
l_anchorLinkArea
*****************/
.l_anchorLinkArea{
  width:100%;
  margin-bottom: 58px;
  padding-inline: 32px;
  background: #F5F5F5;
  border: 1px solid currentColor;
  border-radius: 16px;
}
.l_anchorLinkTtl{
  margin-block: 21px 32px;
  font-size: 32px;
  font-weight: 500;
  text-align: center;
}
.l_anchorLinkList{
  display: flex;
  flex-wrap: wrap;
  gap: 16px 8px;
}
.l_anchorLinkList li a{
  display: block;
  padding: 11px 12px 11px 28px;
  border: 1px solid currentColor;
  border-radius: 50px;
}
.el_ancIcon_movie,.el_ancIcon_music,.el_ancIcon_tag{
  position: relative;
  z-index: 0;
}

.el_ancIcon_movie::before{
  content: "";
  width: 16px;
  height: 16px;
  border: 0;
  top: 50%;
  left: 8px;
  transform: translateY(-50%);
  background: url(../img/icon_movie.png) no-repeat;
  background-size: contain;
  position: absolute;
}
.el_ancIcon_music::before{
  content: "";
  width: 16px;
  height: 16px;
  border: 0;
  top: 50%;
  left: 8px;
  transform: translateY(-50%);
  background: url(../img/icon_music.png) no-repeat;
  background-size: contain;
  position: absolute;
}
.el_ancIcon_tag::before{
  content: "#";
  border: 0;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  color: #F36AA6;
  position: absolute;
}

@media (max-width: 768px) {
  .l_anchorLinkArea{
    width:95.7%;
    margin-inline: auto;
    margin-bottom: 37px;
    padding-inline: 16px;
  }
  .l_anchorLinkTtl{
    margin-block: 16px 32px;
  }
}


/* accordion */
.accordion {
  position: relative;
  padding-bottom: 60px;
}
/* ボタン */
.accordion-btn {
  padding: 11px 46px 11px 38px;
  border: 1px solid currentColor;
  border-radius: 50px;
  font-size: 14px;

  cursor: pointer;
  display: inline-block;
  left: 0;
  bottom: 16px;
  margin: auto;
  position: absolute;
  right: 0;
  text-align: center;
  transition: all .2s;
  width: fit-content;
  z-index: 3;
}
/* 続きを読むボタンの表記 */
.accordion-btn::after {
  content: "View More";
}
.accordion-btn::before {
content: '';
  width: 8px;
  height: 8px;
  border: 0;
  border-bottom: solid 1px currentColor;
  border-right: solid 1px currentColor;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 2px;
  margin: auto;
}
/* ボタンhover時のスタイル */
.accordion-btn:hover {
  background-color: #031B57;
  color: #F5F5F5;
}
.accordion-text {
  overflow: hidden;
  position: relative;
}
/* 最初に見えてるテキストエリアの高さ */
.accordion-text.is-hide {
  height: 100px;
}
/* テキストをグラデーションで隠す */
.accordion-text::before {
  background: #F5F5F5;
  bottom: 0;
  content: "";
  height: calc(20px); /* グラデーションで隠す高さ */
  position: absolute;
  width: 100%;
  z-index: 2;
}
/* 閉じるボタンの位置 */
.accordion-btn.is-show {
 
}
/* 閉じるボタンの表記 */
.accordion-btn.is-show::after {
  content: "Close";
}
.accordion-btn.is-show::before {
content: '';
  width: 8px;
  height: 8px;
  border: 0;
  border-bottom: solid 1px currentColor;
  border-right: solid 1px currentColor;
  transform: rotate(-135deg);
  position: absolute;
  top: 4px;
  right: 20px;
  bottom: 0;
  margin: auto;
}
/* 続きを見るボタンをクリックしたらテキストを隠しているグラデーションを消す */
.accordion-btn.is-show + .accordion-text::before {
  display: none;
}
/* レイアウトの為のスタイル */
.accordion {
  margin-left: auto;
  margin-right: auto;
}
.accordion:not(:first-of-type) {
  margin-bottom: 100px;
  margin-top: 100px;
}


@media (max-width: 768px) {
  .accordion {
    padding-bottom: 60px;
  }

  /* 最初に見えてるテキストエリアの高さ */
  .accordion-text.is-hide {
    height: 227px;
  }
}


/*****************
l_Work
*****************/
.l_WorkArea{
  margin-bottom: 50px;
  display: flex;
  flex-direction: column;
  gap: 68px;
}
.l_Work{
  padding: 32px 32px 20px 32px;
  background: url(../img/bg_list_pc.png) no-repeat;
  border: 1px solid #031B57;
  border-radius: 16px;
}
.l_WorkTtl{
  margin-bottom: 20px;
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  align-items: center;
  gap: 16px;
}
.l_WorkTtl hgroup h2{
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 8px;
}
.l_WorkTtl hgroup p{
  line-height: 1.4;

}
.l_WorkTtl .icon{
  display: block;
  max-width: 75px;
}
.l_Work .l-list{
  margin-bottom: 24px;
}
.l-workName {
  padding-top: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 90%;
  line-height: 1.4;
}
.tagArea{
  margin-bottom: 12px;
}

.l-workArtist {
  padding-top: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 90%;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .l_WorkArea{
    margin-bottom: 11.25vw;
    display: flex;
    flex-direction: column;
    gap: 43px;
  }
  .l_Work{
    padding: 8px 0 16px 2px;
    background: url(../img/bg_list_sp.png) no-repeat;
  }
  .l_WorkTtl{
    margin: 0 16px 8px;
    gap: 8px;
    align-items: flex-start;
  }
  .l_WorkTtl hgroup h2{
    margin-bottom: 5px;
  }
  .l_WorkTtl .icon{
    width: 64px;
    margin-top: 5px;
  }
  .l_Work .l-list{
    margin-bottom: 16px;
  }
  .tagArea{
    margin-inline: 16px;
    margin-bottom: inherit;
  }
  .tagArea .l_anchorLinkList{
    gap: 8px 8px;
  }
}


/*
 swiper
=====================================================================================*/
.swiper {
  width: 100%;
  position: relative;
  display: block;
}
.swiper-button-prev,
.swiper-button-next {
  width: 45px;
  height: 45px;
  background-size: contain; /* 表示したいサイズ */
  transform: translateY(-50%);
  margin-top: -20px;
}
.swiper-button-prev:after,
.swiper-button-next:after {
 display: none;
}
.swiper-button-prev:hover,
.swiper-button-next:hover {
 opacity: .75;
}

.swiper-button-next{
  background: url(../img/icon_arrowR.png) no-repeat;
  background-size: 100%;
}
.swiper-button-prev{
  background: url(../img/icon_arrowL.png) no-repeat;
  background-size: 100%;
  left: 5px !important;
}
.swiper{
  height: 100%;
  img{
    width: 100%; 
  }
}

.swiper .swiper-slide {
	height: auto;
}

.swiper .swiper-slide img { 
  height: calc(100% - 45px);
  object-fit: contain;
}

@media screen and (max-width: 767px) {
  .swiper-button-prev,
  .swiper-button-next {
    width: 6vw !important;
    height: 6vw !important;
  }
}

@media screen and (max-width: 767px) {
  .swiper-button-prev,
  .swiper-button-next {
    width: 6vw !important;
    height: 6vw !important;
  }
}

/*****************
l_contents
*****************/
.l_contents{
  margin-top: 50px;
  margin-bottom: 70px;
}
.l_contents:first-child{
  margin-top: 40px;
}
.l_contents p{
  line-height: 1.55;
}

@media (max-width: 768px) {
  .l_contents{
    margin-top: 9.3vw;
    margin-bottom: 10vw;
  }
  .l_contents:first-child{
    margin-top: 8.6vw;
  }
  .l_contents p{
    line-height: 1.5;
  }
}

/*****************
bnrArea
*****************/
.bnrArea{
  margin-bottom: 100px;
  font-weight: 500;
}
.bnrArea .l_sttl{
  display: block;
  text-align: center;
  padding-bottom: 30px;
}
.bnrArea ul{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 45px;
}
.bnrArea li p{
  padding-top: 10px;
  text-align: center;
}

@media (max-width: 768px) {
  .bnrArea{
    margin-bottom: 25vw;
  }
  .bnrArea .l_sttl{
    width: min(40vw,160px);
    margin-inline: auto;
    padding-bottom: 5.7vw;
  }
  .bnrArea ul{
    margin-inline: 2.5vw;
    gap: 8.7vw;
  }
  .bnrArea li p{
    padding-top: 1.25vw;
    font-size: 4vw;
  }
}

/*****************
pageTop
*****************/
#page_top{
  position: fixed;
  right: 20px;
  bottom: -100px;
  width: 84px;
  opacity: 0.6;
}

@media (max-width: 768px) {
  #page_top{
    bottom: -100px;
    width: min(21vw,84px);
  }
}

/*****************
footer
*****************/
.footer{
  background: #000;
}
.footer_inner{
  max-width: 1080px;
  margin: auto;
  padding: 11px 20px 16px;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
	-ms-flex-pack: justify;
  justify-content: space-between;
}
.el_footerLogo{
  width: min(180px);
}
.el_license{
  font-size: 1.1rem;
  color: #fff;
  padding-top: 5px;
  text-align: right;
}

@media (max-width: 768px) {
  .footer_inner{
    max-width: 100%;
  }
  .el_footerLogo{
    width: min(120px);
  }
  .el_license{
    font-size: 0.9rem;
    padding-top: 5px;
  }
}