﻿@media screen and (min-width: 1000px){
	
,.@charset "utf-8";


html{
	
}

html,body{
	
}


/*変数宣言*/

:root{
  --mycolor1: #ffffff;
  --mycolor2: #282828;
  --mycolor3: #a5a5a5;
  --mycolor4: #dadada;
  --mycolor5: #f9f9f6;
  --mycolor6: #fa643c;
  --mycolor7: #fca28a;
  --mycolor8: #feddd5;
  --mycolor9: #FD3058;

  
  --myfont-sans-serif: 'Inter', 'Zen Kaku Gothic New', "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  --myfont-sans-serif2: 'Shippori Antique B1', "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  
  --myfont-weight-normal: 500;
  --myfont-weight-bold: 700;
  
  --myfont-space-normal: 0.05em;
  --myfont-space-wide:0.18em;
  
  --myfont-size: 14px;
}

::selection {
    background: var(--mycolor6);
    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;
  }
  
}


/*ローディング*/


#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: 25.08vw;
    height: 16.5vw;
    background-image: url(../images/logo2.svg);
    display: block;
    background-size: cover;
    text-indent: -9999px;
    overflow: hidden;
}





/*ヘッダー*/

#header{
	width:100%;
	position:fixed;
	z-index:2;
	top:0;
}

#toplogo a{
	display:block;
	text-indent:-9999px;
	overflow: hidden;
	background-size:cover;
	width: 140px;
    height: 254px;
	margin:25px 0 0 25px;
}

#toplogo a:hover{
	opacity:0.5;
}

.header-0 #toplogo a{
	background-image: url(../images/logo1-w.svg);
}

.header-100 #toplogo a{
	background-image: url(../images/logo1.svg);
	width: 80px;
    height: 145px;
}


#lo-header{
	width:100%;
	position:fixed;
	z-index:2;
	top:0;
}

#lo-header #toplogo a{
	background-image: url(../images/logo4.svg);
	width: 150px;
    height: 66px;
	margin:28px 0 0 25px;
}





/*メインメニュー*/

#main-menu{
	padding: 5vh;
    display: flex;
    flex-direction: column;
    height: 90vh;
	justify-content: center;
	align-items: center;
	background-color: var(--mycolor5);
}

#main-menu>div{
	display: flex;
    flex-direction: column;
	justify-content: center;
	align-items: center;
}

#main-menu h1{
	background-image: url(../images/logo6.svg);
	background-size:cover;
	text-indent:-9999px;
	overflow: hidden;
	width: 30.4vw;
    height: 4vw;
	margin: 0 0 2.5vw 0;
}

.menu1{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	width: 90%;
	/*max-width:1500px;*/
	margin: 0;
}

.menu1 li{
    font-size: min(1.2vw, 1.2em);
	margin: 0 1% 2.5vw 1%;
	text-align:center;
	font-weight: var(--myfont-weight-bold);
	display: flex;
    flex-direction: column;
    align-items: center;
	width: 10.5%;
}

.menu1 li a{
	display: flex;
    flex-direction: column;
}

.menu1 li p{
	margin:0;
}

.menu1 li .image{
	width:100%;
	margin: 0 0 1em 0;
}

.menu1 li span{
	display:block;
	font-size: 0.7em;
}

.menu1 li span:before{
	content: "";
	display: block;
	width: 1.5em;
	height: 1px;
	background-color: var(--mycolor2);
	margin: 1.0em auto 1.2em auto;
}

.menu1 li img{
	display:block;
	width:100%;
	aspect-ratio: 1;
	border-radius:50%;
}

.menu2{
	display:flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	border-bottom: 1px solid var(--mycolor2);
	padding: 0 0 0.5em 0;
	width:80%;
	text-align: center;
}

.menu2 li{
	margin: 0 1em 1em 1em;
	font-size: min(1.0vw, 1.0em);
	font-weight: var(--myfont-weight-bold);
}

.menu3{
	display:flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	margin: 1.5em 0 -1em 0;
	width:80%;
	text-align: center;
}

.menu3 li{
	margin: 0 1em 1em 1em;
	font-size: min(1.0vw, 1.0em);
	font-weight: var(--myfont-weight-bold);
}

#main-menu a{
	position:relative;
	color: var(--mycolor2);
	background: linear-gradient(to right, var(--mycolor6), var(--mycolor6) 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;
}

#main-menu a:hover{
	background-position: 0 100%;
}



#pc-nav{
	display: flex;
	flex-wrap: nowrap;
	align-items: flex-start;
	justify-content: space-between;
	position: absolute;
	top: 20px;
	transition: transform .3s;
}

_::-webkit-full-page-media, _:future, :root .language{
	display:none;
}

.header-0 #pc-nav{
	transform:translateX(200px);
	width: calc(100% - 87px - 200px);
}

.header-100 #pc-nav{
	transform:translateX(130px);
	width: calc(100% - 87px - 130px);
}

#lo-header #pc-nav{
	left: 195px;
	width: calc(100% - 87px - 195px);
}

.menu4{
	display:flex;
	align-items: center;
	flex-wrap:wrap;
	margin:0.6em 0 0 0;
}

.menu4 li{
	margin:0 1em 0.5em 0;
	font-size: min(1.2vw, 1.0em);
	font-weight: var(--myfont-weight-bold);
}

.menu4 li a{
	position:relative;
}

.header-0 .menu4 li a{
	color: var(--mycolor1);
}

.header-100 .menu4 li a{
	color: var(--mycolor2);
}

#lo-header .menu4 li a{
	color: var(--mycolor2);
}

.menu4 li a:after{
	content: '';
	background-color: var(--mycolor6);
	transform-origin: right top;
	transform: scale(0, 1);
	transition: transform .3s;
	position: absolute;
	width: 100%;
	height: 2px;
	margin: 4px 0 0 0;
	display: block;
	z-index: -1;
}

.menu4 li a:hover:after{
	transform-origin: left top;
	transform: scale(1, 1);
}

.language{
	display:flex;
	align-items: center;
}

.language:before{
	content:"";
	width:1px;
	height:1.7em;
	margin: 0 calc(1em - 6px) 0 0;
}

.header-0 .language:before{
	background-color: var(--mycolor1);
}

.header-100 .language:before{
	background-color: var(--mycolor2);
}

#lo-header .language:before{
	background-color: var(--mycolor2);
}

.language:after{
	content: "";
	background-image: url(../images/arrow3.svg);
	background-size: cover;
	display: block;
	width: 5px;
	height: 10px;
	transform: rotate(90deg);
	margin: 0 0 0 -15px;
}

.header-0 .language:after{
	filter: brightness(100);
}

.header-100 .language:after{
	filter: brightness(0);
}

.language select{
    background:none !important;
	padding:8px;
	border-radius: 4px;
	font-size: min(1.1vw, 0.9em);
	font-weight: var(--myfont-weight-bold);
	text-transform: uppercase;
	min-width: 14em;
}


.language select:focus {
	background-color: var(--mycolor3) !important;
}

.header-0 .language select{
	color: var(--mycolor1);
}

.header-100 .language select{
	color: var(--mycolor2);
}

.white-header #toplogo a{
	background-image: url(../images/logo4-w.svg) !important;
}

.white-header a{
	color: var(--mycolor1) !important;
}

.white-header .language select{
	color: var(--mycolor1);
}

.white-header .language:before{
	background-color: var(--mycolor1) !important;
}

.white-header .language:after {
	filter: brightness(100);
}



/*フッター*/


#footer{
	width:90%;
	max-width:fit-content;
	margin:5% auto 0 auto;
	display:flex;
	position:relative;
}

#footer .left{
	width:370px;
	margin: 0 30px 5% 0;
}

#footer .right{
	width: calc(100% - 400px);
	margin: 0 0 5% 0;

}

#footer .right div{
	display:flex;
}

#footer h1 a{
	display: block;
	width: 330px;
    height: 195px;
    background-image: url(../images/logo5.svg);
    background-size: cover;
    text-indent: -9999px;
    overflow: hidden;
}

#footer h1 a:hover{
	opacity:0.5;
}

#footer h2{
	font-size: 0.9em;
	font-weight: var(--myfont-weight-normal);
	margin: 1em 0 0 0;
}

#footer address{
	font-size: 0.9em;
	line-height:1.6;
	margin:4em 0 0 0;
}

#footer #copyright{
    font-size: 0.75em;
	margin:1.5em 0 0 0;
}

.footer-menu1{
	margin: 0 0 1em 0;
	min-width:180px;
	font-weight: var(--myfont-weight-bold);
}

.footer-menu1 li{
	margin: 0 0 1em 0;
}

.footer-menu2{
	display:flex;
	flex-wrap: wrap;
}

.footer-menu2>li{
	margin: 0 0 2em 3em;
	font-weight: var(--myfont-weight-bold);
}

.footer-menu2>li>a:after{
	content:"";
	display:block;
	width:1em;
	height:1px;
	background-color: var(--mycolor2);
	margin: 1em 0 1em 0;
}

.footer-menu2>li>ul{
	font-size:0.9em;
	font-weight: var(--myfont-weight-normal);
}

.footer-menu2>li>ul li{
	margin: 0 0 1em 0;
}

.footer-menu3{
	display:flex;
	flex-wrap: wrap;
	font-size:0.9em;
	border-top: 1px solid var(--mycolor2);
	font-weight: var(--myfont-weight-bold);
	padding: 1em 0 0 0;
}

.footer-menu3 li{
	margin: 1em 1.5em 0 0;
}

#footer .right a{
	position:relative;
	display:inline-block;
	color: var(--mycolor2);
	background: linear-gradient(to right, var(--mycolor6), var(--mycolor6) 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;
	padding: 1px 0 0 0;
}

#footer .right a:hover{
	background-position: 0 100%;
}

#footer .page-top{
    position: absolute;
    right: 0px;
    top: -95px;
    margin: 0;
    transform: rotate(90deg);
    transform-origin: right bottom;
}

#footer .page-top a{
	font-size:0.9em;
	display:flex;
	align-items:center;
}

#footer .page-top a:before{
	content:"";
	width:50px;
	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(0.5);
	transform-origin:right bottom;
}


/*SNSエリア*/

#sns-area{
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
	position: fixed;
	top: 0;
	left: 12px;
	display:flex;
	justify-content: center;
	height: 100vh;
	z-index: 1;
	opacity:0;
	pointer-events: none;
	transition: .3s ease-out;
}

.sns-area-100{
	opacity:1 !important;
	pointer-events: auto !important;
}


/*バナーエリア*/

#banner-area{
	margin: 0 auto 10% auto;
	padding: 10% 0 0 0;
	width: 70%;
	border-top: 1px solid var(--mycolor2);
}

#banner-area>div{
	max-width:1000px;
	margin: 0 auto;
}



/*リンクエリア*/

#link-area{
	padding: 5% 0;
	width:100%;
	background-color: var(--mycolor5);
}

#link-area>div{
	max-width:1200px;
	width:80%;
	margin: 0 auto;
}




/*ボタン*/

.button1{
	width: fit-content;
	margin:0 auto;
}

.button1 a{
	font-weight: var(--myfont-weight-bold);
	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(--mycolor6), var(--mycolor6) 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: 2px;
	margin: 0.5em 0 0 0;
	background-color: var(--mycolor2);
	background: linear-gradient(to right, var(--mycolor6), var(--mycolor6) 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%;
}



.button2{
	width: fit-content;
	margin:0 auto !important;
}

.button2 a{
	color:var(--mycolor1) !important;
	font-weight: var(--myfont-weight-bold);
	font-size:1.0em;
    display: block;
	padding:20px 40px;
    line-height: 1;
    text-align: center;
	border-radius: 30px;
	background: linear-gradient(to right, var(--mycolor6), var(--mycolor6) 50%, var(--mycolor2) 50%) !important;
	background-clip: unset !important;
	-webkit-background-clip: unset !important;
	-webkit-text-fill-color: unset !important;
	background-size: 200% 100% !important;
	background-position: 100% !important;
	overflow: hidden;
}

.button2 a:hover{
	background-position: 0 100% !important;
}



/*リスト*/



.list1{
	margin: 0 -1%;
	display:flex;
	flex-wrap:wrap;
}

.list1>div{
	width:48%;
	margin: 0 1% 5% 1%;
}

@media screen and (max-width: 1600px){
	#top-recommend .list1>div{
		width: 98%;
	}
}

.list1>div a{
	display:flex;
	flex-direction:column;
}

.list1 .title{
	order:1;
	font-size: 1.2em;
	line-height:1.7;
	margin: 1.2em 0 0.8em 0;
}

.list1 .date{
	order:2;
	font-size: 0.85em;
	line-height:1;
	margin: 0 0 0 0;
	color:var(--mycolor3);
}

.list1 .thumb{
	order:0;
	overflow: hidden;
	border-radius:10px;
}

.list1 .thumb img {
    transition: 0.3s ease-out;
	width:100%;
	height:100%;
}

.list1 a:hover .thumb img{
    transform: Scale(1.05);
}

.list1 a:hover .title,
.list1 a:hover .date{
	color:var(--mycolor6);
	transition: 0.3s ease-out; 
}




.list2{
	margin: 0 -1%;
	display:flex;
	flex-wrap: wrap;
	justify-content: center;
}

.list2>div{
	width:18%;
	margin: 0 1% 4% 1%;
}

@media screen and (max-width: 1400px){
	.list2>div{
		width: 31.333%;
	}
}

.list2>div a{
	display:flex;
	flex-direction: column;
}

.list2 .title{
	order:1;
	font-size: 1.5em;
	line-height:1;
	margin: 1.2em 0 0 0;
	text-align:center;
}

.list2 .title span{
	display:block;
	font-size: 0.6em;
}

.list2 .title span:before{
	content: "";
	display: block;
	width: 1.5em;
	height: 1px;
	background-color: var(--mycolor2);
	margin: 1.2em auto 1.4em auto;
}

.list2 .thumb{
	order:0;
	overflow: hidden;
	border-radius:50%;
	aspect-ratio: 1;
}

.list2 .thumb img {
    transition: 0.3s ease-out;
	width:100%;
	height:100%;
}

.list2 a:hover .thumb img{
    transform: Scale(1.05);
}

.list2 a:hover .title{
	color:var(--mycolor6);
	transition: 0.3s ease-out; 
}




.list3{
	display:flex;
	flex-wrap: wrap;
	margin: 0 -1%;
}

.list3>div a{
	display:flex;
	flex-direction: column;
}

.list3>div{
	width:31.333%;
	margin: 0 1% 5% 1%;
}

@media screen and (max-width: 1500px){
	.list3>div{
		width: 48%;
	}
}

.list3 .title{
	order:1;
	font-size: 1.2em;
	line-height:1.7;
	margin: 1.2em 0 0.8em 0;
}

.list3 .event-date{
	order:2;
	font-size: 0.85em;
	line-height:1;
	margin: 0 0 0 0;
	color:var(--mycolor3);
}

.list3 .event-date:before{
	content:"開催日時 ｜ ";
	margin: 0;
}

.list3 .event-close{
	order:3;
	font-size: 0.85em;
	line-height:1;
	margin: 1em 0 0 0;
	color:var(--mycolor6);
	font-weight: var(--myfont-weight-bold);
	display:block;
}

.list3 .thumb{
	order:0;
	overflow: hidden;
	border-radius:10px;
}

.list3 .thumb img {
    transition: 0.3s ease-out;
	width:100%;
	height:100%;
}

.list3 a:hover .title,
.list3 a:hover .event-date{
	color:var(--mycolor6);
	transition: 0.3s ease-out; 
}

.list3 a:hover .thumb img{
    transform: Scale(1.05);
}

.list3 .close .thumb img{
	 filter: grayscale(100%) opacity(0.8);
}





.list4{
	display:flex;
	flex-wrap: wrap;
	margin: 0 -1%;
}

.list4>div a{
	display:flex;
	flex-direction: column;
}

.list4>div{
	width:23%;
	margin: 0 1% 5% 1%;
}

@media screen and (max-width: 1500px){
	.list4>div{
		width: 31.333%;
	}
}

.list4 .title{
	order:1;
	font-size: 1.05em;
	line-height:1.6;
	margin: 1.05em 0 0.7em 0;
}

.list4 .topics-meta,
.list4 .pamphlet-meta{
	order:2;
	font-size: 0.85em;
	line-height:1;
	margin: 0;
	color:var(--mycolor3);
	display:flex;
}

.list4 .topics-meta p,
.list4 .pamphlet-meta p{
	margin: 0 1em 0 0;
	padding: 0 0 0 1em;
	border-left: 1px solid var(--mycolor3);
}

.list4 .topics-meta ul{
	display:flex;
	flex-wrap:wrap;
	margin: 0 0 0 0;
	padding: 0 0 0 1em;
	border-left: 1px solid var(--mycolor3);
}

.list4 .topics-meta ul li{
	margin:0 0.5em 0 0;
}

.list4 .topics-meta p:first-child,
.list4 .topics-meta ul:first-child,
.list4 .pamphlet-meta p:first-child{
	padding: 0 0 0 0;
	border:none;
}

.list4 .pamphlet-meta{
	order:2;
	font-size: 0.85em;
	line-height:1;
	margin: 0;
	color:var(--mycolor3);
	font-weight: var(--myfont-weight-bold);
	display:flex;
	flex-wrap:wrap;
	text-transform:uppercase;
}

.list4 .thumb{
	order:0;
	overflow: hidden;
	border-radius:10px;
}

.list4 .thumb img {
    transition: 0.3s ease-out;
	width:100%;
	height:100%;
}

.list4 .pamphlet .thumb{
	aspect-ratio: 1;
	background-color:var(--mycolor4);
}

.list4 .pamphlet .thumb img{
	object-fit:contain;
}


.list4 a:hover .title,
.list4 a:hover .topics-meta{
	color:var(--mycolor6);
	transition: 0.3s ease-out; 
}

.list4 a:hover .thumb img{
    transform: Scale(1.05);
}





.list5{
	display:flex;
	flex-wrap:nowrap;
	align-items: center;
}

.list5 li{
	margin:5px 0 0 0;
	order:1;
}

.list5:before{
	content:"FOLLOW US";
	font-size: 0.8em;
	margin:0 0 10px 0;
	font-weight: var(--myfont-weight-bold);
}

.list5:after{
	content:"";
	display:block;
	width:1px;
	height:20px;
	background-color:var(--mycolor2);
	margin:0 0 5px 0;
}

.list5 li a{
	width: 25px;
    height: 25px;
	display:block;
	background-size: cover;
    text-indent: -9999px;
    overflow: hidden;
}

.list5 .facebook a{
	background-image: url(../images/icon-fb.svg);
}

.list5 .facebook a:hover{
	background-image: url(../images/icon-fb-or.svg);
}

.list5 .instagram a{
    background-image: url(../images/icon-in.svg);
}

.list5 .instagram a:hover{
    background-image: url(../images/icon-in-or.svg);
}

.list5 .x a{
    background-image: url(../images/icon-x.svg);
}

.list5 .x a:hover{
    background-image: url(../images/icon-x-or.svg);
}

.list5 .line a{
    background-image: url(../images/icon-line.svg);
}

.list5 .line a:hover{
    background-image: url(../images/icon-line-or.svg);
}

.list5 .youtube a{
    background-image: url(../images/icon-youtube.svg);
}

.list5 .youtube a:hover{
    background-image: url(../images/icon-youtube-or.svg);
}

.list5 .note a{
    background-image: url(../images/icon-note.svg);
}

.list5 .note a:hover{
    background-image: url(../images/icon-note-or.svg);
}



.list6{
	display:flex;
	flex-wrap: wrap;
	margin: 0 -1%;
}

.list6 li{
	width:18%;
	margin: 1% 1% 1% 1% !important;
}

@media screen and (max-width: 1500px){
	.list6 li{
		width: 23%;
	}
}

.list6 .thumb{
	order:0;
	overflow: hidden;
	border-radius:10px;
}

.list6 .thumb img {
    transition: 0.3s ease-out;
	width:100%;
	height:100%;
}

.list6 .thumb a:hover img{
    transform: Scale(1.05);
}




.list7{
	display:flex;
	flex-wrap: wrap;
	margin: 0 -1%;
}

.list7>div a{
	display:flex;
	flex-direction: column;
}

.list7>div{
	width:31.333%;
	margin: 0 1% 5% 1%;
}

@media screen and (max-width: 1500px){
	.list7>div{
		width: 48%;
	}
}

.list7 .title{
	order: 1;
	font-size: 1.2em;
	line-height: 1.7;
	margin: 1.2em 0 0.8em 0;
}

.list7 .title .furigana{
	font-size: 0.6em;
	display:block;
	margin: 0;
}

.list7 .copy{
	order: 2;
	font-size: 0.9em;
	line-height: 1.6;
	margin: 0 0 1.4em 0;
}

.list7 .spot-meta{
	order:3;
	font-size: 0.85em;
	line-height:1.5;
	margin: 0;
	color:var(--mycolor3);
}

.list7 .spot-meta:before{
	content: "";
	display: block;
	width: 2em;
	height: 2px;
	background-color: var(--mycolor2);
	margin: 0 0 1.6em 0;
}

.list7 .spot-meta .place{
	margin: 0 0 0.3em 0;
}

.list7 .spot-meta .place:before{
	content:"エリア ｜ ";
	margin: 0;
}

.list7 .spot-meta .cat{
	margin: 0 0 0.7em 0;
	display:flex;
	flex-wrap:wrap;
}

.list7 .spot-meta .cat li{
	margin: 0 0.8em 0 0;
}

.list7 .spot-meta .cat:before{
	content:"カテゴリ ｜ ";
	margin: 0;
	display:inline-block;
}

.list7 .spot-meta .photospot{
	position:absolute;
	top:10px;
	left:12px;
	margin:0;
	width: 35px;
	height: 50px;
	background-image: url(../images/icon-photospot-w.svg);
	background-size: cover;
	text-indent: -9999px;
	overflow: hidden;
	z-index:1;
}

.list7 .thumb{
	order:0;
	overflow: hidden;
	border-radius:10px;
}

.list7 .thumb img {
    transition: 0.3s ease-out;
	width:100%;
	height:100%;
}

.list7 a{
	color: var(--mycolor2) !important;
	background: none !important;
	-webkit-text-fill-color: unset !important;
}
.list7 a .copy{
	font-weight: var(--myfont-weight-normal) !important;
}

.list7 a:hover .title,
.list7 a:hover .copy,
.list7 a:hover .spot-meta{
	color:var(--mycolor6);
	transition: 0.3s ease-out; 
}

.list7 a:hover .thumb img{
    transform: Scale(1.05);
}




.list8{
	margin: 0 0 5em 0;
}

.list8 dt{
	padding:0 0 0 0;
	margin:0 0 1.5em 0;
	font-size:1.05em;
	font-weight: var(--myfont-weight-bold);
	display:flex;
	cursor: pointer;
	transform:translateY(30px);
	opacity:0;
}

.list8 dt:before{
	content: 'Q';
    font-size: 3em;
    font-weight: var(--myfont-weight-bold);
	color:var(--mycolor3);
	line-height: 1;
	display:block;
    margin: -0.2em 20px 0 0;
	transition: 0.3s ease-out;
}

.list8 dt:hover:before{
	color:var(--mycolor6);
}

.list8 dt.active{
	transition: transform 1s 0s ease-out , opacity 1s 0s ease-out;
	transform:translateY(0px);	
	opacity:1;
}

.list8 dd{
	margin:0 0 2.2em 0;
	padding:0 0 2em 0;
	position:relative;
	display:flex;
	align-items: flex-start;
}

.list8 dd p{
	margin:0;
}

.list8 dd:before{
	content: 'A';
    font-size: 3em;
    text-indent: 0.05em;
    font-weight: var(--myfont-weight-bold);
	color:var(--mycolor6);
    line-height: 1;
    display: block;
    margin: -0.15em 20px 0 0;
}

.list8 dd:after{
	content: "";
    width: 100%;
    height: 1px;
    background: linear-gradient(-90deg, var(--mycolor2) 0%, var(--mycolor2) 20em, var(--mycolor4) 20em, var(--mycolor4) 100%);
    display: block;
    position: absolute;
    bottom: 0;
    right: 0;
}

.list8 a{
	color: var(--mycolor6);
	font-weight:var(--myfont-weight-bold);
	background: linear-gradient(to right, var(--mycolor3), var(--mycolor3) 50%, var(--mycolor6) 50%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-size: 200% 100%;
	background-position: 100%;
	overflow: hidden;
}

.list8 a:hover {
	background-position: 0 100%;
}



.list9{
	display:flex;
	flex-wrap: wrap;
	margin: 0 -1% !important;
}

.list9>div{
	display:flex;
	flex-direction: column;
	width:31.333%;
	margin: 0 1% 0 1% !important;
}

.list9 .title{
	order:1;
	font-size: 1.05em;
	line-height:1.6;
	margin: 1.05em 0 0 0;
}

.list9 .description{
	order:2;
	font-size: 0.85em;
	line-height: 1.8;
	margin: 1.05em 0 0 0 !important;
}

.list9 .thumb{
	order:0;
	overflow: hidden;
	border-radius:10px;
	margin:0 !important;
}

.list9 .thumb img {
    transition: 0.3s ease-out;
	width:100%;
	height:100%;
	margin:0 !important;
}



.list10{
	display:flex;
	flex-wrap:nowrap;
	align-items: center;
	margin:0 !important;
}

.list10 li{
	margin:0 5px 0 0;
	order:1;
}

.list10 li a{
	width: 25px;
    height: 25px;
	display:block;
	background-size: cover;
    text-indent: -9999px;
    overflow: hidden;
	background-clip: unset;
}

.list10 .facebook a{
	background-image: url(../images/icon-fb.svg);
}

.list10 .facebook a:hover{
	background-image: url(../images/icon-fb-or.svg);
}

.list10 .instagram a{
    background-image: url(../images/icon-in.svg);
}

.list10 .instagram a:hover{
    background-image: url(../images/icon-in-or.svg);
}

.list10 .x a{
    background-image: url(../images/icon-x.svg);
}

.list10 .x a:hover{
    background-image: url(../images/icon-x-or.svg);
}

.list10 .line a{
    background-image: url(../images/icon-line.svg);
}

.list10 .line a:hover{
    background-image: url(../images/icon-line-or.svg);
}

.list10 .yt a{
    background-image: url(../images/icon-youtube.svg);
}

.list10 .yt a:hover{
    background-image: url(../images/icon-youtube-or.svg);
}

.list10 .note a{
    background-image: url(../images/icon-note.svg);
}

.list10 .note a:hover{
    background-image: url(../images/icon-note-or.svg);
}



.list11{
	display:flex;
	flex-wrap: wrap;
	margin: 0 -1%;
}

.list11 li{
	width:48%;
	margin: 1% 1% 1% 1% !important;
}

.list11 .thumb{
	order:0;
	overflow: hidden;
	border-radius:10px;
}

.list11 .thumb img {
    transition: 0.3s ease-out;
	width:100%;
	height:100%;
}

.list11 .thumb a:hover img{
    transform: Scale(1.05);
}





/*タイトル*/

.title1{
    font-size: min(3vw, 3em);
    line-height: 1;
    font-weight: var(--myfont-weight-bold);
	margin:0;
}

.title1 span{
    font-size: 0.35em;
	display:block;
	margin: 1em 0 0 0;
}

.title1 span:before{
	content: "/";
	margin: 0 0.5em 0 0;
}


.title2{
    font-size: min(3vw, 3em);
    line-height: 1;
    font-weight: var(--myfont-weight-bold);
	display:flex;
	flex-direction: column;
	justify-content: center;
    align-items: center;
	text-align: center;
	margin:0;
}

.title2 span{
    font-size: 0.35em;
	display:block;
	margin: 0 0 0 0;
}

.title2 span:before{
	content: "/";
	display:block;
	text-align: center;
	margin: 0.8em 0 1em 0;
}



.title3{
    font-size: min(2vw, 2em);
    line-height: 1;
    font-weight: var(--myfont-weight-bold);
	margin:0;
}

.title3 span{
    font-size: 0.45em;
	display:block;
	margin: 0.8em 0 0 0;
}

.title3 span:before{
	content: "/";
	margin: 0 0.5em 0 0;
}








/*トップMAIN VISUAL*/

#top-mainvisual{
	width: 100%;
	position:relative;
	background-color:var(--mycolor1);
	height:100vh;
}

#vegasSliderInner{
	display: flex;
	justify-content: flex-end;
	align-items: flex-end;
	flex-direction: column;
	height: 90vh;
	width: 90%;
	margin: 5vh 5%;
}

.vegas-slide:after{
	content:"";
	width:100%;
	height:100%;
	display:block;
	position: absolute;
    top: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.slide-text{
	color:var(--mycolor1);
	font-size: min(4vw, 5em);
	font-weight: var(--myfont-weight-bold);
	/*font-family: var(--myfont-sans-serif2);*/
	/*font-weight: 400;*/
	text-align:right;
	margin:0;
	line-height:1.6;
	animation: text-animation1 7s 0s ease-in-out 1;
	overflow:hidden;
}

.slide-text-en{
	color:var(--mycolor3);
	font-size: min(1.2vw, 1.2em);
	font-weight: var(--myfont-weight-bold);
	margin:2em 0 0 0;
	line-height:1.6;
	text-align:right;
	animation: text-animation1 7s 0.3s ease-in-out 1;
	opacity:0;
}


@keyframes text-animation1{
	0% {
    transform:translateX(20px);
	opacity:0;
	filter: blur(10px);
 	}
	20% {
    transform:translateX(0px);
	opacity:1;
	filter: blur(0);
 	}
	65% {
    transform:translateX(0px);
	opacity:1;
	filter: blur(0);
 	}
	85% {
    transform:translateX(-20px);
	opacity:0;
	filter: blur(10px);
	}
}




/*トップアバウト*/

#top-about{
    background-image: url(../images/map.svg);
    background-position: top right;
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: 75vw;
	display: flex;
    flex-direction: column;
    justify-content: center;
	padding:10vw 0;
}

#top-about div{
	display:flex;
	flex-direction: column;
	margin:0 30% 0 10%;
}

#top-about h1{
    font-size: 3vw;
    font-weight: var(--myfont-weight-bold);
	margin:0.5em 0 0 0;
	line-height: 1.5;
	order:1;
}

#top-about h2{
    font-size: 1.1vw;
    font-weight: var(--myfont-weight-bold);
	margin:0 0 0 0;
	order:0;
}

#top-about h2:after{
	content:"/";
	margin: 0 0 0 0.5em;
}

#top-about p{
	font-size: min(1.3vw,1.15em);
    margin: 2em 0 0 0;
    text-align: justify;
	order:2;
	column-count: 2;
	column-gap: 2em;
}

.top-description{
	margin:3em 0 0 0;
	text-align: justify;
}



/*トップおすすめ*/

#top-recommend{
	margin: 0 auto 6% auto;
	width:80%;
	max-width:1800px;
	display:flex;
}

#top-recommend header{
	width:40%;
	margin: 0 5% 0 0;
}

#top-recommend header>div{
	position: sticky;
    top: 8vw;
}

#top-recommend .list1{
	width:67%;
}



/*トップスポット*/

#top-spot{
	margin: 0 auto 10% auto;
	width:80%;
	padding: 0 10% 6% 10%;
	background: linear-gradient(180deg, var(--mycolor1) 0%, var(--mycolor1) 12em, var(--mycolor5) 12em, var(--mycolor5) 100%);
}

#top-spot header{
	width:50%;
	margin: 0 auto 4% auto;
}

#top-spot .top-description{
	column-count: 2;
	column-gap: 2em;
}

#top-spot .list2{
	max-width:1700px;
	margin:0 auto;
}



/*トップイベント*/

#top-event{
	margin: 0 auto 10% auto;
	width:80%;
}

#top-event header{
	width:40%;
	margin: 0 0 4% 0;
}

#top-event>div{
	max-width:1500px;
	margin: 0 auto;
}



/*トップサブビジュアル*/

#top-subvisual{
	margin:0 0 10% 0;
}

#top-subvisual>div{
	height: 30vw;
	min-height: 450px;
}



/*トップトピックス*/

#top-topics{
	margin: 0 auto 10% auto;
	width:80%;
}

#top-topics header{
	width:40%;
	margin: 0 auto 4% auto;
}

#top-topics>div{
	max-width:1300px;
	margin: 0 auto;
}


/*下層ページ*/




/*トピックパス*/

.topicpath{
	position:absolute;
	top:110px;
	left:25px;
	line-height:1.5;
	font-size:0.8em;
	font-weight: var(--myfont-weight-bold);
	display:flex;
	flex-wrap:wrap;
	width:80vw;
}

.topicpath span{
	margin: 0.2em;
	color:var(--mycolor3);
}

.topicpath .current-item{
	color:var(--mycolor2);
}

.topicpath span a{
	color:var(--mycolor3);
	background: linear-gradient(to right, var(--mycolor6), var(--mycolor6) 50%, var(--mycolor3) 50%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-size: 200% 100%;
	background-position: 100%;
	overflow: hidden;
}

.topicpath span a:hover{
	background-position: 0 100%;
}

.white-header .topicpath span{
	color:var(--mycolor1);
}

.white-header .topicpath .current-item{
	color:var(--mycolor4);
}

.white-header .topicpath span a{
	background: linear-gradient(to right, var(--mycolor6), var(--mycolor6) 50%, var(--mycolor1) 50%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-size: 200% 100%;
	background-position: 100%;
}

.white-header .topicpath span a:hover{
	background-position: 0 100%;
}



/*アーカイブ*/

.lo-archive{
	margin: 0 0 10% 0;
}

.lo-archive-header{
	margin:200px 10% 140px 10%;
}

.lo-archive .cat-list{
	max-width:1300px;
	width:80%;
}

.lo-archive-content{
	max-width:1300px;
	width:80%;
	margin: 0 auto 0 auto;
}



/*カテゴリーリスト*/

.cat-list{
    margin: 0 auto 0 auto;
	font-weight: var(--myfont-weight-bold);
	font-size:0.9em;
    display: flex;
    flex-wrap: wrap;
}

.cat-list:last-child{
	margin: 0 auto 40px auto;
	border-bottom: 1px solid var(--mycolor2);
}

.cat-list:before{
	content:"CATEGORY";
	display:block;
	line-height:1;
	margin:0 1.5em 0 0;
}

.spot-area:before{
	content:"AREA";
}



.cat-list li{
    margin: 0px 1.5em 1em 0;
    line-height: 1;
}

.cat-list li:last-child{
	margin: 0 0 1em 0;
}

.cat-list li a{
	background: linear-gradient(to right, var(--mycolor6), var(--mycolor6) 50%, var(--mycolor3) 50%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-size: 200% 100%;
	background-position: 100%;
	overflow: hidden;
}

.cat-list li a:hover{
	background-position: 0 100%;
}


/*ページ*/

.lo-page{
	margin: 0 0 10% 0;
}

.lo-page-header{
	margin:200px 10% 140px 10%;
}

.lo-page #map{
	position: relative;
    width: 100%;
    padding-top: 56.25%;
    height: 0;
}

.lo-page #map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}



/*シングル*/

.lo-single{
	margin: 0 auto;
	width:80%;
	max-width:1200px;
}

.eyecatch-spot-wrap{
	width:100%;
	max-width:none;
}

.lo-single-header{
   margin: 200px auto 140px auto;
}

.eyecatch{
	margin: 160px auto 140px auto;
	height: 48vw;
	max-height: 720px;
	background-size: cover;
	background-position: center;
	position:relative;
	z-index: 0;
}

.eyecatch-spot{
	margin: 0 auto 6% auto;
	width:100%;
	height:100vh;
	max-height:none;
}

.eyecatch:after{
	content: "";
	display: block;
	height: 70%;
	width: 100%;
	position: absolute;
	bottom: 0;
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
	z-index: 1;
}

.eyecatch-spot:before{
	content: "";
	display: block;
	width: 100%;
	height: 200px;
	position: absolute;
	top: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.2) 40%, rgba(0, 0, 0, 0) 100%);
	z-index: 1;
}

.eyecatch-spot:after{
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 40%, rgba(0, 0, 0, 0) 100%);
}

.lo-single-header>div{
   	display:flex;
	flex-direction:column;
}

.eyecatch>div{
	position:absolute;
	bottom:0;
	left:0;
	margin:0 0 2% 3%;
	width:60%;
	color: var(--mycolor1);
	z-index:2;
}

.eyecatch-spot>div{
	margin:0 0 3% 3%;
}

.lo-single-header h1{
	font-size: min(1.7vw, 1.5em);
	line-height:1.6;
	margin: 0 0 0 0;
	order:1;
}

.eyecatch-spot h1{
	font-size: min(2vw, 1.8em);
}

.lo-single-header h1 .furigana{
	font-size: 0.45em;
	margin: 0 0 0 0.3em;
}

.lo-single-header h1 .furigana:before{
	content:"（";
}

.lo-single-header h1 .furigana:after{
	content:"）";
}

.lo-single-header h2{
	font-size: 0.9em;
	margin: 0 0 2em 0;
	order:0;
}

.lo-single-header .photospot{
	display:flex;
	align-items: center;
}

.lo-single-header .photospot:before{
	content:"";
	display:block;
	margin: 0 1em 0 0;
	width: 35px;
	height: 50px;
	background-image: url(../images/icon-photospot.svg);
	background-size: cover;
	text-indent: -9999px;
	overflow: hidden;
}

.eyecatch-spot .photospot:before{
	background-image: url(../images/icon-photospot-w.svg);
}

.lo-single-header h2 span:before{
	content:"/";
	margin: 0 0.5em 0 0.5em;
}

.lo-single-header .copy{
	font-size: 1.1em;
	font-weight: var(--myfont-weight-bold);
	margin: 0.5em 0 0 0;
	line-height:1.6;
	order:2;
}

.lo-single-header .event-close{
	font-size: 0.85em;
	font-weight: var(--myfont-weight-bold);
	color: var(--mycolor6);
	margin: 0 0 0 0;
	order:2;
}

.lo-single-header .meta{
	color: var(--mycolor3);
	font-size: 0.85em;
	font-weight: var(--myfont-weight-bold);
	margin: 2em 0 0 0;
	display:flex;
	flex-wrap:wrap;
	order:3;
}

.eyecatch .meta{
	color: var(--mycolor4);
}

.lo-single-header .meta p,
.lo-single-header .meta ul{
	margin: 0 1.5em 0 0;
}

.lo-single-header .meta .cat{
	display:flex;
	flex-wrap:wrap;
}

.lo-single-header .meta .cat li{
	margin: 0 0.8em 0 0;
}

.lo-single-header .meta .event-date:before{
	content:"開催日時 ｜ ";
	margin: 0;
}

.lo-single-header .meta .spot-place:before{
	content:"エリア ｜ ";
	margin: 0;
}

.lo-single-header .meta .spot-cat{
	display:flex;
	flex-wrap:wrap;
}

.lo-single-header .meta .spot-cat li{
	margin: 0 0.3em 0 0.5em;
}

.lo-single-header .meta .spot-cat:before{
	content:"カテゴリ ｜ ";
	margin: 0;
	display:inline-block;
}

.lo-single-footer,
.lo-page-footer{
	border-top: 1px solid var(--mycolor2);
}




/*記事*/

.single-body{
	max-width:900px;
    margin: 0 auto 0 auto;
}

.single-body>*:first-child{
	margin-top:60px !important;	
}

.single-body h1{
    font-size: 1.5em;
    font-weight: var(--myfont-weight-bold);
    line-height: 1.6;
	margin:40px 0 20px 0;	
}

.single-body h1 span{
	font-size: 0.5em;
	display: block;
	margin: 0 0 0 0;
}

.single-body h1 span:before {
	content: "/";
	margin: 0 0.5em 0 0;
}

.single-body h2{
    font-size: 1.35em;
    font-weight: var(--myfont-weight-bold);
    line-height: 1.6;
	margin:40px 0 20px 0;	
}

.single-body h3{
    font-size: 1.1em;
    font-weight: var(--myfont-weight-bold);
    line-height: 1.6;
	margin:30px 0 20px 0;
}

.single-body a{
	color: var(--mycolor6);
	font-weight:var(--myfont-weight-bold);
	background: linear-gradient(to right, var(--mycolor3), var(--mycolor3) 50%, var(--mycolor6) 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 {
	color: var(--mycolor7);
	background: linear-gradient(to right, var(--mycolor3), var(--mycolor3) 50%, var(--mycolor7) 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:20px 0 20px 0;
}

.single-body>div{
	margin:60px 0 60px 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: 20px auto 20px auto;
}

.single-body .youtube iframe{
    position: absolute;
    top: 0;
    right: 0;
    width: 100% !important;
    height: 100% !important;
}

.borderstyle1{
	padding:0 0 30px 0;
	border-bottom: 1px solid var(--mycolor3);
}

.bgstyle1{
    padding: 10px 30px;
    border-radius: 10px;
    border: 1px solid var(--mycolor3);
}

.bgstyle2{
    padding: 10px 30px;
    border-radius: 10px;
    background-color:var(--mycolor5);
}

/*リスト*/

.liststyle1{
    padding: 15px 15px;
    border-radius: 10px;
    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: 15px 15px;
    border-radius: 10px;
	background-color:var(--mycolor5);
}

.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;
}

.liststyle5{
    padding: 15px 30px;
    border-radius: 10px;
    border: 1px solid var(--mycolor3);
}

.liststyle5 li{
	margin:4px 0;
}

.liststyle6{
    padding: 15px 30px;
    border-radius: 10px;
    background-color:var(--mycolor5);
}

.liststyle6 li{
	margin:4px 0;
}







.dlstyle1{
	display:flex;
	flex-wrap: wrap;
}

.dlstyle1 dt{
	padding: 0 15px 15px 0;
    width: 8em;
	font-weight:var(--myfont-weight-bold);
}

.dlstyle1 dd{
	padding: 0 0 15px 0;
    width: calc(100% - 8em - 20px);
    margin: 0;
	overflow-wrap: anywhere;
}


.dlstyle2{
	display:flex;
	flex-wrap: wrap;
}

.dlstyle2 dt{
	padding: 0 20px 20px 0;
    width: 10em;
	font-weight:var(--myfont-weight-bold);
}

.dlstyle2 dd{
	padding: 0 0 20px 0;
    width: calc(100% - 10em - 20px);
    margin: 0;
	overflow-wrap: anywhere;
}



/*テーブル*/

.tablestyle1{
	border-collapse: separate;
	border-spacing:0px 0px;
	width:100%;
	text-align:left;
	font-size:0.9em;
}

.tablestyle1 th{
	line-height:1.5;
	background-color:var(--mycolor5);
	font-weight:var(--myfont-weight-bold);
	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;
	background-color:var(--mycolor2);
	color:var(--mycolor1);
	font-weight:var(--myfont-weight-bold);
	padding:20px;
}

.tablestyle2 tr:nth-child(odd){
	background-color:var(--mycolor5);
}

.tablestyle2 tr:nth-child(even){
	background-color:var(--mycolor1);
}

.tablestyle2 td{
	line-height:1.5;
	padding:16px 20px;
	margin-top:10px;
}


/*ページャー*/

.pager ul{
	display:flex;
	flex-wrap:nowrap;
	justify-content: space-between;
}

.pager li a{
	display:flex;
	align-items: center;
	background: linear-gradient(to right, var(--mycolor6), var(--mycolor6) 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;
}

.pager .next a:after{
	content:"";
    display: block;
    width: 10px;
    height: 20px;
    background-image: url(../images/arrow3.svg);
	background-size: contain;
	margin:0 0 0 15px;
}

.pager .prev a:before{
	content:"";
    display: block;
    width: 10px;
    height: 20px;
    background-image: url(../images/arrow4.svg);
	background-size: contain;
	margin:0 15px 0 0;
}


/*add to any*/


.addtoany_content{
	width:100%;
}

.addtoany_shortcode{
	margin: 0 !important;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.addtoany_shortcode:before{
	content:"この記事をシェアする";
	display:block;
	width:fit-content;
	font-weight: var(--myfont-weight-bold);
	font-size:0.9em;
	margin: 0 auto 0.7em auto;
}

.addtoany_shortcode>div{
	margin: 0 !important;
}

.addtoany_content a{
	background:none !important;
}

.addtoany_content a:hover{
	background:none !important;
	opacity:0.5;
}


/*アサイド*/

aside{
	width: 80%;
	max-width:1500px;
	margin:6% auto 6% auto;
}

aside h1{
	margin:0 0 2em 0 !important;
}



/*CTAボタン*/

.cta a{
	padding: 30px 80px;
	border-radius: 10px;
	color: var(--mycolor1);
	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(--mycolor6), var(--mycolor6) 50%, var(--mycolor2) 50%);
	background-size: 200% 100%;
	background-position: 100%;
}

.cta a:visited{
	color: var(--mycolor1);
}

.cta h1{
	margin:0;
}

.cta p{
	margin:0;
	font-size:0.9em;
}



/*リンクボタン*/

.link{
	margin:60px auto 60px auto !important;
	width:50%;
}

.link a{
	padding: 30px 80px;
	border-radius: 10px;
	color: var(--mycolor1);
	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(--mycolor6), var(--mycolor6) 50%, var(--mycolor3) 50%);
	background-size: 200% 100%;
	background-position: 100%;
}

.link a:visited{
	color: var(--mycolor1);
}

.link p{
	margin:0;
	font-size:1.0em;
	line-height:1.6
}


/*スポット・イベント・おみやげ・お知らせ*/


#lo-spot-single .description,
#lo-event-single .description,
#lo-souvenir-single .description{
	margin:10% 0 10% 0;
}

.bx-wrapper{
	margin:0;
}

.bx-viewport{
	margin:0;
	background-color: var(--mycolor5);
    border-radius: 10px;
}

.bx-controls{
	margin:0;
}

#slides{
	margin:0;
	display: flex;
    align-items: center;
}

#slides li img{
	border-radius:10px;
}

#slides-thumbs{
	display: flex;
	flex-wrap: wrap;
    margin: 0 -0.5% 60px -0.5%;
}

#slides-thumbs li{
	width: 15.668%;
    margin: 1% 0.5% 0 0.5%;
}

#slides-thumbs li a img{
	margin:0;
	border-radius:10px;
	transition: .3s ease-out; 
    filter: grayscale(100%);
}

#slides-thumbs li a:hover img{
    filter: grayscale(0%);
}

#slides-thumbs li .active img{
    filter: grayscale(0%);
}

#map{
	position: relative;
    width: 100%;
    padding-top: 56.25%;
    height: 0;
}

#map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.map-link{
	margin: 0.7em 0 0 0 !important;
	font-size: 0.9em;
	text-align: right !important;
}

#lo-souvenir-single .list7,
#lo-feature-single .list7,
#lo-topics-single .list7,
#lo-spot-single .list7,
.lo-page .list7{
	margin: 0 -1% -5% -1%;
}

#lo-souvenir-single .list7>div,
#lo-feature-single .list7>div,
#lo-topics-single .list7>div,
#lo-spot-single .list7>div,
.lo-page .list7>div{
	width: 48%;
}

#lo-souvenir-single .list7>div a .spot-meta,
#lo-feature-single .list7>div a .spot-meta,
#lo-topics-single .list7>div a .spot-meta,
#lo-spot-single .list7>div a .spot-meta,
.lo-page .list7>div a .spot-meta{
	font-weight: var(--myfont-weight-normal) !important;
}



#lo-spot-single .list4{
	margin: 0 -1% -5% -1%;
}

#lo-spot-single .list4>div{
	width: 48%;
}

#lo-spot-single .list4>div a{
	color: var(--mycolor2) !important;
    background: none !important;
    -webkit-text-fill-color: unset !important;
}


/*関連サイト*/

#lo-links-archive h2{
	margin:0 0 0.5em 0;
	font-size:1.3em;
}

#lo-links-archive a{
	display:inline;
	font-weight:var(--myfont-weight-bold);
	background: linear-gradient(to right, var(--mycolor6), var(--mycolor6) 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;
}

#lo-links-archive a:hover {
	background-position: 0 100%;
}














/*大きさ・カラー*/

.large-txt{
	font-size:2.0em;
}

.small-txt{
	font-size:0.85em;
}

.bold-txt{
	font-weight: var(--myfont-weight-bold);
}

.red-txt{
	color:var(--mycolor9);
}


/*フォーム共通*/

.mailform dt{
	font-size:0.9em;	
}

.mailform dd{
	margin:5px 0 30px 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(--mycolor6);
	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(--mycolor1);
	background-color:var(--mycolor2);
	border: none;
	font-size:1.1em;
	font-family: var(--myfont-sans-serif);
	font-weight:var(--myfont-weight-bold);
	line-height:1;
	text-align:center;
	padding:25px 0;
	margin:60px auto 0 auto;
	border-radius:50px;
	-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(--mycolor8);
}

input[type="submit"]:hover{
	background-color:var(--mycolor6);
}

input:-webkit-autofill {
	box-shadow: 0 0 0px 1000px var(--mycolor8) 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: 15px;
	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(--mycolor6);
}

.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: 15px;
	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(--mycolor6);
}

.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(--mycolor6);
    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;
}

.grecaptcha-badge{
	visibility: hidden;
	bottom:95px !important;
}




/*サンクス*/

#lo-thanks-page header{
	display:none;
}

#lo-thanks-page{
	margin:0;
}

#lo-thanks-page .single-body{
	width:90%;
	margin:200px auto 200px auto;
	display:flex;
	flex-direction:column;
	justify-content:center;
}

#lo-thanks-page .single-body h1{
	font-size: min(5vw,5em);
	font-weight:var(--myfont-weight-bold);
    margin: 0 0px 15px 0;
	line-height: 1;
	text-align:center;
}

#lo-thanks-page .single-body p{
	margin:0 0 60px 0;
	text-align:center;
}

#lo-thanks-page .single-body .lo-page-footer{
	display:none;
}






/*404*/

#lo-notfound-page header{
	display:none;
}

#lo-notfound-page{
	margin:0;
}

#lo-notfound-page .single-body{
	width:90%;
	margin:200px auto 200px auto;
	display:flex;
	flex-direction:column;
	justify-content:center;
}

#lo-notfound-page .single-body h1{
	font-size: min(3vw,3em);
    margin: 0 0px 20px 0;
	line-height: 1;
	text-align:center;
}

#lo-notfound-page .single-body p{
	margin:0 0 60px 0;
	font-size:0.9em;
	text-align:center;
}

#lo-notfound-page .single-body .lo-page-footer{
	display:none;
}




/*ローディング*/

.loader,
.loader:after {
  border-radius: 50%;
  width: 25px;
  height: 25px;
}
.loader {
   margin: 0 auto 30px 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);
  }
  
}

}


