@charset "UTF-8";

body{
    color: #64495E;
    font-family: "Kaisei HarunoUmi", serif;
    font-weight: 400;
    font-style: normal;

}

a{
    text-decoration: none;
}
a:hover{    /*ボタンに触れた後*/
    opacity: .8;    /*透明度・薄くなる*/
    text-decoration: underline;     /*下線がなくなる*/
}

/*授業作品としての表記*/
.note{
    margin: 2rem auto;
    padding: 1rem;
    background-color: #D44D4D;
    color: #fff;
    text-align: center;
    border-radius: .5rem;
    max-width: 900px;
}

/*親要素*/

.container{
    overflow: auto;
    /*scroll-snap-type: y proximity;*/
    height: 100vh;
}

/*フッター*/
.page-footer{
    background-color: #F2EAD6;
    color: #64495E;
    text-align: center;
    padding: 1rem;
}

/*共通のCSS*/

.cta-btn{
    position: fixed;  /*ブラウザ画面に対して固定する。スクロールしない*/
    right: .5em;  /*右から*/
    bottom: 8em;    /*下から*/
    opacity: 0.9; /*透明度*/
}

.gotoTop{
    display: block;
    /*text-decoration: none;*/
    position: fixed;
    right: .5em;
    bottom: .2em;
    opacity: 0.9;
}

.cta-btn img,
.gotoTop img{
    width: 7.5em;
}

section{
    position: relative;
    height: 100vh;
    /*scroll-snap-align: start;*/

    background-size: cover;
    height: 100vh;
    background-repeat: no-repeat;
    background-position: 50% 50%;
}

.section-footer{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
}

.btn{
    display: inline-block;
    background-color: #BA7D8A;
    color: #fff;
    border-radius: 6px;
    padding: 1rem 3.5rem;
    margin: 2rem 0 2.25rem;
    transition: .5s ease-out;
}

.btn:hover{
    text-decoration: none;
    background-color: #973e97;
}

.first .title{
    font-size: 56px;
    padding-top: 50px;
}

h4{
    margin-bottom: 1rem;
    font-size: 20px;
}

.first p{
    font-size: 20px;
}

.first{
    width: 490px;
    height: 280px;
    background-color: rgba(255,255,255, 0.7);
    outline: 2px solid #64495E; /* 枠線の太さ、種類、色を指定 */
    outline-offset: -20px;
}

.btn1{
    width: 450px;
    height: 80px;
    border-radius: 40px;
    background: #BA7D8A;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 25px;
    /* 5.クリックできることを示すためのカーソルポインターを設定 */
    cursor: pointer;
    margin-top: 50px;
    margin-left: 12px;
}

h2{
    font-size: 45px;
}

/*concept*/

.concept{
    background-color: #EBE3E5;
    height: 580px;
}

.concept h5{
    font-size: 25px;
}

.wrapper{
    /*max-width: 900px;*/
    width: 75%;
    margin: 0 auto;
    padding-top: 130px;
}

.row{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 80px;
}

.contact p{
    text-align: center;
}

.address{
    margin-bottom: 7px;
    line-height: 1.3;
}

.concept-img{
    padding-left: 20px;
    padding-top: 0px;
}

/*product*/

.product{
    background: #F2EAD6;
    outline: 3px solid #64495E; /* 枠線の太さ、種類、色を指定 */
    outline-offset: -50px;
    height: 2000px;
}

.product h2{
    text-align: center;
}

.product-t h5{
    padding-bottom: 70px;
    text-align: center;
    font-size: 25px;
}

.product .wrapper{
    padding-top: 100px;
    width: 85%;
}

.product-img{
    padding-right: 20px;
}

h3{
    font-size: 35px;
}

h5{
    font-size: 20px;
    padding-bottom: 15px;
}

p{
    font-size: 16px;
}

.product .btn1{
    margin: 20px auto 80px;
}

/*use*/

.use{
    background: #EBE3E5;
    height: 660px;
}

.use h2{
    padding-top: 60px;
    margin-bottom: 40px;
    text-align: center;
}

.use-img{
    height: 300px;
    width: 300px;
    margin-bottom: 15px;
}

.use-text{
    margin-left: 40px;
}

.use .wrapper{
    width: 80%;
    padding-top: 0px;
}

/*contact*/

.logo h1{
    font-size: 40px;
}

.logo{
    margin: 20px auto;
}

.contact-sns{
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.contact-sns a{
    background-color: #F2EAD6;
    color: #BA7D8A;
    width: 3.75rem;
    height: 3.75rem;
    border-radius: 50%;
    margin: 0.5rem;
    font-size: 2rem;

    /*アイコンの位置を中央に*/
    /*padding: .75rem 0 0 .125rem;*/
    display: flex;
    justify-content: center;
    align-items: center;
}

/*個別のCSS*/
.hero{
    /*background-color: aqua;*/
    background-image: url(../image/first\ view\ _pc.png);
    background-position: 100%;
    text-align: center;
    padding: 30vh 10vh;
}

.contact{
    /*background-color: darkorange;*/
    background-image: url(../image/contact_s.png);
    text-align: center;
    padding-top: 12vh;
}