@charset "UFT-8";

/* memo
text-align: justify; 両端揃え
--------------------------------------------------------- */

/* 共通 
--------------------------------------------------------- */
html{
    font-size: 100%;
    overflow-y: scroll;
    scroll-behavior: smooth;
}
body{
    font-family: 'Nunito Sans', sans-serif;
}

a{
    text-decoration: none;
    transition: .3s;
}
a:hover {
	text-decoration: none;
    opacity: 0.5;
}
.wrap {
	width: 1000px;
	margin: 0 auto;
}

/* Header
--------------------------------------------------------- */
.page-header{
    background-color: #fff;
}
.header-wrap{
    display: flex;
    justify-content: space-between;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 4%;
}
.page-header h1{
    margin-top: 1rem;
}
.main-nav{
    margin-top: 2.2rem;
    display: flex;
    font-size: 1rem;
    list-style: none;
}
.main-nav li{
    margin-left: 30px;
}
.main-nav a{
    color: #000;
}

/* Contact
--------------------------------------------------------- */
#contact{
    position: fixed; /* 要素の位置を固定する */
    bottom: 1.2rem; /* 基準の位置を画面の一番下に指定する */
    right: 1.2rem; /* 基準の位置を画面の一番右に指定する */
}


/*top-copy
--------------------------------------------------------- */
#top-copy{
    background: url(../images/saigaiha_pattern.svg) repeat;
    background-color: #ce2e41;
    margin-top: -30px;
    text-align: center;
    padding-top: 50px;
    padding-bottom: 50px;
    display: flex;
}
#top-copy h1{
    font-weight: bold;
    font-style: italic;
    font-size: 3rem;
    color: #fff;
    margin-bottom: 1rem;
}
#top-copy p{

    font-size: 1.4rem;
}
#top-copy a{
    color: #fff;
}

/*top-about
--------------------------------------------------------- */
#top-about{
    margin-top: 4rem;
    margin-bottom: 4rem;
}
.copy-wrap{
    max-width: 1000px;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    padding: 0 4%;
}
#top-about h1{
    text-align: center;
}

#top-about p{
    margin-top: 1.4rem;
    line-height: 1.6rem;
}
#top-about article{
    width: 45%;
}

/* footer
--------------------------------------------------------- */
.page-footer{
    background-color: #efefef;
    padding-top: 30px;
    padding-bottom: 30px;
}
.footer-wrap{
    display: flex;
    justify-content: space-between;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 4%;
}
.page-footer p{
    font-size: 0.8rem;
}
.footer_sns{
    margin-top: 2.5rem;
}
.footer_sns img{
    margin-left: 5px;
}
#copylight{
    padding: 5px 0;
    text-align: center;
    background-color: #4c4c4c;
}
#copylight p{
    font-size: 0.6rem;
    color: #fff;
}

/* パンクズリスト
--------------------------------------------------------- */
.breadcrumb {
    padding: 0 .5rem;
}
.breadcrumb ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
}  
.breadcrumb li:not(:last-child)::after {
    display: inline-block;
    margin: 0 .5rem;
    content: ">";
}
#list{
    background-color: #ce2e41;
    color: #fff;
    line-height: 1.7rem;
    font-size: 0.9rem
}

#list a{
    color: #fff;
}

/* Menu
--------------------------------------------------------- */
#menu{
    padding: 1.5rem 0;
    display: flex;
    background-color: #efefef;
}
#menu h1{
    text-align: center;
    font-size: 3rem;
    font-style: italic;
    font-weight: 300;
    color: #ce2e41;
}
.menu-link{
/*    background-color: #fff;*/
    padding: 1rem 0;
}
.menu-nav{
    display: flex;
    font-size: 1rem;
    list-style: none;
    justify-content: center;
    
}
.menu-nav li{
    margin: 0 2rem;
}
.menu-nav a{
    color: #000;
}
