@charset "UTF-8";


* {
    box-sizing: border-box;
}

body {
    font-family: "Kiwi Maru", serif;
    font-size: 16px;
    line-height: 1.5;
    color: #1d1d1d;
    background-color: #ffffff;
}

img{
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: #000;
}

.header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    }


h2{
    color: #ffffff;
    font-size: larger;
}

.nav-list {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.main-visual{
    background-image: url(img/sakura.jpg);
    opacity: 0.5;
    height: 300px;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}

.text{
    background-color: #50363692;
    color: #010000c9;
    text-align: center;
    padding-top: 30px;
    padding-bottom: 30px;
}

h3{
    text-align: center;
    padding-top: 30px;
    padding-bottom: 40px;
    font-size: large;
}


.photo_list{
    display: flex;
    justify-content:center;
    padding-bottom: 30px;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    text-align: center;
}

.photo_list li{
    width: 30%;
}

.about{
    margin-top: 0;
    margin: 0;
    background-color: #73585848;
    padding-bottom: 30px;
}


.about_item{
    display: flex;
    /* padding-left: 20%; */
    justify-content: center;
    align-items: center;
}

.p{
    padding-left: 7%;
    /* padding-top: 3%; */
}

.item1{
    /* max-width: 60%; */
    width: 15%;
    height: auto;
    /* margin-left: 20px; */
}



footer{
    background-color: #50363692;
    /* text-align: center; */
}

.bun{
    color: #010000c9;
    padding-left: 90%;
}

.img_all{
    text-align: center;
}
.img_item{
    width: 50px;
    filter: brightness(0) saturate(100%) invert(6%) sepia(35%) saturate(472%) hue-rotate(314deg) brightness(96%) contrast(94%);
    padding: 30px 0 20px 0;
}

html {
    scroll-behavior: smooth;
}
.pagetop {
    height: 50px;
    width: 50px;
    position: fixed;
    right: 30px;
    bottom: 30px;
    background: #fff;
    border: solid 2px #000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.pagetop__arrow {
    height: 10px;
    width: 10px;
    border-top: 3px solid #000;
    border-right: 3px solid #000;
    transform: translateY(20%) rotate(-45deg);
}


@media screen and (max-width:768px) {
    .item1{
    /* max-width: 60%; */
    width: 40%;
    height: auto;
    padding-left: 20px;
}
}