@charset "UTF-8";

.pane-contents,
.edit-format {
    background: #fff8da;
}

/* .pane-contents--container {
    width: 1200px;
} */
/* .pane-main {
    
} */

@media screen and (max-width: 768px) {}


/* ==================================================
Page Head Custom
================================================== */
#page-head {}

@media screen and (max-width: 768px) {

    #page-head {}

}

/* ==================================================
Page Body
================================================== */
#page-body {
    overflow-x:hidden;
    max-width: 800px;
    position: relative;
}
.pane-main {
  margin: 0px;
}

.archivebg {
  background: #fff; 
  width: 100vw;
  margin-left: calc(50% - 50vw); 
  height:200px;
}

.none {
    display: none;
}

.flex {
	display: flex;
	justify-content: center;
	margin-inline: auto;
	align-items: flex-start;
}


#head-title {
    margin-top: 60px;
}

body.no-scroll {
overflow: hidden;
}


    
.seasons {
  font-family: "the-seasons", sans-serif;
  letter-spacing: 1.3px;
    }
    
.libre {
  font-family: "Libre Bodoni", serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: italic;
}
.bodoni-moda {
font-family: "Bodoni Moda", serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 3;
  font-variation-settings: "opsz" 13;
}

.Topimg {
position:relative;
margin:0 auto;
width:48%;
padding-top: 50px;
}

.concepttitle {
font-size: 50px;
  line-height: 1em;
}

 /* ===== gallery ===== */
  .gallery-set {
    position: relative;
    margin-bottom: 80px;
  }

  .images {
  	width:780px;
    display: flex;
    gap: 30px;
    justify-content: center;
    margin: 0 auto;
  }

  .image-box {
    width: 68%;
    height:auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* ===== plus button ===== */
  .global-plus {
position: absolute;
  right: 0;
  width: 80px;
  height: 80px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10;
  bottom: -100px;
  }

  .global-plus::before,
  .global-plus::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 1px;
    background: #000;
    transform: translate(-50%, -50%);
  }

  .global-plus::after {
    transform: translate(-50%, -50%) rotate(90deg);
  }

  /* ===== modal ===== */
  .credit-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .8s ease;
      z-index: 100;
  }

  .credit-modal.active {
    opacity: 1;
    pointer-events: auto;
  }

  /* ===== credit content ===== */
  .credit-content {
    background: white;
    padding: 48px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 750px;
  max-height: 70vh;
  overflow-y: auto;
  margin-top:120px;
  -webkit-overflow-scrolling: touch;
}


  /* ===== credit item ===== */
  .credit-item {
    text-align: center;
    font-size: 12px;
  }

  .credit-thumb {
    background: #eee;
    margin-bottom: 8px;
    object-fit:cover;
  }

  /* thumbnail sizes */
  .thumb-small { height: 80px; }
  .thumb-medium { height: 110px; }
  .thumb-large { height: 150px; }

  .credit-item small {
    display: block;
    font-size: 11px;
  }

  /* close */
  .close-btn {
  position: absolute;
  bottom: 15px; 
  width: 60px;
  height: 60px;
  background: none;
  border: none;
  cursor: pointer;
}

/* 2本の線 */
.close-btn::before,
.close-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;       /* ← 線の長さ */
  height: 2px;       /* ← 線の細さ */
  background: white;
  transform-origin: center;
}

/* 斜め45度 */
.close-btn::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

/* 斜め-45度 */
.close-btn::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}



.checkallbtn a {
	background-color:transparent;
	display:inline-block;
	cursor:pointer;
	color:#383838;
	font-size:17px;
	padding:12px 120px;
	text-decoration:none;
	border: solid 1px #383838;
}
.checkallbtn a:visited{
	color:#383838;
}
.checkallbtn a {
	color:#383838;
	-webkit-text-fill-color: #383838;
}

.checkallbtn:hover {
	background-color:transparent;
}
.checkallbtn:active {
	position:relative;
	top:1px;
}



/* タブレット用 */
@media screen and (max-width: 768px) {


}

/* SP用 */
@media screen and (max-width: 480px) {
.archivebg {
  height:100px;
}
.concepttitle {
  font-size: 40px;
}
   .credit-content {
      grid-template-columns: repeat(2, 1fr);
      margin-top: 40px;
      max-height: 60vh;
    }
    
.images {
  width: 90%;
  gap: 15px;
}
.global-plus {
  width: 50px;
  height: 50px;
  bottom: -70px;
  right: 5px;
}
.global-plus::before, .global-plus::after {
  width: 50px;
  height: 1px;
}
.credit-content {
  padding: 32px;
  width: 80%;
}
.credit-item {
  font-size: 9px;
}

}




/* Fade in */
.inView {
    opacity: 0;
}

.imgFade {
    opacity: 0;
}

.imgAnim {
    -webkit-animation-name: imgAnim;
    animation-name: imgAnim;
    -webkit-animation-duration: 1.6s;
    animation-duration: 1.6s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

@keyframes imgAnim {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
        transform: translate(0);
    }
}

.imgFade.fadeT {
    opacity: 0;
    transform: translateY(50px);
    position: relative;
    z-index: 5;
}

.imgAnim.fadeT {
    -webkit-animation-name: imgAnim;
    animation-name: imgAnim;
    -webkit-animation-duration: 1.4s;
    animation-duration: 1.4s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.imgFade.fadeR {
    opacity: 0;
    transform: translateX(50px);
    position: relative;
    z-index: 5;
}

.imgFade.fadeL {
    opacity: 0;
    transform: translateX(-50px);
    position: relative;
    z-index: 5;
}

.imgAnim.fadeR {
    -webkit-animation-name: imgAnim;
    animation-name: imgAnim;
    -webkit-animation-duration: 1.4s;
    animation-duration: 1.4s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.imgAnim.fadeL {
    -webkit-animation-name: imgAnim;
    animation-name: imgAnim;
    -webkit-animation-duration: 1.4s;
    animation-duration: 1.4s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}