﻿@media screen and (max-width:640px){
	
,.@charset "utf-8";


html{
	
}

html,body{
	
}


/*変数宣言*/

:root{
  --mycolor1: #ffffff;
  --mycolor2: #2b2b2b;
  --mycolor3: #7c7c7c;
  --mycolor4: #dcdcdc;
  --mycolor5: #f7f7f7;
  --mycolor6: #4689af;
  --mycolor7: #5db7e9;
  --mycolor8: #badcf5;
  --mycolor9: #e25973;

  
  --myfont-sans-serif: 'Inter', 'Zen Kaku Gothic New', "游ゴシック", 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: 12px;
}

::selection {
    background: var(--mycolor7);
    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: 60vw;
	height: 24.8vw;
    background-image: url(../images/logo2.svg);
    display: block;
    background-size: cover;
    text-indent: -9999px;
    overflow: hidden;
}





/*ヘッダー*/

#header{
	width: 90%;
	position:fixed;
	z-index:2;
	top:0;
	padding:12px 5% 0 5%;
	transition: .3s ease-out; 
}

#header:after{
	content:"";
	width:100%;
	height:1px;
	background-color:var(--mycolor4);
	display:block;
	margin:0 auto;
}

#toplogo a{
	display:block;
	text-indent:-9999px;
	overflow: hidden;
	background-image: url(../images/logo1.svg);
	background-size:cover;
	width: 202px;
    height: 34px;
}

#toplogo a:hover{
	opacity:0.5;
}

.header-0{
	background-color:transparent
}

.header-100{
	background-color:var(--mycolor1);
}

.lo-header{
	background-color:var(--mycolor1);
}




/*PCメニュー*/

#header>div{
	margin:0 0 12px 0;
}

#pc-nav{
	display:none;
}



/*メインメニュー*/

#main-menu{
	padding: 6vh 4vh;
    display: flex;
    flex-direction: column;
    height: 88vh;
	justify-content: space-between;
	background-color: var(--mycolor1);
	border-left:12px solid var(--mycolor7);
	overflow-y: scroll;
}

#main-menu h1{
	background-image: url(../images/logo1.svg);
	background-size:cover;
	text-indent:-9999px;
	overflow: hidden;
	width: 210px;
	height: 35px;
	margin: 0 0 2em 0;
}

#main-menu>div:last-child{
	border-top: 1px solid var(--mycolor4);
	padding:2em 0 0 0;
}

.menu1 a,
.menu3 a{
	position:relative;
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-size: 200% 100%;
	background-position: 100%;
	overflow: hidden;
}

.menu1 a:hover,
.menu3 a:hover{
	background-position: 0 100%;
}



.menu1{
	order: 0;
}

.menu1>li{
	font-weight: var(--myfont-weight-bold);
	font-size:1.15em;
	margin:0 0 1em 0;
}

.menu1>li>a{
	margin:0 0 0.8em 0;
	display:inline-block;
	background-image: linear-gradient(to right, var(--mycolor7), var(--mycolor7) 50%, var(--mycolor2) 50%);
}

.menu1>li>ul{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.menu1>li>ul>li{
	margin: 0 0.7em 0.7em 0;
	font-size:0.8em;
}

.menu1>li>ul>li>a{
	background-image: linear-gradient(to right, var(--mycolor7), var(--mycolor7) 50%, var(--mycolor3) 50%);
}



.menu2{
	display:flex;
	flex-wrap: wrap;
	align-items: center;
}

.menu2 li{
	margin: 1em 1em 1.5em 0;
}

.menu2 li a{
	padding: 0.7em 1em;
	font-weight: var(--myfont-weight-bold);
	color:var(--mycolor1);
	background-color:var(--mycolor7);
	border-radius:10px;
}

.menu2 li a:hover{
	background-color:var(--mycolor8);
}



.menu3{
	display:flex;
	flex-wrap: wrap;
	align-items: center;
}

.menu3 li{
	margin: 1em 1em 0 0;
	font-weight: var(--myfont-weight-bold);
}

.menu3 li a{
	background-image: linear-gradient(to right, var(--mycolor7), var(--mycolor7) 50%, var(--mycolor2) 50%);
}



/*フッター*/


#footer{
	width: 90%;
	margin: 0 auto 50px auto;
	display: flex;
	flex-direction: column;
	align-items: center;

}

#footer h1 a{
	display: block;
	width: 180px;
    height: 75px;
    background-image: url(../images/logo2.svg);
    background-size: cover;
    text-indent: -9999px;
    overflow: hidden;
}

#footer h1 a:hover{
	opacity:0.5;
}

#footer address{
	font-size: 0.9em;
	line-height:1.6;
	margin:15px 0 0 0;
	text-align:center;
}

#footer .sns-list{
	margin:15px 0 0 0;
}

#footer .menu3{
	margin:15px -0.5em 0 -0.5em;
	justify-content: center;
}

#footer .menu3 li{
	margin:1em 0.5em 0 0.5em;
}

#footer .menu2{
	margin:10px -0.5em 0 -0.5em;
	justify-content:center;
}

#footer .menu2 li{
	margin:1em 0.5em 1em 0.5em;
}

#footer .menu2 li a{
	display: block;
	text-align: center;
}

#footer #copyright{
    font-size: 0.85em;
	margin:10px 0 0 0;
}

#footer #page-top{
    position: fixed;
    right: 15px;
    bottom: 10px;
    margin: 0;
	transition: .3s ease-out;
}

#footer #page-top a{
	font-size:0.9em;
	font-weight: var(--myfont-weight-bold);
	display:flex;
	flex-direction: column;
	align-items:center;
}

#footer #page-top a:before{
	content: "";
	background-image: url(../images/arrow1-color.svg);
	rotate: 90deg;
	background-size: cover;
	width: 25px;
	height: 25px;
	display: block;
	margin: 0 0 3px 0;
}

#footer #page-top a:hover{
	transition: transform 0.2s 0s ease-out;
	transform:translateY(-5px);
	transform-origin:center;
}

#footer .pagetop-0{
	opacity:0;
}

#footer .pagetop-100{
	opacity:1;
}



/*ボタン*/

.button1{
	width: fit-content;
	margin:0 auto;
}

.button1 a{
	font-weight: var(--myfont-weight-bold);
	font-size:1.1em;
    display: block;
    margin: 0;
    line-height: 1;
	display: flex;
	align-items: center;
}

.button1 a:after{
	content: "";
	background-image: url(../images/arrow2.svg);
	background-size: cover;
	width: 25px;
	height: 25px;
	display: block;
	margin: 0 0 0 0.7em;
}

.button1 a:hover{
	transition: transform 0.2s 0s ease-out;
	transform:translateX(5px);
	transform-origin:center;
}

.button1 a:hover:after{
	background-image: url(../images/arrow2-color.svg);
}




/*リスト*/

.sns-list{
	display: flex;
	align-items: center;
	flex-direction: column;
}

.sns-list p{
	font-size: 0.9em;
	margin:0 0 5px 0;
	font-weight: var(--myfont-weight-bold);
	display: flex;
	align-items: center;
}

.sns-list p:before{
	content: "";
	display: block;
	width: 2px;
	height: 1.4em;
	background-color: var(--mycolor2);
	rotate: -30deg;
	margin: 2px 10px 0 0;
}

.sns-list p:after{
	content: "";
	display: block;
	width: 2px;
	height: 1.4em;
	background-color: var(--mycolor2);
	rotate: 30deg;
	margin: 2px 0 0 10px;
}

.sns-list ul{
	display:flex;
	flex-wrap:nowrap;
	align-items: center;
}

.sns-list li{
	margin:0 3px 0 3px;
}

.sns-list li a{
	width: 25px;
    height: 25px;
	display:block;
	background-size: cover;
    text-indent: -9999px;
    overflow: hidden;
}

.sns-list .facebook a{
	background-image: url(../images/icon-fb.svg);
}

.sns-list .facebook a:hover{
	background-image: url(../images/icon-fb-color.svg);
}

.sns-list .instagram a{
    background-image: url(../images/icon-in.svg);
}

.sns-list .instagram a:hover{
    background-image: url(../images/icon-in-color.svg);
}

.sns-list .x a{
    background-image: url(../images/icon-x.svg);
}

.sns-list .x a:hover{
    background-image: url(../images/icon-x-color.svg);
}

.sns-list .line a{
    background-image: url(../images/icon-line.svg);
}

.sns-list .line a:hover{
    background-image: url(../images/icon-line-color.svg);
}

.sns-list .youtube a{
    background-image: url(../images/icon-youtube.svg);
}

.sns-list .youtube a:hover{
    background-image: url(../images/icon-youtube-color.svg);
}

.sns-list .note a{
    background-image: url(../images/icon-note.svg);
}

.sns-list .note a:hover{
    background-image: url(../images/icon-note-color.svg);
}



.list1{
	margin: 0 -2%;
	display:flex;
	flex-wrap:wrap;
	justify-content: center;
}

.list1>div{
	width:44%;
	margin: 0 3% 30px 3%;
}

.list1 .circle{
	border-radius: 50%;
	background-color: var(--mycolor1);
	padding: 100% 0 0 0;
	width: 100%;
	position: relative;
}

.list1 .circle>div{
	position:absolute;
	top:50%;
	left:50%;
	transform: translate(-50%, -50%);
	width:65%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.list1 .title3{
	order:1;
}

.list1 .thumb{
	width:75%;
}

.list1 ul{
	margin:1.5em 0 0 0;
}

.list1 ul li{
	margin:0.5em 0 0 0;
	line-height:1.5;
	font-size: 0.9em;
}

.list1 a:hover{
	color: var(--mycolor1);
}

.list1 .button1{
	margin: 1.5em auto 0 auto;
	font-size: 0.9em;
}

.list1 .button1 a:after{
	background-image: url(../images/arrow2-color.svg);
}


.list2{
	margin: 0 -2% -8% -2%;
	display:flex;
	flex-wrap: wrap;
	justify-content: center;
}

.list2>div{
	width:46%;
	margin: 0 2% 8% 2%;
}



.list2>div a{
	display:flex;
	flex-direction: column;
	padding:0 0 2.8em 0;
	position:relative;
}

.list2>div a:after{
	content:"";
	width:100%;
	height:5px;
	position: absolute;
	bottom: 0;
	background: linear-gradient(to right, var(--mycolor8), var(--mycolor8) 50%, var(--mycolor7) 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;
}

.list2>div a:hover:after{
	background-position: 0 100%;
}

.list2 .title{
	order:1;
	line-height:1.5;
	font-size: 1.2em;
	margin: 2em 0 1em 0;
}

.list2 .description{
	order:2;
	line-height:1.5;
	font-size: 1em;
	margin: 0 0 0 0;
}

.list2 .thumb{
	order:0;
	overflow: hidden;
	aspect-ratio: 1;
	border-radius: 20px;
}

.list2 .thumb img {
    transition: 0.3s ease-out;
	width:100%;
	height:100%;
}

.list2 a:hover .thumb img{
    transform: Scale(1.05);
}



.list3>div{
	display:flex;
	flex-direction: column;
	margin: 0 0 1em 0;
	padding: 0 0 1em 0;
	border-bottom: 1px solid var(--mycolor4);
}

.list3>div>div{
	display:flex;
	order:1;
}

.list3 .title{
	order:1;
	font-size: 1.1em;
	line-height:1.7;
	margin: 0 0 0 0;
}

.list3 .date{
	order:0;
	font-size: 1em;
	margin: 0 1em 0 0;
}

.list3 .cat{
	order:0;
	display:flex;
	flex-wrap: wrap;
}

.list3 .cat li{
	margin:0 0.5em 1em 0;
	padding: 0.2em 1em 0.13em 1em;
	background-color: var(--mycolor7);
	color: var(--mycolor1);
	font-size: 0.85em;
	border-radius: 5px;
}

.list3 .cat-engagement li{
	display:flex;
	align-items: center;
	font-size: 1.0em;
	color: var(--mycolor7);
	background: none;
	margin:0 1em 0.5em 0;
	padding:0;
}

.list3 .cat-engagement li span{
	width: 20px;
	height: 20px;
	display: block;
	margin: 0 0.5em 0 0;
	padding:5px;
	background-color: var(--mycolor8);
	border-radius: 50%;
}

.list3 .cat-engagement li span img{
	vertical-align: baseline;
}

.list3 a:hover{
	color: var(--mycolor7);
}



.list4{
	display:flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 0 -1%;
}

.list4 li{
	width:calc(18% - 2px);
	margin: 1% 1% 1% 1% !important;
	border: 1px solid var(--mycolor4);
}

@media screen and (max-width: 1500px){
	.list4 li{
		width: calc(48% - 2px);
	}
}

.list4 .thumb{
	order:0;
	overflow: hidden;
	border-radius:10px;
}

.list4 .thumb img {
    transition: 0.3s ease-out;
	width:100%;
	height:100%;
}

.list4 .thumb a:hover img{
    transform: Scale(1.05);
}




.list5 dt{
	margin:0 0 1.5em 0;
	font-size:1.05em;
	font-weight: var(--myfont-weight-bold);
	display:flex;
	cursor: pointer;
}

.list5 dt:before{
	content: 'Q';
    font-size: 3em;
    font-weight: var(--myfont-weight-bold);
	color:var(--mycolor7);
	line-height: 1;
	display:block;
    margin: -0.2em 20px 0 0;
}

.list5 dt:hover:before{
	color:var(--mycolor8);
}

.list5 dd{
	margin:0 0 2.2em 0;
	padding:0 0 2em 0;
	position:relative;
	display:flex;
	align-items: flex-start;
}

.list5 dd:before{
	content: 'A';
    font-size: 3em;
    text-indent: 0.05em;
    font-weight: var(--myfont-weight-bold);
	color:var(--mycolor8);
    line-height: 1;
    display: block;
    margin: -0.15em 20px 0 0;
}

.list5 dd:after{
	content: "";
    width: 100%;
    height: 1px;
    background-color: var(--mycolor4);
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
}

.list5 a{
	color: var(--mycolor7);
}

.list5 a:hover {
	color: var(--mycolor8);
}



.list6{
	display:flex;
	flex-wrap: wrap;
	margin: 0 -1% -10% -1%;
}

.list6>div a{
	display:flex;
	flex-direction: column;
}

.list6>div{
	width:48%;
	margin: 0 1% 10% 1%;
}

.list6 .title{
	order:1;
	font-size: 1.0em;
	line-height:1.5;
	margin: 1.5em 0 0.5em 0;
}

.list6 .meta{
	order:2;
	font-size: 0.85em;
	line-height:1;
	margin: 0;
	color:var(--mycolor3);
	text-transform:uppercase;
}

.list6 .meta p{
	margin: 0;
}

.list6 .meta .date{
	margin: 0 0 0.5em 0;
}

.list6 .thumb{
	aspect-ratio: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius:20px;
	background: linear-gradient(to top, var(--mycolor8), var(--mycolor8) 50%, var(--mycolor5) 50%);
	background-size: 100% 200%;
	background-position: 100% 0;
	overflow: hidden;
	transition: .3s .1s ease-out;
}

.list6 .thumb img{
	width:60%;
	display:block;
	filter: drop-shadow(2px 4px 6px var(--mycolor3));
}

.list6 a:hover .thumb{
    background-position: 0 100%;
}



/*タイトル*/


.title1,
.title2{
	display:flex;
	flex-direction: column-reverse;	
	align-items: center;
	margin: 0 0 1.5em 0;
}

.title2{
	margin: 0 0 2em 0;
}

.title1 .large,
.title2 .large{
	font-size: calc(1em + 1.3vw);
	line-height: 1;
	font-weight: var(--myfont-weight-bold);
	display: flex;
	flex-direction: column;
	align-items: center;
}

.title1 .small,
.title2 .small{
	font-size: calc(0.5em + 0.2vw);
	margin: 0 0 0.5em 0;
	display:flex;
	align-items: center;
}

.title1 .small:before,
.title2 .small:before{
	content: "";
	width:1em;
	height:2px;
	display:block;
	background-color: var(--mycolor2);
	margin: 0 0.5em 0 0;
}

.title1 .small:after,
.title2 .small:after{
	content: "";
	width:1em;
	height:2px;
	display:block;
	background-color: var(--mycolor2);
	margin: 0 0 0 0.5em;
}

.title2 .large:after{
	content: '';
	background-color: var(--mycolor7);
	width: 120%;
	height: 0.6em;
	margin: -0.4em 0 0 0;
	display: block;
	z-index: -1;
}


.title3{
	margin: 0 0 0 0;
}

.title3 a{
	display:flex;
	flex-direction: column-reverse;	
	align-items: center;
}

.title3 a:hover{
	color:var(--mycolor7);
}

.title3 .large{
	font-size: 3.5vw;
	line-height: 1;
	font-weight: var(--myfont-weight-bold);
	display: flex;
	flex-direction: column;
	align-items: center;
}

.title3 .small{
	font-size: 2.5vw;
	margin: 0 0 0 0;
	display:flex;
	align-items: center;
}

.title4{
	font-size: 1.2em;
	margin: 2em 0 0.7em 0;
	display:flex;
	align-items: center;
}

.title4:after{
	content: '';
	background-color: var(--mycolor2);
	width: 0.7em;
	height: 2px;
	margin: 0 0 0 0.5em;
	display: block;
}




/*重要なお知らせ*/

#top-important{
    background-color: rgba(247,247,247,0.7);
	position: absolute;
	bottom: 0;
	padding:4%;
	width: 92%;
}

#top-important h1{
	font-size: 0.8em;
	line-height: 1;
	color: var(--mycolor1);
	background-color: var(--mycolor9);
	padding: 0.6em 0.6em 0.6em 0.6em;
	border-radius: 5px;
	margin: 0 0 5px 0;
	width: 8em;
	text-align: center;
	flex-shrink: 0;
}

#top-important .bx-wrapper{
	margin:0;
	flex-grow: 1;
}

#top-important-slides li{
	line-height:1.5;
	font-weight: var(--myfont-weight-bold);
	font-size:0.9em;
}

#top-important-slides li a{
	position:relative;
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-size: 200% 100%;
	background-position: 100%;
	overflow: hidden;
	background-image: linear-gradient(to right, var(--mycolor9), var(--mycolor9) 50%, var(--mycolor2) 50%);
}

#top-important-slides li a:hover{
	background-position: 0 100%;
}

#top-important-slides .date{
	margin: 0 0.7em 0 0;
    padding: 0 0.7em 0 0;
    border-right: 2px solid var(--mycolor2);
}



/*トップMAIN VISUAL*/

#top-mainvisual{
	width: 100%;
	height:100svh;
	position:relative;
	background-color:var(--mycolor1);
	overflow-x: hidden;
	overflow-y: hidden;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

#top-mainvisual>h1{
	font-size: 4.0vh;
	line-height: 1.7;
	margin: 0 0 1vh 0;
	font-weight: var(--myfont-weight-bold);
	-webkit-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	text-orientation: mixed;
	z-index: 1;
}

#top-mainvisual #circle{
	position: absolute;
	top:50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width:120%;
}

#top-mainvisual #key-visual{
	z-index:0;
}

#top-mainvisual #key-visual img{
	width: 80vw;
}

.typ span{
	display:inline-block;
	transform:translateY(50px);
	filter: blur(30px);
	opacity:0;
}

.typ.active .typ-0{
	transition: 1s 0s ease-out;
	transform:translate(0px) !important;	
	filter: blur(0px) !important;
	opacity:1 !important;
}

.typ.active .typ-1{
	transition: 1s 0.2s ease-out;
	transform:translate(0px) !important;
	filter: blur(0px) !important;
	opacity:1 !important;
}

.typ.active .typ-2{
	transition: 1s 0.4s ease-out;
	transform:translate(0px) !important;
	filter: blur(0px) !important;	
	opacity:1 !important;
}

.typ.active .typ-3{
	transition: 1s 0.6s ease-out;
	transform:translate(0px) !important;
	filter: blur(0px) !important;	
	opacity:1 !important;
}

.typ.active .typ-4{
	transition: 1s 0.8s ease-out;
	transform:translate(0px) !important;
	filter: blur(0px) !important;	
	opacity:1 !important;
}

.typ.active .typ-5{
	transition: 1s 1.0s ease-out;
	transform:translate(0px) !important;
	filter: blur(0px) !important;
	opacity:1 !important;
}

.typ.active .typ-6{
	transition: 1s 1.2s ease-out;
	transform:translate(0px) !important;	
	filter: blur(0px) !important;
	opacity:1 !important;
}

.typ.active .typ-7{
	transition: 1s 1.4s ease-out;
	transform:translate(0px) !important;
	filter: blur(0px) !important;	
	opacity:1 !important;
}

.typ.active .typ-8{
	transition: 1s 1.6s ease-out;
	transform:translate(0px) !important;
	filter: blur(0px) !important;	
	opacity:1 !important;
}

.typ.active .typ-9{
	transition: 1s 1.8s ease-out;
	transform:translate(0px) !important;
	filter: blur(0px) !important;
	opacity:1 !important;
}

.typ.active .typ-10{
	transition: 1s 2.0s ease-out;
	transform:translate(0px) !important;	
	filter: blur(0px) !important;
	opacity:1 !important;
}

.typ.active .typ-11{
	transition: 1s 2.2s ease-out;
	transform:translate(0px) !important;	
	filter: blur(0px) !important;
	opacity:1 !important;
}

.typ.active .typ-12{
	transition: 1s 2.4s ease-out;
	transform:translate(0px) !important;	
	filter: blur(0px) !important;
	opacity:1 !important;
}

.typ.active .typ-13{
	transition: 1s 2.6s ease-out;
	transform:translate(0px) !important;
	filter: blur(0px) !important;	
	opacity:1 !important;
}

.typ.active .typ-14{
	transition: 1s 2.8s ease-out;
	transform:translate(0px) !important;
	filter: blur(0px) !important;	
	opacity:1 !important;
}

.typ.active .typ-15{
	transition: 1s 3.0s ease-out;
	transform:translate(0px) !important;
	filter: blur(0px) !important;	
	opacity:1 !important;
}

.typ.active .typ-16{
	transition: 1s 3.2s ease-out;
	transform:translate(0px) !important;
	filter: blur(0px) !important;	
	opacity:1 !important;
}

.typ.active .typ-17{
	transition: 1s 3.4s ease-out;
	transform:translate(0px) !important;
	filter: blur(0px) !important;
	opacity:1 !important;
}

.typ.active .typ-18{
	transition: 1s 3.6s ease-out;
	transform:translate(0px) !important;
	filter: blur(0px) !important;	
	opacity:1 !important;
}

.typ.active .typ-19{
	transition: 1s 3.8s ease-out;
	transform:translate(0px) !important;
	filter: blur(0px) !important;	
	opacity:1 !important;
}

.typ.active .typ-20{
	transition: 1s 4.0s ease-out;
	transform:translate(0px) !important;	
	filter: blur(0px) !important;
	opacity:1 !important;
}

.typ.active .typ-21{
	transition: 1s 4.2s ease-out;
	transform:translate(0px) !important;	
	filter: blur(0px) !important;
	opacity:1 !important;
}

.typ.active .typ-22{
	transition: 1s 4.4s ease-out;
	transform:translate(0px) !important;	
	filter: blur(0px) !important;
	opacity:1 !important;
}

.typ.active .typ-23{
	transition: 1s 4.6s ease-out;
	transform:translate(0px) !important;
	filter: blur(0px) !important;	
	opacity:1 !important;
}

.typ.active .typ-24{
	transition: 1s 4.8s ease-out;
	transform:translate(0px) !important;	
	filter: blur(0px) !important;
	opacity:1 !important;
}

.typ.active .typ-25{
	transition: 1s 5.0s ease-out;
	transform:translate(0px) !important;	
	filter: blur(0px) !important;
	opacity:1 !important;
}

.typ.active .typ-26{
	transition: 1s 5.2s ease-out;
	transform:translate(0px) !important;
	filter: blur(0px) !important;	
	opacity:1 !important;
}

.typ.active .typ-27{
	transition: 1s 5.4s ease-out;
	transform:translate(0px) !important;
	filter: blur(0px) !important;	
	opacity:1 !important;
}

.typ.active .typ-28{
	transition: 1s 5.6s ease-out;
	transform:translate(0px) !important;	
	filter: blur(0px) !important;
	opacity:1 !important;
}

.typ.active .typ-29{
	transition: 1s 5.8s ease-out;
	transform:translate(0px) !important;	
	filter: blur(0px) !important;
	opacity:1 !important;
}

.typ.active .typ-30{
	transition: 1s 6.0s ease-out;
	transform:translate(0px) !important;	
	filter: blur(0px) !important;
	opacity:1 !important;
}

.typ.active .typ-31{
	transition: 1s 6.2s ease-out;
	transform:translate(0px) !important;	
	filter: blur(0px) !important;
	opacity:1 !important;
}

.typ.active .typ-32{
	transition: 1s 6.4s ease-out;
	transform:translate(0px) !important;	
	filter: blur(0px) !important;
	opacity:1 !important;
}

.typ.active .typ-33{
	transition: 1s 6.6s ease-out;
	transform:translate(0px) !important;	
	filter: blur(0px) !important;
	opacity:1 !important;
}

.typ.active .typ-34{
	transition: 1s 6.8s ease-out;
	transform:translate(0px) !important;	
	filter: blur(0px) !important;
	opacity:1 !important;
}

.typ.active .typ-35{
	transition: 1s 7.0s ease-out;
	transform:translate(0px) !important;	
	filter: blur(0px) !important;
	opacity:1 !important;
}



/*トップ取り組み*/

#top-engagement{
	padding:12vw 0;
	background-color:var(--mycolor8);
}

#top-engagement .list1{
	width:90%;
	margin: 0 auto -4% auto;
}


/*トップピックアップ*/

#top-pickup{
	margin: 12vw auto;
	width:90%;
}



/*トップお知らせ*/

#top-topics{
	margin: 12vw auto;
}

#top-topics>div{
	width: 80%;
	margin: -3.5em auto 0 auto;
	padding: 6% 5% 8% 5%;
	background-color: var(--mycolor5);
	border-radius: 15px;
}

#top-topics .button1{
	margin: 8% auto 0 auto;
}



/*トップリンク*/

#top-links{
	margin: 12vw auto;
	width:90%;
}




/*下層ページ*/


/*トピックパス*/

#header .topicpath{
	line-height: 1;
	font-size: 0.9em;
	font-weight: var(--myfont-weight-bold);
	display: flex;
	flex-wrap: nowrap;
	justify-content: start;
	width: calc(100% - 16px);
	background-color: var(--mycolor5);
	padding: 8px;
	border-radius: 5px;
	overflow-x: scroll;
	white-space: nowrap;
}

#header .topicpath span{
	margin: 0.2em;
	color:var(--mycolor2);
}

#header .topicpath span a{
	background-image: 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;
}

#header .topicpath span a:hover{
	background-position: 0 100%;
}



/*アーカイブ・ページ*/

.lo-archive,
.lo-page{
	margin: 0 0 50px 0;
	border-bottom:10px solid var(--mycolor7);
}

.lo-archive{
	padding: 0 0 30px 0;
}

#lo-download-page .liststyle2,
#lo-disclosure-page .liststyle2{
	 font-weight: var(--myfont-weight-bold);
}

#lo-download-page .liststyle2 a,
#lo-disclosure-page .liststyle2 a{
	 color: var(--mycolor2);
	 font-weight: var(--myfont-weight-normal);
	 margin:0 0 0 0.7em;
	 font-size: 0.9em;
}

#lo-download-page .liststyle2 a:last-child,
#lo-disclosure-page .liststyle2 a:last-child{
	 margin:0 0.7em 0 0.7em;
}

#lo-download-page .liststyle2 a:hover,
#lo-disclosure-page .liststyle2 a:hover{
	 color: var(--mycolor7);
}

.lo-page{
	padding: 0 0 0 0;
}

.lo-archive-header{
	margin: 150px auto 30px auto;
	padding: 0 0 60px 0;
	border-bottom:10px solid var(--mycolor7);
}

.lo-page-header{
	margin: 150px auto 0 auto;
	padding: 0 0 60px 0;
	border-bottom:10px solid var(--mycolor7);
}

.lo-archive-header>div,
.lo-page-header>div{
	margin: 0 auto 0 auto;
	width: 90%;
}

.lo-archive-header h1,
.lo-page-header h1{
	display:flex;
	flex-direction: column-reverse;	
	margin: 0 0 0 0;
}

.lo-archive-header h1 .large,
.lo-page-header h1 .large{
	font-size: 5vw;
	line-height: 1;
	font-weight: var(--myfont-weight-bold);
}

.lo-archive-header h1 .small,
.lo-page-header h1 .small{
	font-size: 2.5vw;
	margin: 0 0 0.3em 0;
	display:flex;
	align-items: center;
}

.lo-archive-header h1 .small:before,
.lo-page-header h1 .small:before{
	content: "";
	width:1em;
	height:2px;
	display:block;
	background-color: var(--mycolor2);
	margin: 0 0.5em 0 0;
}

.lo-archive-header h2{
	font-size: 3vw;
	line-height: 1;
	font-weight: var(--myfont-weight-bold);
	display:flex;
	align-items: center;
	margin: 1em 0 0 0;
}

.lo-archive-header h2:before{
	content: "";
	width:2px;
	height:1em;
	background-color: var(--mycolor2);
	margin: 0 0.7em 0 0;
}

.lo-archive-header h2:after{
	content: "";
	width:2px;
	height:1em;
	background-color: var(--mycolor2);
	margin: 0 0 0 0.7em;
}

.lo-archive-content{
	width:90%;
	margin: 0 auto 0 auto;
}

.lo-archive-content .dropdown{
	margin:0 0 30px 0;
}

.lo-archive-content .button1{
	margin:30px auto 0 auto;
}



/*ドロップダウンメニュー*/

.dropdown{
	position:relative;
	z-index:1;
}

.dropdown .dd-title{
	font-weight: var(--myfont-weight-bold);
	border-bottom: 1px solid var(--mycolor4);
	padding: 10px 0;
	margin:0;
	position: relative;
	cursor: pointer;
	transition: .3s ease-out;
}

.dropdown .dd-title:after{
	position: absolute;
    top: calc(50% - 10px);
    right: 0;
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    background-image: url(../images/arrow1.svg);
    background-size: contain;
    transform: rotate(-90deg);
}

.dropdown .active:after{
    transform: rotate(90deg);
}

.dropdown .dd-title:hover{
	color: var(--mycolor7);
}

.dropdown .dd-menu{
	font-weight: var(--myfont-weight-bold);
	padding:10px 0;
	margin:0;
	width:100%;
	position:absolute;
	background-color: var(--mycolor5);
	border-radius:0 0 10px 10px;
}

.dropdown .dd-menu li a{
	color: var(--mycolor2);
	font-weight: var(--myfont-weight-normal);
	padding: 3px 10px;
	display: flex;
    flex-wrap: nowrap;
    align-items: center;
	transition: .3s ease-out; 
}

.dropdown .dd-menu li a:before{
    content: "";
    border-top: 1px solid var(--mycolor2);
    margin: 0 0.5em 0 0;
    width: 0.5em;
}

.dropdown ul li .active{
	background-color: var(--mycolor8);
}

.dropdown ul li a:hover{
	background-color: var(--mycolor8);
}






/*シングル*/

.lo-single{
	padding: 0 0 0 0;
	margin: 0 0 50px 0;
	border-bottom:10px solid var(--mycolor7);
}

.lo-single-header{
	margin: 160px auto 0 auto;
	padding: 0 0 60px 0;
	border-bottom:10px solid var(--mycolor7);
	display:flex;
	flex-direction:column;
}

.lo-single-header>div{
	margin: 0 auto 0 auto;
	width:90%;
	display:flex;
	flex-direction:column;
	order:1;
}

.lo-single-header h1{
	font-size: 4.2vw;
	line-height: 1.5;
	font-weight: var(--myfont-weight-bold);
	margin: 0 0 0 0;
	order:2;
}

.lo-single-header h2{
	font-size: 2.5vw;
	margin: 0 0 0.5em 0;
	display:flex;
	align-items: center;
	order:1;
}

.lo-single-header h2:before{
	content: "";
	width:1em;
	height:2px;
	display:block;
	background-color: var(--mycolor2);
	margin: 0 0.5em 0 0;
}

.lo-single-header .meta{
	font-size: 3vw;
	line-height: 1;
	font-weight: var(--myfont-weight-bold);
	display:flex;
	align-items: center;
	margin: 1em 0 0 0;
	order:3;
}

.lo-single-header .cat{
	display:flex;
	flex-wrap:wrap;
	align-items: center;
	margin: 1em 0 0 0;
	order:4;
}

.lo-single-header .cat:before{
	content: "";
	width:2px;
	height:1em;
	background-color: var(--mycolor2);
	margin: 0 0.7em 0 0;
}

.lo-single-header .cat:after{
	content: "";
	width:2px;
	height:1em;
	background-color: var(--mycolor2);
	margin: 0 0 0 0.7em;
}

.lo-single-header .cat li{
	font-size: 3vw;
	font-weight: var(--myfont-weight-bold);
	margin: 0 0.8em 0 0;
}

.lo-single-header .cat li:last-child{
	margin: 0 0 0 0;
}

.lo-single .dropdown{
	margin:0 0 30px 0;
}

.eyecatch{
	margin: -58px auto 60px auto;
	width:100%;
	order:0;
}

.eyecatch img{
	width:100%;
}

.column2{

}

.column2 .single-body{
	width:90%;
    margin: 0 auto 30px auto;
}

.column2 aside{
	width: 90%;
	background-color: var(--mycolor5);
	padding: 30px 5%;
	margin:0;
}

.side-menu>div{
	position:sticky;
	top:145px;
	width:100%;
}

.side-menu>div>div{
	display: flex;
	flex-wrap: nowrap;
	flex-direction: column-reverse;
	align-items: center;
}

.side-menu .title3{
	margin:0.5em 0 0 0;
	display:flex;
	flex-direction: column-reverse;	
	align-items: center;
}

.side-menu .title3 .large{
	font-size:4.5vw;
}

.side-menu .thumb{
	width:25%;
}

.side-menu ul{
	margin:1.5em 0 0 0; 
}

.side-menu ul li{
	font-size:1em;
	margin:0 0 0 0;
	line-height:1.5;
	padding:1em 0 1em 0;
	border-top:1px dotted var(--mycolor4); 
}

.side-menu ul li:first-child{
	border-top:1px solid var(--mycolor4); 
}

.side-menu ul li:last-child{
	border-bottom:1px solid var(--mycolor4); 
}

.side-menu ul li a:hover{
	color:var(--mycolor7);
}

.lo-single-footer,
.lo-page-footer{
	margin: 30px 0 0 0 !important;
	border-top: 1px solid var(--mycolor2);
}




/*記事*/

.single-body{
	width:90%;
    margin: 0 auto 30px auto;
	font-size:1.1em;
}

.single-body>div{
    margin: 30px 0 0 0;
}

.single-body h1{
    font-size: 1.2em;
    font-weight: var(--myfont-weight-bold);
    line-height: 1.6;
	margin:30px 0 0 0;	
}

.single-body h1:after{
	content: "";
	width:8px;
	height:8px;
	display:block;
	border-radius:50%;
	background-color: var(--mycolor7);
	margin: 10px 0 15px 0;
}


.single-body h2{
    font-size: 1.15em;
    font-weight: var(--myfont-weight-bold);
    line-height: 1.6;
	margin:30px 0 15px 0;	
}

.single-body h3{
    font-size: 1.1em;
    font-weight: var(--myfont-weight-bold);
    line-height: 1.6;
	margin:30px 0 15px 0;
}

.single-body a{
	color: var(--mycolor7);
	font-weight:var(--myfont-weight-bold);
}

.single-body a:hover{
	color: var(--mycolor8);
}

.single-body a:visited {
	color: var(--mycolor7);
}

.single-body a:visited:hover {
	color: var(--mycolor6);
}

.single-body p{
	margin:15px 0 15px 0;
	text-align:justify
}

.single-body ul,
.single-body ol,
.single-body dl,
.single-body table{
	margin:15px 0 15px 0;
}

.single-body>div 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;
}

.download:after{
	content:"";
    display: inline-block;
    width: 15px;
    height: 17px;
    background-image: url(../images/icon-download.svg);
	background-size: contain;
	margin:0 0 0 0.5em;
	vertical-align: text-bottom;
}

.map{
	position: relative;
    width: 100%;
    padding-top: 56.25%;
    height: 0;
	margin:15px 0 !important;
}

.map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/*スライド*/

.single-body .bx-viewport{
	margin: 0;
	border-radius: 10px 10px 0 0;
}

.single-body .bx-viewport ul{
	margin: 0;
}

.single-body .bx-controls{
	display:flex;
	align-items: center;
	justify-content: space-between;
	margin: 0;
	padding: 8px 10px;
	background-color: var(--mycolor5);
	border-radius: 0 0 10px 10px;
}

.single-body .bx-controls-direction{
	display:flex;
	order:1;
	margin:0;
}

.single-body .bx-controls a{
	font-weight: var(--myfont-weight-normal);
	color: var(--mycolor2);
	position: relative;
	overflow: hidden;
	margin:0 0 0 20px;
	display:flex;
	align-items: center;
	line-height: 1;
}

.single-body .bx-controls .bx-prev:before{
	content: "";
    background-image: url(../images/arrow1.svg);
	background-size: cover;
	width: 15px;
	height: 15px;
	display: block;
	margin: 0 7px 0 0;
}

.single-body .bx-controls .bx-next:after{
	content: "";
    background-image: url(../images/arrow2.svg);
	background-size: cover;
	width: 15px;
	height: 15px;
	display: block;
	margin: 0 0 0 7px;
}

.single-body .bx-controls a:hover{
	color: var(--mycolor7);
}

.single-body .bx-controls a:hover.bx-prev:before{
    background-image: url(../images/arrow1-color.svg);
}

.single-body .bx-controls a:hover.bx-next:after{
    background-image: url(../images/arrow2-color.svg);
}

.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 0 0 0;
}



/*リスト*/

.liststyle1{
    padding: 12px;
    border-radius: 10px;
    background-color:var(--mycolor8);
}

.liststyle1 li{
	margin:4px;
	padding-left: 1.1em;
    text-indent: -1.6em;
}

.liststyle1 li:before{
	content: "・";
	margin-right:0.5em;
}

.liststyle2{
    padding: 12px;
    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.2em;
    text-indent: -1.5em;
}

.liststyle4 li:before{
	content: "・";
	margin-right:0.5em;
}

.dlstyle1 dt{
	padding: 0 0 0 0;
	font-weight:var(--myfont-weight-bold);
}

.dlstyle1 dd{
	padding: 0 0 15px 0;
    margin: 0;
	font-size:0.9em;
}

.dlstyle2 dt{
	padding: 0 0 0 0;
	font-weight:var(--myfont-weight-bold);
}

.dlstyle2 dd{
	padding: 0 0 15px 0;
    margin: 0;
	font-size:0.9em;
}

.dlstyle3{
	background-color: var(--mycolor5);
    padding: 15px;
    border-radius: 10px;
}

.dlstyle3 dt{
	padding: 0 0 0 0;
	font-weight:var(--myfont-weight-bold);
}

.dlstyle3 dd{
	padding: 0 0 15px 0;
    margin: 0;
	font-size:0.9em;
}

.dlstyle3 dt:last-of-type{
	padding: 0 0 0 0;
}

.dlstyle3 dd:last-of-type{
	padding: 0 0 0 0;
}




/*テーブル*/

.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:10px;
}

.tablestyle1 td{
	line-height:1.5;
	padding:10px;
	background-color:var(--mycolor1);
	border-bottom: 1px solid var(--mycolor4);
}

.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(--mycolor7);
	color:var(--mycolor1);
	font-weight:var(--myfont-weight-bold);
	padding:10px;
}

.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:10px;
	margin-top:10px;
}


/*ページャー*/

.pager{
	margin: 0 0 0 0 !important;
	font-size: 0.9em;
}

.pager ul{
	display:flex;
	flex-wrap:nowrap;
	justify-content: space-between;
}

.pager li a{
	display:flex;
	align-items: center;
	color:var(--mycolor2);
}

.pager li a:visited{
	color:var(--mycolor2);
}

.pager li a:hover{
	color:var(--mycolor7);
}

.pager .next a:after{
	content:"";
    display: block;
    width: 20px;
    height: 20px;
    background-image: url(../images/arrow2.svg);
	background-size: contain;
	margin:0 0 0 0.5em;
}

.pager .next a:hover:after{
    background-image: url(../images/arrow2-color.svg);

}

.pager .prev a:before{
	content:"";
    display: block;
    width: 20px;
    height: 20px;
    background-image: url(../images/arrow1.svg);
	background-size: contain;
	margin:0 0.5em 0 0;
}

.pager .prev a:hover:before{
    background-image: url(../images/arrow1-color.svg);
}


/*add to any*/


.addtoany_content{
	width:100%;
	margin:15px 0 0 0 !important;
}

.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{
	margin:-50px 0 50px 0;
	padding:30px 0 30px 0;
	background-color:var(--mycolor5);
}

aside>div{
	width: 90%;
	margin:0 auto;
}

aside .title1{
	margin:0 0 1.5em 0;
}

aside .title1 .large{
	font-size: calc(1em + 0.9vw);
}





/*CTAボタン*/

.cta a{
	padding: 15px 15px;
	border-radius: 10px;
	color: var(--mycolor1);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background-image: linear-gradient(to right, var(--mycolor6), var(--mycolor7) 50%, var(--mycolor7) 50%);
	background-size: 200% 100%;
	background-position: 100%;
	overflow:hidden;
}

.cta a:hover{
	background-position: 0 100%;
	color: var(--mycolor1);
}

.cta a:visited{
	color: var(--mycolor1);
}

.cta h1{
	margin:0;
	font-size: 1.4em;

}

.cta h1:after{
	display:none;
}

.cta p{
	margin: -0.4em 0 0 0;
	font-size: 0.85em;
}





/*大きさ・カラー*/

.large-txt{
	font-size:2.0em;
}

.small-txt{
	font-size:0.8em;
}

.bold-txt{
	font-weight: var(--myfont-weight-bold);
}

.red-txt{
	color:var(--mycolor9);
}

.borderstyle1{
	padding:0 0 25px 0;
	border-bottom: 1px solid var(--mycolor3);
}

.bgstyle1{
    padding: 5px 20px;
    border-radius: 10px;
    background-color:var(--mycolor8);
}

.bgstyle2{
    padding: 5px 20px;
    border-radius: 10px;
    background-color:var(--mycolor5);
}

.bgstyle3{
    padding: 5px 20px;
    border-radius: 10px;
    border: 1px solid var(--mycolor3);
}




/*フォーム共通*/

.mailform dt{
	font-size:0.9em;	
}

.mailform dd{
	margin:0 0 15px 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(--mycolor9);
	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(--mycolor7);
	border: none;
	font-size:1.05em;
	font-family: var(--myfont-sans-serif);
	font-weight:var(--myfont-weight-bold);
	line-height:1;
	text-align:center;
	padding:15px 0;
	margin:30px 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(--mycolor8);
}

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: 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(--mycolor7);
}

.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(--mycolor7);
}

.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(--mycolor5);
    border-radius: 10px;
    border: none;
    margin: 0 0 0 0;
    padding: 20px;
	text-align: center;
}

.wpcf7-not-valid-tip {
    color: var(--mycolor9);
    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(--mycolor4);
    opacity: 1;
    margin: 20px auto 20px auto;
}

.grecaptcha-badge{
	visibility: hidden;
	bottom:78px !important;
}




/*サンクス*/

#lo-thanks-page header{
	display:none;
}

#lo-thanks-page .single-body{
	width:85%;
	margin:150px auto 100px auto;
	display:flex;
	flex-direction:column;
	justify-content:center;
}

#lo-thanks-page .single-body h1{
	font-size: 10vw;
	font-weight:var(--myfont-weight-bold);
    margin: 0 0px 15px 0;
	line-height: 1;
	text-align:center;
}

#lo-thanks-page .single-body h1:after{
	display:none;
}

#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 0 auto;
}

#lo-thanks-page .single-body .button1 a{
	color:var(--mycolor2);
}

#lo-thanks-page .single-body .lo-page-footer{
	display:none;
}






/*404*/

#lo-notfound-page header{
	display:none;
}

#lo-notfound-page .single-body{
	width:85%;
	margin:150px auto 100px auto;
	display:flex;
	flex-direction:column;
	justify-content:center;
}

#lo-notfound-page .single-body h1{
	font-size: 6vw;
    margin: 0 0px 15px 0;
	line-height: 1;
	text-align:center;
}

#lo-notfound-page .single-body h1:after{
	display:none;
}

#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 0 auto;
}

#lo-notfound-page .single-body .button1 a{
	color:var(--mycolor2);
	font-size:1.2em;
}

#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(--mycolor4);
  border-right: 5px solid var(--mycolor4);
  border-bottom: 5px solid var(--mycolor4);
  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);
  }
  
}

}


