@charset "UTF-8";
.fadeup {
  opacity: 0;
  transform: translate(0, 10rem);
  transition: all 1000ms;
}

.fadeup.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}

.faderight {
  opacity: 0;
  transform: translate(100%, 0);
  transition: all 2000ms;
}

.faderight.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}

.fadeleft {
  opacity: 0;
  transform: translate(-100%, 0);
  transition: all 2000ms;
}

.fadeleft.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}

.zoomin {
  transform: scale(0);
  transition: all 2000ms;
}

.zoomin.scrollin {
  transform: scale(1);
}

.yureru-j {
  -webkit-animation: yureru-j 2s infinite;
          animation: yureru-j 2s infinite;
}

@-webkit-keyframes yureru-j {
  0% {
    transform: translate(0px, 2px);
  }
  5% {
    transform: translate(0px, -2px);
  }
  10% {
    transform: translate(0px, 2px);
  }
  15% {
    transform: translate(0px, -2px);
  }
  20% {
    transform: translate(0px, 2px);
  }
  25% {
    transform: translate(0px, -2px);
  }
  30% {
    transform: translate(0px, 0px);
  }
}

@keyframes yureru-j {
  0% {
    transform: translate(0px, 2px);
  }
  5% {
    transform: translate(0px, -2px);
  }
  10% {
    transform: translate(0px, 2px);
  }
  15% {
    transform: translate(0px, -2px);
  }
  20% {
    transform: translate(0px, 2px);
  }
  25% {
    transform: translate(0px, -2px);
  }
  30% {
    transform: translate(0px, 0px);
  }
}
@media (max-width: 375px) and (max-height: 668px) {
  html {
    scroll-padding-top: 8rem;
  }
  body {
    font-size: 62.5%;
    font-family: ten-mincho, serif;
    font-weight: 400;
    font-style: normal;
  }
  img {
    max-width: 100%;
  }
  p {
    font-size: 1.4rem;
    line-height: 2;
  }
  span {
    font-size: 1.4rem;
    line-height: 2;
  }
  h1 {
    font-size: 4rem;
    line-height: 1;
  }
  h2 {
    font-size: 2.6rem;
    line-height: 1;
  }
  h3 {
    font-size: 2rem;
    line-height: 1;
  }
  main {
    overflow: hidden;
    position: relative;
  }
  .sp-show {
    display: block;
  }
  .pc-show {
    display: none;
  }
  .coming-soon {
    display: none;
  }
  .obj {
    filter: blur(10px);
    opacity: 0;
    transition: 0.8s;
  }
  .obj.active {
    opacity: 1;
    filter: blur(0);
  }
  /* ローディングアニメーション */
  #loader {
    width: 100vw;
    height: 100vh;
    position: fixed;
    padding: 2rem;
    top: 0;
    left: 0;
    z-index: 10001;
    background-color: #fff;
  }
  #loader .container {
    width: 100%;
    height: 100%;
    background-image: url(/images/loader_bg.jpg);
    background-position: center;
    background-size: cover;
    border: 3px solid #fdd228;
    display: flex;
    align-items: center;
  }
  #loader .container #animation {
    width: 90%;
    display: flex;
    flex-flow: column;
    align-items: center;
    margin: 0 auto;
    position: absolute;
    top: 6rem;
    left: 50%;
    transform: translateX(-50%);
  }
  #loader .container #animation .img01 {
    width: 60%;
    opacity: 0;
    -webkit-animation-name: fadeIn;
            animation-name: fadeIn;
    -webkit-animation-delay: 2s;
            animation-delay: 2s;
    -webkit-animation-duration: 1s;
            animation-duration: 1s;
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
    -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
  }
  #loader .container #animation .img02 {
    width: 60%;
    opacity: 0;
    z-index: 10;
    -webkit-margin-after: -13rem;
            margin-block-end: -13rem;
    -webkit-animation-name: fadeIn;
            animation-name: fadeIn;
    -webkit-animation-duration: 1s;
            animation-duration: 1s;
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
    -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
  }
  #loader .container #animation .img03 {
    width: 100%;
    opacity: 0;
    -webkit-animation-name: fadeIn;
            animation-name: fadeIn;
    -webkit-animation-delay: 1s;
            animation-delay: 1s;
    -webkit-animation-duration: 1s;
            animation-duration: 1s;
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
    -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
  }
  @-webkit-keyframes fadeIn {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  @keyframes fadeIn {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  #header {
    position: fixed;
    top: 0;
    z-index: 10000;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    -webkit-margin-before: 3rem;
            margin-block-start: 3rem;
  }
  #header .logo {
    position: absolute;
    top: 60%;
    left: 37%;
    width: 14rem;
    transform: translate(-50%, -50%);
  }
  #header #menu .sound {
    background: url(../images/h_music.png) center/cover;
    height: 3.6rem;
    width: 3rem;
  }
  #header #menu .clicked {
    background: url(../images/h_music-off.png) center/cover;
    height: 3.6rem;
    width: 3rem;
  }
  #header #menu .navToggle {
    display: block;
    cursor: pointer;
    z-index: 50;
    text-align: center;
    padding: 1rem 4rem 1rem 1rem;
    position: relative;
  }
  #header #menu .navToggle span {
    display: block;
    width: 2.4rem;
    height: 0.4rem;
    background-color: #231815;
    transition: 0.2s ease-in-out;
  }
  #header #menu .navToggle span:nth-child(1) {
    margin-top: 0px;
  }
  #header #menu .navToggle span:nth-child(2) {
    margin-top: 4px;
  }
  #header #menu .navToggle span:nth-child(3) {
    margin-top: 4px;
  }
  #header #menu .active span:nth-child(1) {
    background-color: #fff;
    transform: rotate(-45deg) translate(-6px, 5px);
  }
  #header #menu .active span:nth-child(2) {
    opacity: 0;
  }
  #header #menu .active span:nth-child(3) {
    background-color: #fff;
    transform: rotate(45deg) translate(-6px, -5px);
  }
  #header #menu .globalMenu.active {
    transform: translateY(0px);
    opacity: 1;
  }
  #header #menu .globalMenu {
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
    background: #231815;
    color: #fff;
    transform: translateX(100%);
    transition: all 0.6s;
    width: 100%;
    height: 100vh;
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #header #menu .globalMenu .sitemap {
    font-size: 2.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 4rem;
  }
  #header #menu .globalMenu .sitemap li {
    color: #fff;
    text-align: center;
    width: 100%;
  }
  #header > div {
    display: flex;
    align-items: center;
  }
  #frame-bg {
    width: 100vw;
    height: calc(var(--vh, 1vh) * 100);
    pointer-events: none;
    background: linear-gradient(#fff, #fff 2rem, transparent 100px, transparent 88%, #fff 96%, #fff);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9998;
  }
  #frame {
    pointer-events: none;
    width: 100vw;
    height: calc(var(--vh, 1vh) * 100);
    position: fixed;
    padding: 2rem;
    top: 0;
    left: 0;
    z-index: 9999;
  }
  #frame .container {
    pointer-events: none;
    width: 100%;
    height: 100%;
    border: 4px solid #fdd228;
    display: flex;
    align-items: center;
  }
  #sec_01 {
    margin: 2rem 2rem 8rem;
    background-image: linear-gradient(to bottom, transparent 0%, transparent 70%, #fff 100%), url(/images/sec01_bg.png);
    background-position: center;
    background-size: cover;
    position: relative;
    overflow: hidden;
  }
  #sec_01 .link01 {
    width: 80%;
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
    position: absolute;
    top: 7%;
    left: 50%;
    transform: translateX(-50%);
    filter: drop-shadow(0 0 12px #fff);
  }
  #sec_01 .link02 {
    width: 24%;
    position: absolute;
    top: 50%;
    left: 19%;
    transform: translateX(-15%);
    filter: drop-shadow(0 0 12px #fff);
  }
  #sec_01 .link03 {
    width: 38%;
    position: absolute;
    top: 40%;
    right: 5%;
    filter: drop-shadow(0 0 12px #fff);
  }
  #sec_01 .link04 {
    width: 90%;
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
    position: absolute;
    bottom: 0;
    left: -2rem;
    filter: drop-shadow(0 0 12px #fff);
  }
  #sec_01 .link05 {
    width: 35%;
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
    position: absolute;
    top: 27%;
    left: 2rem;
    filter: drop-shadow(0 0 12px #fff);
  }
  #sec_02 {
    padding: 2rem;
    -webkit-margin-after: 8rem;
            margin-block-end: 8rem;
  }
  #sec_02 .ttl {
    padding: 0 2rem;
    text-align: center;
    margin: 0 auto;
  }
  #sec_02 .ttl span {
    display: block;
    -webkit-margin-after: 2rem;
            margin-block-end: 2rem;
  }
  #sec_02 .ttl h1 {
    display: inline-block;
    font-size: 1.8rem;
    position: relative;
    letter-spacing: 0.1em;
  }
  #sec_02 .ttl h1 span {
    display: inline-block;
    -webkit-margin-after: 0;
            margin-block-end: 0;
    font-size: 1.8rem;
  }
  #sec_02 p {
    padding: 4rem;
  }
  #sec_03 {
    padding: 2rem 2rem 0;
    position: relative;
  }
  #sec_03 .ttl {
    padding: 0 2rem 4rem;
    text-align: center;
    margin: 0 auto;
  }
  #sec_03 .ttl h2 {
    font-size: 2.4rem;
  }
  #sec_03 address {
    text-align: center;
    font-size: 1.8rem;
    line-height: 1.5;
    -webkit-margin-after: 2rem;
            margin-block-end: 2rem;
  }
  #sec_03 .instagram {
    text-align: center;
    -webkit-margin-after: 4rem;
            margin-block-end: 4rem;
  }
  #sec_03 .instagram img {
    width: 4rem;
  }
  #sec_03::before {
    content: "";
    display: inline-block;
    background: url(../images/sec03_img01.png) center/cover;
    position: absolute;
    top: -2rem;
    right: -1rem;
    width: 12rem;
    height: 2.2rem;
  }
  #sec_03::after {
    content: "";
    display: inline-block;
    background: url(../images/sec03_img01.png) center/cover;
    position: absolute;
    top: 20rem;
    left: -1rem;
    width: 12rem;
    height: 2.2rem;
  }
  #sec_04 {
    padding: 2rem;
    -webkit-margin-after: 8rem;
            margin-block-end: 8rem;
  }
  #sec_04 .ttl {
    padding: 6rem 2rem 0;
    text-align: center;
    margin: 0 auto;
  }
  #sec_04 .ttl span {
    display: block;
    -webkit-margin-after: 2rem;
            margin-block-end: 2rem;
  }
  #sec_04 .ttl h2 {
    letter-spacing: 0.12em;
    font-family: futura-pt, sans-serif;
    font-weight: 900;
    font-style: italic;
    font-size: 2.4rem;
  }
  #sec_04 p {
    text-align: center;
    padding: 3rem 2rem 3rem;
    line-height: 1.5;
    letter-spacing: 0.1em;
  }
  #sec_04 img {
    -webkit-padding-start: 2rem;
            padding-inline-start: 2rem;
    width: 42%;
  }
  #sec_05 {
    padding: 0 2rem 2rem;
  }
  #sec_05 .container {
    background: url(../images/sec05_bg.jpg) bottom/cover;
    -webkit-margin-after: 8rem;
            margin-block-end: 8rem;
  }
  #sec_05 .container .ttl {
    padding: 6rem 2rem 0;
    text-align: center;
    margin: 0 auto;
  }
  #sec_05 .container .ttl span {
    display: block;
    -webkit-margin-after: 2rem;
            margin-block-end: 2rem;
  }
  #sec_05 .container .ttl h2 {
    display: inline-block;
    font-size: 2.4rem;
    line-height: 1.5;
    letter-spacing: 0.12em;
    position: relative;
  }
  #sec_05 .container .ttl h2::after {
    content: "";
    display: inline-block;
    width: 4.4rem;
    height: 3.6rem;
    position: absolute;
    right: -3rem;
    top: -4rem;
    background-image: url(../images/sec05_img01.png);
    background-position: center;
    background-size: cover;
  }
  #sec_05 .container p {
    font-size: 1.6rem;
    text-align: justify;
    padding: 3rem 4rem 3rem;
  }
  #sec_05 .container img {
    display: block;
    width: 40%;
    margin: 0 auto 0 1rem;
  }
  #sec_06 {
    -webkit-margin-after: 8rem;
            margin-block-end: 8rem;
    overflow: hidden;
    padding: 0 2rem;
  }
  #sec_06 .ttl {
    padding: 0 2rem 4rem;
    text-align: center;
    margin: 0 auto;
  }
  #sec_06 .ttl span {
    display: block;
    -webkit-margin-after: 2rem;
            margin-block-end: 2rem;
  }
  #sec_06 .ttl h2 {
    font-size: 1.8rem;
    letter-spacing: 0.1em;
    -webkit-margin-after: 2rem;
            margin-block-end: 2rem;
    line-height: 2;
  }
  #sec_06 .ttl h2 a {
    display: inline-block;
  }
  #sec_06 .ttl h2 a img {
    width: 30px;
    vertical-align: middle;
    -webkit-margin-start: 0.6rem;
            margin-inline-start: 0.6rem;
    -webkit-padding-after: 4px;
            padding-block-end: 4px;
    transition: 0.2s;
  }
  #sec_06 .ttl h2 a img:hover {
    transform: scale(1.1);
  }
  #sec_06 .address-container {
    display: flex;
    gap: 4rem;
    -webkit-margin-after: 4rem;
            margin-block-end: 4rem;
    flex-flow: column;
    justify-content: center;
    align-items: center;
  }
  #sec_06 .address-container .address-box {
    text-align: center;
  }
  #sec_06 .address-container .address-box address {
    text-align: center;
    font-size: 1.4rem;
    line-height: 1.5;
    -webkit-margin-after: 2rem;
            margin-block-end: 2rem;
    padding: 0 2rem;
    letter-spacing: 0.1em;
  }
  #sec_06 .address-container .address-box address h3 {
    font-size: 1.8rem;
    -webkit-margin-after: 2rem;
            margin-block-end: 2rem;
  }
  #sec_06 .address-container .address-box img {
    width: 70%;
  }
  #sec_06 .img-wrap {
    text-align: center;
  }
  #sec_06 .img-wrap .item {
    width: 25%;
    -webkit-margin-start: 2rem;
            margin-inline-start: 2rem;
    -webkit-margin-after: 4rem;
            margin-block-end: 4rem;
  }
  #sec_06_add {
    -webkit-margin-after: 8rem;
            margin-block-end: 8rem;
    overflow: hidden;
    padding: 0 2rem;
  }
  #sec_06_add .ttl {
    padding: 0 2rem 4rem;
    text-align: center;
    margin: 0 auto;
  }
  #sec_06_add .ttl span {
    display: block;
    -webkit-margin-after: 2rem;
            margin-block-end: 2rem;
  }
  #sec_06_add .ttl h2 {
    font-size: 1.8rem;
    letter-spacing: 0.1em;
    -webkit-margin-after: 2rem;
            margin-block-end: 2rem;
    line-height: 2;
  }
  #sec_06_add .address-container {
    display: flex;
    gap: 4rem;
    -webkit-margin-after: 4rem;
            margin-block-end: 4rem;
    flex-flow: column;
    align-items: center;
  }
  #sec_06_add .address-container address {
    font-size: 1.4rem;
    line-height: 1.5;
    padding: 0 2rem;
    letter-spacing: 0.1em;
    text-align: center;
  }
  #sec_06_add .address-container address a {
    display: inline-block;
  }
  #sec_06_add .address-container address a img {
    width: 30px;
    -webkit-margin-before: 1rem;
            margin-block-start: 1rem;
    transition: 0.2s;
  }
  #sec_06_add .address-container address a img:hover {
    transform: scale(1.1);
  }
  #sec_06_add .address-container img {
    width: 100%;
  }
  #sec_06_add .img-wrap {
    text-align: center;
  }
  #sec_06_add .img-wrap .item {
    width: 25%;
    -webkit-margin-start: 2rem;
            margin-inline-start: 2rem;
    -webkit-margin-after: 4rem;
            margin-block-end: 4rem;
  }
  #sec_07 {
    -webkit-margin-after: 8rem;
            margin-block-end: 8rem;
  }
  #sec_07 .container {
    padding: 0 2rem;
  }
  #sec_07 .container .ttl {
    padding: 0 2rem 4rem;
    text-align: center;
    margin: 0 auto;
  }
  #sec_07 .container .ttl span {
    display: block;
    -webkit-margin-after: 2rem;
            margin-block-end: 2rem;
  }
  #sec_07 .container .ttl h2 {
    display: inline-block;
    font-size: 2.4rem;
    line-height: 1.5;
    letter-spacing: 0.12em;
  }
  #sec_07 .container .content {
    padding: 0 4rem;
    -webkit-margin-after: 4rem;
            margin-block-end: 4rem;
    text-align: justify;
    font-size: 1.6rem;
  }
  #sec_07 .container .btn-wrap {
    display: none;
  }
  #sec_07 .container .bg-img {
    text-align: center;
  }
  #sec_07 .container .bg-img img {
    -webkit-margin-after: 4rem;
            margin-block-end: 4rem;
  }
  #sec_07 .container .bg-img .btn {
    font-size: 1.6rem;
    text-align: center;
    display: block;
    background-color: #040000;
    border-radius: 16px;
    color: #fff;
    padding: 1rem 1.6rem;
    margin: 0 auto;
    width: 94%;
  }
  #sec_08 {
    -webkit-margin-after: 8rem;
            margin-block-end: 8rem;
  }
  #sec_08 .container {
    padding: 0 2rem;
  }
  #sec_08 .container .ttl {
    padding: 0 2rem;
    text-align: center;
    margin: 0 auto 4rem;
  }
  #sec_08 .container .ttl h2 {
    font-size: 2.4rem;
    line-height: 1.5;
  }
  #sec_08 .container address {
    text-align: center;
    font-size: 1.8rem;
    line-height: 2;
    -webkit-margin-after: 4rem;
            margin-block-end: 4rem;
    padding: 0 2rem;
  }
  #sec_08 .container .instagram {
    text-align: center;
    -webkit-margin-after: 2rem;
            margin-block-end: 2rem;
  }
  #sec_08 .container .instagram img {
    width: 4rem;
  }
  #sec_09 {
    -webkit-margin-after: 8rem;
            margin-block-end: 8rem;
  }
  #sec_09 .container {
    padding: 0 2rem;
    text-align: center;
  }
  #sec_09 .container .img01 {
    width: 90%;
    -webkit-margin-after: 3rem;
            margin-block-end: 3rem;
  }
  #sec_09 .container h2 {
    font-size: 1.8rem;
    line-height: 1.5;
    -webkit-margin-after: 3rem;
            margin-block-end: 3rem;
  }
  #sec_09 .container .btn {
    font-size: 2.2rem;
    text-align: center;
    display: inline-block;
    background-color: #040000;
    border-radius: 16px;
    color: #fff;
    padding: 0.6rem 1.6rem;
    -webkit-margin-after: 4rem;
            margin-block-end: 4rem;
  }
  #sec_10 .container {
    padding: 0 2rem;
    -webkit-margin-after: 8rem;
            margin-block-end: 8rem;
  }
  #sec_10 .container .ttl {
    padding: 6rem 2rem 4rem;
    text-align: center;
    margin: 0 auto;
  }
  #sec_10 .container .ttl h2 {
    display: inline-block;
    font-size: 1.4rem;
    line-height: 1.5;
    letter-spacing: 0.12em;
  }
  #sec_10 .container .music-list {
    display: flex;
    row-gap: 2rem;
    flex-flow: column;
    padding: 0 2rem;
  }
  footer {
    color: #fff;
    background-color: #040000;
    padding: 3rem 3rem 14rem;
  }
  footer address {
    font-size: 1.4rem;
    line-height: 1.5;
    text-align: right;
    -webkit-margin-after: 4rem;
            margin-block-end: 4rem;
  }
  footer address span {
    font-size: 1.6rem;
  }
  footer .copyright {
    text-align: center;
  }
  footer .copyright small {
    font-size: 1.2rem;
  }
}
@media (min-height: 668px) and (max-width: 768px) {
  html {
    scroll-padding-top: 8rem;
  }
  body {
    font-size: 62.5%;
    font-family: ten-mincho, serif;
    font-weight: 400;
    font-style: normal;
  }
  img {
    max-width: 100%;
  }
  p {
    font-size: 1.4rem;
    line-height: 2;
  }
  span {
    font-size: 1.4rem;
    line-height: 2;
  }
  h1 {
    font-size: 4rem;
    line-height: 1;
  }
  h2 {
    font-size: 2.6rem;
    line-height: 1;
  }
  h3 {
    font-size: 2rem;
    line-height: 1;
  }
  main {
    overflow: hidden;
    position: relative;
  }
  .sp-show {
    display: block;
  }
  .pc-show {
    display: none;
  }
  .coming-soon {
    display: none;
  }
  .obj {
    filter: blur(10px);
    opacity: 0;
    transition: 0.8s;
  }
  .obj.active {
    opacity: 1;
    filter: blur(0);
  }
  /* ローディングアニメーション */
  #loader {
    width: 100vw;
    height: 100vh;
    position: fixed;
    padding: 2rem;
    top: 0;
    left: 0;
    z-index: 10001;
    background-color: #fff;
  }
  #loader .container {
    width: 100%;
    height: 100%;
    background-image: url(/images/loader_bg.jpg);
    background-position: center;
    background-size: cover;
    border: 3px solid #fdd228;
    display: flex;
    align-items: center;
  }
  #loader .container #animation {
    width: 90%;
    display: flex;
    flex-flow: column;
    align-items: center;
    margin: 0 auto;
    position: absolute;
    top: 6rem;
    left: 50%;
    transform: translateX(-50%);
  }
  #loader .container #animation .img01 {
    width: 60%;
    opacity: 0;
    -webkit-animation-name: fadeIn;
            animation-name: fadeIn;
    -webkit-animation-delay: 2s;
            animation-delay: 2s;
    -webkit-animation-duration: 1s;
            animation-duration: 1s;
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
    -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
  }
  #loader .container #animation .img02 {
    width: 60%;
    opacity: 0;
    z-index: 10;
    -webkit-margin-after: -13rem;
            margin-block-end: -13rem;
    -webkit-animation-name: fadeIn;
            animation-name: fadeIn;
    -webkit-animation-duration: 1s;
            animation-duration: 1s;
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
    -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
  }
  #loader .container #animation .img03 {
    width: 100%;
    opacity: 0;
    -webkit-animation-name: fadeIn;
            animation-name: fadeIn;
    -webkit-animation-delay: 1s;
            animation-delay: 1s;
    -webkit-animation-duration: 1s;
            animation-duration: 1s;
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
    -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
  }
  @-webkit-keyframes fadeIn {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  @keyframes fadeIn {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  #header {
    position: fixed;
    top: 0;
    z-index: 10000;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    -webkit-margin-before: 3rem;
            margin-block-start: 3rem;
  }
  #header .logo {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14rem;
    transform: translate(-50%, -50%);
  }
  #header #menu .sound {
    background: url(../images/h_music.png) center/cover;
    height: 3.6rem;
    width: 3rem;
  }
  #header #menu .clicked {
    background: url(../images/h_music-off.png) center/cover;
    height: 3.6rem;
    width: 3rem;
  }
  #header #menu .navToggle {
    display: block;
    cursor: pointer;
    z-index: 50;
    text-align: center;
    padding: 1rem 4rem 1rem 1rem;
    position: relative;
  }
  #header #menu .navToggle span {
    display: block;
    width: 2.4rem;
    height: 0.4rem;
    background-color: #231815;
    transition: 0.2s ease-in-out;
  }
  #header #menu .navToggle span:nth-child(1) {
    margin-top: 0px;
  }
  #header #menu .navToggle span:nth-child(2) {
    margin-top: 4px;
  }
  #header #menu .navToggle span:nth-child(3) {
    margin-top: 4px;
  }
  #header #menu .active span:nth-child(1) {
    background-color: #fff;
    transform: rotate(-45deg) translate(-6px, 5px);
  }
  #header #menu .active span:nth-child(2) {
    opacity: 0;
  }
  #header #menu .active span:nth-child(3) {
    background-color: #fff;
    transform: rotate(45deg) translate(-6px, -5px);
  }
  #header #menu .globalMenu.active {
    transform: translateY(0px);
    opacity: 1;
  }
  #header #menu .globalMenu {
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
    background: #231815;
    color: #fff;
    transform: translateX(100%);
    transition: all 0.6s;
    width: 100%;
    height: 100vh;
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #header #menu .globalMenu .sitemap {
    font-size: 2.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 4rem;
  }
  #header #menu .globalMenu .sitemap li {
    color: #fff;
    text-align: center;
    width: 100%;
  }
  #header > div {
    display: flex;
    align-items: center;
  }
  #frame-bg {
    width: 100vw;
    height: calc(var(--vh, 1vh) * 100);
    pointer-events: none;
    background: linear-gradient(#fff, #fff 2rem, transparent 100px, transparent 88%, #fff 96%, #fff);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9998;
  }
  #frame {
    pointer-events: none;
    width: 100vw;
    height: calc(var(--vh, 1vh) * 100);
    position: fixed;
    padding: 2rem;
    top: 0;
    left: 0;
    z-index: 9999;
  }
  #frame .container {
    pointer-events: none;
    width: 100%;
    height: 100%;
    border: 4px solid #fdd228;
    display: flex;
    align-items: center;
  }
  #sec_01 {
    margin: 2rem 2rem 8rem;
    background-image: linear-gradient(to bottom, transparent 0%, transparent 70%, #fff 100%), url(/images/sec01_bg.png);
    background-position: center;
    background-size: cover;
    position: relative;
    overflow: hidden;
  }
  #sec_01 .link01 {
    width: 90%;
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
    position: absolute;
    top: 7%;
    left: 50%;
    transform: translateX(-50%);
    filter: drop-shadow(0 0 12px #fff);
  }
  #sec_01 .link02 {
    width: 30%;
    position: absolute;
    top: 50%;
    left: 19%;
    transform: translateX(-15%);
    filter: drop-shadow(0 0 12px #fff);
  }
  #sec_01 .link03 {
    width: 46%;
    position: absolute;
    top: 40%;
    right: 1%;
    filter: drop-shadow(0 0 12px #fff);
  }
  #sec_01 .link04 {
    width: 100%;
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
    position: absolute;
    bottom: 0;
    left: -2rem;
    filter: drop-shadow(0 0 12px #fff);
  }
  #sec_01 .link05 {
    width: 42%;
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
    position: absolute;
    top: 27%;
    left: 1rem;
    filter: drop-shadow(0 0 12px #fff);
  }
  #sec_02 {
    padding: 2rem;
    -webkit-margin-after: 8rem;
            margin-block-end: 8rem;
  }
  #sec_02 .ttl {
    padding: 0 2rem;
    text-align: center;
    margin: 0 auto;
  }
  #sec_02 .ttl span {
    display: block;
    -webkit-margin-after: 2rem;
            margin-block-end: 2rem;
  }
  #sec_02 .ttl h1 {
    display: inline-block;
    font-size: 1.8rem;
    position: relative;
    letter-spacing: 0.1em;
  }
  #sec_02 .ttl h1 span {
    display: inline-block;
    -webkit-margin-after: 0;
            margin-block-end: 0;
    font-size: 1.8rem;
  }
  #sec_02 p {
    padding: 4rem;
  }
  #sec_03 {
    padding: 2rem 2rem 0;
    position: relative;
  }
  #sec_03 .ttl {
    padding: 0 2rem 4rem;
    text-align: center;
    margin: 0 auto;
  }
  #sec_03 .ttl h2 {
    font-size: 2.4rem;
  }
  #sec_03 address {
    text-align: center;
    font-size: 1.8rem;
    line-height: 1.5;
    -webkit-margin-after: 2rem;
            margin-block-end: 2rem;
  }
  #sec_03 .instagram {
    text-align: center;
    -webkit-margin-after: 4rem;
            margin-block-end: 4rem;
  }
  #sec_03 .instagram img {
    width: 4rem;
  }
  #sec_03::before {
    content: "";
    display: inline-block;
    background: url(../images/sec03_img01.png) center/cover;
    position: absolute;
    top: -2rem;
    right: -1rem;
    width: 12rem;
    height: 2.2rem;
  }
  #sec_03::after {
    content: "";
    display: inline-block;
    background: url(../images/sec03_img01.png) center/cover;
    position: absolute;
    top: 20rem;
    left: -1rem;
    width: 12rem;
    height: 2.2rem;
  }
  #sec_04 {
    padding: 2rem;
    -webkit-margin-after: 8rem;
            margin-block-end: 8rem;
  }
  #sec_04 .ttl {
    padding: 6rem 2rem 0;
    text-align: center;
    margin: 0 auto;
  }
  #sec_04 .ttl span {
    display: block;
    -webkit-margin-after: 2rem;
            margin-block-end: 2rem;
  }
  #sec_04 .ttl h2 {
    letter-spacing: 0.12em;
    font-family: futura-pt, sans-serif;
    font-weight: 900;
    font-style: italic;
    font-size: 2.4rem;
  }
  #sec_04 p {
    text-align: center;
    padding: 3rem 2rem 3rem;
    line-height: 1.5;
    letter-spacing: 0.1em;
  }
  #sec_04 img {
    -webkit-padding-start: 2rem;
            padding-inline-start: 2rem;
    width: 42%;
  }
  #sec_05 {
    padding: 0 2rem 2rem;
  }
  #sec_05 .container {
    background: url(../images/sec05_bg.jpg) bottom/cover;
    -webkit-margin-after: 8rem;
            margin-block-end: 8rem;
  }
  #sec_05 .container .ttl {
    padding: 6rem 2rem 0;
    text-align: center;
    margin: 0 auto;
  }
  #sec_05 .container .ttl span {
    display: block;
    -webkit-margin-after: 2rem;
            margin-block-end: 2rem;
  }
  #sec_05 .container .ttl h2 {
    display: inline-block;
    font-size: 2.4rem;
    line-height: 1.5;
    letter-spacing: 0.12em;
    position: relative;
  }
  #sec_05 .container .ttl h2::after {
    content: "";
    display: inline-block;
    width: 4.4rem;
    height: 3.6rem;
    position: absolute;
    right: -3rem;
    top: -4rem;
    background-image: url(../images/sec05_img01.png);
    background-position: center;
    background-size: cover;
  }
  #sec_05 .container p {
    font-size: 1.6rem;
    text-align: justify;
    padding: 3rem 4rem 3rem;
  }
  #sec_05 .container img {
    display: block;
    width: 40%;
    margin: 0 auto 0 1rem;
  }
  #sec_06 {
    -webkit-margin-after: 8rem;
            margin-block-end: 8rem;
    overflow: hidden;
    padding: 0 2rem;
  }
  #sec_06 .ttl {
    padding: 0 2rem 4rem;
    text-align: center;
    margin: 0 auto;
  }
  #sec_06 .ttl span {
    display: block;
    -webkit-margin-after: 2rem;
            margin-block-end: 2rem;
  }
  #sec_06 .ttl h2 {
    font-size: 1.8rem;
    letter-spacing: 0.1em;
    -webkit-margin-after: 2rem;
            margin-block-end: 2rem;
  }
  #sec_06 .ttl h2 a {
    display: inline-block;
  }
  #sec_06 .ttl h2 a img {
    width: 30px;
    vertical-align: middle;
    -webkit-margin-start: 0.6rem;
            margin-inline-start: 0.6rem;
    -webkit-padding-after: 4px;
            padding-block-end: 4px;
    transition: 0.2s;
  }
  #sec_06 .ttl h2 a img:hover {
    transform: scale(1.1);
  }
  #sec_06 .address-container {
    display: flex;
    gap: 4rem;
    -webkit-margin-after: 4rem;
            margin-block-end: 4rem;
    flex-flow: column;
    justify-content: center;
    align-items: center;
  }
  #sec_06 .address-container .address-box {
    text-align: center;
  }
  #sec_06 .address-container .address-box address {
    text-align: center;
    font-size: 1.4rem;
    line-height: 1.5;
    -webkit-margin-after: 2rem;
            margin-block-end: 2rem;
    padding: 0 2rem;
    letter-spacing: 0.1em;
  }
  #sec_06 .address-container .address-box address h3 {
    font-size: 1.8rem;
    -webkit-margin-after: 2rem;
            margin-block-end: 2rem;
  }
  #sec_06 .address-container .address-box img {
    width: 70%;
  }
  #sec_06 .img-wrap {
    text-align: center;
  }
  #sec_06 .img-wrap .item {
    width: 25%;
    -webkit-margin-start: 2rem;
            margin-inline-start: 2rem;
    -webkit-margin-after: 4rem;
            margin-block-end: 4rem;
  }
  #sec_06_add {
    -webkit-margin-after: 8rem;
            margin-block-end: 8rem;
    overflow: hidden;
    padding: 0 2rem;
  }
  #sec_06_add .ttl {
    padding: 0 2rem 4rem;
    text-align: center;
    margin: 0 auto;
  }
  #sec_06_add .ttl span {
    display: block;
    -webkit-margin-after: 2rem;
            margin-block-end: 2rem;
  }
  #sec_06_add .ttl h2 {
    font-size: 1.8rem;
    letter-spacing: 0.1em;
    -webkit-margin-after: 2rem;
            margin-block-end: 2rem;
    line-height: 2;
  }
  #sec_06_add .address-container {
    display: flex;
    gap: 4rem;
    -webkit-margin-after: 4rem;
            margin-block-end: 4rem;
    flex-flow: column;
    align-items: center;
  }
  #sec_06_add .address-container address {
    font-size: 1.4rem;
    line-height: 1.5;
    padding: 0 2rem;
    letter-spacing: 0.1em;
    text-align: center;
  }
  #sec_06_add .address-container address a {
    display: inline-block;
  }
  #sec_06_add .address-container address a img {
    width: 30px;
    -webkit-margin-before: 1rem;
            margin-block-start: 1rem;
    transition: 0.2s;
  }
  #sec_06_add .address-container address a img:hover {
    transform: scale(1.1);
  }
  #sec_06_add .address-container img {
    width: 100%;
  }
  #sec_06_add .img-wrap {
    text-align: center;
  }
  #sec_06_add .img-wrap .item {
    width: 25%;
    -webkit-margin-start: 2rem;
            margin-inline-start: 2rem;
    -webkit-margin-after: 4rem;
            margin-block-end: 4rem;
  }
  #sec_07 {
    -webkit-margin-after: 8rem;
            margin-block-end: 8rem;
  }
  #sec_07 .container {
    padding: 0 2rem;
  }
  #sec_07 .container .ttl {
    padding: 0 2rem 4rem;
    text-align: center;
    margin: 0 auto;
  }
  #sec_07 .container .ttl span {
    display: block;
    -webkit-margin-after: 2rem;
            margin-block-end: 2rem;
  }
  #sec_07 .container .ttl h2 {
    display: inline-block;
    font-size: 2.4rem;
    line-height: 1.5;
    letter-spacing: 0.12em;
  }
  #sec_07 .container .content {
    padding: 0 4rem;
    -webkit-margin-after: 4rem;
            margin-block-end: 4rem;
    text-align: justify;
    font-size: 1.6rem;
  }
  #sec_07 .container .btn-wrap {
    display: none;
  }
  #sec_07 .container .bg-img {
    text-align: center;
  }
  #sec_07 .container .bg-img img {
    -webkit-margin-after: 4rem;
            margin-block-end: 4rem;
  }
  #sec_07 .container .bg-img .btn {
    font-size: 1.6rem;
    text-align: center;
    display: block;
    background-color: #040000;
    border-radius: 16px;
    color: #fff;
    padding: 1rem 1.6rem;
    margin: 0 auto;
    width: 94%;
  }
  #sec_08 {
    -webkit-margin-after: 8rem;
            margin-block-end: 8rem;
  }
  #sec_08 .container {
    padding: 0 2rem;
  }
  #sec_08 .container .ttl {
    padding: 0 2rem;
    text-align: center;
    margin: 0 auto 4rem;
  }
  #sec_08 .container .ttl h2 {
    font-size: 2.4rem;
    line-height: 1.5;
  }
  #sec_08 .container address {
    text-align: center;
    font-size: 1.8rem;
    line-height: 2;
    -webkit-margin-after: 4rem;
            margin-block-end: 4rem;
    padding: 0 2rem;
  }
  #sec_08 .container .instagram {
    text-align: center;
    -webkit-margin-after: 2rem;
            margin-block-end: 2rem;
  }
  #sec_08 .container .instagram img {
    width: 4rem;
  }
  #sec_09 {
    -webkit-margin-after: 8rem;
            margin-block-end: 8rem;
  }
  #sec_09 .container {
    padding: 0 2rem;
    text-align: center;
  }
  #sec_09 .container .img01 {
    width: 90%;
    -webkit-margin-after: 3rem;
            margin-block-end: 3rem;
  }
  #sec_09 .container h2 {
    font-size: 1.8rem;
    line-height: 1.5;
    -webkit-margin-after: 3rem;
            margin-block-end: 3rem;
  }
  #sec_09 .container .btn {
    font-size: 2.2rem;
    text-align: center;
    display: inline-block;
    background-color: #040000;
    border-radius: 16px;
    color: #fff;
    padding: 0.6rem 1.6rem;
    -webkit-margin-after: 4rem;
            margin-block-end: 4rem;
  }
  #sec_10 .container {
    padding: 0 2rem;
    -webkit-margin-after: 8rem;
            margin-block-end: 8rem;
  }
  #sec_10 .container .ttl {
    padding: 6rem 2rem 4rem;
    text-align: center;
    margin: 0 auto;
  }
  #sec_10 .container .ttl h2 {
    display: inline-block;
    font-size: 1.4rem;
    line-height: 1.5;
    letter-spacing: 0.12em;
  }
  #sec_10 .container .music-list {
    display: flex;
    row-gap: 2rem;
    flex-flow: column;
    padding: 0 2rem;
  }
  footer {
    color: #fff;
    background-color: #040000;
    padding: 3rem 3rem 14rem;
  }
  footer address {
    font-size: 1.4rem;
    line-height: 1.5;
    text-align: right;
    -webkit-margin-after: 4rem;
            margin-block-end: 4rem;
  }
  footer address span {
    font-size: 1.6rem;
  }
  footer .copyright {
    text-align: center;
  }
  footer .copyright small {
    font-size: 1.2rem;
  }
}
@media (min-width: 769px) {
  html {
    scroll-padding-top: 18rem;
  }
  body {
    font-size: 62.5%;
    font-family: ten-mincho, serif;
    font-weight: 400;
    font-style: normal;
  }
  img {
    max-width: 100%;
    max-height: 100%;
  }
  p {
    font-size: 1.6rem;
    line-height: 2;
  }
  span {
    font-size: 1.6rem;
    line-height: 2;
  }
  h1 {
    font-size: 4.5rem;
    line-height: 1;
  }
  h2 {
    font-size: 3.2rem;
    line-height: 1;
  }
  h3 {
    font-size: 2.2rem;
    line-height: 1;
  }
  main {
    overflow: hidden;
    position: relative;
  }
  .sp-show {
    display: none;
  }
  .obj {
    filter: blur(10px);
    opacity: 0;
    transition: 0.8s;
  }
  .obj.active {
    opacity: 1;
    filter: blur(0);
  }
  /* ローディングアニメーション PC */
  #loader {
    width: 100vw;
    height: 100vh;
    position: fixed;
    padding: 4rem;
    top: 0;
    left: 0;
    z-index: 10001;
    background-color: #fff;
  }
  #loader .container {
    width: 100%;
    height: 100%;
    background: url(../images/loader_bg_pc.jpg) center/cover;
    border: 3px solid #fdd228;
    display: flex;
    align-items: center;
  }
  #loader .container #animation {
    width: 50%;
    display: flex;
    flex-flow: column;
    align-items: center;
    margin: 0 auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  #loader .container #animation .img01 {
    width: 30%;
    opacity: 0;
    -webkit-animation-name: fadeIn;
            animation-name: fadeIn;
    -webkit-animation-delay: 2s;
            animation-delay: 2s;
    -webkit-animation-duration: 1s;
            animation-duration: 1s;
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
    -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
  }
  #loader .container #animation .img02 {
    width: 30%;
    opacity: 0;
    z-index: 10;
    -webkit-margin-after: -13rem;
            margin-block-end: -13rem;
    -webkit-animation-name: fadeIn;
            animation-name: fadeIn;
    -webkit-animation-duration: 1s;
            animation-duration: 1s;
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
    -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
  }
  #loader .container #animation .img03 {
    width: 50%;
    opacity: 0;
    -webkit-animation-name: fadeIn;
            animation-name: fadeIn;
    -webkit-animation-delay: 1s;
            animation-delay: 1s;
    -webkit-animation-duration: 1s;
            animation-duration: 1s;
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
    -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
  }
  @-webkit-keyframes fadeIn {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  @keyframes fadeIn {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  #header {
    position: fixed;
    top: 6rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10000;
    width: 100%;
    display: flex;
    justify-content: flex-end;
  }
  #header .logo {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 15%;
    transform: translate(-50%, -50%);
  }
  #header #menu .sound {
    background: url(../images/h_music.png) center/cover;
    height: 5rem;
    width: 4.2rem;
  }
  #header #menu .clicked {
    background: url(../images/h_music-off.png) center/cover;
    height: 5rem;
    width: 4.2rem;
  }
  #header #menu .navToggle {
    display: block;
    cursor: pointer;
    z-index: 50;
    text-align: center;
    padding: 1rem 8rem 1rem 1rem;
    position: relative;
  }
  #header #menu .navToggle span {
    display: block;
    width: 4rem;
    height: 0.6rem;
    background-color: #231815;
    transition: 0.2s ease-in-out;
  }
  #header #menu .navToggle span:nth-child(1) {
    margin-top: 0px;
  }
  #header #menu .navToggle span:nth-child(2) {
    margin-top: 8px;
  }
  #header #menu .navToggle span:nth-child(3) {
    margin-top: 8px;
  }
  #header #menu .active span:nth-child(1) {
    background-color: #fff;
    transform: rotate(-45deg) translate(-15px, 13px);
  }
  #header #menu .active span:nth-child(2) {
    opacity: 0;
  }
  #header #menu .active span:nth-child(3) {
    background-color: #fff;
    transform: rotate(45deg) translate(-6px, -5px);
  }
  #header #menu .globalMenu.active {
    transform: translateY(0px);
    opacity: 1;
  }
  #header #menu .globalMenu {
    position: fixed;
    z-index: 10;
    top: -8rem;
    left: 0;
    background: #231815;
    color: #fff;
    transform: translateX(100%);
    transition: all 0.6s;
    width: 100%;
    height: 100vh;
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #header #menu .globalMenu .sitemap {
    font-size: 2.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 4rem;
  }
  #header #menu .globalMenu .sitemap li {
    color: #fff;
    text-align: center;
    width: 100%;
  }
  #header > div {
    display: flex;
    align-items: center;
  }
  #frame-bg {
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    background: linear-gradient(#fff, #fff 4rem, transparent 100px, transparent 80%, #fff 93%, #fff);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9998;
  }
  #frame {
    pointer-events: none;
    width: 100vw;
    height: 100vh;
    position: fixed;
    padding: 4rem;
    top: 0;
    left: 0;
    z-index: 9999;
  }
  #frame .container {
    pointer-events: none;
    width: 100%;
    height: 100%;
    border: 4px solid #fdd228;
    background-color: transparent;
  }
  #sec_01 {
    height: calc(100vh - 8rem) !important;
    margin: 4rem 4rem 8rem;
    background-image: linear-gradient(to bottom, transparent 0%, transparent 70%, #fff 100%), url(/images/sec01_bg_pc.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
    overflow: hidden;
  }
  #sec_01 .link01 {
    width: 22%;
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
    position: absolute;
    top: 10rem;
    right: 13%;
    transition: 0.2s;
    filter: drop-shadow(0 0 8px #fff);
  }
  #sec_01 .link02 {
    width: 27%;
    position: absolute;
    bottom: 0;
    right: 10%;
    transition: 0.2s;
    filter: drop-shadow(0 0 8px #fff);
  }
  #sec_01 .link03 {
    width: 18%;
    position: absolute;
    top: 10rem;
    left: 10%;
    transition: 0.2s;
    filter: drop-shadow(0 0 8px #fff);
  }
  #sec_01 .link04 {
    width: 50%;
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: 0.2s;
    filter: drop-shadow(0 0 8px #fff);
  }
  #sec_01 .link05 {
    width: 18%;
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
    position: absolute;
    top: 11rem;
    left: 40%;
    transition: 0.2s;
    filter: drop-shadow(0 0 8px #fff);
  }
  #sec_01 .link01:hover,
#sec_01 .link02:hover,
#sec_01 .link03:hover,
#sec_01 .link04:hover,
#sec_01 .link05:hover {
    transform: scale(1.1);
  }
  #sec_02 {
    margin: 0 auto 8rem;
    max-width: 980px;
  }
  #sec_02 .ttl {
    padding: 0 2rem;
    text-align: center;
    margin: 0 auto;
  }
  #sec_02 .ttl span {
    display: block;
    -webkit-margin-after: 2rem;
            margin-block-end: 2rem;
  }
  #sec_02 .ttl h1 {
    display: inline-block;
    font-size: 2.4rem;
    position: relative;
  }
  #sec_02 .ttl h1 span {
    display: inline-block;
    -webkit-margin-after: 0;
            margin-block-end: 0;
    font-size: 2.4rem;
  }
  #sec_02 .ttl h1::before {
    content: "";
    display: inline-block;
    width: 6rem;
    height: 7rem;
    background-image: url(../images/sec02_img01.png);
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 30%;
    left: -7rem;
    transform: translateY(-50%);
  }
  #sec_02 p {
    padding: 6rem 8rem;
  }
  #sec_02 .sec02-img {
    text-align: center;
  }
  #sec_02 .sec02-img img {
    width: 40%;
  }
  #sec_03 {
    padding: 4rem;
    display: flex;
    gap: 10rem;
    justify-content: center;
    align-items: center;
    -webkit-margin-after: 10rem;
            margin-block-end: 10rem;
  }
  #sec_03 .ttl {
    padding: 0 2rem 4rem;
    text-align: center;
    margin: 0 auto;
    position: relative;
  }
  #sec_03 .ttl h2 {
    font-size: 2.4rem;
  }
  #sec_03 .ttl::before {
    content: "";
    display: inline-block;
    background: url(../images/sec03_img01.png) center/cover;
    position: absolute;
    top: -5rem;
    right: -6rem;
    width: 12rem;
    height: 2.2rem;
  }
  #sec_03 .ttl::after {
    content: "";
    display: inline-block;
    background: url(../images/sec03_img01.png) center/cover;
    position: absolute;
    top: 16rem;
    left: -9rem;
    width: 12rem;
    height: 2.2rem;
  }
  #sec_03 address {
    text-align: center;
    font-size: 1.8rem;
    line-height: 1.5;
    -webkit-margin-after: 2rem;
            margin-block-end: 2rem;
  }
  #sec_03 .instagram {
    text-align: center;
  }
  #sec_03 .instagram img {
    width: 4rem;
    transition: 0.2s;
  }
  #sec_03 .instagram img:hover {
    transform: scale(1.1);
  }
  #sec_03 .sec03_bg {
    background: url(../images/sec03_bg.png) top/cover;
    width: 36rem;
    height: 36rem;
    border-radius: 50%;
  }
  #sec_03 .sec03_bg .item {
    width: 38%;
    position: absolute;
    top: 48%;
    right: 1%;
    z-index: -1;
  }
  #sec_03 .sec03_bg .bg {
    display: none;
  }
  #sec_04 {
    padding: 2rem;
    -webkit-margin-after: 8rem;
            margin-block-end: 8rem;
    text-align: center;
  }
  #sec_04 .ttl {
    padding: 6rem 2rem 0;
    text-align: center;
    margin: 0 auto;
  }
  #sec_04 .ttl span {
    display: block;
    -webkit-margin-after: 2rem;
            margin-block-end: 2rem;
  }
  #sec_04 .ttl h2 {
    letter-spacing: 0.12em;
    font-family: futura-pt, sans-serif;
    font-weight: 900;
    font-style: italic;
    font-size: 2.4rem;
  }
  #sec_04 p {
    text-align: center;
    padding: 6rem 2rem;
    line-height: 1.5;
  }
  #sec_04 img {
    -webkit-padding-start: 2rem;
            padding-inline-start: 2rem;
    width: 20%;
  }
  #sec_05 {
    padding: 4rem;
  }
  #sec_05 .container {
    background: url(../images/sec05_bg_pc.jpg) center/cover;
    background-attachment: fixed;
    -webkit-margin-after: 8rem;
            margin-block-end: 8rem;
  }
  #sec_05 .container .ttl {
    padding: 6rem 2rem 0;
    text-align: center;
    margin: 0 auto;
  }
  #sec_05 .container .ttl span {
    display: block;
    -webkit-margin-after: 2rem;
            margin-block-end: 2rem;
  }
  #sec_05 .container .ttl h2 {
    display: inline-block;
    font-size: 2.4rem;
    line-height: 1.5;
    letter-spacing: 0.12em;
    position: relative;
  }
  #sec_05 .container .ttl h2::after {
    content: "";
    display: inline-block;
    width: 4.4rem;
    height: 3.6rem;
    position: absolute;
    right: -3rem;
    top: -4rem;
    background-image: url(../images/sec05_img01.png);
    background-position: center;
    background-size: cover;
  }
  #sec_05 .container p {
    font-size: 1.6rem;
    text-align: justify;
    padding: 3rem 30%;
    letter-spacing: 0.1em;
    filter: drop-shadow(0 0 10px #fff);
  }
  #sec_05 .container img {
    display: block;
    width: 15%;
    margin: 0 auto 0 15%;
  }
  #sec_06 {
    padding: 4rem;
    -webkit-margin-after: 8rem;
            margin-block-end: 8rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  #sec_06 div[data-detail=sec_06_detail] {
    width: 100%;
  }
  #sec_06 .ttl {
    padding: 0 2rem 6rem;
    text-align: center;
    margin: 0 auto;
  }
  #sec_06 .ttl span {
    display: block;
    -webkit-margin-after: 2rem;
            margin-block-end: 2rem;
  }
  #sec_06 .ttl h2 {
    font-size: 2.4rem;
    -webkit-margin-after: 4rem;
            margin-block-end: 4rem;
  }
  #sec_06 .ttl h2 a {
    display: inline-block;
  }
  #sec_06 .ttl h2 a img {
    width: 40px;
    vertical-align: middle;
    -webkit-margin-start: 2rem;
            margin-inline-start: 2rem;
    -webkit-padding-after: 6px;
            padding-block-end: 6px;
    transition: 0.2s;
  }
  #sec_06 .ttl h2 a img:hover {
    transform: scale(1.1);
  }
  #sec_06 .address-container {
    display: flex;
    gap: 2rem;
    -webkit-margin-after: 4rem;
            margin-block-end: 4rem;
    justify-content: center;
  }
  #sec_06 .address-container .address-box {
    display: flex;
    gap: 4rem;
    flex-flow: column;
    justify-content: center;
    align-items: center;
  }
  #sec_06 .address-container .address-box address {
    font-size: 1.8rem;
    line-height: 1.5;
    -webkit-margin-after: 2rem;
            margin-block-end: 2rem;
    padding: 0 2rem;
  }
  #sec_06 .address-container .address-box address h3 {
    font-size: 2.2rem;
    text-align: center;
    -webkit-margin-after: 2rem;
            margin-block-end: 2rem;
  }
  #sec_06 .address-container .address-box img {
    width: 60%;
  }
  #sec_06 .img-wrap {
    width: 100%;
    text-align: center;
  }
  #sec_06 .img-wrap img {
    width: 50%;
  }
  #sec_06_add {
    padding: 4rem;
    -webkit-margin-after: 8rem;
            margin-block-end: 8rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  #sec_06_add div[data-detail=sec_06_detail] {
    width: 100%;
  }
  #sec_06_add .ttl {
    padding: 0 2rem 6rem;
    text-align: center;
    margin: 0 auto;
  }
  #sec_06_add .ttl span {
    display: block;
    -webkit-margin-after: 2rem;
            margin-block-end: 2rem;
  }
  #sec_06_add .ttl h2 {
    font-size: 2.4rem;
    -webkit-margin-after: 4rem;
            margin-block-end: 4rem;
  }
  #sec_06_add .address-container {
    display: flex;
    gap: 4rem;
    -webkit-margin-after: 4rem;
            margin-block-end: 4rem;
    justify-content: center;
    align-items: center;
  }
  #sec_06_add .address-container address {
    font-size: 1.8rem;
    line-height: 1.5;
    -webkit-margin-after: 2rem;
            margin-block-end: 2rem;
    padding: 0 2rem;
  }
  #sec_06_add .address-container address a {
    display: inline-block;
  }
  #sec_06_add .address-container address a img {
    width: 40px;
    transition: 0.2s;
    -webkit-margin-before: 1rem;
            margin-block-start: 1rem;
  }
  #sec_06_add .address-container address a img:hover {
    transform: scale(1.1);
  }
  #sec_06_add .address-container img {
    max-width: 36rem;
  }
  #sec_07 {
    -webkit-margin-before: 20rem;
            margin-block-start: 20rem;
    -webkit-margin-after: 20rem;
            margin-block-end: 20rem;
  }
  #sec_07 .container {
    padding: 0 2rem;
    display: flex;
    align-items: center;
    flex-flow: row-reverse;
    max-width: 1140px;
    margin: 0 auto;
  }
  #sec_07 .container .ttl {
    padding: 0 2rem 4rem;
    text-align: center;
    margin: 0 auto;
  }
  #sec_07 .container .ttl span {
    display: block;
    -webkit-margin-after: 2rem;
            margin-block-end: 2rem;
  }
  #sec_07 .container .ttl h2 {
    display: inline-block;
    font-size: 2.4rem;
    line-height: 1.5;
    letter-spacing: 0.12em;
  }
  #sec_07 .container .content {
    padding: 0 4rem;
    -webkit-margin-after: 4rem;
            margin-block-end: 4rem;
    text-align: justify;
    font-size: 1.6rem;
  }
  #sec_07 .container .btn-wrap {
    padding: 0 4rem;
    text-align: center;
  }
  #sec_07 .container .btn-wrap .btn {
    font-size: 2.2rem;
    text-align: center;
    display: block;
    background-color: #040000;
    border-radius: 16px;
    color: #fff;
    padding: 0.6rem 1.6rem;
    transition: 0.2s;
  }
  #sec_07 .container .btn-wrap .btn:hover {
    transform: scale(1.1);
  }
  #sec_07 .container .bg-img {
    width: 70%;
    text-align: center;
  }
  #sec_07 .container .bg-img .btn {
    display: none;
  }
  #sec_07 .container .bg-img img {
    -webkit-margin-before: 70px;
            margin-block-start: 70px;
  }
  #sec_08 {
    -webkit-margin-after: 20rem;
            margin-block-end: 20rem;
  }
  #sec_08 .container {
    padding: 0 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10rem;
  }
  #sec_08 .container .ttl {
    padding: 0 2rem;
    text-align: center;
    margin: 0 auto 4rem;
  }
  #sec_08 .container .ttl h2 {
    font-size: 2.4rem;
    line-height: 1.5;
  }
  #sec_08 .container address {
    text-align: center;
    font-size: 1.8rem;
    line-height: 2;
    -webkit-margin-after: 4rem;
            margin-block-end: 4rem;
    padding: 0 2rem;
  }
  #sec_08 .container .instagram {
    text-align: center;
    -webkit-margin-after: 2rem;
            margin-block-end: 2rem;
  }
  #sec_08 .container .instagram img {
    width: 4rem;
    transition: 0.2s;
  }
  #sec_08 .container .instagram img:hover {
    transform: scale(1.1);
  }
  #sec_08 img {
    width: 25%;
  }
  #sec_09 {
    -webkit-margin-after: 20rem;
            margin-block-end: 20rem;
  }
  #sec_09 .container {
    padding: 4rem;
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 4rem;
    align-items: center;
  }
  #sec_09 .container .img01 {
    width: 20%;
    -webkit-margin-after: 3rem;
            margin-block-end: 3rem;
  }
  #sec_09 .container h2 {
    font-size: 1.8rem;
    line-height: 1.5;
    -webkit-margin-after: 3rem;
            margin-block-end: 3rem;
  }
  #sec_09 .container .btn {
    font-size: 2.2rem;
    text-align: center;
    display: inline-block;
    background-color: #040000;
    border-radius: 16px;
    color: #fff;
    padding: 0.6rem 1.6rem;
    -webkit-margin-after: 4rem;
            margin-block-end: 4rem;
    transition: 0.2s;
  }
  #sec_09 .container .btn:hover {
    transform: scale(1.1);
  }
  #sec_10 .container {
    padding: 0 2rem;
    -webkit-margin-after: 20rem;
            margin-block-end: 20rem;
  }
  #sec_10 .container .ttl {
    padding: 6rem 2rem 4rem;
    text-align: center;
    margin: 0 auto;
  }
  #sec_10 .container .ttl h2 {
    display: inline-block;
    font-size: 1.4rem;
    line-height: 1.5;
    letter-spacing: 0.12em;
  }
  #sec_10 .container .music-list {
    display: flex;
    gap: 4rem;
    justify-content: center;
    flex-flow: wrap;
    padding: 0 2rem;
  }
  #sec_10 .container .music-list iframe {
    width: 40%;
    aspect-ratio: 16/9;
  }
  footer {
    color: #fff;
    background-color: #040000;
    padding: 3rem 3rem 14rem;
    margin: 0 4rem;
  }
  footer address {
    font-size: 1.4rem;
    line-height: 1.5;
    text-align: right;
    -webkit-margin-after: 4rem;
            margin-block-end: 4rem;
  }
  footer address span {
    font-size: 1.6rem;
  }
  footer .copyright {
    text-align: center;
  }
  footer .copyright small {
    font-size: 1.2rem;
  }
}
/*# sourceMappingURL=style.css.map */