@CHARSET "UTF-8";

/* = common setting
-------------------------------------------------------------- */ 

:root {
  --main_blue: #001253;
	--nav_blue: #697295;
	--bg_blue: #F6F6FF;
	--bg: #EFEFEF;
  --bk: #000;
	--header_height: 5rem;
}
@media screen and (min-width: 1024px){
  :root {
		--header_height: 90px;
	}
}

*{
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
html{
	font-size: 62.5%;
	scroll-behavior: smooth;
}
body {
	margin: 0;
	font-size: 1.2rem;
	font-weight: 400;
	font-family: "Jost","Noto Sans JP", sans-serif;
	color: var(--bk);
	line-height: 1.7;
	letter-spacing: 1px;
}



/* =layouts
-------------------------------------------------------------- */

body,
#page{
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
#site_footer{
  margin-top: auto;
}

table{
	width: 100%;
	border-collapse: collapse;
  border-spacing: 0;
	background: #fff;
}
table thead{
	background: var(--bg);
}
table th{
	padding: .5rem;
	text-align: left;
  width: 30%;
	font-weight: 400;
}
table td{
	padding: .5rem;
}

.table{
	border-top: #707070 solid 1px;
}
.table tr{
	border-bottom: #707070 solid 1px;
}
.table th{
	text-align: center;
	vertical-align: middle;
	position: relative;
}
.table th::after,
.table td:not(:last-child)::after{
	content: '';
	background: #707070;
	height: calc(100% - 2rem);
	width: 1px;
	position: absolute;
	top: 1rem;
	right: 0;
}
.table td{
	vertical-align: middle;
	position: relative;
}

.txt_right{
	text-align: right;
}

h1,h2,h3,h4,h5,h6{
	margin: 0;
	font-weight: 700;
}
ul,dl,dt,dd{
	margin: 0;
	padding: 0;
	font-weight: 400;
}
li{
	list-style-type: none;
	margin: 0;
	padding: 0;
}
p{
	margin: 0;
}
.pc_only{
	display: none;
}


#page{
	padding-top: var(--header_height);
}
.wrapper{
	width: 90%;
	max-width: 1050px;
	margin: 0 auto;
}

.main_contaienr{
	padding: 3rem 0 5rem;
}
.section{
	padding: 3rem 0;
}
.block{
	margin-bottom: 5rem;
}

.bg{
	background: var(--bg);
}

#message_404 p{
	margin-bottom: 3rem;
}
#message_404 .btn_link{
	margin: 0;
}


/* Clearing floats */
.clear:after{
	clear: both;
}
.clear:before,
.clear:after{
	display: table;
	content: "";
}

.txt_right{
	text-align: right;
}
.txt_vertical{
	writing-mode: vertical-rl;
}
.txt_small{
	font-size: 70%;
}
.txt_large{
	font-size: 150%;
}

.underline{
	background: linear-gradient(to bottom , rgba(255,255,255,0) 50%, #ffff00 51%);
	font-weight: 700;
}



/* =link
-------------------------------------------------------------- */


a{
	outline: none;
	color: var(--bk);
	text-decoration: none;
	transition: .3s;
}
*:focus {
  outline: none;
}

.btn_link{
	background: var(--main_blue);
	border: var(--main_blue) solid 1px;
	color: #fff;
	display: block;
	padding: 1rem;
	width: 100%;
	max-width: 25rem;
	margin: 0 auto;
	text-align: center;
  position: relative;
	border-radius: 50px;
	font-weight: 500;
	font-size: 1.4rem;
	transition: .3s;
}

.arrow{
	width: .8rem;
	height: .8rem;
	border-top: #fff solid 1px;
	border-right: #fff solid 1px;
	position: absolute;
	rotate: 45deg;
	right: 1.5rem;
	top: 50%;
	translate: 0 -50%;
	z-index: 5;
}
.arrow_left{
	right: auto;
	left: 1.5rem;
	rotate: -135deg;
}
.link_none{
  pointer-events: none !important;
  cursor: default !important;
  opacity: .3;
}


input[type="submit"]{
	outline: 0;
	box-shadow: none;
	border: none;
	cursor: pointer;
}
label{
	cursor: pointer;
}

.icon{
	display: inline-block;
	width: 2rem;
	height: 2rem;
	margin-right: .5rem;
}
.icon_pdf{
	background: url('../img/icon_pdf.svg') no-repeat center center / contain;
}
.icon_word{
	background: url('../img/icon_word.svg') no-repeat center center / contain;
}
.icon_excel{
	background: url('../img/icon_excle.svg') no-repeat center center / contain;
}




/* =media
-------------------------------------------------------------- */

img,
svg{
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
	transition: .3s;
}
iframe{
	max-width: 100%;
}
.img_clip{
	position: relative;
}
.img_clip::before{
	content: '';
	padding-top: 100%;
	display: block;
	background: #ccc;
}
.img_clip img{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.youtube_wrap{
  position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
}
.youtube_wrap iframe{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}




/* =tub
-------------------------------------------------------------- */

summary{
	cursor: pointer;
}
summary::marker{
  content: none;
}
summary::-webkit-details-marker{
  display: none;
}

.accordion dd{
	display: none;
}

.tab_cont{
	display: none;
}
.tab_cont.current{
	display: block;
}

.tab_wrap{
	border-bottom: var(--main_blue) solid .2rem;
	overflow: auto;
	position: sticky;
	top: var(--header_height);
	background: #fff;
	z-index: 999;
	padding-top: 1rem;
}
.tab_wrap ul{
	display: flex;
	white-space: nowrap;
}
.tab_wrap ul li{
	margin-right: .5rem;
}
.tab{
	border-radius: 0;
	background: #fff;
	color: var(--main_blue);
	border-top-left-radius: 1rem;
	border-top-right-radius: 1rem;
	max-width: 100%;
	padding: 1rem 2rem;
	font-size: 1.2rem;
	border-bottom: 0;
	cursor: pointer;
}
.tab.current{
	background: var(--main_blue);
	color: #fff;
	pointer-events: none;
}


.icon_plus__wrap{
	background: #fff;
	width: 3rem;
	height: 3rem;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 3rem;
	margin-left: 1rem;
}
.icon_plus{
	width: 1.5rem;
	height: 1px;
	background: var(--main_blue);
	position: relative;
}
.icon_plus::after{
	content: '';
	background: var(--main_blue);
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	rotate: 90deg;
	transition: .3s;
}
details[open] .icon_plus::after{
	rotate: none;
	opacity: 0;
}



/* =slick base
-------------------------------------------------------------- */

.slick-arrow{
	width: 1rem;
  height: 1rem;
  z-index: 10;
}
.slick-prev{
  left: -5px;
}
.slick-next{
  right: -5px;
}
.slick-arrow::before{
	content: '' !important;
  width: 100%;
  height: 100%;
  border-top: #000 solid 1px;
  border-left: #000 solid 1px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 1;
}
.slick-prev:before{
  transform: translate(-35%,-50%) rotate(-45deg);
}
.slick-next:before{
  transform: translate(-65%,-50%) rotate(135deg);
}
.slick-slide:focus{
  outline: 0;
}
.slick-dots > li:first-child:last-child {
   display: none;
}
.slick-dots{
	bottom: 1rem;
	z-index: 10;
}
.slick-dots li{
	width: 3rem;
	height: 1rem;
}
.slick-dots li button{
	width: 100%;
	height: 100%;
	background: #fff;
	border-radius: 50px;
}
.slick-dots li.slick-active button{
	background: #ccc;
}
.slick-dots li button:before{
	content: none;
}
.slick-track {
  display: flex;
}
.slick-slide {
  height: auto !important;
}



/* =modal
-------------------------------------------------------------- */

.modal_wrap{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 9999;
	background: rgba(255,255,255,.7);
	display: flex;
	align-items: center;
	justify-content: center;
}
.modal_wrap__inner{
	background: #fff;
	border-radius: 1rem;
	padding: 3rem 5%;
	width: 90%;
	max-width: 600px;
	margin: 0 auto;
	box-shadow: 0 0 3px rgba(0,0,0,.2);
	position: relative;
}

.modal_close{
	position: absolute;
	top: -2rem;
	right: 1rem;
	width: 4rem;
	height: 4rem;
	background: var(--main_blue);
	border-radius: 50%;
	z-index: 99;
	display: flex;
	align-items: center;
	justify-content: center;
}
.modal_close .icon_plus{
	rotate: 45deg;
	background: #fff;
}
.modal_close .icon_plus::after{
	background: #fff;
}

/* =title
-------------------------------------------------------------- */

.title{
	font-size: 1.6rem;
	font-weight: 700;
	margin-bottom: 2rem;
}
.section_title{
	font-size: 2rem;
	margin-bottom: 2rem;
	font-weight: 700;
	line-height: 1.5;
}
.icon_title{
	font-size: 1.6rem;
	margin-bottom: 1rem;
	display: flex;
	align-items: center;
}
.block_title{
	padding: .5rem 1rem;
	margin-bottom: 1rem;
	background: var(--bg);
	font-size: 1.6rem;
	font-weight: 500;
}
.post_list__title{
	margin-bottom: 1rem;
}
.post_list__title span{
	display: inline-block;
	border: var(--main_blue) solid 2px;
	padding: .5rem 1.5rem;
	border-radius: .5rem;
	color: var(--main_blue);
	font-size: 1.4rem;
	line-height: 1.5;
}

.akechi_comment{
	background: var(--bg);
	padding: 2rem 5%;
	margin: 3rem 0;
}
.form_wrap .akechi_comment{
	margin: 1rem 0;
}
.akechi_comment h2{
	color: var(--main_blue);
	margin-bottom: 1rem;
}






/* =post
-------------------------------------------------------------- */

.post_list{
	margin-bottom: 2rem;	
}
.post_list li{
	border-bottom: #000 solid 1px;
}
.post_box{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	padding: 1rem 0;
}
.post_box__inner{
	display: contents;
}
.posted_date{
	color: var(--main_blue);
	font-weight: 500;
	margin: 0 auto 0 0;
}
.posted_title{
	font-size: 1.4rem;
	line-height: 1.5;
	margin-top: .5rem;
	width: 100%;
}
.cat_plate{
	display: inline-block;
	padding: .2rem 1rem;
	background: var(--main_blue);
	color: #fff;
	font-size: 1rem;
	border-radius: .3rem;
	margin-left: 1rem;
	line-height: 1.5;
}
.seminar_cat{
	margin: 0 0 1rem;
}
.entry_header{
	margin: 5rem 0;
	border-bottom: var(--main_blue) solid .3rem;
	padding-bottom: 1rem;
}
.entry_header h1{
	font-size: 2rem;
	line-height: 1.5;
}
.entry_header .entry_date{
	margin-top: 1rem;
}
.entry_content{
	padding-bottom: 5rem;
}
.entry_content h2{
	margin: 4rem 0 2rem;
	font-size: 1.8rem;
	line-height: 1.5;
	padding-left: 1.5rem;
	border-left: var(--main_blue) solid .4rem;
}
.entry_content h3{
	background: var(--nav_blue);
	padding: 1rem;
	border-radius: .5rem;
	color: #fff;
	font-size: 1.6rem;
	margin: 3rem 0 1rem;
}
.entry_content h4{
	color: var(--main_blue);
	font-size: 1.6rem;
	margin: 2rem 0;
}
.entry_content p{
	margin: 2rem 0;
}
.entry_content a{
	text-decoration: underline;
	color: var(--main_blue);
}
.entry_content a:hover{
	text-decoration: none;
}
.entry_content table{
	margin: 2rem 0;
}
.entry_content table tr{
	border: 0;
}
.entry_content table th,
.entry_content table td{
	border: #999 solid 1px;
}
.entry_content table th{
	font-weight: 700;
	background: var(--bg_blue);
}
.entry_content ul,
.entry_content ol{
  padding: 2rem 5%;
  margin: 3rem 0;
  background: var(--bg_blue);
}
.entry_content li{
  margin: .5rem 0;
  line-height: 1.5;
  position: relative;
  padding-left: 2rem;
}
.entry_content ul li::before{
  content: '・';
  position: absolute;
  top: 2px;
  left: 0;
}
.entry_content ol{
  counter-reset: number;
}
.entry_content ol li::before{
  counter-increment: number;
  content: counter(number)'.';
  top: 0;
  left: 0;
  position: absolute;
}
.entry_content figure{
	margin: 2rem 0;
}

.sort_wrap{
	margin: 3rem 0 1rem auto;
	width: 60%;
}
.sort_box{
	margin: 1rem 0;
}
.sort_box .input_box{
	background: #fff;
	min-height: 3rem;
}




/* =page nav
-------------------------------------------------------------- */

.page_links{
  text-align: center;
  display: flex;
  justify-content: space-between;
  margin: 3rem 0;
	font-size: 1rem;
}
.page_links li{
	width: 30%;
	max-width: 10rem;
}
.page_links li .btn_link{
	font-size: 1rem;
	background: var(--nav_blue);
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: .5rem 1.5rem;
	cursor: pointer;
}
.page_links li .btn_link i{
	position: static;
	translate: none;
}
.nav_single{
	clear: both;
	display: flex;
  justify-content: center;
  margin: 5rem 0;
  border-top: #ccc solid 1px;
  border-bottom: #ccc solid 1px;
}
.nav_single li{
	width: 33.33%;
	text-align: center;
}
.nav_single li a{
	display: block;
	padding: 1.5rem 0;
}
.nav_archive{
	border-left: #ccc solid 1px;
	border-right: #ccc solid 1px;
}

.page_nav{
	padding: 3rem 0;
}
.page_nav ul{
	display: flex;
	flex-wrap: wrap;
}
.page_nav ul li{
	margin: 0 1rem 1rem 0;
}
.btn__page_nav{
	border-radius: 1rem;
	background: #fff;
	color: var(--main_blue);
	border-radius: 1rem;
	max-width: 100%;
	padding: 1rem 2rem;
}
.btn__page_nav.current{
	background: var(--main_blue);
	color: #fff;
	pointer-events: none;
}



/* =calender
-------------------------------------------------------------- */

.calender_head{
	margin: 1rem 0;
	position: relative;
}
.calender_title{
	text-align: center;
	font-size: 1.6rem;
	font-weight: 700;
	margin-bottom: 1rem;
}
.calender_head .page_links{
	margin: 0;
}
.calender_table{
	table-layout: fixed;
}
.calender_table thead th{
	padding: .5rem;
	text-align: center;
	color: var(--main_blue);
	font-weight: 700;
	border: #707070 solid 1px;
}
.calender_table td{
	position: relative;
	padding: 0;
	border: #707070 solid 1px;
}
.cal_today{
	background: #fcfae6;
}
.cal_day{
	position: absolute;
	top: 0;
	left: .5rem;
	z-index: 30;
}
.cal_today .cal_day{
	font-weight: 700;
	color: #eb6100;
}
.cal_day__inner{
	font-size: 1rem;
	line-height: 1.4;
	letter-spacing: 0;
	padding: 1.8rem 0 .5rem;
}
.cat_txt__wrap{
	position: relative;
}
.cal_txt{
	padding: .1rem .3rem;
	margin: 0 .1rem .2rem;
	display: block;	
	border-radius: .3rem;
	white-space: nowrap;
	overflow: hidden;
  text-overflow: ellipsis;
	height: 1.5rem;
	position: relative;
}
.cal_day__start{
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
	margin: 0 0 .2rem .1rem;
}
.cal_day__end{
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
	margin: 0 .1rem .2rem 0;
}
.cal_day__middle{
	border-radius: 0;
	margin: 0 0 .2rem;
}

.cal_baloon__wrap{
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 10px;
  z-index: 50;
  overflow: visible;
}
.cat_txt__wrap:hover .cal_baloon__wrap{
  display: block;
}
.cal_baloon{
  position: relative;
  border: #000 solid 1px;
  background: #fff;
  padding: 5px;
  border-radius: 5px;
  width: 120px;
  font-size: 1rem;
  transition: .3s;
}
.cal_baloon:hover{
  transform: translateY(-5px);
}
.cal_baloon::before{
  content: '';
  background: #fff;
  width: 10px;
  height: 10px;
  position: absolute;
  top: -9px;
  left: 50%;
  clip-path: polygon(50% 0,100% 100%,0 100%);
  z-index: 10;
}
.cal_baloon::after{
  content: '';
  background: #000;
  width: 10px;
  height: 10px;
  position: absolute;
  top: -11px;
  left: 50%;
  clip-path: polygon(50% 0,100% 100%,0 100%);
  z-index: 5;
}
.cal_baloon .cat_plate{
  display: block;
  width: 100%;
  font-size: 1rem;
	margin: 0;
}
.cal_baloon__title{
  line-height: 1.4;
  display: block;
  margin: .5rem 0;
  font-weight: bold;
}
.cal_baloon__more{
  display: block;
  text-align: right;
  font-size: 80%;
}
.calender_table thead th.week_sun{
	background: #e60012;
	color: #fff;
}
.calender_table .week_sat{
	background: #c6eafa;
}


.event_cal__table{
	table-layout: fixed;
}
.event_cal__table th,
.event_cal__table td{
	border: var(--main_blue) solid 1px;
}
.event_cal__table th{
	text-align: center;
	font-weight: 700;
	width: auto;
	padding: 3px 0;
}
.event_cal__table td{
	padding: 3px 5px;
}
.event_cal__table th.event_cal__day{
	width: 4rem;
	letter-spacing: 0;
}
.event_cal__day{
	text-align: center;
	vertical-align: middle;
}
.event_cal__table .week_sun{
	background: #fbedee;
}
.event_cal__table .week_sun .event_cal__day{
	color: #e60012;
}
.event_cal__table .week_sat{
	background: #e6f6fb;
}
.event_cal__table .week_sat .event_cal__day{
	color: #00b7ee;
}
.event_cal__box{
	display: flex;
	line-height: 1.3;	
	padding: 3px 0;
	border-bottom: var(--nav_blue) solid 1px;
	transition: none;
}
.event_cal__box:last-child{
	border: 0;
}
.event_cal__box_inner{
	flex: 1;
}
.event_cal__time{
	width: 10rem;
	padding: 3px 5px;
}
.event_cal__txt{
	border-radius: 3px;
	display: block;
	padding: 3px 5px;
	border-radius: 5px;
	font-weight: 700;
	color: #fff;
	transition: .3s;
}
.event_cal__box:hover .event_cal__txt{
	filter: brightness(1.1);
}
.event_cal__place{
	display: block;
	margin-top: 3px;
}
.event_no_link{
	pointer-events: none;
}
.event_no_link .event_cal__txt{
	background: none !important;
	border: 0 !important;
}
.event_no_link .event_cal__txt,
.event_link__none{
	color: var(--bk) !important;
}
.kind_1 .event_cal__txt{
	color: #e60012 !important;
}
.cat01{
	border: #007130 solid 2px;
	background: #007130;
}
.cat02{
	border: #15B4A8 solid 2px;
	background: #15B4A8;
}
.cat03{
	border: #eb6877 solid 2px;
	background: #eb6877;
}


.cal_sort{
	margin: 1rem 0;
	border-radius: 1rem;
	overflow: hidden;
}
.cal_sort__title{
	background: var(--main_blue);
	padding: .5rem 1rem;
	position: relative;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	border-top-left-radius: 1rem;
	border-top-right-radius: 1rem;
}
.cal_sort__title .icon_plus__wrap{
	scale: .5;
}
.cal_sort__inner{
	padding: .5rem 5%;
	border: var(--main_blue) solid 2px;
	border-bottom-left-radius: 1rem;
	border-bottom-right-radius: 1rem;
}
.cal_sort__inner .sort_box{
	margin: 1rem 0;
}

.calender_guide td a{
	display: block;
	height: 100%;
}
.calender_guide .cal_day__inner{
	min-height: 6rem;
}
.calender_guide .cal_day__inner{
	display: flex;
	align-items: center;
	justify-content: center;
}
.calender_guide .guide_stock{
	text-align: center;
	height: auto;
	color: var(--nav_blue);
	line-height: 1.2;
	font-weight: 700;
}
.calender_guide .guide_stock__num{
	font-size: 1.6rem;
	transition: .3s;
}
.calender_guide .rsv_none a,
.calender_guide .no_link{
	pointer-events: none;
}
.calender_guide .rsv_none .cal_day__inner,
.calender_guide .no_link .cal_day__inner{
	background: #ccc;
}
.calender_guide .rsv_none .guide_stock, 
.calender_guide .no_link .guide_stock{
	display: none;
}






/* =form
-------------------------------------------------------------- */

.form_attentions ul li{
	margin: .5rem 0;
	text-indent: -1em;
	padding-left: 1em;
}
.form_attentions ul li::before{
	content: '●';
}
.form_wrap{
	border: var(--main_blue) solid 2px;
	border-radius: 1rem;
	padding: 2rem 5% 5rem;
	position: relative;
	z-index: 5;
	margin-top: 5rem;
}
.txt_error{
	color: #960014;
	display: block;
	margin-top: .5rem;
	font-weight: 700;
}
.require{
	background: #960014;
	color: #fff;
	font-size: 1.2rem;
	padding: .5rem 1rem;
	border-radius: 50px;
	margin-right: 1rem;
}
.input_wrap{
	margin-bottom: 1rem;
	position: relative;
}
.input_box{
	width: 100%;
	padding: .5rem 1rem;
  line-height: 1.7;
  border: #707070 solid 1px;
	border-radius: .5rem;
	min-height: 4rem;
}
p.input_box{
	border: 0;
}
input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px #f4f4f4 inset;
}
.input_box.short_box{
	width: 150px;
}
.input_check__wrap li{
	margin-bottom: .5rem;
}
.input_check__wrap input[type="radio"],
.input_check__wrap input[type="checkbox"]{
	width: 2rem;
	height: 2rem;
	vertical-align: middle;
	margin-right: .5rem;
}
.input_wrap__flex{
	display: flex;
	flex-wrap: wrap;
}
.input_wrap__flex li{
	margin-right: 3rem;
}
input[type="date"]{
  position: relative;
}
input[type=date]::-webkit-calendar-picker-indicator {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
}
input[type="date"]::-webkit-inner-spin-button{
  -webkit-appearance: none;
}
input[type="date"]::-webkit-clear-button{
  -webkit-appearance: none;
}
.input_box:invalid,
input[type="radio"],
input[type="checkbox"]{
	border: #a40000 solid 2px;
}

.form_wrap label{
	cursor: pointer;
}

.form_wrap input[disabled]{
	background: #ccc !important;
	border: #ccc solid 1px;
	color: #fff !important;
	box-shadow: none;
	transform: none;
}

.form_table{
	margin-bottom: 3rem;
}
.form_table tr{
	border-bottom: #999 solid 1px;
}
.form_table th{
	display: block;
	width: 100%;
	border: 0;
	color: var(--main_blue);
	font-weight: 700;
	font-size: 1.4rem;
	position: relative;
	padding: 1.5rem;
	z-index: 5;
}
.form_table th::before{
	content: '';
	background: var(--bg);
	position: absolute;
	top: .5rem;
	left: 0;
	border-radius: .5rem;
	width: 100%;
	height: calc(100% - 1rem);
	z-index: -1;
}
.form_table th span{
	font-size: 80%;
}
.form_table td{
	display: block;
	border: 0;
	padding: 1rem 0;
	font-size: 1.4rem;
}
.form_wrap .attention{
	background: #efefef;
	padding: 1rem 5%;
	margin-top: .5rem;
	font-size: 1.2rem;
}
.form_wrap .attention p{
	margin: 1rem 0;
}
.policy_check{
	text-align: center;
	margin: 3rem 0;
}
.policy_check p{
	margin: 1rem 0;
}

.form_wrap .wpcf7-not-valid-tip{
	font-weight: 700;
	color: #960014;
}

.form_recaptcha{
	border: #999 solid 1px;
	padding: 20px 5%;
	margin: 0 auto;
	max-width: 500px;
	font-size: 12px;
}
.form_recaptcha p{
	margin: 0;
	text-align: left;
}
.form_recaptcha p a{
	text-decoration: underline;
	margin: 0 5px;
}
.grecaptcha-badge{
	visibility: hidden;
}

.wpcf7-turnstile{
	text-align: center;
	margin: 3rem 0;
}

#entry_form h2{
	text-align: center;
	margin: 2rem 0;
}
.entry_list th{
	display: table-cell;
	width: 30%;
	padding: .5rem 0;
	vertical-align: middle;
	font-size: 1.2rem;
	text-align: center;
}
.entry_list td{
	display: table-cell;
	padding: .5rem 1rem;
	font-size: 1.2rem;
	vertical-align: middle;
}
.entry_list th.entry_form__num::before{
	content: none;
}
.entry_list th.entry_form__num{
	padding: .5rem 2rem;
	color: #fff;
	background: var(--nav_blue);
	width: 1.5rem;
	vertical-align: middle;
	border-right: #fff solid 1rem;
	padding: .5rem;
	text-align: center;
	border-bottom: #fff solid 2px;
}
.entry_list tr.entry_list__sp{
	border-bottom: var(--main_blue) solid 2px;
}
#entry_form .block_title{
	background: var(--main_blue);
	color: #fff;
}

#confirm_message{
	border: var(--main_blue) solid 2px;
	border-radius: 1rem;
	text-align: center;
	padding: 2rem 1rem;
	margin-bottom: 2rem;
	color: var(--main_blue);
	font-weight: 700;
	font-size: 1.6rem;
}
#thansk_message .btn_link{
	margin: 5rem 0 0;
}

.btn_submit__wrap{
	text-align: center;
}
.btn_submit{
	font-size: 1.6rem;
	max-width: 30rem;
}
.btn_back{
	border: var(--nav_blue) solid 1px;
	background: var(--nav_blue);
	margin-top: 3rem;
}

#zip{
	margin-bottom: .5rem;
}

.rsv_item{
	padding: 1rem 0;
	display: flex;
	align-items: center;
	line-height: 1.5;
	border-bottom: var(--nav_blue) dotted 1px !important;
}
.rsv_item:last-child{
	border: 0 !important;
}
.btn_delete{
	background: #fff;
	font-size: 1rem;
	color: var(--main_blue);
	width: 5rem;
	margin: 0 0 0 auto;
	padding: .2rem;
}
.rsv_item__txt{
	flex: 1;
	margin-right: 1rem;
}

.btn__form_link{
	position: sticky;
	bottom: 2rem;
	width: 80%;
	z-index: 50;
	border-radius: 50px;
	font-size: 1.2rem;
	background: var(--nav_blue);
	color: #fff;
	margin: 2rem auto
}




/* =header
-------------------------------------------------------------- */

#site_header{
	background: var(--main_blue);
	display: flex;
	align-items: center;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
	width: 100%;
	padding: 0;
	height: var(--header_height);
}
#header_logo{
  display: block;
  width: 13rem;
	padding: 0 1rem;
  margin: 0 auto 0 0;
}
#header_links{
	display: flex;
	align-items: center;
}
#header_links li{
	margin-right: .5rem;
}
#header_links li a{
	border: #fff solid 1px;
	display: block;
	color: #fff;
	font-size: 1rem;
	line-height: 1.3;
	padding: .5rem 1rem;
	border-radius: .5rem;
	text-align: center;
	font-weight: 500;
}
#header_links li a.side_nav__btn{
	background: #fff;
	color: var(--main_blue);
}
#header_nav__btn{
	width: 5rem;
	height: 5rem;
	text-align: center;
  cursor: pointer;
	position: relative;
}
#header_nav__btn .border_wrap{
  position: absolute;
	left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
}
#header_nav__btn .border{
	width: 30px;
	height: 3px;
	background-color: #fff;
	border-radius: 3px;
  display: block;
  margin-bottom: 5px;
  transition: all .4s;
	box-sizing: border-box;
}
#header_nav__btn .border:last-child{
  margin: 0;
}
.nav_active #header_nav__btn .border:nth-of-type(1) {
	-webkit-transform: translateY(8px) rotate(-45deg);
	transform: translateY(8px) rotate(-45deg);
}
.nav_active #header_nav__btn .border:nth-of-type(2) {
	opacity: 0;
}
.nav_active #header_nav__btn .border:nth-of-type(3) {
	-webkit-transform: translateY(-8px) rotate(45deg);
	transform: translateY(-8px) rotate(45deg);
}



#side_nav{
	width: 80%;
	max-width: 35rem;
	height: 100%;
	background: var(--nav_blue);
	z-index: 999;
	position: fixed;
	top: 5rem;
	right: -35rem;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
	opacity: 0;
	visibility: hidden;
	transition: .3s;
	padding: 2rem 5% 5rem;
	font-size: 1.4rem;
}
.nav_active #side_nav{
	opacity: 1;
	visibility: visible;
	right: 0;
}
#side_nav li{
	padding: .5rem 0;
}
.side_nav__link{
	position: relative;
	margin: 0 0 2rem;
	/*border-top: #fff solid 1px;*/
}
.side_nav__link li{
	border-top: #fff solid 1px;
}
.side_nav__nolink,
.side_nav__link li a{
	display: block;
	padding: .1rem 1rem;
	position: relative;
	color: #fff;
	border: transparent solid 1px;
	border-radius: .5rem;
}
.side_nav__link li a.current{
	background: var(--main_blue);
	color: #fff;
}

.side_nav__child{
	margin-left: 2rem;
}
.side_nav__child li{
	border-top: #fff dashed 1px;
}
.side_nav__child li:first-child{
	border: 0;
}
.nav_child__wrap>li{
	border-bottom: 0;
}





/* =footer
-------------------------------------------------------------- */

#site_footer{
	background: var(--main_blue);
	color: #fff;
	padding: 3rem 0 1rem;
}
#footer_logo{
	width: 20rem;
	display: block;
	margin: 0 auto 2rem;
}
#site_footer a{
	color: #fff;
}
#footer_nav{
	display: flex;
	flex-wrap: wrap;
	margin: 3rem 0;
	border-top: rgba(255,255,255,.7) solid 1px;
}
#footer_nav li{
	width: 50%;
	border-bottom: rgba(255,255,255,.7) solid 1px;
}
#footer_nav a{
	display: block;
	padding: 1.5rem 1rem;
	text-align: center;
	position: relative;
}
#footer_links{
	margin: 3rem 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
#footer_links li{
	border-right: #fff solid 1px;
	line-height: 1;
	margin: .5rem 0;
}
#footer_links li:last-child{
	border: 0;
}
#footer_links li a{
	font-size: 1.2rem;
	color: #fff;
	display: inline-block;
	padding: 0 1rem;
}
#footer_links li a:hover{
	text-decoration: underline;
}
#footer_copy{
	text-align: center;
	font-size: 1rem;
	color: #fff;
	margin-top: 3rem;
}






/* =news
-------------------------------------------------------------- */

.news_box{
	display: flex;
}
.news_box .posted_date{
	font-weight: 700;
	flex: 0 0 10rem;
	padding: 1rem 0;
}
.news_box__link{
	flex: 1;
}
.news_box__link li{
	border: 0;
}
.month_link__wrap{
	margin-bottom: 4rem;
}
.month_link{
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 1rem;
}
.month_link li{
	width: 33.33%;
	border-right: #fff solid 1px;
	margin-bottom: .5rem;
}
.month_link li a{
	padding: 2rem 0;
	text-align: center;
	display: block;
	color: #fff;
	background: var(--main_blue);
}
.seminar_list__wrap{
	margin-bottom: 3rem;
}
.seminar_detail__table{
	margin-bottom: 5rem;
}

#page_anzen .page_nav ul{
	display: block;
}
#page_anzen .page_nav li:not(:last-child){
	margin-bottom: 1rem;
}

#anzen01 .table th{
	width: 20%;
}
#anzen01 .table td{
	padding: 1rem;
}
.file_links li{
	line-height: 1.4;
	margin: .5rem 0;
}
.file_links a{
	text-decoration: underline;
}
.file_links a:hover{
	text-decoration: none;
}
#anzen03 .table th{
	width: 50%;
	padding: 1rem 0;
}
#anzen03 .table td{
	text-align: center;
	padding-left: 3rem;
}
#anzen03 .table td ul{
	display: flex;
	align-items: center;
}
#anzen03 .table td ul li{
	margin-right: 1rem;
}
.pdf_link{
	display: flex;
	align-items: center;
	justify-content: center;
	padding: .5rem;
	margin: 0;
}

#guide_intro .btn_link{
	display: flex;
	align-items: center;
	justify-content: center;
	padding: .5rem;
	margin: 3rem 0 0;
	max-width: 40rem;
}

.anzen_files__archives .post_list__title{
	margin-bottom: 3rem;
}

#anzen01_header{
	display: flex;
	align-items: center;
}
#anzen01_header .btn_link{
	font-size: 1.2rem;
	padding: .5rem 1.5rem;
	width: 13rem;
	margin-left: 1rem;
	text-align: left;
}
#anzen01_header .section_title{
	flex: 1;
}
#anzen04_wrap{
	padding: 2rem 5%;
	border: var(--nav_blue) solid 1px;
	margin-bottom: 3rem;
}
#anzen04_wrap p{
	margin: 1rem 0;
}
#anzen04_wrap h3{
	text-align: center;
	margin: 2rem 0;
	font-size: 1.6rem;
}
#anzen04 .pdf_link{
	margin: 0 auto;
}





/* =DVD
-------------------------------------------------------------- */

.dvd_block{
	margin-bottom: 2rem;
}
.dvd_block__title{
	background: var(--bg);
	display: flex;
	align-items: center;
	position: relative;
}
.dvd_block__num{
	width: 3rem;
	align-self: stretch;
	background: var(--main_blue);
	font-size: 2rem;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
}
.dvd_block__title h3{
	padding: 1rem;
	color: var(--main_blue);
	font-size: 1.8rem;
	line-height: 1.4;
	flex: 1;
}
.dvd_block__title h3 span{
	font-size: 70%;
	margin-left: 1rem;
}
.dvd_block__title .icon_plus__wrap{
	margin-right: 1rem;
}


.table_wrap{
	overflow: auto;
}
.dvd_block__table{
	table-layout: fixed;
}
.dvd_block__table label{
	display: block;
}
.dvd_block__table th,
.dvd_block__table td{
	border: #000 solid 1px;
	text-align: center;
	vertical-align: middle;
}
.dvd_block__table th{
	width: 4rem;
	position: relative;
}
.dvd_block__table td{
	width: 10rem;
	font-size: 1.1rem;
}
.dvd_block__table td.dvd_name{
	width: 20rem;
	text-align: left;
}
.dvd_block__table thead td.dvd_name{
	text-align: center;
}
.dvd_block__table td.dvd_pdf{
	width: 4rem;
	padding: .5rem;
}
.dvd_block__table td.dvd_pdf .icon_pdf{
	width: 2.5rem;
	height: 2.5rem;
}
.dvd_block__table td.dvd_pdf a{
	position: relative;
	z-index: 99;
}
.dvd_block__table td.dvd_date{
	padding: 1rem .5rem;
	width: 12rem;
}
.dvd_block__table td.dvd_date p:not(:last-child){
	border-bottom: #999 dotted 1px;
}
.input_none{
	display: none;
}
.rsv_check{
	width: 1.5rem;
	height: 1.5rem;
	display: block;
	position: relative;
	border: var(--bk) solid 1px;
	border-radius: .3rem;
	margin: 0 auto;
}
.rsv_check::after{
	content: '';
	display: block;
	width: 1rem;
	height: 1.5rem;
	position: absolute;
	border-bottom: var(--main_blue) solid 2px;
	border-right: var(--main_blue) solid 2px;
	rotate: 45deg;
	top: 50%;
	left: 50%;
	translate: -50% -50%;
	z-index: 5;
	opacity: 0;
}
.input_none:checked + .rsv_check::after{
	opacity: 1;
}
.selected{
	background: var(--nav_blue);
	color: #fff;
}
.selected .rsv_check::after{
	border-bottom: #fff solid 2px;
	border-right: #fff solid 2px;
	opacity: 1;
}
.rsv_none th,
.rsv_none td{
	background: #aaa;
	pointer-events: none;
}
.rsv_none .rsv_check{
	display: none;
}
.dvd_block__table td.dvd_pdf{
	pointer-events: all !important;
}



/* =sale
-------------------------------------------------------------- */

.sale_attentions{
	margin-bottom: 3rem;
}
.sale_attentions p{
	margin-bottom: 2rem;
}
.sale_attentions .btn_link{
	margin: 3rem 0 0;
}
.sale_item__title span{
	background: var(--main_blue);
	color: #fff;
	font-size: 1.6rem;
}
/*
.sale_item__list{
	display: flex;
	flex-wrap: wrap;
	margin: 0 -1rem;
}
.sale_item__box{
	width: 50%;
	padding: 0 1rem;
	margin-bottom: 3rem;
	display: flex;
	flex-direction: column;
}
.sale_item__img{
	box-shadow: 0 0 2px 2px rgba(0,0,0,.2);
}
.sale_item__img .img_clip::before{
	background: none;
}
.sale_item__img .img_clip img{
	object-fit: contain;
}*/
.sale_item__box{
	display: flex;
	border-bottom: var(--nav_blue) solid .2rem;
	padding: 1.5rem 0;
	align-items: flex-end;
}
.sale_item__box_inner{
	flex: 1;
	margin-right: 1rem;
}
.sale_item__name{
	margin: 1rem 0;
	font-size: 1.4rem;
	line-height: 1.5;
}
.sale_item__box p{
	line-height: 1.4;
}
.zaiko_stock{
	margin: .5rem 0 0;
	display: flex;
	align-items: center;
}
.zaiko_stock .btn_link{
	font-size: 1rem;
	padding: .2rem 1rem;
	width: 10rem;
	margin: 0 1rem 0 0;
}
.sale_item__txt{
	margin-bottom: 1rem;
}
.sale_item__bottom{
	width: 10rem;
	text-align: center;
}
.sale_item__num{
	width: 8rem;
}
.sale_item__price{
	font-weight: 700;
	flex: 1;
	margin-bottom: 1rem;
	white-space: nowrap;
}
.sale_item__price span{
	font-size: 150%;
}
.sale_item__buttom{
	background: #15B4A8;
	width: 4rem;
	height: 4rem;
	margin: 0 auto;
}
.sale_item__incart{
	width: 4rem;
	height: 4rem;
	flex: 0 0 4rem;
	background: #eb6100;
	font-size: 2rem;
	color: #fff;
}
.sale_item__buttom .icon_plus{
	width: 2rem;
	background: #fff;
}
.sale_item__buttom .icon_plus::after{
	background: #fff;
}
.sale_item__buttom.cant_order{
	background: #ccc;
	pointer-events: none;
}
.no_stock__txt{
	color: #a40000;
	font-weight: 700;
}
.sales_price{
	margin-top: 1rem;
	padding-top: 1rem;
	border-top: var(--main_blue) solid 1px;
	text-align: right;
	font-weight: 700;
}
.wrapping_info{
	display: inline-block;
	width: 2rem;
	height: 2rem;
	background: var(--nav_blue);
	color: #fff;
	border-radius: 50%;
	line-height: 2rem;
	text-align: center;
	font-size: 1.2rem;
}
.sale_item__name .wrapping_info{
	margin-left: 1rem;
}
.quantity_modal__title{
	text-align: center;
	font-size: 1.6rem;
	margin-bottom: 3rem;
	line-height: 1.5;
	font-weight: 600;
}
.number-spinner-wrap{
    position: relative;
    display: flex;
		align-items: center;
		justify-content: center;
    width: 90%;
		max-width: 300px;
    height: 2rem;
		margin: 0 auto;
}
.number-spinner-wrap input::-webkit-outer-spin-button,
.number-spinner-wrap input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.number-spinner-wrap input{
  width: 100%; height: 100%;
  padding-left: 3rem;
  padding-right: 3rem;
  text-align: center;
	font-size: 2rem;
}
.number-spinner-wrap .spinner{
	position: absolute;
  top: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	background: var(--main_blue);
	border-radius: 50%;
	color: #fff;
	cursor: pointer;
  user-select: none;
	transform: translate(0, -50%);
	font-size: 2rem;
	line-height: 1;
}
.number-spinner-wrap .spinner .icon_plus,
.number-spinner-wrap .spinner .icon_plus::after{
	background: #fff;
}
.number-spinner-wrap .spinner-down{
  left: 2px;
  border-right: 1px solid lightgray;
}
.number-spinner-wrap .spinner-down .icon_plus::after{
	content: none;
}
.number-spinner-wrap .spinner-up{
  right: 2px;
  border-left: 1px solid lightgray;
}
.quantity_modal .btn_link{
	margin-top: 3rem;
}











/* =RWD
-------------------------------------------------------------- */

@media screen and (min-width: 768px){
  .mobile_only{
		display: none;
	}
	.pc_only{
		display: block;
	}
  a[href*="tel:"] {
    pointer-events: none !important;
    cursor: default !important;
    text-decoration: none !important;
  }
  table th{
		padding: 1rem;
	}
	table td{
		padding: 1rem;
	}
	.table th{
		width: 20%;
	}
	#anzen01 .table td{
		padding: 1rem 2rem;
	}
	#anzen03 .table th{
		width: 33.33%;
	}
	.section{
		padding: 4rem 0;
	}
	.block{
		margin-bottom: 8rem;
	}
	.section_title{
		font-size: 2.6rem;
	}
	.icon{
		width: 3rem;
		height: 3rem;
	}
	.form_table th{
		display: table-cell;
		width: 30%;
		padding: 2rem 1rem;
		vertical-align: middle;
		text-align: center;
		position: relative;
	}
	.form_table th span{
		display: block;
	}
	.form_table td{
		display: table-cell;
		padding: 2rem;
	}
	.input_wrap{
		margin: 1rem 0;
	}
	#footer_logo{
		width: 25rem;
		margin: 0 auto 0 0;
	}
	#footer_inner{
		display: flex;
	}
	#footer_nav{
		flex: 1;
	}
	#footer_nav{
		border: 0;
		margin: 1rem 0 2rem;
		justify-content: flex-end;
	}
	#footer_nav li{
		width: auto;
		border: 0;
		margin-left: 2rem;
	}
	#footer_nav a{
		padding: .5rem 0;
		font-size: 1.2rem;
	}
	#footer_links{
		margin: 5rem 0 1rem;
	}
	.post_box{
		padding: 1.5rem 1rem;
		align-items: flex-start;
	}
	.post_box__inner{
		flex: 1;
		display: block;
	}
	.post_box__inner .cat_plate{
		margin: 0;
	}
	.post_box .posted_date{
		flex: 0 0 13rem;
	}
	.sort_wrap{
		display: flex;
		flex-wrap: wrap;
		justify-content: flex-end;
	}
	.sort_box{
		margin: .5rem;
	}
	.cal_day__inner{
		height: 10rem;
	}
	.news_box{
		align-items: center;
		padding: .5rem 0;
	}
	.news_box__link{
		display: flex;
		align-items: center;
	}
	.news_box__link li{
		width: 20rem;
		margin-right: 1rem;
	}
	.news_box__link .post_box{
		justify-content: center;
		border-radius: 1rem;
	}
	.month_link li{
		width: 16.66%;
	}
	.file_links{
		display: flex;
		flex-wrap: wrap;
	}
	.file_links li{
		width: 50%;
		padding-right: 2rem;
	}
	/*
	.sale_item__box{
		width: 25%;
	}*/
	.sale_item__bottom{
		display: flex;
		align-items: center;
		width: 15rem;
	}
	.sale_item__price{
		flex: 1;
		text-align: right;
		margin-right: 1rem;
	}
	.sale_item__buttom{
		flex: 0 0 4rem;
	}
	.calender_head{
		margin-bottom: 2rem;
	}
	.calender_title{
		position: absolute;
		width: 60%;
		top: 50%;
		translate: 0 -50%;
		left: 20%;
		font-size: 2rem;
	}
	.dvd_block__num{
		width: 5rem;
	}
	#page_anzen .page_nav ul{
		display: flex;
	}
	.event_cal__box{
		align-items: center;
	}
	.event_cal__box span.event_cal__box_inner{
		display: contents;
	}
	.event_cal__txt{
		flex: 1;
	}
	.event_cal__place{
		width: 15rem;
		margin-left: 2rem;
		margin-top: 0;
	}
	.cal_sort__title{
		margin: 0 0 0 auto;
		width: 20rem;
		border-radius: 1rem;
	}
	.cal_sort[open] .cal_sort__title{
		border-bottom-left-radius: 0;
		border-bottom-right-radius: 0;
	}
	.cal_sort__inner{
		display: flex;
		justify-content: space-between;
		border-top-left-radius: 1rem;
	}
	.cal_sort__inner .sort_box{
		width: 48%;
	}
	.entry_list th,
	.entry_list td{
		padding: .5rem 1rem;
	}
	.calender_guide .guide_stock__num{
		font-size: 2rem;
	}
	.calender_guide a:hover .guide_stock__num{
		color: #f19149;
	}
}


@media screen and (min-width: 1024px){
  html{
    font-size: 75%;
		scroll-padding-top: 90px;
  }
	.main_contaienr{
		padding: 5rem 0;
	}
	#site_header{
		padding: 0 3rem;
	}
	#header_logo{
		width: 20rem;
		padding: 0;
	}
	#header_links li{
		margin: 0 0 0 1rem;
	}
	#header_links li a{
		font-size: 1.4rem;
		padding: .5rem 2rem;
	}
	#header_nav__btn{
		display: none;
	}
	.container_wrap{
		display: flex;
	}
	#side_nav{
		position: static;
		opacity: 1;
		visibility: visible;
		width: 22rem;
		padding: 1rem 2rem;
		height: auto;
		overflow: unset;
		font-size: 1.2rem;
	}
	#side_nav__sticky{
		position: sticky;
		top: 11rem;
		padding-bottom: 5rem;
	}
	.main_contaienr{
		flex: 1;
	}
	#footer_nav li a::after{
		content: '';
		width: 0;
		left: 0;
		position: absolute;
		bottom: 0;
		background: #fff;
		transition: .3s;
		opacity: 0;
		height: 2px;
	}
	#footer_nav li.current a::after,
	#footer_nav li a:hover::after{
		width: 100%;
		opacity: 1;
	}
	.month_link li{
		width: 8.33%;
	}
	.entry_content{
		max-width: 80%;
	}
	#anzen04_wrap{
		padding: 3rem 8rem;
	}
	.tab_wrap ul{
		white-space: unset;
	}
	.tab_wrap ul li{
		width: 20rem;
		
	}
	.tab{
		height: 100%;
		display: flex;
		align-items: center;
		justify-content: center;
		line-height: 1.5;
		text-align: left;
		padding: 1rem;
	}
}


@media (hover: hover) {
  .img_opacity:hover img{
  	opacity: .8;
  }
  .hover_up:hover{
  	transform: translateY(-5px);
  	box-shadow: 0 12px 10px -6px rgba(0,0,0,.3);
  }
  .hover_up__img:hover img{
  	transform: translateY(-5px);
  	box-shadow: 0 12px 10px -6px rgba(0,0,0,.3);
  }
	.btn_link:hover{
		background: #fff;
		color: var(--main_blue);
	}
	.page_links li .btn_link:hover{
		background: var(--main_blue);
		color: #fff;
	}
	.side_nav__link li a:hover{
		border: var(--main_blue) solid 1px;
		background: #fff;
		color: var(--main_blue);
	}
	#header_links li a:hover{
		background: rgba(255,255,255,.3);
	}
	#header_links li a.side_nav__btn:hover{
		color: #fff;
	}
	.post_box:hover{
		background: var(--bg);
	}
	a:hover .arrow{
		border-color: var(--main_blue);
	}
	.page_links li .btn_link:hover .arrow{
		border-color: #fff;
	}
	.btn__page_nav:hover{
		background: var(--bg_blue);
	}
}