@charset "utf-8";

/*
base style
*/
body {
  font-family: "Noto Sans JP",
                "Helvetica Neue", 
                "Helvetica", 
                "Hiragino Sans", 
                "Hiragino Kaku Gothic ProN", 
                "Arial", 
                "Yu Gothic", 
                "Meiryo", 
                sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  background-color: #FDFDFD;
  letter-spacing: 0.25em;
}

/* 
Header
*/
.header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 74px;
    /* background-color: #FDFDFD; */
    background-color: transparent;
}

.header-logo {
    margin: 0;    
}

path {
    transition: fill .24s;
}

.header-logo:hover path{
    fill: #FFB547;
}

.header-navlist {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
}

.header-navitem > a {
    display: inline-block;
    font-size: 18px;
    color: #2a2a2a;
    text-decoration: none;
    padding: 0.25em 24px;
    transition: border-color .25s;
}

.header-navitem > a:hover {
    border-bottom: 2px solid #FFB547;
} 

@media screen and (max-width: 768px) {
    .header {
        padding: 10px 0;
    }

    .header-logo svg {
        width: 160px;
        height: 50px;
    }
    
    .header-navitem > a {
        font-size: 12px;
    }
}

/* 
section
*/
.section {
    display: block;
    text-align: center;
    height: auto;
    margin: 0;
    padding: 6em 0;
    color: #0b0b0b;
}

.section-headline{
    letter-spacing: 8px;
    font-weight: bold;
    margin: 0 0 4px;
}

.section-subtitle {
    letter-spacing: 4px;
    font-weight: normal;
    margin: 4px 0 40px;
}

@media screen and (max-width: 768px) {


    .section-headline{
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 12px;
    }
}

/*
button
*/
button {
    background: transparent;
    border: none;
    padding: 0 60px;
}

/* 
footer
*/

.footer {
    height: auto;
    background-color: #FFEDB5;
    color: #505050;
    padding: 10px;
}

.footer-title {
    padding-top: 60px;
    padding-left: 120px;
    width: fit-content;
    letter-spacing: 0.25em;
}

.footer-list {
    padding-left: 120px;
    list-style-type: none;
    font-size: 16px;
}

.footer-list > li {
    
    padding: 5px 0;
    display: block;
    font-size: 12px;
    letter-spacing: 0.25em;
    justify-content: center;
}

.footer-list a {
    text-decoration: none;
    color: #505050;
    transition: border-color .25s;
}

.footer-list a:hover {
    text-decoration: underline solid #505050;
}

