/*
Theme Name: ちなろぐ
Theme URI: 
Author: ちな
Author URI: 
Description: 
Version: 3.0.0
*/
@charset "utf-8";
/*リセット*/
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}
img{
    border: none;
    max-width: 100%;
    box-sizing: border-box;
    height: auto;
    width: 100%;
    height: auto;
    image-rendering: -webkit-optimize-contrast;
}
a img {
	border: none;
    outline: none;
}
ul,ol,dl{
    list-style: none;
    margin: 0;
    padding: 0;
}
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl,dd,dt {
  margin: 0;
  padding: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  margin: 0;
  padding: 0;
  margin-block-end:0;
  margin-block-start:0;
}
a,a:link,:visited,a:active{
    text-decoration: none;
    color: inherit;
    outline: none;
}
html *{
    box-sizing: border-box;
}
html{
    line-height: 1;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
    width: 100%;
    scroll-behavior: smooth;
    color: #191919;
    position: relative;
    overflow-x: hidden;
}
table {
	border-collapse: separate;
	border-spacing: 0;
}
body{
    margin: 0;
    padding: 0;
    font-size: 1vw;
    width: 100%;
    height:100%;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    letter-spacing: 1px;
    font-family: 'Noto Serif JP', serif;
}

a,button,input[type="checkbox"],input[type="submit"]{
    cursor: pointer;
}
input[type="text"],input[type="textarea"],input[type="email"],input[type="tel"],input[type="submit"],textarea,text{
    border: none;
    background: transparent;
    font-size: inherit;
    font-weight: inherit;
    font-family: inherit;
    color: inherit;
    box-sizing: border-box;
}
section, div, span {
    box-sizing: border-box;
}
small{
    font-size: inherit;
}
/*iPhoneのセレクトメニュー用*/
select {
    -webkit-appearance: button;
    appearance: button;
}
input[type="button"],input[type="text"],input[type="email"],input[type="submit"],input[type="image"],text,textarea{
    -webkit-appearance: none;
    border-radius: 0;
}
/*ここまで*/
.pc{
    display: block;
}
.sp{
    display: none;
}
.site-name{
    position: absolute;
    z-index: 10;
    top: 4vw;
    left: 5vw;
    font-size: 3vw;
    color: #282828;
    font-weight: 700;
    width: 100vw;
}
.site-name.nav-color{
    top: 0;
    left: 0;
    position: relative;
    color: #fff;
    font-size: 1vw;
    background: rgba(86,86,86,1);
    padding: 1vw 4vw;
}
.site-nav{
    position: relative;
    z-index: 10;
}
.site-nav>ul>li>ul{
    display: flex;
    flex-direction: column;
    width: 100vw;
    position: absolute;
    z-index: 11;
    top: 8vw;
    align-items: flex-end;
}
.site-nav>ul>li>ul>li{
    color: #fff;
    padding: 1vw;
    margin: 2vw 0;
    background: rgba(86,86,86,.8);
    mix-blend-mode: multiply;
    content: "";
    display: block;
    position: relative;
    top: 0;
    height: 3vw;
}
.site-nav>ul>li>ul>li:first-of-type{
    width: 80vw;
    animation: menu1 .3s linear;
}
@keyframes menu1{
    0%{
        width: 0%;
    }
    100%{
        width: 80vw;
    }
}
.site-nav>ul>li>ul>li:nth-of-type(2){
    width: 70vw;
    animation: menu2 .4s linear;
}
@keyframes menu2{
    0%{
        width: 0%;
    }
    100%{
        width: 70vw;
    }
}
.site-nav>ul>li>ul>li:nth-of-type(3){
    width: 60vw;
    animation: menu3 .5s linear;
}
@keyframes menu3{
    0%{
        width: 0%;
    }
    100%{
        width: 60vw;
    }
}
.site-nav>ul>li>ul>li:nth-of-type(4){
    width: 50vw;
    animation: menu4 .6s linear;
}
@keyframes menu4{
    0%{
        width: 0%;
    }
    100%{
        width: 50vw;
    }
}
.site-nav>ul>li>ul>li:nth-of-type(5){
    width: 40vw;
    animation: menu5 .7s linear;
}
@keyframes menu5{
    0%{
        width: 0%;
    }
    100%{
        width: 40vw;
    }
}
.site-nav.nav-color{
    position: fixed;
}
.site-nav.nav-color>ul>li>ul{
    flex-direction: row;
    top:0;
    justify-content: flex-end;
}
.site-nav.nav-color>ul>li>ul>li{
    margin: 0;
    padding: 1vw 4vw;
    width: 15vw;
    mix-blend-mode: normal;
}
main>ul{
    position: relative;
}
main>ul::before{
    display: block;
    position:absolute;
    top: 0;
    z-index: 5;
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(201,201,201,.5);
    mix-blend-mode:screen;
}
.site-name_ot{
    top: 0;
    left: 0;
    position: relative;
    color: #fff;
    font-size: 1vw;
    background: rgba(86,86,86,1);
    padding: 1vw 4vw;
    font-weight: 700;
    width: 100vw;
    z-index: 10;
}
.site-nav_ot{
    position: fixed;
    z-index: 10;
}
.site-nav_ot>ul>li>ul{
    display: flex;
    position: absolute;
    background: rgba(86,86,86,.8);
    flex-direction: row;
    top:0;
    right: 0;
    justify-content: flex-end;
}
.site-nav_ot>ul>li>ul>li{
    margin: 0;
    padding: 1vw 4vw;
    width: 15vw;
    mix-blend-mode: normal;
    position: relative;
    color: #fff;
    z-index: 11;
}
.breadcrumb{
    max-width: 90vw;
    margin: 10vh auto 0;
    font-size: .8vw;
}
/*写真部分*/
#sp h2{
    color: #fca9f8;
}
#sum h2{
    color: #4545ff;
}
#aut h2{
    color: #c1272d;
}
#win h2{
    color: #444444;
}
.photo-content{
    position: relative;
    padding: 5vw 0 10vw;
}
.photo-content.left::before{
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(201,201,201,.7);
    clip-path: polygon(100% 50%, 0% 100%, 100% 100%);
}
.photo-content.right::before{
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(201,201,201,.7);
    clip-path: polygon(0 0, 0 50%, 100% 0);
}
.photo-content h2{
    font-size: 3vw;
    writing-mode: vertical-lr;
    -ms-writing-mode: tb-lr;
    -webkit-writing-mode: vertical-lr;
    position: absolute;
    top: 1vw;
    font-weight: 700;
    margin: 0 .5vw;
}
.right h2{
    right: 0;
}
.photo-content .gallery{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: flex-start;
    width: 75vw;
    margin: auto;
}
.photo-content .gallery_item{
    width: 25vw;
    height: 15vw;
    overflow: hidden;
    line-height: 0;
    position: relative;
    text-align: center;
}
.photo-content .gallery_item img{
    width: 100%;
    transition-duration: 0.3s;
    background: #fff;
}
.photo-content .gallery_item img:hover{
    opacity: .6;
    transition-duration: 0.3s;
}
.photo-content .gallery_item span{
    position: absolute;
    top: 20px;
    left: 15px;
    z-index: 6;
    display: none;
    color: #000;
    transition-duration: 0.3s;
}
.photo-content .gallery_item:hover span{
    display: block;
    transition-duration: 0.3s;
}
.scroll{
    text-align: center;
    position: relative;
    height: 50px;
}
.scroll::before{
    content: "";
    width: 1px;
    height: 10px;
    top: 0;
    position: absolute;
    background: #282828;
    animation: arrow 1.9s ease-in-out infinite;
}
@keyframes arrow{
	0%{
		height:0;
		top:0;
		opacity: 0;
	}
	30%{
		height: 80px;
		opacity: 1;
	}
	100%{
		height:0;
		top:80px;
		opacity: 0;
	}
}
.scroll::after{
    display: inline;
    position: absolute;
    content: "scroll?";
    bottom: -50px;
    padding: 1vw 0.5vw;
    font-weight: 700;
    letter-spacing: .1vw;
}
/*そのほか*/
.other-content{
    position: relative;
    margin: 30vw 0 10vw;
}
.other-content h2{
    font-size: 2vw;
    line-height: 1.8;
    text-align: center;
    font-family: 'Reggae One', cursive;
}
.other-content p{
    font-size: 1.1vw;
    line-height: 1.5;
    text-align: center;
    font-family: 'Noto Sans JP', sans-serif;
}
.other-content .gallery{
    display: flex;
    margin: 5vw auto 0;
    flex-wrap: nowrap;
    justify-content: center;
    flex-direction: row;
}
.other-content .gallery_item{
    position: relative;
    width: 33.333vw;
    height: 20vw;
    overflow: hidden;
    text-align: center;
    background: #000;
}
.other-content .gallery_item img{
    width: 100%;
    background: #000;
    transition-duration: 0.3s;
}
.other-content .gallery_item img:hover{
    opacity: .6;
    transition-duration: 0.3s;
}
.other-content .gallery_item span{
    position: relative;
    display: none;
    top: -60%;
    z-index: 6;
    color: #fff;
    font-family: 'Noto Sans JP', sans-serif;
}
.other-content .gallery_item:hover span{
    display: block;
}
.content-product .gallery_wrap .gallery_listItem2 .blank p::after{
    top:-6px;
    right: 6px;
}
/*お問い合わせ*/
.content{
    position: relative;
    margin: 5vw 0 10vw;
}
.content h2{
    font-size: 2vw;
    line-height: 1.8;
    text-align: center;
}
.content p{
    font-size: 1vw;
    line-height: 1.5;
    text-align: center;
    margin: 0 0 2vw 0;
}
input[type="text"],input[type="email"],textarea{
    border: 1px solid #191919;
}
.form-row{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 2vw 0;
    width: 40vw;
    margin: auto;
}
.form-row label{
    padding: .5vw 0;
    font-size: 1vw;
}
.form-row *:not(label){
    font-size: 1vw;
    padding: .5vw;
    width: 30vw;
}
.form-btn{
    width: 40vw;
    margin: 2vw auto;
    text-align: center;
}
button{
    background: #fff;
    color: #000;
    border: 1px solid #191919;
    padding: .8vw 5vw;
    transition: .1s;
    font-size:1vw;
    text-align: center;
}
button:hover{
    box-shadow: 4px 4px 5px #191919;
}
.form-btn span.wpcf7-spinner{
    display: none;
}
/*個別ページ*/
.content-gallery{
    max-width: 90vw;
    margin: 5vh auto 15vh;
}
.content-gallery h2{
    line-height: 1.5;
    font-size: 1.7vw;
    margin:1.5vw 0;
}
.gallery{
    display: flex;
    flex-wrap: wrap;
    justify-content:center;
}
.gallery-item{
    width: 30vw;
    height: 20vw;
    overflow: hidden;
}
/*プロダクトページ*/
.content-product{
    max-width: 90vw;
    padding: 4vw 0 2vw;
    margin: auto;
    font-family: 'Noto Sans JP', sans-serif;
}
.content-product h3{
    line-height: 1.5;
    font-size: 1.7vw;
    margin:1.5vw 0;
}
.content-product .picture{
    display:flex;
    width: 100%;
    flex-wrap: wrap;
    flex-direction:row;
    justify-content:center;
    position:relative;
    padding:0 0 7vw 0;
}
.content-product .gallery_boxSearchWrap{
    margin: 1vw 0;
}
.content-product .p-sec01-searchArea__select{
    margin: .8vw 0;
}
.content-product .gallery_listItem{
    width: 30vw;
    height: 20vw;
    overflow: hidden;
}
.content-product .gallery_listItem a img{
    position: relative;
    top: -30%;
}
.content-product .gallery_wrap{
    display: flex;
    flex-wrap: wrap;
    margin:1vw 0 5vw;
}
.content-product .gallery_list2{
	margin: 0 2vw;
}
.content-product .gallery_listItem2{
    width: 17vw;
    height: auto;
}
.content-product .gallery_wrap .gallery_listItem2 .blank{
    position: relative;
    text-align:center;
}
.content-product .gallery_wrap .gallery_listItem2 .blank p::after{
    content:"";
    display: block;
    position: absolute;
    background: url(http://tnsrainbow.starfree.jp/tinalog/wp-content/themes/tinalog/images/link_icon.svg);
    background-size: contain;
    width: 25px;
    height: 25px;
    top: 0;
    right: -25px;
    opacity:.8;
}
/* =404ページ・プラポリ
----------------------------------------------- */
.site-content{
	max-width: 40vw;
    margin: 10vh auto 23.2vh;
	min-height: 64vh;
}
.site-content h2{
	margin: 2vw auto;
    line-height: 1.5;
    font-size: 1.7vw;
    max-width: 40vw;
}
.site-content h3{
    font-size: 1.2vw;
    margin: 1vw 0;
    max-width: 80vw;
}
.site-content p{
    font-size: .9vw;
    line-height: 1.5;
}
/*フッター*/
.smoothtop{
    position: relative;
    display: none;
}
.smoothtop.active{
    display: block;
}
.smoothtop img{
    position: fixed;
    width: 2vw;
    height: auto;
    right: 2vw;
    bottom: 2vw;
    z-index: 7;
}
.smoothtop img:hover{
    opacity: .5;
}
.site-footer .inst img{
    width: 2vw;
    margin: 1vw;
}
.site-footer{
    background: #565656;
    text-align: center;
    color: #fff;
}
.site-info{
    padding: 0.2vw;
    font-size: .8vw;
}
.site-info small{
    margin: 0 .5vw;
}
@media screen and (max-width: 768px){
    .pc{
        display: none;
    }
    .sp{
        display: block;
    }
    body{
        font-size: 3vw;
    }
    .breadcrumb{
        font-size: 2.5vw;
    }
    .site-nav.nav-color{
        position: relative;
    }
    .site-name{
        font-size: 5vw;
        top:5vw;
    }
    .site-name.nav-color{
        font-size: 4vw;
        padding: 5vw 4vw;
        background: rgba(201,201,201,.9);
    }
    /*ハンバーガーメニュー*/
    .btn01{
        position: relative;
    }
    .btn-trigger {
        position: fixed;
        width: 17vw;
        height: 5vh;
        z-index: 1001;
        right: 0;
        top: 0;
    }
    .btn-trigger span {
        position: absolute;
        right: 5vw;
        width: 9vw;
        height: 3px;
        background-color: #666;
        border-radius: 4px;
        z-index: 1001;
    }
    .btn-trigger, .btn-trigger span {
        display: inline-block;
        transition: all .5s;
        box-sizing: border-box;
    }
    .btn-trigger span:nth-of-type(1) {
        top: 4vw;
    }
    .btn-trigger span:nth-of-type(2) {
        top: 7vw;
    }
    .btn-trigger span:nth-of-type(3) {
        top: 10vw;
    }
    .btn-trigger.active span:nth-of-type(1) {
        -webkit-transform: translateY(20px) rotate(-45deg);
        transform: translateY(20px) rotate(-45deg);
        top: 2.5vw;
    }
    .btn-trigger.active span:nth-of-type(2) {
        opacity: 0;
    }
    .btn-trigger.active span:nth-of-type(3) {
        -webkit-transform: translateY(-20px) rotate(45deg);
        transform: translateY(-20px) rotate(45deg);
        top: 12.5vw;
    }
    .overlay{
        content: "";
        display: block;
        width: 100vw;
        height: 100vh;
        background: rgba(40, 47, 53, 1);
        top: 0;
        right: 0;
        z-index: 1000;
        transform: translateX(100vw);
        transition: .5s;
        position: fixed;
        padding: 9vh 0;
        font-size: 5vw;
        color: #fff;
    }
    .overlay li{
        text-align: center;
        margin: 5vh 0;
    }
    .overlay.active{
        transform: translateX(0);
        position: fixed;
        transition: .5s;
    }
    button{
        font-size: 3vw;
    }
    button:hover{
        box-shadow: none;
    }
    /*写真部分sp*/
    .photo-content h2{
        font-size: 6vw;
    }
    .photo-content .gallery{
        width: 80vw;
    }
    .photo-content .gallery_item{
        width: 40vw;
        height: 25vw;
    }
    .photo-content .gallery_item::before{
        content: none
    }
    .scroll::after{
        padding: 1vw;
    }
    /*そのほかsp*/
    .other-content h2{
        font-size: 4vw;
    }
    .other-content p{
        font-size: 3vw;
    }
    .other-content .gallery{
        flex-direction: column;
        align-items: center;
    }
    .other-content .gallery_item{
        width: 90vw;
        height: 50vw;
        background: transparent;
    }
    /*お問い合わせsp*/
    .content{
        margin: 16vw auto 10vw;
    }
    .content h2{
        font-size: 4vw;
    }
    .content p{
        font-size: 3vw;
    }
    .form-row{
        width: 75vw;
        flex-direction: column;
    }
    .form-row label{
        padding: 0 2vw;
        font-size: 4vw;
    }
    .form-row *:not(label){
        width: 80vw;
        padding: 2vw;
        font-size: 4vw;
    }
    button{
        padding: 1vw 10vw;
    }
    button:hover{
        box-shadow: none;
    }
    /*フッター*/
    .site-info{
        padding: 0.8vw;
        font-size: .5vw;
    }
    .site-footer .inst img{
        width: 5vw;
    }
    /*ギャラリー個別ページ*/
    .content-gallery h2{
        font-size:4vw;
    }
    .content-gallery{
        margin:3vh auto 5vh;
    }
    .gallery{
        display: flex;
        flex-wrap: wrap;
    }
    .content-gallery .gallery-item {
        width: 50%;
        height: auto;
    }
    /*プラポリ・404*/
    .site-content{
        min-height: 56vh;
        max-width: 90vw;
    }
    .site-content h2{
        font-size: 4vw;
        margin: 4vw 0;
    }
    .site-content h3{
        font-size: 2.7vw;
        margin: 1.5vw 0;
    }
    .site-content p{
        font-size: 1.2vw;
        line-height: 2;
    }
    /*プロダクトページ*/
    .content-product h3{
        font-size:4vw;
    }
    .content-product{
        margin:3vh auto 5vh;
    }
    .content-product .gallery_wrap{
        justify-content: center;
    }
    .content-product .gallery_listItem{
        width: 90vw;
        height: 60vw;
    }
    .content-product .gallery_listItem2{
        width: 84vw;
    }
}

.fadein{
    opacity : 0;
    transform : translate(0, 50px);
    transition : all 600ms ease-in;
}
.scrollin{
    opacity : 1;
    transform : translate(0, 0);
}