@charset "UTF-8";

.pane-contents,
.edit-format {
    background: #fff;
}

/* .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: 700px;
    position: relative;
}

.none {
    display: none;
}

.flex {
    display: flex;
    justify-content: center;
    margin-inline: auto;
    align-items: flex-start;
    gap:30px;
}

.articleSet {
    position: relative;
}

#head-title {
    margin-top: 60px;
}


.seasonsfont {
  font-family: "the-seasons", sans-serif;
  letter-spacing: 1.3px;
    }
.bodoni-moda {
font-family: "Bodoni Moda", serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 3;
  font-variation-settings: "opsz" 13;
}
.libre {
  font-family: "Libre Bodoni", serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}



.full {
width:100%;
max-width:800px;
}

.med {
width:80%;
max-width:700px;
margin:0 auto;
}

.med-bw {
width:80%;
max-width:700px;
margin:0 auto;
}

.med-bw img {
filter: greyscale(100%);
transition: filter 0.8 ease;
}

.med-bw.aos-animate img {
filter: greyscale(0%);
}

.lar {
width:85%;
max-width:780px;
margin:0 auto;
}

.sml {
postision:relative;
width:65%;
max-width:600px;
margin:0 auto;
}

.Maincont {
position:relative;
}

.logo {
position:absolute;
top: 59%;
left: 50%;
transform: translate(-50%, -50%);
width:22%;
}

.title {
position:absolute;
color: #fff;
top: 42%;
left: 32%;
transform: translate(-50%, -50%);
}
.title2 {
position:absolute;
color: #fff;
top: 42%;
left: 58%;
transform: translate(-50%, -50%);
}

       


.subtitle {
            position:absolute;
            color: #fff;
            font-size:95px;
            top: 42%;
            left: 50%;
            transform: translate(-50%, -50%);
}

.tagline1 {
color: #fff;
position:absolute;
font-size: 14px;
top: 51%;
left: 50%;
transform: translate(-50%, -50%);
}   

.tagline2 {
color: #fff;
position:absolute;
font-size: 14px;
top: 54%;
left: 50%;
transform: translate(-50%, -50%);
}      
        
        
.credit-out {
font-size: 12px;
text-align: right;
}        

.img-cont {
position:relative;
display: inline-block;
}

.img-cont img {
display: block;
}

.credit-in {
position:absolute;
bottom : 10px;
right: 10px;
font-size: 12px;
text-align: right;
color: #fff;
}        

.bottom-credit {
font-size: 12px;
justify-content:space-between;
display:flex;
}

.item1 {
width:38%;
}
.item2 {
width:38%;
padding-top:120px;
}


.title-in {
position:relative;
font-size: 15px;
  color: #fff;
  white-space: nowrap;
  letter-spacing: 1.3px;
}  

.left2{
position: absolute;
  top: 55%;
  left: 18%;
  transform: translate(-50%, -50%);
}
.right2 {
position: absolute;
  top: 55%;
  left: 78%;
  transform: translate(-50%, -50%);
}

.staffcredit {
  position: absolute;
  top: 83%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 15px;
  color: #fff;
  letter-spacing: 1.3px;
  white-space:nowrap;
}

.checkbtn {
    display: inline-block;
    position: relative;
    font-size: 14px;
    padding-bottom: 10px;
}

.checkbtn::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid black;
}

/* タブレット用 */
@media screen and (max-width: 768px) {


}

/* SP用 */
@media screen and (max-width: 480px) {
.Maincont {
  font-size: 11px;
}

.title {
  left: 25%;
}
.title2 {
  left: 65%;
  white-space: nowrap;
}

.subtitle {
  font-size: 50px;
  top: 42%;
}

.tagline1 {
  font-size: 7px;
  top: 53%;
}

.tagline2 {
  font-size: 7px;
  top: 56%;
}

.credit-out {
  font-size: 9px;
  text-align: right;
  padding-right: 5px;
}

.credit-in {
  font-size: 9px;
}

.title-in {
  font-size: 10px;
}
.left2 {
  left: 22%;
}
.right2 {
  left: 72%;
}
.bottom-credit {
  font-size: 9px;
}

.staffcredit {
  top: 80%;
  font-size: 10px;
  white-space: nowrap;
}
}







/* 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;
}