@charset "UTF-8";

*{
    margin: 0 ;
    padding: 0;
    line-height: 1;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    color: #555;
    background-image: radial-gradient(at 0% 0%,#efb5e9, transparent 50%),
    radial-gradient(at 50% 50%,#a3eabe, transparent 50%),
    radial-gradient(at 50% 0%,#7ccbe8,transparent 50%),
    radial-gradient(at 0% 100%, #f4f2b5,transparent 50%);
    background-attachment: fixed;
    animation: gradation 5s infinite ;
    background-size: 200% 200%;
    }
    @keyframes gradation {
    0%{background-position: 0% 0%;}
    25%{background-position: 50% 100%;}
    50%{background-position: 100% 0%;}
    75%{background-position: 50% 50%;}
    100%{background-position: 0% 0%;}
    
}
ul {
    list-style: none;
}
a {
    text-decoration: none;
}
img{
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}
main {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 20px;
}
.header_inner{
    display: flex;
    flex-direction: row-reverse;
}
header .logo{    
    flex: 2;
}
header .logo h1{
padding-top: 200px;
    text-align: center;
    font-size: 28px; 
    font-family: "Angkor", serif;
    }
header .logo h1 span{
    display: block;
    font-size: 16px;
    padding: 10px 0;
    &.new{
        font-size: 40px;
        font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif ;
        color: #ffffff;
        margin-bottom: 20px;
    }
}
header .logo p{
    padding: 20px 60px;
    text-align: center;
    line-height: 2;
    font-family: 'Josefin Slab', serif;
}
header .main_visual{
    flex: 5;
}
header .slider li{
    height: calc(100vh - 50px); 
}
header .slider li img{
    object-fit: cover;
    width: 100%;
    height: 100%;
    object-position: center;
    border-radius: 0 0 0 50%
    ;
}
.nav_pc{
    position: sticky;
    top: 0;
    left: 0;
    /* background-color: #efb5e9; */
    z-index: 1;
}
.nav_pc .nav_inner{
    display: flex;
    justify-content: flex-end;
}
.nav_inner a{
    display: block;
    padding: 0 40px;
    line-height: 50px;
    color: #444;
    font-weight: bold;
    letter-spacing: .1em;  
    font-family: 'Josefin Slab', serif;
    transition: .3s;
} 
.nav_pc .nav_inner a:hover{
    color: #fff;   
}
.nav_sp{
    display: none;
}
h2{
    font-size: 40px;
    padding: 20px 0 40px;
    text-align: center;
    font-family: 'Josefin Slab', serif;
}
.message{
    padding: 30px 0;
    margin-bottom: 50px;
}
.message p{
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 30px 0;
    line-height: 1.7;
    letter-spacing: 0.07em;
}
.item{
    padding-bottom: 100px;
}

.item h3{
    padding: 15px 8px 10px;
    font-family: 'Josefin Slab', serif;
}
.item ul{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
    grid-gap: 100px 50px;
}
.item ul li .photo{
    aspect-ratio: 2/2.5;
}
.item ul li .photo img{
    border-radius: 10px;
    object-fit: cover;
    width: 100%;
    height: 100%;
    object-position: center;
}
footer{
    background-color: #f3bdf6;
}
footer p{
    padding: 50px 0;
    text-align: center;
    font-size: 14px;
}
#top a{
    display: none;
    position: fixed;
    right: 4%;
    bottom: 4%;
    width: 60px;
    height: 60px;
    font-size: 14px;
    border-radius: 50%;
    text-align: center;
    line-height: 60px;
    background-color: #fc64c2;
    color: #fff;
    cursor: pointer;
}
@media (max-width:768px){
html {
    scroll-behavior: auto;
}
.header_inner{
    display: block;
}
header .logo h1{
    padding-top: 30px;
}
header .logo h1 span{
    padding: 5px 0;
}
header .logo p{
    padding: 20px 30px;
    line-height: 1.5;
}
header .slider li{
    height:40vh; 
}
#burger{
    position: fixed;
    width: 44px;
    height: 44px;
    background-color: #fc64c2;
    border-radius: 50%;
    right: 2%;
    top: 2%;
    cursor: pointer;
    z-index: 2;
}
#burger span{
    position: absolute;
    width: 60%;
    height: 3px;
    background-color: #fff;
    border-radius: 5px;
    inset: 0;
    margin: auto;
    transition: .3s;
}
#burger span:nth-child(1){
    background-color: #fff; 
    top: -38%;
}
#burger span:nth-child(3){
    background-color: #fff; 
    top: 38%;
}
#burger.active{
    background-color: rgb(255, 255, 255);
}
#burger.active span:nth-child(1){
    top: 10%;
    background-color: #fc64c2;
}
#burger.active span:nth-child(2){
    opacity: 0;
}
#burger.active span:nth-child(3){
    top: -10%;
    background-color: #fc64c2;
}
.nav_sp{
    display: block;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 100%;
    background-color: #efb5e9ea;
    transition: .3s;
    z-index: 1;
}
.nav_sp .nav_inner{
    padding-top: 100px;
    }
.nav_sp .nav_inner a{
    display: block;
    text-align: center;
    line-height: 80px;
    font-size: 24px;
    color: #fff;
    font-weight: bold;
    letter-spacing: .1em;
    font-family: 'Josefin Slab', serif;
}
.nav_sp.drawer{
    left:0;
}
.nav_pc{
    display: none;
}
.message{
    margin-bottom: 10px;
}
    .message h2{
    font-size: 25px;
}
.message p{
    padding: 15px 10px;
}
.item ul li .photo{
    aspect-ratio: 2/2.2;
}
#top a{
    display: none !important;
}
}