@charset "UTF-8";
/* common */
body {
    /* test */
    font-family: dnp-shuei-gothic-gin-std, YuGothic, Yu Gothic, Hiragino Sans,
    Hiragino Kaku Gothic ProN, Meiryo, sans-serif;
    color: #383838;
    padding: 0;
    margin: 0;
    letter-spacing: 0.06em;
    -webkit-text-size-adjust: 100%;
    font-feature-settings: "palt";
    text-justify: inter-ideograph;
    text-justify: inter-character;
    -ms-text-justify: inter-ideograph;
    text-align: justify;
    word-wrap: break-word;
    overflow-wrap: break-word;
    font-size: 16px;
    background: #f3f3f3;
    position: relative;
}
h1 {
  font-size: 28px;
  font-weight: bold;
}
h2 {
  font-size: 24px;
  margin: 10px 0;
  font-weight: 500;
  margin-bottom: 20px;
}
h3 {
  font-size: 20px;
}
h4 {
  font-size: 16px;
}
a {
	color: #222222;
	text-decoration: none;
	transition: 0.3s;
	-webkit-transition: 0.3s;
}
a:hover {
	opacity: 0.6;
}
img {
    width: 100%;
    height: auto;
}
.zoom .img{
    overflow: hidden;
}
.zoom:hover img{
    transform: scale(1.04);
    transition: all 0.4s;
}
.w-top{
    margin-top: 80px;
}
.w-bottom{
    margin-bottom: 80px;
}
.m-top{
    margin-top: 40px;
}
/* home */
.home{
    #content-wrap{
        .row{
            padding: 50px 60px;
            border-radius: 15px;
            h1,h2,h3{
                align-items: center;
                display: flex;
                span{
                    font-size: 10px;
                    padding-left: 20px;
                    color: #b4b4b4;
                }
            }
            img{
                height: 180px;
                object-fit: cover;
            }
        }
    }
}
.sub-txt{
    display: flex;
    line-height: 2.0;
    justify-content: center;
    span{
        text-align: left;
    }
}
#top-fv{
    width: 100%;
    position: relative;
    img{
        max-height: 600px;
        object-fit: cover;
    }
    .f-icon {
        position: absolute;
        display: flex;
        gap: 10px;
        bottom: 10px;
        left: 20px;
        z-index: 2;
        opacity: 1;
        i{
            color: #fff;
        }
    }
}
.en{
    color: #b4b4b4;
}
.gray{
    color: #b4b4b4;
}
.w-bg{
    background: #fff;
}
#content-wrap {
  margin: 0 auto;
}
.entry-item{
    p{
        margin-bottom: 10px;
        &:nth-child(2){
            font-size: 14px;
        }
        &:nth-child(n+2){
            margin-bottom: 0;
        }
    }
}
.t-center{
    text-align: center;
}
.other-page {
    margin-top: 40px;
    a{
        padding: 5px 20px;
        position: relative;
        transition: all .7s;
        display: inline-block;
        &::after{
            content: '';
            position: absolute;
            z-index: -1;
            bottom: 0;
            left: 0;
            height: 1px;
            background:#27373F;
            opacity: 0;
        }
        &:hover{
            color: #fff;
            z-index: 1;
            &::after{
                width: 100%;
                opacity: 1;
                animation:bgappear 0.5s forwards;
            }
        }
    }
}

#content {
    padding-top: 100px;
    padding-bottom: 100px;
    #main{
        .w-bg{
            border-radius: 20px;
            padding: 40px 40px;
            h1,h2,h3{
                align-items: center;
                display: flex;
                span{
                    font-size: 14px;
                    padding-left: 20px;
                    color: #b4b4b4;
                }
            }
            .box{
                margin-top: 40px;
                h4{
                    margin: 10px 0 5px;
                    font-size: 12px;
                }
                p{
                    margin: 0;
                    font-size: 10px;
                }
            }
        }
    }
}

.pager ul {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 20px 0;
    li {
        margin: 0 5px;
        a, span {
            display: inline-block;
            padding: 8px 12px;
            border: 1px solid #ccc;
            border-radius: 5px;
            text-decoration: none;
            color: #333;
            background: #fff;
            transition: all 0.3s ease;
        }
        a:hover {
            background: #27373F;
            color: #fff;
            border-color: #27373F;
        }
        .current {
          background: #27373F;
          color: #fff;
          border-color: #27373F;
          font-weight: bold;
          pointer-events: none;
        }
        .prev, .next {
          font-weight: bold;
        }
    }
}
.category{
    h1,h2,h3{
        letter-spacing: .3rem;
        span{
            letter-spacing: .1rem;
        }
    }
}
  
.category-trip{
    .cntnt{
        column-count: 3;
        height: auto !important;
        .box{
            height: auto !important;
            break-inside: avoid;
            margin: 0 0 15px !important;
            color: #FFF;
            h4{
                font-size: 12px;
                margin: 5px 0 0 !important;
            }
        }
    }
}

.single{
    h2{
        margin: 0 0 5px;
    }
    #post-meta{
        p{
            font-size: 14px;
        }
    }
}
#catchphrase {
  /* margin-bottom: 0;
  padding-bottom: 0.5rem;
  font-size: 13px; */
}

/* fv-anime */
#splash{
	position: fixed;
	width: 100%;
	height: 100%;
	z-index: 999;
	background:#f3f3f3;
	text-align:center;
	color:#fff;
    #splash_logo{
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-55%, -55%);
        .fo{
            animation-name: fadeUpAnime;
            animation-duration:1.5s;
            animation-fill-mode:forwards;
            opacity: 0;
        }
        .fo1 {
            stroke: #111;
            stroke-width: 0.5px;
            stroke-dasharray: 400px;
            animation: svg 0.8s ease-in both, svg-color 2s ease-in both;
            animation-delay: 0s, 3s;
        }
        .fo2 {
            stroke: #111;
            stroke-width: 0.5px;
            stroke-dasharray: 400px;
            animation: svg 0.8s ease-in both, svg-color 2s ease-in both;
            animation-delay: 0.2s, 3s;
        }
        .fo3 {
            stroke: #111;
            stroke-width: 0.5px;
            stroke-dasharray: 400px;
            animation: svg 0.8s ease-in both, svg-color 2s ease-in both;
            animation-delay: 0.4s, 3s;
        }
        .fo4 {
            stroke: #111;
            stroke-width: 0.5px;
            stroke-dasharray: 400px;
            animation: svg 0.8s ease-in both, svg-color 2s ease-in both;
            animation-delay: 0.6s, 3s;
        }
        .fo5 {
            stroke: #111;
            stroke-width: 0.5px;
            stroke-dasharray: 400px;
            animation: svg 0.8s ease-in both, svg-color 2s ease-in both;
            animation-delay: 0.8s, 3s;
        }
        .fo6 {
            stroke: #111;
            stroke-width: 0.5px;
            stroke-dasharray: 400px;
            animation: svg 0.8s ease-in both, svg-color 2s ease-in both;
            animation-delay: 1.0s, 3s;
        }
        .fo7 {
            stroke: #111;
            stroke-width: 0.5px;
            stroke-dasharray: 400px;
            animation: svg 0.8s ease-in both, svg-color 2s ease-in both;
            animation-delay: 1.2s, 3s;
        }
        .fo8 {
            stroke: #111;
            stroke-width: 0.5px;
            stroke-dasharray: 400px;
            animation: svg 0.8s ease-in both, svg-color 2s ease-in both;
            animation-delay: 1.4s, 3s;
        }
        .fo9 {
            stroke: #111;
            stroke-width: 0.5px;
            stroke-dasharray: 400px;
            animation: svg 0.5s ease-in both, svg-color 2s ease-in both;
            animation-delay: 1.6s, 3s;
        }
        .fo10 {
            stroke: #111;
            stroke-width: 0.5px;
            stroke-dasharray: 400px;
            animation: svg 0.5s ease-in both, svg-color 2s ease-in both;
            animation-delay: 1.8s, 3s;
        }
    }
}

/* 404 */
.page-404{
    text-align: center;
    height: 100vh;
    align-content: center;
    position: relative;
    z-index: 0;
    .txt{
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: #DDD;
        white-space: nowrap;
        z-index: 1;
    }
    img{
        width: 80%;
        margin: auto;
    }
}
.btnripple3{
	position: relative;
	display:inline-block;
    text-decoration: none;
    color: #DDD;
    outline: none;
    transform: translateY(80px);
    &:hover::before {
        content: '';
        position: absolute;
        left:50%;
        top:50%;
        transform: translate(-50%, -50%);
        border: 1px solid #DDD;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        opacity:1;
        animation:1s circleanime2 infinite;
    }
}



@media (max-width: 1200px) {
    .home{
        #content-wrap{
            img{
                height: 130px !important;
            }
        }
    }

    #splash{
        #splash_logo{
            svg{
                width: 80%;
            }
        }
    }
    .page-404{
        .btnripple3{
            transform: translateY(40px);
        }
        img{
            width: 100%;
            min-height: 50vh;
            object-fit: cover;
        }
    }
}

@media only screen and (max-width: 1100px) {
	.category-trip{
        .cntnt{
            column-count: 2;
        }
    }
}

@media (max-width: 1000px) {
    .home{
        #content-wrap{
            img{
                height: 100px !important;
            }
        }
    }
}

@media (max-width: 768px){
    
    h1 {
        font-size: 24px;
    }
    h2 {
        font-size: 18px;
        margin-bottom: 12px;
        letter-spacing: 0.2rem;
        span{
            font-size: 12px;
        }
    }
    h3 {
        font-size: 16px;
    }
    h4 {
        font-size: 12px;
    }
    .w-top{
        margin-top: 50px;
    }
    .w-bottom{
        margin-bottom: 50px;
    }
    .m-top{
        margin-top: 30px;
    }
    .home{
        #content-wrap{
            .row{
                padding: 25px 20px;
                border-radius: 0;
                img{
                    height: auto !important;
                }
            }
        }
    }
    .sub-txt{
        line-height: 1.6;
        font-size: 14px;
    }
    #top-fv{
        width: 100%;
        img{
            height: 250px;
        }
    }
    #content-wrap {
        margin: 0 auto;
    }
    .entry-item{
        margin: 15px 0;
        &:first-child{
            margin-top: 10px;
        }
        p{
            margin-bottom: 10px;
            &:nth-child(2){
                font-size: 8px;
            }
            &:nth-child(3){
                font-size: 14px;
            }
        }
    }
    .other-page {
        a{
            padding: 5px 20px;
            border-bottom: 1px solid #27373F;
        }
    }
  
#content {
    padding-top: 60px;
    padding-bottom: 80px;
    #main{
        .w-bg{
            border-radius: 15px;
            padding: 20px 15px;
            h1{
                span{
                    font-size: 12px;
                    margin-left: auto;
                }
            }
            .box{
                margin-top: 20px;
                h4{
                    margin: 10px 0;
                }
                p{
                    margin: 0;
                }
                ul{
                    li{
                        &::marker{
                            display: none;
                        }
                        a{
                            list-style: none !important;
                        }
                    }
                }
            }
        }
    }
}

.pager ul {
    flex-wrap: wrap;
    li {
        margin: 3px;
        a, span {
            padding: 6px 10px;
        }
    }
}

}

/* keyframes */
@keyframes bgappear{
    0% {
        width: 0%;
        height: 1px;
    }
    50% {
        width: 100%;
        height: 1px;
    }
    100% {
        width: 100%;
        height: 100%;
        background: #27373F;
    }
}

@keyframes svg {
    0% {
        fill: transparent;
        stroke-dashoffset: 400px;
    }
    100%{
        stroke-dashoffset: 0;
    }
}

@keyframes fadeUpAnime{
    from {
        opacity: 0;
        transform: translateY(100px);
    }
  
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes circleanime2{
	0%{
	  transform: translate(-50%, -50%) scale(0);
	}
	100%{
		transform: translate(-50%, -50%) scale(2);
		opacity: 0;
	}
}
