@charset "UTF-8";
/*＝＝＝全体設定＝＝＝*/
html {
    font-size: 100%
}
body {
    color: #000
}

/*＝＝＝共通部分＝＝＝*/

.container {
    font-family: "Ancizar Serif", serif;
    font-optical-sizing: auto;
    font-weight: bold;
    font-style: normal;

    overflow: auto;
    scroll-snap-type: y mandatory;
    height: 100vh;
}
p {
    line-height: 1.7;
}
section {
    height: 100vh;
    scroll-snap-align: start;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}
.title {
    padding: 2rem;
    text-align: center;
}

/*＝＝＝個別section＝＝＝*/
.intro {
    background-color: #ffd1da;
    text-align: center;
    padding-top: 30vh;
    font-size: 2rem;
}
.item {
    background-color: #fff3d1;
    padding-top: 20px;
    text-align: center;
    font-size: 2rem;
}
.images {
    display: flex;
    justify-content: center;
    margin: 20px auto;
    text-align: center;
}
.images img {
    width: 300px;
    margin: 20px;
}
.left {
    border-radius: 50%;
}
.center {
    border-radius: 40%;
}
.right {
    border-radius: 30%;

}
.spec {
    background-color: #d0e39b;
    position: relative;
    padding-top: 20vh;
    font-size: 2rem
}
.spec img {
    width: 400px;
    object-position: right center;
    border-radius: 30%;
    position: absolute;
    top: 50%;
    right:50px;
    transform: translateY(-50%);
}
.spec p {
    padding-left: 2rem;
}
.link {
    background-color: #fecf8d;
    text-align: center;
    padding-top: 10vh;
    font-size: 2rem;
}
.btn {
    background:#555;
    font-size: 1.5rem;
    color: #fff;
    padding: 1rem 3.5rem;
    border-radius:5px;
    display: inline-block;
    margin: 2rem 0.25rem;
}
.btn:hover {
    background: #777;
}
.contact-site {
    display: flex;
    justify-content: center;
    list-style: none;
}
.contact-site a {
    background: #fff;
    width: 8rem;
    display: inline-block;
    margin:1rem;
    border-radius: 50%;
    font-size:5rem;
    padding: 1rem 1rem 1rem 1rem;
    color: #555;
}
.contact-site a:hover {
    background: rgba(255,255,255,.5);
}
.last-section {
    position: relative;
}
.copy-right {
    background-color: #432;
    position: fixed;
    bottom: 0;
    width: 100%;
    text-align: center;
    padding: 10px 0;
    font-size: 16px;
    color: #fff;
}