﻿@media screen and (max-width:640px){
	
,.@charset "utf-8";


html{
	
}

html,body{
	
}


/*変数宣言*/

:root{
  --mycolor1: #ffffff;
  --mycolor2: #000000;
  --mycolor3: #afafaf;
  --mycolor4: #f5f5f5;
  --mycolor5: #B7994F;
  --mycolor6: #EEE6D5;
  --mycolor7: #C44B6C;

  --myfont-sans-serif: 'Work Sans', 'Zen Kaku Gothic New', "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  --myfont-serif: 'Zen Old Mincho', '游明朝', YuMincho, 'ヒラギノ明朝 ProN', 'Hiragino Mincho ProN', 'HG明朝E', 'ＭＳ Ｐ明朝', 'ＭＳ 明朝', serif;
  
  --myfont-weight-normal: 500;
  --myfont-weight-bold: 700;
  
  --myfont-space-normal: 0.05em;
  
  --myfont-size: 12px;
}

::selection {
    background: var(--mycolor5);
    color: var(--mycolor1);
}

body{
	margin: 0;
	padding: 0;
	font-family: var(--myfont-sans-serif);
	font-size: var(--myfont-size);
	font-weight:var(--myfont-weight-normal);
	color: var(--mycolor2);
	line-height : 2.0;
	letter-spacing: var(--myfont-space-normal);
	font-feature-settings: "palt";
	-webkit-text-size-adjust: 100%;
	overflow-x: hidden;
}

img{
	max-width: 100%;
	height: auto;
	width: auto;
	border-style:none;
	vertical-align: bottom;　
}

/*object-fit:cover IE対応*/
.objectfit{
	object-fit: cover;
	font-family: 'object-fit: cover;'
}

.thumb{
	margin:0 !important;
}

address {
	font-style: normal;
}

a{
	color: var(--mycolor2);
	text-decoration:none;
	transition: .3s ease-out; 
}

a:hover {
	color: var(--mycolor2);
	text-decoration:none;
}

a:visited {
	color: var(--mycolor2);
	text-decoration:none;
}

p{
	margin:1em 0;
}

ul,li {
	list-style-type: none;
	padding:0px;
	margin:0px;
}

ol{
	padding-left:1.5em;
}

ol li {
	list-style-type: decimal;
	padding: 0;
	list-style-position: outside;
}

input ,select{
	vertical-align:middle;
}

h1,h2,h3,h4,h5 {
	margin: 0;
	padding: 0;
}

nav{
	line-height:1;
	margin:0;
	padding:0;
}

small{
	font-size: var(--myfont-size);
}



/*アニメーション*/

.animation-box{
	transform:translateY(20px);
	opacity:0;
	filter: blur(10px);
}

.animation-box.active{
	transition: transform 0.5s 0s ease-out , opacity 1s 0s ease-out , filter 1s 0s ease-out;
	transform:translateY(0px);	
	opacity:1;
	filter: blur(0px);
}

.thumb:after{
	content: '';
    background-color: var(--mycolor1);
    transform: scale(1, 0);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 0;
}

.active.thumb::after{
	animation: img-slide 1s ease;   
}

@keyframes img-slide {

  0% {
    transform: scale(1, 1);
	transform-origin: left top;
  }
  100% {
    transform: scale(1, 0);
	transform-origin: left top;
  }
  
}


.hover1{
	position:relative;
	background: linear-gradient(to right, var(--mycolor5), var(--mycolor5) 50%, var(--mycolor2) 50%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-size: 200% 100%;
	background-position: 100%;
	overflow: hidden;
}

.hover1:hover{
	background-position: 0 100%;
}


/*ローディング*/


#loading {
	width: 100%;
	height: 100%;
	position: fixed;
	z-index: 100001;
	background-color:var(--mycolor1);
	display:flex;
	flex-direction:column;
	justify-content:center;
	align-items:center;
	top:0;
}

#loading h1{
	width: 20vw;
    height: 27.7vw;
    background-image: url(../images/logo3.svg);
    display: block;
    background-size: cover;
    text-indent: -9999px;
    overflow: hidden;
}





/*ヘッダー*/

#header{
	width: calc(100% - 30px);
	position: fixed;
	z-index: 2;
	top: 0;
	display: flex;
	justify-content: center;
	padding: 10px 15px;
	transition: .3s ease-out; 
}

#toplogo a{
	display:block;
	text-indent:-9999px;
	overflow: hidden;
	background-size:cover;
	width: 24px;
    height: 23px;
	margin:0;
	background-image: url(../images/logo2.svg);
}


#toplogo a:hover{
	opacity:0.5 !important;
}

#onlineshop{
	margin: 0;
	position: absolute;
	top: 16px;
	right: 53px;
	line-height: 1;
}

#onlineshop a:hover{
	opacity:0.5;
}

.header-0{
	background-color:transparent;
}

.header-500,
.lo-header{
	background-color: var(--mycolor1);
}

.header-0 #toplogo a{
	opacity:0;
	pointer-events: none;
	cursor:unset;
}

.header-500 #toplogo a,
.lo-header #toplogo a{
	opacity:1;
}

.header-0 #onlineshop a{
	color: var(--mycolor1);
}

.header-500 #onlineshop a,
.lo-header #onlineshop a{
	color: var(--mycolor2);
}




/*メインメニュー*/

#main-menu{
	padding: 8vh 5vw;
    display: flex;
    flex-direction: column;
	justify-content: space-between;
    height: 84vh;
	background-color: var(--mycolor1);
}

#main-menu h1{
	background-image: url(../images/logo1.svg);
	background-size:cover;
	text-indent:-9999px;
	overflow: hidden;
	width: 180px;
    height: 37px;
	margin: 0 0 5vh 0;
}

.menu1{
	margin: 0 0 2.2em 0;
}

.menu1 li{
    font-size: 1.1em;
	margin: 0 0 1.1em 0;
}


.menu2 li{
	font-size: 1.1em;
	margin: 0 0 1.1em 0;
}

.menu2:before{
	content: "";
	display: block;
	width: 2.2em;
	height: 1px;
	margin: 0 0 2.2em 0;
	background-color: var(--mycolor2);
}

.menu2 ul{
	display:flex;
	flex-wrap: wrap;
	margin: 1.1em 0 0 0;
}

.menu2 ul li{
	font-size: 0.85em;
	margin: 0 1.5em 1em 0;
}


/*SNS*/

.sns li a{
	display:block;
	background-size: cover;
    text-indent: -9999px;
    overflow: hidden;
}

.sns .facebook a{
	background-image: url(../images/icon-fb.svg);
}

.sns .instagram a{
    background-image: url(../images/icon-in.svg);
}

.sns .x a{
    background-image: url(../images/icon-x.svg);
}

.sns .line a{
    background-image: url(../images/icon-line.svg);
}

.sns .youtube a{
    background-image: url(../images/icon-youtube.svg);
}

.sns .note a{
    background-image: url(../images/icon-note.svg);
}

.sns .web a{
    background-image: url(../images/icon-web.svg);
}


.sns a:hover{
    opacity:0.5;
}



.sns1{
	display:flex;
	flex-wrap:nowrap;
	align-items: center;
}

.sns1 li{
	margin:0 5px 0 0;
	order:1;
}

.sns1:before{
	content:"follow us";
	font-size: 0.9em;
	margin:0 1.1em 0 0;
}

.sns1:after{
	content:"";
	display:block;
	width:2.2em;
	height:1px;
	background-color:var(--mycolor2);
	margin:0 1.1em 0 0;
}

.sns1 li a{
	width: 25px;
    height: 25px;
}



.sns2{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.sns2 li{
	margin:0 5px 0 0;
}

.sns2:before{
	content: "follow us";
	font-size: 0.9em;
	margin: 0 0 0.5em 0;
	width: 100%;
	text-align: center;
}

.sns2 li a{
	width: 25px;
    height: 25px;
}




/*フッター*/


#footer{
	background-color:var(--mycolor4);
	padding: 60px;
	display:flex;
	flex-direction: column;
	align-items: center;
	position:relative;
}

#footer h1 a{
	display: block;
	width: 90px;
    height: 126px;
    background-image: url(../images/logo3.svg);
    background-size: cover;
    text-indent: -9999px;
    overflow: hidden;
}

#footer h1 a:hover{
	opacity:0.5;
}


#footer address{
	font-size: 1.5em;
	line-height:1.6;
	margin:1.5em 0 0 0;
}

#footer .meta{
	font-size: 0.9em;
	line-height:1.6;
	margin:0.5em 0 0 0;
	text-align:center;
}

#footer .sns{
	margin:1em 0 0 0;
}

#footer #copyright{
    font-size: 0.9em;
	margin:2em 0 0 0;
	line-height:1;
}

#footer .page-top{
    position: absolute;
    right: 30px;
    top: 120px;
    margin: 0;
    transform: rotate(90deg);
    transform-origin: right bottom;
}

#footer .page-top a{
	font-size:0.9em;
	display:flex;
	align-items:center;
	line-height:1;
}

#footer .page-top a:before{
	content:"";
	width:30px;
	height:1px;
	display:block;
    background-color: var(--mycolor2);
	margin:0 1em 0 0;
}

#footer .page-top a:hover:before{
	transition: transform 0.2s 0s ease-out;
	transform: scaleX(1.5);
	transform-origin:right bottom;
}




/*ボタン*/

.button1{
	width: fit-content;
	margin:0 auto;
}

.button1 a{
	font-size:1.2em;
    display: block;
    margin: 0;
    line-height: 1;
    text-align: center;
	position:relative;
	display:inline-block;
	background: linear-gradient(to right, var(--mycolor5), var(--mycolor5) 50%, var(--mycolor2) 50%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-size: 200% 100%;
	background-position: 100%;
	overflow: hidden;
}

.button1 a:after{
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	margin: 0.5em 0 0 0;
	background-color: var(--mycolor2);
	background: linear-gradient(to right, var(--mycolor5), var(--mycolor5) 50%, var(--mycolor2) 50%);
	background-clip: border-box;
	-webkit-background-clip: border-box;
	-webkit-text-fill-color: transparent;
	background-size: 200% 100%;
	background-position: 100%;
	overflow: hidden;
	transition: .3s .1s ease-out;
}

.button1 a:hover{
	background-position: 0 100%;
}

.button1 a:hover:after{
	background-position: 0 100%;
}


/*リスト*/



.list1{
	margin: 0 -1%;
	display:flex;
	flex-wrap:wrap;
}

.list1>div{
	width:48%;
	margin: 0 1% 8% 1%;
}

.list1>div a{
	display:flex;
	flex-direction:column;
}

.list1 .title{
	order:2;
	font-family: var(--myfont-serif);
	font-weight: var(--myfont-weight-normal);
	font-size: 1em;
	line-height:1.6;
	margin: 0;
}

.list1 .meta{
	order:1;
	font-size: 0.8em;
	line-height:1;
	margin: 2em 0 1em 0;
}

.list1 .meta p{
	margin: 0;
}

.list1 .meta p:before{
	content: "";
	display: block;
	width: 1.5em;
	height: 1px;
	background-color: var(--mycolor2);
	margin: 0.7em 0 1.2em 0;
}


.list1 .meta ul{
	display:flex;
	flex-wrap:wrap;
	margin: 0;
}

.list1 .meta ul li{
	margin:0 0.5em 0.5em 0;
}

.list1 .thumb{
	order:0;
}

.list1 a .thumb:before{
	content: "more";
	color:var(--mycolor1);
	font-size: 1.2em;
	width: 100%;
	height: 100%;
	background-color: rgba(219,172,66,0.4);
	position: absolute;
    top: 0;
	display:flex;
	align-items: center;
    justify-content: center;
	opacity:0;
	transition: 0.3s ease-out;
}

.list1 .thumb img{
	width:100%;
	height:100%;
}

.list1 a:hover .thumb:before{
	opacity:1;
}




.list2{
	margin: 0 -1%;
	display:flex;
	flex-wrap:wrap;
}

.list2>div{
	width:98%;
	margin: 0 1% 12% 1%;
	display:flex;
	flex-direction:column;
}

.list2 .title{
	order:1;
	font-family: var(--myfont-serif);
	font-weight: var(--myfont-weight-normal);
	font-size: 1.4em;
	line-height:1.6;
	text-align: center;
	margin: 20px 0 20px 0;
}

.list2 .description{
	order:2;
	margin: 0 auto 20px auto;
	width:90%;
}

.list2 .meta{
	order:3;
	font-size: 0.9em;
	line-height:1.6;
	margin: 0 auto 20px auto;
	width:90%;
}

.list2 .thumb{
	order:0;
}

.list2 .thumb img{
	width:100%;
	height:100%;
}

.list2 .chart{
	order:4;
	margin: 0 auto 40px auto;
	width:50%;
}

.list2 .button1{
	order:5;
}




.list3{
	margin: 0 0 40px 0;
}

.list3 dt{
	padding:0 0 0 0;
	margin:0 0 1.5em 0;
	display:flex;
	cursor: pointer;
	transform:translateY(30px);
	opacity:0;
}

.list3 dt:before{
	content: 'Q';
    font-size: 2.5em;
    font-family: var(--myfont-serif);
	color:var(--mycolor3);
	line-height: 1;
	display:block;
    margin: -0.25em 20px 0 0;
	transition: 0.3s ease-out;
}

.list3 dt:hover:before{
	color:var(--mycolor5);
}

.list3 dt.active{
	transition: transform 1s 0s ease-out , opacity 1s 0s ease-out;
	transform:translateY(0px);	
	opacity:1;
}

.list3 dd{
	margin:0 0 2.2em 0;
	padding:0 0 2em 0;
	position:relative;
	display:flex;
	align-items: flex-start;
}

.list3 dd p{
	margin:0;
}

.list3 dd:before{
	content: 'A';
    font-size: 2.5em;
    font-family: var(--myfont-serif);
	color:var(--mycolor5);
    line-height: 1;
    display: block;
    margin: -0.25em 20px 0 0;
}

.list3 dd:after{
	content: "";
    width: 100%;
    height: 1px;
    background: linear-gradient(-90deg, var(--mycolor2) 0%, var(--mycolor2) 20em, var(--mycolor3) 20em, var(--mycolor3) 100%);
    display: block;
    position: absolute;
    bottom: 0;
    right: 0;
}

.list3 a{
	font-weight:var(--myfont-weight-bold);
	background: linear-gradient(to right, var(--mycolor3), var(--mycolor3) 50%, var(--mycolor5) 50%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-size: 200% 100%;
	background-position: 100%;
	overflow: hidden;
}

.list3 a:hover {
	background-position: 0 100%;
}




/*タイトル*/

.title1{
    font-size: 1em;
	font-weight: var(--myfont-weight-normal);
    line-height: 1;
	margin:0;
	display:flex;
	align-items: center;
}

.title1:before{
	content: "";
	display: block;
	width: 2.2em;
	height: 1px;
	background-color: var(--mycolor2);
	margin: 0 1.1em 0 0;
}

.title2{
    font-size: 2em;
    line-height: 1.8;
    font-weight: var(--myfont-weight-normal);
	font-family: var(--myfont-serif);
	margin:0;
}



/*トップMAIN VISUAL*/

#top-mainvisual{
	width: 100%;
	position:relative;
	height:100svh;
}

.vegas-slide:after{
	content:"";
	width:100%;
	height:100%;
	display:block;
	position: absolute;
    top: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%);
}

#top-mainvisual h1{
	background-image: url(../images/logo1-w.svg);
	background-size: cover;
	text-indent: -9999px;
	overflow: hidden;
	width: 126px;
	height: 26px;
	position: absolute;
	top: 15px;
	left: 15px;
}

#top-mainvisual #copy{
	font-family: var(--myfont-serif);
	font-weight: var(--myfont-weight-normal);
	font-size: 8vw;
	text-align:right;
	color: var(--mycolor1);
	line-height:1;
	position: absolute;
	bottom: 9vw;
	right: 6vw;
}

#top-mainvisual #copy span{
	margin:0.7em 0 0 0;
}

.row span{
	display:block;
	transform:translateY(30px);
	filter: blur(30px);
	opacity:0;
}

.row.active .row-0{
	transition: 2s 0s ease-out;
	transform:translate(0px) !important;	
	filter: blur(0px) !important;
	opacity:1 !important;
}

.row.active .row-1{
	transition: 2s 2s ease-out;
	transform:translate(0px) !important;
	filter: blur(0px) !important;
	opacity:1 !important;
}

.row.active .row-2{
	transition: 2s 4s ease-out;
	transform:translate(0px) !important;
	filter: blur(0px) !important;	
	opacity:1 !important;
}

.row.active .row-3{
	transition: 2s 6s ease-out;
	transform:translate(0px) !important;
	filter: blur(0px) !important;	
	opacity:1 !important;
}

.row.active .row-4{
	transition: 2s 8s ease-out;
	transform:translate(0px) !important;
	filter: blur(0px) !important;	
	opacity:1 !important;
}

.row.active .row-5{
	transition: 2s 10s ease-out;
	transform:translate(0px) !important;
	filter: blur(0px) !important;	
	opacity:1 !important;
}

.row.active .row-6{
	transition: 2s 12s ease-out;
	transform:translate(0px) !important;
	filter: blur(0px) !important;	
	opacity:1 !important;
}

.row.active .row-7{
	transition: 2s 14s ease-out;
	transform:translate(0px) !important;
	filter: blur(0px) !important;	
	opacity:1 !important;
}

.row.active .row-8{
	transition: 2s 16s ease-out;
	transform:translate(0px) !important;
	filter: blur(0px) !important;	
	opacity:1 !important;
}

.row.active .row-9{
	transition: 2s 18s ease-out;
	transform:translate(0px) !important;
	filter: blur(0px) !important;	
	opacity:1 !important;
}



/*トップアバウト*/

#top-about{
	margin: 10vh 15vw;
}

#top-about .description{
	text-align: justify;
	margin:0 auto 3em auto;
}



/*トップトピックス*/

#top-topics{
	margin: 0 auto 60px auto;
	width:90%;
}

#top-topics header{
	margin: 0 0 40px 0;
}


/*トッププロダクト*/

#top-product{
	margin: 0 auto calc(60px - 12%) auto;
}

#top-product header{
	margin: 0 0 60px 0;
}

#top-product .list2{
	width:90%;
	margin: 0 auto;
}



/*セレクション*/

.selection1{
	display: flex;
	flex-direction: column;
}

.selection1>p{
	width:100%;
	height:40vh;
	margin: 0 0 0 0;
	order:0;
	position:relative;
}

.selection1>p:before{
	content: "";
	display: block;
	height: 100%;
	width: 100%;
	position: absolute;
	bottom: 0;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 100%);
	z-index: 1;
}

.selection1>p img{
	width: 100%;
    height: 100%;
}

.selection1>div{
	display: flex;
	align-items: end;
	justify-content: space-between;
	width: 90%;
    margin: 0 auto 0 auto;
	order:1;
}


.selection1>div>div{
	display: flex;
	flex-direction: column;
	width: 70%;
	margin: -2em 0 0 0;
	z-index: 1;
}

.selection1 .title1{
	order:1;
	margin: 0 0 20px 0;
}

.selection1 .title2{
	order:0;
	margin: 0 0 20px 0;
}

.selection1 .description{
	order:2;
}

.selection1 .button1{
	margin:0;
}



.selection2{
	display: flex;
	flex-direction: column-reverse;
	margin:0 auto;
}

.selection2>p{
	width:100%;
	height:35vh;
	margin: 0 0 0 0;
	position:relative;
}

.selection2>p img{
	width: 100%;
    height: 100%;
}

.selection2>div{
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 85%;
	margin: 30px auto;
}

.selection2 .title1{
	order:1;
	margin: 0 0 20px 0;
}

.selection2 .title2{
	order:0;
	margin: 0 0 20px 0;
}

.selection2 .description{
	order:2;
}

.selection2 .button1{
	order:3;
	margin:25px 0 0 0;
}



/* アクセス*/

#access{
	display:flex;
	flex-direction: column-reverse;
}

#access>div{
	width:85%;
	margin: 40px auto;
	display:flex;
	flex-direction: column;
	justify-content: center;
}

#access .title1{
	margin: 0 0 25px 0;
}

#access .meta{
	font-size:0.9em;
}

#access .googlemap{
	margin:25px 0 0 0;
}

#access .googlemap a{
	font-size:0.9em;
}

#access #map{
	position: relative;
    width: 100%;
    padding-top: 45vh;
    height: 0;
	margin:0;
}

#map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}




/*下層ページ*/



/*アーカイブ*/

.lo-archive,
.lo-single,
.lo-page{
	width:90%;
	margin: 0 auto 40px auto;
}

.lo-archive-header,
.lo-single-header,
.lo-page-header{
	margin: 100px auto 40px auto;
}

.eyecatch{
	margin: 44px auto 40px auto;
	height: 40vh;
	background-size: cover;
	position:relative;
	z-index: 0;
	color: var(--mycolor1);
}

.eyecatch:after{
	content: "";
	display: block;
	height: 100%;
	width: 100%;
	position: absolute;
	bottom: 0;
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.2) 100%);
	z-index: 1;
}

.eyecatch>div{
	position:absolute;
	bottom:0;
	left:0;
	margin:0 0 3% 3%;
	color: var(--mycolor1);
	z-index:2;
}

.eyecatch .title1:before{
	background-color:var(--mycolor1);
}

.lo-title{
	width:94%;
	display:flex;
	flex-direction: column;
}

.lo-title .title1{
	order:1;
	margin: 0 0 0 0;
	font-size: 0.9em;
}

.lo-title .title2{
	order:0;
	margin: 0 0 10px 0;
	font-size: 1.4em;
}

.lo-archive .description{
	width:70%;
	margin: 40px 0 40px 0;
}



/*カテゴリーリスト*/

.cat-list{
    margin: 0 0 20px 0;
	font-size:0.8em;
    display: flex;
    flex-wrap: wrap;
	align-items: center;
}

.cat-list:before{
	content:"category";
	display:block;
	line-height:1;
	font-size:1.1em;
	color: var(--mycolor3);
	margin:0 0 1em 0;
}

.cat-list li{
    margin: 0 0 0.75em 1em;
	padding:0.2em 0 0.2em 1em;
    line-height: 1;
	border-left: 1px solid var(--mycolor2);
}

.cat-list li:last-child{
	padding:0.2em 1.5em 0.2em 1.5em;
	border-right: 1px solid var(--mycolor2);
}




/*シングルヘッダー*/

.lo-single-header .meta{
	margin: -2px 0 0 0;
	display:flex;
	flex-wrap:wrap;
	align-items: center;
	font-size: 0.9em;
}

.lo-single-header .meta:before{
	content: "";
	display: block;
	width: 2.2em;
	height: 1px;
	background-color: var(--mycolor2);
	margin: 0 1.1em 0 0;
}

.eyecatch .meta:before {
	background-color: var(--mycolor1);
}

.lo-single-header .meta p,
.lo-single-header .meta ul{
	margin: 0 0.5em 0 0;
}

.lo-single-header .meta .cat{
	display:flex;
	flex-wrap:wrap;
}

.lo-single-header .meta .cat li{
	margin: 0 0.5em 0 0;
}

.lo-single-footer{
	margin: 20px auto 40px auto;
	max-width:900px;
}




/*add to any*/

.addtoany_content{
	margin: 0 0 20px 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-end;
}

.addtoany_shortcode{
	margin: 0 !important;
    display: flex;
    align-items: center;
}

.addtoany_shortcode:before{
	content:"shere";
	display:block;
	width:fit-content;
	margin: 0 1.1em 0 0;
	order:0;
}

.addtoany_shortcode:after{
	content: "";
	display: block;
	width: 2.2em;
	height: 1px;
	background-color: var(--mycolor2);
	margin: 0 1.1em 0 0;
	order:1;
}

.addtoany_shortcode>div{
	margin: 0 !important;
	order:2;
}

.addtoany_content a{
	line-height: 16px;
}

.addtoany_content a:hover{
	opacity:0.5;
}


/*ページャー*/

.pager ul{
	display:flex;
	flex-wrap:nowrap;
	justify-content: space-between;
	margin: 0;
}

.pager a{
	display:flex;
	flex-wrap:nowrap;
}

.pager .next a:after{
	content:"／";
    display: block;
	margin:0 0 0 10px;
}

.pager .prev a:before{
	content:"／";
    display: block;
	margin:0 10px 0 0;
}



/*記事*/

.single-body{
	margin: 0 auto 0 auto;
	padding: 0 0 40px 0;
    border-bottom: 1px solid var(--mycolor3);
}

.single-body>*:first-child{
	margin-top:30px !important;	
}

.single-body h1{
    font-size: 1.35em;
	font-family: var(--myfont-serif);
	font-weight: var(--myfont-weight-normal);
    line-height: 1.6;
	margin:30px 0 15px 0;	
}

.single-body h2{
    font-size: 1.25em;
    font-family: var(--myfont-serif);
	font-weight: var(--myfont-weight-normal);
    line-height: 1.6;
	margin:30px 0 15px 0;	
}

.single-body h3{
    font-size: 1.1em;
    font-family: var(--myfont-serif);
	font-weight: var(--myfont-weight-normal);
    line-height: 1.6;
	margin:15px 0 10px 0;
}

.single-body a{
	font-weight:var(--myfont-weight-bold);
	background: linear-gradient(to right, var(--mycolor3), var(--mycolor3) 50%, var(--mycolor5) 50%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-size: 200% 100%;
	background-position: 100%;
	overflow: hidden;
}

.single-body a:hover {
	background-position: 0 100%;
}

.single-body a:visited {
	background: linear-gradient(to right, var(--mycolor5), var(--mycolor5) 50%, var(--mycolor3) 50%);
}

.single-body p{
	margin:20px 0 20px 0;
	text-align:justify
}

.single-body ul,
.single-body ol,
.single-body dl,
.single-body table{
	margin:15px 0 15px 0;
}

.single-body>div{
	margin:30px 0 30px 0;
}

.single-body img{
	width: 100%;
	height: auto;
	display:block;
	margin:0 auto;
}

.single-body .vertical-img{
	width: 65%;
	text-align:center;
}

.single-body .youtube{
	width:100%;
	position: relative;
	padding-top: 56.25%;
	margin: 15px auto 15px auto;
}

.single-body .youtube iframe{
    position: absolute;
    top: 0;
    right: 0;
    width: 100% !important;
    height: 100% !important;
}


/*スライド*/

.single-body .bx-controls{
	display:flex;
	align-items: center;
	justify-content: flex-end;
	margin: 10px 0 0 0;
}

.single-body .bx-controls-direction{
	display:flex;
	order:1;
}

.single-body .bx-controls a{
	font-weight: var(--myfont-weight-normal);
	position: relative;
	background: linear-gradient(to right, var(--mycolor5), var(--mycolor5) 50%, var(--mycolor2) 50%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-size: 200% 100%;
	background-position: 100%;
	overflow: hidden;
	margin:0 0 0 20px;
	display:flex;
}

.single-body .bx-controls .bx-prev:before{
	content: "／";
	display: block;
	margin: 0 10px 0 0;
}

.single-body .bx-controls .bx-next:after{
	content: "／";
	display: block;
	margin: 0 0 0 10px;
}

.single-body .bx-controls a:hover{
	background-position: 0 100%;
}

.single-body .bx-pager{
	width: auto;
	position: relative;
	bottom: auto;
	color: var(--mycolor2);
	font-size:0.9em;
	font-weight: var(--myfont-weight-normal);
	font-family: var(--myfont-sans-serif);
	margin:0 10px 0 0;
}

/*CTAボタン*/

.cta a{
	padding: 15px 30px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background-clip: unset;
	-webkit-background-clip: unset;
	-webkit-text-fill-color: unset;
	background: linear-gradient(to right, var(--mycolor5), var(--mycolor5) 50%, var(--mycolor4) 50%);
	background-size: 200% 100%;
	background-position: 100%;
}

.cta a:visited{
	color: var(--mycolor1);
}

.cta h1{
	margin:0;
	font-size:1.1em;
}


/*リスト*/

.liststyle1{
    padding: 30px 30px;
    border-radius: 5px;
    border: 1px solid var(--mycolor3);
}

.liststyle1 li{
	margin:4px;
	padding-left: 1.1em;
    text-indent: -1.6em;
}

.liststyle1 li:before{
	content: "・";
	margin-right:0.5em;
}

.liststyle2{
    padding: 30px 30px;
    border-radius: 5px;
	background-color:var(--mycolor4);
}

.liststyle2 li{
	margin:4px;
	padding-left: 1.1em;
    text-indent: -1.6em;
}

.liststyle2 li:before{
	content: "・";
	margin-right:0.5em;
}

.liststyle3 li{
	padding-left: 1.2em;
    text-indent: -1.5em;
}

.liststyle3 li:before{
	content: "＊";
	margin-right:0.4em;
}

.liststyle4 li{
	padding-left: 1.1em;
    text-indent: -1.6em;
}

.liststyle4 li:before{
	content: "・";
	margin-right:0.5em;
}

.dlstyle1{
	display:flex;
	flex-wrap: wrap;
}

.dlstyle1 dt{
	padding: 0 10px 10px 0;
    width: 5em;
}

.dlstyle1 dd{
	padding: 0 0 10px 0;
    width: calc(100% - 5em - 10px);
    margin: 0;
}

.dlstyle2{
	display:flex;
	flex-wrap: wrap;
}

.dlstyle2 dt{
	padding: 0 20px 20px 0;
    width: 10em;
}

.dlstyle2 dd{
	padding: 0 0 20px 0;
    width: calc(100% - 10em - 20px);
    margin: 0;
}



/*テーブル*/

.tablestyle1{
	border-collapse: separate;
	border-spacing:0px 0px;
	width:100%;
	text-align:left;
	font-size:0.9em;
}

.tablestyle1 th{
	line-height:1.5;
	font-weight: var(--myfont-weight-normal);
	background-color:var(--mycolor4);
	padding:20px;
}

.tablestyle1 td{
	line-height:1.5;
	padding:20px;
	background-color:var(--mycolor1);
	border-bottom: 1px solid var(--mycolor3);
}

.tablestyle2{
	border-collapse: separate;
	border-spacing:1px 4px;
	width:100%;
	text-align:left;
	font-size:0.9em;
}

.tablestyle2 th{
	line-height:1.5;
	font-weight: var(--myfont-weight-normal);
	background-color:var(--mycolor5);
	color:var(--mycolor1);
	padding:20px;
}

.tablestyle2 tr:nth-child(odd){
	background-color:var(--mycolor4);
}

.tablestyle2 tr:nth-child(even){
	background-color:var(--mycolor1);
}

.tablestyle2 td{
	line-height:1.5;
	padding:16px 20px;
	margin-top:10px;
}

.small{
	font-size:0.85em;
}

.border1{
	border-left: 1px solid var(--mycolor3);
	padding: 0 0 0 2em;
}





/*アサイド*/

aside{
	width: 90%;
	margin:40px auto 20px auto;
}

aside .title1{
	margin:0 0 40px 0;
}




/*大きさ・カラー*/

.large-txt{
	font-size:2.0em;
}

.red-txt{
	color:var(--mycolor7);
}


/*フォーム共通*/

.mailform dt{
	font-size:0.9em;	
}

.mailform dd{
	margin:0 0 10px 0;
}

.mailform ul{
	margin:0 0 30px 0;
	border:none;
	padding:0;
}

.mailform ul li{
	margin:10px 0 10px 0;
}

.mailform ul li span{
	display:block;
	margin:0 0 6px 0;
	font-size:0.9em;
}

.required{
	color:var(--mycolor7);
	font-size:0.9em;
	margin-left:5px;
}

.annotation1 {
	display: block;
    font-size: 0.9em;
    margin: 0 0 5px 0;
}

.annotation2 {
	display: block;
    font-size: 0.9em;
    margin: -15px 0 5px 0;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="date"],
textarea{
	font-family: var(--myfont-sans-serif);
	font-weight:normal;
	font-size:1.0em;
	letter-spacing: 0.15em;
	outline: none;
	padding-top: 10px;
	padding-bottom:10px;
	padding-left:10px;
	padding-right:10px;
	background-color:var(--mycolor4);
	outline: none;
	border: none;
	width: 100% !important;
	box-sizing: border-box;
	-webkit-appearance: none;
	border-radius: 5px;
}

input[name="姓"] , input[name="セイ"]{
	width:calc(50% - 5px) !important;
	margin-right:10px;
	display:inline-block;
}

input[name="名"] , input[name="メイ"]{
	width:calc(50% - 5px) !important;
	display:inline-block;
}

select{
	font-family: var(--myfont-sans-serif);
	appearance:none;
	font-weight:normal;
	font-size:1.0em;
	outline: none;
	margin:0;
	padding-top: 10px;
	padding-bottom:10px;
	padding-left:10px;
	padding-right:10px;
	background-color:var(--mycolor4);
	outline: none;
	border: none;
	width: 100% !important;
	-webkit-appearance: none;
	border-radius: 5px;
}

textarea {
    height: 280px !important;
}

input[type="submit"]{
	display:block;
	width:100%;
	color:var(--mycolor2);
	background-color:var(--mycolor4);
	border: none;
	font-size:1em;
	font-family: var(--myfont-sans-serif);
	line-height:1;
	text-align:center;
	padding:15px 0;
	margin:30px auto 0 auto;
	border-radius:5px;
	-webkit-appearance: none;
	transition: .3s ease-out;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
input[type="date"]:focus,
textarea:focus,
select:focus{
	background-color:var(--mycolor6);
}

input[type="submit"]:hover{
	color:var(--mycolor1);
	background-color:var(--mycolor5);
}

input:-webkit-autofill {
	box-shadow: 0 0 0px 1000px var(--mycolor6) inset;
}

.radiobutton .wpcf7-form-control{
	display:flex;
	flex-wrap: wrap;
	margin-right:-1% !important;
}

.radiobutton .wpcf7-list-item{
	margin:0 1% 10px 0 !important;
	width:32.3%;
}

.radiobutton .wpcf7-list-item input{
	display: none;
}

.radiobutton .wpcf7-list-item .wpcf7-list-item-label{
	display: block;
	cursor: pointer;
	margin: 0;
	padding: 10px;
	background: var(--mycolor4);
	color: var(--mycolor2);
	text-align: center;
	line-height: 1.4;
	transition: .2s;
	border-radius: 5px;
	font-size: 0.9em;
}

.radiobutton .wpcf7-list-item input[type="radio"]:checked + .wpcf7-list-item-label{
	color: var(--mycolor1);
	background-color: var(--mycolor5);
}

.checkbox .wpcf7-form-control{
	display:flex;
	flex-wrap: wrap;
	margin-right:-1% !important;
}

.checkbox .wpcf7-list-item{
	margin:0 1% 10px 0 !important;
	width:49%;
}

.checkbox .wpcf7-list-item input{
	display: none;
}
.checkbox .wpcf7-list-item .wpcf7-list-item-label{
	display: block;
	cursor: pointer;
	margin: 0;
	padding: 10px;
	background: var(--mycolor4);
	color: var(--mycolor2);
	text-align: center;
	line-height: 1.4;
	transition: .2s;
	border-radius: 5px;
	font-size: 0.9em;
}

.checkbox .wpcf7-list-item input[type="checkbox"]:checked + .wpcf7-list-item-label{
	color: var(--mycolor1);
	background-color: var(--mycolor5);
}

.form-notice{
	font-size:0.9em;
	margin:0 0 0 20px !important;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
    background-color: var(--mycolor4);
    border-radius: 10px;
    border: none;
    margin: 0 0 0 0;
    padding: 20px;
	text-align: center;
}

.wpcf7-not-valid-tip {
    color: var(--mycolor7);
    font-size: 0.9em;
}

.wpcf7-response-output{
    border: none !important;
    text-align: center !important;
}

.single-body .inv-recaptcha-holder .grecaptcha-badge{
	margin:0 auto;
}

.wpcf7 .ajax-loader {
    visibility: hidden;
    display: block;
    background-color: var(--mycolor4);
    opacity: .75;
    width: 24px;
    height: 24px;
    border: none;
    border-radius: 100%;
    padding: 0;
    margin: 20px auto;
    position: relative;
}

.wpcf7-spinner {
    display: block;
    background-color: var(--mycolor3);
    opacity: 1;
    margin: 20px auto 20px auto;
}

.acceptance .wpcf7-list-item {
	margin: 0;
}

.grecaptcha-badge{
	visibility: hidden;
}





/*サンクス*/

#lo-thanks-page header{
	display:none;
}

#lo-thanks-page .single-body{
	width:100%;
	margin:200px auto 200px auto;
	display:flex;
	flex-direction:column;
	justify-content:center;
	border:none;
	padding:0;
}

#lo-thanks-page .single-body h1{
	font-size: 12vw;
    margin: 0 0px 15px 0;
	line-height: 1;
	text-align:center;
}

#lo-thanks-page .single-body p{
	margin:0 0 30px 0;
	text-align:center;
	font-size: 0.9em;
}

#lo-thanks-page .single-body .button1{
	margin:0 auto;
}

#lo-thanks-page .single-body .button1 a{
	margin:0 auto;
}

#lo-thanks-page .single-body .button1 a{
	font-size:1em;
	font-weight: var(--myfont-weight-normal);
	background: linear-gradient(to right, var(--mycolor5), var(--mycolor5) 50%, var(--mycolor2) 50%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-size: 200% 100%;
	background-position: 100%;
}

#lo-thanks-page .single-body .button1 a:hover{
	background-position: 0 100%;
}






/*404*/

#lo-notfound-page header{
	display:none;
}

#lo-notfound-page .single-body{
	width:100%;
	margin:200px auto 200px auto;
	display:flex;
	flex-direction:column;
	justify-content:center;
	border:none;
	padding:0;
}

#lo-notfound-page .single-body h1{
	font-size: 8vw;
    margin: 0 0px 20px 0;
	line-height: 1;
	text-align:center;
}

#lo-notfound-page .single-body p{
	margin:0 0 30px 0;
	font-size:0.9em;
	text-align:center;
}

#lo-notfound-page .single-body .button1{
	margin:0 auto;
}

#lo-notfound-page .single-body .button1 a{
	margin:0 auto;
}

#lo-notfound-page .single-body .button1 a{
	font-size:1em;
	font-weight: var(--myfont-weight-normal);
	background: linear-gradient(to right, var(--mycolor5), var(--mycolor5) 50%, var(--mycolor2) 50%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-size: 200% 100%;
	background-position: 100%;
}

#lo-notfound-page .single-body .button1 a:hover{
	background-position: 0 100%;
}






/*ローディング*/

.loader,
.loader:after {
  border-radius: 50%;
  width: 20px;
  height: 20px;
}
.loader {
   margin: 0 auto 15px auto;
  font-size: 10px;
  position: relative;
  text-indent: -9999em;
  border-top: 5px solid var(--mycolor3);
  border-right: 5px solid var(--mycolor3);
  border-bottom: 5px solid var(--mycolor3);
  border-left: 5px solid var(--mycolor1);
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load8 1.1s infinite linear;
  animation: load8 1.1s infinite linear;
}

@-webkit-keyframes load8 {
  
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
  
}

@keyframes load8 {
 
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
  
}

}


