@charset "UTF-8";

:root {
    --font-color: #676767;
    --main-color: #012951;
    --white-color: #ECF1F5;
    --color1: #A67662;
    --color2: #CBA429;
}

html {
    font-family: "meiryo", sans-serif;
    font-size: 12px;
    background-color: var(--main-color);
}

h1 {
    font-family: "allura", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 24px;
    text-align: center;
}
p {
    color: var(--font-color);
}
small {
    font-size: 8px;
}

.wrapper {
    width: 90%;
    margin: 0 auto 14px;
    padding: 20px 19px 30px;
    background-color: var(--white-color);
    overflow: hidden;
}

/*transition Animation*/
.transition-page {
    position: fixed;
    display: flex;
    justify-content: center;
    width: 100vw;
    height: 100vh;
    background-color: #CBA429;
    z-index: 9999;
}
.transition-page div {
    margin: auto 0.1em;
    font-family: "allura", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 3em;
}
.transition-page div {
    animation: loading-moveup 2s ease-in-out infinite;
    -webkit-animation: loading-moveup 2s ease-in-out infinite;
    -o-animation: loading-moveup 2s ease-in-out infinite;
    -moz-animation: loading-moveup 2s ease-in-out infinite;
}
.transition-page div:nth-child(2) {
    animation-delay: .1s;
    -webkit-animation-delay: .1s;
    -moz-animation-delay: .1s;
    -o-animation-delay: .1s;
}
.transition-page div:nth-child(3) {
    animation-delay: .2s;
    -webkit-animation-delay: .2s;
    -moz-animation-delay: .2s;
    -o-animation-delay: .2s;
}
.transition-page div:nth-child(4) {
    animation-delay: .3s;
    -webkit-animation-delay: .3s;
    -moz-animation-delay: .3s;
    -o-animation-delay: .3s;
}
.transition-page div:nth-child(5) {
    animation-delay: .4s;
    -webkit-animation-delay: .4s;
    -moz-animation-delay: .4s;
    -o-animation-delay: .4s;
}
.transition-page div:nth-child(6) {
    animation-delay: .5s;
    -webkit-animation-delay: .5s;
    -moz-animation-delay: .5s;
    -o-animation-delay: .5s;
}
.transition-page div:nth-child(7) {
    animation-delay: .6s;
    -webkit-animation-delay: .6s;
    -moz-animation-delay: .6s;
    -o-animation-delay: .6s;
}
.transition-page div:nth-child(8) {
    animation-delay: .7s;
    -webkit-animation-delay: .7s;
    -moz-animation-delay: .7s;
    -o-animation-delay: .7s;
}
.transition-page div:nth-child(9) {
    animation-delay: .8s;
    -webkit-animation-delay: .8s;
    -moz-animation-delay: .8s;
    -o-animation-delay: .8s;
}
.transition-page div:nth-child(10) {
    animation-delay: .9s;
    -webkit-animation-delay: .9s;
    -moz-animation-delay: .9s;
    -o-animation-delay: .9s;
}
@keyframes loading-moveup {
    0% { 
        transform: translateY(0);
    }
    20% {
        transform: translateY(-50%);
    }
    50% {
        transform: translateY(25%);
    }
    60% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(0);
    }
}
@-webkit-keyframes loading-moveup {
    0% { 
        -webkit-transform: translateY(0);
    }
    20% {
        -webkit-transform: translateY(-50%);
    }
    50% {
        -webkit-transform: translateY(25%);
    }
    60% {
        -webkit-transform: translateY(0);
    }
    100% {
        -webkit-transform: translateY(0);
    }
}
@-moz-keyframes loading-moveup {
    0% { 
        -moz-transform: translateY(0);
    }
    20% {
        -moz-transform: translateY(-50%);
    }
    50% {
        -moz-transform: translateY(25%);
    }
    60% {
        -moz-transform: translateY(0);
    }
    100% {
        -moz-transform: translateY(0);
    }
}
@-o-keyframes loading-moveup {
    0% { 
        -o-transform: translateY(0);
    }
    20% {
        -o-transform: translateY(-50%);
    }
    50% {
        -o-transform: translateY(25%);
    }
    60% {
        -o-transform: translateY(0);
    }
    100% {
        -o-transform: translateY(0);
    }
}
.fadeout {
    animation: fadeout-animation 2s ease-out forwards;
    -webkit-animation: fadeout-animation 2s ease-out forwards;
    -moz-animation: fadeout-animation 2s ease-out forwards;
    -o-animation: fadeout-animation 2s ease-out forwards;
}

@keyframes fadeout-animation {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        transform: scale(120%);
        display: none;
    }
}
@-webkit-keyframes  fadeout-animation {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: scale(120%);
        display: none;
    }
}
@-moz-keyframes  fadeout-animation {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        -moz-transform: scale(120%);
    }
}
@-o-keyframes  fadeout-animation {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        -o-transform: scale(120%);
    }
}


/*header CSS*/
#header {
    width: 100vw;
    height: 60px;
    background-color: var(--color2);
}
.header-content {
    padding: 15px 0;
}
.nav-menu {
    display: none;
}
div.logo {
    text-align: center;
}
#header .logo img{
    height: 30px;
    width: auto;
}
.hamburger-menu {
    height: 32px;
    width: 32px;
    position: fixed;
    top: 13px;
    right: 19px;
}
.hamburger-menu span {
    height: 1px;
    width: 100%;
    background-color: var(--white-color);
    position: absolute;
}
.hamburger-menu span:nth-child(1){
    top: 25%;
}
.hamburger-menu span:nth-child(2){
    top: 50%;
}
.hamburger-menu span:nth-child(3){
    top: 75%
}

/*home-hero CSS*/
.home-hero {
    display: flex;
    justify-content: center;
    width: 100vw;
    height: 500px;
    background-image: url(images/home-hero.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.hero-mask {
    text-align: center;
    background-color: rgba(255, 255, 255, .7);
    width: 300px;
    height: 300px;
    margin: auto 0;
    padding-top: 70px;
}
.home-mask img{
    height: auto;
}
.hero-mask img:nth-child(1){
    width: 186px;
}
.hero-mask img:nth-child(3){
    width: 65px;
    margin-bottom: -8px;
}
.hero-mask img:nth-child(5){
    width: 240px;
}
svg {
    width: 64%;
    height: auto;
}

.st0 {
    fill: none;
    stroke: #fff;
    stroke-width: 6;
    stroke-miterlimit: 10;
}

/*content CSS*/
.title {
    text-align: center;
    margin-bottom: 40px;
    margin-top: 0px;
}
.content-text {
    line-height: 2em;
}

/*concept*/
#concept {
    margin-bottom: 40px;
}
.concept-content img {
    width: 100%;
    height: auto;
    margin-bottom: 11px;
}
.flex-box {
    display: block;
    margin-bottom: 34px;
}

/*products CSS*/
#products .title {
    margin-bottom: 31px;
}
#products {
    margin-bottom: 25px;
}
.products-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 26px;
}
.item {
    width: 32%;
    height: auto;
    margin-bottom: 3px;
}
.item img {
    width: 100%;
    margin-bottom: 24px;
}
.item img:last-of-type {
    display: none;
}
.item-image {
    width: 100%;
    height: 20%;
}
.item-name {
    font-size: 10px;
    text-align: center;
}
.show-more {
    text-align: right;
    font-size: 10px;
}

/*Access CSS*/
#access .title {
    margin-bottom: 32px;
}
#access .flex-box {
    margin-bottom: 22px;
}
table.address-data {
    color: var(--font-color);
    line-height: 2em;
    margin-bottom: 27px;
}
.address tr {
    line-height: 1.9em;
}
.address-data td:nth-child(1) {
    width: 28%;
}
.address-data td:nth-child(2) {
    width: 75%;
}
.map iframe {
    width: 100%;
    height: 384px;
}

/*contact CSS*/
#contact {
    line-height: 2em;
}
#contact .title {
    margin-bottom: 24px;
}
.text-notion {
    margin-bottom: 17px;
}
#contact form {
    margin: 0 auto;
}
input {
    border: 1px solid var(--font-color);
    width: 180px;
    background-color: #fff;
    font-size: 16px;
    line-height: 1.1em;
}
.form-item {
    margin-bottom: 6px;
}
.form-item span {
    font-size: 10px;
    display: inline-block;
    width: 106px;
    vertical-align: top;
}
#contact input[name="content"] {
    height: 150px;
    margin-bottom: 26px;
}
#contact input[type="submit"] {
    width: 50px;
    height: 20px;
    border-radius: 5px;
    background-color: #D9D9D9;
    margin: 0 auto;
    display: block;
    font-size: 10px;
}

/*footer CSS*/
.footer-content p {
    color: var(--white-color);
    text-align: center;
    font-size: 10px;
}
button.top-btn {
    display: block;
    width: 70px;
    height: 20px;
    border: 1px solid #676767;
    background-color: #D9D9D9;
    border-radius: 5px;
    font-size: 10px;
    margin: 0 auto 13px;
}
.nav-menu {
    display: none;
}
.sns-text {
    margin-bottom: 19px;
}
.fa-instagram {
    margin-left: 10px;
    margin-top: 3px;
    font-size: 20px;
    color: var(--white-color);
}
.footer-logo {
    text-align: center;
    margin-bottom: 1px;
}
.footer-logo img {
    width: 142px;
    height: auto;
    margin: 0 auto 5px;
}
.copy-right {
    margin-bottom: 25px;
}

/*scroll animation*/
.scroll-animation {
    opacity: 0;
}
.scroll-in {
    opacity: 1;
    transition: all 2s;
    -webkit-transition: all 2s;
    -moz-transition: all 2s;
    -o-transition: all 2s;
}
#concept img.scroll-animation {
    transform:translateX(-50%);
    -webkit-transform:translateX(-50%);
    -moz-transform:translateX(-50%);
    -o-transform:translateX(-50%);
}
#concept .reverse img.scroll-animation {
    transform: translateX(50%);
    -webkit-transform: translateX(50%);
    -moz-transform: translateX(50%);
    -o-transform: translateX(50%);
}
#concept .reverse img.scroll-in, #concept img.scroll-in {
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -o-transform: translateX(0);
}
#products img.scroll-animation {
    transform: rotateY(30deg);
    -webkit-transform: rotateY(30deg);
    -moz-transform: rotateY(30deg);
    -o-transform: rotateY(30deg);
}
#products img.scroll-in {
    transform: rotateY(0);
    -webkit-transform: rotateY(0);
    -moz-transform: rotateY(0);
    -o-transform: rotateY(0);
}


@media (min-width:600px) {
/*tabletsize*/
html {
    font-size: 14px;
}
h1 {
    font-size: 48px;
}
.wrapper {
    padding: 47px 2% 83px;
    margin-bottom: 15px;
}

/*header CSS*/
.header-content {
    display: flex;
    justify-content: space-between;
    padding: 13px 5%;
}
.hamburger-menu {
    display: none;
}
.nav-menu {
    display: block;
    font-family: "allura", sans-serif;
}
.nav-menu ul {
    display: flex;
    justify-content: space-around;
    margin: auto 0
}
.nav-menu li {
    font-size: 16px;
    margin-right: 24px;
    line-height: 35px;
}
.nav-menu li:nth-last-child(1) {
    background-color: var(--white-color);
    padding: 0px 2px;
    position: relative;
    border-radius: 5px;
    margin-right: 0;
}
i.fa-cart-shopping {
    margin-left: 9px;
    margin-right: 1px;
}
/*main CSS*/
.title {
    margin-bottom: 48px;
}


/*home-hero CSS*/
.home-hero {
    height: 500px;
}
.hero-mask {
    width: 90vw;
    height: 360px;
    margin-top: 40px;
}
.hero-mask img:nth-child(1){
    /*welcome*/
    width: 314px;
}
.hero-mask img:nth-child(3){
    /*to*/
    width: 80px;
    margin-bottom: 0;
}
.hero-mask img:nth-child(5){
    /*logo*/
    width: 350px;
}
#svg-animation {
    width: 46%;
    margin-bottom: 27px;
}

/*content CSS*/

/*concept CSS*/
#concept {
    margin-bottom: 112px;
}
.concept-content img {
    width: 52%;
}
.content-text {
    width: 45%;
}
.flex-box {
    display: flex;
    justify-content: space-between;
    margin-bottom: 38px;
}
.reverse {
    flex-direction: row-reverse;
}

/*products CSS*/
#products {
    margin-bottom: 108px;
}
#products .title {
    margin-bottom: 27px;
}
.products-content {
    margin-bottom: 33px;
}
.item {
    width: 30%;
    margin-bottom: 9px;
}
.item img {
    margin-bottom: 34px;
}
.item-name {
    font-size: 14px;
}
.show-more {
    font-size: 14px;
}

/*Access CSS*/
#access .flex-box {
    margin-bottom: 59px;
}
#access .title {
    margin-bottom: 65px;
}
.address {
    width: 50%;
    padding-top: 114px;
}
.address-data td:nth-child(1){
    width: 27%;
}

.map {
    width: 49%;
}

/*contact*/
#contact .title {
    margin-bottom: 32px;
}
#contact form {
    text-align: center;
}
.text-notion {
    margin-bottom: 14px;
}
.form-item span {
    margin-bottom: 12px;
    font-size: 12px;
    width: auto;
}
#contact input {
    display: block;
    margin: 0 auto 19px;
    width: 300px;
    height: 24px;
}
#contact input[name="content"] {
    height: 120px;
    margin-bottom: 20px;
}
#contact input[type="submit"] {
    width: 75px;
    height: 25px;
    font-size: 14px;
}

/*footer CSS*/
button.top-btn {
    display: none;
}
#footer .nav-menu ul {
    width: 400px;
    margin: 0 auto 13px;
}
#footer .nav-menu li {
    color: #fff;
}
#footer .nav-menu li:nth-last-child(1){
    color: #000;
}
.sns-text {
    font-size: 10px;
    line-height: 20px;
    margin-bottom: 21px;
}
.footer-logo img {
    width: 200px;
    margin-bottom: 6px;
}
.copy-right {
    margin-bottom: 50px;
}
.footer-logo {
    margin-bottom: -3px;
}
/*tablet-size*/
}


@media (min-width:900px){
/*PCsize*/

.wrapper {
    max-width: 900px;
    padding: 24px 30px 23px;
    margin-top: -195px;
    margin-bottom: 19px;
}

/*header CSS*/
.header-content {
    width: 900px;
    margin: 0 auto;
}
.header-content {
    padding: 15px 0;
}
.nav-menu li {
    margin-right: 14px;
}
.nav-menu li:hover {
    color: var(--white-color);
    border-bottom: 1px solid var(--white-color);
}
.nav-menu li:nth-last-child(1):hover {
    color: var(--color2);
}

/*home-hero css*/
.home-hero {
    height: 960px;
}
.hero-mask {
    width: 900px;
    height: 600px;
    padding-top: 190px;
    margin-top: 91px;
}
#svg-animation {
    width: 35%;
}

/*concept CSS*/
#concept {
    margin-bottom: 90px;
}
.concept-content img {
    width: 56%;
}
.content-text {
    width: 38%;
}
.flex-box {
    margin-bottom: 31px;
}

/*products CSS*/
#products .title {
    margin-bottom: 45px;
}
.item {
    transition: opacity 1s;
    margin-bottom: 13px;
}
.item:hover img:first-of-type {
    display: none;
    animation: disappear-image .5s ease-out;
    -webkit-animation: disappear-image .5s ease-out;
    -moz-animation: disappear-image .5s ease-out;
    -o-animation: desappear-image .5s ease-out;
}
.item:hover img:last-of-type {
    display: block;
    animation: appear-image .5s ease-out;
    -webkit-animation: appear-image .5s ease-out;
    -moz-animation: appear-image .5s ease-out;
    -o-animation: appear-image .5s ease-out;
}

@keyframes appear-image {
    from {
        opacity: 0;
    } to {
        opacity: 1;
    }
}
@-webkit-keyframes appear-image {
    from {
        opacity: 0;
    } to {
        opacity: 1;
    }
}
@-moz-keyframes appear-image {
    from {
        opacity: 0;
    } to {
        opacity: 1;
    }
}
@-o-keyframes appear-image {
    from {
        opacity: 0;
    } to {
        opacity: 1;
    }
}

@keyframes disappear-image {
    from {
        opacity: 1;
    } to {
        opacity: 0;
    }
}
@-webkit-keyframes disappear-image {
    from {
        opacity: 1;
    } to {
        opacity: 0;
    }
}
@-moz-keyframes disappear-image {
    from {
        opacity: 1;
    } to {
        opacity: 0;
    }
}
@-o-keyframes disappear-image {
    from {
        opacity: 1;
    } to {
        opacity: 0;
    }
}

.show-more:hover {
    color: var(--color2);
}

/*access CSS*/
#access .title {
    margin-bottom: 75px;
}
.address {
    width: 60%;
    padding-left: 122px;
    padding-top: 102px;
}
.map {
    margin-left: -14px;
    width: 39%;
    margin-right: 82px;
}
#access .flex-box {
    justify-content: center;
    margin-bottom: 108px;
}
.address-data td:nth-child(1) {
    width: 26%;
}
/*contact CSS*/
.contact-form p {
    text-align: center;
}
p.text-notion {
    text-align: left;
    padding-left: 84px;
    margin-bottom: 39px;
}
#contact input[name="content"] {
    margin-bottom: 18px;
}

/*foote CSS*/
#footer .nav-menu ul {
    width: 408px;
    margin-bottom: 9px;
}

/*PC-size*/
}
