@charset "utf-8";


/*==========================
article header
==========================*/
.topImg {
    position: relative;
}

.main_title {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: var(--primary-white);
    font-size: 4.8rem;
    font-weight: 700;
    line-height: 1em;
}

.notes {
    font-size: 12px;
    margin-left: 14%;
    margin-right: 14%;
    text-align: left;
}

@media screen and (min-width:768px){
   .main_title{
        position: absolute;
        bottom: 20px;
        left: 20px;
        color: var(--primary-white);
        font-size: 6.4rem;
        font-weight: 700;
        line-height: 1em;
    }
    .notes {
    font-size: 12px;
    margin-left: 14%;
    margin-right: 14%;
    text-align: center;
}
}

@media screen and (min-width:1280px){
   .main_title{
        position: absolute;
        bottom: 40px;
        left: 40px;
        color: var(--primary-white);
        font-size: 12.8rem;
        font-weight: 700;
        line-height: 0.9em;
    }
}


/*==========================
fadeIn
==========================*/
.fadeIn {
    transform: translate(0,50px);
    opacity: 0;
    transition: opacity 3s,transform 2s;
}

.fadeIn.active {
    transform: translate(0,0);
    opacity: 1;
}


/*==========================
prologue
==========================*/
.prologue__title{
    position: relative;
    padding-top: 50px;
    padding-bottom: 40px;
    width: 375px;
    margin: 0 auto;
}

.prologue__title p {
    position: relative;
    z-index: 2;
    font-size: 2rem;
    font-weight: 600;
    line-height: 1em;
}
.prologue__title img {
    position: absolute;
    z-index: 1;
    top: 10%;
    left: 68%;
    width: 87px;
}
.prologue_text p {
    font-size: 12px;
    line-height: 2.6em; 
    text-align: left;
}

/* １つめのかたまり */
.prologue_text__first {
    display: flex; 
    justify-content: space-between;
}
.img_prologue__first{
    width: 46%; /* 親要素の幅46%を保つ */
    height: auto; 

}
.first_text{
    padding-top: 20%; 
    margin: 0 auto;
}

/* 2つめのかたまり */
.prologue_text__second{ 
    display: flex;
    margin-top: 30px;
} 

.img_prologue__second{
    width: 50%;
    object-fit: contain;
    /* background-color: #f1bfe4; */
}

.container_Img02{
    flex: 0 0 50%;
    /* background-color: aquamarine; */
}
.second_text{
    padding-top: 25%;
    margin-left: 10%;
}
.palmtree {
    display: block;
    margin-left: auto;
    margin-top: 30%;
    width: 50%;
}

/* 3つめのかたまり */
.prologue_text__last {
    display: flex; 
    margin-top: 30px;
}
.img_prologue__last{
    width: 60%;
    object-fit: contain;
    /* background-color: #ecbf77; */
}
.last_text{
    padding-top: 20%;
    margin:0 auto;
}

.deco_flowers{
    width: 85px;
    height: 25px;
    margin-top: 100px;
}
@media screen and (min-width:768px){
    .prologue_text p {
    font-size: 14px;
    }
}
@media screen and (min-width:1280px){
    .prologue__title{
    position: relative;
    padding-top: 80px;
    padding-bottom: 80px;
    }
   .prologue__title p{
        font-size: 24px;
    }
    .prologue__title img {
    top: 25%;
    left: 75%;
    width: 90px;
    }
    .prologue_text p {
    font-size: 16px;
    }

}

/*==========================
Location
==========================*/
.location_gallery {
    position: relative;
}
.location_gallery::after {
    content: "";
    position: absolute;
    top:25px;
    bottom: 25px;
    width: 0;
    border-left:1px solid var(--primary-bronze);
}

h4 {
    font-size: 20px;
    font-weight: 700;
    line-height: 100%;
    margin-top: 30px;
}
.location_gallery p {
    margin-top: 20px;
}

.location_SP_banner{
    margin-top: 20px;
    margin: 0 auto;
    gap: 10px;
    width: 330px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    
    cursor: pointer;
}

.sp_banner{
    align-items: center;
}

@media screen and (min-width:768px){
    .location_SP_banner{
        margin-top: 30px;
        width: 87%;
        display: grid;
        grid-template-columns: repeat(2 ,1fr);
    }

}

/*==========================
Dress & Attire
==========================*/
.img_dresslist {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 横2列 */
    gap: 10px; /* 画像の間隔調整 */
    max-width: 87%;
    margin: 0 auto;
    margin-top: 15px;
    width: 330px;
}
@media screen and (min-width:768px){
    .img_dresslist{
        grid-template-columns: repeat(4, 1fr); /* 横2列 */
        margin-top: 30px;
        width: 87%;
    }
}

/*==========================
Hair&Makeup
==========================*/
.img_hairMakeList {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 横2列 */
    gap: 10px; /* 画像の間隔調整 */
    /* max-width: 87%; 全体幅制限 */
    margin: 0 auto;
    margin-top: 15px;
    width: 330px;
}

@media screen and (min-width:768px){
    .img_hairMakeList{
        width: 450px;
        margin-top: 30px;
    }
    
}

/*==========================
Pricing & Packages
==========================*/
.btn_price {
    line-height: 1;
    padding: 15px 50px;
    background-color: var(--primary-bronze);
    color: var(--primary-white);
    margin-top: 30px;
    cursor: pointer;
    transition: background-color 0.3s ease; /* 背景色の変化を0.3秒かけて */
}   

.btn_price:hover {
    background-color:#afdbf1;
}

@media screen and (min-width:768px){
.btn_price {
        padding: 15px 70px;
    }
    
}

/*==========================
Photo Gallery
==========================*/

.gallery_container{ 
    /* display: flex; */
    flex-direction: column;
    align-items: center;
    position: relative;
    max-width: 360px;
    width: 100%;
    margin: 0 auto;
}

.btn_gallery{
    line-height: 1;
    padding: 8px 30px;
    background-color: var(--primary-lightPurple);
    font-size: 13px;
    position: absolute;
    right: 0;      /* 右寄せ */
    bottom: 20px;  /* 下から20px */
    /* border: 1px solid var(--primary-navy); */
    cursor: pointer;
    transition: background-color 0.3s ease; /* 背景色の変化を0.3秒かけて */
}
.btn_gallery:hover {
    background-color:#afdbf1;
}

@media screen and (min-width:768px) {
    .gallery_container{ 
    max-width: 700px;
    } 
    .btn_gallery{
    padding: 10px 35px;
    font-size: 16px;
}
}

/*==========================
photographer
==========================*/
.img_AkikoIshino { 
    display: block;
    width: 190px;
    margin: 0 auto;
}

@media screen and (min-width:768px){
    .img_AkikoIshino{
        width: 210px;
        margin-top: 15px;
    }
}
/*==========================
contact us banner
==========================*/
.contact:hover {
    opacity:0.5;
	transition:0.3s;
}

.btn_contactUs_PC { 
    display: none;
}

@media screen and (min-width:768px){
    .btn_contactUs { 
        display: none;
    }
    .btn_contactUs_PC { 
        display: block;
        width: 500px;
        margin: 0 auto;
    }
}



/*==========================
footer
==========================*/
.footer {
    background-color: var(--primary-navy);
    color: var(--primary-white);
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-top: 50px;
    padding: 30px 0;
}

.studioFort_container {
    text-align: center;
}
.studio_fort_en {
    font-size: 2rem;
}
.studio_fort_ja {
    font-size: 1.2rem;
    line-height: 1.2;
}
.footer_logo {
    display: block;
    margin: 0 auto;
    margin-top: 15px;
}

.address_container,
.contact_container{
    padding-top :20px;
    text-align: center;
}

.title_contact_way{
    font-size: 1.2rem;

}
.contact_way img {
    width:16px;
    height: auto;
    margin-left: 6px;
}
.contact_way {
    display: flex;
    justify-content: center;
    margin-top: 8px;
}

.copyright{
    font-size: 8px;
    margin-top: 30px;
}