/* common */
body {
    font-size: 18px;
    line-height: 2.0;
    font-family: 'Noto Sans JP', sans-serif;
    color: #333333;
}
h1,h2,h3,h4,h5,p {
    margin: 0;
}
h2 {
    font-size: 32px;
    color: #4C3835;
    letter-spacing: 2px;
}
.content2 {
    max-width: 1180px;
    padding:0 20px;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}
.content {
    max-width: 1128px;
    padding:0 20px;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}
ul {
    list-style: none;
    padding: 0;
}
img {
    width: 100%;
    display: block;
}
a {
    text-decoration: none;
    transition: .2s;
}
.flex {
    display: flex;
    justify-content: space-between;
}
.dis-sp {
    display: none;
}
.dis-tb {
    display: none;
}
main {
    margin-top: 120px;
}

/* loading animate */
#loading {
    width: 100vw;
    height: 100vh;
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 99999999;
    background: url(../images/common-back.jpg);
    display: flex;
    -webkit-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    transition: .8s;
}
#loading-back {
    width: 100vw;
    height: 100vh;
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 99999998;
    background: rgb(246 239 227 / 100%);
    transition: .8s;
}
#loading_txt {
    display: flex;
    justify-content: center;
}
#loading_fade span {
    display: block;
    overflow: hidden;
    opacity: 0;
    -webkit-transform: translate(40px, 0);
    -ms-transform: translate(40px, 0);
    transform: translate(40px, 0);
}
#loading_fade span img {
    width: 1.3vw;
}
#loading_logo {
    width: 16vw;
    height: 10vw;
    position: relative;
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    background-image: url(../images/loading-logo.gif);
    margin: 0 auto 6px;
}
#loading.active {
    transform: translateY(100%);
}
#loading-back.active {
    background: rgb(246 239 227 / 40%);
    transform: translateY(100%);
}
#loading_fade span.active:nth-child(1) {
    -webkit-animation: fadeInTxt 0.6s ease 0.08s 1 forwards;
    animation: fadeInTxt 0.6s ease 0.08s 1 forwards;
}
#loading_fade span.active:nth-child(2) {
    -webkit-animation: fadeInTxt 0.6s ease 0.16s 1 forwards;
    animation: fadeInTxt 0.6s ease 0.16s 1 forwards;
}
#loading_fade span.active:nth-child(3) {
    -webkit-animation: fadeInTxt 0.6s ease 0.24s 1 forwards;
    animation: fadeInTxt 0.6s ease 0.24s 1 forwards;
}
#loading_fade span.active:nth-child(4) {
    -webkit-animation: fadeInTxt 0.6s ease 0.32s 1 forwards;
    animation: fadeInTxt 0.6s ease 0.32s 1 forwards;
}
#loading_fade span.active:nth-child(5) {
    -webkit-animation: fadeInTxt 0.6s ease 0.4s 1 forwards;
    animation: fadeInTxt 0.6s ease 0.4s 1 forwards;
}
#loading_fade span.active:nth-child(6) {
    -webkit-animation: fadeInTxt 0.6s ease 0.48s 1 forwards;
    animation: fadeInTxt 0.6s ease 0.48s 1 forwards;
}
#loading_fade span.active:nth-child(7) {
    -webkit-animation: fadeInTxt 0.6s ease 0.56s 1 forwards;
    animation: fadeInTxt 0.6s ease 0.56s 1 forwards;
}
#loading_fade span.active:nth-child(8) {
    -webkit-animation: fadeInTxt 0.6s ease 0.64s 1 forwards;
    animation: fadeInTxt 0.6s ease 0.64s 1 forwards;
}
#loading_fade span.active:nth-child(9) {
    -webkit-animation: fadeInTxt 0.6s ease 0.72s 1 forwards;
    animation: fadeInTxt 0.6s ease 0.72s 1 forwards;
}
#loading_fade span.active:nth-child(10) {
    -webkit-animation: fadeInTxt 0.6s ease 0.8s 1 forwards;
    animation: fadeInTxt 0.6s ease 0.8s 1 forwards;
}
#loading_fade span.active:nth-child(11) {
    -webkit-animation: fadeInTxt 0.6s ease 0.88s 1 forwards;
    animation: fadeInTxt 0.6s ease 0.88s 1 forwards;
}
#loading_fade span.active:nth-child(12) {
    -webkit-animation: fadeInTxt 0.6s ease 0.96s 1 forwards;
    animation: fadeInTxt 0.6s ease 0.96s 1 forwards;
}
@keyframes fadeInTxt {
    0% {
        opacity: 0;
        -webkit-transform: translate(0, 20px);
        -ms-transform: translate(0, 20px);
        transform: translate(0, 20px);
        -webkit-filter: blur(10px);
        -moz-filter: blur(10px);
        filter: blur(10px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
        transform: translate(0, 0);
        -webkit-filter: blur(0);
        -moz-filter: blur(0);
        filter: blur(0);
    }
}
#loading_fade.passive {
    -webkit-animation: fadeOutTxt 0.4s cubic-bezier(0.91, 0.31, 0.24, 0.89) forwards 0.7s;
    animation: fadeOutTxt 0.4s cubic-bezier(0.91, 0.31, 0.24, 0.89) forwards 0.7s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}
@keyframes fadeOutTxt {
    0% {
        opacity: 1;
        -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
        transform: translate(0, 0);
    }
    99% {
        opacity: 0;
        -webkit-transform: translate(0, -40px);
        -ms-transform: translate(0, -40px);
        transform: translate(0, -40px);
    }
    100% {
        display: none;
        opacity: 0;
        -webkit-transform: translate(0, -40px);
        -ms-transform: translate(0, -40px);
        transform: translate(0, -40px);
    }
}

/* header */
header {
    height: 120px;
    background: rgb(255 255 255 / 60%);
    position: fixed;
    width: 100%;
    z-index: 9;
    top: 0;
}
.header_logo {
    max-width: 340px;
    margin-left: 10%;
}
header .flex {
    align-items: center;
}
header nav li a {
    font-size: 16px;
    font-weight: bold;
    color: #4C3835;
    padding-left: 20px;
}
header nav li a:hover {
    color: #d2a564;
}
.online-store {
    margin-left: 46px;
    background-color: #D2A564;
    text-align: center;
    display: block;
    color: #fff;
    width: 120px;
    height: 120px;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
}
.online-store:hover {
    background-color:#ad8347;
}
.online-store p {
    margin-top: 10px;
}
.online-store img {
    width: 44px;
}
.menu-trigger,
.menu-trigger span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
}
.menu-trigger {
  position: relative;
  width: 50px;
  height: 44px;
  background: none;
  border: none;
  appearance: none;
  cursor: pointer;
}
.menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #fff;
  border-radius: 4px;
}
.menu-trigger span:nth-of-type(1) {
  top: 0;
}
.menu-trigger span:nth-of-type(2) {
  top: 20px;
}
.menu-trigger span:nth-of-type(3) {
  bottom: 0;
}
.menu-trigger.active span:nth-of-type(1) {
    transform: translateY(20px) rotate(-45deg);
}
.menu-trigger.active span:nth-of-type(2) {
    opacity: 0;
}
.menu-trigger.active span:nth-of-type(3) {
    transform: translateY(-20px) rotate(45deg);
}

/* footer */
.footer {
    text-align: center;
}
.footer-logo {
    max-width: 280px;
    margin: 100px auto 0;
}
.copyright {
     position: relative;
}
.copyright p {
    position: absolute;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    color: #fff;
    font-weight: bold;
    font-size: 14px;
}

footer ul li {
    font-size: 16px;
}

footer ul li a {
    color: #333333;
}
footer ul li:nth-of-type(1) a {
    position: relative;
    padding-right: 28px;
}
footer ul li:nth-of-type(1) a::before {
    position: absolute;
    content: "";
    height: 80%;
    width: 1px;
    background-color: #333;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}
footer ul li:nth-of-type(2) a {
    padding-left: 28px;
}
footer ul.flex {
    justify-content: center;
    margin: 20px 0 44px;
}

/* fv */
.fv {
    background: url(../images/common-back.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 42px;
    padding-bottom: 47px;
}
.fv .slick-slide {
    margin-right: 1vw!important;
    margin-left: 1vw!important;
    margin-top: 1vw!important;
    margin-bottom: 1vw!important;
}
.fv .slick-slide img {
    border-radius: 30px;
}
.news-banner {
    background-color: #D2A564;
    text-align: center;
    max-width: 800px;
    width: 100%;
    padding: 17px 40px;
    border-radius: 60px;
    margin: 3vw auto 0;
    transition: .2s;
}
.news-banner:hover {
    background-color:#ad8347;
}
.news-banner a {
    color: #fff;
}

/* sec01 */
.sec01 {
    padding: 100px 0 110px;
    background: url(../images/kodawari.jpg);
    background-position: top right;
    background-repeat: no-repeat;
}
.sec01 .left {
    width: 50%;
}
.sec01 h2 {
    display: inline-block;
}
.sec01 .left > div {
    position: relative;
    display: inline-block;
}
.sec01 .left p {
    margin-top: 40px;
    letter-spacing: 1px;
}
.sec01 .left > div img {
    position: absolute;
    bottom: -6px;
}


/* sec02 */
.sec02 {
    padding: 47px 0 50px;
}
.sec02 > img {
    width: 70px;
    margin: 0 auto;
}
.sec02 h2 {
    text-align: center;
    margin-bottom: 26px;
    margin-top: 8px;
}
.sec02 h3 {
    font-size: 24px;
    color: #7C4936;
    border-bottom: 1px solid #7C4936;
    padding-left: 14px;
    padding-bottom: 8px;
}
.sec02 h3 + p {
    margin: 10px 14px 0;
}
.sec02 > .flex {
    align-items: center;
}
.sec02 .left {
    width: 42%;
}
.sec02 .right {
    width: 50%;
}
.sec02 > .flex:nth-child(even) {
    flex-direction: row-reverse;
}

/* sec03 */
.sec03 {
    padding: 50px 20px 100px;
}
.sec03-ttl img {
    width: 78px;
    margin: 0 auto;
    padding: 0 50px;
    background: #fff;
}
.sec03-ttl + h2 {
    text-align: center;
    margin-top: 8px;
    margin-bottom: 60px;
}
.sec03-ttl {
    position: relative;
}
.sec03-ttl::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 6px;
    background-color: #D2A564;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: -1;
}
.sec03 > .flex {
    align-items: center;
}
.sec03 .left {
    width: 48%;
}
.sec03 .right {
    width: 44%;
}
.sec03 .right p {
    letter-spacing: 1px;
}

/* sec04 */
.sec04 {
    padding: 76px 0 100px;
    background: url(../images/common-back.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
}
.sec04-ttl {
    position: relative;
    display: inline-block;
}
.sec04-ttl img {
    position: absolute;
    width: 58px;
    top: 0;
    bottom: 0;
    margin: auto;
}
.sec04-ttl img:nth-of-type(1) {
    left: -90px;
}
.sec04-ttl img:nth-of-type(2) {
    right: -90px;
}
.sec04 h2 {
    display: inline-block;
}
.sec04 .content2 {
    margin-top: 100px;
}
.sec04 article p {
    margin-top: 28px;
    font-size: .87em;
    text-align: left;
}
.sec04 article {
    width: 30.5%;
}
.sec04 article:nth-of-type(2) {
    animation-delay: 0.5s;
}
.sec04 article:nth-of-type(3) {
    animation-delay: 1s;
}
.sec04 article img {
    border-radius: 16px;
}

/* sec05 */
.sec05 {
    padding: 75px 20px 50px;
}
.sec05 .left img {
    max-width: 220px;
}
.sec05 .left {
    width: 25%;
}
.sec05 .right {
    width: 75%;
}
.sec05 > .flex {
    justify-content: flex-start;
    padding: 45px 0;
    border-bottom: 3px dotted #7C4936;
}
.sec05-ttl {
    display: flex;
    justify-content: center;
}
.sec05-ttl img {
    width: 70px;
    padding-right: 37px;
}
.sec05-ttl {
    margin-bottom: 40px;
}
.sec05 h3 {
    font-size: 22px;
}

/* sec06 */
.sec06 {
    padding-top: 50px;
}
.sec06-ttl img {
    width: 50px;
    margin: 0 auto 10px;
}
.sec06-ttl {
    text-align: center;
}
.sec06-ttl h2 {
    margin-bottom: 40px;
}
.sec06 > .flex .right {
    background-color: #D2A564;
    width: 40%;
    padding: 56px 30px 0;
}
.sec06 > .flex .left {
    width: 60%;
}
address {
    color: #fff;
    font-size: 16px;
    font-style: inherit;
}
.map-btn {
    background-color: #fff;
    max-width: 270px;
    margin: 30px auto 0;
    text-align: center;
    padding: 10px;
}
.map-btn a {
    color: #D2A564;
}

/* contact */
.contact {
    background: url(../images/common-back.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 80px 0 90px;
    font-size: 16px;
    overflow: hidden;
}
.contact h2 {
    text-align: center;
}
.contact h2 + img {
    max-width: 250px;
    margin: 0 auto 60px;
}
.form-txt {
    text-align: center;
    font-size: 16px;
    margin-bottom: 64px;
}
.contact-tel a {
    font-size: 20px;
    font-weight: bold;
    color: #D2A564;
}
.contact-form {
    max-width: 860px;
    width: 100%;
    margin: 0 auto;
}
.formTable {
    margin-bottom: 30px;
    width: 100%;
}
.formTable input,
.formTable textarea {
    border: none;
    background-color: #fff;
    padding: 12px 8px;
    width: 100%;
    box-sizing: border-box;
}
.formTable th {
    width: 35%;
    font-weight: inherit;
    text-align: left;
    padding-right: 100px;
    vertical-align: top;
}
.formTable td {
    width: 60%;
    margin-bottom: 40px;
    display: inline-block;
}
.submit-btn {
    text-align: center;
    margin-top: 50px;
}
.submit-btn input {
    width: 300px;
    background-color: #ababab;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    border: none;
    padding: 14px 0;
}
.required {
    color: #C1272D;
    padding-left: 20px;
}
.formTable input.form-t1 {
    width: 47%;
}
.formTable input.form-t2 {
    width: 25%;
    display: inline-block;
    margin: 0 6px;
}
.formTable td.flex {
    justify-content: space-between;
    display: flex;
}
.privacy {
    padding-top: 80px;
}
.privacy h2 {
    font-size: 20px;
    color: #7C4936;
    text-align: center;
    margin-bottom: 16px;
}
.privacy h2 + p {
    font-size: 16px;
    text-align: center;
}

/* animate.min.css - custom */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0,70%,0);
        transform: translate3d(0,70%,0);
    }
}

/* responsive */
@media screen and (max-width:1280px) {
    header {
        height: 80px;
    }
    main {
        margin-top: 80px;
    }
    header nav li a {
        font-size: 14px;
    }
    .online-store {
        width: 80px;
        height: 80px;
        font-size: 14px;
    }
    .header_logo {
        max-width: 240px;
        margin-left: 5%;
    }
    .online-store p {
        margin-top: 3px;
    }
    .online-store img {
        width: 30px;
    }
    .sec01 {
        background-size: contain;
    }
    .sec06 > .flex .right {
        padding: 28px 30px 0;
    }
    
}
@media screen and (max-width:1023px) {
    .news-banner {
        max-width: 630px;
    }
    .dis-tb {
        display: block;
    }
    .online-store-pc {
        display: none;
    }
    nav {
        position: fixed;
        height: 100%;
        width: 40%;
        right: 0;
        top: 80px;
        background: #7C4936;
        z-index: 3;
        transform: translateX(100%);
        transition: .2s;
    }
    header nav li a,
    header nav li a:hover {
        color: #fff;
    }
    header nav li {
        padding-bottom: 12px;
    }
    nav.target {
        transform: translateX(0%);
    }
    nav ul {
        padding-top: 30px;
        width: 100%;
        display: block!important;
    }
    header nav.flex {
        align-items: baseline;
    }
    .online-store {
        margin-left: 0;
    }
    .menu-wrap {
        background-color: #7C4936;
        height: 80px;
        width: 80px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .right-btn {
        display: flex;
    }
    .sec05 .right {
        width: 75%;
        padding-left: 20px;
    }
    .sec06 .content2 {
        display: block;
    }
    .sec06 > .flex .left,
    .sec06 > .flex .right {
        width: 100%;
        box-sizing: border-box;
    }
    .sec06 > .flex .right {
        padding: 28px 80px 40px;
    }
    body.target {
        overflow: hidden!important;
    }
}
@media screen and (max-width:767px) {
    main {
        margin-top: 60px;
    }
    body {
        font-size: 15px;
    }
    .dis-sp {
        display: block;
    }
    .dis-pc {
        display: none;
    }
    h2 {
        font-size: 20px;
    }
    .fv .slick-slide {
        margin: 0!important;
    }
    .news-banner {
        max-width: 300px;
        padding: 7px 20px;
        margin-top: 24px;
    }
    .fv {
        padding-top: 0;
        padding-bottom: 24px;
    }
    header {
        height: 60px;
        background: url(../images/common-back.jpg);
        background-repeat: no-repeat;
        background-size: cover;
        padding-top: 0;
    }
    .header_logo {
        margin-left: 20px;
    }
    .menu-wrap,.online-store {
        height: 60px;
        width: 60px;
    }
    .online-store {
        font-size: 10px;
    }
    .online-store img {
        width: 20px;
    }
    .menu-trigger {
        height: 23px;
        width: 28px;
    }
    .menu-trigger span {
        height: 3px;
    }
    .menu-trigger span:nth-of-type(2) {
        top: 10px;
    }
    .menu-trigger.active span:nth-of-type(1) {
        transform: translateY(10px) rotate(-45deg);
    }
    .menu-trigger.active span:nth-of-type(3) {
        transform: translateY(-10px) rotate(45deg);
    }
    .header_logo {
        max-width: 200px;
    }
    .sec01 {
        padding: 40px 0 250px;
        background-position: bottom right;
    }
    .sec01 .left {
        width: 100%;
        text-align: center;
    }
    .sec01 .left p {
        text-align: left;
        margin-top: 30px;
    }
    .sec02 > img {
        width: 56px;
    }
    .sec02 h2 {
        margin-top: 0;
    }
    .sec02 > .flex {
        display: block;
        margin-bottom: 20px;
    }
    .sec02 .left,
    .sec02 .right {
        width: 80%;
        margin: auto;
    }
    .sec03-ttl img {
        width: 62px;
        padding: 0 10px;
    }
    .sec03 {
        padding: 0 20px 50px;
    }
    .sec03-ttl + h2 {
        margin-bottom: 10px;
    }
    .sec03 > .flex {
        display: block;
    }
    .sec03 .left,
    .sec03 .right {
        width: 100%;
    }
    .sec03 .right p {
        margin-top: 10px;
    }
    .sec04-ttl img {
        width: 46px;
    }
    .sec04-ttl img:nth-of-type(1) {
        left: -60px;
    }
    .sec04-ttl img:nth-of-type(2) {
        right: -60px;
    }
    .sec04 {
        padding: 46px 0 40px;
    }
    .sec04 .flex {
        display: block;
        margin: 50px 0 20px;
    }
    .sec04 article {
        width: 100%;
        margin-top: 40px;
    }
    .sec04 article p {
        margin-top: 14px;
        font-size: 15px;
    }
    .sec04 .content2 {
        margin-top: 34px;
    }
    .sec05-ttl img {
        width: 54px;
        padding-right: 25px;
    }
    .sec05 {
        padding: 45px 20px 25px;
    }
    .sec05 > .flex {
        display: block;
        padding: 35px 0;
    }
    .sec05 .left {
        width: 100%;
    }
    .sec05 .left img {
        max-width: 220px;
        margin: auto;
    }
    .sec05-ttl {
        margin-bottom: 0;
    }
    .sec05 .right {
        width: 100%;
        padding-left: 25px;
        padding-right: 25px;
        padding-top: 20px;
        box-sizing: border-box;
    }
    .sec05 h3 {
        font-size: 16px;
    }
    .sec06 {
        padding-top: 25px;
    }
    .sec06-ttl img {
        width: 40px;
    }
    .sec06 .content2 {
        padding: 0;
    }
    .sec06-ttl h2 {
        margin-bottom: 16px;
    }
    .sec06 > .flex .right {
        padding: 28px 30px 40px;
    }
    .map-btn {
        max-width: 230px;
    }
    .footer-logo {
        max-width: 220px;
        margin: 62px auto 0;
    }
    .copyright img {
        height: 120px;
        object-fit: cover;
    }
    .copyright p {
        font-size: 13px;
    }
    nav {
        top: 60px;
        width: 60%;
    }
    .copyright p {
        white-space: nowrap;
    }
    .contact {
        padding: 40px 0 70px;
    }
    .contact h2 + img {
        max-width: 168px;
        margin: 0 auto 30px;
    }
    .form-txt {
        text-align: left;
        margin-bottom: 34px;
    }
    .formTable th {
        display: block;
        width: 100%;
        padding-bottom: 4px;
    }
    .formTable td {
        width: 100%;
        margin-bottom: 20px;
    }
    .formTable {
        margin-bottom: 10px;
    }
    .submit-btn {
        margin-top: 40px;
    }
    .privacy {
        padding-top: 60px;
    }
    .privacy h2 + p {
        text-align: left;
    }
    .form-txt,
    .privacy h2 + p,
    .contact {
        font-size: 15px;
    }
    .contact-tel a,
    .submit-btn input {
        font-size: 16px;
    }
    .submit-btn input {
        width: 100%;
        max-width: 300px;
    }
    .fv .slick-slide img {
        border-radius: 0;
    }
    #loading_logo {
        width: 38.5vw;
        height: 25vw;
    }
    #loading_fade span img {
        width: 3.2vw;
    }
}