@charset "UTF-8";

/* --------------
    common
-------------- */
:root {
    --primarydark:#505A5F;
    --primarylightdark:#A1AEB5;
    --secondarydark : #A1A4A6;
}
* {
    padding: 0;
    margin: 0;
    }
html {
    font-size: 62.5%;
}
body  {
    font-family: 
    'Shippori Mincho',
    'Noto Serif JP',
    serif;
    font-style: normal;
    color: var(--primarydark);
    }
a {
    text-decoration: none;
    color: var(--primarydark);
}
a:hover {
    opacity:0.5;
	transition:0.3s;
}
ul, li {
   list-style: none; 
}
img {
    max-width: 100%;
    height: auto;
}

.main {
    padding-top: 105px;
}

.title__sp {
    display: flex;
    padding: 64px 0px 64px 18px;
    gap: 10px;
}
.title__sp h1 {
    color: var(--secondarydark);
    font-size: 2.4rem;
    font-weight: 700;
}
.title__sp h2 {
    color: var(--secondarydark);
    font-size: 2.4rem;
    font-weight: 700;
}
@media screen and (max-width:768px) {
    .br__pc {
        display: none;
    }
}
@media screen and (min-width:769px) {
    .main {
        padding-top: 92px;
    }
    .title__pc {
        padding: 90px 15%;
    }
    .br__sp {
        display: none;
    }      
}

/* view more */
.viewMore__container {
    padding-top: 64px;
    padding-bottom: 100px;
}
.viewMore__container a {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8%;
}
.viewMore__container p {
    font-size: 1.6rem;
    font-weight: 400;
    text-transform: uppercase;
}
@media screen and (min-width:769px) {
    .viewMore__container a { 
        gap: 2%;
    }
    .viewMore__container p {
        font-size: 2rem;
    }
}
/* --------------
    header
-------------- */
.header {
    background-color: white;
    width: 100%;
    height: 80px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
}
.header__inner {
    display: flex;
    justify-content: space-between;
    position: relative;
    height: inherit;
    padding: 0 4.8%;
    align-items: center;
}
.header__logo img {
    width: 168px;
    height: 48px;
}
.header__nav {
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    transform: translateX(100%);
    background-color: #fff;
    transition: ease .3s;

    display: flex;
    justify-content: center;
    align-items: center;
}
.header__hamburger {
    width: 48px;
    height: 80%;
}
.hamburger {
    background-color: transparent;
    border-color: transparent;
    z-index: 9999;
}

.hamburger span {
    width: 100%;
    height: 1px;
    background-color: var(--primarydark);
    position: relative;
    transition: ease .3s;
    display: block;
}
.hamburger span:nth-child(1) {
    top: 0;
}
.hamburger span:nth-child(2) {
    margin: 15px 0;
}
.hamburger span:nth-child(3) {
    top: 0;
}
/* after click */
.header__nav.active {
    transform: translateX(0);
}
.hamburger.active span:nth-child(1) {
    top: 14px;
    transform: rotate(45deg);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    top: -19px;
    transform: rotate(-45deg);
}

.nav__items a {
    color: var(--secondarydark);
    display: block;
    font-size: 2.4rem;
    font-weight: 700;
}

.nav__items__click {
    opacity:0.5;
    display: block;
    font-size: 2.4rem;
    font-weight: 700;
}
.nav__items {
    margin-top: 60px;
}
.nav__items:first-child {
    margin-top: 0px;
}

@media screen and (min-width:769px) {
    .header {
        height: 92px;
    }
    .header__inner {
        padding: 28px 10%;
        display: flex;
    }
    .header__logo {
        width: 273px;
    }
    .header__logo img {
    width: 192px;
    height: 48px;
    }
    .header__nav {
        position: static;
        transform: initial;
        background-color: inherit;
        height: inherit;
        justify-content: right;
    }
    .nav__list {
        display: flex;
        align-items: center;
        height: initial;
    } 
    .nav__items {
        margin-top: 0;
        margin-left: 36px;
    }
    .nav__items a {
    font-size: 1.8rem;
    }
    .hamburger {
        display: none;
    }   
}
/* --------------
    footer
-------------- */
.footer {
    display: flex;
    padding: 40px 0;
    flex-direction: column;
    align-items: center;
    gap: 42px;
    background-color: #FAFBFC;
}
.footer__logo img {
    width: auto;
    height: 32px;
}
.footer__info {
    display: flex;
    gap: 8px;
    color: var(--primarydark);
    font-size: 1.2rem;
    font-weight: 400;
    justify-content: center;
    align-items: center;
}
.footer__info p {
    white-space: nowrap;
}
.footer__infoImg {
    width: 120px;
}
.copyright {
    color: var(--primarydark);
    font-size: 1rem;
    font-weight: 400;
}

@media screen and (min-width:769px) {
    .footer {
        gap: 56px;
        padding: 48px 0;
    }
    .footer__infoImg {
        width: 56%;
    }
    .footer__info {
        font-size: 1.4rem;
    }
    .footer__infoImg {
        margin-top: 4px;
        width: 148px;
    }
}

