@charset "UTF-8";
/* ==========common========== */
html {
    font-size: 62.5%;
}

body {
  font-family: "Shippori Mincho","Cormorant Garamond",serif;
  font-style: normal;
  color: #4b4b4b;
  line-height: 1.5;
}
/* ========================== */

/* ==========article=========== */
.slideshow {
    position: relative;
    width: 100%;
    height: 100dvh;
    overflow: hidden;
    z-index: 0;
}
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    object-fit: cover;
    opacity: 0;
    transition: opacity 2s ease;
    z-index: 0;
}
.slide.active {
    opacity: 1;
}
.dots {
    position: absolute;
    bottom: 18px;
    left: 20px;
    display: flex;
    gap: 7px;
}
.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    transition: background-color 0.3s ease;
}
.dot.active {
    background-color: #ffffff;
}

/* scroll */
.scroll_down {
  position: relative;
  width: 98%;
  height: 100dvh;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.scroll_down:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70%;
  background: linear-gradient(180deg,rgba(#000, 0) 0, rgba(#000, .8) 80%, rgba(#000, .8) 100%);
}

.scroll_down a {
  display: inline-block;
  position: absolute;
  right: 0;
  bottom: 8px;
  z-index: 100;
  width: 13px;
  padding: 0px 10px 20px 24px;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.3em;
  writing-mode: vertical-lr;
  /* overflow: hidden; */
}

.scroll_down a:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 80px;
  background: #6e6e6e81;
}

.scroll_down a:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 80px;
  background: #ffffff;
}

#type01 a:after {
  animation: sdl01 2.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes sdl01 {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}

/* ========caption========= */
.mainCaption {
    font-size: 1.6rem;
    text-align: center;
    margin: 80px 0;
}
.mainCaption__txt {
    margin-top: 20px;
    line-height: 2.4;
}
@media screen and (max-width: 959px) {
    
}
/* 480px以下に適用されるCSS（スマホ用） */
@media screen and (max-width: 480px) {
    .mainCaption {
        font-size: 1.4rem;
        margin: 60px 0;
    }
    .mainCaption__txt {
        margin-top: 20px;
        line-height: 2.4;
    }
}
/* =======gallery======= */
.topic {
    text-align: center;
    font-family: "Cormorant Garamond";
    text-transform: uppercase;
    font-weight: 500;
    font-size: 2.8rem;
    margin-bottom: 20px;
}
.gallery--flex {
    display: flex;
    justify-content: center;
}
.gallery__list {
    display: flex;
}
.gallery__item img{
  display: block;
  width: 100%;
  height: auto;
}
.gallery__item:hover img {
  opacity: 0.7;
}
.gallery__item img{
    width: 200px;
    padding: 6px;
}
.more__btn {
    display: block;
    font-size: 2rem;
    font-family: "Cormorant Garamond";
    border: 1px solid #4b4b4b;
    padding: 4px 0 6px;
    max-width: 240px;
    margin: 40px auto;
    text-align: center;
    transition: 0.4s;
}
.more__btn:hover {
    background-color: #232323;
    color: #ffffff;
    border: 1px solid #ffffff;
}
/* 959px以下に適用されるCSS（タブレット用） */
@media screen and (max-width: 959px) {
    .gallery__item img {
        width: 160px;
    }
}
/* 480px以下に適用されるCSS（スマホ用） */
@media screen and (max-width: 480px) {
    .dots {
        bottom: 12px;
        left: 12px;
    }
    .topic {
        font-size: 2.4rem;
    }
    .gallery--flex {
        display: block;
    }
    .gallery__list {
        justify-content: center;
    }
    .gallery__item img {
        width: 150px;
    }
    .more__btn {
        margin: 20px auto;
        font-size: 1.8rem;
    }
}

/* ==========profile========== */
.section--profie {
    background-image: url(../images/profileBackground.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    color: #ffffff;
    /* margin-top: 60px; */
    padding: 60px 0 40px;
    margin: 60px 20px;
}
.profile__face {
    display: block;
    width: 220px;
    margin: 40px auto;
}
.profile__name {
    font-size: 1.6rem;
    text-align: center;
    margin-top: 40px;
}
.profile__txt {
    font-size: 1.6rem;
    max-width: 400px;
    margin: 40px auto;
}
.section--profie .more__btn{
    border: 1px solid #ffffff;
    transition: 0.4s;
    margin-top: 60px;
}
.section--profie .more__btn:hover{
    background-color: #ffffff;
    color: #4b4b4b;
    border: 1px solid #4b4b4b;
}
/* 959px以下に適用されるCSS（タブレット用） */
@media screen and (max-width: 959px) {
    .profile__face {
        width: 180px;
    }
    .profile__txt {
        width: 420px;
    }
}
/* 480px以下に適用されるCSS（スマホ用） */
@media screen and (max-width: 480px) {
    .section--profie {
        background-image: url(../images/profileBackground_sp.jpg);
        margin: 30px 16px 0;
        padding: 30px 0;
    }
    .profile__face {
        width: 130px;
        margin: 30px auto;
    }
    .profile__name {
        font-size: 1.4rem;
        text-align: center;
        margin-top: 30px;
    }
    .profile__txt {
        font-size: 1.4rem;
        margin: 20px auto 0;
        width: 280px;
    }
    .section--profie .more__btn{
        margin-top: 30px;
    }
}

/* ===========exhibition============ */
.section--exhibition {
    margin: 60px 0 60px;
}
.exhibition__list {
    width: 600px;
    margin: 40px auto;
    font-size: 1.6rem;
}
.exhibition__txt {
    margin-top: 20px;
}
.exhibition__txt time{
    display: block;
    font-weight: 500;
    border-bottom: 0.5px solid #dbd5cc;
    padding-bottom: 6px;
    margin-bottom: 6px;
}
.section--exhibition .more__btn{
    margin-top: 60px;    
}
/* 959px以下に適用されるCSS（タブレット用） */
@media screen and (max-width: 959px) {
    .exhibition__list {
        width: 420px;
    }
}
/* 480px以下に適用されるCSS（スマホ用） */
@media screen and (max-width: 480px) {
    .section--exhibition {
        margin: 40px 0;
    }
    .exhibition__list {
        width: 280px;
        margin: 30px auto;
        font-size: 1.4rem;
    }
    .exhibition__txt {
        margin-top: 20px;
    }
    .exhibition__txt time{
        display: block;
        font-weight: 500;
        border-bottom: 1px solid #dbd5cc;
        padding-bottom: 4px;
        margin-bottom: 4px;
    }
    .section--exhibition .more__btn{
        margin-top: 40px;    
    }
}


