@charset "UTF-8";
* {
    margin: 0;
    /* padding: 0; */
}

body {
    background-color: #FFF6E0;
    max-width: 100%;
    margin: 0;
    /* padding: 0; */
    /* margin: inherit;
    padding: inherit; */
    color: #5B4636;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
    color: #333;
    font-size: 1rem;
}

img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    /* display: block; */
}

.wrapper {
    padding: 0 100px;
    margin: 0 auto;
    /* max-width: 1200px; */
}

/* header */

header {
    width: 100%;
    height: 100px;
    padding: 10px 100px;
    background-color: #F7A531;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    /* vertical-align: baseline; */
    margin: 0 auto;
    z-index: 10;
    top: 0;
}

header .logo {
    height: 100%;
    width: 80px;
    background-color: #FFF6E0;
    margin-top: 0;
    object-fit: cover;
    /* margin-top: 20px; */
    /* vertical-align: baseline; */
}

header .logo a {
    line-height: 1px;
    display: block;
}

.header-left {
    /* width: 60%; */
    display: flex;
}

.nav  {
    padding-top: 40px;
}

.nav li {
    padding-left: 56px;  
}

.top-menu {
    display: flex;
    margin-right: 0;
}

.top-menu li a {
    color: #fff;
    /* font-size: 1rem; */
}

.top-menu li a:hover { 
    color: #5B4636;
} 

/* ハンバーガー */
#nav {
    left: -400px;
    top: 0;
    bottom: 0;
    width: 300px;
    padding: 60px 24px;
    position: fixed;
    background-color: #7BB661;
    display: block;
    position: fixed;
    overflow-x: hidden;
    overflow-y: auto;
    transition: all 0.5s ease;
    z-index: 20;
    opacity: 0;
}
.open #nav{
    opacity: 1;
    left: 0;
    visibility: visible;
}

#nav ul {
    /* padding-left: 0; */
    margin-bottom: 20px;
}

#nav a {
    color: #fff;
    /* font-size: 1.5rem; */
}

.sub-menu li {
    padding: 20px 0;
}

/* #nav .sub-menu li a:hover {
    color: #5B4636;
} */

.sns {
    display: flex;
    justify-content: space-between;
}

.sns img {
    width: 50px;
    padding: 10px;
}

/* #nav .sns img:hover {
    background-color: #fff;
} */

.toggle-btn {
    width: 60px;
    height: 80px;
    margin: 0 20px;
    padding: 0 10px;
    /* background-color: #fff; */
    z-index: 30;
    position: relative;
    cursor: pointer;
    transition: 0.3s;
    /* margin: 0 auto; */
}

.toggle-btn:hover {
    opacity: 0.5;
}

.toggle-btn span {
    width: 80%;
    height: 2px;
    background-color: #333;
    position: absolute;
    /* border-radius: 4px; */
    transition: 0.3s;
    display: none;
}

.toggle-btn span:nth-child(1) {
    top: 22%;
}

.toggle-btn span:nth-child(2) {
    top: 50%;
}

.toggle-btn span:nth-child(3) {
    top: 77%;
}

.open .toggle-btn span:nth-child(1) {
    top: 47%;
    background: #333;
    transform: rotate(-45deg);
}

.open .toggle-btn span:nth-child(2),
.open .toggle-btn span:nth-child(3) {
    top: 47%;
    background: #333;
    transform: rotate(45deg);
}

/* main */
.mainvisual {
    height: 100vh;
    width: 100%;
    display: block;
    /* position: relative; */
    /* margin-bottom: 20px; */
    /* padding-top: 80px; */
}

.mainvisual .fade li {
    width: 100%;
    /* height: 100%; */
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0;
    animation: fade 20s infinite;
}

.mainvisual .fade li:nth-child(1) {
    animation-delay: 0s;
}

.mainvisual .fade li:nth-child(2) {
    animation-delay: 5s;
}

.mainvisual .fade li:nth-child(3) {
    animation-delay: 10s;
}

.mainvisual .fade li:nth-child(4) {
    animation-delay: 15s;
}

.mainvisual .fade li:nth-child(5) {
    animation-delay: 20s;
}

.mainvisual .fade li::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    box-shadow: inset 0px 0px 25px 20px #FFF6E0;
}

.mainvisual .fade li img {
    width: 100vw;
    height: 100vh;
    /* object-fit: cover; */
}

@keyframes fade {
    0% {
        opacity: 0;
    }

    15% {
        opacity: 1;
    }

    30% {
        opacity: 1;
    }

    45% {
        opacity: 0;
    }

    60% {
        opacity: 0;
    }

    75% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

.profile {
    margin-top: 50px;
    display: flex;
    margin-bottom: 20px;
    /* height: 800px; */
}

.profile-img {
    width: 50%;
    height: 800px;
    /* margin-bottom: 50px; */
    display: flex;
    align-items: center;
    /* top: 50%;
    left: 50%; */
}

.profile-img img {
    height: auto;
    object-fit: cover;
    width: 100%;
    ;
}

.profile-text {
    padding-left: 30px;
    width: 50%;
}

.profile-text h2 {
    font-size: 2rem;
}

.profile-text p {
    padding-left: 0;
    font-size: 20px;
    line-height: 2;
}

/* カテゴリ- */
.section-title {
    font-size: 2rem;
    width: 90%;
    margin: 0 auto;
}

.category {
    background-color: #7BB661;
    margin-bottom: 60px;
    height: 400px;
    border-radius: 10px;
    width: 90%;
    margin: auto;
}

.category h3 {
    margin-bottom: 0;
    color: #fff;
    margin-bottom: 10px;
}

.category img {
    width: 80%;
    height: 90%;
    object-fit: cover;
    padding-bottom: 0;
    border-radius: 10px;
}

.category .btn img {
    width: 80px;
    height: 80px;
    display: inline-block;
    margin-left: 50px;
    object-fit: cover;
}

.category .btn img:hover {
    opacity: 0.5;
}


.wrapper .slide-left {
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    opacity: 0;
    margin-bottom: 40px;
}

.wrapper .slide-from-left {
    animation: slide-from-left 0.5s ease-out 0s 1 forwards;
}

@keyframes slide-from-left {
    0% {
        transform: translateX(-50%);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* footer */

footer {
    margin-top: 80px;
    border-top: solid 1px;
    background-color: #F7A531;
    padding: 0 100px;
}

.footer {
    display: flex;
    justify-content: space-between;
    /* margin-top: 60px; */
    /* width: 30%; */
    padding-top: 30px
}

.footer-logo h1{
    margin: 0;
    margin-right: 40px;
    margin-bottom: 10px;
    width: 100px;
    height: 100px;
    background-color: #FFF6E0;
}

.footer-logo p {
    /* margin-left: 20px; */
    font-size: 0.725rem;
}

ul .menu {
    padding: 0 30px;
}

.menu {
    margin: 0;
}

.menu li {
    margin-bottom: 20px;
}

.menu a {
    font-size: 1rem;
}

.menu a:hover {
    opacity: 0.5;
}

/* ul .sns-menu {
    padding: 0 20px;
} */

.sns-menu {
    display: flex;
    margin: 0;
}

.sns-menu li {
    height: 20px;
    margin-left: 10px;
    margin-right: 0;
    /* margin-top: 0; */
}

.sns-menu img {
    width: 40px;
    margin-right: 30px;
    object-fit: cover;
    display: inline-block;
}

.sns-menu a:hover {
    opacity: 0.5;
}

/* -------------------------------------
category
------------------------------------- */
.subvisual {
    display: block;
    position: relative;
}

.subvisual img {
    height: 100vh;
    margin: 0 auto;
    /* margin-top: 100px; */
    margin-bottom: 50px;
    object-fit: cover;
    width: 100vw;
    /* position: relative; */
}

.subvisual h2 {
    position: absolute;
    top: 90%;
    right: 15%;
    color: #fff;
    font-size: 1.5rem;
    background-color: #fff;
    color: #333;
    opacity: 0.6;
}

.subvisual p {
    width: auto;
    position: absolute;
    writing-mode: vertical-rl;
    top: 20%;
    left: 30%;
    color: #fff;
    font-size: 1.75rem;
}

.spot-list {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 40px;
    font-size: 2rem;
}

.spot-list img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    /* padding-bottom: 30px; */
}

.spot-list li {
    background-color: #7BB661;
    /* font-size: 1.5rem; */
    color: #333;
    height: 300px;
}



.spot-list a {
    /* padding: 0; */
    font-size: 1.5rem;
    display: block;
}

.spot-list li:hover {
    opacity: 0.7;
}

/* -------------------------------------
item
------------------------------------- */

.item {
    display: flex;
    width: 100%;
    margin: 0;
}

.item-title {
    padding-top: 150px;
    padding-bottom: 50px;
    font-size: 4rem;
}

.item-text {
    width: 100%;
    margin-right: 10px;
}

.item-text h2 {
    width: 100%;
    padding-bottom: 30px;
    font-size: 2rem;
    display: flex;
}

.item-text p {
    font-size: 2rem;
    padding: 20px 0 20px 0;
    line-height: 2;
}

/* .item-image {
    width: 45%;
    padding-left: 20px;

} */

.item-image img {
    height: 400px;
    object-fit: cover;
}

.item-image li {
    padding-bottom: 10px;
}

/* figure.wp-block-gallery.has-nestyed-images {
    align-items: nomal;
    width: 100%;
    display: flex;
    flex-direction: column;
} */

 /* responsive */
 
@media (max-width: 1000px) {

/* .top-menu li a {
    font-size: ;
} */

.top-menu {
    display: none;
}

.toggle-btn span {
    display: unset;
}

.spot-list a {
    font-size: 1rem;
}

.mainvisual {
    height: 700px;
}

.mainvisual .fade li img {
    height: 100%;
    display: block;
}

.subvisual img {
   height: auto;
   width: 100%
}

.subvisual p {
    font-size: clamp(14px,2vw,18px);
}



}
