@charset "utf-8";
/*
Theme Name: BRIGHT GATEWAY
Vresion: 1.0.0
*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Roboto+Mono:ital,wght@0,100..700;1,100..700&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic&family=Zen+Old+Mincho&display=swap');
/*
*{
	outline: 1px solid magenta;
}
*/
:root{
	--maincolor: #EC6A30;
	--secondcolor: #ffd0a5;
	--thirdcolor: #243549;
	--sectionbgcolor: #f4f4f4;
	--invertcolor: #fff;
	--maxwidthinner: 1280px;
}

html {
	scroll-behavior: smooth !important;
	overflow-x: hidden; /* iOS */
}

body {
	width: 100%;
	color: #000;
	font-family: 'Noto Sans JP', YuGothic, "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic medium", Meiryo, "sans-serif";
	/*font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif" ;*/
	/*font-family: "Zen Maru Gothic", serif;*/
	font-weight: 400;
	font-style: normal;
	line-break: strict;
	word-wrap: break-word;
	overflow-x: hidden;
}
/* HEADER */
header{
	width: 100%;
	position: fixed/*sticky*/;
	top: 0;
	z-index: 99;
	transition: transform 0.3s ease;
}

#header-nav{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	align-content: center;
	background-color: rgba(255,255,255,.75);
	gap: 16px;
	padding: 1rem;
}

.header-nav_inner:nth-of-type(1){
	flex: 1;
}

.header-nav_inner:nth-of-type(2){
	flex: 65%;
}

.header-nav_inner:nth-of-type(3){
	/*flex: 0;*/
}

.header-nav_inner img{
	width: auto;
	height: auto;
	max-width: 480px;
	max-height: 4rem;
	aspect-ratio: auto;
}

@media only screen and (max-width:1024px){
	.header-nav_inner {
		flex: 1 !important;
	}
}

@media only screen and (max-width:767px){
	#header-nav{
		height: 56px !important;
	}
}
/* SNS */
ul#menu-sns,
ul#menu-sns-1{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	align-items: center;
	align-content: center;
	gap: 16px;
}

ul#menu-sns li.menu-item,
ul#menu-sns-1 li.menu-item{
	width: calc(100% / 4 - 16px);
}

ul#menu-sns li.menu-item a,
ul#menu-sns-1 li.menu-item a{
	display: block;
	font-size: 150%;
	text-align: center;
}
/* MAIN VISUAL */
#main-visual {
	/*position: relative;*/
	width: 100%;
}

#main-visual img,
#main-visual video{
	width: 100vw;
	height: 100vh;
	height: calc(var(--vh, 1vh) * 100);
	object-fit: cover;
	object-position: bottom;
}

.main-visual__message {
	width: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}

.main-visual__message h1 {
	font-size: clamp(1.5rem, 1.3rem + 1vw, 2.5rem);
	color: #fff;
	text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
	text-align: center !important;
}

.main-visual__message h1 span {
	font-size: clamp(1rem, 0.9rem + 0.5vw, 1.5rem);
	color: #fff;
}

@media only screen and (max-width:767px){
	.main-visual__message {
		top: 25%;
	}
	
	#top_contents-1 .align1 {
		text-align: left;
	}
}
/* IMAGE HEADER */
.img-header{
	position: relative;
	width: 100vw;
	height: 35vh;
	height: calc(var(--vh, 1vh) * 35);
	background-color: var(--maincolor);
}

.img-header img {
	object-fit: cover;
	object-position: bottom;
}
/* CONTENTS */
#main {
	width: 100vw;
	margin: 0 calc(50% - 50vw);
}

section {
	padding: 2rem 0;
}

.section_bg{
	background-color: var(--sectionbgcolor);
	padding: 2rem 0 4rem;
}

.inner {
	max-width: var(--maxwidthinner);
	margin: 0 auto !important;
}

@media only screen and (max-width:1280px){
	.inner {
		padding: 0 1rem;
	} 
}

#container{
	width: 100%;
	max-width: var(--maxwidthinner);
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: stretch;
	align-content: flex-start;
	gap: 16px;
	margin: 0 auto 4rem;
}

#main-conts{
	width: calc(100% - 256px);
}

#side-conts{
	width: 240px;
}
/* POST LIST */
#new-post-list{
	width: 100%;
	background-color: var(--sectionbgcolor);
	padding: 4rem 0;
}

.post-list{
	list-style: none;
}

.post-title a {
	display: block;
	width: 100%;
}

.post-list li{
	display: flex;
	gap: 16px;
	border-bottom : solid 1px #f1f1f1;
	padding: .5rem 0;
}

.post-list li time.post-data{
	flex: 1;
}

.post-list li span.post-title{
	flex: 2;
}
/* FOOTER */
#footer{
	background-color: var(--maincolor);
}

#footer_inner{
	width: 100%;
	max-width: var(--maxwidthinner);
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-content: flex-end;
	align-items: flex-end;
	gap: 16px;
	margin: 0 auto;
	padding: 2rem 1rem;
}

.footer__inner{
	width: calc((100% - 48px) / 4);
}

.footer__inner,
.footer__inner a {
	color: var(--invertcolor);
}

#footer_inner .footer__inner:nth-of-type(2) li {
	text-align: center;
}

ul#menu-fnav li.menu-item a {
	font-size: 87.5%;
}

@media(max-width:767px) {
	.footer__inner {
		text-align: center;
	}
}
/* COPYRIGHT */
#copyright {
	text-align: right;
}

#copyright a {
	font-size: 75%;
}
/* TITLE */
h1{
	font-size: clamp(1rem, 0.95rem + 0.25vw, 1.25rem);
	line-height: 150%;
	color: #000;
}

.img-header h2{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	font-size: /*clamp(1.75rem, 1.7rem + 0.25vw, 2rem)*/200%;
	line-height: 150%;
	color: #fff;
	text-align: center;
	margin: 0 0 1rem;
}

h2,h3 {
	position: static;
	transform: none;
	font-size: clamp(1.5rem, 1.4rem + 0.5vw, 2rem);
	line-height: 150%;
	color: var(--maincolor);
	text-align: center;
	margin: 1rem 0;
	letter-spacing: .1rem;
}

@media(max-width:767px) {
	h2,h3 {
		line-height: 125%;
	}
}

h2 span,
h3 span {
	font-size: clamp(1rem, 0.95rem + 0.25vw, 1.25rem);
	color: var(--secondcolor);
}

h4{
	font-size: clamp(1.25rem, 1.2rem + 0.25vw, 1.5rem);
	line-height: 150%;
	color: #000;
	margin: 1rem 0;
}

h5{
	font-size: clamp(1rem, 0.95rem + 0.25vw, 1.25rem);
	line-height: 150%;
	color: #000;
	margin: 1rem 0;
}

h6{
	line-height: 150%;
	color: #000;
	margin: 1rem 0;
}
/* COMMON */
.mgn-t1{
	margin: 1rem 0 0;
}

.mgn-t2{
	margin: 2rem 0 0;
}

.mgn-t4{
	margin: 4rem 0 0;
}

.mgn-b {
	margin: 0 0 .5rem;
}

.mgn-b1 {
	margin: 0 0 1rem;
}

.mgn-b2 {
	margin: 0 0 2rem;
}

.non-pad{
	padding: 0 !important;
}

.pos-rel{
	position: relative;
}

.ltr-sc_s{
	letter-spacing: -.15rem;
}

.txt-upper {
	text-transform: uppercase;
}

.txt_wrap{
	padding: 0 0 2rem;
}

.txt_wrap-bg {
	background-color: #f1f1f1;
	padding: 1rem;
}

.txt_wrap ul,
.txt_wrap ol {
	margin-left: 1.25rem;
}

.align1{
	text-align: center;
}

.align2{
	text-align: right;
}

.align3{
	text-align: left;
}

.txt-color1{
	color: var(--maincolor);
}

.txt-color2{
	color: var(--secondcolor);
}

.txt-color3{
	font-size: 100%;
	color: var(--thirdcolor);
}

.txt-color4{
	color: var(--fourthcolor);
}

.txt-link {
	color: #1a0dab;
}

.txt-bold{
	font-weight: 600;
}

.txt-75{
	font-size: 75%;
}

.txt-85{
	font-size: 85%;
}

.txt-110{
	font-size: 110%;
}

.txt-125{
	font-size: 125%;
}

.txt-150{
	font-size: 150%;
}

.txt-tel a::before{
	content: '\f098';
	font-family: "Font Awesome 6 Free";
	font-weight: 600;
	padding: 0 .25rem 0 0;
}

.txt-bread::before{
	font-weight: 600;
	content: '\f098';
	font-family: "Font Awesome 6 Free";
	padding: 0 .25rem 0 0;
}
/* LAYOUT */
.flex-box_wrap{
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
	align-content: flex-start;
	align-items: flex-start;
	gap: 16px;
}

.flex-box_wrap-align1 {
	align-content: center !important;
	align-items: center !important;
}

.flex-box_wrap .flex-box__inner{
	width: calc(100% / 2 - 16px);
}

.flex-box_wrap .flex-box___inner{
	width: calc(100% / 3 - 32px);
}

.flex-box_wrap .flex-box____inner{
	width: calc(100% / 4 - 48px);
}

.flex-box____inner{
	width: calc(100% / 4 - 16px);
}

.outside-left{
    flex: 1;
    margin-left: calc(50% - 50vw);
    margin-right: 2rem;
}

.outside-left img{
	/*border-radius: 0 20px 20px 0;*/
}

.outside-right{
    flex: 1;
    margin-right: calc(50% - 50vw);
    margin-left: 2rem;
}

.outside-right img{
	/*border-radius: 20px 0 0 20px;*/
}

@media only screen and (max-width:767px){
.flex-box__inner,
.flex-box___inner{
	width: 100% !important;
	}
	
.outside-left, 
.outside-right {
    margin-left: 0 !important;
    margin-right: 0 !important;
	}

.outside-left img, 
.outside-right img {
	/*border-radius: 20px;*/
	}
	
.flex-order-1 {
	order: 1;	
	}

.flex-order-2 {
	order: 2;	
	}
}

.img_radius img{
	border-radius: 20px;
}
/* LIST */
ul.list-bullet li{
	list-style: none;
	text-indent: -1.5rem;
	padding-left: 1.5rem;
}

ul.list-bullet li::before{
	content: "\f152";/*f0c8*/
	font-family: "Font Awesome 6 Free";
	font-weight: 600;
	font-size: 85%;/*75%*/
	color: var(--maincolor);
	padding-right: .85rem;
}

ul.list-bullet li > ul li{
	list-style: none;
	text-indent: -1.5rem;
	padding-left: 1.5rem;
}

ul.list-bullet li > ul li::before{
	content: "\f111";
	font-family: "Font Awesome 6 Free";
	font-weight: 600;
	font-size: 75%;
	color: var(--secondcolor);
	padding-right: .85rem;
}

ul.asterisk li {
	list-style-type: none;
	text-indent: -1rem;
	padding-left: 1rem;
	font-size: 85%;
	line-height: 175%;
}
ul.asterisk li:before {
	display: inline;
	content: "※";
	padding-right: .25rem
}

ul.list-check li{
	list-style: none;
	text-indent: -2rem;
	padding-left: 2rem;
}

ul.list-check li::before{
	content: "\f14a";
	font-family: "Font Awesome 6 Free";
	font-weight: 600;
	color: var(--secondcolor);
	padding-right: 1rem;
}

ul.list-large li {
	font-weight: 600;
	font-size: 125%;
	line-height: 250%;
	font-family: "Zen Maru Gothic", serif;
}

ul.list-normal li{
	list-style: none;
	text-indent: -1.5rem;
	padding-left: 1.5rem;
}

ul.list-normal li::before{
	content: "\f111";
	font-family: "Font Awesome 6 Free";
	font-weight: 600;
	font-size: 50%;
	color: var(--secondcolor);
	padding-right: .85rem;
}

@media only screen and (max-width:767px){
	ul.list-large li {
		font-size: 115%;
		line-height: 175%;
	}	
}
/* MAP */
.iframe-wrap {
	position: relative;
	width: 100vw;
	margin: 0 calc(50% - 50vw);
	height: 0;
	padding-bottom: 56.25%;
	overflow: hidden;
}

.iframe-wrap iframe{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
/*
.disp_conts{
	display: contents;
}
*/
@media only screen and (max-width:767px){
.iframe-wrap {
	padding-bottom: 56.25%;
	}
}
/* TABLE */
table{
	width: 100%;
	border: none;
	margin: 1rem 0;
}

tr{
	border: 1px solid #e8e8e8;
	border-left: none;
	border-right: none;
	background-color: rgba(255,255,255,.6);
}

th,
td {
	border: none;
	padding: .5rem;
}

th {
	width: 20%;
	font-weight: normal;
	/*text-align: left;*/
}

@media(max-width:767px) {
	tr {
		border: none;
	}
	
	th,
	td {
		display: block;
		width: 100%;
	}
	
	th {
		background-color: rgba(255,255,255,.25);
		text-align: left;
	}
}
/* SIDEBAR */
.sidebar{
	margin: 0 0 2rem;
}

.sidebar select,
.sidebar input{
	width: 100%;
	border: 1px solid #f1f1f1;
	margin: .5rem 0 0;
	padding: .25rem .5rem;
}

.sidebar_ttl{
	font-size: 125%;
	font-weight: 600;
	color: var(--maincolor);
	border-top: .2rem solid var(--maincolor);
}

.sidebar ul li span,
.sidebar ul li a {
	font-size: 87.5%;	
}
/* WIDGET */
.widget_recent_entries ul{
	margin: .5rem 0 0;
}

.widget_recent_entries li{
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
	margin: 0 0 .5rem;
}

.widget_recent_entries li a{
	width: 100%;
	order: 2;
}

.widget_recent_entries li span.post-date{
	width: 100%;
	order: 1;
}

.wp-calendar-table caption{
	text-align: left;
}

.wp-calendar-table tr,
.wp-calendar-table th,
.wp-calendar-table td{
	width: auto;
	text-align: center;
}

.wp-calendar-table td#today{
	background-color: var(--maincolor);
}

.wp-calendar-nav{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-content: flex-start;
	align-items: flex-start;
	font-size: /*clamp(0.75rem, 0.705rem + 0.23vw, 0.875rem)*/87.5%;	
	line-height: 200%;
}

.widget_search input[type="submit"]{
	width: 5rem;
	display: block;
	font-size: /*clamp(0.75rem, 0.705rem + 0.23vw, 0.875rem)*/87.5%;
	color: #fff;
	border: 1px solid #e5e5e5;
	border-radius: .25rem;
	background-color: var(--maincolor);
	margin: 1rem auto 0;
	padding: .25rem;
}
/* BREAD CRUMB */
.breadcrumb {
	max-width: var(--maxwidthinner);
	margin: 0 auto;
	padding: 1rem 0;
}

@media only screen and (max-width:767px){
.breadcrumb{
	padding: 1rem .5rem;
	}
}

.breadcrumb-item {
	display: inline-block;
	font-size: 87.5%;
}

.breadcrumb-item a span {
	font-size: 87.5%;
}

.breadcrumb-item:nth-child(n + 2)::before{
	display: inline-block;
	font-family: 'Font Awesome 6 Free';
	font-weight: 600;
	content: '\f105'; /*f101*/
}
/* ARCHIVE */
.arc_wrap {
	display: grid;
	grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
	gap: 16px;
}

.arc-img {
	position: relative;
	margin: 0 0 .5rem;
}

.arc-img img{
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
}

.arc-label{
	width: 25%;
	height: 25%;
	position: absolute;
	top: 0;
	left: 0;
	background-color: var(--secondcolor);
	padding: .75rem .5rem .5rem;
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
	z-index: 99;
}

.arc-data {
	font-size: 87.5%/*clamp(0.75rem, 0.705rem + 0.23vw, 0.875rem)*/;
	line-height: 120%;
	font-family: "Roboto", sans-serif;
	font-weight: 600;
	color: #fff;
}

.arc-cat a{
	display: inline-block;
	font-size: 75%;
}

.arc-title{
	line-height: 150%;
	font-weight: 600;
}

.arc-txt{
	font-size: 87.5%;
	line-height: 150%;
}

.arc-label2 {
	display: grid;
	grid-template-columns: repeat(auto-fit,minmax(96px,1fr));
	align-content: flex-start;
	align-items: flex-start;
	gap: 4px;
}

.arc-data2 {
	font-size: 87.5%;
	line-height: 120%;
	font-family: "Roboto", sans-serif;
	font-weight: 600;
} 

.arc-cat2,
.arc-cat2 a{
	font-weight: 600;
	font-size: 75%;
	line-height: 120%;
	color: #fff;
}

.arc-cat2 a {
	background-color: var(--secondcolor);
	padding: .25rem 1rem;
}
/* PAGER */
.nav-links {
	position: relative;
	width: 100%;
    display: block;
	padding: 4rem 0 2rem;
}

.nav-links ul{
	display: flex;
	justify-content: center;
	gap: 16px;
	list-style: none;
}

.nav-links li > * {
	display: flex;
	align-items: center;
	justify-content: center;
	/*font-size: clamp(0.75rem, 0.705rem + 0.23vw, 0.875rem);*/
	height: 48px;
}

.nav-links li > *:not(.dots){
	width: 48px;
	color: rgba(255,255,255,1);
	background-color: #e5e5e5;
	border-radius: 50%;
	transition: color 0.3s ease, background 0.3s ease;
}

.nav-links li > .current,
.nav-links li > a:hover{
	color: rgba(255,255,255,1);
	background-color: #b2b2b2;
}

.nav-next{
	position: absolute;
	width: 32px;
	right: 0;
}

.nav-previous{
	position: absolute;
	width: 32px;
	left: 0;
}

.nav-previous a,
.nav-next a{
	display: block;
	color: var(--maincolor);
	text-align: center;
	border: solid 1px var(--maincolor);
	padding: .5rem;
}

.nav-previous a:hover,
.nav-next a:hover{
	color: #fff;
	background-color: var(--maincolor);
}
/* FORM */
#form{
	width: 93.75%;
	margin: 2rem auto;
}

#form table {
	max-width: 960px !important;
	margin: 0 auto;
}

#form tr{
	border-top: solid 1px #e5e5e5;
	border-bottom: solid 1px #e5e5e5;
	border-left: none;
	border-right: none;
}

#form th{
	width: 25%;
	text-align: left;
	background-color: #fff;
	border: 0;
	padding: 2rem 0;
	vertical-align: top;
}

#form td{
	border: 0;
	padding: 2rem 0;
}

.wpcf7 .wpcf7-spinner{
	display: none !important; /* 送信ボタンの不要なマージン削除 */
}

.wpcf7 input,
.wpcf7 select,
.wpcf7 textarea{
	border: solid 1px rgba(225,225,225,1);
	border-radius: .25rem;
	padding: .5rem;
}

.wpcf7 #form input[name="your-name"],
.wpcf7 #form input[name="your-company"],
.wpcf7 #form input[name="your-tel"],
.wpcf7 #form input[name="your-email"],
.wpcf7 #form textarea[name="your-message"]{
	display: block;
	width: 50%;
}

.wpcf7 #form input[name="zip"],
.wpcf7 #form input[name="pref"],
.wpcf7 #form input[name="city"]{
	display: block;
	width: 25%;
}

.wpcf7 input[type="submit"],
.wpcf7 input[type="button"],
.wpcf7 input[type="reset"]{
	display: block;
	color: rgba(255,255,255,1);
	text-decoration: none;
	text-shadow: none;
	box-shadow: none;
	border: solid 2px var(--maincolor);
	border-radius: .25rem;
	background-color: var(--maincolor);
	margin: 0 auto;
	padding: .5rem 1rem;
}

.wpcf7 input[type="submit"]:hover,
.wpcf7 input[type="button"]:hover,
.wpcf7 input[type="reset"]:hover{
	color: var(--maincolor);
	border: solid 2px var(--maincolor);
	background-color: rgba(255,255,255,1);
}

.must{
	background-color: var(--maincolor);
}

.free{
	background-color: #ccc;
}

.must,
.free{
	color: rgba(255,255,255,1);
	font-size: 75%;
	margin: 0 .5em 0 0;
	padding: .25rem .5rem;
	border-radius: .25rem;
}

.accept{
	/*font-size: clamp(0.875rem, 0.83rem + 0.23vw, 1rem);*/
	text-align: center;
	margin: 2rem auto;
}
/* FEATURES */
.feature_wrap {
	display: grid;
	grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
	gap: 32px;
}

.bg-circle_h{
	position: relative;
	padding-top: 100%;
	height: 0;
	background-color: rgba(196,187,156,.35);
	border-radius: 50%;
	box-shadow: 0px 0px 15px -5px var(--maincolor);
}

.bg-circle_h .circle_in-img{
	width: auto;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	z-index: -1;
}

.bg-circle_h .circle_in-img img{
	width: 100%;
	object-fit: contain;
	object-position: center;
	opacity: .5;
}

.bg-circle_h .circle_in-ttl{
	position: absolute;
	width: 100%;
	top: 30%;
	left: 50%;
	transform: translate(-50%,-50%);
	font-size: 135%/*clamp(1.25rem, 1.2rem + 0.25vw, 1.5rem)*/;
	font-weight: 600;
	line-height: 150%;
	color: var(--thirdcolor);
	text-align: center;
	z-index: 1;
}

.circle_in-txt{
	width: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-25%);
	line-height: 175%;
	color: #000;
	/*margin: 1rem 0 0; bgの外に出す場合 */
	padding: 0 2rem;
}
/* PARALLAX */
.parallax_bg {
	position: relative;
	background-attachment: fixed;
	background-image: url("images/parallax_bg.jpg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	padding-bottom: 4rem;
}

/* ----------------------
Common
---------------------- */
body.no-transition .header-nav_nav-menu {
    transition: none;
}

.sp-only {
	display: none;
}

@media(max-width:767px) {
	.sp-only {
		display: block;
	}

	.txt_wrap {
		padding: 0;
	}
}
/* PAGE TOP */
.page-top-button {
	position: fixed;
	z-index: 9000;
	right: 4.75rem;
	bottom: 4.25rem;
	width: 4.25rem;
	height: 4.25rem;
	cursor: pointer;
	background: var(--maincolor);
	border-radius: 10px;
	transition: opacity 0.5s;
	box-shadow: 3px 3px 10px rgba(0,0,0, 0.3);
}

.page-top-button::after {
    position: absolute;
    top: 44%;
    left: 53%;
    width: 15px;
    height: 15px;
    content: "";
    transform: rotate(-45deg) translate(-50%, -50%);
    border-top: 4px solid #FFF;
    border-right: 4px solid #FFF;
}

.page-top-button:hover {
	color: var(--secondcolor);
	transition: all .5s ease;
}

.page-top-button:hover::after {
	border-top: 4px solid  var(--secondcolor);
    border-right: 4px solid  var(--secondcolor);
}

@media(max-width:767px) {
	.page-top-button {
		 right: .25rem;
	}

	.page-top-button::after {
		position: absolute;
		top: 45%;
		left: 55%;
		width: 10px;
		height: 10px;
		border-top: 2px solid #FFF;
		border-right: 2px solid #FFF;
	}
}


@media(max-width:767px) {
	.flex-box_wrap .flex-box__inner:nth-of-type(2) ul {
		/*padding-left: 1rem;*/
	}
}

@media (max-width: 399px) {
    .parallax_bg {
        background-attachment: scroll; /* パララックス効果を無効に */
    }
}
/* ----------------------
Map
---------------------- */
.non-pad {
	position: relative;
}

.non-pad .inner {
	padding: 0;
}
/* ----------------------
Animation
---------------------- */
.js-scroll-trigger {
	opacity: 0;
}

.fade-in.is-active {
	animation: fadeIn 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
  }

.fade-in2.is-active {
	animation: fadeIn 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
	animation-delay: 0.3s;
}

.fade-in3.is-active {
	animation: fadeIn 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
	animation-delay: 0.6s;
}

.fade-in4.is-active {
	animation: fadeIn 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
	animation-delay: 0.9s;
}

.fade-in5.is-active {
	animation: fadeIn 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
	animation-delay: 1.2s;
}

.fade-in6.is-active {
	animation: fadeIn 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
	animation-delay: 1.5s;
}

@keyframes fadeIn {
	0% {
		opacity: 0;
	}

	50% {
		opacity: 0.5;
	}

	100% {
		opacity: 1;
	}
}
/* reCAPTCHA */
.grecaptcha-badge {
	margin-bottom: 3.75rem;/*.75*/
}

@media(max-width:767px) {
	.grecaptcha-badge {
		margin-bottom: 5rem;
	}	
}

/* responsive */
.pc-none {
	display: none;
}

@media(max-width:767px) {
	.md-none {
		display: none;
	}

	.pc-none {
		display: block;
	}
}