@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Abel&family=Ropa+Sans&display=swap");
/* A Modern CSS Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

ul[role="list"],
ol[role="list"] {
  list-style: none;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

img,
picture {
  max-width: 100%;
  max-height: 100%;
  display: block;
}

input,
button,
textarea,
select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: smooth;
  }
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: smooth !important;
  }
}

a {
  text-decoration: none;
}

ul,
ol {
  padding-left: 0;
  margin-top: 0;
  margin-bottom: 0;
  list-style-type: none;
}

/***Type Scale 1.25 ***
6.86
5.49
4.39
3.51
2.81
2.25
1.8rem
1.44
1.12
0.92

3.9
3.13
2.5
2
1.6rem
1.2
1
******************/
html {
  font-size: 62.5%;
}

@media screen and (max-width: 768px) {
  html {
    font-size: 1.3vw;
  }
}

@media screen and (max-width: 519px) {
  html {
    font-size: 2.6vw;
  }
}

body {
  color: #231815;
  font-family: "Abel", YuGothic, "Yu Gothic Medium", "Yu Gothic", sans-serif;
  font-display: swap;
  font-size: 1.28rem;
  font-weight: 500;
  line-height: 1.7;
  vertical-align: baseline;
  background-color: #ffffff;
  color: #231815;
}

html,
body {
  scroll-behavior: smooth;
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Ropa Sans", YuGothic, "Yu Gothic", "Yu Gothic", sans-serif;
  line-height: 1.2;
}

a {
  color: #8890b4;
  font-family: "Ropa Sans", YuGothic, "Yu Gothic", "Yu Gothic", sans-serif;
  line-height: 1.2;
}

img {
  aspect-ratio: auto;
}

.wrapper {
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  height: 100%;
  position: relative;
}

.container {
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 100px minmax(0, 60%) 100px;
      grid-template-columns: 100px minmax(0, 60%) 100px;
      grid-template-areas: ". main side";
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .container {
    -ms-grid-columns: 0 100% 0;
        grid-template-columns: 0 100% 0;
  }
}

.container section {
  margin-top: 1.6rem;
}

.container .main-area {
  width: 100%;
  min-height: calc(100vh - 100px);
  -ms-grid-row: 1;
  -ms-grid-column: 2;
  grid-area: main;
  display: -ms-grid;
  display: grid;
}

.container .main-area img {
  -o-object-fit: cover;
     object-fit: cover;
}

.container .main-area h2 {
  font-size: 6.09375rem;
  background-color: #8890b4;
  color: #ffffff;
  width: 300px;
  max-width: 340px;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  text-align: center;
  z-index: 998;
  line-height: 1.7;
}

@media screen and (max-width: 768px) {
  .container .main-area h2 {
    width: 90%;
    font-size: 3.9rem;
  }
}

@media screen and (max-width: 768px) {
  .container .main-area section {
    margin-top: 1rem;
    margin-right: 0;
    margin-bottom: 0;
    margin-left: 0;
    padding-right: 1.6rem;
    padding-left: 1.6rem;
    width: 100%;
  }
}

/* ローディング画面 */
#loading {
  width: 100vw;
  height: 100vh;
  transition: all 1s;
  background-color: #ffffff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}

#loading .spinner {
  width: 200px;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.loaded {
  opacity: 0;
  visibility: hidden;
}

.spinner {
  -webkit-animation: text-focus-in 0.5s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
          animation: text-focus-in 0.5s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
}

@-webkit-keyframes text-focus-in {
  0% {
    -webkit-filter: blur(12px);
            filter: blur(12px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0px);
            filter: blur(0px);
    opacity: 1;
  }
}

@keyframes text-focus-in {
  0% {
    -webkit-filter: blur(12px);
            filter: blur(12px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0px);
            filter: blur(0px);
    opacity: 1;
  }
}

/* スライド */
.slide-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 6 / 4;
}

.slide-wrapper img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  -webkit-animation: slideshow 48s ease-in infinite;
          animation: slideshow 48s ease-in infinite;
}

.slide-wrapper img:nth-child(2) {
  -webkit-animation-delay: 12s;
          animation-delay: 12s;
  z-index: -2;
}

.slide-wrapper img:nth-child(3) {
  -webkit-animation-delay: 24s;
          animation-delay: 24s;
  z-index: -3;
}

.slide-wrapper img:nth-child(4) {
  -webkit-animation-delay: 36s;
          animation-delay: 36s;
  z-index: -4;
}

@media screen and (max-width: 768px) {
  .slide-wrapper img {
    height: auto;
  }
}

@-webkit-keyframes slideshow {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  10% {
    opacity: 1;
  }
  40% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@keyframes slideshow {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  10% {
    opacity: 1;
  }
  40% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

header {
  background-color: #ffffff;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 100px minmax(0, 60%) 100px;
      grid-template-columns: 100px minmax(0, 60%) 100px;
      grid-template-areas: ". main side";
  justify-content: center;
  align-items: center;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  height: 100px;
  max-width: 100%;
  z-index: 999;
}

header h1 {
  width: 100%;
  height: 3.9rem;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -1;
}

@media screen and (max-width: 519px) {
  header h1 {
    height: 2.5rem;
  }
}

header h1 img {
  margin-top: 0;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
}

.top-menu-wrapper {
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2/3;
  position: relative;
  display: flex;
  justify-content: space-between;
  height: 100%;
}

.top-menu-wrapper > li {
  width: 100%;
  min-width: 200px;
  max-width: 300px;
}

.top-menu-wrapper .top-menu-content {
  display: flex;
  align-items: center;
  height: 100%;
}

.top-menu-wrapper .top-menu-content li {
  width: 100%;
  text-align: center;
}

.top-menu-wrapper .top-menu-content li a {
  font-size: 2rem;
}

.side-menu {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 100px minmax(0, 60%) 100px;
      grid-template-columns: 100px minmax(0, 60%) 100px;
      grid-template-areas: ". main side";
  justify-content: center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.side-menu ul {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
  grid-area: side;
  -ms-grid-column-align: center;
      justify-self: center;
  position: -webkit-sticky;
  position: sticky;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 30px;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  z-index: 7;
}

.side-menu li {
  margin-bottom: 1rem;
}

.sp #nav-drawer {
  -ms-grid-column-align: center;
      justify-self: center;
  -ms-grid-column: 3;
  grid-column: 3;
  position: static;
  width: 30px;
  height: 20px;
  z-index: 99;
  margin-right: 1.6rem;
}

.sp .nav-unshown {
  display: none;
}

.sp #nav-open {
  width: 30px;
  height: 35px;
}

.sp #nav-close {
  display: none;
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0;
  transition: 0.3s ease-in-out;
}

.sp #nav-content {
  overflow: auto;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 9999;
  width: 70%;
  max-width: 330px;
  height: 100%;
  background-color: #fff;
  transition: 0.3s ease-in-out;
  -webkit-transform: translateX(105%);
          transform: translateX(105%);
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: center;
}

.sp #nav-content ul {
  padding-left: 0;
}

.sp #nav-content ul li {
  font-family: "Ropa Sans", YuGothic, "Yu Gothic", "Yu Gothic", sans-serif;
  line-height: 1.2;
  font-size: 2rem;
  list-style-type: none;
}

.sp #nav-input:checked ~ #nav-close {
  display: block;
  opacity: 0.5;
}

.sp #nav-input:checked ~ #nav-content {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
  box-shadow: 6px 0 25px rgba(0, 0, 0, 0.15);
}

.sp .top-menu-wrapper {
  display: block;
  height: auto;
  -ms-grid-row-align: center;
      align-self: center;
}

.sp .top-menu-wrapper > li {
  padding-top: 1rem;
  padding-right: 0;
  padding-bottom: 1rem;
  padding-left: 0;
  text-align: center;
}

.sp .side-menu {
  display: block;
  position: static;
  -ms-grid-row-align: center;
      align-self: center;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}

.sp .side-menu ul {
  position: static;
  display: flex;
  justify-content: center;
  width: 100%;
  top: 0%;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
}

.sp .side-menu ul li {
  display: block;
  width: 30px;
  height: 30px;
  margin-top: 0;
  margin-right: 1rem;
  margin-bottom: 0;
  margin-left: 1rem;
}

.top {
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
}

@media screen and (max-width: 768px) {
  .top .main-area .slide-wrapper {
    aspect-ratio: auto;
    height: 100vh;
  }
}

.top .main-area .slide-wrapper img {
  -o-object-fit: contain;
     object-fit: contain;
}

@media screen and (max-width: 768px) {
  .top .main-area .slide-wrapper img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center top;
       object-position: center top;
  }
}

.about {
  background-color: #ffffff;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  box-shadow: 0px -20px 30px -10px rgba(0, 0, 0, 0.15);
  box-sizing: border-box;
  position: sticky;
  top: 0px;
  padding-top: 100px;
  padding-bottom: 4rem; /* ここ追加 */
  margin-top: -100px;
  margin-bottom: 200px;
}

.about .main-area {
  -ms-grid-columns: minmax(0, 1fr) minmax(0, 75%);
      grid-template-columns: minmax(0, 1fr) minmax(0, 75%);
  -ms-grid-rows: auto minmax(0, 1fr);
      grid-template-rows: auto minmax(0, 1fr);
}

@media screen and (max-width: 768px) {
  .about .main-area {
    grid-template-columns: 100%;
    grid-template-rows: auto auto auto auto; /* ここ変更！ */
    align-content: center;
  }
}

.about .main-area h2 {
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1/2;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1/2;
  margin-top: 100%;
}

@media screen and (max-width: 768px) {
  .about .main-area h2 {
    margin-top: 0;
    -ms-grid-row-align: center;
        align-self: center;
  }
}

.about .main-area dl {
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1/2;
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  grid-row: 2/3;
  width: 100%;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  background-color: #8890b4;
  color: #ffffff;
  padding-top: 1.6rem;
  padding-right: 1rem;
  padding-bottom: 1.6rem;
  padding-left: 1rem;
}

@media screen and (max-width: 768px) {
  .about .main-area dl {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    grid-row: 3/4;
  }
}

.about .main-area dl dt {
  font-size: 2rem;
  line-height: 2;
}

.about .main-area dl dd {
  line-height: 1.2;
}

.about .main-area dl dd a {
  color: #ffffff;
  border-bottom: solid 1px #ffffff;
}

.about .main-area .slide-wrapper {
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2/3;
}

@media screen and (max-width: 768px) {
  .about .main-area .slide-wrapper {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/2;
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    grid-row: 2/3;
  }
}

.about .main-area section {
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2/3;
  margin-left: 1rem;
}

@media screen and (max-width: 768px) {
  .about .main-area section {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/2;
    -ms-grid-row: 4;
    -ms-grid-row-span: 1;
    grid-row: 4/5;
    margin-left: 0;
  }
}

.topics {
  background-color: #ffffff;
  color: #231815;
  width: clamp(50vw, 400px, 96%);
  min-height: 50vh;
  padding-top: 3.9rem;
  padding-right: 1rem;
  padding-bottom: 3.9rem;
  padding-left: 1rem;
  margin-top: 0;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .topics {
    padding-right: 1rem;
    padding-left: 1rem;
  }
}

.topics dl dt {
  font-size: 2rem;
  color: #8890b4;
}

.topics dl dd {
  margin-bottom: 1.6rem;
}

.topics figure {
  max-width: 70%;
}

.chef {
  background-color: #ffffff;
  <!--background-image: url("../image/bg_2.svg");-->
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  box-shadow: 0px -20px 30px -10px rgba(0, 0, 0, 0.15);
  box-sizing: border-box;
  position: -webkit-sticky;
  position: sticky;
  top: 0px;
  padding-top: 100px;
  margin-top: -100px;
  margin-bottom: 200px;
}

.chef .main-area {
  -ms-grid-columns: minmax(0, 75%) minmax(0, 1fr);
      grid-template-columns: minmax(0, 75%) minmax(0, 1fr);
  -ms-grid-rows: minmax(0, 75%) minmax(0, 1fr);
      grid-template-rows: minmax(0, 75%) minmax(0, 1fr);
}

@media screen and (max-width: 768px) {
  .chef .main-area {
    -ms-grid-columns: 100%;
        grid-template-columns: 100%;
    -ms-grid-rows: 7.8rem 1fr;
        grid-template-rows: 7.8rem 1fr;
    align-content: center;
  }
}

.chef .main-area h2 {
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2/3;
  margin-top: 50%;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  margin-left: -7.8rem;
}

@media screen and (max-width: 768px) {
  .chef .main-area h2 {
    margin-top: auto;
    margin-right: 0;
    margin-bottom: auto;
    margin-left: auto;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/2;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1/2;
  }
}

.chef .main-area > div {
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1/2;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1/2;
  position: relative;
}

@media screen and (max-width: 768px) {
  .chef .main-area > div {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    grid-row: 2/3;
  }
}

.chef .main-area > div .tow-column {
  display: flex;
}

@media screen and (max-width: 768px) {
  .chef .main-area > div .tow-column {
    flex-flow: column nowrap;
  }
}

.chef .main-area > div .tow-column section.name {
  width: 11.2rem;
}

@media screen and (max-width: 768px) {
  .chef .main-area > div .tow-column section.name {
    width: 100%;
  }
}

.chef .main-area > div .tow-column section.name h3 {
  font-size: 1.6rem;
}

.chef .main-area > div .tow-column section.name > p {
  font-size: 1.25rem;
}

@media screen and (max-width: 768px) {
  .chef .main-area > div .tow-column section {
    font-size: 1rem;
    line-height: 1.5;
  }
}

.menu {
  background-color: #ffffff;
  <!--background-image: url("../image/bg_1.svg")-->
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  box-shadow: 0px -20px 30px -10px rgba(0, 0, 0, 0.15);
  box-sizing: border-box;
  position: -webkit-sticky;
  position: sticky;
  top: 0px;
  padding-top: 100px;
  margin-top: -100px;
  margin-bottom: 200px;
}

.menu .main-area {
  -ms-grid-columns: minmax(0, 1fr) minmax(0, 75%);
      grid-template-columns: minmax(0, 1fr) minmax(0, 75%);
  -ms-grid-rows: auto minmax(0, 1fr);
      grid-template-rows: auto minmax(0, 1fr);
  /*
    .content {
      grid-row: 1/2;
      grid-column: 1/2;
      margin-top: 70%;
      z-index: 997;

      @include mq() {
        margin-top: 0;
        grid-row: 1/4;
        height: calc((100vh - 100px) / 10);
        display: flex;
        justify-content: center;
      }

      h3 {
        display: flex;
        align-items: flex-end;
        @include margin($fb, auto, $fb, auto);
        width: max-content;
        min-width: 160px;
        position: relative;

        @include mq() {
          @include margin($fs, auto, $fs, auto);
        }

        a {
          position: absolute;
          width: 100%;
          height: 100%;
        }
        img {
          width: 40px;

          @include mq() {
            height: 20px;
            object-fit: contain;
          }
        }
        span {
          color: $maincolor;
          text-decoration: underline;
          margin-left: $fn;
        }
      }
    }
    */
}

@media screen and (max-width: 768px) {
  .menu .main-area {
    -ms-grid-columns: 100%;
        grid-template-columns: 100%;
    -ms-grid-rows: 7.8rem 1fr 40%;
        grid-template-rows: 7.8rem 1fr 40%;
    align-items: center;
  }
}

.menu .main-area h2 {
  margin-top: 25%;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1/2;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1/2;
}

@media screen and (max-width: 768px) {
  .menu .main-area h2 {
    margin-top: 0;
    margin-right: auto;
    margin-bottom: auto;
    margin-left: 0;
  }
}

.menu .main-area .slide-wrapper {
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2/3;
}

@media screen and (max-width: 768px) {
  .menu .main-area .slide-wrapper {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/2;
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    grid-row: 2/3;
  }
}

.menu .main-area section {
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  grid-row: 2/3;
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2/3;
}

@media screen and (max-width: 768px) {
  .menu .main-area section {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    grid-row: 3/4;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/2;
    -ms-grid-row-align: start;
        align-self: start;
  }
}

.artist {
  background-color: #ffffff;
  <!--background-image: url("../image/bg_3.svg")-->
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  box-shadow: 0px -20px 30px -10px rgba(0, 0, 0, 0.15);
  background-attachment: local;
  background-position: center 150px;
  position: relative;
}

.artist .main-area {
  padding-top: 100px;
}

.artist .main-area h2 {
  margin-top: 0;
  margin-right: auto;
  margin-bottom: 3.9rem;
  margin-left: auto;
  top: 100px;
}

@media screen and (max-width: 768px) {
  .artist .main-area h2 {
    margin-top: 1.6rem;
    margin-right: auto;
    margin-bottom: 1.6rem;
    margin-left: auto;
    position: static;
  }
}

.artist .main-area .tow-column {
  border-bottom: solid 1px #8890b4;
  display: flex;
  justify-content: space-between;
  margin-bottom: 3.9rem;
}

@media screen and (max-width: 768px) {
  .artist .main-area .tow-column {
    flex-flow: column nowrap;
  }
}

.artist .main-area .tow-column section {
  max-width: 500px;
  text-align: center;
  margin-top: 0;
  margin-right: auto;
  margin-bottom: 3.9rem;
  margin-left: auto;
}

@media screen and (max-width: 768px) {
  .artist .main-area .tow-column section {
    margin-bottom: 1.6rem;
  }
}

.artist .main-area .carrer {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(300px, 33%))[auto-fill];
      grid-template-columns: repeat(auto-fill, minmax(300px, 33%));
  -webkit-column-gap: 3.9rem;
          column-gap: 3.9rem;
  margin-bottom: 3.9rem;
}

@media screen and (max-width: 768px) {
  .artist .main-area .carrer {
    -ms-grid-columns: 100%;
        grid-template-columns: 100%;
  }
}

.artist .main-area .carrer figcaption {
  padding-left: 1.6rem;
  margin-top: 1rem;
  margin-right: auto;
  margin-bottom: 3.9rem;
  margin-left: auto;
}

.artist .main-area .carrer section {
  margin-top: 0;
  margin-right: auto;
  margin-bottom: 3.9rem;
  margin-left: auto;
}

.artist .main-area .carrer:not(:last-of-type) {
  border-bottom: solid 1px #8890b4;
}

.artist .main-area .carrer .grid {
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  grid-row: 2/3;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-column: 1/4;
  display: flex;
  flex-flow: row nowrap;
  padding-bottom: 3.9rem;
}

.artist .main-area .carrer .grid li {
  width: calc(100% / 9);
  height: 125px;
}

.artist .main-area .carrer .grid li img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 768px) {
  .artist .main-area .carrer .grid {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/2;
    -ms-grid-row: 4;
    -ms-grid-row-span: 1;
    grid-row: 4/5;
    flex-flow: row wrap;
  }
  .artist .main-area .carrer .grid li {
    width: calc(100% / 5);
    height: 75px;
  }
}

footer {
  background-color: #ffffff;
  grid-area: footer;
  height: auto;
  min-height: 100vh;
  position: relative;
  z-index: 6;
}

footer .reserv {
  background-color: #8890b4;
  color: #ffffff;
  display: block;
  min-height: 350px;
  padding-top: 100px;
  padding-right: 0;
  padding-bottom: 100px;
  padding-left: 0;
}

footer .reserv h2 {
  font-size: 3.9rem;
  text-align: center;
  width: 100%;
  margin-top: 1.6rem;
  margin-right: auto;
  margin-bottom: 1.6rem;
  margin-left: auto;
}

@media screen and (max-width: 768px) {
  footer .reserv {
    margin-top: 0;
    padding-top: 50px;
  }
  footer .reserv h2 {
    margin-top: 0;
    margin-right: auto;
    margin-bottom: 1.6rem;
    margin-left: auto;
  }
}

footer .reserv .tow-column {
  display: flex;
  justify-content: space-around;
}

@media screen and (max-width: 768px) {
  footer .reserv .tow-column {
    flex-flow: column nowrap;
  }
}

footer .reserv .tow-column section {
  max-width: 330px;
  text-align: center;
  margin-right: auto;
  margin-left: auto;
}

footer .reserv .tow-column .button {
  border: solid 1px #ffffff;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-top: 1.6rem;
  margin-right: auto;
  margin-bottom: 1.6rem;
  margin-left: auto;
  padding-top: 1rem;
  padding-right: 1.6rem;
  padding-bottom: 1rem;
  padding-left: 1.6rem;
}

footer .reserv .tow-column .button a {
  color: #ffffff;
  font-family: "Ropa Sans", YuGothic, "Yu Gothic", "Yu Gothic", sans-serif;
  line-height: 1.2;
}

footer .access {
  display: block;
}

footer .access .googlemap {
  position: relative;
  padding-top: 30px;
  padding-bottom: 40%;
  height: 0;
  overflow: hidden;
  min-width: 100%;
}

footer .access .googlemap iframe,
footer .access .googlemap object,
footer .access .googlemap embed {
  -webkit-filter: grayscale(100%) opacity(75%);
          filter: grayscale(100%) opacity(75%);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

footer .access .grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(0, 340px))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(0, 340px));
  grid-gap: 3.9rem;
  justify-content: center;
  margin-top: 7.8rem;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
}

@media screen and (max-width: 768px) {
  footer .access .grid {
    row-gap: 7.8rem;
  }
}

footer .access .grid .content {
  border: solid 1px #8890b4;
  position: relative;
  color: #8890b4;
  text-align: center;
  padding-bottom: 3.9rem;
  min-height: 220px;
}

@media screen and (max-width: 768px) {
  footer .access .grid .content {
    min-height: auto;
  }
}

footer .access .grid .content h3 {
  background-color: #ffffff;
  font-size: 1.6rem;
  margin-top: -1.4rem;
  margin-right: auto;
  margin-bottom: 3.9rem;
  margin-left: auto;
  padding-right: 1.6rem;
  padding-left: 1.6rem;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

footer > .tow-column {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  height: 200px;
  margin-top: 0;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
}

@media screen and (max-width: 768px) {
  footer > .tow-column {
    flex-flow: column nowrap;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
  }
}

footer > .tow-column figure {
  width: 160px;
  height: auto;
  margin: auto;
}

@media screen and (max-width: 768px) {
  footer > .tow-column figure {
    margin-top: 3.9rem;
    margin-right: auto;
    margin-bottom: 3.9rem;
    margin-left: auto;
  }
}
/*# sourceMappingURL=style.css.map */

/* ========== SP (スマホ用) レスポンシブ ========== */
@media (max-width: 768px) {
  
  /* ヘッダー・ロゴの重なりを回避 */
  .header-logo {
    position: relative;
    z-index: 10;
    margin-top: 20px;
    text-align: center;
  }

  /* ナビゲーション調整 */
  .nav-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 10;
    margin-top: 10px;
  }

  /* メインビジュアル（画像）のマージン調整 */
  .main-visual {
    margin-top: 100px; /* ヘッダー分の空きを作る */
    width: 100%;
    height: auto;
  }

  /* SNSリンクの位置直し */
  .sns-links {
    position: fixed;
    bottom: 20px;
    right: 10px;
    z-index: 20;
  }

  /* Topics周りも余白調整 */
  .topics-box {
    margin-top: 20px;
    padding: 15px;
  }
}

