@charset "UTF-8";
/* CSS Document */

html {
  scroll-behavior: smooth;
}
body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  background-color: #151515;
  color: #fff;
  line-height: 1.8;
  font-size: 62.5%;
}
body::before {
  content: "";
  display: block;
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: -1;
  width: 100%;
  height: 100vh;
  background-image: url(../img/bg-all.png);
  background-size: cover;
  background-repeat: no-repeat;
}
.title-h2 {
  font-family: "Zen Old Mincho", serif;
  font-size: 3vw;
  color: #fff;
  font-weight: bold;
  position: relative;
  text-align: center;
  margin: 0 auto 1em;
}
img {
  width: 100%;
}
section,
footer {
  font-size: 1rem;
}
.pc {
  display: block;
}
.sp {
  display: none;
}
@media screen and (max-width: 389px) {
  section {
    font-size: 0.8rem;
  }
  .top-content {
    padding: 10px 0 10px;
  }
}

@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  #sec03 .title-h2,
  #sec04 .title-h2,
  .title-h2 {
    font-size: 7vw;
  }
  #sec05 .title-h2 {
    font-size: 6vw;
  }
}
@media screen and (max-width: 980px) {
  img {
    width: 100%;
  }
}
/*回転する円形のテキストアニメーション
---------------------------------------------------------------------------*/
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.animation-text {
  position: fixed;
  z-index: 1;
  width: 21.7vw;
  top: -7vw;
  right: -7vw;
  bottom: calc(-1 * var(--space-small));
  opacity: 0.3;
}
@media screen and (max-width: 767px) {
  .animation-text {
    width: 41vw;
    top: -10vw;
    right: -10vw;
  }
}
/*アニメーションに関する指定*/
.spin {
  animation: spin 150s linear infinite;
}

/* google map */
/* ============================================ */
iframe {
  aspect-ratio: 5/2;
  width: 100%;
  height: auto;
}

/* 光っているボタン */
/* ============================================ */
.btn_box {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 500px;
  margin: 0 auto;
}

.btn {
  color: #fff;
  font-size: 20px;
  height: 140px;
  line-height: 143px;
  font-weight: bold;
  text-align: center;
  border: 3px solid #fff;
  text-decoration: none;
  letter-spacing: 0.3rem;
  display: block;
  border-radius: 5px;
  box-shadow: 0 0 10px #fff, inset 0 0 10px #fff, 0 0 0px #fff, 0 0 0px #ff5722,
    0 0 0px #ff5722, 0 0 10px #ff5722, 0 0 10px #ff5722, inset 0 0 20px #ff5722;
  text-shadow: 0 0 10px #fff, 0 0 10px #fff, 0 0 0px #fff, 0 0 0px #ff5722,
    0 0 0px #ff5722, 0 0 10px #ff5722, 0 0 10px #ff5722, 0 0 20px #ff5722;
}
.btn span {
  box-shadow: none;
  text-shadow: none;
}
.btn:hover {
  box-shadow: 0 0 20px #fff, inset 0 0 20px #fff, 0 0 0px #fff, 0 0 0px #ff5722,
    0 0 0px #ff5722, 0 0 20px #ff5722, 0 0 20px #ff5722, inset 0 0 20px #ff5722;
}

/*アニメーション*/
.animation {
  transition: all 0.3s ease;
}

/* グラデーションボタン */
/* ============================================ */
a.ticket-btn {
  margin-top: 40px;
  max-width: 500px;
}
.btn-gradient {
  font-size: 18px;
  width: 90%;
  color: #fff;
  text-shadow: 2px 3px 3px rgba(36, 35, 34, 0.423);
  font-weight: bold;
  padding: 20px 50px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  border-radius: 4px;
  text-align: center;
  position: relative;
  z-index: 2;
  will-change: transform, filter;
  transform-style: preserve-3d;
  transition: all 0.3s ease-out;
}
.btn-gradient:hover {
  transform: scale(1.03);
}
.btn-gradient::before {
  content: "";
  height: 40px;
  display: inline-block;
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 5px;
  z-index: -1;
  border-radius: 50px;
  opacity: 0;
  transform-style: preserve-3d;
  transition: all 0.3s ease-out;
}

.gradient1,
.gradient1::before {
  background: url(../img/btn_bg.png) no-repeat center 100%,
    -moz-linear-gradient(to right, #40b0ff 0%, #1256d6 65%, #0f34a1);
  background-size: cover;
  background: url(../img/btn_bg.png) no-repeat center 100%,
    -webkit-linear-gradient(to right, #40b0ff 0%, #1256d6 65%, #0f34a1);
  background-size: cover;
  background: url(../img/btn_bg.png) no-repeat center 100%,
    linear-gradient(to right, #40b0ff 0%, #1256d6 65%, #0f34a1);
  background-size: cover;
}
.gradient2,
.gradient2::before {
  background: url(../img/btn_bg02.png) no-repeat center 100%,
    -moz-linear-gradient(to right, #e96d71 0%, #ffb929 80% 46%, #fcaa00 100%);
  background: url(../img/btn_bg02.png) no-repeat center 100%,
    -webkit-linear-gradient(to right, #e96d71 0%, #ffb929 80% 46%, #fcaa00 100%);
  background: url(../img/btn_bg02.png) no-repeat center 100%,
    linear-gradient(to right, #e96d71 0%, #ffb929 80% 46%, #fcaa00 100%);
  background-size: cover;
}
.gradient3,
.gradient3::before {
  background: -moz-linear-gradient(
    to right,
    #32ccbc 0%,
    #44d3e6 55% 55%,
    #00b5ea 100%
  );
  background: -webkit-linear-gradient(
    to right,
    #32ccbc 0%,
    #44d3e6 55% 55%,
    #00b5ea 100%
  );
  background: linear-gradient(
    to right,
    #32ccbc 0%,
    #44d3e6 55% 55%,
    #00b5ea 100%
  );
}
/* ボタン　枠-パープル */
/* ============================================ */
.btn-waku-white {
  margin: 40px auto 0;
  outline: none;
  max-width: 400px;
  width: 90%;
  font-size: 16px;
  text-align: center;
  border: 2px solid #ffffff;
  font-family: "Lato", sans-serif;
  font-weight: 500;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  justify-content: center;

  align-items: center;
  line-height: 70px;
  padding: 0;
}
.btn-waku-white:hover {
  background: #eee;
  color: #3d3d3d;
}
#sec02 .btn-gradient {
  margin-top: 40px;
  max-width: 400px !important;
}
@media screen and (max-width: 767px) {
  .btn-waku-white {
    font-size: 14px;
    height: 14vw;
  }
}
/* 表 */
/* ============================================ */
.detail-List {
  width: 100%;
  margin: 40px auto;
  border: 1px solid #fff;
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
}
.detail-Item {
  padding: 20px 20px;
  font-size: 1.125rem;
  letter-spacing: 0.04em;
  line-height: 1.8;
  border-bottom: 1px solid #fff;
  text-align: left;
}
.detail-Item p span.small {
  font-size: 0.8em;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .detail-Item {
    padding: 30px 36px;
    display: grid;
    grid-template-columns: 130px auto;
    align-items: flex-start;
    gap: 0 50px;
  }
  .detail-Item br.sp {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .detail-List {
    margin: 0px auto;
  }
  .detail-Item span {
    font-weight: bold;
  }
  .detail-Item p {
    margin-top: 0.5em;
    font-size: 14px;
  }
}
/* ticket表 */
/* ============================================ */
table.ticket {
  width: 100%;
  color: #000;
}
table.ticket,
table.ticket td,
table.ticket th {
  border-collapse: collapse;
  line-height: 1.5;
}
table.ticket td,
table.ticket th {
  padding: 3px;
  width: 30px;
  height: 100px;
  vertical-align: middle;
}
table.ticket .tate {
  writing-mode: vertical-rl;
}
table.ticket td span,
table.ticket th span {
  font-size: 1.2em;
}
table.ticket td.left-cell {
  width: 5%;
}
table.ticket td.center-cell {
  width: 30%;
}

table.ticket th {
  background: #f0e6cc;
}
table.ticket .even {
  background: #fbf8f0;
}
table.ticket .odd {
  background: #fefcf9;
}
table.ticket td.glay01 {
  background-color: #ffffffe8;
}
table.ticket td.glay02 {
  background-color: #ffffffa8;
}
table.ticket td.purple01 {
  background-color: #ffffff42;
  color: #fff;
}
table.ticket td.purple02 {
  background-color: #ffffffb3;
}
table.ticket td.purple03 {
  background-color: #ffffff;
}
table.ticket td.orange01 {
  background-color: #ffffff29;
  color: #fff;
}
table.ticket td.orange02 {
  background-color: #ffffffb3;
}
table.ticket td.orange03 {
  background-color: #ffffff;
}
/* カード グリッド */
/* ============================================ */

.grid-3col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10.4166666667vw 3.6458333333vw;
}
@media screen and (min-width: 1025px) {
  .grid-3col {
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 30px;
  }
  .grid-item figure {
    margin-bottom: 1em;
  }
}
.grid-item {
  padding: 10px;
  text-align: left;
  transition: all 0.2s;
  position: relative;
}
.grid-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
}

.grid-item h3 {
  font-size: 1.3em;
  margin-bottom: 1em;
}
@media screen and (max-width: 1024px) {
  .grid-3col.logos-area {
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 30px;
    padding-left: 3vw;
  }
}
.buppan .grid-item h3 {
  font-size: 1.3em;
  margin-top: 0.8em;
  margin-bottom: 0.5em !important;
}
.grid-item p {
  margin-bottom: 1em;
}
.buppan .grid-item p {
  margin-bottom: 0.5em;
}
.grid-item p.kakaku span {
  font-size: 1.3em;
  padding-right: 0.2em;
}

.grid-item p.konyu {
  text-align: center;
  border: 1px solid #fff;
  padding: 1em;
  width: 100%;
}
.grid-item a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.grid-item:hover {
  cursor: pointer;
  box-shadow: 4px -5px 52px 11px rgba(255, 255, 255, 0.5),
    5px 5px 10px 0px rgba(255, 255, 255, 0.3);
  transform: translateY(-4px);
}
@media screen and (max-width: 767px) {
  .grid-3col.logos-area {
    gap: 10px 10px;
    padding-left: 2vw;
    padding-right: 2vw;
  }
  .grid-item h3 {
    font-size: 1.3em;
    margin-bottom: 10px;
  }

  .grid-item p {
    margin-bottom: 8px;
  }
  .grid-item p.konyu {
    padding: 10px;
  }
}

/* 枠 */
/* ============================================ */
.waku {
  width: 100%;
  padding: 50px 30px;
  margin-top: 40px;
  border: 8px double #fff;
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
}
@media screen and (max-width: 767px) {
  .waku {
    padding: 30px 10px;
    margin-top: 0px;
  }
}
/* 表示領域に入ったらimgタグにじんわりフィルター */
/* ============================================ */
.img-event {
  opacity: 0;
  -moz-transition: -moz-transform 0.5s linear;
  -webkit-transition: -webkit-transform 0.5s linear;
  -o-transition: -o-transform 0.5s linear;
  -ms-transition: -ms-transform 0.5s linear;
  transition: transform 0.5s linear;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.img-blur {
  -webkit-animation-name: imageBlur;
  animation-name: imageBlur;
  opacity: 1;
  transition: 0.5s;
}

@-webkit-keyframes imageBlur {
  from {
    opacity: 0;
    -webkit-filter: blur(15px);
    -moz-filter: blur(15px);
    -ms-filter: blur(15px);
    -o-filter: blur(15px);
    filter: blur(15px);
  }

  to {
    opacity: 1;
    -webkit-filter: blur(0px);
    -moz-filter: blur(0px);
    -ms-filter: blur(0px);
    -o-filter: blur(0px);
    filter: blur(0px);
  }
}
@keyframes imageBlur {
  from {
    opacity: 0;
    -webkit-filter: blur(15px);
    -moz-filter: blur(15px);
    -ms-filter: blur(15px);
    -o-filter: blur(15px);
    filter: blur(15px);
  }

  to {
    opacity: 1;
    -webkit-filter: blur(0px);
    -moz-filter: blur(0px);
    -ms-filter: blur(0px);
    -o-filter: blur(0px);
    filter: blur(0px);
  }
}

/* header */
/* ============================================ */
.hamburger-overlay {
  position: fixed;
  top: 2.2vw;
  right: 2.4vw;
  z-index: 1000;
  width: 3vw;
  height: 3vw;
  border: none;
  background: transparent;
  cursor: pointer;
}

.hamburger-overlay__line {
  position: absolute;
  width: 3vw;
  height: 2px;
  background-color: #fff;
  transition: all 0.6s;
}

.hamburger-overlay__line:nth-of-type(1) {
  top: 14px;
}
.hamburger-overlay__line:nth-of-type(2) {
  top: 23px;
}
.hamburger-overlay__line:nth-of-type(3) {
  top: 32px;
}

.hamburger-overlay.active .hamburger-overlay__line {
  background-color: #fff;
}

.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(1) {
  transform: translateY(9px) rotate(-45deg);
}
.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(2) {
  opacity: 0;
}
.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(3) {
  transform: translateY(-9px) rotate(45deg);
}

.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.95);
  visibility: hidden;
  opacity: 0;
  transition: all 0.6s;
  z-index: 900;
}

.nav-overlay.active {
  visibility: visible;
  opacity: 1;
}

.nav-overlay__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
}

.nav-overlay__list {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: left;
  width: 34em;
}

.nav-overlay__item {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s;
}

.nav-overlay.active .nav-overlay__item {
  opacity: 1;
  transform: translateY(0);
}

.nav-overlay.active .nav-overlay__item:nth-child(1) {
  transition-delay: 0.1s;
}
.nav-overlay.active .nav-overlay__item:nth-child(2) {
  transition-delay: 0.2s;
}
.nav-overlay.active .nav-overlay__item:nth-child(3) {
  transition-delay: 0.3s;
}
.nav-overlay.active .nav-overlay__item:nth-child(4) {
  transition-delay: 0.4s;
}
.nav-overlay.active .nav-overlay__item:nth-child(5) {
  transition-delay: 0.5s;
}
.nav-overlay.active .nav-overlay__item:nth-child(6) {
  transition-delay: 0.6s;
}
.nav-overlay.active .nav-overlay__item:nth-child(7) {
  transition-delay: 0.7s;
}
.nav-overlay.active .nav-overlay__item:nth-child(8) {
  transition-delay: 0.8s;
}
.nav-overlay.active .nav-overlay__item:nth-child(9) {
  transition-delay: 0.9s;
}
.nav-overlay.active .nav-overlay__item:nth-child(10) {
  transition-delay: 1s;
}
.nav-overlay.active .nav-overlay__item:nth-child(11) {
  transition-delay: 1.1s;
}
.nav-overlay.active .nav-overlay__item:nth-child(12) {
  transition-delay: 1.2s;
}

.nav-overlay__link,
.sub-ttl {
  display: inline-block;
  padding: 10px;
  color: #fff;
  font-size: 20px;
  text-decoration: none;
  transition: color 0.3s;
}
.sub {
  position: relative;
}
.sub::before,
.sub::after {
  position: absolute;
  width: 20px;
  height: 30px;
  content: "";
}

.sub::before {
  border-left: #fff double 5px;
  border-top: #fff double 5px;
  top: 5px;
  left: 26px;
  transform: rotateZ(270deg);
}

.sub a {
  padding: 10px 0 16px 3em;
  line-height: 1.2;
}
.nav-overlay__link:hover {
  color: #4a90e2;
}
@media screen and (max-width: 767px) {
  .hamburger-overlay {
    position: fixed;
    top: 4.2vw;
    right: 11.4vw;
  }
  .hamburger-overlay__line {
    width: 7vw;
  }
}
/* section */
/* ============================================ */
#main {
  text-align: center;
}
#sec01,
#sec03,
#sec04,
#sec05,
#sec06,
#sec07,
#form,
#sec08 {
  text-align: center;
  padding: 140px 15px 70px;
  margin-top: -10px;
}
#footer {
  text-align: center;
  padding: 40px 15px 0px;
}
@media screen and (max-width: 767px) {
  #sec01,
  #sec03,
  #sec04,
  #sec05,
  #sec06,
  #sec07,
  #form,
  #sec08 {
    padding: 120px 15px 0px;
    margin-top: -70px;
  }
}
/* メインビジュアル */
/* ============================================ */
#main {
  position: relative;
  padding: 20px 0 60px;
}

#main img {
  width: 100%;
}

@media screen and (max-width: 820px) {
  #main img {
    width: 100% !important;
  }
}
@media screen and (max-width: 767px) {
  #main {
    padding: 20px 0 40px;
  }
  #main .flex-main01box {
    width: 100%;
  }
  #main .flex-main02box {
    width: 100%;
  }
  #main .mainvisual-area {
    display: block;
  }
  #main .mainvisual-area .flex-box-2col {
    width: 98%;
    margin: 0 auto 20px;
  }
}
/* sec01 */
/* ============================================ */

#sec01 .inner-1000 {
  align-items: center;
}

#sec01 .text-lead {
  font-size: 2em;
  margin-top: 20px;
}

@media screen and (max-width: 767px) {
  #sec01 h2 {
    font-size: 5vw;
    line-height: 2;
  }
  #sec01 .text-lead {
    font-size: 1em;
    margin-top: 20px;
  }
}
/* sec02 */
/* ============================================ */
#sec02 ul {
  margin-bottom: 100px;
}
#sec02 .content {
  position: relative;
  padding: 250px 0 200px;
}
#sec02 h2 {
  height: 40%;
}
#sec02 h2.vrtical {
  position: sticky;
  top: 3vh;
  font-size: 3.5vw;
  width: 29%;
  text-align: center;
  line-height: 1.5;
}
#sec02 h2.vrtical span {
  font-size: 3.2vw;
}
#sec02 div.wrap {
  width: 65%;
  padding-right: 5%;
}
#sec02 figure {
  text-align: center;
}

@media screen and (max-width: 767px) {
  #sec02 .content {
    display: block;
    position: relative;
    padding: 50px 0 50px;
  }
  #sec02 div.wrap,
  #sec02 h2.vrtical {
    width: 100%;
  }
  #sec02 h2.vrtical {
    position: relative;
  }
  #sec02 div.wrap {
    padding-right: 0;
  }
  #sec02 div.wrap img {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
  #sec02 h2.vrtical {
    width: 100%;
    text-align: center;
    font-size: 10vw;
    line-height: 1.2;
    top: auto;
    margin-bottom: 30px;
  }
  #sec02 h2.vrtical span {
    font-size: 8.5vw;
  }
}
/* sec03 */
/* ============================================ */
#sec03 h2 {
  font-size: 4vw;
  height: 40%;
}
#sec03 p.text {
  text-align: center;
  margin-top: 2em;
}
#sec03 p.text a {
  color: #427ff1;
  text-decoration: underline;
}
@media screen and (min-width: 768px) {
  #sec03 p.text br {
    display: none;
  }
}
/* sec04 */
/* ============================================ */
#sec04 h2 {
  font-size: 4vw;
  height: 40%;
}

/* sec06 */
/* ============================================ */
#sec06 .detail-Item iframe {
  margin-bottom: 1em;
}
#sec06 .detail-Item a {
  color: #427ff1;
  text-decoration: underline;
}
@media screen and (max-width: 1024px) {
  #sec06 .detail-Item iframe {
    margin-top: 1em;
  }
}

/* sec07 */
/* ============================================ */
#sec07 ul li {
  list-style: none;
  text-align: left;
  margin-bottom: 1.5em;
  margin-left: 1em;
  text-indent: -1em;
}
#sec07 ul li span {
  text-decoration: underline;
}
#sec07 ul li a {
  color: #427ff1;
  text-decoration: underline;
}
#sec07 .waku {
  max-height: 500px;
  overflow: scroll;
}
/* sec08 */
/* ============================================ */
#sec08 .qa-8 dt {
  margin-bottom: 1em;
  color: #ffffff;
  font-weight: 600;
  text-align: left;
  text-indent: -1.5em;
  margin-left: 1.5em;
}

#sec08 .qa-8 dt::before,
#sec08 .qa-8 dd::before {
  margin-right: 0.4em;
}

#sec08 .qa-8 dt::before {
  content: "Q.";
}

#sec08 .qa-8 dd {
  margin: 0 0 2.5em;
  padding: 1em 1.5em;
  background-color: #ffffffdb;
  color: #333333;
  text-align: left;
  text-indent: -1.5em;
  padding-left: 2.5em;
}

#sec08 .qa-8 dd::before {
  content: "A.";
}
#sec08 .qa-8 span {
  font-size: 1.2em;
  font-weight: bold;
}
#sec08 .waku {
  max-height: 500px;
  overflow: scroll;
}
/* sec08 */
/* ============================================ */
#sec-schedule .tab-2 {
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0 10px;
  max-width: 1200px;
}

#sec-schedule .tab-2 > label {
  flex: 1 1;
  order: -1;
  opacity: .5;
  min-width: 70px;
  padding: .6em 1em;
  border-radius: 5px 5px 0 0;
  background-color: #ffffffb0;
  color: #000000;
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-size: 1.8em;
  text-align: center;
  cursor: pointer;
}

#sec-schedule .tab-2 > label:hover {
  opacity: .8;
}

#sec-schedule .tab-2 input {
  display: none;
}

#sec-schedule .tab-2 > div {
  display: none;
  width: 100%;
  padding: 1.5em 1em;
  color: #000;
  background-color: #ffffffb0;
}

#sec-schedule .tab-2 label:has(:checked) {
  opacity: 1;
}

#sec-schedule .tab-2 label:has(:checked) + div {
  display: block;
}
@media screen and (max-width: 767px) {
  #sec-schedule .tab-2 > label {
    padding: 0.3em 1em;
    font-size: 1.3em;
}
}
/* footer-sns */
/* ============================================ */
.footer-sns {
  justify-content: center;
  gap: 4%;
  margin-top: 40px;
  margin-bottom: 40px;
}
.footer-sns a {
  width: 48%;
  box-shadow: 4px -5px 52px 11px rgba(255, 255, 255, 0.5),
    5px 5px 10px 0px rgba(255, 255, 255, 0.3);
}
/* footer */
/* ============================================ */

.footer-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(4, 1fr);
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  }
  
  .fn-01 { grid-area: 1 / 1 / 2 / 2; }
  .fn-02 { grid-area: 1 / 2 / 4 / 4; }
  .fn-03 { grid-area: 1 / 4 / 2 / 5; }
  .fn-04 { grid-area: 4 / 1 / 5 / 2; }
  .fn-05 { grid-area: 4 / 2 / 5 / 3; }
  .fn-06 { grid-area: 4 / 3 / 5 / 4; }
  .fn-07 { grid-area: 4 / 4 / 5 / 5; } 
    #footer ul {
      margin-bottom: 4em;
    }
    #footer ul li {
      font-size: 1rem;
      margin-bottom: 1em;
      line-height: 1.5;
    }
    #footer ul li:first-child {
      font-size: 1.3rem;
    }
    #footer .big {
      font-size: 1.5em;
      margin-bottom: 1em;
    }    
@media screen and (max-width: 767px) {
  #footer {
    padding: 0px 0 20px 5vw;
}
  .footer-nav {
    display: grid;
grid-template-columns: 1fr;
grid-template-rows: repeat(11, 1fr);
grid-column-gap: 0px;
grid-row-gap: 0px;
    }
    
    .fn-01 { grid-area: 1 / 1 / 2 / 2; }
    .fn-02 { grid-area: 2 / 1 / 7 / 2; }
    .fn-03 { grid-area: 7 / 1 / 8 / 2; }
    .fn-04 { grid-area: 8 / 1 / 9 / 2; }
    .fn-05 { grid-area: 9 / 1 / 10 / 2; }
    .fn-06 { grid-area: 10 / 1 / 11 / 2; }
    .fn-07 { grid-area: 11 / 1 / 12 / 2; }
  #footer li {
    text-align: left;
    font-size: 3.5vw !important;
  }
  #footer li.big {
    font-size: 5vw !important;
  }
  #footer ul li:first-child {
    font-size: 1.1rem;
  }
  #footer ul {
    margin-bottom: 0em;
  }
}

.copyright {
  text-align: center;
  padding: 1.2rem 0;
  margin-bottom: 90px;
  font-size: 16px;
}
.copyright a {
  text-decoration: none;
  display: inline;
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .copyright {
    margin-bottom: 70px;
  }
}

/* トップへ戻るボタン */
/* ============================================ */
#pagetop {
  position: fixed;
  bottom: 15px;
  right: 15px;
  z-index: 110;
}
#pagetop a {
  color: #ffffff;
  background: linear-gradient(to right, #40b0ff 0%, #1256d6 65%, #0f34a1 100%);
  border-radius: 4px;
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
}
#pagetop a::after {
  position: absolute;
  content: "TOP";
  font-size: 1rem;
  line-height: 1;
  font-weight: bold;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  #pagetop {
    bottom: 10px;
    right: 10px;
  }
}
@media screen and (max-width: 400px) {
  #pagetop {
    bottom: 10px;
    right: 10px;
  }
  #pagetop a {
    width: 13vw;
    height: 13vw;
  }
  #pagetop a::after {
    font-size: 3vw;
  }
}

/*ボトムバナー*/
/* ============================================ */
#bottombanner {
  position: fixed;
  bottom: 0px;
  left: 0;
  width: 100%;
  z-index: 110;
  height: 94px;
  text-align: center;
  padding-top: 12px;
}
#bottombanner a {
  max-width: 500px;
  width: 80%;
  display: inline-block;
  padding: 20px 0px;
  font-size: 1rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #bottombanner {
    height: 75px;
  }
  #bottombanner a {
    width: 60%;
    padding: 12px 0px;
  }
}
/*page ナビ*/
/* ============================================ */
