@charset "UST-8";
body{
    background-color: rgb(255, 255, 255);
    width: 100vw;
    margin:auto;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    
}


/* ページ全体 */
#page{
    width: 1400px;
    /*本当は1300pxだよ*/
    margin: 0 auto;
}


   


/* メイン */
main{
    height: auto;
    padding-top: 0px;
    position: relative;
}
main .inner {
    height: 1000px;
    margin: 50px auto;
}

/* ホーム */

.home{
    font-family: 'Kiwi Maru', serif;
}

.home h3{
        color: #7f6666;
        font-family: 'Kiwi Maru', serif;
        font-size: 22px;
        position: relative;
        display: inline-block;
          padding: 0 60px;
          text-align: left;
}

.home h3:before,
.home h3:after {
  position: absolute;
  top: calc(50% - 3px);
  width: 28px;
  height: 8px;
  content: '';
  border-top: solid 2px #7f6666;
  border-bottom: solid 2px #7f6666;
}

.home h3:before {
  left: 0;
}

.home h3:after {
  right: 0;
}


.home h2{
    color: #AF815F;
    font-size: 22px;
    z-index: 10;
    padding: 1rem 1rem;
  border-left: 5px dashed #AF815F;
}

.home  h1{
    color: #AF815F;
    font-size: 30px;
  padding: 1rem 2rem 1rem;
  border-bottom: 6px double #AF815F;
  background: #ffffff;
    
}

.home  li{
    
    padding: 0.1em 0;
    list-style-position: inside;
}



.home p{
        color: #433131;
        top:220px;
        left:250px;
        font-size:17px;
        font-family: 'Kiwi Maru', serif;
        }


/*タイトル部分*/

.home main .visual {
background-image: url(../images/main.png);
background-repeat: no-repeat;
background-position-x: center;
background-size: 100%;
    height: 550px;
    padding: 200px 50px 50px;
    box-sizing: border-box;
}
.home main .visual p {
    color: #7f6666;
}
.home main .visual p.catch {
    font-size: 45px;
}
.home main section {
    display: flex;
    margin-top: 50px;
}
.home main section div {
    padding: 0 40px 0 0;
}
.home main section:first-child {
    flex-direction: row-reverse;
}
.home main section:first-child div {
    padding: 0 0 0 40px;
}

.home main p {
    margin: 0 0 15px;
    text-align: left;
    font-family: 'Kiwi Maru', serif;
}

.home .inner1 {
    width: 95%;
    text-align: left;
    margin-top: 50px;
    margin: 50px; 
}

.home .inner2{
    position: left;
    width: 95%;
    height: auto;
    margin: 50px; 
}

.home .inner3 {
    width: 95%;
    text-align: left;
    margin: 50px; 
}

.home .inner4 {
    width: 95%;
    text-align: left;
    margin: 50px;   

}

.home .inner5 {
    width: 95%;
    text-align: left;
     margin: 50px; 

}


.home .inner6 {
    width: 100%;
    text-align: left;
    margin: 50px; 
    
}

    /* ふっだー */

footer {
    background: #EFE4E4;
 width: 100%;
 height: 60px; 
display: flex;
 align-items: center;
justify-content: center;
position:relative;
margin-top: auto;
}


/*トップに戻るボタン*/
html{
    scroll-behavior: smooth;
}
.gotop{
    display: block;
    width: 90px;
    height: 90px;
    box-shadow: 0px 0px 15px #707070;
    box-sizing: border-box;
    border-radius: 50%;
    background: #FFF;
    border: 1px solid rgb(196, 196, 196);
    padding-top: 40px;
    text-align: center;
    letter-spacing: -1px;
    font-size: 95%;
    text-decoration: none;
    color: #707070;
    opacity: 0.8;
    position: fixed;
    bottom: 60px;
    right: 60px;
    z-index: 10000;
}
.gotop::before{
    content: "";
    display: block;
    border-top: 2px solid #707070;
    border-right: 2px solid #707070;
    width: 25%;
    height: 25%;
    top: 25%;
    left: 0;
    right: 0;
    margin: auto;
    position: absolute;
    transform: rotate(-45deg);
}
.gotop:hover{
    opacity: 1;
}
